/* ─────────────────────────────────────────────
   Outmark — Liquid Glass redesign
   Light warm canvas · frosted glass surfaces
   ───────────────────────────────────────────── */

@font-face {
  font-family: 'Inter';
  src: url("fonts/Inter-VariableFont.woff2") format('woff2'),
       url("fonts/Inter-VariableFont.ttf") format('truetype');
  font-weight: 100 900;
  font-style: oblique -10deg 0deg;
  font-display: swap;
}

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --ink: #161310;
  --ink-2: rgba(22, 19, 16, 0.62);
  --ink-3: rgba(22, 19, 16, 0.42);
  --canvas: #F3F0EA;
  --orange: #FF4F00;
  --orange-light: #FFA27A;
  --grad: linear-gradient(to top, #FF4F00, #FFA27A);

  /* glass recipe — crisper iOS-style frosted glass */
  --glass-bg: linear-gradient(135deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.26) 100%);
  --glass-bg-strong: linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.46) 100%);
  --glass-border: rgba(255,255,255,0.72);
  --glass-blur: blur(20px) saturate(185%) brightness(1.04);
  /* layered: crisp top rim · hairline edge · soft bottom shade for depth · tight + wide drop */
  --glass-shadow:
    inset 0 1.2px 0.5px rgba(255,255,255,0.95),
    inset 0 0 0 1px rgba(255,255,255,0.16),
    inset 0 -10px 22px -16px rgba(120,68,28,0.16),
    0 2px 6px rgba(60, 30, 10, 0.05),
    0 20px 50px -22px rgba(60, 30, 10, 0.22);
  --glass-shadow-sm:
    inset 0 1.2px 0.5px rgba(255,255,255,0.95),
    inset 0 0 0 1px rgba(255,255,255,0.14),
    0 1px 4px rgba(60, 30, 10, 0.04),
    0 12px 30px -14px rgba(60, 30, 10, 0.16);

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-pill: 9999px;
  /* easing — calm ease-out + a restrained iOS spring (slight overshoot) */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.35, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--orange); color: var(--white); }
img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* ── AMBIENT ORB FIELD ──
   Pure radial gradients (no filter) so the glass
   panels have something rich to refract. */
.orb-field {
  position: fixed; inset: -20vh -20vw; z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.orb { position: absolute; border-radius: 50%; will-change: transform; }
.orb-1 {
  width: 72vw; height: 72vw; left: -16vw; top: -10vh;
  background: radial-gradient(circle at 50% 50%, rgba(255,162,122,0.50) 0%, rgba(255,162,122,0.18) 42%, transparent 68%);
  animation: drift-1 64s ease-in-out infinite alternate;
}
.orb-2 {
  width: 60vw; height: 60vw; right: -14vw; top: 16vh;
  background: radial-gradient(circle at 50% 50%, rgba(255,79,0,0.30) 0%, rgba(255,79,0,0.10) 45%, transparent 70%);
  animation: drift-2 80s ease-in-out infinite alternate;
}
.orb-3 {
  width: 56vw; height: 56vw; left: 18vw; bottom: -22vh;
  background: radial-gradient(circle at 50% 50%, rgba(255,214,189,0.55) 0%, rgba(255,214,189,0.20) 45%, transparent 70%);
  animation: drift-3 72s ease-in-out infinite alternate;
}
@keyframes drift-1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(9vw, 7vh) scale(1.12); } }
@keyframes drift-2 { from { transform: translate(0, 0) scale(1.05); } to { transform: translate(-8vw, -6vh) scale(0.94); } }
@keyframes drift-3 { from { transform: translate(0, 0) scale(1); } to { transform: translate(6vw, -8vh) scale(1.10); } }
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* scroll-driven parallax — each orb drifts as you scroll, composing with the
   ambient float above (uses the `translate` property so it layers on top of the
   drift `transform`). Gated behind @supports so unsupported browsers just keep
   the ambient float. */
@keyframes orbScroll-1 { to { translate: -5vw -32vh; } }
@keyframes orbScroll-2 { to { translate: 7vw 28vh; } }
@keyframes orbScroll-3 { to { translate: -8vw -22vh; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    .orb-1 { animation: drift-1 64s ease-in-out infinite alternate, orbScroll-1 1s linear both; animation-timeline: auto, scroll(root block); }
    .orb-2 { animation: drift-2 80s ease-in-out infinite alternate, orbScroll-2 1s linear both; animation-timeline: auto, scroll(root block); }
    .orb-3 { animation: drift-3 72s ease-in-out infinite alternate, orbScroll-3 1s linear both; animation-timeline: auto, scroll(root block); }
  }
}

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
section { padding: 110px 0; position: relative; }

/* ── TYPE SYSTEM ── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--orange);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-sm);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  margin-bottom: 24px;
}
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 680;
  font-variation-settings: 'wght' 680;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 20px;
  text-wrap: balance;
}
.sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--ink-2); line-height: 1.65;
  max-width: 600px; margin-bottom: 56px;
  text-wrap: pretty;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ── GLASS SURFACE ── */
.glass {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
}
.glass::before {
  /* crisp specular sweep — bright top-left rim fading across the surface */
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.12) 22%, rgba(255,255,255,0) 46%, rgba(255,255,255,0) 72%, rgba(255,255,255,0.30) 100%);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 400ms var(--ease);
}
.glass > * { position: relative; }

/* ── DARK GLASS SURFACE ──
   Black-glass variant for contrast. Locally flips the ink
   custom props so card text reads correctly without per-card overrides. */
.glass-dark {
  --ink: #ffffff;
  --ink-2: rgba(255,255,255,0.64);
  --ink-3: rgba(255,255,255,0.48);
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, rgba(34,27,22,0.90) 0%, rgba(15,12,10,0.96) 100%);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 26px 64px -22px rgba(15,9,5,0.6);
}
.glass-dark::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 32%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.06) 100%);
  opacity: 0.7;
  pointer-events: none;
}
.glass-dark > * { position: relative; }
/* dark cards: suppress the white pointer-glare and brighten the black on hover instead */
.glass-dark { transition: background 280ms var(--ease), box-shadow 280ms var(--ease); }
.glass-dark > .glare { display: none; }
.glass-dark:hover { background: linear-gradient(135deg, rgba(55,45,38,0.95) 0%, rgba(30,24,20,0.97) 100%); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; text-decoration: none; cursor: pointer;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  transition: transform 320ms var(--ease-spring), box-shadow 280ms var(--ease), background-color 200ms var(--ease);
}
.btn:active { transform: scale(0.96); transition: transform 120ms var(--ease); }
.btn-primary {
  position: relative;
  background: var(--grad);
  color: #fff; border: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 6px rgba(180,40,0,0.30),
    0 10px 30px -8px rgba(255,79,0,0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 6px rgba(180,40,0,0.30),
    0 16px 40px -8px rgba(255,79,0,0.65);
}
.btn-glass {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  box-shadow: var(--glass-shadow-sm);
}
.btn-glass:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 40px -14px rgba(60,30,10,0.22); }
.btn-sm { font-size: 13.5px; padding: 10px 20px; }

/* ── NAV ── */
.nav-wrap {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: center;
  padding: 0 32px;
  pointer-events: none;
}
nav {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  width: 100%; max-width: 1096px;
  padding: 10px 12px 10px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.40) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  box-shadow: var(--glass-shadow-sm);
  transition: box-shadow 350ms var(--ease);
}
nav.scrolled { box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 44px -14px rgba(60,30,10,0.22); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 18px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a:not(.btn) {
  font-size: 13.5px; font-weight: 520;
  font-variation-settings: 'wght' 520;
  color: var(--ink-2); text-decoration: none;
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
body.om-dark .nav-links > a.active:not(.btn) {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.80));
  color: #161310;
  box-shadow: inset 0 1px 0 #fff, 0 6px 18px -6px rgba(0,0,0,0.55);
}
body.om-dark .nav-links > a:not(.btn):hover {
  background: rgba(255,255,255,0.12); color: #fff;
}
body.om-dark .nav-links > a.active:not(.btn):hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.84));
  color: #161310;
}

/* "New!" flag on a nav item — orange, with a gentle attention pulse */
.nav-new {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--orange);
  vertical-align: super; line-height: 1;
  margin-left: 1px;
  text-shadow: 0 0 10px rgba(255,79,0,0.45);
}
@media (prefers-reduced-motion: no-preference) {
  .nav-new { animation: navNewPulse 1.7s var(--ease) infinite; transform-origin: center bottom; }
}
@keyframes navNewPulse {
  0%, 100% { opacity: 1; transform: translateY(0) scale(1); }
  45%      { opacity: 0.6; transform: translateY(-1.5px) scale(1.12); }
}

/* ── HERO (split) ── */
.hero {
  padding: 150px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.0;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--ink-2); line-height: 1.65;
  max-width: 480px; margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-video {
  justify-self: end;
  width: 100%;
  max-width: 430px;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-video::before {
  /* soft ambient warm bloom behind the video */
  content: '';
  position: absolute; inset: 4% -8% 0;
  border-radius: 50%;
  background: radial-gradient(56% 50% at 50% 54%, rgba(255,79,0,0.20) 0%, rgba(255,162,122,0.13) 46%, transparent 74%);
  z-index: 0;
}
.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  /* native source proportions — no crop, no glass frame */
  aspect-ratio: 1080 / 1350;
  overflow: visible;
  /* feather all four edges so the video dissolves into the canvas instead of sitting in a hard card */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 13%, #000 87%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 13%, #000 87%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ── STATS ── */
.showcase { padding: 64px 0 110px; }
.stat-chips {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
  padding: 0 16px;
}
.stat-chip {
  display: flex; flex-direction: column; align-items: center;
  border-radius: var(--r-lg);
  padding: 18px 34px;
  min-width: 170px;
}
.stat-num {
  font-size: 30px; font-weight: 700; letter-spacing: -0.04em; line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12.5px; font-weight: 500; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.01em; }

/* ── PROBLEM ── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.problem-card { padding: 36px; border-radius: var(--r-xl); display: flex; flex-direction: column; }
.problem-card img {
  width: 100%; height: auto; border-radius: var(--r-md);
  margin-bottom: 28px;
  box-shadow: 0 12px 32px -10px rgba(60,30,10,0.18);
}
.problem-kicker {
  font-size: 11.5px; font-weight: 650; font-variation-settings: 'wght' 650;
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 14px;
}
.problem-kicker.muted { color: var(--ink-3); }
.problem-kicker.win {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-card h3 {
  font-size: clamp(21px, 2.1vw, 26px); font-weight: 680;
  font-variation-settings: 'wght' 680;
  letter-spacing: -0.035em; line-height: 1.15; margin-bottom: 14px;
  text-wrap: balance;
}
.problem-card p { font-size: 15px; color: var(--ink-2); line-height: 1.7; flex: 1; }
.problem-card .chip { margin-top: 22px; align-self: flex-start; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  padding: 7px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  color: var(--ink-2);
}
.chip.accent { color: var(--orange); background: rgba(255,79,0,0.08); border-color: rgba(255,79,0,0.18); }

/* ── TRACKS (how it works) ── */
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.track-card { padding: 40px; border-radius: var(--r-xl); }
.track-num {
  font-size: 11.5px; font-weight: 650; font-variation-settings: 'wght' 650;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
}
.track-card h3 { font-size: 26px; font-weight: 680; font-variation-settings: 'wght' 680; letter-spacing: -0.035em; margin-bottom: 14px; }
.track-card p { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; }
.watch-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px; padding: 10px 20px 10px 12px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-sm);
  border-radius: var(--r-pill); color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.watch-btn:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 14px 32px -10px rgba(60,30,10,0.2); }
.watch-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 12px rgba(255,79,0,0.4);
  flex-shrink: 0;
}
.watch-dot svg { margin-left: 1px; }
.flow-bar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  padding: 26px 32px;
  border-radius: var(--r-xl);
}
.flow-pill {
  font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em;
  padding: 9px 20px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 12px rgba(60,30,10,0.06);
  color: var(--ink);
  white-space: nowrap;
}
.flow-pill.goal {
  background: var(--grad); color: #fff; border: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 22px -4px rgba(255,79,0,0.5);
}
.flow-arrow { color: var(--ink-3); flex-shrink: 0; display: flex; }

/* ── PROCESS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 36px 32px; border-radius: var(--r-xl); }
.step-badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  background: var(--grad); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 8px 20px -4px rgba(255,79,0,0.5);
  margin-bottom: 24px;
}
.step-card h3 { font-size: 19px; font-weight: 650; font-variation-settings: 'wght' 650; letter-spacing: -0.025em; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }
.step-card .chip { margin-top: 20px; }
.section-cta { display: flex; justify-content: center; margin-top: 56px; }

/* ── TESTIMONIALS ── */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { padding: 34px 32px; border-radius: var(--r-xl); display: flex; flex-direction: column; }
.quote-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.quote-text { font-size: 15px; line-height: 1.7; color: var(--ink); flex: 1; text-wrap: pretty; }
.quote-author { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(60,30,10,0.15);
}
.quote-name { font-size: 14px; font-weight: 620; font-variation-settings: 'wght' 620; }
.quote-role { font-size: 12.5px; color: var(--ink-3); margin-top: 1px; }

/* ── VS ── */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vs-card { padding: 40px; border-radius: var(--r-xl); }
.vs-card.win { border-color: rgba(255,162,122,0.75); }
.vs-card.win::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 90% at 85% -10%, rgba(255,79,0,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.vs-badge {
  display: inline-block;
  font-size: 11.5px; font-weight: 650; font-variation-settings: 'wght' 650;
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 18px; color: var(--ink-3);
}
.vs-card.win .vs-badge {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vs-card h3 { font-size: 23px; font-weight: 680; font-variation-settings: 'wght' 680; letter-spacing: -0.03em; margin-bottom: 24px; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.vs-list li {
  font-size: 14.5px; line-height: 1.55; padding-left: 30px; position: relative;
  color: var(--ink-2);
}
.vs-list li::before {
  position: absolute; left: 0; top: 0;
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.vs-card.lose .vs-list li::before {
  content: '✕';
  color: var(--ink-3);
  background: rgba(22,19,16,0.06);
}
.vs-card.win .vs-list li { color: var(--ink); }
.vs-card.win .vs-list li::before {
  content: '✓';
  color: #fff;
  background: var(--grad);
  box-shadow: 0 3px 8px rgba(255,79,0,0.35);
}
.vs-note {
  font-size: 15px; color: var(--ink-2); line-height: 1.7;
  max-width: 620px; text-align: center; margin: 44px auto 0;
  text-wrap: pretty;
}

/* ── CASE STUDY (dark slab) ── */
.cs-slab {
  border-radius: 40px;
  background:
    radial-gradient(100% 130% at 80% -20%, rgba(255,79,0,0.28) 0%, transparent 50%),
    radial-gradient(90% 110% at 0% 110%, rgba(255,162,122,0.16) 0%, transparent 55%),
    #100D0B;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 40px 90px -30px rgba(30,15,5,0.5);
  padding: 72px 64px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.cs-slab .label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  color: var(--orange-light);
}
.cs-slab .title { color: #fff; }
.cs-slab .sub { color: rgba(255,255,255,0.55); margin-bottom: 48px; }
.cs-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.cs-thumb {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}
.cs-thumb img { width: 100%; }
.cs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cs-stat {
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  border-radius: var(--r-md); padding: 18px 12px; text-align: center;
}
.cs-stat-num {
  font-size: 24px; font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(to top, #FF6A24, #FFC4A3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); line-height: 1.4; margin-top: 4px; }
.cs-highlights { display: flex; flex-direction: column; }
.cs-highlight { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.cs-highlight:first-child { padding-top: 6px; }
.cs-highlight h4 { font-size: 16px; font-weight: 620; font-variation-settings: 'wght' 620; margin-bottom: 6px; }
.cs-highlight p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.cs-cta { margin-top: 34px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: center; }
.about-frame {
  padding: 0; border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -24px rgba(60,30,10,0.28), 0 6px 18px -8px rgba(60,30,10,0.10);
}
.about-img-wrap {
  position: relative; aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  cursor: pointer;
  perspective: 1600px;
}
.about-flip {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform 850ms var(--ease);
}
.about-img-wrap:hover .about-flip,
.about-img-wrap:focus-visible .about-flip { transform: rotateY(180deg); }
.about-face {
  position: absolute; inset: 0;
  border-radius: var(--r-lg); overflow: hidden;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.about-face img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.about-back { transform: rotateY(180deg); }
.flip-hint {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-sm);
  transition: opacity 300ms var(--ease), transform 500ms var(--ease);
  pointer-events: none;
}
.about-img-wrap:hover .flip-hint { opacity: 0; transform: scale(0.85); }
.about-copy p { font-size: 16px; color: var(--ink-2); line-height: 1.75; margin-bottom: 16px; text-wrap: pretty; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ── CAREERS ── */
.careers-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 30px 38px;
  border-radius: var(--r-xl);
}
.careers-eyebrow {
  font-size: 11.5px; font-weight: 650; font-variation-settings: 'wght' 650;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.careers-title { font-size: 22px; font-weight: 680; font-variation-settings: 'wght' 680; letter-spacing: -0.03em; margin-bottom: 4px; }
.careers-sub { font-size: 14.5px; color: var(--ink-2); }

/* ── FINAL CTA ── */
.final-panel {
  text-align: center;
  padding: 88px 48px;
  border-radius: 40px;
  overflow: hidden;
}
.final-panel::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(70% 90% at 50% 115%, rgba(255,79,0,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.final-panel h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.045em; line-height: 1.05;
  max-width: 18ch; margin: 0 auto 18px;
  text-wrap: balance;
  position: relative; z-index: 1;
}
.final-panel .cta-body {
  font-size: 17px; color: var(--ink-2); line-height: 1.65;
  max-width: 460px; margin: 0 auto 36px;
  position: relative; z-index: 1;
  text-wrap: pretty;
}
.final-note { font-size: 13px; color: var(--ink-3); margin-top: 22px; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { padding: 60px 0 36px; }
.footer-inner {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 300px; }
.footer-logo img { height: 21px; width: auto; display: block; }
.footer-tagline { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-head {
  font-size: 11px; font-weight: 650; font-variation-settings: 'wght' 650;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 3px;
}
.footer-col a {
  font-size: 14px; color: var(--ink-3); text-decoration: none;
  transition: color 200ms var(--ease);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(22,19,16,0.08); }
.footer-bottom p { font-size: 12.5px; color: var(--ink-3); }
body.om-dark .footer-bottom { border-top-color: rgba(255,255,255,0.12); }
body.om-dark .footer-logo img { filter: invert(1) brightness(2.4); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,12,6,0.55);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative; max-width: 440px; width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.30), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox-inner video { width: 100%; border-radius: calc(var(--r-xl) - 12px); background: #000; }
.lightbox-close {
  position: fixed; top: 22px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 200ms var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ── REVEAL ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero { padding-top: 108px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { order: 2; }
  .hero-video { order: 1; justify-self: center; max-width: 300px; }
  .showcase { padding: 48px 0 72px; }
  .nav-links > a:not(.btn) { display: none; }
  /* keep the nav CTA on one line next to wide logos */
  .nav-links .btn { white-space: nowrap; font-size: 13px; padding: 10px 16px; }
  .problem-grid, .tracks-grid, .vs-grid { grid-template-columns: 1fr; }
  .steps-grid, .quote-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-slab { padding: 44px 28px; border-radius: 32px; }
  .cs-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-frame { max-width: 460px; margin: 0 auto; }
  .stat-chip { flex: 1; min-width: 140px; padding: 16px 18px; }
  .final-panel { padding: 64px 24px; }
  .careers-bar { padding: 26px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { max-width: none; }
}

@media (max-width: 560px) {
  /* portrait photo fills the container on phones */
  .about-frame { max-width: 100%; }
}

@media (max-width: 760px) {
  /* About photo: drop the 3D flip on touch/iOS and show a plain portrait.
     backface-visibility + preserve-3d flip cards vanish on iOS Safari. */
  .about-img-wrap { perspective: none; aspect-ratio: auto; }
  .about-flip { position: static; transform: none !important; transform-style: flat; }
  .about-front { position: static; }
  .about-face { -webkit-backface-visibility: visible; backface-visibility: visible; }
  .about-back, .flip-hint { display: none; }
  .about-face img { position: static; width: 100%; height: auto; display: block; }

  /* Footer: standard single-column stacked layout on mobile */
  .footer-cols { grid-template-columns: 1fr; gap: 26px; }
}

/* ── Ambient dynamic background ──
   Drifting orange light behind everything; dims to black over dark frames. */
.bg-ambient {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
}
.bg-ambient::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 600ms var(--ease);
  background: radial-gradient(95% 95% at 50% 38%, #16110D 0%, #0A0A0A 72%);
}
.bg-ambient.is-dark::before { opacity: 0.985; }
.bg-ambient .blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
  transition: background 750ms var(--ease), opacity 750ms var(--ease);
  will-change: transform;
}
.bg-ambient .blob.b1 {
  width: 52vw; height: 52vw; left: -8vw; top: -6vw;
  background: radial-gradient(circle at 50% 50%, rgba(255,79,0,0.42) 0%, rgba(255,162,122,0.18) 45%, transparent 70%);
  animation: bgDrift1 26s var(--ease) infinite alternate;
}
.bg-ambient .blob.b2 {
  width: 46vw; height: 46vw; right: -10vw; bottom: -8vw;
  background: radial-gradient(circle at 50% 50%, rgba(255,162,122,0.34) 0%, rgba(255,79,0,0.14) 50%, transparent 72%);
  animation: bgDrift2 34s var(--ease) infinite alternate;
}
.bg-ambient.is-dark .blob.b1 {
  background: radial-gradient(circle at 50% 50%, rgba(18,15,12,0.85) 0%, rgba(10,10,10,0.4) 52%, transparent 74%);
}
.bg-ambient.is-dark .blob.b2 {
  background: radial-gradient(circle at 50% 50%, rgba(255,79,0,0.16) 0%, rgba(16,13,11,0.55) 56%, transparent 78%);
}
@keyframes bgDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(18vw, 12vh) scale(1.12); }
  100% { transform: translate(8vw, 26vh) scale(0.95); }
}
@keyframes bgDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-16vw, -10vh) scale(1.1); }
  100% { transform: translate(-6vw, -22vh) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-ambient .blob { animation: none; }
}

/* ── Dark-mode flip — engaged while a dark frame is centered ── */
body, .orb-field, section, header, footer, .glass,
[class*="-card"], [class*="-tile"], [class*="-panel"], .stat-chip {
  transition: background 550ms var(--ease), background-color 550ms var(--ease),
              color 550ms var(--ease), border-color 550ms var(--ease);
}
.orb-field { transition: opacity 600ms var(--ease); }
.nav-logo img { transition: filter 550ms var(--ease); }
nav {
  transition: background 550ms var(--ease), border-color 550ms var(--ease),
              box-shadow 350ms var(--ease);
}
body.om-dark {
  --ink: #F4F1EB;
  --ink-2: rgba(244,241,235,0.64);
  --ink-3: rgba(244,241,235,0.42);
  --canvas: #0A0A0A;
  --glass-bg: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.035) 100%);
  --glass-bg-strong: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
  --glass-border: rgba(255,255,255,0.16);
  --glass-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 60px -20px rgba(0,0,0,0.65), 0 4px 14px rgba(0,0,0,0.4);
  --glass-shadow-sm:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 32px -12px rgba(0,0,0,0.55);
}
body.om-dark .orb-field { opacity: 0.12; }
body.om-dark nav {
  background: linear-gradient(135deg, rgba(40,34,29,0.66) 0%, rgba(18,15,12,0.42) 100%);
  border-color: rgba(255,255,255,0.14);
}
body.om-dark .nav-links > a:not(.btn) { color: rgba(244,241,235,0.7); }
body.om-dark .nav-links > a:not(.btn):hover { background: rgba(255,255,255,0.12); color: #fff; }
body.om-dark .nav-logo img { filter: invert(1) brightness(2.4); }

/* ── MOBILE NAV MENU (burger injected by JS on pages that opt in) ── */
.nav-burger { display: none; }
@media (max-width: 960px) {
  nav { position: relative; }
  #nav.has-burger .nav-burger {
    display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 4px; width: 42px; height: 42px; flex-shrink: 0;
    background: transparent; border: none; cursor: pointer; padding: 0;
    border-radius: var(--r-pill);
  }
  .nav-burger span {
    display: block; width: 18px; height: 2px; border-radius: 2px;
    background: var(--ink);
    transition: transform 250ms var(--ease), opacity 200ms var(--ease);
  }
  #nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  #nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  #nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  /* pill shows logo + burger; all links (incl. CTA) live in the dropdown */
  #nav.has-burger .nav-links { display: none; }
  #nav.has-burger.nav-open .nav-links {
    display: flex; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
    -webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--glass-border); border-radius: 24px;
    box-shadow: var(--glass-shadow);
  }
  #nav.has-burger.nav-open .nav-links > a:not(.btn) {
    display: block; padding: 12px 16px; border-radius: 14px; font-size: 15px;
  }
  #nav.has-burger.nav-open .nav-links > a.btn { margin-top: 6px; }
  /* dark product page (propaganda) */
  body.om-dark .nav-burger span { background: #F4F1EB; }
  body.om-dark #nav.has-burger.nav-open .nav-links {
    background: linear-gradient(135deg, rgba(30,28,26,0.97) 0%, rgba(16,15,14,0.95) 100%);
    border-color: rgba(255,255,255,0.14);
  }
}

/* ── AMBIENT MOTION GATE: static gradients on phones & reduced motion ── */
@media (max-width: 960px), (prefers-reduced-motion: reduce) {
  .orb-field .orb, .bg-ambient, .bg-ambient * { animation: none !important; }
}

/* ── HIRING BANNER (dismissible, injected by JS) ── */
.hiring-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 8px 48px;
  background: linear-gradient(90deg, #FF4F00 0%, #FF7A33 100%);
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  line-height: 1.4; text-align: center;
  box-shadow: 0 6px 18px -8px rgba(255,79,0,0.5);
}
.hiring-banner a {
  color: #fff; font-weight: 700; white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
}
.hiring-banner .hb-close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18); border: none; border-radius: 50%;
  color: #fff; font-size: 12px; line-height: 1; cursor: pointer;
  transition: background 200ms var(--ease);
}
.hiring-banner .hb-close:hover { background: rgba(255,255,255,0.32); }
/* push the floating nav pill below the banner while it's visible */
body.has-hiring .nav-wrap { top: 52px; }
@media (max-width: 480px) {
  .hiring-banner { font-size: 12px; padding: 8px 44px; gap: 8px; }
}
