/* ═════════════════════════════════════════════════════════════════════
   eVamb Technologies — v12.0
   Business AI Lab · master rebuild · saffron + teal + navy
   No cream. No fake "production-grade". Mobile-first. Premium type.
   ═════════════════════════════════════════════════════════════════════ */

:root {
  /* palette · new */
  --navy:       #0A1428;   /* page ground (deep navy ink) */
  --navy-2:     #0F1B36;
  --navy-3:     #16244A;
  --navy-soft:  #1E3A8A;   /* royal navy accent */
  --teal:       #2DD4BF;   /* water-reflection green */
  --teal-soft:  #5EEAD4;
  --saffron:    #FFB347;   /* light saffron */
  --saffron-2:  #FFCB47;   /* sky yellow */
  --saffron-3:  #FFE9A1;   /* lighter saffron whisper */
  --white:      #FFFFFF;
  --paper:      #F8FAFC;   /* near-white touch */
  --paper-mute: rgba(248, 250, 252, 0.72);
  --paper-faint:rgba(248, 250, 252, 0.46);
  --divider:    rgba(248, 250, 252, 0.10);
  --divider-strong: rgba(248, 250, 252, 0.22);

  /* type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Geist Mono', ui-monospace, monospace;

  /* fluid scale — bigger, tighter */
  --fs-display: clamp(54px, 11vw, 168px);
  --fs-h2:      clamp(38px, 6.8vw, 96px);
  --fs-h3:      clamp(22px, 2.6vw, 32px);
  --fs-lead:    clamp(17px, 1.7vw, 21px);
  --fs-body:    16px;
  --fs-mono-sm: 11px;
  --fs-mono-xs: 10px;

  /* layout */
  --container-max: 1320px;
  --container-pad: clamp(22px, 4vw, 64px);
  --section-pad-y: clamp(96px, 13vw, 180px);
  --radius:    16px;
  --radius-lg: 24px;
}

/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--paper);
  background: var(--navy);
  font-feature-settings: 'ss01', 'cv11', 'cv02';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: 0; color: inherit; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
.mono { font-family: var(--font-mono); font-size: var(--fs-mono-sm); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* selection */
::selection { background: var(--saffron-2); color: var(--navy); }

/* ─── Stage + ambient gradient layer ──────────────────────────── */
#stage {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none; display: block;
}
#ambient {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(50% 38% at 12% 22%, rgba(255, 179, 71, 0.10) 0%, transparent 70%),
    radial-gradient(45% 35% at 88% 75%, rgba(45, 212, 191, 0.10) 0%, transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(30, 58, 138, 0.20) 0%, transparent 70%);
}
body.no-canvas #stage { display: none !important; }
#vignette {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 50%, transparent 0%, transparent 60%, rgba(10, 20, 40, 0.55) 100%);
}

/* ─── Top nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--container-pad);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 20, 40, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: var(--divider);
  padding-top: 12px; padding-bottom: 12px;
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--paper); }
.brand-mark { flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500; font-size: 22px;
  letter-spacing: -0.015em;
  display: inline-flex; flex-direction: column; line-height: 1; gap: 2px;
}
.brand-tech {
  font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--saffron); font-weight: 500;
}
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--paper-mute);
  position: relative; padding: 8px 0; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 4px; width: 0; height: 1.5px;
  background: var(--saffron-2); transition: width .25s;
}
.nav-link:hover, .nav-link.is-active { color: var(--paper); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron-2) 0%, var(--saffron) 100%);
  color: var(--navy); font-weight: 600; font-size: 13px;
  transition: transform .2s, box-shadow .25s;
  box-shadow: 0 8px 24px -8px rgba(255, 203, 71, 0.55);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -8px rgba(255, 203, 71, 0.75); }
.nav-cta .arrow { display: inline-block; transition: transform .25s; }
.nav-cta:hover .arrow { transform: translate(2px, -2px); }

.nav-burger {
  display: none; width: 42px; height: 42px; padding: 9px;
  flex-direction: column; justify-content: space-between;
}
.nav-burger span {
  display: block; width: 100%; height: 1.5px; background: var(--paper);
  transition: transform .3s, opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 49; background: rgba(10, 20, 40, 0.97);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  display: flex; align-items: center; justify-content: center;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; }
.nav-drawer-inner { display: flex; flex-direction: column; gap: 16px; padding: 40px; align-items: center; }
.drawer-link {
  font-family: var(--font-display); font-size: clamp(30px, 7vw, 48px);
  font-weight: 500; color: var(--paper); letter-spacing: -0.015em;
}
.drawer-link:hover { color: var(--saffron-2); }
.drawer-cta {
  margin-top: 20px; padding: 14px 26px; border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron-2) 0%, var(--saffron) 100%);
  color: var(--navy); font-weight: 600; font-size: 14px;
  font-family: var(--font-body);
}

/* ─── Scroll progress ──────────────────────────────────────────── */
.scroll-bar {
  position: fixed; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(248, 250, 252, 0.05); z-index: 48;
}
.scroll-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--saffron-2), var(--saffron), var(--teal), var(--navy-soft));
}

/* ─── Section shell ────────────────────────────────────────────── */
.section { position: relative; z-index: 3; padding: var(--section-pad-y) 0; }
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto; padding: 0 var(--container-pad);
  position: relative; z-index: 3;
}
.section-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-mono-xs); color: var(--paper-mute);
  padding: 7px 14px; border: 1px solid var(--divider-strong); border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.14em;
}
.section-mark--saffron { color: var(--saffron-2); border-color: rgba(255, 203, 71, 0.42); }
.section-mark--teal    { color: var(--teal-soft); border-color: rgba(94, 234, 212, 0.42); }
.section-mark--navy    { color: var(--paper); border-color: rgba(94, 153, 234, 0.42); }
.section-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--fs-h2); line-height: 0.96;
  letter-spacing: -0.028em; margin: 0 0 28px;
  color: var(--paper);
}
.section-h2 em { color: var(--saffron-2); font-style: italic; font-weight: 400; }
.section-head { margin-bottom: clamp(56px, 8vw, 112px); max-width: 880px; }
.section-lead {
  font-size: var(--fs-lead); line-height: 1.55;
  color: var(--paper-mute); max-width: 640px; margin: 0;
}

/* ─── Reveal hooks ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.34s; }
[data-split] .line { display: block; overflow: hidden; }
[data-split] .line > * { display: block; opacity: 0; transform: translateY(110%); transition: opacity .9s, transform 1s cubic-bezier(.2,.7,.2,1); }
[data-split].is-in .line > * { opacity: 1; transform: none; }
[data-split].is-in .line:nth-child(2) > * { transition-delay: 0.08s; }
[data-split].is-in .line:nth-child(3) > * { transition-delay: 0.16s; }
[data-fade] { opacity: 0; transform: translateY(18px); transition: opacity .9s ease .3s, transform .9s ease .3s; }
[data-fade].is-in { opacity: 1; transform: none; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  padding: clamp(130px, 18vh, 220px) var(--container-pad) 100px;
  display: flex; align-items: center; z-index: 3;
}
.hero-inner { max-width: var(--container-max); margin: 0 auto; width: 100%; position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--paper-mute);
  padding: 8px 14px; border: 1px solid var(--divider-strong); border-radius: 999px;
  margin-bottom: 32px; backdrop-filter: blur(8px);
  background: rgba(10, 20, 40, 0.5);
}
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; }
.dot-pulse { background: var(--saffron-2); box-shadow: 0 0 0 0 rgba(255, 203, 71, 0.7); animation: pulse 2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 203, 71, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 203, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 203, 71, 0); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300; /* lighter for editorial elegance */
  font-size: var(--fs-display); line-height: 0.9;
  letter-spacing: -0.04em; margin: 0 0 36px;
  max-width: 14ch;
  font-variation-settings: "opsz" 144;
}
.hero-h1 .line { display: block; }
.hero-h1 em {
  font-style: italic; font-weight: 400;
  color: var(--saffron-2);
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: var(--fs-lead); line-height: 1.55; color: var(--paper-mute);
  max-width: 640px; margin: 0 0 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 36px; border-top: 1px solid var(--divider);
  max-width: 780px;
}
.stat .stat-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px); line-height: 1;
  color: var(--paper); letter-spacing: -0.025em;
}
.stat .stat-num em { color: var(--saffron-2); font-style: italic; font-weight: 400; }
.stat .stat-label { color: var(--paper-faint); font-size: 9.5px; margin-top: 10px; display: block; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--paper-faint); font-size: 9px; letter-spacing: 0.24em;
  pointer-events: none; font-family: var(--font-mono);
}
.hint-line { display: block; width: 1px; height: 30px; background: linear-gradient(to bottom, var(--saffron), transparent); animation: hintDown 2s ease-in-out infinite; }
@keyframes hintDown {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 24px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  text-decoration: none; line-height: 1;
}
.btn .arrow { display: inline-block; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--saffron-2) 0%, var(--saffron) 100%);
  color: var(--navy);
  box-shadow: 0 12px 32px -10px rgba(255, 203, 71, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(255, 203, 71, 0.75); }
.btn-teal {
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--teal) 100%);
  color: var(--navy);
  box-shadow: 0 12px 32px -10px rgba(45, 212, 191, 0.5);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(45, 212, 191, 0.7); }
.btn-ghost {
  background: transparent; color: var(--paper);
  border: 1px solid var(--divider-strong);
}
.btn-ghost:hover { background: rgba(248, 250, 252, 0.05); border-color: var(--saffron-2); color: var(--saffron-2); }
.btn-sm { padding: 11px 17px; font-size: 12.5px; }
.btn-wide { width: 100%; justify-content: center; }

/* ─── The Lab (capabilities) ───────────────────────────────────── */
.lab .cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cap-card {
  padding: 32px 26px 34px; border-radius: var(--radius);
  border: 1px solid var(--divider);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.04) 0%, rgba(248, 250, 252, 0.012) 100%);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s, background .3s;
  display: flex; flex-direction: column; gap: 14px; min-height: 400px;
}
.cap-card:hover {
  transform: translateY(-4px); border-color: var(--saffron);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.07) 0%, rgba(248, 250, 252, 0.02) 100%);
}
.cap-num { color: var(--saffron-2); font-size: 9.5px; letter-spacing: 0.16em; font-family: var(--font-mono); }
.cap-icon { width: 42px; height: 42px; color: var(--saffron-2); display: flex; align-items: center; justify-content: center; }
.cap-icon svg { width: 100%; height: 100%; }
.cap-h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h3); line-height: 1.1; margin: 4px 0 0; letter-spacing: -0.015em; color: var(--paper);
}
.cap-blurb { color: var(--paper-mute); font-size: 14.5px; line-height: 1.6; margin: 0; flex: 1; }
.cap-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
  color: var(--paper-faint); font-size: 10px; line-height: 1.5; letter-spacing: 0.05em;
  border-top: 1px solid var(--divider); padding-top: 16px;
  font-family: var(--font-mono); text-transform: uppercase;
}

/* ─── Products section ─────────────────────────────────────────── */
.products { position: relative; overflow: hidden; }
.products-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.products-glow {
  position: absolute; border-radius: 50%; filter: blur(140px);
}
.products-glow--1 { top: 15%; left: -15%; width: 55vw; height: 55vw; background: radial-gradient(circle, var(--saffron) 0%, transparent 70%); opacity: 0.2; }
.products-glow--2 { bottom: 0; right: -15%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--teal) 0%, transparent 70%); opacity: 0.18; }

.product-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
/* Hero card spans 2x cols; others span 1x cols of a 3-col internal layout */
.product-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.04) 0%, rgba(248, 250, 252, 0.012) 100%);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s ease, border-color .35s, background .35s;
  overflow: hidden;
  grid-column: span 2;
  min-height: 340px;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--saffron); }
.product-card--hero { grid-column: span 3; min-height: 380px; }
.product-card--wide { grid-column: span 3; }
.product-card--soon { grid-column: span 2; border-style: dashed; opacity: 0.65; }
.product-card--soon:hover { transform: none; opacity: 0.85; }

.product-bg-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.18;
}
.product-card--neekos    .product-bg-glow { background: radial-gradient(60% 50% at 80% 20%, var(--saffron-2) 0%, transparent 65%); }
.product-card--connext   .product-bg-glow { background: radial-gradient(60% 50% at 20% 80%, var(--teal) 0%, transparent 65%); }
.product-card--doctors   .product-bg-glow { background: radial-gradient(60% 50% at 80% 20%, var(--teal-soft) 0%, transparent 65%); }
.product-card--refer     .product-bg-glow { background: radial-gradient(60% 50% at 20% 80%, var(--saffron) 0%, transparent 65%); }

.product-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 2; }
.product-tag {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--paper-faint);
}
.product-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--divider-strong);
}
.product-status--live    { color: var(--teal-soft); border-color: rgba(94, 234, 212, 0.45); background: rgba(45, 212, 191, 0.08); }
.product-status--pilot   { color: var(--saffron-2); border-color: rgba(255, 203, 71, 0.45); background: rgba(255, 179, 71, 0.06); }
.product-status--soon    { color: var(--paper-faint); }
.product-status .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 8px currentColor; animation: pulse 2s infinite;
}

.product-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 8px 0 0; color: var(--paper);
  position: relative; z-index: 2;
}
.product-name em { font-style: italic; font-weight: 400; color: var(--saffron-2); }
.product-tagline { font-size: 15px; color: var(--teal-soft); margin: 0; line-height: 1.4; position: relative; z-index: 2; }
.product-blurb { font-size: 14px; line-height: 1.65; color: var(--paper-mute); margin: 0; flex: 1; position: relative; z-index: 2; }

.product-meta {
  display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 2;
}
.product-meta span {
  padding: 5px 10px; border-radius: 999px;
  background: rgba(248, 250, 252, 0.04); border: 1px solid var(--divider);
  font-size: 9.5px; color: var(--paper-mute);
  font-family: var(--font-mono); letter-spacing: 0.06em;
}
.product-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px; padding: 10px 0;
  color: var(--saffron-2); font-size: 12.5px; font-weight: 500;
  border-top: 1px solid var(--divider); padding-top: 16px;
  transition: color .2s; font-family: var(--font-mono); letter-spacing: 0.06em;
  position: relative; z-index: 2;
}
.product-cta .arrow { transition: transform .25s; }
.product-cta:hover { color: var(--paper); }
.product-cta:hover .arrow { transform: translate(2px, -2px); }

.product-card--soon .product-tag { color: var(--paper-faint); }
.product-card--soon .product-name { color: var(--paper-mute); }

/* ─── Method ───────────────────────────────────────────────────── */
.method-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.method-step {
  padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.04) 0%, rgba(248, 250, 252, 0.01) 100%);
  border: 1px solid var(--divider); position: relative;
  transition: border-color .25s, transform .25s;
}
.method-step:hover { border-color: var(--teal-soft); transform: translateY(-3px); }
.ms-num { color: var(--teal-soft); font-size: 10px; margin-bottom: 16px; letter-spacing: 0.14em; font-family: var(--font-mono); text-transform: uppercase; }
.method-step h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.1; margin: 0 0 12px; letter-spacing: -0.015em; color: var(--paper);
}
.method-step p { color: var(--paper-mute); font-size: 14px; line-height: 1.6; margin: 0; }

/* ─── Beliefs ──────────────────────────────────────────────────── */
.belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.belief {
  padding: 30px 26px; border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.035);
  border: 1px solid var(--divider);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .25s, transform .25s, border-color .25s;
}
.belief:hover { transform: translateY(-3px); background: rgba(248, 250, 252, 0.06); border-color: var(--saffron); }
.belief-num { color: var(--saffron-2); font-size: 10px; letter-spacing: 0.14em; font-family: var(--font-mono); }
.belief h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; line-height: 1.15; margin: 0; letter-spacing: -0.015em; color: var(--paper);
}
.belief p { color: var(--paper-mute); font-size: 14px; line-height: 1.6; margin: 0; }

/* ─── Interstitial ─────────────────────────────────────────────── */
.interstitial { position: relative; z-index: 3; padding: clamp(110px, 14vw, 200px) var(--container-pad); }
.interstitial-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.interstitial-line { display: flex; flex-direction: column; gap: 18px; align-items: center; margin: 0; }
.il-num { color: var(--saffron-2); font-size: 11px; letter-spacing: 0.32em; font-family: var(--font-mono); text-transform: uppercase; }
.il-body {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(30px, 4.8vw, 60px); line-height: 1.12;
  letter-spacing: -0.025em; color: var(--paper); max-width: 20ch;
}
.il-body em { color: var(--teal-soft); font-style: italic; font-weight: 400; }

/* ─── Contact ──────────────────────────────────────────────────── */
.contact { position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 75vw; height: 75vw; max-width: 980px; max-height: 980px;
  border-radius: 50%; filter: blur(160px); opacity: 0.16;
  background: radial-gradient(circle, var(--saffron) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: start; position: relative; z-index: 3;
}
.email-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: clamp(20px, 2.8vw, 32px);
  color: var(--paper); text-transform: none; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--divider-strong); padding-bottom: 12px;
  margin: 32px 0 24px;
  transition: color .25s, border-color .25s;
}
.email-link:hover { color: var(--saffron-2); border-color: var(--saffron-2); }
.el-arrow { display: inline-block; transition: transform .25s; }
.email-link:hover .el-arrow { transform: translateX(3px); }
.contact-channels { display: flex; flex-wrap: wrap; gap: 8px; color: var(--paper-faint); font-size: 12px; }
.contact-channels a { transition: color .2s; }
.contact-channels a:hover { color: var(--saffron-2); }
.sep { color: var(--paper-faint); opacity: 0.5; }

.contact-form {
  padding: 36px 30px; border-radius: var(--radius-lg);
  background: rgba(10, 20, 40, 0.7);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--divider-strong);
  display: flex; flex-direction: column; gap: 16px;
}
.cf-title { color: var(--saffron-2); font-size: 10px; margin: 0 0 6px; letter-spacing: 0.14em; font-family: var(--font-mono); text-transform: uppercase; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label { color: var(--paper-faint); font-size: 9px; letter-spacing: 0.12em; font-family: var(--font-mono); text-transform: uppercase; }
.cf-field input, .cf-field select, .cf-field textarea {
  padding: 12px 14px; border-radius: 10px;
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid var(--divider-strong);
  color: var(--paper); font-size: 14.5px;
  transition: border-color .25s, background .25s;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--paper-faint); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: 0; border-color: var(--saffron-2);
  background: rgba(248, 250, 252, 0.07);
}
.cf-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23F8FAFC' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 11px;
  padding-right: 36px;
}
.cf-field select option { background: var(--navy-2); color: var(--paper); padding: 8px; }
.cf-field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.cf-status { color: var(--paper-faint); font-size: 11px; margin: 4px 0 0; min-height: 1em; font-family: var(--font-mono); }
.cf-status.is-error { color: #FCA5A5; }
.cf-status.is-ok    { color: var(--teal-soft); }

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  position: relative; z-index: 3;
  border-top: 1px solid var(--divider);
  background: rgba(10, 20, 40, 0.88);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad);
  display: grid; grid-template-columns: 1.3fr 2.4fr; gap: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-mark { display: inline-flex; align-items: center; gap: 12px; }
.footer-mark img { width: 42px; height: 42px; }
.footer-name {
  font-family: var(--font-display); font-weight: 500; font-size: 26px;
  letter-spacing: -0.015em; color: var(--paper);
}
.footer-tagline { color: var(--saffron-2); font-size: 9.5px; letter-spacing: 0.18em; font-family: var(--font-mono); text-transform: uppercase; }
.footer-blurb { color: var(--paper-mute); font-size: 14px; line-height: 1.55; margin: 8px 0 0; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--divider-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper-mute); transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--saffron-2); border-color: var(--saffron-2); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--saffron-2); font-size: 9.5px; margin: 0 0 8px; font-weight: 500; letter-spacing: 0.16em; font-family: var(--font-mono); text-transform: uppercase; }
.footer-col a { color: var(--paper-mute); font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: var(--saffron-2); }
.footer-base {
  margin-top: 64px; padding: 22px 0;
  border-top: 1px solid var(--divider);
  color: var(--paper-faint); font-size: 10.5px;
}
.footer-base-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-mono); }

/* ─── Cookie banner ────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 60; max-width: 800px; margin: 0 auto;
  background: rgba(10, 20, 40, 0.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--divider-strong); border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.55);
  animation: cbIn .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes cbIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cb-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.cb-body { flex: 1; min-width: 280px; }
.cb-title { font-family: var(--font-display); font-weight: 500; font-size: 17px; margin: 0 0 4px; color: var(--paper); }
.cb-text { color: var(--paper-mute); font-size: 13px; line-height: 1.5; margin: 0; }
.cb-text a { color: var(--saffron-2); text-decoration: underline; text-underline-offset: 2px; }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── Legal page layout ───────────────────────────────────────── */
.legal { position: relative; z-index: 3; max-width: 860px; margin: 0 auto; padding: clamp(130px, 18vw, 200px) var(--container-pad) 100px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 6.4vw, 72px); line-height: 1; margin: 0 0 36px;
  letter-spacing: -0.03em;
}
.legal .legal-meta {
  color: var(--saffron-2); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-mono); margin-bottom: 52px;
  padding-bottom: 22px; border-bottom: 1px solid var(--divider);
}
.legal h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.2;
  margin: 60px 0 18px; letter-spacing: -0.02em; color: var(--paper);
}
.legal h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; margin: 30px 0 12px; color: var(--paper); }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--paper-mute); margin: 0 0 14px; }
.legal ul, .legal ol { padding-left: 24px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--saffron-2); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--paper); }
.legal strong { color: var(--paper); font-weight: 600; }
.legal .legal-back { color: var(--paper-faint); font-size: 12px; display: inline-block; margin-bottom: 28px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.legal .legal-back:hover { color: var(--saffron-2); }

/* ═════════════ RESPONSIVE ═════════════ */
@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .belief-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .product-card, .product-card--hero, .product-card--wide, .product-card--soon { grid-column: span 1; min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: 110px; padding-bottom: 80px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cap-grid, .method-steps, .belief-grid, .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .cap-card { min-height: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-base-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cookie-banner { left: 12px; right: 12px; padding: 18px 20px; }
  .cb-inner { flex-direction: column; align-items: stretch; }
  .cb-actions { width: 100%; }
  .cb-actions .btn { flex: 1; }
}
@media (max-width: 420px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > *, [data-fade] { opacity: 1; transform: none; }
  [data-split] .line > * { opacity: 1; transform: none; }
  #stage { display: none; }
}
