/* ============================================
   DESIGN TOKENS — Noir Studio (teal)
   ============================================ */
:root {
  --bg-abyss: oklch(0.08 0.004 250);
  --bg-void: oklch(0.1 0.004 250);
  --bg-surface: oklch(0.13 0.005 250);
  --bg-raised: oklch(0.16 0.006 250);
  --bg-overlay: oklch(0.2 0.008 250);

  --teal: oklch(0.55 0.055 220);
  --teal-bright: oklch(0.63 0.065 220);
  --teal-dim: oklch(0.55 0.055 220 / 0.12);
  --teal-ghost: oklch(0.55 0.055 220 / 0.06);
  --teal-border: oklch(0.55 0.055 220 / 0.2);

  --amber: oklch(0.7 0.12 70);
  --amber-dim: oklch(0.7 0.12 70 / 0.1);
  --amber-border: oklch(0.7 0.12 70 / 0.25);
  --green: oklch(0.6 0.1 150);
  --green-dim: oklch(0.6 0.1 150 / 0.1);
  --green-border: oklch(0.6 0.1 150 / 0.25);

  --text-primary: oklch(0.92 0.006 250);
  --text-secondary: oklch(0.65 0.008 250);
  --text-muted: oklch(0.48 0.008 250);
  --text-ghost: oklch(0.38 0.006 250);

  --border-default: oklch(1 0 0 / 0.08);
  --border-subtle: oklch(1 0 0 / 0.04);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --text-xs: 0.8rem;
  --text-sm: 0.95rem;
  --text-base: 1.05rem;
  --text-md: 1.25rem;
  --text-lg: 1.563rem;
  --text-xl: 1.953rem;
  --text-2xl: 2.441rem;
  --text-3xl: 3.052rem;
  --text-4xl: 3.815rem;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
  --max-width: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-abyss);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

::selection { background: var(--teal); color: var(--bg-abyss); }

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--duration-normal) var(--ease-out); }
a:hover { color: var(--teal-bright); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, var(--text-4xl)); font-weight: 100; }
h2 { font-size: clamp(1.8rem, 3.5vw + 0.5rem, var(--text-3xl)); color: var(--text-primary); }
h3 { font-size: clamp(1.3rem, 2vw + 0.5rem, var(--text-xl)); color: var(--text-primary); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.3rem, var(--text-md)); color: var(--text-primary); }

p { color: var(--text-secondary); font-size: var(--text-base); text-wrap: pretty; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.progress-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--teal);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ============================================
   STICKY NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1.1rem var(--spacing-md);
  display: flex; align-items: center; justify-content: space-between;
  background: oklch(0.08 0.004 250 / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-default);
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 44px; opacity: 0.95; width: auto; }
.nav-brand span { display: none; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-links {
  display: flex; gap: 0.4rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal-bright);
  background: var(--teal-dim);
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  border: 1px solid var(--teal-border);
  background: oklch(0.18 0.03 220);
  color: var(--teal-bright);
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-out);
}
.nav-cta:hover { background: oklch(0.22 0.04 220); color: var(--teal-bright); border-color: var(--teal); }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-expo), transform var(--duration-slow) var(--ease-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-expo), transform var(--duration-slow) var(--ease-expo); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-expo), transform var(--duration-slow) var(--ease-expo); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.96);
  transition: opacity var(--duration-slow) var(--ease-expo), transform var(--duration-slow) var(--ease-expo); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--max-width); margin-inline: auto; padding-inline: var(--spacing-md); }
section { padding-block: var(--spacing-xl); position: relative; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}
.lede { font-size: var(--text-md); color: var(--text-secondary); max-width: 60ch; line-height: 1.6; }
.body-col { max-width: 60ch; }
.body-col p + p { margin-top: 1.1rem; }
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
  opacity: 0.12;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  width: fit-content;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform var(--duration-fast) var(--ease-out); }
.btn-primary {
  border: 1px solid var(--teal-border);
  background: oklch(0.18 0.03 220);
  color: var(--teal-bright);
}
.btn-primary:hover { background: oklch(0.23 0.045 220); color: var(--teal-bright); border-color: var(--teal); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: var(--teal-border); color: var(--text-primary); }
.btn-amber {
  border: 1px solid var(--amber-border);
  background: oklch(0.22 0.06 70);
  color: var(--amber);
}
.btn-amber:hover { background: oklch(0.26 0.07 70); color: var(--amber); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-block: var(--spacing-2xl);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(oklch(1 0 0 / 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black, transparent 75%);
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--bg-abyss); }
.hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity 1s var(--ease-out); }
.hero-bg-video { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease-out); }
.hero-bg-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%); border: 0; pointer-events: none;
}
.hero.video-ready .hero-bg-video { opacity: 1; }
.hero.video-ready .hero-poster { opacity: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, oklch(0.08 0.004 250 / 0.78) 0%, oklch(0.08 0.004 250 / 0.45) 45%, oklch(0.08 0.004 250 / 0.2) 100%),
    linear-gradient(180deg, oklch(0.08 0.004 250 / 0.5) 0%, oklch(0.08 0.004 250 / 0.25) 42%, oklch(0.08 0.004 250 / 0.92) 100%),
    radial-gradient(ellipse 70% 60% at 72% 16%, var(--teal-ghost), transparent 60%);
}
.hero-content { max-width: 820px; position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--teal); display: inline-block; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--teal-bright); font-weight: 200; }
.hero-sub {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 56ch; line-height: 1.6;
  margin-bottom: 2.25rem;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.55rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-ghost);
}
.hero-scroll .line { width: 1px; height: 36px; background: linear-gradient(var(--teal), transparent); animation: scrollPulse 2s var(--ease-out) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================
   TRUST BAR
   ============================================ */
.trust { padding-block: var(--spacing-lg); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.trust .container { text-align: center; }
.trust-label {
  font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--text-muted); margin-bottom: 2rem;
}
.trust-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.trust-logos { display: flex; flex-wrap: nowrap; align-items: center; width: max-content; animation: trustMarquee 55s linear infinite; }
.trust-logos > * { flex: 0 0 auto; margin-right: 3.25rem; }
.trust-marquee:hover .trust-logos { animation-play-state: paused; }
@keyframes trustMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trust-marquee { -webkit-mask-image: none; mask-image: none; }
  .trust-logos { flex-wrap: wrap; width: auto; justify-content: center; animation: none; transform: none; }
  .trust-logos > * { margin: 0.6rem 1.5rem; }
}
.trust-logos span {
  font-family: var(--font-display); font-weight: 300;
  font-size: var(--text-md); letter-spacing: 0.02em;
  color: var(--text-muted); opacity: 0.65;
  transition: opacity var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}
.trust-logos span:hover { opacity: 1; color: var(--text-primary); }
.trust-logos img {
  height: 26px; width: auto; opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity var(--duration-normal) var(--ease-out);
}
.trust-logos img:hover { opacity: 0.95; }

/* ============================================
   EDUCATION / PHOTOS AREN'T ENOUGH
   ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); align-items: center; }
.split.narrow { grid-template-columns: 1.1fr 0.9fr; }
.edu-stats { display: flex; flex-direction: column; gap: 1px; background: var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-default); }
.edu-stat { background: var(--bg-surface); padding: 1.5rem 1.75rem; }
.edu-stat .num { font-family: var(--font-display); font-weight: 200; font-size: var(--text-2xl); color: var(--teal-bright); line-height: 1; }
.edu-stat .desc { font-size: var(--text-sm); color: var(--text-secondary); margin-top: 0.5rem; }
.edu-stat .src { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-ghost); margin-top: 0.5rem; }

/* ============================================
   FEATURED REEL + TESTIMONIAL
   ============================================ */
.reel-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--spacing-xl); align-items: center; }
.device-frame {
  width: 100%; max-width: 300px; margin-inline: auto;
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  border: 3px solid var(--bg-overlay);
  background: #000;
  padding: 8px;
  box-shadow: 0 30px 80px oklch(0 0 0 / 0.6), 0 0 0 1px var(--border-default);
  position: relative;
}
.device-frame::before {
  content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #000; border-radius: 0 0 14px 14px; z-index: 2;
}
.device-frame .screen { width: 100%; height: 100%; border-radius: 28px; overflow: hidden; background: var(--bg-void); }
.device-frame iframe { width: 100%; height: 100%; border: 0; }
.pull-quote { }
.pull-quote .mark { font-family: var(--font-display); font-size: 4rem; color: var(--teal); opacity: 0.25; line-height: 0.5; }
.pull-quote blockquote { font-family: var(--font-display); font-weight: 200; font-size: var(--text-xl); line-height: 1.4; color: var(--text-primary); margin: 1rem 0 1.5rem; }
.pull-quote cite { font-style: normal; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-md); margin-top: var(--spacing-lg); }
.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}
.price-card:hover { border-color: var(--teal-border); transform: translateY(-3px); }
.price-card.featured { border-color: var(--teal-border); background: linear-gradient(180deg, oklch(0.14 0.012 220), var(--bg-surface)); }
.price-card .tier-label { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); display: flex; align-items: center; justify-content: space-between; }
.price-card .badge { background: var(--teal-dim); color: var(--teal-bright); border: 1px solid var(--teal-border); border-radius: 100px; padding: 0.15rem 0.55rem; font-size: 0.5rem; letter-spacing: 0.06em; }
.price-card h3 { font-size: var(--text-lg); }
.price-card .price { font-family: var(--font-display); font-weight: 200; font-size: var(--text-3xl); color: var(--text-primary); line-height: 1; }
.price-card .price span { font-size: var(--text-md); color: var(--text-muted); }
.price-card .perreel { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.05em; color: var(--text-muted); text-transform: uppercase; }
.price-card .cancel { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.05em; color: var(--green); text-transform: uppercase; }
.price-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.price-card .btn { margin-top: auto; }
.discount-note {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: var(--spacing-md);
  padding: 0.95rem 1.25rem;
  background: var(--teal-ghost); border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm); color: var(--text-secondary);
}
.content-day {
  margin-top: var(--spacing-md);
  background: var(--bg-void);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.content-day .cd-info h4 { font-family: var(--font-display); font-weight: 300; }
.content-day .cd-info p { font-size: var(--text-sm); color: var(--text-muted); margin-top: 0.35rem; }
.content-day .cd-price { font-family: var(--font-display); font-weight: 200; font-size: var(--text-2xl); color: var(--text-primary); }

/* ============================================
   VIDEO GRID / CARDS
   ============================================ */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: var(--spacing-lg); }
.video-card { cursor: pointer; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-surface); border: 1px solid var(--border-default); transition: border-color var(--duration-normal) var(--ease-out); }
.video-card:hover { border-color: var(--teal-border); }
.video-card .video-wrapper { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-void); }
.video-card .video-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.video-card:hover .video-wrapper img { transform: scale(1.04); }
.video-card .video-wrapper::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, oklch(0.08 0.004 250 / 0.55) 0%, transparent 55%); }
.video-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: oklch(0.08 0.004 250 / 0.6); border: 1px solid oklch(1 0 0 / 0.2);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: all var(--duration-normal) var(--ease-out);
}
.video-card:hover .play-btn { background: var(--teal); border-color: var(--teal); transform: translate(-50%,-50%) scale(1.08); }
.video-card .play-btn svg { width: 18px; height: 18px; fill: var(--text-primary); margin-left: 2px; }
.video-card:hover .play-btn svg { fill: var(--bg-abyss); }
.video-card .video-label { padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.2rem; position: relative; z-index: 2; }
.video-card .video-label .vl-title { font-size: var(--text-base); color: var(--text-primary); }
.video-card .video-label .vl-tag { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); }

/* ============================================
   CASE STUDIES
   ============================================ */
.case-study { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; margin-top: var(--spacing-md); }
.case-study .cs-head { padding: 1.25rem 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-bottom: 1px solid var(--border-subtle); }
.case-study .cs-head h3 { font-size: var(--text-lg); }
.case-study .cs-head .cs-tag { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.case-embed { position: relative; aspect-ratio: 16 / 9; background: #000; }
.case-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.metric-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--border-subtle); }
.metric { background: var(--bg-void); padding: 1.75rem; text-align: center; }
.metric .brand { font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.6rem; }
.metric .views { font-family: var(--font-display); font-weight: 200; font-size: var(--text-2xl); color: var(--teal-bright); line-height: 1; }
.metric .outlier { font-size: var(--text-sm); color: var(--text-secondary); margin-top: 0.5rem; }
.metric .outlier b { color: var(--text-primary); font-weight: 600; }
.outlier-note { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.04em; color: var(--text-ghost); max-width: 70ch; margin: var(--spacing-md) auto 0; text-align: center; line-height: 1.7; }

/* ============================================
   STAT BAR
   ============================================ */
.stat-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; margin-top: var(--spacing-lg); }
.stat-bar .stat { background: var(--bg-surface); padding: 2.25rem 1.5rem; text-align: center; }
.stat-bar .stat .num { font-family: var(--font-display); font-weight: 100; font-size: var(--text-3xl); color: var(--teal-bright); line-height: 1; }
.stat-bar .stat .label { font-size: var(--text-sm); color: var(--text-secondary); margin-top: 0.75rem; line-height: 1.5; }
.stat-bar .stat .src { font-family: var(--font-mono); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-ghost); margin-top: 0.6rem; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: var(--spacing-lg); }
.blog-card { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out); display: block; }
.blog-card:hover { border-color: var(--teal-border); transform: translateY(-3px); }
.blog-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-raised), var(--bg-void)); position: relative; }
.blog-card .thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, var(--teal-ghost), transparent 60%); }
.blog-card .bc-body { padding: 1.25rem 1.5rem; }
.blog-card .bc-date { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); }
.blog-card h4 { font-family: var(--font-display); font-weight: 300; font-size: var(--text-base); color: var(--text-primary); margin: 0.6rem 0 0.5rem; }
.blog-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { text-align: center; padding-block: var(--spacing-2xl); background: radial-gradient(ellipse 60% 80% at 50% 0%, var(--teal-ghost), transparent 70%); }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; }
.final-cta .btn-row { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer { border-top: 1px solid var(--border-subtle); padding-block: var(--spacing-lg) var(--spacing-md); background: var(--bg-void); }
.footer .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--spacing-lg); }
.footer-brand img { height: 30px; opacity: 0.9; margin-bottom: 1rem; }
.footer-brand p { font-size: var(--text-sm); color: var(--text-muted); max-width: 38ch; line-height: 1.6; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: 0.6rem; line-height: 1.5; }
.footer-bottom { max-width: var(--max-width); margin: var(--spacing-lg) auto 0; padding: 1.5rem var(--spacing-md) 0; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom, .footer-bottom a { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-ghost); }
.footer-partner { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--text-ghost); text-transform: uppercase; margin-top: 1rem; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay { position: fixed; inset: 0; z-index: 10000; background: oklch(0.06 0.003 250 / 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--duration-normal) var(--ease-out); padding: 1.5rem; }
.lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.lightbox-content { width: min(420px, 92vw); transform: scale(0.96); transition: transform var(--duration-normal) var(--ease-out); }
.lightbox-overlay.active .lightbox-content { transform: scale(1); }
.lightbox-content .lightbox-video { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.lightbox-content .lightbox-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-void); border: 1px solid var(--border-default); color: var(--text-primary); font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 10001; transition: all var(--duration-fast) var(--ease-out); }
.lightbox-close:hover { border-color: var(--teal); color: var(--teal-bright); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .split, .split.narrow, .reel-split { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: oklch(0.08 0.004 250 / 0.97); backdrop-filter: blur(20px); padding: 1rem var(--spacing-md); border-bottom: 1px solid var(--border-default); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .pricing-grid, .stat-bar, .blog-grid { grid-template-columns: 1fr; }
  .stat-bar .stat { padding: 1.75rem; }
}
@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
  .footer .footer-grid { grid-template-columns: 1fr; }
  .content-day { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* ============================================
   INNER PAGE SHARED COMPONENTS
   ============================================ */
.page-hero { position: relative; overflow: hidden; padding-block: calc(var(--spacing-2xl) + 3rem) var(--spacing-xl); }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 75% 10%, var(--teal-ghost), transparent 60%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-abyss) 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(oklch(1 0 0 / 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 55% 35%, black, transparent 75%);
}
.page-hero .hero-eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 { margin-bottom: 1.25rem; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--teal-bright); }
.page-hero .hero-sub { font-size: var(--text-md); color: var(--text-secondary); max-width: 58ch; line-height: 1.6; margin-bottom: 2rem; }
.page-hero .contact-line { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }
.page-hero .contact-line a { color: var(--teal-bright); }

/* breadcrumbs */
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-ghost); margin-bottom: 1.25rem; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
.breadcrumbs a:hover { color: var(--teal-bright); }
.breadcrumbs .sep { color: var(--text-ghost); opacity: 0.55; }
.breadcrumbs .current { color: var(--teal); }

.center-col { max-width: 60ch; margin-inline: auto; text-align: center; }
.center-col p + p { margin-top: 1.1rem; }
.section-head { text-align: center; max-width: 60ch; margin-inline: auto; margin-bottom: var(--spacing-lg); }
.section-head .section-label { display: inline-block; }
.section-rule { display: flex; align-items: center; gap: 1.25rem; margin-block: var(--spacing-xl) var(--spacing-lg); }
.section-rule::before, .section-rule::after { content: ''; height: 1px; flex: 1; background: var(--border-default); }
.section-rule span { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); white-space: nowrap; }

/* service price rows */
.service-list { display: flex; flex-direction: column; gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
.service-row { background: var(--bg-surface); padding: 1.4rem 1.75rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; transition: background var(--duration-normal) var(--ease-out); }
.service-row:hover { background: var(--bg-raised); }
.service-row .sr-info h4 { font-family: var(--font-display); font-weight: 300; font-size: var(--text-base); color: var(--text-primary); }
.service-row .sr-info p { font-size: var(--text-sm); color: var(--text-muted); margin-top: 0.25rem; max-width: 52ch; }
.service-row .sr-price { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--teal-bright); white-space: nowrap; letter-spacing: 0.03em; }
.tier-note { margin-top: var(--spacing-md); padding: 1rem 1.25rem; background: var(--bg-void); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; color: var(--text-muted); line-height: 1.8; text-transform: uppercase; }

.included-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; margin-top: var(--spacing-md); }
.included-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--text-sm); color: var(--text-secondary); }
.included-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--teal-bright); fill: none; }

/* compound ROI callout */
.roi-card { background: linear-gradient(180deg, oklch(0.14 0.012 220), var(--bg-surface)); border: 1px solid var(--teal-border); border-radius: var(--radius-lg); padding: 2.5rem; }

/* filter pills */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: var(--spacing-lg); }
.filter-pill { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); background: none; border: 1px solid var(--border-default); border-radius: 100px; padding: 0.55rem 1.05rem; cursor: pointer; transition: all var(--duration-fast) var(--ease-out); }
.filter-pill:hover { color: var(--text-primary); border-color: var(--border-default); }
.filter-pill.active { color: var(--teal-bright); border-color: var(--teal); background: var(--teal-ghost); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.portfolio-grid .video-card.hidden { display: none; }

/* testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: var(--spacing-lg); }
.testi-card { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.testi-card .mark { font-family: var(--font-display); font-size: 3rem; color: var(--teal); opacity: 0.25; line-height: 0.4; }
.testi-card blockquote { font-size: var(--text-base); line-height: 1.6; color: var(--text-primary); }
.testi-card cite { font-style: normal; font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: auto; }

/* process timeline */
.timeline { max-width: 760px; margin-inline: auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 1px; background: linear-gradient(180deg, var(--teal-border), var(--border-subtle)); }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; padding-block: 1.5rem; position: relative; }
.tl-num { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--teal-border); background: var(--bg-surface); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 200; font-size: var(--text-md); color: var(--teal-bright); position: relative; z-index: 2; }
.tl-body h3 { font-size: var(--text-lg); margin-bottom: 0.5rem; }
.tl-body p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }

/* embed full width */
.embed-16x9 { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; background: #000; border: 1px solid var(--border-default); }
.embed-16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* forms */
.track-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--spacing-lg); align-items: start; }
.track-panel { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 2.25rem; }
.track-panel .track-label { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 0.5rem; }
.track-panel .track-sub { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-primary);
  background: var(--bg-void); border: 1px solid var(--border-default); border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem; outline: none; transition: border-color var(--duration-fast) var(--ease-out);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-ghost); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-border); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-card { background: var(--bg-void); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1rem; }
.checkout-card.feature { border-color: var(--teal-border); }
.checkout-card .cc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.checkout-card h4 { font-family: var(--font-display); font-weight: 300; font-size: var(--text-base); }
.checkout-card .cc-price { font-family: var(--font-display); font-weight: 200; font-size: var(--text-xl); color: var(--text-primary); white-space: nowrap; }
.checkout-card p { font-size: var(--text-sm); color: var(--text-muted); margin: 0.5rem 0 1rem; line-height: 1.5; }

/* FAQ accordion */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-weight: 300; font-size: var(--text-base); color: var(--text-primary); }
.faq-q .icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform var(--duration-normal) var(--ease-out); }
.faq-q .icon::before, .faq-q .icon::after { content: ''; position: absolute; background: var(--teal-bright); transition: opacity var(--duration-fast) var(--ease-out); }
.faq-q .icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-q .icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-q .icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--duration-normal) var(--ease-out); }
.faq-a p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; padding-bottom: 1.25rem; max-width: 70ch; }

@media (max-width: 960px) {
  .track-grid { grid-template-columns: 1fr; }
  .portfolio-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .included-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .portfolio-grid, .testi-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .service-row { flex-direction: column; gap: 0.5rem; }
}

/* ============================================
   LEGAL / PROSE PAGES
   ============================================ */
.legal { max-width: 760px; margin-inline: auto; }
.legal .updated { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-ghost); margin-bottom: var(--spacing-lg); }
.legal h2 { font-size: var(--text-lg); margin: var(--spacing-lg) 0 0.75rem; }
.legal h3 { font-size: var(--text-md); margin: var(--spacing-md) 0 0.5rem; color: var(--text-primary); }
.legal p, .legal li { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.75; max-width: 72ch; }
.legal p + p { margin-top: 1rem; }
.legal ul { list-style: none; margin: 0.75rem 0; padding: 0; }
.legal li { position: relative; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.legal li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.legal a { color: var(--teal-bright); }

/* form status message */
.form-status { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; padding: 0.85rem 1rem; border-radius: var(--radius-md); margin-top: 1rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); }
.form-status.error { background: var(--amber-dim); border: 1px solid var(--amber-border); color: var(--amber); }

/* ============================================
   FEATURE IMAGE + CINEMATIC SCENE BAND
   ============================================ */
.feature-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-default); box-shadow: 0 30px 80px oklch(0 0 0 / 0.5); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; display: block; transition: transform 0.8s var(--ease-out); }
.feature-img:hover img { transform: scale(1.04); }
.feature-img::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, oklch(0.08 0.004 250 / 0.45)),
              radial-gradient(ellipse 80% 50% at 80% 10%, var(--teal-ghost), transparent 55%); }

.scene-band { position: relative; padding-block: var(--spacing-2xl); overflow: hidden;
  background-size: cover; background-position: center; background-attachment: fixed; }
.scene-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.08 0.004 250 / 0.9) 0%, oklch(0.08 0.004 250 / 0.78) 50%, oklch(0.08 0.004 250 / 0.94) 100%),
              radial-gradient(ellipse 55% 65% at 50% 50%, oklch(0.08 0.004 250 / 0.25), oklch(0.08 0.004 250 / 0.72)); }
.scene-band .container { position: relative; z-index: 2; }
.scene-content { max-width: 64ch; margin-inline: auto; text-align: center; text-shadow: 0 2px 24px oklch(0.08 0.004 250 / 0.8); }
.scene-content .mark { font-family: var(--font-display); font-size: 4rem; color: var(--teal); opacity: 0.35; line-height: 0.4; }
.scene-content blockquote { font-family: var(--font-display); font-weight: 200; font-size: clamp(1.5rem, 2.6vw + 0.5rem, 2.4rem); line-height: 1.35; color: var(--text-primary); margin: 1.25rem 0 1.5rem; letter-spacing: -0.01em; }
.scene-content cite { font-style: normal; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-bright); }
@media (max-width: 900px) { .scene-band { background-attachment: scroll; } }

/* ============================================
   CALLOUT / PULL-QUOTE
   ============================================ */
.callout {
  margin: 1.75rem 0;
  background: var(--teal-ghost);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--text-md);
  line-height: 1.45;
  color: var(--text-primary);
  max-width: none;
}
.callout strong { color: var(--teal-bright); font-weight: 500; }

/* ============================================
   FLAGSHIP FLIP DECK (home selected work)
   ============================================ */
.deck { position: relative; max-width: 960px; margin: var(--spacing-lg) auto 0; }
.deck-stack { position: relative; height: clamp(380px, 44vw, 470px); perspective: 1600px; }
.deck-card {
  position: absolute; inset: 0;
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.35fr 1fr;
  opacity: 0; transform: translateY(44px) scale(0.88); pointer-events: none;
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out);
  box-shadow: 0 30px 80px oklch(0 0 0 / 0.45);
}
.deck-card.is-active { opacity: 1; transform: translateY(0) scale(1); z-index: 4; pointer-events: auto; }
.deck-card.is-next  { opacity: 0.55; transform: translateY(18px) scale(0.95); z-index: 3; }
.deck-card.is-after { opacity: 0.25; transform: translateY(34px) scale(0.9); z-index: 2; }
.deck-card.is-out   { opacity: 0; transform: translateY(-48px) scale(0.97) rotate(-2deg); z-index: 5; }
.deck-card .video-card { border: none; border-radius: 0; background: var(--bg-void); height: 100%; }
.deck-card .video-wrapper { height: 100%; aspect-ratio: auto; }
.deck-meta { padding: 2rem 2.25rem; display: flex; flex-direction: column; gap: 0.6rem; justify-content: center; }
.deck-tag { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); }
.deck-meta h3 { font-size: var(--text-xl); margin-bottom: 0.25rem; }
.deck-fields { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.5rem; }
.deck-fields > div { display: flex; flex-direction: column; gap: 0.15rem; }
.deck-fields dt { font-family: var(--font-mono); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.deck-fields dd { font-size: var(--text-sm); color: var(--text-primary); }
.deck-fields dd[data-placeholder] { color: var(--text-ghost); font-style: italic; }
.deck-watch { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-bright); margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.deck-nav { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 1.5rem; }
.deck-dots { display: flex; gap: 0.5rem; }
.deck-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-default); border: none; cursor: pointer; padding: 0; transition: all var(--duration-fast) var(--ease-out); }
.deck-dot.active { background: var(--teal); width: 22px; border-radius: 100px; }
.deck-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-void); border: 1px solid var(--border-default); color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--duration-fast) var(--ease-out); }
.deck-arrow svg { width: 16px; height: 16px; }
.deck-arrow:hover { border-color: var(--teal); color: var(--teal-bright); }
@media (max-width: 768px) {
  .deck-card { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .deck-stack { height: clamp(560px, 135vw, 680px); }
  .deck-meta { padding: 1.5rem; }
}

/* ============================================
   HEADLINER CASE STUDY ($21M)
   ============================================ */
.cs-num { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); display: block; margin-bottom: 0.35rem; }
.case-hero { border-color: var(--teal-border); }
.case-hero .case-embed { aspect-ratio: 16/9; }
.case-hero-body { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--spacing-md); padding: 2rem 1.75rem; align-items: center; border-top: 1px solid var(--border-subtle); }
.sold-block { display: flex; flex-direction: column; gap: 0.6rem; }
.sold-badge { align-self: flex-start; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 100px; padding: 0.3rem 0.85rem; }
.sold-amount { font-family: var(--font-display); font-weight: 100; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--teal-bright); line-height: 1; letter-spacing: -0.02em; }
.case-hero-copy .lead { font-size: var(--text-md); color: var(--text-primary); line-height: 1.5; }
.case-hero-copy p + p { margin-top: 1rem; }
.case-hero-copy p:last-child { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 768px) {
  .case-hero-body { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   LISTING CAMPAIGN (3-video funnel)
   ============================================ */
.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: var(--spacing-md); }
.campaign-card { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out); }
.campaign-card:hover { border-color: var(--teal-border); transform: translateY(-3px); }
.campaign-card .video-card { border: none; border-radius: 0; }
.campaign-card .video-wrapper { aspect-ratio: 16 / 10; }
.campaign-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.campaign-stage { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); }
.campaign-card h4 { font-family: var(--font-display); font-weight: 300; font-size: var(--text-md); color: var(--text-primary); }
.campaign-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }
.campaign-card .opt { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border-subtle); font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); line-height: 1.6; }
.campaign-price { margin-top: var(--spacing-md); display: flex; align-items: baseline; gap: 0.75rem; }
.campaign-price .num { font-family: var(--font-display); font-weight: 200; font-size: var(--text-2xl); color: var(--text-primary); }
.campaign-price .meta { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; color: var(--text-muted); text-transform: uppercase; }
@media (max-width: 860px) { .campaign-grid { grid-template-columns: 1fr; } }

/* ============================================
   SELECTED WORK — SPLIT FULL-BLEED SHOWCASE
   ============================================ */
.showcase { position: relative; width: 100%; min-height: clamp(560px, 82vh, 820px); background: var(--bg-abyss); overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.showcase-slide { position: absolute; inset: 0; display: grid; grid-template-columns: 0.92fr 1.08fr; opacity: 0; pointer-events: none; transition: opacity 0.8s var(--ease-out); }
.showcase-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.showcase-meta { display: flex; flex-direction: column; justify-content: center; gap: 1rem; padding: var(--spacing-xl) clamp(1.5rem, 5vw, 5.5rem); }
.showcase-counter { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.22em; color: var(--text-muted); }
.showcase-title { font-family: var(--font-display); font-weight: 200; font-size: clamp(2rem, 3.4vw + 0.5rem, 3.1rem); line-height: 1.05; letter-spacing: -0.015em; color: var(--text-primary); }
.showcase-sub { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.showcase-credits { font-size: var(--text-sm); color: var(--text-muted); max-width: 44ch; }
.showcase-credits[data-placeholder] { color: var(--text-ghost); font-style: italic; }
.showcase-stats { display: flex; gap: 2.75rem; margin-top: 0.75rem; }
.showcase-stat .v { font-family: var(--font-display); font-weight: 200; font-size: var(--text-lg); color: var(--text-primary); line-height: 1; }
.showcase-stat .v[data-placeholder] { color: var(--text-ghost); font-style: italic; font-size: var(--text-base); }
.showcase-stat .l { font-family: var(--font-mono); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-top: 0.4rem; }
.showcase-media { position: relative; overflow: hidden; background: var(--bg-void); cursor: pointer; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: transform 6s var(--ease-out); }
.showcase-slide.active .showcase-media img { transform: scale(1.08); }
.showcase-media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, var(--bg-abyss) 0%, transparent 16%); }
.showcase-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: oklch(0.08 0.004 250 / 0.5); border: 1px solid oklch(1 0 0 / 0.25); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 3; transition: all var(--duration-normal) var(--ease-out); }
.showcase-media:hover .showcase-play { background: var(--teal); border-color: var(--teal); transform: translate(-50%,-50%) scale(1.06); }
.showcase-play svg { width: 22px; height: 22px; fill: var(--text-primary); margin-left: 3px; }
.showcase-media:hover .showcase-play svg { fill: var(--bg-abyss); }
.showcase-controls { position: absolute; left: clamp(1.5rem, 5vw, 5.5rem); bottom: clamp(1.5rem, 5vh, 3rem); display: flex; align-items: center; gap: 1.25rem; z-index: 6; }
.showcase-dots { display: flex; gap: 0.5rem; }
.showcase-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-default); border: none; padding: 0; cursor: pointer; transition: all var(--duration-fast) var(--ease-out); }
.showcase-dot.active { background: var(--teal); width: 24px; border-radius: 100px; }
.showcase-arrows { display: flex; gap: 0.5rem; }
.showcase-arrow { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-void); border: 1px solid var(--border-default); color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--duration-fast) var(--ease-out); }
.showcase-arrow:hover { border-color: var(--teal); color: var(--teal-bright); }
.showcase-arrow svg { width: 15px; height: 15px; }
@media (max-width: 860px) {
  .showcase { min-height: 0; }
  .showcase-slide { position: relative; grid-template-columns: 1fr; opacity: 0; height: 0; overflow: hidden; transition: opacity 0.5s var(--ease-out); }
  .showcase-slide.active { height: auto; }
  .showcase-media { aspect-ratio: 16/11; order: -1; }
  .showcase-media::after { background: linear-gradient(0deg, var(--bg-abyss) 0%, transparent 28%); }
  .showcase-meta { padding: var(--spacing-md) var(--spacing-md) calc(var(--spacing-xl) + 1rem); gap: 0.85rem; }
  .showcase-controls { bottom: var(--spacing-md); }
}

/* ============================================
   LEGAL PAGE EXTRAS
   ============================================ */
.legal-instrument-note {
  background: var(--teal-ghost);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.legal-review-notice {
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--amber);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin: 1.5rem 0 2rem;
}
.legal-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--teal-border);
  text-align: left;
}
.legal-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table td:first-child { color: var(--text-primary); white-space: nowrap; }
.legal-table td code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: var(--bg-raised);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--teal-bright);
}
.legal-signature-block {
  margin: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sig-line {
  display: inline-block;
  border-bottom: 1px solid var(--text-muted);
  width: 260px;
  margin-left: 0.5rem;
  vertical-align: bottom;
}
.sig-line-short { width: 140px; }
.legal-footer-entity {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONSENT BANNER
   ============================================ */
#wcc-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-surface);
  border-top: 1px solid var(--teal-border);
  padding: 1rem var(--spacing-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -4px 32px oklch(0 0 0 / 0.35);
}
.consent-banner-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.consent-banner-text {
  flex: 1;
  min-width: 220px;
}
.consent-banner-text p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}
.consent-banner-text a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
/* Override btn sizing for banner to keep it compact */
.consent-banner-actions .btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
}

/* ============================================
   EMBED CONSENT PLACEHOLDERS
   ============================================ */
.embed-consent {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-void);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* When inside device-frame .screen, fill the parent instead */
.screen .embed-consent,
.case-embed .embed-consent {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  border-radius: 0;
}
/* Real iframe once injected */
.embed-consent iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Declined state notice */
.embed-declined-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 100%;
  height: 100%;
  transition: color var(--duration-normal) var(--ease-out);
}
.embed-declined-notice:hover { color: var(--text-secondary); }
.embed-declined-notice svg { opacity: 0.5; }
.embed-declined-notice span { font-size: var(--text-sm); }
.embed-enable-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  border-bottom: 1px solid var(--teal-border);
  padding-bottom: 2px;
}
