/* ============================================================
   CREATE BEYOND - Summer Income Sprint
   Single-file stylesheet. Theme via :root custom properties.
   ============================================================ */

/* MADE Outer Sans - display font (self-hosted, licensed) */
@font-face {
  font-family: 'MADE Outer Sans';
  src: url('https://cbio-sp.b-cdn.net/assets/fonts/made_outer_sans_medium-webfont.woff2') format('woff2'),
       url('https://cbio-sp.b-cdn.net/assets/fonts/made_outer_sans_medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'MADE Outer Sans';
  src: url('https://cbio-sp.b-cdn.net/assets/fonts/made_outer_sans_bold-webfont.woff2') format('woff2'),
       url('https://cbio-sp.b-cdn.net/assets/fonts/made_outer_sans_bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}
:root {
  --bg:            #0a0a0c;
  --bg-elev:       #121217;
  --bg-elev-2:     #181820;
  --line:          rgba(255,255,255,0.08);
  --line-strong:   rgba(255,255,255,0.16);
  --text:          #f5f5f7;
  --text-dim:      #a3a3ad;
  --text-faint:    #6b6b75;
  --accent:        #ff6b1a;   /* warm summer orange */
  --accent-2:      #ffb422;   /* gold highlight */
  --accent-soft:   rgba(255,107,26,0.14);
  --success:       #2ecc71;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;

  --container:  1180px;
  --gutter:     clamp(16px, 4vw, 32px);

  --shadow-lg:  0 30px 80px -20px rgba(0,0,0,0.6);
  --shadow:     0 8px 30px -10px rgba(0,0,0,0.5);

  --ease:       cubic-bezier(.2,.7,.2,1);

  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-disp:  'MADE Outer Sans', 'Inter', system-ui, sans-serif;
}

/* ============ RESET ============ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============ LAYOUT PRIMITIVES ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(48px, 6vw, 80px) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50%      { box-shadow: 0 0 0 10px transparent; }
}

.section-h {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section-sub {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 0 48px;
  font-size: 1.05rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nowrap { white-space: nowrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-disp);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* Down-arrow used on buttons that scroll to the #pricing section.
   Sized in em so it tracks the button's font-size automatically (small
   in nav .btn--sm, larger in .btn--lg). */
.btn__icon {
  width: 1.05em; height: 1.05em;
  flex-shrink: 0;
  display: inline-block;
  transition: transform .2s var(--ease);
}
.btn:hover .btn__icon { transform: translateY(2px); }
.btn:hover .btn__icon--up { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(180deg, #ff7a2a, #ff5e0c);
  color: #0a0a0c;
  box-shadow: 0 12px 32px -10px rgba(255,107,26,.55), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover { background: linear-gradient(180deg, #ff8a3a, #ff6a18); }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.35), rgba(10, 10, 12, 0.10));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.nav__logo img { height: 32px; width: auto; display: block; }
.nav__links {
  display: flex; gap: 28px; margin-left: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--text-dim);
}
.nav__links a { transition: color .15s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__login { color: var(--text); }
.nav .btn { margin-left: auto; }

/* Mobile-only login link (shown next to the Join Now button on small screens
   since the full nav__links row is hidden below 720px) */
.nav__login-mobile { display: none; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__inner { gap: 12px; }
  .nav__login-mobile {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 4px;
    transition: color .15s var(--ease);
  }
  .nav__login-mobile:hover,
  .nav__login-mobile:focus-visible { color: var(--text); }
  /* Login link already pushed everything to the right — drop the btn's auto */
  .nav .btn { margin-left: 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;            /* stays above poster (z:0) AND video (z:1) */
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(255,107,26,.18), transparent 60%),
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.85) 60%, rgba(10,10,12,.98) 100%);
}
.hero__inner {
  position: relative; z-index: 3;     /* above overlay (2), video (1), poster (0) */
  text-align: left;
  max-width: 820px;
}
.hero__h1 {
  font-family: var(--font-disp);
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 8px 0 20px;
  font-weight: 700;
}
.hero__sub {
  color: var(--text-dim);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 640px;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__meta { color: var(--text-faint); font-size: 14px; margin: 0 0 36px; }
.hero__meta strong { color: var(--accent-2); }

/* Countdown */
.countdown { display: flex; gap: 10px; flex-wrap: wrap; }
.countdown__cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 86px;
  padding: 14px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}
.countdown__cell span {
  font-family: var(--font-disp);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.countdown__cell em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ============ BRAND STRIP ============ */
.brands {
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.brands__label {
  text-align: center;
  font-family: var(--font-disp);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
}
/* Marquee: two identical sets translate -50% for a seamless loop */
.marquee {
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__set {
  display: flex; align-items: center;
  gap: clamp(40px, 6vw, 72px);
  padding-right: clamp(40px, 6vw, 72px);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

.brand {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: .75;
  transition: opacity .2s var(--ease);
  flex-shrink: 0;
}
.brand:hover { opacity: 1; }
@media (max-width: 640px) {
  .brand { height: 30px; }
}

/* ============ OUTCOMES ============ */
.outcomes { padding-top: 80px; padding-bottom: 0; }
.outcomes__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.outcome {
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  display: flex; flex-direction: column;
  gap: 8px;
}
.outcome__num {
  font-family: var(--font-disp);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.outcome__label { color: var(--text-dim); font-size: 15px; }

.outcome--text { gap: 14px; }
.outcome__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,180,34,.22), rgba(255,107,26,.18));
  color: var(--accent-2);
}
.outcome__icon svg { width: 22px; height: 22px; }

/* Outcome card with image (Adobe) */
.outcome--media { gap: 0; padding: 0; overflow: hidden; }
.outcome__media {
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
  position: relative;
}
.outcome__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.outcome__media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(18,18,23,.6));
  pointer-events: none;
}
.outcome--media .outcome__copy { padding: 24px 28px 28px; }
.outcome__copy h3 {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.outcome__copy p { color: var(--text-dim); font-size: 14.5px; margin: 0; line-height: 1.5; }
.outcome__copy strong { color: var(--accent-2); font-weight: 700; }

@media (max-width: 760px) { .outcomes__grid { grid-template-columns: 1fr; } }

/* ============ JOURNEY (3-STEP TRANSFORMATION) ============ */
.journey {
  position: relative;
  overflow: hidden;
}
.journey::before {
  /* faint radial accent behind the grid */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 50% 30%, rgba(255,107,26,.06), transparent 60%);
  pointer-events: none;
}
.journey__grid {
  position: relative;
  display: flex; flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  background:
    radial-gradient(80% 100% at 0% 0%, color-mix(in srgb, var(--stage-accent) 12%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  z-index: 1;
  overflow: hidden;
}
.stage::after {
  /* subtle accent glow at top edge */
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--stage-accent), transparent);
  opacity: .8;
  z-index: 2;
}
.stage:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--stage-accent) 45%, var(--line));
  box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--stage-accent) 30%, rgba(0,0,0,.5));
}

.stage__visual {
  position: relative;
  min-height: 280px;
  background: #000;
  overflow: hidden;
}
.stage__media {
  position: absolute; inset: 0;
}
.stage__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.stage__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0) 60%, color-mix(in srgb, var(--bg-elev) 80%, transparent) 100%),
    linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--stage-accent) 25%, rgba(0,0,0,.5)));
  pointer-events: none;
}

.stage__num {
  position: absolute;
  bottom: -22px; left: 18px;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 180px;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--stage-accent-2), var(--stage-accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: .85;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-shadow: 0 8px 24px color-mix(in srgb, var(--stage-accent) 40%, transparent);
}

.stage__content {
  padding: 36px 40px;
  display: flex; flex-direction: column;
  justify-content: center;
}

.stage__chip {
  display: inline-flex; align-self: flex-start;
  font-family: var(--font-disp);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stage-accent);
  background: color-mix(in srgb, var(--stage-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--stage-accent) 35%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.stage__h {
  font-family: var(--font-disp);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.stage__transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
}
.stage__from, .stage__to {
  display: flex; flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.stage__label {
  font-family: var(--font-disp);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-faint);
}
.stage__from .stage__label { color: var(--text-faint); }
.stage__to   .stage__label { color: var(--stage-accent); }
.stage__from strong, .stage__to strong {
  font-family: var(--font-disp);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.stage__from strong {
  color: var(--text-faint);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, var(--text-faint) 60%, transparent);
}
.stage__to strong {
  font-weight: 700;
  background: linear-gradient(90deg, var(--stage-accent-2), var(--stage-accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stage__arrow {
  color: var(--stage-accent);
  display: flex; align-items: center; justify-content: center;
}
.stage__arrow svg { width: 36px; height: 12px; }

.stage__tag {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .stage { grid-template-columns: 1fr; }
  .stage__visual { min-height: 220px; aspect-ratio: 16/9; }
  .stage__num { bottom: -16px; font-size: 140px; }
  .stage__media::after {
    background:
      linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--bg-elev) 85%, transparent));
  }
  .stage__content { padding: 28px 24px 30px; }
  .stage__transform { grid-template-columns: 1fr; gap: 12px; }
  .stage__from, .stage__to { text-align: left; }
  .stage__arrow { transform: rotate(90deg); justify-content: flex-start; }
}

/* ============ COURSES ============ */
.courses__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}
.course {
  position: relative;
  padding: 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.course:hover {
  border-color: var(--line-strong);
  background: var(--bg-elev-2);
}
.course__tag {
  display: inline-block;
  font-family: var(--font-disp);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
}
.tag--drones { background: rgba(255,107,26,.16); color: var(--accent); }
.tag--film   { background: rgba(168,120,255,.16); color: #c2a4ff; }
.tag--edit   { background: rgba(80,180,255,.14); color: #7ec9ff; }
.tag--biz    { background: rgba(120,220,140,.14); color: #8fe8a3; }
.tag--ai     { background: rgba(255,200,80,.16); color: var(--accent-2); }
.course h3 {
  font-family: var(--font-disp);
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.course p { font-size: 14px; color: var(--text-dim); margin: 0; }
.courses__more {
  margin-top: 28px;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 1020px) { .courses__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .courses__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .courses__grid { grid-template-columns: 1fr; } }

/* ============ PIXELS ============ */
.pixels {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px) 0;
}
.pixels__grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.pixels__col { display: grid; grid-template-columns: 1fr 1.05fr; gap: 18px; align-items: center; }
.pixels__col .eyebrow { margin: 0 0 6px; grid-column: 1; }
.pixels__col .section-h {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  margin: 0 0 8px;
  grid-column: 1;
}
.pixels__col p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  grid-column: 1;
}
.pixels__col--alt { padding-left: 24px; border-left: 1px dashed var(--line); }
.pixels__media {
  grid-column: 2; grid-row: 1 / span 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.55);
  aspect-ratio: 16 / 9;
}
.pixels__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .pixels__grid { grid-template-columns: 1fr; gap: 24px; }
  .pixels__col--alt { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px dashed var(--line); }
}
@media (max-width: 560px) {
  .pixels__col { grid-template-columns: 1fr; }
  .pixels__col .eyebrow, .pixels__col .section-h, .pixels__col p, .pixels__media { grid-column: 1; grid-row: auto; }
  .pixels__media { aspect-ratio: 16 / 9; }
}

/* ============ COMMUNITY ============ */
.community__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.community__copy p { color: var(--text-dim); }
.community__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.community__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.community__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,12,.45));
  pointer-events: none;
}
@media (max-width: 820px) {
  .community__grid { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255,107,26,.06), transparent 70%),
    var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.carousel { position: relative; margin-top: 24px; }
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

/* Unified story-card: same 4:5 size whether video or text */
.story {
  flex: 0 0 calc(33.333% - 12px);
  scroll-snap-align: center;
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #101015;
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.story:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
}
.story__name { display: flex; flex-direction: column; gap: 2px; }
.story__name strong { font-weight: 600; color: #fff; }
.story__name span { color: rgba(255,255,255,.65); font-size: 13px; }

/* === Video story (video only - no text overlay) === */
.story--video { background: #000; }
.story__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.story__play {
  position: absolute; inset: 0;
  margin: auto;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.96);
  color: #0a0a0c;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 14px 36px -10px rgba(0,0,0,.6);
  transition: transform .2s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}
.story__play::before {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  animation: playRipple 2s var(--ease) infinite;
}
@keyframes playRipple {
  0%   { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.story__play svg { width: 26px; height: 26px; margin-left: 3px; }
.story__play:hover { background: #fff; transform: scale(1.06); }
.story--video.is-playing .story__play { opacity: 0; pointer-events: none; transform: scale(.7); }
.story--video.is-playing .story__play::before { display: none; }

/* === Text story === */
.story--text {
  padding: 28px 26px;
  position: relative;
  justify-content: space-between;
}
.story--text::before {
  content: "\201C";
  position: absolute;
  top: 4px; left: 18px;
  font-family: 'MADE Outer Sans', 'Inter', sans-serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
}
.story--text::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}
.story__big {
  font-family: var(--font-disp);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 28px 0 0;
  color: #fff;
  position: relative; z-index: 1;
}
.story--text .story__name { position: relative; z-index: 1; }

/* Color variants for text cards */
.story--hue-1 {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255,107,26,.35), transparent 55%),
    linear-gradient(160deg, #2a1810 0%, #14100c 100%);
  border-color: rgba(255,107,26,.25);
}
.story--hue-2 {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(80,180,255,.28), transparent 55%),
    linear-gradient(160deg, #11212c 0%, #0c1418 100%);
  border-color: rgba(80,180,255,.22);
}
.story--hue-3 {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(168,120,255,.28), transparent 55%),
    linear-gradient(160deg, #1d142a 0%, #110d1a 100%);
  border-color: rgba(168,120,255,.22);
}

@media (max-width: 1020px) { .story { flex: 0 0 calc(50% - 9px); max-height: 480px; } }
@media (max-width: 640px)  { .story { flex: 0 0 82%; max-height: 460px; } .story__big { font-size: 18px; } }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 22px; line-height: 1;
  display: grid; place-items: center;
  z-index: 2;
  transition: background .15s var(--ease);
}
.carousel__nav:hover { background: rgba(255,255,255,0.16); }
.carousel__nav--prev { left: -8px; }
.carousel__nav--next { right: -8px; }
@media (max-width: 640px) { .carousel__nav { display: none; } }

.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.carousel__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line-strong);
  border: 0; padding: 0;
  transition: background .2s var(--ease), width .2s var(--ease);
}
.carousel__dot.is-active { background: var(--accent); width: 20px; border-radius: 999px; }

/* ============ PRICING ============ */
.scarcity {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 12px;
  padding: 12px 20px;
  margin: 0 0 32px;
  background: linear-gradient(90deg, rgba(255,107,26,.18), rgba(255,180,34,.10));
  border: 1px solid rgba(255,107,26,.45);
  border-radius: 999px;
  font-family: var(--font-disp);
  font-size: 14px;
  color: var(--text);
}
.scarcity__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,.6);
  animation: scarcityPulse 1.4s var(--ease) infinite;
}
@keyframes scarcityPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
.scarcity__label { color: var(--text-dim); letter-spacing: 0.02em; }
.scarcity__time {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent-2);
  letter-spacing: 0.01em;
}
.scarcity__time em { font-style: normal; color: var(--text-faint); font-weight: 500; margin-right: 4px; }
@media (max-width: 560px) {
  .scarcity { gap: 8px; padding: 10px 14px; font-size: 13px; }
}

.plans {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}
.plan {
  position: relative;
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.plan--featured {
  border-color: var(--accent);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255,107,26,.16), transparent 60%),
    var(--bg-elev);
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  position: absolute; top: -14px; left: 24px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #0a0a0c;
  font-family: var(--font-disp); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.plan__name {
  font-family: var(--font-disp);
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.plan__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.plan__strike { color: var(--text-faint); text-decoration: line-through; font-size: 20px; }
.plan__now { display: flex; align-items: baseline; gap: 6px; }
.plan__num {
  font-family: var(--font-disp);
  font-size: 56px; font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan__period { color: var(--text-dim); font-size: 16px; }
.plan__hint { color: var(--text-faint); font-size: 13px; margin: 4px 0 24px; }
.plan__hint strong { color: var(--accent-2); }
.plan__list { display: grid; gap: 10px; margin: 0 0 28px; }
.plan__list li {
  position: relative; padding-left: 28px;
  font-size: 15px; color: var(--text);
}
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}
.plan__bonus { font-weight: 600; color: var(--accent-2) !important; }
.plan__bonus::before { display: none !important; }
.plan__bonus { padding-left: 0 !important; }
.plan__guarantee {
  margin: 14px 0 0; text-align: center;
  color: var(--text-faint); font-size: 13px;
}

/* ============ VALUE STACK (yearly plan) ============ */
.plan__stack {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  align-content: start;     /* keep items tight at the top */
  flex: 1;                  /* absorb extra card height into the list area */
}
.plan__stack li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.plan__stack li:last-child { border-bottom: 0; padding-bottom: 0; }
.plan__stack li > span:first-child {
  flex: 1;
  min-width: 0;
}
.plan__stack li small {
  display: block;
  color: var(--text-faint);
  font-size: 11.5px;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.plan__stack-value {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.plan__stack-value small {
  display: inline !important;
  color: var(--text-faint);
  font-weight: 500;
  font-size: 11px;
  margin-left: 1px;
}
/* PIXEL signup bonus row — same color as other list items (no special accent) */
.plan__stack-bonus { color: var(--text) !important; }
.plan__stack-bonus .plan__stack-value {
  color: var(--text-dim);
}

/* ============ STACK TOTAL ROW (yearly: "if bought separately") ============ */
.plan__stack-total-row {
  margin-top: 6px;
  padding: 14px 0 0 !important;
  border-top: 1px solid var(--line-strong);
  border-bottom: 0 !important;
  align-items: center;
}
.plan__stack-total-label {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.plan__stack-total-value {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 22px !important;
  color: var(--text-dim) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.01em;
}

/* ============ CLEAN PRICE BLOCK — no box, no glow, just typography ============ */
.plan__compare {
  margin: 24px 0 16px;
  text-align: left;
}
.plan__compare-arrow { display: none; }       /* arrow not needed — list flows into price naturally */
.plan__compare-now {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  background: none;
  border: 0;
}
.plan__compare-label {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.plan__compare-label--accent { color: var(--text-faint); }   /* uniform muted label on both cards */
.plan__compare-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  flex-wrap: wrap;
}
.plan__compare-strike--inline {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.01em;
  opacity: 0.8;
}
.plan__compare-num {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--text);
}
.plan--featured .plan__compare-num {
  color: var(--accent-2);
}
.plan__compare-num--monthly {
  color: var(--text);
}
.plan__compare-period {
  font-family: var(--font-disp);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}
.plan__compare-save {
  font-family: var(--font-disp);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  margin-top: 2px;
}
.plan__compare-save strong { color: var(--text); font-weight: 700; }
.plan__compare-save--muted { color: var(--text-faint); }

/* ============ MONTHLY: simplified stack list (no value column) ============ */
.plan__stack--simple li {
  /* single-column layout — no value on the right */
  justify-content: flex-start;
}
.plan__stack--simple li > span:only-child {
  flex: 1;
}
.plan__stack-muted {
  color: var(--text-faint) !important;
  opacity: 0.7;
}
.plan__stack-muted small {
  color: var(--text-faint);
  font-weight: 500;
}

@media (max-width: 480px) {
  .plan__compare-num { font-size: 44px; }
  .plan__stack-total-value { font-size: 18px !important; }
  .plan__compare-strike--inline { font-size: 17px; }
}

@media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .plan__stack li { font-size: 14px; }
  .plan__stack-value { font-size: 14px; }
  .plan__stack-total-value { font-size: 22px; }
}

/* ============ GUARANTEE ============ */
.guarantee {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(255,180,34,.10), transparent 60%),
    radial-gradient(60% 80% at 20% 80%, rgba(255,107,26,.10), transparent 60%),
    linear-gradient(180deg, #14141a 0%, #0e0e13 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee__inner {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(8px);
}
.guarantee__badge {
  width: 148px; height: 148px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 18px 40px rgba(255,107,26,.45));
  animation: badgeFloat 6s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .guarantee__badge { animation: none; }
}
.guarantee__copy p { color: var(--text-dim); margin: 8px 0 0; }
@media (max-width: 640px) {
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ============ FAQ ============ */
.faq__list { display: grid; gap: 8px; margin-top: 24px; }
.faq__item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 17px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px; line-height: 1;
  color: var(--accent);
  transition: transform .2s var(--ease);
}
.faq__item[open] summary::after { content: "−"; }
.faq__a {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255,107,26,.18), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.final-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-disp);
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.final-cta p { color: var(--text-dim); margin: 0 0 28px; }
.final-cta__meta { color: var(--text-faint); font-size: 13px; margin-top: 16px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.footer__copy { color: var(--text-faint); font-size: 13px; margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__links a {
  color: var(--text-faint);
  font-size: 13px;
  transition: color .15s var(--ease);
}
.footer__links a:hover { color: var(--text); }

/* ============ FOUNDER SECTION ============ */
.founder {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 0% 50%, rgba(255,180,34,0.05), transparent 60%),
    radial-gradient(60% 80% at 100% 50%, rgba(255,107,26,0.04), transparent 60%),
    var(--bg);
}
.founder__inner {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}
.founder__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.founder__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder__copy .section-h { margin-bottom: 18px; }
.founder__lead {
  font-size: 17px;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.55;
}
.founder__copy p {
  color: var(--text-dim);
  margin: 0 0 16px;
  line-height: 1.55;
}
.founder__chips {
  display: grid; gap: 10px;
  margin-top: 24px;
}
.founder__chips li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.4;
}
.founder__chips li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
@media (max-width: 880px) {
  .founder__inner {
    grid-template-columns: minmax(150px, 0.9fr) minmax(0, 1.6fr);
    gap: 24px;
  }
  .founder__visual { aspect-ratio: 3 / 4; max-height: 340px; }
}
@media (max-width: 560px) {
  .founder__inner { grid-template-columns: 1fr; gap: 28px; }
  .founder__visual { aspect-ratio: 16 / 10; max-height: 320px; }
}

/* ============ CASE STUDY (PATRICK) ============ */
.casestudy {
  background:
    radial-gradient(70% 80% at 20% 30%, rgba(255,107,26,0.08), transparent 70%),
    var(--bg);
}
.casestudy__media img {
  object-position: top center;
}
.casestudy__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
  margin-top: 32px;
}
.casestudy__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  background: #000;
}
.casestudy__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.casestudy__media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  pointer-events: none;
}
.casestudy__name {
  position: absolute;
  left: 22px; bottom: 20px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 1;
  color: #fff;
}
.casestudy__name strong {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 700;
}
.casestudy__name span {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.casestudy__copy {
  display: flex; flex-direction: column;
  justify-content: center;
}
.casestudy blockquote { margin: 0 0 22px; }
.casestudy blockquote p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 14px;
  font-weight: 400;
}
.casestudy blockquote p:last-of-type { margin-bottom: 0; }
.casestudy__punch {
  font-weight: 700 !important;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.casestudy__brands {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.casestudy__brand-label {
  font-family: var(--font-disp);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.casestudy__brand-list {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
@media (max-width: 880px) {
  .casestudy__grid { grid-template-columns: 1fr; }
  .casestudy__media { aspect-ratio: 16 / 10; max-height: 360px; }
}

/* ============ FIT CHECK ============ */
.fitcheck__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.fitcheck__col {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.fitcheck__col--yes {
  border-color: rgba(46,204,113,0.30);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(46,204,113,0.10), transparent 60%),
    var(--bg-elev);
}
.fitcheck__col h3 {
  font-family: var(--font-disp);
  font-size: 18px;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.fitcheck__col--yes h3 { color: #5ee0a3; }
.fitcheck__col--no h3 { color: var(--text-faint); }
.fitcheck__col ul {
  display: grid; gap: 12px;
}
.fitcheck__col li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.5;
}
.fitcheck__col--yes li {
  color: var(--text);
}
.fitcheck__col--no li {
  color: var(--text-dim);
}
.fitcheck__col--yes li::before,
.fitcheck__col--no li::before {
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 12px;
}
.fitcheck__col--yes li::before {
  content: "✓";
  background: rgba(46,204,113,0.18);
  color: #5ee0a3;
}
.fitcheck__col--no li::before {
  content: "✕";
  background: rgba(255,255,255,0.06);
  color: var(--text-faint);
}
@media (max-width: 720px) {
  .fitcheck__grid { grid-template-columns: 1fr; }
}

/* Reduce gap between fitcheck and pricing */
.fitcheck { padding-bottom: clamp(32px, 4vw, 48px); }
.pricing { padding-top: clamp(32px, 4vw, 48px); }

/* ============ MID-PAGE CTA STRIP ============ */
.cta-strip {
  background:
    linear-gradient(90deg, rgba(255,107,26,0.10), rgba(255,180,34,0.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3.5vw, 40px) 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip__copy {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.cta-strip__hook {
  font-family: var(--font-disp);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}
.cta-strip__meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .cta-strip__inner { flex-direction: column; align-items: stretch; gap: 18px; }
  .cta-strip__copy { text-align: center; }
  .cta-strip__inner .btn { width: 100%; }
}

/* ============ VALUE STACK IN PRICING ============ */
.plan__stack-label {
  font-family: var(--font-disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 4px 0 12px;
}
.plan__stack {
  display: grid; gap: 0;
  margin: 0 0 18px;
}
.plan__stack li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  font-size: 13.5px;
  line-height: 1.4;
}
.plan__stack li:last-child { border-bottom: 0; }
.plan__stack-item { color: var(--text); }
.plan__stack-value {
  color: var(--text-faint);
  font-family: var(--font-disp);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.plan__totals {
  margin: 16px 0 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: grid; gap: 8px;
}
.plan__totals-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px;
  color: var(--text-dim);
}
.plan__totals-row s { color: var(--text-faint); text-decoration-color: var(--text-faint); }
.plan__totals-row--final {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}
.plan__totals-final {
  font-family: var(--font-disp);
  font-weight: 700;
  color: var(--accent-2);
  font-size: 24px;
  letter-spacing: -0.02em;
}
.plan__bonus-line {
  margin: 0 0 18px;
  font-family: var(--font-disp);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-2);
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,180,34,0.08);
  border: 1px solid rgba(255,180,34,0.22);
}

/* ============ GUARANTEE PILLARS ============ */
.guarantee__pillars {
  display: grid; gap: 10px;
  margin-top: 20px;
}
.guarantee__pillars li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.guarantee__pillars li::before {
  content: "✓";
  position: absolute; left: 4px; top: 0;
  font-family: var(--font-disp);
  font-weight: 700;
  color: var(--accent-2);
}
.guarantee__pillars strong { color: var(--text); font-weight: 700; }

/* ============ SAMPLE LESSON PREVIEW ============ */
.courses__preview {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: 22px;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(255,107,26,0.10), transparent 60%),
    var(--bg-elev);
  border: 1px solid var(--line);
  text-decoration: none !important;
  color: inherit;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.courses__preview:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.courses__preview-art {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.courses__preview-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.courses__preview:hover .courses__preview-art img { transform: scale(1.04); }
.courses__preview-play {
  position: absolute; inset: 0;
  margin: auto;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: #0a0a0c;
  display: grid; place-items: center;
  box-shadow: 0 14px 36px -10px rgba(0,0,0,.6);
}
.courses__preview-play::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  animation: playRipple 2s var(--ease) infinite;
}
.courses__preview-play svg { width: 22px; height: 22px; margin-left: 3px; }
.courses__preview-copy h3 {
  font-family: var(--font-disp);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 8px 0 8px;
  color: var(--text);
}
.courses__preview-copy p {
  color: var(--text-dim);
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
}
.courses__preview-cta {
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 720px) {
  .courses__preview { grid-template-columns: 1fr; padding: 16px; }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: linear-gradient(180deg, rgba(20,20,24,0.92), rgba(14,14,18,0.96));
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px -16px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}
.sticky-cta__meta {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.sticky-cta__price {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1;
}
.sticky-cta__period {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-dim);
  margin-left: 2px;
}
.sticky-cta__sub {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.sticky-cta__btn {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
}
@media (min-width: 720px) {
  .sticky-cta { display: none; }
}

/* ============ MOTION PREFERENCES ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   MOBILE-ONLY OVERRIDES  (≤767px)
   ──────────────────────────────────────────────────────────
   Everything in this block is mobile-exclusive. Desktop (≥768px)
   is untouched by design — do not promote any rule out of here.
   ============================================================ */

/* Default state: desktop variants visible, mobile variants hidden */
.hero__h1--mobile,
.hero__sub--mobile,
.hero__social--mobile { display: none; }

/* Hero background — poster shows instantly, video lazy-attaches and
   covers it once it can play. Same stacking on desktop + mobile now. */
.hero__bg-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;          /* covers the poster once playing */
}

/* Fade-in: by default visible (desktop). Mobile media query overrides. */
.fade-in-mobile { opacity: 1; transform: none; }

@media (max-width: 767px) {

  /* ---- Hero copy swap ---- */
  .hero__h1--desktop,
  .hero__sub--desktop { display: none; }
  .hero__h1--mobile,
  .hero__sub--mobile,
  .hero__social--mobile { display: block; }

  /* Mobile headline sizing — large but fits in one viewport.
     min-height reserves the 2-line space so font-display: fallback swap
     doesn't shift content below if the font does arrive in time. */
  .hero__h1--mobile {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 14px 0 14px;
    min-height: calc(2 * 1.05 * clamp(34px, 9vw, 44px));
  }
  .hero__sub--mobile {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dim);
    margin: 0 0 16px;
    max-width: 36ch;
    min-height: 48px;
  }
  .hero__social--mobile {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text-dim);
    margin: 0 0 22px;
  }
  .hero__social--mobile strong { color: var(--text); font-weight: 700; }
  .hero__social-stars {
    color: var(--accent-2);
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  /* ---- Hero bg: poster shows instantly, video lazy-attaches after `load` event.
          Both elements share absolute positioning from base styles. ---- */

  /* ---- Hero: trimmed height so the next section peeks above the fold
          (invites scroll — directly targets the low mobile scroll depth) ---- */
  .hero { min-height: 80svh; padding: 90px 0 32px; }
  .hero__inner { gap: 0; }
  .hero .eyebrow { font-size: 11px; margin-bottom: 4px; }
  .hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    min-height: 56px;            /* tap target — research-backed 56-64px */
    font-size: 16px;
    padding: 16px 20px;
  }
  .hero__meta {
    font-size: 12px;
    margin-top: 14px;
  }
  .countdown {
    margin-top: 22px;
    gap: 6px;
  }
  .countdown__cell {
    padding: 8px 4px;
    min-width: 0;
  }
  .countdown__cell span { font-size: 22px; }
  .countdown__cell em { font-size: 9.5px; }

  /* ---- Sticky CTA: bigger tap target, body padding to clear bar ---- */
  body { padding-bottom: 84px; }   /* clear sticky bar */
  .sticky-cta { left: 8px; right: 8px; bottom: 8px; }
  .sticky-cta__btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
  }
  .sticky-cta__price { font-size: 17px; }

  /* ---- Fade-in for first 3 post-hero sections ---- */
  .fade-in-mobile {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
    will-change: opacity, transform;
  }
  .fade-in-mobile.is-visible {
    opacity: 1;
    transform: none;
  }

  /* ---- Mobile typography — section anchors ≥24px ---- */
  .section-h { font-size: clamp(26px, 7.5vw, 32px); line-height: 1.15; }
  .section-sub { font-size: 15px; line-height: 1.55; }
  body { font-size: 16px; line-height: 1.55; }   /* prevents iOS zoom on inputs */

  /* ---- Global section padding — tighter on mobile ---- */
  section { padding: 40px 0; }
  .brands { padding: 32px 0; }
  /* Hero keeps its own padding via .hero override above */

  /* ---- Silences: keep 3 strongest items + closer ---- */
  .silences__item { padding: 16px 0; }
  .silences__text { font-size: 18px; line-height: 1.3; }
  .silences__close { padding: 16px 18px; font-size: 15.5px; }
  .silences__list .silences__item:nth-child(n+4) { display: none; }

  /* ---- Transformation: 4 strongest before/after items on mobile ---- */
  .transformation__block { padding: 22px 20px; }
  .transformation__items { gap: 14px; }
  .transformation__items li { font-size: 15px; }
  .transformation__items li:nth-child(n+5) { display: none; }
  .transformation__footnote { font-size: 12.5px; margin-top: 20px; }

  /* ---- Loop cards: tighter copy, line-clamp the body ---- */
  .loop__card { padding: 22px 20px 20px; }
  .loop__h { font-size: 19px; margin-bottom: 8px; }
  .loop__body {
    font-size: 14.5px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
            line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ---- Founder lead: trim long paragraph to 4 lines on mobile ---- */
  .founder__lead {
    display: -webkit-box;
    -webkit-line-clamp: 4;
            line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ---- Course tiles: tighter, hide description on smallest screens to reduce noise ---- */
  .course { padding: 16px; }
  .course h3 { font-size: 15.5px; }
  .course p { font-size: 13px; line-height: 1.45; }

  /* ---- Section subs: cap reading width and tighten ---- */
  .section-sub { max-width: 36ch; font-size: 14.5px; line-height: 1.5; }

  /* ---- Eyebrows: slightly smaller, less shouty ---- */
  .eyebrow { font-size: 10.5px; letter-spacing: 0.18em; }

  /* ---- No horizontal overflow safety ---- */
  html, body { overflow-x: hidden; }
}
