/* ════════════════════════════════════════════
   HOLOGRAM — WARM DARK / YELLOW NEO THEME
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Warm dark palette */
  --bg-base:        #14100a;   /* warm near-black */
  --bg-deep:        #0d0a06;   /* deeper warm */
  --bg-panel:       #1c1610;   /* card surface */
  --bg-panel-hi:    #241c14;   /* elevated card */
  --bg-warm-glow:   #2a1f12;   /* warm glow tone */

  /* Yellow / amber accents (neo) */
  --neo-yellow:     #f5d547;   /* primary yellow */
  --neo-amber:      #e8a838;   /* warm amber */
  --neo-orange:     #e8890c;   /* logo orange */
  --neo-cream:      #fef3d3;   /* off-white cream */

  /* Text */
  --text-primary:   #fef3d3;   /* warm cream */
  --text-secondary: #c9bfae;   /* muted warm */
  --text-muted:     #7a7060;   /* subtle */
  --text-dim:       #4a4238;

  /* Borders */
  --border-subtle:  rgba(245, 213, 71, 0.08);
  --border-mid:     rgba(245, 213, 71, 0.18);
  --border-strong:  rgba(245, 213, 71, 0.45);

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric background — warm grain + glow blobs */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(232, 137, 12, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 213, 71, 0.05), transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(232, 168, 56, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(245, 213, 71, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ══════════════ LAYOUT ══════════════ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight {
  padding: 60px 0;
}

/* ══════════════ HEADER / NAV ══════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(232, 137, 12, 0.35));
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.brand-name em {
  color: var(--neo-yellow);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--neo-yellow);
}

.nav-links a.is-active {
  color: var(--bg-deep);
  background: var(--neo-yellow);
}

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--neo-yellow) !important;
  color: var(--neo-yellow) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--neo-yellow);
  color: var(--bg-deep) !important;
}

/* When the contact page is active, the CTA gets the active-state yellow background.
   Force the text dark so it remains readable. */
.nav-links a.nav-cta.is-active {
  color: var(--bg-deep) !important;
  background: var(--neo-yellow);
}

/* ══════════════ TYPOGRAPHY ══════════════ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--neo-yellow);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
}

h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
}

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
}

em.italic {
  font-style: italic;
  color: var(--neo-yellow);
}

/* ══════════════ BUTTONS ══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--neo-yellow);
  color: var(--bg-deep);
  box-shadow: 0 0 0 1px var(--neo-yellow), 0 8px 32px rgba(245, 213, 71, 0.18);
}

.btn-primary:hover {
  background: var(--neo-cream);
  box-shadow: 0 0 0 1px var(--neo-cream), 0 12px 40px rgba(245, 213, 71, 0.32);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
}

.btn-ghost:hover {
  border-color: var(--neo-yellow);
  color: var(--neo-yellow);
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ══════════════ HERO ══════════════ */

.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--neo-yellow);
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
}

.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 14%;
  height: 8px;
  background: var(--neo-orange);
  z-index: -1;
  opacity: 0.6;
  border-radius: 2px;
}

.hero-lead {
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--neo-yellow);
  line-height: 1;
}

.stat-num em {
  font-style: italic;
  color: var(--neo-orange);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Hero visual — animated holographic orb */

.hero-visual {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 30px 80px rgba(232, 137, 12, 0.08);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-visual:hover .hero-banner-img {
  transform: scale(1.03);
}

.orb {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 213, 71, 0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(232, 137, 12, 0.35), transparent 60%),
    radial-gradient(circle, rgba(232, 168, 56, 0.15), transparent 70%);
  filter: blur(2px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb::before, .orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
}

.orb::before {
  inset: -10%;
  border-color: rgba(245, 213, 71, 0.25);
  animation: orbRotate 22s linear infinite;
  border-style: dashed;
}

.orb::after {
  inset: -22%;
  border-color: rgba(232, 137, 12, 0.18);
  animation: orbRotate 35s linear infinite reverse;
}

.orb-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neo-yellow), var(--neo-orange) 70%, transparent);
  filter: blur(8px);
  opacity: 0.7;
  animation: pulse 3s ease-in-out infinite;
}

.orb-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-rings span {
  position: absolute;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  inset: 0;
}

.orb-rings span:nth-child(1) { transform: rotateX(70deg); }
.orb-rings span:nth-child(2) { transform: rotateX(70deg) rotateZ(45deg); }
.orb-rings span:nth-child(3) { transform: rotateX(70deg) rotateZ(90deg); }
.orb-rings span:nth-child(4) { transform: rotateX(70deg) rotateZ(135deg); }

.orb-base {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 14px;
  background: linear-gradient(to right, transparent, var(--neo-orange), transparent);
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.6;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes orbRotate {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

/* Floating hex decorations */
.hex {
  position: absolute;
  width: 100px;
  height: 115px;
  background: var(--neo-yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.06;
  pointer-events: none;
}

.hex-2 {
  width: 60px;
  height: 70px;
  opacity: 0.1;
  background: var(--neo-orange);
}

/* ══════════════ SECTION HEADERS ══════════════ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

.section-head-single {
  display: block;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  margin-bottom: 20px;
  display: inline-flex;
}

.section-head h2 .accent {
  font-style: italic;
  color: var(--neo-yellow);
}

/* ══════════════ CARDS ══════════════ */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neo-yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--border-mid);
  background: var(--bg-panel-hi);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neo-yellow);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.card-title {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Product preview cards */

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--neo-yellow);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(245, 213, 71, 0.08);
}

.product-card-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-warm-glow), var(--bg-panel));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 213, 71, 0.18), transparent 50%);
}

.product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 10, 6, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-card-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 220px;
  color: var(--neo-yellow);
  opacity: 0.18;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 10px;
  background: rgba(20, 16, 10, 0.85);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--neo-yellow);
}

.product-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}

.product-card-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neo-yellow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.product-card-link:hover { gap: 14px; }

/* ══════════════ PROBLEM / SOLUTION SPLIT ══════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}

.split-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.split-card-problem {
  border-color: rgba(232, 137, 12, 0.15);
}

.split-card-solution {
  border-color: var(--border-mid);
  background: linear-gradient(135deg, var(--bg-panel) 0%, rgba(245, 213, 71, 0.03) 100%);
}

.split-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
}

.split-card-problem .split-label {
  background: rgba(232, 137, 12, 0.08);
  color: var(--neo-orange);
  border: 1px solid rgba(232, 137, 12, 0.25);
}

.split-card-solution .split-label {
  background: rgba(245, 213, 71, 0.08);
  color: var(--neo-yellow);
  border: 1px solid var(--border-mid);
}

.split-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.split-card p {
  font-size: 16px;
  line-height: 1.65;
}

.split-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neo-yellow);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 5;
  box-shadow: 0 0 0 8px var(--bg-base), 0 0 30px rgba(245, 213, 71, 0.4);
}

/* ══════════════ MARKET / VALUE GRID ══════════════ */

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.icon-row:last-child { border-bottom: none; }

.icon-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid var(--border-mid);
  color: var(--neo-yellow);
}

.icon-row-content h4 { margin-bottom: 6px; }

.icon-row-content p {
  font-size: 15px;
  margin: 0;
}

/* Big metric callout */

.metric-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--neo-yellow);
  margin-bottom: 4px;
}

.metric-num em { font-style: italic; }

.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neo-orange);
  margin-bottom: 16px;
}

.metric-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.metric-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ══════════════ PRODUCT DETAIL PAGE ══════════════ */

.product-hero {
  padding: 60px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--neo-yellow); }

.breadcrumb span { color: var(--neo-yellow); }

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-hero-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-warm-glow), var(--bg-panel));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(232, 137, 12, 0.08);
}

.product-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.product-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 10, 6, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-hero-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 360px;
  color: var(--neo-yellow);
  line-height: 1;
  opacity: 0.25;
  position: relative;
  z-index: 1;
}

.product-hero h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 12px; }
.product-hero .product-hero-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin: 32px 0;
}

.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  background: var(--neo-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 213, 71, 0.6);
}

/* ══════════════ CONTACT ══════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neo-yellow);
  font-size: 20px;
}

.contact-block-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  margin-bottom: 8px;
}

.contact-block-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.3;
}

.contact-block-value a:hover { color: var(--neo-yellow); }

/* Contact form */

.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-row { margin-bottom: 22px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--neo-yellow);
  background: var(--bg-panel-hi);
}

.form-row textarea { min-height: 120px; resize: vertical; }

.form-msg {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.form-msg.success {
  background: rgba(245, 213, 71, 0.08);
  border: 1px solid var(--border-mid);
  color: var(--neo-yellow);
}

.form-msg.error {
  background: rgba(232, 137, 12, 0.08);
  border: 1px solid rgba(232, 137, 12, 0.3);
  color: var(--neo-orange);
}

/* ══════════════ CTA BANNER ══════════════ */

.cta-banner {
  position: relative;
  margin: 60px 0 0;
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--neo-yellow), var(--neo-amber));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 137, 12, 0.4), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(254, 243, 211, 0.2), transparent 40%);
}

.cta-banner-content { position: relative; z-index: 1; max-width: 640px; }

.cta-banner h2 {
  color: var(--bg-deep);
  font-size: 48px;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(20, 16, 10, 0.75);
  font-size: 17px;
  max-width: 540px;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
  color: var(--neo-yellow);
}

.cta-banner .btn:hover {
  background: var(--bg-base);
  transform: translateY(-2px);
}

/* ══════════════ FOOTER ══════════════ */

.site-footer {
  margin-top: 120px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 360px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neo-yellow);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--neo-yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom p { color: var(--text-muted); margin: 0; }

/* ══════════════ MOBILE ══════════════ */

@media (max-width: 980px) {
  .hero-grid, .split, .product-hero-grid, .contact-grid, .section-head {
    grid-template-columns: 1fr;
  }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-arrow { display: none; }
  .product-hero-letter { font-size: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .section { padding: 70px 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .form-row-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 48px 32px; }
  .cta-banner h2 { font-size: 36px; }
  .split-card, .contact-form { padding: 28px; }
}

/* ══════════════ ANIMATIONS ══════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
