/* =============================================================
   TopProducer — styles.css
   Archetype: Editorial Dark Warm (02), push to award-level
   Signature: mouse-reactive warm mesh + horizontal pinned story
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* palette */
  --bg:        #0E0B09;      /* warm-tinted near-black */
  --bg-2:      #15110E;
  --bg-3:      #1E1813;      /* card surface */
  --bg-soft:   #211912;
  --cream:     #F2EBDA;      /* text on dark */
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;      /* metadata */
  --cream-4:   #5C5448;
  --red:       #C5301E;
  --red-bright:#E0432C;
  --red-deep:  #8E1F11;
  --amber:     #C49A5B;
  --amber-soft:#A47E47;
  --line:      rgba(242,235,218,.10);
  --line-2:    rgba(242,235,218,.18);
  --line-red:  rgba(197,48,30,.32);

  /* typography */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 12vw, 160px);

  /* easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* mouse position (updated by JS) */
  --mx: 50%;
  --my: 30%;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --pulse-w    { syntax: "<percentage>"; inherits: false; initial-value: 0%; }

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  min-height: 100vh;
  position: relative;
}

/* global noise overlay (subtle warm grain) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.85 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9000;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -0.02em; font-weight: 400; }
::selection { background: var(--red); color: var(--cream); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; border-radius: 2px; }

/* defensive: reveal + split must not stay invisible */
.reveal[data-split] { opacity: 1 !important; transform: none !important; }

/* skip link */
.skip-link {
  position: fixed; top: -100px; left: 16px;
  padding: .65rem 1rem;
  background: var(--cream); color: var(--bg);
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 99999;
  border-radius: 2px;
}
.skip-link:focus { top: 16px; }

/* container */
.container {
  max-width: 1240px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-inline: auto;
  width: 100%;
}

.section { padding-block: var(--section-pad); position: relative; }

/* =============================================================
   3. SPLASH
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: grid;
  place-items: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-out), clip-path 1.1s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.splash-brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.splash-brand em {
  font-style: italic;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  color: var(--red);
}
.splash-line {
  display: block; width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 50%, transparent);
  position: relative; overflow: hidden;
}
.splash-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform-origin: left;
  animation: splashLoad 1.8s var(--ease-out) infinite;
}
@keyframes splashLoad {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* =============================================================
   4. CURSOR
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  margin: -2.5px;
  background: var(--cream);
  border-radius: 50%;
}
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .35s;
}
.cursor.is-interactive .cursor-ring {
  width: 60px; height: 60px; margin: -30px;
  border-color: var(--cream);
}
.has-cursor body { cursor: none; }
.has-cursor a, .has-cursor button, .has-cursor input, .has-cursor textarea { cursor: none; }
/* iframe always gets the system cursor back */
.has-cursor iframe { cursor: default; }

/* =============================================================
   5. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: background .45s var(--ease-out), backdrop-filter .45s var(--ease-out), border-color .45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex; align-items: center;
  gap: 10px;
  color: var(--cream);
}
.nav-mark {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 1px;
  transform: rotate(45deg);
}
.nav-accent { color: var(--red); font-style: italic; font-variation-settings: "SOFT" 80; }

.nav-meta {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

.nav-cta {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  transition: border-color .35s, color .35s, background .35s;
}
.nav-cta:hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(197,48,30,.06);
}
.nav-cta-arrow { transition: transform .35s var(--ease-out); }
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

@media (min-width: 720px) {
  .nav-meta { display: inline-flex; }
}

/* =============================================================
   6. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px var(--gutter) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* mouse-reactive warm mesh */
.hero-mesh {
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(60vw 50vw at var(--mx, 70%) var(--my, 30%),
      rgba(197,48,30,.42), transparent 55%),
    radial-gradient(48vw 36vw at calc(var(--mx, 70%) - 18%) calc(var(--my, 30%) + 22%),
      rgba(196,154,91,.22), transparent 60%),
    conic-gradient(from var(--mesh-angle),
      rgba(197,48,30,.12), rgba(196,154,91,.08), rgba(197,48,30,.08), rgba(196,154,91,.12), rgba(197,48,30,.12));
  filter: blur(80px) saturate(120%);
  opacity: .9;
  animation: meshShift 28s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: background-position .3s;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg; }
  100% { --mesh-angle: 360deg; }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)' opacity='1'/%3E%3C/svg%3E");
  opacity: .055;
  mix-blend-mode: overlay;
}

/* Decorative card deck (CSS only) */
.hero-deck {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.card-ghost {
  position: absolute;
  width: 168px;
  height: 234px;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(180deg, rgba(30,24,19,.85) 0%, rgba(20,15,11,.55) 100%);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 90, "opsz" 144;
  font-size: 4rem;
  color: rgba(196,154,91,.18);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(242,235,218,.04);
  transition: transform 1.2s var(--ease-soft), border-color .8s;
  will-change: transform;
}
.card-ghost::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196,154,91,.10);
  border-radius: 4px;
  pointer-events: none;
}
.card-ghost::after {
  content: "TP";
  position: absolute;
  top: 10px; left: 14px;
  font-family: var(--mono);
  font-size: .6rem;
  font-style: normal;
  letter-spacing: .15em;
  color: var(--cream-4);
  font-variation-settings: normal;
}
.card-1 { top: 10%;  left: -60px; transform: rotate(-22deg) translate3d(0,0,0); }
.card-2 { top: 58%;  left: 6%;   transform: rotate(-8deg)  translate3d(0,0,0); opacity: .85; }
.card-3 { bottom: -50px; left: 38%; transform: rotate(4deg)  translate3d(0,0,0); opacity: .7; }
.card-4 { top: 8%;   right: 5%;   transform: rotate(14deg)  translate3d(0,0,0); opacity: .85; }
.card-5 { top: 56%;  right: -50px; transform: rotate(28deg)  translate3d(0,0,0); }

@media (max-width: 960px) {
  .card-ghost { width: 110px; height: 154px; font-size: 2.8rem; }
  .card-1 { left: -50px; }
  .card-4 { right: -10px; }
}
@media (max-width: 540px) {
  .card-2, .card-3 { display: none; }
}

/* Hero typography */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 1100px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 5vw, 44px);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .3s forwards;
}
.eyebrow-bar {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--amber);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 14vw, 13rem);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -0.045em;
  max-width: 14ch;
}
.hero-line { display: block; }
.hero-line-1 {
  color: var(--red);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-line-2 {
  color: var(--cream-2);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  padding-left: clamp(20px, 6vw, 80px);
  position: relative;
}
.hero-period { color: var(--red); font-style: normal; }

/* split-text base */
.split-char, .split-word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-sub {
  margin-top: clamp(36px, 5vw, 52px);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 580px;
  font-weight: 300;
}
.hero-sub em { color: var(--red-bright); font-style: normal; }

.hero-actions {
  margin-top: clamp(40px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1s forwards;
}

/* hero meta strip */
.hero-meta {
  margin-top: clamp(64px, 8vw, 96px);
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.2s forwards;
}
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.meta-suffix {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--cream-3);
  text-transform: uppercase;
  margin-left: 4px;
}
.meta-lbl {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--cream-3);
  text-transform: uppercase;
}
.meta-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}

/* hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--red), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: scrollDrop 2.4s var(--ease-in-out, ease-in-out) infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.hero-scroll-text {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .25em;
  color: var(--cream-4);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

/* hero corner markers */
.hero-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .25em;
  color: var(--cream-4);
  text-transform: uppercase;
  z-index: 2;
}
.hero-corner-tl { top: 100px; right: var(--gutter); }
.hero-corner-br { bottom: 40px; right: var(--gutter); }

@media (max-width: 720px) {
  .hero-corner-tl { display: none; }
  .hero-scroll { display: none; }
}

/* buttons */
.btn {
  position: relative;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 18px 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), color .35s, background .35s, border-color .35s;
  white-space: nowrap;
  isolation: isolate;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  border: 1px solid var(--red);
  box-shadow:
    0 12px 28px -8px rgba(197,48,30,.45),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow:
    0 22px 50px -10px rgba(197,48,30,.55),
    0 0 0 6px rgba(197,48,30,.10),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-primary .btn-arrow { width: 18px; height: 12px; transition: transform .4s var(--ease-out); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-ghost-arrow { transition: transform .4s var(--ease-out); }
.btn-ghost:hover .btn-ghost-arrow { transform: translateY(3px); }

/* magnetic wrapper */
.has-magnetic { display: inline-flex; position: relative; }
.magnetic-inner {
  display: inline-flex;
  align-items: center;
  gap: inherit;
  will-change: transform;
  transition: transform .7s var(--ease-soft);
}

/* =============================================================
   7. TENSION MARQUEE
   ============================================================= */
.tension {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(20,16,12,.6);
  position: relative;
  overflow: hidden;
}
.tension::before, .tension::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 3;
  pointer-events: none;
}
.tension::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.tension::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.marquee { overflow: hidden; position: relative; }
.marquee-track {
  display: inline-flex;
  gap: clamp(40px, 6vw, 72px);
  white-space: nowrap;
  will-change: transform;
}
.m-item {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.m-sep { color: var(--red); font-size: .55rem; }

/* =============================================================
   8. SECTION HEADER (shared)
   ============================================================= */
.section-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-head-center {
  text-align: center;
  margin-inline: auto;
}
.section-label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.section-label-center { justify-content: center; margin-inline: auto; }
.label-num {
  font-family: var(--mono);
  color: var(--cream-3);
  font-size: .68rem;
}
.label-line {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--amber);
  opacity: .6;
}
.section-title, .what-title, .how-title, .who-title, .signup-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.04;
}
.section-title em,
.what-title em,
.how-title em,
.who-title em,
.signup-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  color: var(--red);
}

/* =============================================================
   9. PROBLEM
   ============================================================= */
.problem { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}

.stat {
  position: relative;
  padding: clamp(36px, 5vw, 60px) clamp(30px, 4vw, 48px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
  isolation: isolate;
  transition: background .5s var(--ease-out);
  overflow: hidden;
}
.stat-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at top right, rgba(197,48,30,.10), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
}
.stat:hover .stat-bg { opacity: 1; }
.stat:hover { background: var(--bg-2); }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: .9;
  color: var(--red);
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: baseline;
}
.stat-num-light { color: var(--cream-3); font-style: italic; font-size: .55em; font-variation-settings: "SOFT" 90; margin-left: 4px; }
.stat-suffix {
  font-family: var(--mono);
  font-size: .35em;
  color: var(--cream-3);
  letter-spacing: .12em;
  margin-left: 6px;
  text-transform: uppercase;
}
.stat-num-text {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  line-height: .95;
  color: var(--red);
  letter-spacing: -0.04em;
}
.stat-body {
  color: var(--cream-2);
  font-size: .98rem;
  line-height: 1.55;
  max-width: 38ch;
  margin-top: auto;
}
.stat-meta {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-4);
}

/* =============================================================
   10. QUÉ ES
   ============================================================= */
.what {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.what-glow {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(50% 40% at 20% 30%, rgba(196,154,91,.10), transparent 60%),
    radial-gradient(45% 35% at 80% 70%, rgba(197,48,30,.10), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 960px) {
  .what-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.what-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -0.045em;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.what-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 52ch;
}
.what-body strong { color: var(--cream); font-weight: 500; }

.pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  transition: background .35s var(--ease-out), padding-left .45s var(--ease-out);
}
.pillar:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(197,48,30,.04), transparent);
}
.pillar-idx {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 1.4rem;
  color: var(--amber);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: .02em;
}
.pillar-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  color: var(--cream);
}
.pillar-body p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--cream-3);
  max-width: 48ch;
}

/* =============================================================
   11. HOW — horizontal pinned showcase
   ============================================================= */
.how { padding-block: var(--section-pad) 0; background: var(--bg-2); position: relative; }

.how-intro { margin-bottom: clamp(48px, 6vw, 72px); }
.how-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: .98;
  margin-bottom: 20px;
}
.how-sub {
  color: var(--cream-3);
  font-size: .95rem;
  font-family: var(--mono);
  letter-spacing: .04em;
}

.showcase {
  position: relative;
  padding-bottom: var(--section-pad);
}
.showcase.is-pinned .showcase-viewport {
  height: 100vh;
  display: flex;
  align-items: center;
}
.showcase-viewport {
  overflow: hidden;
  position: relative;
}
.showcase-track {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  padding-inline: var(--gutter);
  will-change: transform;
}

/* on mobile: horizontal scroll snap */
@media (max-width: 1023px) {
  .showcase-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding-block: 16px 28px;
  }
  .showcase-viewport::-webkit-scrollbar { height: 6px; }
  .showcase-viewport::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
  .showcase-track > .step-card { scroll-snap-align: start; }
  .showcase-track {
    padding-inline: var(--gutter);
    padding-right: calc(var(--gutter) + 30px);   /* hint of next card */
  }
}

.step-card {
  flex: 0 0 auto;
  width: clamp(280px, 80vw, 640px);
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 24px;
  min-height: clamp(420px, 78vh, 620px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .4s, transform .6s var(--ease-soft);
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(197,48,30,.10), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.step-card:hover { border-color: var(--line-red); }
.step-card:hover::before { opacity: 1; }

.step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: .8;
  font-weight: 400;
  color: var(--red);
  letter-spacing: -0.05em;
}
.step-cat {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-3);
  text-align: right;
}

.step-visual {
  display: grid;
  place-items: center;
  min-height: 110px;
  color: var(--amber);
  opacity: .85;
}

.step-visual svg { width: 100%; max-width: 220px; height: auto; }

/* mini-card (step 2) */
.mini-card {
  position: relative;
  width: 180px;
  height: 230px;
  background: var(--cream);
  color: var(--bg);
  border-radius: 6px;
  padding: 20px 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  font-family: var(--serif);
  transform: rotate(-4deg);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.6),
    0 0 0 1px rgba(196,154,91,.3);
  transition: transform .55s var(--ease-out);
}
.step-card:hover .mini-card { transform: rotate(0deg) scale(1.04); }
.mini-card-corner {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 1.4rem;
  color: var(--red);
}
.mini-card-text {
  font-size: 1.05rem;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  line-height: 1.3;
  align-self: center;
}
.mini-card-meta {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
  text-align: right;
}

/* rubric (step 3) */
.rubric {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rubric li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.rubric li i {
  display: block;
  height: 4px;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--amber-soft), var(--red));
  border-radius: 2px;
  position: relative;
  font-style: normal;
}
.rubric li i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shine 2.5s linear infinite;
}
@keyframes shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* chips (step 4) */
.step-visual-stack {
  position: relative;
  min-height: 120px;
}
.chip {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,.15);
  box-shadow:
    0 8px 16px -4px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(0,0,0,.4);
  top: 50%; left: 50%;
  transform-origin: center;
}
.chip-1 { transform: translate(-104px, -50%) rotate(-12deg); }
.chip-2 { transform: translate(-56px, -50%) rotate(-6deg); }
.chip-3 { transform: translate(-8px, -50%); }
.chip-4 { transform: translate(40px, -50%) rotate(6deg); }
.chip-5 { transform: translate(88px, -50%) rotate(12deg); }

.step-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.step-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  color: var(--red);
}
.step-body {
  color: var(--cream-2);
  font-size: .96rem;
  line-height: 1.6;
  max-width: 42ch;
}
.step-tag {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* showcase progress */
.showcase-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px var(--gutter) 0;
  max-width: 1240px;
  margin: 0 auto;
}
.progress-track {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.progress-fill {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0.25);
  transition: transform .4s var(--ease-out);
}
.progress-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.progress-label .progress-of { color: var(--cream-4); }

/* =============================================================
   12. WHO
   ============================================================= */
.who { background: var(--bg); }

.who-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 28px);
  margin-top: clamp(48px, 6vw, 72px);
}
@media (min-width: 720px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }

.who-card {
  --rx: 0deg; --ry: 0deg;
  padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 36px);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s, background .5s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.who-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 60% at 50% 0%, rgba(197,48,30,.08), transparent);
  opacity: 0;
  transition: opacity .5s;
}
.who-card:hover {
  border-top-color: var(--red);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-2));
}
.who-card:hover::after { opacity: 1; }
.who-card:hover .who-mark { color: var(--red); transform: translateZ(40px); }

.who-mark {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.04em;
  transition: color .4s, transform .5s var(--ease-out);
}
.who-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.who-card-body {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--cream-2);
  flex: 1;
}
.who-card-foot {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* =============================================================
   13. PROOF
   ============================================================= */
.proof {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding-block: var(--section-pad);
}
.proof .container { text-align: center; max-width: 880px; }

.proof-mark {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(8rem, 14vw, 12rem);
  line-height: .7;
  color: var(--red);
  opacity: .25;
  margin-bottom: -40px;
  font-weight: 400;
}
.proof-quote {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: clamp(40px, 5vw, 56px);
  padding-inline: clamp(0px, 4vw, 32px);
}
.proof-quote em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  color: var(--red-bright);
}

.proof-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.proof-line {
  width: 60px; height: 1px;
  background: var(--amber);
  opacity: .5;
}
.proof-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof-meta strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.proof-meta span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.proof-pulse {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(196,154,91,.3);
  border-radius: 2px;
  margin-top: 6px;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.7); }
}

/* =============================================================
   14. SIGNUP / FORM
   ============================================================= */
.signup {
  position: relative;
  padding-block: var(--section-pad) calc(var(--section-pad) + 20px);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.signup::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.signup::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(50% 40% at 80% 20%, rgba(197,48,30,.10), transparent 60%),
    radial-gradient(40% 30% at 20% 80%, rgba(196,154,91,.06), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.signup-bg-text {
  position: absolute;
  bottom: -40px; right: -30px;
  z-index: -1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(10rem, 26vw, 24rem);
  line-height: .8;
  color: rgba(197,48,30,.045);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
@media (min-width: 960px) { .signup-grid { grid-template-columns: 1fr 1fr; } }

.signup-title {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .96;
  letter-spacing: -0.045em;
  margin-block: clamp(28px, 4vw, 36px);
}
.signup-body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 50ch;
}
.signup-body strong { color: var(--cream); font-weight: 500; }

.benefits {
  list-style: none;
  margin-top: clamp(32px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--cream-2);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.benefits li:last-child { border-bottom: none; }
.bnft-mark {
  font-family: var(--mono);
  color: var(--red);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 1px;
}

.urgency {
  margin-top: clamp(28px, 4vw, 36px);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(196,154,91,.3);
  border-radius: 2px;
}

/* form frame */
.signup-frame {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color .45s, box-shadow .45s;
}
.signup-frame:focus-within {
  border-color: var(--red);
  box-shadow:
    0 0 0 1px var(--red),
    0 30px 60px -20px rgba(197,48,30,.35);
}
.signup-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(20,16,12,.5);
}
.frame-tag, .frame-id {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.frame-tag { color: var(--amber); }
.frame-id { color: var(--cream-4); }

.ghl-form-wrap {
  width: 100%;
  min-height: 615px;
  background: var(--bg-3);
}
.ghl-form-wrap iframe {
  width: 100%;
  height: 615px;
  border: none;
  display: block;
  background: transparent;
}
.frame-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: rgba(20,16,12,.5);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .12em;
  color: var(--cream-4);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .ghl-form-wrap, .ghl-form-wrap iframe { min-height: 680px; height: 680px; }
}

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 40px 0 32px;
  position: relative;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream-3);
}
.footer-brand span { color: var(--red); font-style: italic; font-variation-settings: "SOFT" 80; }
.footer-copy {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-4);
}
.footer-credit {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-4);
}
.footer-credit a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.footer-credit a:hover { border-bottom-color: var(--amber); }
.footer-marker {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .25em;
  color: var(--cream-4);
  text-transform: uppercase;
  text-align: center;
  margin-top: 24px;
  opacity: .5;
}

/* =============================================================
   16. REVEAL ANIMATIONS
   ============================================================= */
.reveal:not([data-split]) {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.reveal.is-revealed { opacity: 1; transform: none; }

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

/* =============================================================
   17. RESPONSIVE
   tablet + mobile breakpoints, mobile-first refinements
   ============================================================= */
@media (max-width: 960px) {
  /* showcase: no longer pinned, horizontal scroll inherits */
  .showcase.is-pinned .showcase-viewport { height: auto; }
  .showcase-progress { display: none; }

  /* signup background hint — smaller on tablet */
  .signup-bg-text { font-size: clamp(7rem, 22vw, 18rem); right: -50px; bottom: -20px; }
}

@media (max-width: 720px) {
  /* HERO */
  .hero {
    padding: 100px var(--gutter) 64px;
    min-height: 100svh;
    justify-content: flex-start;
  }
  .hero-eyebrow { margin-bottom: 22px; font-size: .62rem; gap: 10px; letter-spacing: .18em; }
  .eyebrow-bar { width: 24px; }
  .hero-title {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
    letter-spacing: -0.04em;
    max-width: 100%;
  }
  .hero-line-2 { padding-left: 0; }
  .hero-sub {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 38ch;
  }
  .hero-actions {
    margin-top: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
    font-size: .72rem;
    letter-spacing: .14em;
  }
  .hero-actions .btn-ghost { background: rgba(242,235,218,0.03); }
  .hero-meta {
    margin-top: 44px;
    gap: 18px 28px;
    flex-wrap: wrap;
  }
  .meta-num { font-size: 1.6rem; }
  .meta-suffix { font-size: .58rem; }
  .meta-lbl { font-size: .55rem; }
  .meta-divider { display: none; }

  /* hide rotation-heavy deck cards that overlap text on small screens */
  .card-ghost { box-shadow: 0 18px 38px -16px rgba(0,0,0,.55); }

  /* NAV */
  .nav {
    padding: 12px var(--gutter);
    gap: 14px;
  }
  .nav-brand { font-size: 1rem; }
  .nav-cta { padding: 8px 12px; font-size: .58rem; letter-spacing: .12em; gap: 6px; }
  .nav-cta-arrow { font-size: .8rem; }

  /* SECTION SHARED */
  .section { padding-block: 72px; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* PROBLEM stat */
  .stat { padding: 32px 24px; min-height: 220px; gap: 14px; }
  .stat-num { font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .stat-num-text { font-size: clamp(2.2rem, 9vw, 3rem); }
  .stat-body { font-size: .92rem; }
  .stat-meta { font-size: .55rem; letter-spacing: .16em; }

  /* WHAT */
  .what-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .what-body { font-size: .98rem; }
  .pillar { grid-template-columns: 32px 1fr; gap: 14px; padding: 20px 0; }
  .pillar:hover { padding-left: 0; background: transparent; }
  .pillar-idx { font-size: 1.1rem; }
  .pillar-body h3 { font-size: 1.02rem; }
  .pillar-body p { font-size: .85rem; }

  /* HOW */
  .how-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .how-sub { font-size: .85rem; }
  .how-intro { margin-bottom: 28px; }

  .step-card {
    width: 86vw;
    max-width: 360px;
    min-height: 0;            /* let content define height */
    padding: 26px 22px;
    gap: 16px;
    grid-template-rows: auto auto auto auto auto;
  }
  .step-head { padding-bottom: 14px; gap: 12px; }
  .step-num { font-size: 3.6rem; }
  .step-cat { font-size: .58rem; letter-spacing: .18em; }
  .step-visual { min-height: 90px; }
  .step-visual svg { max-width: 180px; }
  .step-title { font-size: 1.5rem; }
  .step-body { font-size: .9rem; }
  .step-tag { font-size: .55rem; padding-top: 10px; }

  /* mini-card scale down */
  .mini-card {
    width: 150px; height: 190px;
    padding: 14px 12px;
  }
  .mini-card-corner { font-size: 1.15rem; }
  .mini-card-text { font-size: .88rem; }
  .mini-card-meta { font-size: .5rem; }

  /* rubric: stack label above bar for mobile */
  .step-visual-rubric { width: 100%; }
  .rubric li {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: .58rem;
    letter-spacing: .14em;
  }
  .rubric li i { width: var(--w, 50%); }

  /* chips: tighter spread */
  .step-visual-stack { min-height: 90px; }
  .chip { width: 48px; height: 48px; font-size: 1rem; }
  .chip-1 { transform: translate(-78px, -50%) rotate(-12deg); }
  .chip-2 { transform: translate(-42px, -50%) rotate(-6deg); }
  .chip-3 { transform: translate(-6px, -50%); }
  .chip-4 { transform: translate(30px, -50%) rotate(6deg); }
  .chip-5 { transform: translate(66px, -50%) rotate(12deg); }

  /* WHO */
  .who-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .who-card { min-height: 0; padding: 32px 24px; gap: 14px; }
  .who-mark { font-size: 2.6rem; }
  .who-card-title { font-size: 1.15rem; }
  .who-card-body { font-size: .9rem; }
  .who-card-foot { font-size: .55rem; }

  /* PROOF */
  .proof-mark { font-size: clamp(6rem, 20vw, 8rem); margin-bottom: -28px; }
  .proof-quote { font-size: clamp(1.25rem, 5.5vw, 1.7rem); padding-inline: 0; line-height: 1.35; }
  .proof-meta strong { font-size: .98rem; }
  .proof-meta span { font-size: .6rem; }
  .proof-pulse { font-size: .56rem; padding: 6px 12px; }

  /* SIGNUP */
  .signup { padding-block: 80px 96px; }
  .signup-title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .signup-body { font-size: .96rem; }
  .benefits li { font-size: .88rem; gap: 12px; }
  .urgency { font-size: .58rem; letter-spacing: .14em; padding: 8px 12px; }
  .signup-bg-text { font-size: clamp(6rem, 32vw, 12rem); }
  .frame-head { padding: 12px 14px; }
  .frame-tag, .frame-id { font-size: .55rem; letter-spacing: .15em; }
  .frame-id { display: none; }   /* keep frame-head clean on small */

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-copy, .footer-credit { font-size: .56rem; }
}

@media (max-width: 540px) {
  /* extra-small refinements */
  .nav-meta { display: none; }
  .hero-corner-br { display: none; }

  /* hide more deck cards on tiny screens */
  .card-1 { display: none; }
  .card-5 { display: none; }
  .card-4 { width: 88px; height: 122px; font-size: 2.2rem; opacity: .55; top: 4%; right: -28px; }

  /* tighten hero meta to 2 per row */
  .hero-meta { gap: 14px 22px; }
  .meta-num { font-size: 1.4rem; }

  /* tension marquee tighter */
  .tension { padding: 16px 0; }
  .m-item { font-size: .62rem; letter-spacing: .16em; gap: 10px; }

  /* GHL iframe needs more vertical room on tiny screens */
  .ghl-form-wrap, .ghl-form-wrap iframe { min-height: 720px; height: 720px; }
}

@media (max-width: 380px) {
  /* iPhone SE & ultra-small */
  .hero-title { font-size: clamp(3rem, 16vw, 3.6rem); }
  .stat { padding: 26px 20px; }
  .step-card { padding: 22px 18px; }
  .signup-title { font-size: 2.2rem; }
}

/* =============================================================
   18. REDUCED MOTION
   only intrusive effects are gated; hovers/transitions stay
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  /* keep mesh static */
  .hero-mesh { animation: none; }
  /* infinite background loops off */
  .splash-line::after { animation: none; }
  .nav-dot { animation: none; }
  .pulse-dot { animation: none; }
  .hero-scroll-line::after { animation: none; }
  .rubric li i::after { animation: none; }
  /* DO NOT disable: tilts, btn hover, card hover, marquee (handled in JS slowdown), reveals */
}
