/* =========================================================
   UNIVERSE AI — 3-Day AI Ads & Videos Bootcamp
   Design system: WHITE + BLUE
   Light primary surfaces, dark navy text,
   electric blue accent, deep navy cinematic sections.
   ========================================================= */

:root {
  /* Text + surface (light theme primary) */
  --ink: #0a1936;          /* dark navy text on light bg */
  --ink-2: #1a3056;
  --ink-3: #2a4880;
  --paper: #ffffff;        /* primary white background */
  --paper-2: #f4f8ff;      /* soft blue-tinted surface */
  --paper-3: #e7f0ff;      /* slightly deeper blue surface */
  --mute: #5b6f93;         /* muted blue-gray on light */
  --line: rgba(15, 40, 95, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Cinematic dark surfaces (used in hero/make/tools/mindset/final) */
  --night: #050d1f;
  --night-2: #0a1a36;
  --night-3: #102652;
  --ink-light: #eaf2ff;    /* text used on dark sections */
  --mute-light: #a8bcdb;

  /* Accents (sampled from V logo — deep navy body) */
  --violet: #1e3a8a;       /* primary logo navy */
  --violet-2: #3a5fb8;     /* mid navy for gradients */
  --amber: #1e3a8a;        /* unified to logo navy */
  --amber-2: #c9dfff;
  --gold: #0d2756;         /* deepest navy anchor */
  --red: #ff5b6e;
  --green: #2db573;

  --radius: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 24px 60px -32px rgba(13, 39, 86, 0.28);
  --shadow-card: 0 12px 30px -16px rgba(13, 39, 86, 0.22);
  --shadow-glow: 0 0 0 1px rgba(30, 58, 138, 0.22),
                 0 20px 60px -20px rgba(30, 58, 138, 0.4);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-ambient: 12s;
  --dur-interact: 420ms;
  --dur-attention: 240ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
}

/* =========================================================
   Loader
   ========================================================= */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(30, 58, 138, 0.26), transparent 42%),
    radial-gradient(circle at 80% 82%, rgba(58, 95, 184, 0.2), transparent 40%),
    linear-gradient(180deg, #f8fbff 0%, #eaf2ff 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-streaks {
  position: absolute;
  inset: -12% -20%;
  pointer-events: none;
}
.loader-streaks .streak {
  position: absolute;
  left: -20%;
  width: 46%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.75), transparent);
  filter: blur(0.2px);
  transform: rotate(-15deg);
  opacity: 0;
}
.loader-streaks .streak.s1 {
  top: 24%;
  animation: streakRun 1.8s linear infinite;
}
.loader-streaks .streak.s2 {
  top: 48%;
  width: 58%;
  animation: streakRun 2.1s linear 0.45s infinite;
}
.loader-streaks .streak.s3 {
  top: 68%;
  width: 52%;
  animation: streakRun 1.95s linear 0.9s infinite;
}
.loader-inner {
  width: min(92vw, 420px);
  padding: 8px 16px;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.loader-logo-wrap {
  position: relative;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
}
.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(30, 58, 138, 0.45));
  animation: loaderFloat 1.9s ease-in-out infinite;
}
.loader-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(30, 58, 138, 0.24);
  animation: loaderPulse 1.7s ease-out infinite;
}
.loader-ring.r2 {
  inset: -16px;
  border-color: rgba(58, 95, 184, 0.22);
  animation-delay: 0.45s;
}
.loader-copy {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  text-align: center;
  font-weight: 600;
}
.loader-scene {
  margin-top: -2px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.85;
}
body.is-loading {
  overflow: hidden;
}
@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes loaderPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes streakRun {
  0% { transform: translate3d(-30vw, 0, 0) rotate(-15deg); opacity: 0; }
  14% { opacity: 0.75; }
  55% { opacity: 0.35; }
  100% { transform: translate3d(140vw, 0, 0) rotate(-15deg); opacity: 0; }
}
@media (max-width: 520px) {
  .loader-logo-wrap {
    width: 84px;
    height: 84px;
  }
  .loader-copy { font-size: 11px; }
  .loader-scene { font-size: 9px; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }
.serif { font-family: "Instrument Serif", serif; }

/* =========================================================
   Global utilities
   ========================================================= */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.section-head {
  max-width: 980px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.kicker {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(30, 58, 138, 0.25);
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
}
.kicker.muted { opacity: 0.85; }
.kicker.warn { color: var(--red); border-color: rgba(255, 91, 110, 0.35); background: rgba(255, 91, 110, 0.08); }
.kicker.center { margin: 0 auto 18px; }

.h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(54px, 8.5vw, 128px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.h1 .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.85em;
  color: var(--violet-2);
  text-shadow: 0 0 24px rgba(58, 95, 184, 0.45);
}
.h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.h2 em { color: var(--violet); }
.h2 em.red { color: var(--red); }
.h2 em.gold { color: var(--gold); }
.h2 .tiny { font-size: 0.45em; font-family: "JetBrains Mono", monospace; font-style: normal; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); display: inline-block; margin-top: 12px; }
.h2.huge { font-size: clamp(44px, 8vw, 104px); }

.lead {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--mute);
  max-width: 620px;
  margin: 20px auto 0;
  line-height: 1.5;
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--ink);
}
.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(30, 58, 138, 0.35));
  transition: transform 0.35s var(--ease-soft), filter 0.35s var(--ease-soft);
}
.brand:hover .brand-logo {
  transform: translateY(-1px) rotate(-2deg) scale(1.04);
  filter: drop-shadow(0 6px 14px rgba(30, 58, 138, 0.5));
}
.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-name span { color: var(--violet); font-weight: 600; }

.nav-links {
  display: flex; gap: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a { color: var(--mute); transition: color 0.2s; }
.nav-links a:hover { color: var(--violet); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(120deg, #1e3a8a 0%, #3a5fb8 100%);
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.nav-cta:hover { background: linear-gradient(120deg, #0d2756 0%, #1e3a8a 100%); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
  .brand-logo {
    width: 34px;
    height: 34px;
    padding: 4px;
    border-radius: 8px;
  }
  .brand-name { font-size: 15px; }
}

/* =========================================================
   FOMO ticker
   ========================================================= */
.fomo-ticker {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  box-shadow: 0 18px 40px -18px rgba(30, 58, 138, 0.35);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s var(--ease);
  max-width: calc(100vw - 40px);
}
.fomo-ticker.show { opacity: 1; transform: translateY(0); }
.fomo-ticker .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(45, 181, 115, 0.6);
  animation: fomoPulse 1.8s infinite;
}
@keyframes fomoPulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 181, 115, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(45, 181, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 181, 115, 0); }
}

/* =========================================================
   HERO (light, white + blue)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex; align-items: center;
  overflow: hidden;
  perspective: 1200px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 58, 138, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 60%, #e7f0ff 100%);
  color: var(--ink);
}
.hero-aura {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(circle at center, rgba(30, 58, 138, 0.16), transparent 55%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: -10%;
  top: 10%;
  border-radius: 50%;
  border: 1px solid rgba(30, 58, 138, 0.22);
  box-shadow: 0 0 60px rgba(30, 58, 138, 0.18);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 40, 95, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 40, 95, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero .h1 { color: var(--ink); }
.hero .h1 em { color: var(--violet); text-shadow: 0 0 30px rgba(30, 58, 138, 0.18); }
.hero .sub { color: var(--mute); }
.hero .kicker {
  background: #ffffff;
  border-color: rgba(30, 58, 138, 0.25);
  color: var(--violet);
  box-shadow: 0 6px 18px -10px rgba(30, 58, 138, 0.35);
}
.hero-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-cinematic {
  position: absolute;
  inset: -10% -8%;
  pointer-events: none;
  overflow: hidden;
}
.hero-cinematic .beam {
  position: absolute;
  width: 44%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.7), transparent);
  transform: rotate(-14deg);
  opacity: 0;
  filter: blur(0.2px);
  animation: heroBeam 2.5s linear infinite;
}
.hero-cinematic .beam.b1 { top: 16%; left: -30%; }
.hero-cinematic .beam.b2 {
  top: 46%;
  left: -42%;
  width: 56%;
  animation-duration: 3.1s;
  animation-delay: 0.5s;
}
.hero-cinematic .beam.b3 {
  top: 72%;
  left: -36%;
  width: 50%;
  animation-duration: 2.8s;
  animation-delay: 1s;
}
.depth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: drift var(--dur-ambient) ease-in-out infinite;
}
.depth-orb.d1 {
  width: 340px;
  height: 340px;
  left: 6%;
  top: 22%;
  background: radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.32), rgba(30, 58, 138, 0));
}
.depth-orb.d2 {
  width: 260px;
  height: 260px;
  right: 10%;
  top: 30%;
  animation-delay: -4s;
  background: radial-gradient(circle at 30% 30%, rgba(58, 95, 184, 0.28), rgba(58, 95, 184, 0));
}
.depth-orb.d3 {
  width: 200px;
  height: 200px;
  left: 42%;
  bottom: 10%;
  animation-delay: -8s;
  background: radial-gradient(circle at 30% 30%, rgba(167, 210, 255, 0.32), rgba(167, 210, 255, 0));
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}
@keyframes heroBeam {
  0% { transform: translate3d(-16vw, 0, 0) rotate(-14deg); opacity: 0; }
  14% { opacity: 0.65; }
  60% { opacity: 0.28; }
  100% { transform: translate3d(138vw, 0, 0) rotate(-14deg); opacity: 0; }
}

/* Three.js canvas sits at z:0 — all hero children stack above it */
.hero-aura,
.hero-grid,
.hero-depth,
.hero-cinematic {
  z-index: 1;
}
.float-tag { z-index: 2; }

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  transform-style: preserve-3d;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(30, 58, 138, 0.25);
  border-radius: 999px;
  background: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -12px rgba(30, 58, 138, 0.35);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 91, 110, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(255, 91, 110, 0); }
}

.sub {
  max-width: 620px;
  margin: 28px auto 0;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--mute);
  line-height: 1.5;
}

.power-strip {
  display: inline-flex; align-items: center; gap: 24px;
  margin-top: 36px;
  padding: 14px 26px;
  border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 999px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px -16px rgba(30, 58, 138, 0.32);
}
.ps-item { display: flex; flex-direction: column; align-items: center; }
.ps-item b {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  color: var(--violet);
  line-height: 1;
}
.ps-item span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.ps-sep { width: 1px; height: 28px; background: rgba(15, 40, 95, 0.16); }

.cta-row {
  display: flex; gap: 16px; justify-content: center; align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  padding: 18px 32px;
  background: linear-gradient(90deg, #0d2756 0%, #1e3a8a 100%);
  color: #f1f8ff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
  isolation: isolate;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary .btn-inner {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary .btn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #1e3a8a 0%, #3a5fb8 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover .btn-glow { opacity: 1; }
.btn-primary::before {
  content: "";
  position: absolute; inset: -2px;
  background: linear-gradient(90deg, var(--violet), var(--amber));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.35;
  filter: blur(18px);
}
.btn-primary.wide { display: flex; justify-content: center; margin-top: 18px; }
.btn-primary.xl { padding: 22px 44px; font-size: 18px; margin-top: 36px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border: 1px solid rgba(30, 58, 138, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--violet); background: rgba(30, 58, 138, 0.08); transform: translateY(-2px); }
.btn-ghost .play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--violet); color: white;
  font-size: 9px;
}

.scroll-hook {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.scroll-hook svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.float-tag {
  position: absolute;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.22);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  box-shadow: 0 12px 30px -14px rgba(30, 58, 138, 0.4);
  animation: float 7s ease-in-out infinite, grainPulse 4.2s linear infinite;
}
.tag-1 { top: 18%; left: 7%; animation-delay: 0s; }
.tag-2 { top: 28%; right: 8%; animation-delay: -1.5s; }
.tag-3 { bottom: 24%; left: 10%; animation-delay: -3s; }
.tag-4 { bottom: 18%; right: 12%; animation-delay: -4.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes grainPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.06); }
}
@media (max-width: 900px) { .float-tag { display: none; } }

/* =========================================================
   MAKE — videos on top (light, soft blue tint)
   ========================================================= */
.make {
  padding: 120px 32px;
  background: linear-gradient(180deg, #e7f0ff 0%, #f4f8ff 100%);
  color: var(--ink);
  position: relative;
}
.make .h2 { color: var(--ink); }
.make .h2 em { color: var(--violet); }
.make .kicker { color: var(--violet); background: #ffffff; border-color: rgba(30, 58, 138, 0.25); }
.make .lead { color: var(--mute); }

.main-video {
  max-width: 1100px;
  margin: 0 auto 80px;
}
.mv-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.mv-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(30, 58, 138, 0.25);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  background: #ffffff;
}
.mv-copy {
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.03em;
}
.mv-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--dur-interact) var(--ease-cinematic);
  box-shadow:
    0 0 0 1px rgba(30, 58, 138, 0.18),
    0 50px 100px -40px rgba(30, 58, 138, 0.45),
    0 24px 50px -24px rgba(15, 40, 95, 0.18);
  background: #000;
}
.mv-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.mv-frame.mv-short {
  /* Override the base 16/9 — become a centered portrait card */
  aspect-ratio: 9 / 16;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: #000;
}
.mv-frame.mv-short .mv-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}
.mv-frame.mv-short .mv-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mv-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
  animation: lightSweep 7s linear infinite;
}
@keyframes lightSweep {
  0%, 72% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.mv-corner {
  position: absolute;
  width: 30px; height: 30px;
  border: 2px solid var(--amber);
  pointer-events: none;
}
.mv-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.mv-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.mv-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.mv-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.mv-frame.mv-short .mv-corner,
.mv-frame.mv-short .mv-light {
  z-index: 2;
}
.mv-frame.mv-short .mv-player {
  z-index: 1;
}

.mv-caption {
  text-align: center;
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mute);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.video-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-strip-hint {
  margin-top: 10px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.video-pill {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 12px;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-attention) var(--ease), border-color var(--dur-attention) var(--ease), box-shadow var(--dur-attention) var(--ease);
}
.video-pill:hover,
.video-pill:focus-visible {
  transform: translateY(-3px);
  border-color: var(--violet);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}
.vp-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}
.vp-title {
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
}
.ba-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ba-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.ba-k {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}
.ba-card h4 {
  margin-top: 7px;
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.ba-card p {
  margin-top: 4px;
  color: var(--mute);
  font-size: 13px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.6s infinite;
}

.make-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 960px) { .make-grid { grid-template-columns: 1fr; gap: 20px; } }

.make-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.make-card::before,
.p-card::before,
.tl-card::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(30, 58, 138, 0.55);
  border-right: 1px solid rgba(30, 58, 138, 0.55);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.85;
  pointer-events: none;
}
.make-card::before {
  border-top-color: rgba(58, 95, 184, 0.6);
  border-right-color: rgba(58, 95, 184, 0.6);
}
.p-card.featured::before {
  border-top-color: rgba(255, 255, 255, 0.65);
  border-right-color: rgba(255, 255, 255, 0.65);
}
.make-card:hover { transform: translateY(-6px); border-color: var(--violet); box-shadow: var(--shadow-soft); }
.mc-tag {
  position: absolute; top: 16px; right: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
}
.mc-visual {
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}
.reel-ratio {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #102652, #050d1f);
  overflow: hidden;
  border-radius: 12px;
}
.reel-ratio.reel-ratio--cover {
  background: #0a1328;
}
.reel-ratio--cover .mc-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.reel-ratio.portrait { aspect-ratio: 4 / 5; background: linear-gradient(135deg, #1e3a8a, #0a1a36); border-radius: 12px; }
.scan {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 4px),
    radial-gradient(ellipse at 30% 40%, rgba(30, 58, 138, 0.55), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(58, 95, 184, 0.35), transparent 60%);
}
.scan.amber {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 4px),
    radial-gradient(ellipse at 50% 60%, rgba(58, 95, 184, 0.55), transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(30, 58, 138, 0.45), transparent 60%);
}
.mc-label {
  position: absolute; bottom: 10px; left: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.poster-mock {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3a5fb8);
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 5vw, 64px);
  color: #ffffff;
  font-style: italic;
}
.poster-mock .p-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #0a1936;
  background: rgba(255,255,255,0.85);
  padding: 2px 8px; border-radius: 4px;
}
.face-mock {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.face-ring {
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, #ffd9b3, #c88a5e 50%, #3a2010 90%);
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.3);
  animation: breathe 3s ease-in-out infinite;
}
.face-eye {
  position: absolute;
  width: 6%; aspect-ratio: 1; background: #1a0f18; border-radius: 50%;
  top: 42%;
  animation: blink 4s infinite;
}
.face-eye.e1 { left: 38%; }
.face-eye.e2 { right: 38%; }
.face-mouth {
  position: absolute;
  width: 18%; height: 3%;
  background: #1a0f18;
  border-radius: 999px;
  bottom: 30%; left: 50%;
  transform: translateX(-50%);
  animation: talk 0.6s infinite;
}
@keyframes breathe { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }
@keyframes blink { 0%,45%,55%,100%{transform:scaleY(1);} 48%,52%{transform:scaleY(0.1);} }
@keyframes talk { 0%,100%{height:3%;} 50%{height:8%;} }

.make-card h3 {
  font-family: "Instrument Serif", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.make-card p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.5;
}
.make-card h3 { color: var(--ink); }

/* Day badge on each output card */
.mc-day {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.mc-day.gold {
  color: #ffffff;
  background: linear-gradient(120deg, var(--violet) 0%, var(--violet-2) 100%);
  border-color: transparent;
  box-shadow: 0 8px 18px -10px rgba(30, 58, 138, 0.55);
}

/* Output checkmarks at bottom of each output card */
.mc-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.mco {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.06);
  border: 1px solid rgba(30, 58, 138, 0.18);
  color: var(--violet);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mco--final {
  background: linear-gradient(120deg, rgba(30, 58, 138, 0.14), rgba(58, 95, 184, 0.18));
  border-color: rgba(30, 58, 138, 0.35);
}

/* Final-day card emphasis — the project video card */
.make-card--video {
  border-color: rgba(30, 58, 138, 0.32);
  box-shadow: 0 22px 50px -28px rgba(30, 58, 138, 0.5);
  position: relative;
}
.make-card--video::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.45), rgba(58, 95, 184, 0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.make-card--video .reel-ratio {
  background: #000;
  overflow: hidden;
}
.make-card--video .reel-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mc-label.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mc-label.live .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff5b48;
  box-shadow: 0 0 8px rgba(255, 91, 72, 0.7);
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot { 50% { opacity: 0.4; } }

/* Dual-output poster mock for Day 1 (Ad + Poster combined) */
.poster-mock.dual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  padding: 14px;
  align-items: stretch;
  background: linear-gradient(135deg, #f4ead2 0%, #e8d6a8 60%, #d9b977 100%);
}
.poster-mock.dual .pm-headline {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(34px, 5vw, 68px);
  color: #1a0f18;
  align-self: end;
  justify-self: start;
  line-height: 0.95;
  padding-left: 4px;
  padding-bottom: 4px;
}
.poster-mock.dual .pm-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  background: #1a0f18;
  color: #ffd9b3;
  padding: 4px 8px;
  border-radius: 4px;
}
.poster-mock.dual .pm-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(26, 15, 24, 0.85);
  border-radius: 6px;
  padding: 8px;
  color: #ffd9b3;
}
.poster-mock.dual .pm-side-h {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1;
}
.poster-mock.dual .pm-side-s {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.punch {
  text-align: center;
  margin-top: 80px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.punch .strike {
  display: block;
  color: rgba(15, 40, 95, 0.32);
  text-decoration: line-through;
  text-decoration-color: var(--red);
}
.punch .shine {
  display: block;
  background: linear-gradient(90deg, var(--violet) 0%, var(--violet-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   3D STUDIO PREVIEW
   ========================================================= */
.studio3d {
  padding: 120px 32px;
  background:
    radial-gradient(circle at 14% 16%, rgba(30, 58, 138, 0.14), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(58, 95, 184, 0.12), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.studio3d-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.studio3d-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.s3d-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.s3d-topline .chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
}
.studio3d-card h3 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.studio3d-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
  margin-bottom: 16px;
}
.s3d-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.s3d-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}
.s3d-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12);
}
.s3d-viewer-shell {
  position: relative;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid rgba(30, 58, 138, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 58px -34px rgba(13, 39, 86, 0.45);
  overflow: hidden;
}
.s3d-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at 50% 50%, rgba(58, 95, 184, 0.26), transparent 60%);
  pointer-events: none;
  animation: studioGlow 6s ease-in-out infinite;
}
.s3d-viewer {
  width: 100%;
  height: clamp(340px, 48vw, 520px);
  border-radius: 16px;
  background: linear-gradient(180deg, #dbe8ff 0%, #f7faff 55%, #ecf3ff 100%);
  opacity: 0.86;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.s3d-viewer.is-ready {
  opacity: 1;
  transform: translateZ(0);
}
.s3d-caption {
  margin-top: 12px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
@keyframes studioGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
  50% { transform: translate3d(0, -6px, 0) scale(1.05); opacity: 1; }
}
@media (max-width: 960px) {
  .studio3d-wrap {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PAIN (light)
   ========================================================= */
.pain {
  padding: 120px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--ink);
  position: relative;
}
.pain-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(to right, rgba(15, 40, 95, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 800px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(30, 58, 138, 0.35);
}
.pc-num {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 16px;
  font-family: "Instrument Serif", serif;
}
.pain-card h4 {
  font-family: "Instrument Serif", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pain-card p { color: var(--mute); line-height: 1.55; font-size: 15px; }

.cut-line {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  margin-top: 80px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
}
.cut-line .bar { flex: 0 0 80px; height: 1px; background: var(--violet); opacity: 0.4; }

/* =========================================================
   SHIFT (light)
   ========================================================= */
.shift {
  padding: 120px 32px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  color: var(--ink);
  position: relative;
}
.shift-steps {
  display: flex; align-items: stretch; justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ss {
  position: relative;
  flex: 1 1 260px;
  max-width: 320px;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.ss::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.24), rgba(58, 95, 184, 0) 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ss:hover {
  transform: translateY(-6px) rotateX(var(--sx, 0deg)) rotateY(var(--sy, 0deg));
  border-color: var(--violet);
  box-shadow: var(--shadow-soft);
}
.ss:hover::before { opacity: 1; }
.ss-ico {
  display: inline-flex;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  margin-bottom: 20px;
  transform: translateZ(12px);
  box-shadow: 0 18px 34px -20px rgba(13, 39, 86, 0.55);
}
.ss h4 {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
  transform: translateZ(8px);
}
.ss p { font-size: 14px; color: var(--mute); line-height: 1.5; transform: translateZ(6px); }

.ss-arrow {
  align-self: center;
  font-size: 28px;
  color: var(--violet);
  font-family: "Instrument Serif", serif;
  flex: 0 0 auto;
}
/* On tablet/mobile the steps stack vertically — arrow becomes a small
   centered ↓ between cards instead of a tail-end glyph. */
@media (max-width: 900px) {
  .shift-steps {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .ss {
    width: 100%;
    max-width: 440px;
  }
  .ss-arrow {
    transform: rotate(90deg);
    font-size: 22px;
    margin: 0;
    line-height: 1;
    opacity: 0.7;
  }
}

.shift-line {
  text-align: center;
  margin-top: 60px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
}
.shift-line span {
  background: linear-gradient(90deg, var(--violet), var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   LEARN (light)
   ========================================================= */
.learn {
  padding: 120px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--ink);
}
.learn-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}
@media (max-width: 800px) { .learn-grid { grid-template-columns: 1fr; } }

.learn-grid li {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
  cursor: default;
}
.learn-grid li:hover { background: var(--paper-2); }
.learn-grid li:nth-child(3n) { border-right: 0; }
.learn-grid li:nth-last-child(-n+3) { border-bottom: 0; }
@media (max-width: 800px) {
  .learn-grid li { border-right: 0; }
  .learn-grid li:not(:last-child) { border-bottom: 1px solid var(--line); }
}
.learn-grid b {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--violet);
  font-style: italic;
  line-height: 1;
}
.learn-grid span {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* =========================================================
   TOOLS — interactive lab (light, deeper blue tint)
   ========================================================= */
.tools {
  padding: 120px 32px;
  background: linear-gradient(180deg, #f4f8ff 0%, #e7f0ff 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.tools::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.16), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(58, 95, 184, 0.14), transparent 40%);
  pointer-events: none;
}
.tools .h2 { color: var(--ink); }
.tools .h2 em { color: var(--violet); }
.tools .kicker { background: #ffffff; border-color: rgba(30, 58, 138, 0.25); color: var(--violet); }
.tools .lead { color: var(--mute); }

.tool-stage {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: center;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .tool-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 720px) { .tool-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .tool-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .tool-grid { grid-template-columns: repeat(2, 1fr); } }

.tool {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  aspect-ratio: 1;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.tool svg {
  color: var(--violet);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.tool span {
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.3s var(--ease), color 0.3s;
}

/* In-tile use-text — pulled from data-use attribute, fades in on hover/tap */
.tool::after {
  content: attr(data-use);
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}

.tool:hover,
.tool:focus-visible,
.tool.is-active {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 100%);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -18px rgba(30, 58, 138, 0.55);
  outline: none;
}
.tool:hover svg,
.tool:focus-visible svg,
.tool.is-active svg {
  transform: translateY(-14px) scale(1.1) rotate(-4deg);
  color: #ffffff;
}
.tool:hover span,
.tool:focus-visible span,
.tool.is-active span {
  transform: translateY(-14px);
  color: #ffffff;
}
.tool:hover::after,
.tool:focus-visible::after,
.tool.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .tool { font-size: 11px; }
}
@media (max-width: 560px) {
  .tool::after { font-size: 10px; bottom: 14px; }
  .tool:hover svg,
  .tool.is-active svg { transform: translateY(-16px) scale(1.05); }
  .tool:hover span,
  .tool.is-active span { transform: translateY(-16px); }
}

/* =========================================================
   WHY 20 (light)
   ========================================================= */
.why20 {
  padding: 120px 32px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  color: var(--ink);
}
.w20-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .w20-wrap { grid-template-columns: 1fr; gap: 40px; } }

.w20-left .h2 { text-align: left; }
.w20-left .kicker { margin-left: 0; }
.w20-left .lead { margin-left: 0; font-size: clamp(22px, 2.5vw, 32px); color: var(--ink); margin-top: 16px; }

.w20-item {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.w20-item:last-child { border-bottom: 0; }
.w20-n {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  color: var(--violet);
  font-style: italic;
  line-height: 1;
  flex: 0 0 auto;
}
.w20-item h4 {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--ink);
}
.w20-item p { color: var(--mute); font-size: 15px; line-height: 1.5; }

/* =========================================================
   PATHWAY — timeline (light)
   ========================================================= */
.pathway {
  padding: 120px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--ink);
  position: relative;
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 20px 0;
}
/* Rail only spans Day 1–3; showcase block sits below without a center line. */
.tl-stretch {
  position: relative;
}
.tl-track {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 40, 95, 0.18) 10%, rgba(15, 40, 95, 0.18) 90%, transparent 100%);
}
.tl-progress {
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(to bottom, var(--violet), var(--violet-2));
  height: 0;
  transition: height 0.3s linear;
}
@media (max-width: 800px) {
  .tl-stretch .tl-track,
  .tl-stretch .tl-progress { left: 20px; }
}

.tl-node {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  padding: 24px 0;
}
.tl-node.alt .tl-card {
  grid-column: 1;
  text-align: right;
  margin-right: 20px;
}
.tl-node:not(.alt) .tl-card {
  grid-column: 3;
  text-align: left;
  margin-left: 20px;
}
.tl-dot {
  grid-column: 2;
  justify-self: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  z-index: 2;
  position: relative;
  box-shadow: var(--shadow-card);
}
.tl-node.active .tl-dot {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  border-color: var(--violet);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(30, 58, 138, 0.18);
}
.tl-dot.final {
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: white;
  border-color: var(--violet);
}

/* Logo dot — showcase node: plain logo, no halo or motion. */
.tl-dot.tl-dot--logo {
  width: 84px;
  height: 84px;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
.tl-node.showcase .tl-dot.tl-dot--logo,
.tl-node.showcase.active .tl-dot.tl-dot--logo {
  background: transparent !important;
  border: 0 !important;
  transform: none !important;
  box-shadow: none !important;
  color: inherit;
}
.tl-dot.tl-dot--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: none;
  transition: none;
}

.tl-card {
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  max-width: 380px;
}
.tl-node.alt .tl-card { margin-left: auto; }
.tl-node.active .tl-card { border-color: var(--violet); box-shadow: var(--shadow-soft); }

.tl-day {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}
.tl-day.gold { color: var(--gold); }
.tl-card h4 {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tl-card p { color: var(--mute); font-size: 15px; line-height: 1.5; }

.tl-topics {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tl-topics li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.tl-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.tl-node.alt .tl-topics li { padding-left: 0; padding-right: 18px; }
.tl-node.alt .tl-topics li::before { left: auto; right: 0; }

.tl-output {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.tl-node.alt .tl-output { justify-content: flex-end; }
.tlo-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-right: 4px;
}
.tlo-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.18);
  color: var(--violet);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.tlo-item::before {
  content: "✓";
  font-size: 11px;
  color: var(--violet);
}
.tl-node.final .tlo-item {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.14), rgba(58, 95, 184, 0.18));
  border-color: rgba(30, 58, 138, 0.35);
}

/* ---------- Full-width Showcase node with reels scroller ---------- */
.tl-node.showcase {
  grid-template-columns: 1fr;
  padding-top: 60px;
  margin-top: 8px;
}
.tl-node.showcase .tl-dot {
  grid-column: 1;
  justify-self: center;
  margin-bottom: 28px;
}
.tl-showcase {
  grid-column: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.tl-showcase-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.tl-showcase-head .tl-day {
  display: inline-block;
  margin-bottom: 12px;
}
.tl-showcase-head h4 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.tl-showcase-head .tl-summary-lead {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Reel stage = scroller + side nav buttons */
.reels-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.reels-nav {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--violet);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px -10px rgba(30, 58, 138, 0.4);
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  z-index: 4;
}
.reels-nav:hover {
  background: var(--violet);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}
.reels-nav:disabled,
.reels-nav[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 700px) {
  .reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
  }
  .reels-prev { left: 4px; }
  .reels-next { right: 4px; }
  .reels-nav:hover { transform: translateY(-50%) scale(1.06); }
}

/* One-at-a-time horizontal reel scroller */
.reels-scroller {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 0 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1 1 auto;
  min-width: 0;
}
.reels-scroller::-webkit-scrollbar { display: none; }

.reel-phone {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s var(--ease-soft), opacity 0.4s var(--ease-soft);
  opacity: 0.45;
}
.reel-phone.is-active {
  opacity: 1;
}

/* Dot indicators below the reel stage */
.reels-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(30, 58, 138, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.reel-dot:hover { background: rgba(30, 58, 138, 0.4); }
.reel-dot.is-active {
  background: var(--violet);
  width: 26px;
  border-radius: 999px;
}

.rp-frame {
  position: relative;
  width: 200px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: linear-gradient(160deg, #0a1936 0%, #050d1f 100%);
  padding: 8px;
  box-shadow:
    0 30px 60px -28px rgba(13, 39, 86, 0.55),
    0 0 0 1px rgba(30, 58, 138, 0.25),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
}
.rp-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 14px;
  background: #050d1f;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
.rp-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 14px 18px;
}

/* Universal screen accents */
.rp-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(6px);
}
.rp-tag.final {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(120deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  z-index: 2;
}

/* Generic YouTube Shorts screen — used by reels 1, 2, 3 */
.rp-screen--yt {
  background: #000;
  padding: 0;
}
/* Make every iframe inside any reel screen fill the phone */
.rp-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Tag floats above the iframe */
.rp-screen--yt .rp-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(120deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  z-index: 2;
  pointer-events: none;
}
.rp-tag.yt {
  background: linear-gradient(120deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
}

/* Screen 4 — Final reel (visually emphasized) */
.reel-phone--final .rp-frame {
  width: 220px;
  background: linear-gradient(160deg, var(--violet) 0%, #050d1f 90%);
  box-shadow:
    0 36px 70px -28px rgba(30, 58, 138, 0.7),
    0 0 0 1px rgba(58, 95, 184, 0.5),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12);
}
.rp-screen--final {
  background: #000;
  padding: 0;
}
.reel-phone--final .rp-caption {
  color: var(--violet);
  font-weight: 600;
}

.rp-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Per-card "Open in YouTube" link below each reel */
.rp-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--violet);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.22);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.rp-yt-link:hover {
  background: linear-gradient(120deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  transform: translateY(-1px);
  border-color: transparent;
}
.rp-yt-link svg {
  flex-shrink: 0;
}

.reels-hint {
  text-align: center;
  margin-top: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mute);
}
.reels-hint .rh-arrow {
  display: inline-block;
  margin-right: 6px;
  color: var(--violet);
  animation: nudge 1.4s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@media (min-width: 1100px) {
  .reels-hint { display: none; }
}

@media (max-width: 600px) {
  .rp-frame { width: 168px; }
  .reel-phone--final .rp-frame { width: 184px; }
  .rp-brand { font-size: 44px; }
  .rp-poster-h { font-size: 34px; }
}

@media (max-width: 800px) {
  .tl-node, .tl-node.alt { grid-template-columns: 50px 1fr; }
  .tl-dot { grid-column: 1; }
  .tl-card, .tl-node.alt .tl-card {
    grid-column: 2;
    text-align: left;
    margin: 0 0 0 12px;
  }
  .tl-node.alt .tl-topics li { padding-left: 18px; padding-right: 0; }
  .tl-node.alt .tl-topics li::before { left: 0; right: auto; }
  .tl-node.alt .tl-output { justify-content: flex-start; }

  /* Showcase node — break out of the 50px+1fr grid. V logo sits aligned
     with the timeline track (left side) so the rail visually continues
     into the showcase. Reels carousel takes full available width. */
  .tl-node.showcase {
    grid-template-columns: 50px 1fr;
    padding-top: 18px;
    margin-top: 0;
  }
  .tl-node.showcase .tl-dot,
  .tl-node.showcase .tl-dot--logo {
    grid-column: 1;
    justify-self: center;
    margin: 0;
  }
  .tl-dot.tl-dot--logo {
    width: 50px;
    height: 50px;
  }
  .tl-showcase {
    grid-column: 1 / -1;
    padding: 0;
    max-width: 100%;
    margin-top: 18px;
  }
  .tl-showcase-head { margin-bottom: 22px; padding: 0 4px; }
  .tl-showcase-head h4 { font-size: clamp(24px, 6vw, 32px); }
  .tl-showcase-head .tl-summary-lead { font-size: 14px; }

  /* Reels stage — keep nav buttons inside the viewport, scroller takes
     the full available width without horizontal overflow. */
  .reels-stage {
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .reels-scroller {
    width: 100%;
    padding: 6px 0 22px;
  }
  .reels-nav {
    width: 38px;
    height: 38px;
    box-shadow: 0 6px 18px -8px rgba(30, 58, 138, 0.45);
  }
}

.path-line {
  text-align: center;
  margin-top: 60px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
}
.path-line em { color: var(--violet); }

/* =========================================================
   MINDSET (light)
   ========================================================= */
.mindset {
  padding: 80px 32px;
  background: linear-gradient(180deg, #e7f0ff 0%, #f4f8ff 100%);
  color: var(--ink);
}
.mindset .h2 { color: var(--ink); }
.mindset .kicker { background: #ffffff; border-color: rgba(30, 58, 138, 0.25); color: var(--violet); }
.mindset .lead { color: var(--mute); }
.ms-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .ms-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ms-row { grid-template-columns: 1fr; } }

.ms-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.ms-card:hover { transform: translateY(-4px); border-color: var(--violet); box-shadow: var(--shadow-soft); }
.ms-ico {
  color: var(--violet);
  margin-bottom: 16px;
}
.ms-card h4 {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
}
.ms-card p { color: var(--mute); font-size: 14px; line-height: 1.55; }

/* =========================================================
   PRICE (light)
   ========================================================= */
.price {
  padding: 120px 32px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  color: var(--ink);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.p-card {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  color: var(--ink);
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.p-card.featured {
  background: linear-gradient(135deg, #0a1936 0%, #0d2756 50%, #1e3a8a 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow:
    0 0 0 1.5px var(--violet-2),
    0 40px 80px -30px rgba(30, 58, 138, 0.55);
  transform: scale(1.02);
}
.p-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.p-ribbon {
  position: absolute;
  top: -14px; right: 20px;
  padding: 6px 14px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 6px 16px -6px rgba(30, 58, 138, 0.55);
}

.p-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.p-card.featured .p-label { color: rgba(255, 255, 255, 0.78); }

.p-amt {
  font-family: "Instrument Serif", serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.p-card.featured .p-amt { color: #ffffff; }
.p-amt .cur { font-size: 0.55em; opacity: 0.6; margin-right: 2px; }

.p-meta {
  font-size: 14px;
  color: var(--mute);
}
.p-card.featured .p-meta { color: rgba(255, 255, 255, 0.7); }

.p-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-3);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: auto;
}
.p-status.done { background: transparent; border: 1px solid var(--line); color: var(--mute); text-decoration: line-through; }
.p-card.featured .p-status.done { border-color: rgba(255, 255, 255, 0.25); color: rgba(255, 255, 255, 0.55); }
.p-status.live {
  background: rgba(45, 181, 115, 0.12);
  color: var(--green);
  border: 1px solid rgba(45, 181, 115, 0.3);
}
.p-card.featured .p-status.live {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.p-card--howto .p-meta--tight {
  margin: 0 0 4px;
  line-height: 1.45;
}
.p-steps {
  list-style: none;
  margin: 10px 0 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}
.p-step-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #f4f8ff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.p-step-ico svg {
  display: block;
}
.p-step-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.p-step-k {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.p-step-copy strong {
  font-family: "Instrument Serif", serif;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.28;
  color: var(--ink);
}

.price-line {
  text-align: center;
  margin-top: 40px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--mute);
}

/* =========================================================
   BONUSES (light)
   ========================================================= */
.bonus {
  padding: 120px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--ink);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bonus-grid { grid-template-columns: 1fr; } }

.b-card {
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.b-card:hover { transform: translateY(-4px); border-color: var(--violet); box-shadow: var(--shadow-soft); }
.b-ico {
  font-size: 28px;
  color: var(--violet);
  margin-bottom: 16px;
  font-family: "Instrument Serif", serif;
}
.b-card h4 {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
}
.b-card p { color: var(--mute); font-size: 14px; line-height: 1.5; }

/* =========================================================
   URGENCY (light w/ dark seat counter)
   ========================================================= */
.urgency {
  padding: 120px 32px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  color: var(--ink);
}
.u-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 900px) { .u-wrap { grid-template-columns: 1fr; gap: 40px; } }

.u-left .h2 { text-align: left; font-size: clamp(40px, 5vw, 64px); }
.u-left .kicker { margin-left: 0; }
.u-left .lead { margin-left: 0; }

.seat-counter {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #0a1936 0%, #0d2756 50%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(30, 58, 138, 0.45);
}
.sc-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.sc-head > span:first-child {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.sc-num {
  font-family: "Instrument Serif", serif;
  font-size: 40px;
  line-height: 1;
}
.sc-num b { color: #ffffff; }
.sc-num span { color: rgba(255, 255, 255, 0.55); font-size: 0.6em; }

.sc-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  overflow: hidden;
}
.sc-fill {
  position: absolute; inset: 0;
  width: 45%;
  background: linear-gradient(90deg, #ffffff, var(--violet-2));
  border-radius: 999px;
  transition: width 1.2s var(--ease);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.55);
}
.sc-markers {
  position: absolute; inset: 0;
  display: flex;
  pointer-events: none;
}
.sc-markers span {
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.sc-markers span:last-child { border-right: 0; }

.sc-foot {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px;
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.sc-foot .blink {
  color: #7fa2dc;
  animation: blinkDot 1s infinite;
}
.sc-funnel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.sc-funnel b { color: #fff; font-weight: 600; }
.sc-fsep { opacity: 0.45; margin: 0 0.25em; }
@keyframes blinkDot { 50% { opacity: 0.2; } }

.u-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
/* Seat board: exactly 12 cards visible (rest scroll). Row count follows grid columns. */
.u-right--seat-board {
  --seat-board-rows: 4; /* 4 × 3 cols = 12 */
  --seat-board-cell: 82px;
  --seat-board-gap: 10px;
  max-height: calc(
    var(--seat-board-rows) * var(--seat-board-cell)
    + (var(--seat-board-rows) - 1) * var(--seat-board-gap)
  );
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  align-content: start;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 58, 138, 0.35) transparent;
}
@media (max-width: 768px) {
  .u-right--seat-board {
    --seat-board-rows: 6; /* 6 × 2 cols = 12 */
  }
}
@media (max-width: 520px) {
  .u-right--seat-board {
    --seat-board-rows: 12; /* 12 × 1 col = 12 */
  }
}
.u-right--seat-board::-webkit-scrollbar {
  width: 6px;
}
.u-right--seat-board::-webkit-scrollbar-thumb {
  background: rgba(30, 58, 138, 0.28);
  border-radius: 999px;
}

/* Fixed cell height so 12 slots match max-height math; long text ellipsizes. */
.u-right--seat-board .seat-card {
  height: var(--seat-board-cell, 82px);
  min-height: var(--seat-board-cell, 82px);
  max-height: var(--seat-board-cell, 82px);
  box-sizing: border-box;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}
.u-right--seat-board .seat-card > span {
  margin-top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.u-right--seat-board .seat-n {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: inherit;
}
.u-right--seat-board .seat-o {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.u-right--seat-board .seat-card.hot .seat-o {
  color: rgba(255, 255, 255, 0.82);
}

.seat-card {
  padding: 16px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  animation: fadeIn 0.6s var(--ease) both;
  animation-delay: calc(var(--d, 0) * 60ms);
  transition: transform 0.3s, box-shadow 0.3s;
}
.seat-card span {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mute);
  margin-top: 4px;
}
.seat-card.hot {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 100%);
  color: #ffffff;
  border-color: transparent;
}
.seat-card.hot span { color: rgba(255, 255, 255, 0.78); }
.seat-card.open {
  background: transparent;
  border-style: dashed;
  color: var(--mute);
  box-shadow: none;
}
.seat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   FEEDBACK marquee (light)
   ========================================================= */
.feedback {
  padding: 120px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--ink);
  overflow: hidden;
}
.feedback .section-head { padding: 0 32px; }

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.mq-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.feedback:hover .mq-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fb {
  flex: 0 0 420px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}
.fb blockquote {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  position: relative;
  color: var(--ink);
}
.fb blockquote::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: -10px;
  font-size: 80px;
  color: var(--violet);
  opacity: 0.2;
}
.fb figcaption {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--mute);
}
.fb figcaption b { color: var(--ink); }

.fb-line {
  text-align: center;
  margin-top: 50px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-style: italic;
  padding: 0 32px;
  color: var(--ink);
}
.fb-line em { color: var(--violet); }

/* =========================================================
   FINAL PUSH (light, bold blue accent)
   ========================================================= */
.final {
  position: relative;
  padding: 160px 32px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 58, 138, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #e7f0ff 100%);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(30, 58, 138, 0.14), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(58, 95, 184, 0.12), transparent 50%);
  pointer-events: none;
}
.final::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 40, 95, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 40, 95, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
}
.final .h2 { color: var(--ink); }
.final .kicker { background: #ffffff; border-color: rgba(30, 58, 138, 0.25); color: var(--violet); }
.final .lead { color: var(--mute); }
.final em.strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  color: rgba(15, 40, 95, 0.32);
}
.final em.gold {
  background: linear-gradient(90deg, var(--violet) 0%, var(--violet-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-line {
  margin-top: 24px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--mute);
}
.final-meta {
  display: inline-flex; gap: 14px;
  margin-top: 40px;
  padding: 14px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mute);
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.final-meta b { color: var(--violet); }

/* =========================================================
   FOOTER (light, soft blue tint)
   ========================================================= */
.foot {
  padding: 48px 32px;
  background: #f4f8ff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.foot-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.foot-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  color: var(--ink);
}
.foot-brand .brand-logo {
  background: transparent;
  border: 0;
}
.foot-brand span span { color: var(--violet); font-weight: 600; }
.foot-links {
  display: flex; gap: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-links a { color: var(--mute); transition: color 0.2s; }
.foot-links a:hover { color: var(--violet); }
.foot-fine {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
}

/* =========================================================
   Mobile sticky CTA + A/B variants
   ========================================================= */
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(120deg, #050d1f 0%, #1e3a8a 100%);
  color: #ffffff;
  border: 1px solid rgba(58, 95, 184, 0.4);
  box-shadow: 0 20px 50px -22px rgba(30, 58, 138, 0.55);
  backdrop-filter: blur(10px);
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.ms-cta-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.ms-cta-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

body.variant-hard .btn-primary,
body.variant-hard .mobile-sticky-cta {
  background: linear-gradient(90deg, #ff5b48 0%, #ff9f1c 100%);
  color: #140b08;
  border-color: rgba(20,11,8,0.16);
}
body.variant-hard .btn-primary .btn-glow {
  background: linear-gradient(90deg, #ff2f2f 0%, #ffc13d 100%);
}
body.variant-hard .kicker.warn {
  background: rgba(255, 47, 47, 0.14);
  border-color: rgba(255, 47, 47, 0.48);
  color: #ff2f2f;
}
body.variant-hard .ms-cta-sub {
  color: rgba(20,11,8,0.72);
}

body.variant-elegant .btn-primary,
body.variant-elegant .mobile-sticky-cta {
  background: linear-gradient(105deg, #1a1730 0%, #32235f 48%, #4f2f7b 100%);
  color: #f6f2ea;
  border-color: rgba(255,255,255,0.18);
}
body.variant-elegant .btn-primary .btn-glow {
  background: linear-gradient(90deg, #6c4bff 0%, #d4a64a 100%);
}
body.variant-elegant .ms-cta-sub {
  color: rgba(246,242,234,0.72);
}

/* =========================================================
   Scroll reveal base
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.9s var(--ease-cinematic),
    transform 0.9s var(--ease-cinematic);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }

.cinematic-tilt {
  transform-style: preserve-3d;
  transition: transform var(--dur-interact) var(--ease-cinematic);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .cinematic-tilt { transform: none !important; }
  .mv-light { animation: none; }
  .hero-cinematic,
  .s3d-glow { display: none !important; }
}

/* =========================================================
   RESPONSIVE — comprehensive breakpoints
   Mobile-first refinement for: phones · tablets · laptops · 32" displays
   ========================================================= */

/* ----- Tablets / small laptops (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .h1 { font-size: clamp(52px, 9vw, 96px); }
  .hero { padding: 124px 24px 72px; }
  .make, .studio3d, .pain, .shift, .learn, .tools, .why20, .pathway,
  .mindset, .price, .bonus, .urgency, .feedback, .final {
    padding: 90px 24px;
  }
  .section-head { margin-bottom: 48px; }
  .timeline { margin-top: 60px; }
  .path-line { margin-top: 50px; }
  .punch { margin-top: 60px; }
  .shift-line { margin-top: 50px; }
  .cut-line { margin-top: 60px; }
}

/* ----- Small tablets / large phones (≤ 768px) ----- */
@media (max-width: 768px) {
  .h2 { font-size: clamp(32px, 10vw, 48px); }
  .make, .studio3d, .pain, .shift, .learn, .tools, .why20, .pathway,
  .mindset, .price, .bonus, .urgency, .feedback, .final {
    padding: 64px 20px;
  }
  .section-head { margin-bottom: 36px; }
  .timeline { margin-top: 40px; }
  .path-line { margin-top: 36px; }
  .punch { margin-top: 40px; }
  .shift-line { margin-top: 32px; }
  .cut-line { margin-top: 40px; gap: 14px; }
  .cut-line .bar { flex: 0 0 40px; }

  .power-strip { gap: 14px; padding: 12px 14px; }
  .ps-item b { font-size: 19px; }
  .mv-meta { margin-bottom: 12px; }

  .video-strip {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    touch-action: pan-x;
    cursor: grab;
  }
  .video-strip::-webkit-scrollbar { display: none; }
  .video-pill {
    min-width: min(82vw, 320px);
    scroll-snap-align: center;
    flex: 0 0 auto;
  }
  .video-strip-hint { display: block; }
  .ba-row { grid-template-columns: 1fr; }
  .u-right { grid-template-columns: repeat(2, 1fr); }
  .final-meta { gap: 8px; font-size: 11px; padding: 12px 14px; }
  .cta-row {
    width: 100%;
    gap: 10px;
  }
  .cta-row .btn-primary,
  .cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .cta-row .btn-primary {
    order: -1;
    min-height: 52px;
    font-size: 16px;
  }
}

/* ----- Phones (≤ 520px) ----- */
@media (max-width: 520px) {
  .hero { padding: 112px 16px 60px; }
  .make, .studio3d, .pain, .shift, .learn, .tools, .why20, .pathway,
  .mindset, .price, .bonus, .urgency, .feedback, .final {
    padding: 48px 16px;
  }
  .section-head { padding: 0 16px; margin-bottom: 28px; }
  .timeline { margin-top: 28px; padding: 8px 0; }
  .path-line { margin-top: 28px; }
  .punch { margin-top: 32px; }
  .shift-line { margin-top: 24px; }
  .cut-line { margin-top: 32px; }
  .sub { margin-top: 20px; font-size: 15px; }
  .btn-primary { padding: 15px 24px; font-size: 15px; }
  .btn-ghost { padding: 13px 16px; font-size: 13px; }
  .power-strip { width: 100%; justify-content: space-between; border-radius: 16px; }
  .mv-corner { width: 20px; height: 20px; }
  .mv-frame.mv-short {
    max-width: 280px;
  }
  .mv-frame.mv-short .mv-player { border-radius: 0; }
  .mv-caption { font-size: 10px; letter-spacing: 0.08em; }
  .u-right { grid-template-columns: 1fr; }
  .fb { flex-basis: 300px; padding: 22px; }
  .hero .scroll-hook { margin-top: 30px; }
  .video-strip { margin-left: -4px; margin-right: -4px; padding-left: 4px; padding-right: 4px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 86px; }

  /* Tighter timeline cards on tiny screens */
  .tl-card { padding: 18px 18px; }
  .tl-card h4 { font-size: 22px; }
  .tl-card p, .tl-topics li { font-size: 13px; }

  /* Tighter make/output grid spacing */
  .make-grid { gap: 16px; }
  .make-card { padding: 16px; }
  .make-card h3 { font-size: 22px; }

  /* Pricing & bonus tighter */
  .p-card { padding: 28px 22px; }
  .p-amt { font-size: clamp(40px, 11vw, 56px); }
  .b-card { padding: 22px 18px; }

  /* Shift cards a touch tighter */
  .ss { padding: 24px 20px; }
  .studio3d-card { padding: 22px 18px; }
  .s3d-viewer-shell { padding: 10px; border-radius: 18px; }
  .s3d-viewer { height: min(68vh, 420px); }
}

/* ----- Show video-strip swipe hint only on small screens ----- */
@media (min-width: 769px) {
  .video-strip-hint { display: none; }
}

/* ----- Large desktops (≥ 1440px) — keep content readable, not stretched ----- */
@media (min-width: 1440px) {
  .nav { padding: 16px 48px; }
  .hero-inner { max-width: 1280px; }
}

/* ----- Ultra-wide / 32" displays (≥ 1900px) — cap content width,
        scale up base font slightly so text doesn't look tiny. ----- */
@media (min-width: 1900px) {
  body { font-size: 17px; }
  .nav {
    padding: 18px max(48px, calc((100vw - 1600px) / 2));
  }
  .hero-inner,
  .section-head,
  .timeline,
  .make-grid,
  .ms-row,
  .price-grid,
  .bonus-grid,
  .u-wrap,
  .pain-grid,
  .shift-steps,
  .learn-grid,
  .tool-stage,
  .reels-stage {
    max-width: 1400px;
  }
  .hero { padding: 180px 32px 120px; }
  .make, .studio3d, .pain, .shift, .learn, .tools, .why20, .pathway,
  .mindset, .price, .bonus, .urgency, .feedback, .final {
    padding: 160px 32px;
  }
}
