/* ============================================================
   AI Growth Academy — Landing Page
   Two switchable directions: [data-dir="a"] Editorial  /  [data-dir="b"] Bold
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --orange: #fe6c34;
  --orange-600: #f0561c;
  --orange-700: #d8470f;
  --orange-tint: #fff1ea;
  --orange-tint-2: #ffe2d3;

  --ink: #17120f;
  --ink-2: #3d342e;
  --muted: #786b62;
  --line: #ece5de;
  --line-strong: #ddd2c8;

  --paper: #ffffff;
  --cream: #faf6f1;
  --cream-2: #f4ece4;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 9vw, 132px);

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(23,18,15,.05), 0 4px 16px rgba(23,18,15,.05);
  --shadow-md: 0 4px 12px rgba(23,18,15,.06), 0 18px 48px rgba(23,18,15,.09);
  --shadow-lg: 0 8px 28px rgba(23,18,15,.10), 0 40px 80px rgba(23,18,15,.14);

  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  --h1-weight: 500;
  --h2-weight: 500;
  --display-tracking: -0.01em;
  --display-lh: 1.03;
}

/* ---- Direction B overrides ---- */
[data-dir="b"] {
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --h1-weight: 800;
  --h2-weight: 800;
  --display-tracking: -0.03em;
  --display-lh: 0.98;
  --radius: 14px;
  --radius-lg: 22px;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  overflow-x: hidden;
}

/* ============================================================
   PRIMITIVES
   ============================================================ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.display { font-family: var(--display); letter-spacing: var(--display-tracking); line-height: var(--display-lh); font-weight: var(--h2-weight); }
.serif-italic { font-family: "Newsreader", serif; font-style: italic; font-weight: 500; }

h1.hero-title {
  font-family: var(--display);
  font-weight: var(--h1-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-lh);
  font-size: clamp(40px, 5.4vw, 78px);
  color: var(--ink);
  text-wrap: balance;
}
[data-dir="b"] h1.hero-title { font-size: clamp(42px, 6vw, 88px); text-transform: none; }

h2.section-title {
  font-family: var(--display);
  font-weight: var(--h2-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-lh);
  font-size: clamp(30px, 3.6vw, 48px);
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px;
}
.eyebrow.center::before { display: none; }

.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.55; }
.muted { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(254,108,52,.32); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(254,108,52,.40); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

[data-dir="b"] .btn { font-weight: 700; letter-spacing: -0.01em; }
[data-dir="b"] .btn-primary { border-radius: 12px; }
[data-dir="b"] .btn-ghost { border-radius: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }
.site-header.scrolled {
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header.scrolled .wrap { padding-block: 12px; }
.brand img { height: 38px; width: auto; transition: height .3s ease; }
.site-header.scrolled .brand img { height: 32px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); position: relative; padding: 4px 0; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--orange); transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ============================================================
   DIRECTION SWITCHER (control bar)
   ============================================================ */
.dirbar {
  position: fixed; z-index: 80; right: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(23,18,15,.92); backdrop-filter: blur(10px);
  color: #fff; padding: 9px 12px 9px 16px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-family: var(--body);
}
.dirbar .lbl { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.seg { display: flex; background: rgba(255,255,255,.12); border-radius: 999px; padding: 3px; }
.seg button {
  border: none; background: transparent; color: rgba(255,255,255,.7); cursor: pointer;
  font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: 999px; transition: all .2s ease;
}
.seg button.active { background: var(--orange); color: #fff; }
.seg button:not(.active):hover { color: #fff; }
@media (max-width: 560px){ .dirbar .lbl { display:none; } .dirbar{ right:12px; bottom:12px; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(84px, 10vw, 116px); position: relative; }
[data-dir="b"] .hero { background:
  radial-gradient(120% 90% at 85% -10%, var(--orange-tint) 0%, transparent 55%); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero-figure { position: relative; align-self: start; width: 100%; max-width: 430px; justify-self: end; margin-top: 52px; }
.hero-figure .ph {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4; background: var(--cream-2);
}
.hero-figure .ph img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Floating "agent" overlay system ---- */
/* outer = positioned wrapper (entrance only); inner = the visible card (floats as a unit) */
.hero-badge {
  position: absolute; left: -42px; bottom: 30px; z-index: 3;
  max-width: 246px;
}
.hero-badge .badge-inner {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg);
}
.hero-badge .badge-txt { display: flex; flex-direction: column; line-height: 1.3; }
.hero-badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-weight: 800; flex: 0 0 auto; }
.hero-badge .dot svg { width: 22px; height: 22px; }
.hero-badge b { font-size: 14px; }
.hero-badge span { font-size: 12px; color: var(--muted); }

.hero-chip {
  position: absolute; z-index: 3;
}
.hero-chip .chip-inner {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 11px; white-space: nowrap;
  background: #fff; border-radius: 999px; box-shadow: var(--shadow-md);
}
.hero-chip .chip-ico {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%;
  background: var(--orange-tint); color: var(--orange-700);
  display: grid; place-items: center;
}
.hero-chip .chip-ico svg { width: 15px; height: 15px; }
.hero-chip .chip-label { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }

.chip-voice    { top: 64px;  left: -54px; }
.chip-content  { top: -22px; right: -30px; }
.chip-outreach { top: 47%;   right: -56px; }

@media (max-width: 1040px) {
  .chip-voice { left: -28px; }
  .chip-outreach { right: -30px; }
  .hero-badge { left: -20px; }
}
@media (max-width: 480px) {
  .hero-chip .chip-label { font-size: 12px; }
  .chip-voice { left: -10px; top: 40px; }
  .chip-content { right: 0; }
  .chip-outreach { right: 4px; }
  .hero-badge { left: 12px; bottom: 8px; }
}

/* Entrance: assemble around the capybara, staggered */
@media (prefers-reduced-motion: no-preference) {
  .hero-badge, .hero-chip { opacity: 0; }
  .hero-badge { animation: chipIn .6s cubic-bezier(.22,1,.36,1) var(--d, 0s) both; }
  .hero-chip  { animation: chipIn .6s cubic-bezier(.22,1,.36,1) var(--d, 0s) both; }
  .hero-chip .chip-inner,
  .hero-badge .badge-inner { animation: chipFloat 5.5s ease-in-out infinite; }
  .chip-content .chip-inner { animation-delay: -1.4s; animation-duration: 6.2s; }
  .chip-outreach .chip-inner { animation-delay: -2.8s; animation-duration: 6.8s; }
  .hero-badge .badge-inner { animation-delay: -3.6s; animation-duration: 7.4s; }
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(14px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero-kicker { display:inline-flex; align-items:center; gap:9px; font-weight:700; font-size:13px; letter-spacing:.04em; color: var(--orange-700); background: var(--orange-tint); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.live-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--orange); }
@media (prefers-reduced-motion: no-preference) {
  .live-dot { animation: liveCore 2.4s ease-in-out infinite; }
  .live-dot::after { animation: livePing 2.4s ease-out infinite; }
}
@keyframes livePing {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes liveCore {
  0%, 100% { opacity: 1; }
  50%      { opacity: .65; }
}
.hero-sub { margin-top: 16px; font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; color: var(--ink-2); max-width: 30ch; }
[data-dir="a"] .hero-sub { font-family: var(--display); font-weight: 400; font-style: italic; font-size: clamp(19px,1.7vw,23px); }
[data-dir="b"] .hero-sub { font-family: "Newsreader", Georgia, serif; font-weight: 400; font-style: italic; font-size: clamp(19px,1.7vw,23px); letter-spacing: 0; }

.hero-list { margin-top: 20px; display: grid; gap: 11px; }
.hero-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-size: 16px; color: var(--ink-2); }
.check { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 1px; }
.check svg { width: 100%; height: 100%; }
.hero-date { margin-top: 20px; font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.hero-date b { color: var(--orange-700); }
.hero-cta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: nowrap; }
.hero-cta .btn { padding: 14px 22px; font-size: 15px; }
.hero-cta .btn .arrow { margin-left: -2px; }
/* subtle light sweep on the primary CTA */
.hero-cta .btn-primary { position: relative; overflow: hidden; isolation: isolate; }
@media (prefers-reduced-motion: no-preference) {
  .hero-cta .btn-primary::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 45%; z-index: -1;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
    transform: translateX(-160%) skewX(-18deg);
    animation: btnShine 4s ease-in-out infinite;
  }
}
@keyframes btnShine {
  0%   { transform: translateX(-160%) skewX(-18deg); }
  35%  { transform: translateX(360%) skewX(-18deg); }
  100% { transform: translateX(360%) skewX(-18deg); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { order: -1; max-width: 460px; }
}

/* ============================================================
   PROBLEM (quote-style)
   ============================================================ */
.problem { text-align: center; background: var(--cream); }
.problem .section-title { max-width: 26ch; margin-inline: auto; }
.problem .body { max-width: 66ch; margin: 28px auto 0; font-size: clamp(16px,1.3vw,19px); color: var(--ink-2); line-height: 1.7; }
.problem .body strong { color: var(--ink); }

/* ============================================================
   OUTCOMES (what you'll walk away with)
   ============================================================ */
.outcomes-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.outcomes-figure .ph { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--cream-2); }
.outcomes-figure .ph img { width:100%; height:100%; object-fit: cover; transform: scale(1.05); transform-origin: 50% 42%; }
@media (prefers-reduced-motion: no-preference) {
  .outcomes-figure .ph img { animation: capyFly 7.5s ease-in-out infinite; }
}
@keyframes capyFly {
  0%   { transform: scale(1.05) translateY(0)    rotate(-0.6deg); }
  50%  { transform: scale(1.05) translateY(-10px) rotate(0.6deg); }
  100% { transform: scale(1.05) translateY(0)    rotate(-0.6deg); }
}
.outcome-list { margin-top: 28px; display: grid; gap: 18px; }
.outcome-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; font-size: 17px; line-height: 1.45; }
.outcome-list .check { width: 26px; height: 26px; }
.outcomes .foot { margin-top: 30px; padding: 16px 20px; background: var(--ink); color: #fff; border-radius: var(--radius); font-weight: 600; display: inline-flex; align-items: center; gap: 10px; font-size: 15px; }
.outcomes .foot .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(254,108,52,.6); animation: pulse 2s infinite; flex-shrink: 0; aspect-ratio: 1; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(254,108,52,.5);} 70%{box-shadow:0 0 0 10px rgba(254,108,52,0);} 100%{box-shadow:0 0 0 0 rgba(254,108,52,0);} }
@media (max-width: 900px){ .outcomes-grid{ grid-template-columns:1fr; } .outcomes-figure{ max-width:420px; } }

/* ============================================================
   CURRICULUM
   ============================================================ */
.curric { background: var(--cream); }
.curric-head { text-align: center; margin-bottom: 56px; }
.days { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,3vw,40px); }
.day-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--shadow-sm); }
.day-tag { display:inline-flex; align-items:center; gap:8px; font-weight: 800; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-700); background: var(--orange-tint); padding: 6px 14px; border-radius: 999px; }
.day-card h3 { font-family: var(--display); font-weight: var(--h2-weight); font-size: clamp(22px,2vw,28px); margin: 18px 0 4px; letter-spacing: var(--display-tracking); }
.modules { margin-top: 14px; display: grid; }
.module { border-top: 1px solid var(--line); }
.module:first-child { border-top: none; }
.module-head { width: 100%; background: none; border: none; cursor: pointer; display: grid; grid-template-columns: 36px 1fr 20px; gap: 16px; align-items: start; padding: 20px 2px; text-align: left; }
.module .num { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; border: 1.5px solid var(--line-strong); color: var(--ink-2); }
.module.dark .num { background: var(--ink); color: #fff; border-color: var(--ink); }
.module.orange .num { background: var(--orange); color: #fff; border-color: var(--orange); }
.module .mtext { display: block; padding-top: 1px; }
.module .mlabel { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.module .mtitle { display: block; margin-top: 4px; font-weight: 700; font-size: 17px; color: var(--ink); transition: color .18s ease; }
.module-head:hover .mtitle { color: var(--orange-700); }
.module.open .mtitle { color: var(--orange-700); }
.mtoggle { position: relative; width: 20px; height: 20px; margin-top: 8px; }
.mtoggle::before, .mtoggle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--muted); border-radius: 2px; transition: transform .28s ease, opacity .2s ease, background .2s ease; }
.mtoggle::before { width: 14px; height: 2px; }
.mtoggle::after { width: 2px; height: 14px; }
.module-head:hover .mtoggle::before, .module-head:hover .mtoggle::after { background: var(--orange); }
.module.open .mtoggle::before { background: var(--orange); }
.module.open .mtoggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.module-body { overflow: hidden; max-height: 0; transition: max-height .32s ease; }
.mb-inner { padding: 0 6px 22px 52px; }
.module-body p { color: var(--ink-2); font-size: 15px; line-height: 1.62; text-wrap: pretty; }
.mreward { display: inline-block; margin-top: 16px; background: var(--orange-tint); color: var(--orange-700); font-weight: 700; font-size: 13.5px; line-height: 1.45; padding: 9px 16px; border-radius: 12px; }
.mreward::before { content: "▸  "; font-weight: 700; }
@media (max-width: 420px){ .mb-inner { padding-left: 6px; } }
.curric .cta-row { text-align: center; margin-top: 48px; }
@media (max-width: 760px){ .days{ grid-template-columns:1fr; } }

/* ============================================================
   QUALIFY
   ============================================================ */
.qualify { text-align: center; }
.qualify-list { max-width: 760px; margin: 44px auto 0; display: grid; gap: 14px; text-align: left; }
.qualify-list li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; font-size: 17px; font-weight: 500; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.qualify-list li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.qualify-list .check { width: 28px; height: 28px; }
.qualify .closer { margin-top: 40px; font-family: var(--display); font-weight: var(--h2-weight); font-size: clamp(22px,2.4vw,32px); letter-spacing: var(--display-tracking); }
.qualify .cta-row { margin-top: 28px; }

/* ============================================================
   DATES (table)
   ============================================================ */
.dates { background: var(--ink); color: #fff; }
.dates .section-title { color: #fff; text-align: center; }
.dates .eyebrow { color: var(--orange); justify-content: center; width: 100%; }
.cohorts { margin-top: 52px; display: grid; gap: 16px; }
.cohort {
  display: grid; grid-template-columns: 1.1fr 1.3fr 1.1fr 190px; gap: 24px; align-items: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius);
  padding: 24px clamp(20px,3vw,34px); transition: background .2s ease, border-color .2s ease;
}
.cohort:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }
.cohort.featured { border-color: var(--orange); background: rgba(254,108,52,.10); }
.cohort .cname { font-family: var(--display); font-weight: var(--h2-weight); font-size: 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pill { font-family: var(--body); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.pill.early { background: var(--orange); color: #fff; }
.pill.soon { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.cohort .when { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.82); }
.cohort .when b { color: #fff; }
.cohort .time { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.7); }
.cohort .time b { color: #fff; font-weight: 700; }
.cohort .act { justify-self: end; text-align: right; }
.cohort .soon-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 8px; }
@media (max-width: 820px){
  .cohort { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cohort .act { grid-column: 1/-1; justify-self: stretch; text-align: left; }
  .cohort .act .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TRAINERS
   ============================================================ */
.trainers .head { text-align: center; margin-bottom: 60px; }
.trainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); }
.trainer { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,3vw,44px); text-align: center; transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; align-items: center; }
.trainer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trainer .photo { width: 168px; height: 168px; margin: 0 auto; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-md); }
.trainer .photo img { width: 100%; height: 100%; object-fit: cover; }
.trainer h3 { font-family: var(--display); font-weight: var(--h2-weight); font-size: clamp(24px,2.2vw,30px); margin-top: 24px; letter-spacing: var(--display-tracking); }
.trainer .role { margin-top: 8px; font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-600); }
.trainer .bio { margin-top: 18px; margin-bottom: 24px; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; text-wrap: pretty; }
.trainer .ln { margin-top: auto; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff; transition: transform .18s ease, background .18s ease; }
.trainer .ln svg { display: block; width: 18px; height: 18px; }
.trainer .ln:hover { transform: translateY(-2px); background: var(--orange-600); }
@media (max-width: 760px){ .trainer-grid{ grid-template-columns:1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--orange); color: var(--ink); }
[data-dir="a"] .testi { background: var(--cream); }
.testi .head { text-align: center; margin-bottom: 56px; }
[data-dir="b"] .testi .eyebrow { color: var(--ink); }
[data-dir="b"] .testi .eyebrow::before { background: var(--ink); }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.quote {
  background: rgba(255,255,255,.92); border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px);
  box-shadow: 0 10px 30px rgba(23,18,15,.10);
}
[data-dir="a"] .quote { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quote .mark { font-family: var(--display); font-size: 60px; line-height: .6; color: var(--orange); height: 30px; }
.quote p { font-size: clamp(16px,1.3vw,18.5px); line-height: 1.6; font-weight: 500; }
.quote .who { margin-top: 20px; font-weight: 700; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 10px; }
.quote .who::before { content:""; width: 22px; height: 2px; background: var(--orange); }
@media (max-width: 760px){ .testi-grid{ grid-template-columns:1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how .head { text-align: center; margin-bottom: 60px; }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; position: relative; }
.steps::before { content:""; position:absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--line-strong); z-index:0; }
.step { position: relative; z-index:1; text-align: center; display: flex; flex-direction: column; height: 100%; }
.step .circle { width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 20px; background: var(--paper); border: 2px solid var(--line-strong); color: var(--ink); }
.step.on-orange .circle { background: var(--orange); border-color: var(--orange); color: #fff; }
.step.on-dark .circle { background: var(--ink); border-color: var(--ink); color: #fff; }
.step .stage { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); }
.step h4 { font-size: 17px; margin: 6px 0 10px; font-weight: 700; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.step .tag { margin-top: auto; align-self: center; display: inline-block; font-size: 11px; font-weight: 700; color: var(--orange-700); background: var(--orange-tint); padding: 5px 11px; border-radius: 999px; }
.step p { margin-bottom: 14px; }
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .steps::before{ display:none; }
}
@media (max-width: 520px){ .steps{ grid-template-columns:1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--cream); }
.pricing .head { text-align: center; margin-bottom: 56px; }
.pricing .head .section-title { max-width: 20ch; margin-inline: auto; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin-inline: auto; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,3vw,42px); position: relative; }
.price-card.best { border: 2px solid var(--orange); box-shadow: var(--shadow-md); }
.price-card .ptag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; white-space: nowrap; }
.price-card .tier { font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-card.best .tier { color: var(--orange-700); }
.price-card .valid { font-size: 13px; color: var(--muted); margin-top: 4px; }
.price-card .amount { font-family: var(--display); font-weight: var(--h1-weight); letter-spacing: var(--display-tracking); font-size: clamp(52px,6vw,76px); line-height: 1; margin: 18px 0 4px; display: flex; align-items: flex-start; gap: 4px; }
.price-card .amount .cur { font-size: .5em; margin-top: .35em; font-weight: 700; }
.price-card .incl { margin: 18px 0 26px; color: var(--ink-2); font-size: 15px; line-height: 1.6; padding-top: 18px; border-top: 1px solid var(--line); }
.price-card .btn { width: 100%; justify-content: center; }
@media (max-width: 700px){ .price-grid{ grid-template-columns:1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq .head { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 26px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 700; font-size: clamp(16px,1.4vw,19px); color: var(--ink); transition: color .18s ease; }
.faq-q:hover { color: var(--orange-700); }
.faq-icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: all .25s ease; }
.faq-icon::before, .faq-icon::after { content:""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .25s ease, background .25s ease; }
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 8px 28px; color: var(--ink-2); font-size: 16px; line-height: 1.65; max-width: 70ch; }

/* ============================================================
   STATS BAND
   ============================================================ */
.statband { background: var(--ink); color: #fff; }
.statband .head { text-align: center; margin-bottom: 56px; }
.statband .section-title { color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink); padding: clamp(30px,3.5vw,48px); text-align: center; transition: background .25s ease; }
.stat:hover { background: #211915; }
.stat .big { font-family: var(--display); font-weight: var(--h1-weight); letter-spacing: var(--display-tracking); font-size: clamp(40px,4.5vw,62px); line-height: 1; color: var(--orange); }
.stat .lab { margin-top: 10px; font-weight: 700; font-size: 15px; }
.stat .desc { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.66); line-height: 1.55; }
@media (max-width: 760px){ .stat-grid{ grid-template-columns:1fr; } }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact { background: var(--orange); color: #fff; }
.contact .inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.contact .section-title { color: #fff; }
.contact p.sub { margin-top: 18px; font-size: 18px; color: rgba(255,255,255,.92); max-width: 38ch; line-height: 1.6; }
.contact .deadline { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,.16); padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.deadline-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #fff; flex: 0 0 auto; }
.deadline-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .deadline-dot { animation: liveCore 2.4s ease-in-out infinite; }
  .deadline-dot::after { animation: livePing 2.4s ease-out infinite; }
}
.form { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px); box-shadow: var(--shadow-lg); display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; font-size: 15px; color: var(--ink); transition: border-color .18s ease, background .18s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.form .btn { width: 100%; justify-content: center; }
.form-privacy { margin: 2px 0 0; font-size: 12px; line-height: 1.5; color: var(--muted); text-align: center; }
.form-privacy a { color: var(--orange-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--orange); }
@media (max-width: 820px){ .contact .inner{ grid-template-columns:1fr; } .form .row{ grid-template-columns:1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding-block: 48px; text-align: center; }
.site-footer img { height: 30px; margin: 0 auto 22px; filter: brightness(0) invert(1); opacity: .9; }
.site-footer .socials { display: flex; gap: 12px; justify-content: center; margin-bottom: 22px; }
.site-footer .socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .18s ease, transform .18s ease; }
.site-footer .socials a:hover { background: var(--orange); transform: translateY(-2px); }
.site-footer small { font-size: 13px; display: block; }
.site-footer .footer-legal { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.site-footer .footer-legal a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .18s ease; }
.site-footer .footer-legal a:hover { color: #fff; }
.hp-field { display: none; }

/* ============================================================
   STICKY CTA (mobile-ish persistent)
   ============================================================ */
.sticky-cta {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 140%);
  z-index: 70; background: var(--ink); color: #fff; border-radius: 999px; padding: 10px 16px 10px 26px;
  display: flex; align-items: center; gap: 22px; box-shadow: var(--shadow-lg); transition: transform .35s cubic-bezier(.22,1,.36,1);
  max-width: calc(100vw - 32px);
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta .txt { font-size: 14px; font-weight: 600; }
.sticky-cta .txt b { color: var(--orange); }
@media (max-width: 620px){ .sticky-cta .txt { display: none; } .sticky-cta{ padding: 8px; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---- Contact form thank-you state ---- */
.form-thanks { display: none; text-align: center; padding: 48px 24px; }
.form-thanks-tick { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--orange-50, #fff1ea); margin-bottom: 16px; }
.form-thanks-tick svg { width: 24px; height: 24px; }
.form-thanks h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 800; margin-bottom: 10px; }
.form-thanks p { font-size: 16px; color: var(--ink-2); }
.form-thanks a { color: var(--orange-700, #c94e1a); text-decoration: underline; }

/* ============================================================
   MOBILE — ≤ 600px
   Scoped tightly so desktop is unaffected.
   ============================================================ */
@media (max-width: 600px) {
  /* Compact header CTA so logo + button fit at 390px */
  .site-header .btn { padding: 10px 14px; font-size: 14px; }
  /* Stack hero CTAs full-width */
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  /* Keep pulse dot circular when its flex container narrows */
  .outcomes .foot .pulse { flex-shrink: 0; aspect-ratio: 1; }
}

/* Direction A: softer, more editorial section dividers */
[data-dir="a"] .eyebrow { font-weight: 800; }
[data-dir="a"] h2.section-title { font-weight: 500; }
