/* ============ Sahil Singhmar Art - Portrait Growth Masterclass ============ */
/* Design tokens, pulled from the Figma file's real fills/type (not eyeballed) */
:root{
  --bg:#0d0f10;
  --bg-raised:#141618;
  --grad-a:#0d0f10;
  --grad-b:#2a3a43;
  --cream:#f2f0ea;
  --muted:#a8aaa8;
  --muted-2:#6e7274;
  --muted-3:#3a3e40;
  --line:#52585b;
  --line-dark:#1b1d1f;
  --blue:#018fff;
  --white:#ffffff;
  /* These are the INNER content widths (the actual text column), not the
     outer row wrapper Figma nests it in one level up — using the outer
     wrapper's width here was the bug that made every section run ~130px
     too wide with margins too small. Verified per-section against the
     Figma node tree, not eyeballed. */
  --container-wide:1202px;
  --container-cta:1001px;
  --container-narrow:961px;
  --font-serif:'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-sans:'Archivo', Arial, Helvetica, sans-serif;
  --font-alt:'Inter', Arial, Helvetica, sans-serif;
  --shadow-card:0 20px 50px rgba(0,0,0,.35);
}
*{margin:0;padding:0;box-sizing:border-box}
html{
  scroll-behavior:smooth;
  /* Android/iOS auto-inflate font sizes on pages judged "not mobile-optimized"
     (this fires under Chrome's Request Desktop Site too) - reset so text
     always renders at its declared size. */
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  background:linear-gradient(to bottom,var(--bg),var(--bg-raised),var(--bg));
  color:var(--cream);
  font-family:var(--font-sans);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
section{position:relative}
section[id]{scroll-margin-top:100px}

.container{width:min(var(--container-wide),100%);margin:0 auto;padding:0 24px}
.container-cta{width:min(var(--container-cta),100%);margin:0 auto;padding:0 24px}
.container-narrow{width:min(var(--container-narrow),100%);margin:0 auto;padding:0 24px}

.eyebrow{
  font-size:10px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;
  color:var(--blue);margin-bottom:18px;display:block;
}
.eyebrow.muted{color:var(--muted)}
.eyebrow.strong{color:var(--muted);font-weight:600}

/* Alternating section-to-section wash, matches the Figma file's gradient
   fills exactly (--grad-a dark / --grad-b slate-blue) so adjacent sections
   meet at the same color instead of a flat black page. */
.grad-down{background:linear-gradient(to bottom,var(--grad-a),var(--grad-b));background-size:100% 200%;animation:gradDrift 20s ease-in-out infinite alternate}
.grad-up{background:linear-gradient(to bottom,var(--grad-b),var(--grad-a));background-size:100% 200%;animation:gradDrift 20s ease-in-out infinite alternate-reverse}
/* Same drift on the plain body colour so sections with no grad-* class
   (and the page edges the gradients fade into) still feel like they're
   part of one slowly breathing background instead of a flat, static fill. */
body{background-size:100% 200%;animation:gradDrift 30s ease-in-out infinite alternate}
@keyframes gradDrift{
  0%{background-position:50% 0%}
  100%{background-position:50% 100%}
}
@media (prefers-reduced-motion:reduce){
  .hero-bg,.practice-bg,.grad-down,.grad-up,body{animation:none}
}

/* Rich-text run colors, pulled from the Figma text nodes' character-level
   style overrides (not visible in a plain per-node fill read). */
.run-cream{color:var(--cream)}
.run-muted{color:var(--muted)}
.run-blue{color:var(--blue)}
.accent-italic{color:var(--blue);font-style:italic}

/* ============ HEADER ============ */
/* Figma has this always at 86% opacity + background blur, not conditional on
   scroll — matches the always-on-black-strip look, not the fade-in-on-scroll
   pattern used on project-hustle/one-stock-academy. Blur still lives on a
   pseudo-element: backdrop-filter on the header itself would make it the
   containing block for the fixed mobile menu overlay. */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:22px 0;transition:padding .35s ease,box-shadow .35s ease;
}
.site-header::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:rgba(13,15,16,.86);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
}
.site-header.scrolled{padding:14px 0;box-shadow:0 1px 0 var(--line-dark)}
.header-inner{
  width:min(1820px,94%);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{font-size:14px;font-weight:500;color:var(--cream);letter-spacing:.01em;display:flex;align-items:center}
.brand-logo{height:52px;width:auto;display:block;transition:opacity .25s ease}
.brand:hover .brand-logo{opacity:.8}
.main-nav{display:flex;gap:34px}
.mobile-nav-logo{display:none} /* only shown inside the fixed full-screen nav below 900px */
.main-nav a{
  position:relative;font-size:11px;font-weight:500;color:var(--muted);transition:color .25s ease;
  text-transform:uppercase;letter-spacing:.14em;padding-bottom:4px;
}
.main-nav a::after{
  content:"";position:absolute;left:0;right:100%;bottom:0;height:1px;background:var(--blue);
  transition:right .3s cubic-bezier(.22,.61,.36,1);
}
.main-nav a:hover{color:var(--cream)}
.main-nav a:hover::after{right:0}
.header-cta{
  border:1px solid rgba(1,143,255,.4);padding:11px 22px;
  font-size:11px;font-weight:600;color:var(--blue);white-space:nowrap;
  text-transform:uppercase;letter-spacing:.1em;
  transition:background .2s,border-color .2s;
}
.header-cta:hover{background:rgba(1,143,255,.1);border-color:var(--blue)}
.menu-toggle{display:none;flex-direction:column;gap:5px;width:26px;z-index:20}
.menu-toggle span{height:2px;width:100%;background:var(--cream);transition:transform .3s,opacity .3s}
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============ TRUST BAR (its own solid black strip below the hero) ============ */
.trust-bar{position:relative;z-index:5;padding:32px 0;background:var(--bg)}
.trust-bar .container-wide-flex{
  width:min(1700px,94%);margin:0 auto;
  display:flex;flex-wrap:wrap;gap:28px 48px;justify-content:center;
}
.trust-item{
  display:flex;align-items:center;gap:10px;font-family:var(--font-alt);
  font-size:13px;font-weight:500;color:var(--white);
  text-transform:uppercase;letter-spacing:.08em;
}
.trust-item svg{flex-shrink:0;opacity:.85}

/* ============ HERO ============ */
.hero{
  position:relative;min-height:min(100svh,900px);display:flex;align-items:flex-end;
  padding:170px 0 90px;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:-3%;width:106%;height:106%;object-fit:cover;z-index:-2;
  transform-origin:center;will-change:transform;
  animation:heroKenBurns 26s ease-in-out infinite alternate;
}
/* Slow pan/zoom on the hero photo so a static frame reads as alive rather
   than a still image, without any JS or extra image assets. */
@keyframes heroKenBurns{
  0%{transform:scale(1.06) translate(0,0)}
  50%{transform:scale(1.14) translate(-1.5%,-1%)}
  100%{transform:scale(1.06) translate(1.5%,1%)}
}
.hero-inner{width:min(1061px,100%);min-width:0;margin:0 auto;padding:0 24px;text-align:center}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.85);
  color:#000;font-family:var(--font-alt);font-size:12px;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;
  padding:9px 20px;border-radius:999px;margin-bottom:28px;
}
.hero-badge::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--blue);display:inline-block}
.hero-title{
  position:relative;
  font-family:var(--font-display);font-weight:500;color:#0a0a0a;
  font-size:clamp(42px,7.4vw,96px);line-height:.98;letter-spacing:-.02em;
}
.hero-title em{font-style:italic}
/* Below ~567px viewport the 42px floor above no longer shrinks with the
   container (clamp() is pinned at its minimum), so "Portrait Growth" can
   outgrow hero-inner's padded width and wrap inside a single .htitle-mask —
   which breaks the letter-tracer's one-line-per-mask assumption below and
   distorts the sketch. This override keeps the floor shrinking on phones. */
@media (max-width:560px){.hero-title{font-size:clamp(30px,10vw,42px)}}

/* ============ HERO SKETCH (letter-traced title, driven by js/hero-sketch.js) ============ */
/* The real text starts invisible (opacity:0) so js/hero-sketch.js's traced
   SVG overlay (real glyph outlines, drawn on stroke-first then filled) has
   something to reveal in its place; once tracing finishes the overlay is
   removed and this text just becomes the final crisp, selectable heading.
   Safety net lives in an inline same-origin <script> right after the markup
   (not in hero-sketch.js, which depends on the jQuery CDN — if that CDN
   fails, $ is undefined and hero-sketch.js never runs at all, so the
   failsafe can't live there) that forces opacity:1 after a few seconds
   regardless, so a CDN/script/data failure never leaves the H1 permanently
   invisible. */
.htitle-line{display:inline-block}
/* nowrap: the SVG trace overlay in js/hero-sketch.js is sized/positioned as
   a single-line rectangle per mask (one <svg> per line). If the real text
   were allowed to wrap inside a mask, the overlay's width/height would no
   longer match the real glyphs' bounding box and the trace distorts. */
.htitle-mask{display:inline-block;opacity:0;white-space:nowrap}
.htitle-trace{position:absolute;top:0;left:0;pointer-events:none;z-index:4;overflow:visible}
.sketch-pencil{
  position:absolute;top:0;left:0;width:52px;height:20px;
  transform:rotate(-10deg);transform-origin:95% 50%;
  opacity:0;pointer-events:none;z-index:5;
  filter:drop-shadow(0 3px 6px rgba(0,0,0,.4));
}
@media (max-width:560px){.sketch-pencil{width:38px;height:15px}}
.hero-title.sketching .htitle-trace{filter:url(#sketchRough)}
@media (prefers-reduced-motion:reduce){
  .sketch-pencil{display:none !important}
  .hero-title.sketching .htitle-trace{filter:none}
}
.hero-sub{
  font-family:var(--font-alt);font-weight:300;color:#0a0a0a;
  font-size:clamp(18px,2.2vw,26px);max-width:700px;margin:26px auto 0;
}
.hero-body{
  font-family:var(--font-alt);font-weight:400;color:#0a0a0a;
  font-size:clamp(14px,1.4vw,16px);max-width:600px;margin:14px auto 0;line-height:1.5;
}
.hero-cta-row{margin-top:36px;display:flex;justify-content:center}
.btn-primary{
  position:relative;overflow:hidden;
  display:inline-flex;align-items:center;gap:10px;
  background:var(--blue);color:var(--white);font-weight:600;font-size:13px;
  text-transform:uppercase;letter-spacing:.06em;
  padding:18px 34px;transition:transform .2s,box-shadow .2s;
  box-shadow:0 12px 30px rgba(1,143,255,.28);
  animation:ctaGlow 3.2s ease-in-out infinite;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(1,143,255,.38);animation-play-state:paused}
.btn-primary:hover::before{animation-play-state:paused}
/* Mild, slow breathing glow so the primary CTA quietly draws the eye
   without looking like a notification badge or an urgent alert. */
@keyframes ctaGlow{
  0%,100%{box-shadow:0 12px 30px rgba(1,143,255,.28),0 0 0 rgba(1,143,255,0)}
  50%{box-shadow:0 12px 30px rgba(1,143,255,.28),0 0 22px 4px rgba(1,143,255,.45)}
}
/* A soft diagonal highlight sweeping across the button every few seconds,
   layered over the glow pulse for a subtle "polished glass" shimmer. */
.btn-primary::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(115deg,transparent 0%,transparent 40%,rgba(255,255,255,.35) 50%,transparent 60%,transparent 100%);
  transform:translateX(-100%);
  animation:ctaShimmer 3.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes ctaShimmer{
  0%,20%{transform:translateX(-120%)}
  55%,100%{transform:translateX(120%)}
}
@media (prefers-reduced-motion:reduce){
  .btn-primary,.btn-primary::before{animation:none}
}
.hero-trust{
  margin-top:28px;font-family:var(--font-alt);font-size:16px;font-weight:600;color:#000;
  text-transform:uppercase;letter-spacing:.08em;
}

.placeholder-note{
  margin-top:18px;font-size:11px;color:var(--muted-2);font-style:italic;
}

/* ============ SECTION SPACING ============ */
.section{padding:140px 0}
.section-tight{padding:100px 0 0}
@media (max-width:900px){.section{padding:88px 0}.section-tight{padding:64px 0 0}}

h2.section-heading{
  font-family:var(--font-serif);font-weight:400;color:var(--cream);
  font-size:clamp(32px,4.6vw,54px);line-height:1.15;letter-spacing:-.01em;
}
h2.section-heading.xl{font-size:clamp(36px,5.6vw,60px)}
h2.section-heading.sm{font-size:clamp(28px,4.1vw,48px)}
.section-head-row{
  display:flex;justify-content:space-between;align-items:flex-end;gap:24px;flex-wrap:wrap;
  margin-bottom:56px;
}
.section-head-row .eyebrow{margin-bottom:0}

.lede{font-size:clamp(16px,1.4vw,17px);color:var(--muted);max-width:640px;margin-top:22px}

/* ============ PROBLEM (masterclass) ============ */
.problem-head{max-width:900px}
.problem-head h2{margin-top:6px}
.problem-head .lede{max-width:660px}
.struggle-label{font-size:10px;font-weight:500;letter-spacing:.08em;color:var(--muted);margin:56px 0 22px;text-transform:uppercase}
.struggle-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:38px 40px;
}
.struggle-item{display:flex;gap:14px;transition:transform .3s cubic-bezier(.22,.61,.36,1)}
.struggle-item:hover{transform:translateX(6px)}
.struggle-num{font-size:10px;font-weight:500;color:var(--blue);flex-shrink:0;padding-top:4px}
.struggle-text{font-size:18px;color:var(--cream);line-height:1.4}
.problem-quote{
  margin-top:78px;padding-top:44px;border-top:1px solid var(--line-dark);
  font-family:var(--font-serif);font-size:clamp(22px,3.4vw,46px);line-height:1.32;
  color:var(--cream);max-width:820px;
}

/* ============ INTRO (Portrait Growth Masterclass) ============ */
.intro-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:64px;align-items:start}
.intro-copy p{color:var(--muted);font-size:17px;margin-top:24px;max-width:520px}
.intro-copy p.callout{color:var(--cream);font-size:16px;max-width:540px}
.intro-side{padding-top:64px}
.intro-side .callout-lines{font-family:var(--font-serif);font-size:22px;color:var(--cream);line-height:1.85}

/* ============ LEARN ============ */
.learn-grid{display:grid;grid-template-columns:1fr 560px;gap:80px;align-items:start}
.learn-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:36px;gap:16px;flex-wrap:wrap}
.learn-list{display:flex;flex-direction:column}
.learn-row{display:grid;grid-template-columns:110px 1fr;gap:24px;padding:32px 0;border-top:1px solid var(--line-dark)}
.learn-row:last-child{border-bottom:1px solid var(--line-dark)}
.learn-index{font-family:var(--font-serif);font-size:40px;color:var(--line)}
.learn-row h3{font-family:var(--font-serif);font-weight:400;font-size:26px;color:var(--cream);margin-bottom:12px}
.learn-row p{font-size:16px;color:var(--muted);max-width:560px}
.learn-image{
  position:sticky;top:120px;border-radius:6px;overflow:hidden;aspect-ratio:569/1225;
  max-height:900px;
}
.learn-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.22,.61,.36,1)}
.learn-image:hover img{transform:scale(1.04)}
.learn-row{transition:transform .3s cubic-bezier(.22,.61,.36,1)}
.learn-row:hover{transform:translateX(6px)}

/* ============ DEMO ============ */
.demo-head{display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;align-items:flex-end;margin-bottom:56px}
.demo-head p{font-family:var(--font-serif);font-size:clamp(18px,2vw,23px);color:var(--muted);max-width:480px}
.demo-frame{
  position:relative;border-radius:8px;overflow:hidden;aspect-ratio:16/9;
  background:linear-gradient(135deg,#17191b,#0a0b0c);
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line-dark);
}
.demo-frame{transition:border-color .3s ease}
.demo-play{
  width:88px;height:88px;border-radius:50%;background:rgba(242,240,234,.08);
  border:1px solid rgba(242,240,234,.25);display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  transition:transform .3s cubic-bezier(.22,.61,.36,1),background .3s ease;
}
.demo-frame:hover{border-color:rgba(1,143,255,.4);cursor:pointer}
.demo-frame:hover .demo-play{transform:scale(1.08);background:rgba(242,240,234,.14)}
.demo-play svg{margin-left:4px}
.demo-caption{margin-top:18px;font-size:10px;font-weight:500;color:var(--cream);letter-spacing:.04em;text-transform:uppercase}
.demo-foot{margin-top:44px;color:var(--muted);font-size:17px;max-width:760px}

/* ============ WHO IS THIS FOR ============ */
.who-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:56px 40px;margin-top:64px}
.who-item{padding-top:20px;border-top:1px solid var(--line);transition:border-color .3s ease}
.who-tag{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.who-tag .dash{width:16px;height:1px;background:var(--line);transition:width .3s cubic-bezier(.22,.61,.36,1),background .3s ease}
.who-tag h3{font-size:14px;font-weight:600;color:var(--cream);letter-spacing:.02em}
.who-item p{font-size:16px;color:var(--muted);line-height:1.55}
.who-item:hover{border-color:var(--blue)}
.who-item:hover .who-tag .dash{width:28px;background:var(--blue)}

/* ============ WALKAWAY ============ */
.walkaway-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:64px}
.walkaway-tag{font-family:var(--font-alt);font-weight:400;font-size:20px;color:var(--cream);margin-top:30px;line-height:1.4}
.walkaway-list li{
  padding:18px 0;border-bottom:1px solid var(--line-dark);
  font-size:17px;color:var(--cream);
}

/* ============ PRACTICE (full-bleed fresco) ============ */
.practice{padding:170px 0;text-align:center;overflow:hidden}
.practice-bg{
  position:absolute;inset:-3%;width:106%;height:106%;object-fit:cover;z-index:-2;
  transform-origin:center;will-change:transform;
  animation:heroKenBurns 26s ease-in-out infinite alternate;
}
.practice-fade{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,var(--bg) 0%,rgba(13,15,16,.55) 30%,rgba(13,15,16,.55) 70%,var(--bg) 100%)}
.practice-inner{width:min(1002px,100%);margin:0 auto;padding:0 24px}
.practice-divider{width:1px;height:56px;background:linear-gradient(180deg,transparent,var(--blue),transparent);margin:0 auto 40px}
.practice h2{font-size:clamp(28px,4.2vw,52px)}
.practice p{color:var(--white);font-size:clamp(15px,1.6vw,17px);max-width:680px;margin:32px auto 0}

/* ============ MENTOR ============ */
.mentor-grid{display:grid;grid-template-columns:539px 1fr;gap:96px;align-items:start}
.mentor-photo{border-radius:6px;overflow:hidden;aspect-ratio:539/673}
.mentor-photo img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.22,.61,.36,1)}
.mentor-photo:hover img{transform:scale(1.04)}
.mentor-caption{margin-top:18px;font-size:12px;color:var(--muted)}
.mentor-name{font-family:var(--font-serif);font-weight:400;font-size:clamp(36px,4.8vw,64px);color:var(--cream);margin:14px 0 24px}
.mentor-rule{width:52px;height:1px;background:var(--line);margin-bottom:30px}
.mentor-bio p{font-size:17px;color:var(--muted);margin-bottom:22px;max-width:585px}
.mentor-tagline{font-family:var(--font-serif);font-size:22px;color:var(--cream);line-height:1.55;margin-top:38px}

/* ============ MTP intro ============ */
.mtp-intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;margin-bottom:110px}
.mtp-intro-grid p{font-size:17px;color:var(--muted);margin-bottom:20px;max-width:520px}
.mtp-showcase{text-align:center;padding-top:60px;border-top:1px solid var(--line-dark)}
.mtp-showcase .eyebrow{justify-content:center;display:block;font-weight:600}
.mtp-showcase h3{font-family:var(--font-serif);font-weight:400;font-size:clamp(28px,4.2vw,54px);color:var(--cream);margin:20px auto 30px;max-width:900px}
.mtp-showcase p{color:var(--muted);font-size:17px;max-width:660px;margin:0 auto}

/* ============ CURRICULUM ============ */
.curriculum-head{display:flex;justify-content:space-between;align-items:baseline;gap:16px;flex-wrap:wrap;margin-bottom:64px}
.curriculum-row{
  display:grid;grid-template-columns:60px 1fr;gap:24px;align-items:baseline;
  padding:24px 0;border-top:1px solid var(--line-dark);
  transition:padding-left .3s cubic-bezier(.22,.61,.36,1);
}
.curriculum-row:last-child{border-bottom:1px solid var(--line-dark)}
.curriculum-row:hover{padding-left:10px}
.curriculum-row .num{font-family:var(--font-serif);font-size:19px;color:var(--line);transition:color .3s ease}
.curriculum-row:hover .num{color:var(--blue)}
.curriculum-row .name{font-size:18px;color:var(--cream)}

/* ============ MTP INCLUDES ============ */
.includes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:56px 40px;margin-top:56px}
.includes-item{transition:transform .35s cubic-bezier(.22,.61,.36,1)}
.includes-item:hover{transform:translateY(-6px)}
.includes-item h3{font-family:var(--font-serif);font-weight:400;font-size:28px;color:var(--cream);margin-bottom:16px;transition:color .25s ease}
.includes-item:hover h3{color:var(--blue)}
.includes-item p{font-size:15px;color:var(--muted);line-height:1.55}

/* ============ PRICING ============ */
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;margin-top:56px}
.price-card{
  border:1px solid rgba(242,240,234,.13);border-radius:8px;padding:48px 40px;
  background:var(--bg);
  transition:transform .35s cubic-bezier(.22,.61,.36,1),border-color .3s ease,box-shadow .35s ease;
}
.price-card:hover{transform:translateY(-8px);border-color:rgba(242,240,234,.3);box-shadow:0 24px 50px rgba(0,0,0,.35)}
.price-card.featured{background:var(--line-dark);border-color:rgba(1,143,255,.5)}
.price-card.featured:hover{border-color:rgba(1,143,255,.8);box-shadow:0 24px 50px rgba(1,143,255,.15)}
.price-card .eyebrow{margin-bottom:14px}
.price-card h3{font-family:var(--font-serif);font-weight:400;font-size:32px;color:var(--cream);margin-bottom:22px}
.price-amount{font-family:var(--font-serif);font-size:clamp(36px,4.3vw,62px);color:var(--cream);margin-bottom:20px}
.price-card > p:not(.price-amount){font-size:15px;color:var(--muted);margin-bottom:26px}
.price-features li{
  padding:15px 0;border-top:1px solid var(--line-dark);font-size:15px;color:var(--cream);
}
.price-features li.accent{color:var(--blue);font-weight:500}
.pricing-compare{margin-top:90px;padding-top:56px;border-top:1px solid var(--line-dark)}
.pricing-compare h3{font-family:var(--font-serif);font-weight:400;font-size:clamp(24px,3vw,34px);color:var(--cream);margin-bottom:48px}
.compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px}
.compare-item{padding:20px;margin:-20px;border-radius:8px;transition:background .3s ease}
.compare-item:hover{background:rgba(242,240,234,.03)}
.compare-item .tag{font-size:10px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);display:block;margin-bottom:14px}
.compare-item.accent .tag{color:var(--blue)}
.compare-item p{font-size:17px;color:var(--cream)}

/* ============ WHY MTP ============ */
.why-lede{font-size:17px;color:var(--muted);max-width:700px;margin-top:24px}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;margin-top:64px}
.why-col-label{font-size:10px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:30px;display:block}
.why-col-label.accent{color:var(--blue)}
.instead-steps{display:flex;flex-direction:column;gap:22px}
.instead-steps span{font-family:var(--font-serif);font-size:22px;color:var(--muted-2)}
.instead-arrow{color:var(--muted-3);font-size:14px}
.you-get-box{
  position:relative;padding-left:32px;display:flex;flex-direction:column;gap:20px;
}
.you-get-box::before{content:"";position:absolute;left:0;top:6px;bottom:6px;width:1px;background:linear-gradient(180deg,var(--blue),transparent)}
.you-get-box p{font-family:var(--font-serif);font-size:21px;color:var(--cream)}
.you-get-box p.accent{color:var(--blue)}

/* ============ RESERVE ============ */
.reserve{text-align:center;padding:150px 0}
.reserve-inner{width:min(941px,100%);margin:0 auto;padding:0 24px}
.reserve h2{font-size:clamp(32px,4.8vw,60px);text-align:center}
.reserve .lede{max-width:650px;margin-left:auto;margin-right:auto;text-align:center}
.event-meta{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px 0;margin:48px 0;
  font-size:11px;font-weight:500;color:var(--cream);
}
.event-meta span:not(.sep){padding:0 18px}
.event-meta .sep{width:1px;height:12px;background:var(--line);align-self:center}
.reserve .btn-primary{padding:20px 40px;font-size:15px}
.reserve-note{margin-top:36px;font-size:12px;color:var(--muted)}

/* ============ DETAILS ============ */
.details-list{margin-top:56px}
.details-row{
  display:grid;grid-template-columns:230px 1fr;gap:24px;padding:24px 0;border-top:1px solid var(--line-dark);
  transition:padding-left .3s cubic-bezier(.22,.61,.36,1);
}
.details-row:last-child{border-bottom:1px solid var(--line-dark)}
.details-row:hover{padding-left:10px}
.details-row .label{font-size:10px;font-weight:500;color:var(--muted);letter-spacing:.04em;text-transform:uppercase;padding-top:2px}
.details-row .value{font-size:16px;color:var(--cream)}
.details-row .value.accent{color:var(--blue);font-weight:500}

/* ============ FAQ ============ */
.faq-list{margin-top:56px}
.faq-item{border-top:1px solid var(--line-dark);transition:border-color .3s ease}
.faq-item:last-child{border-bottom:1px solid var(--line-dark)}
.faq-item:hover{border-color:var(--line)}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:24px;
  padding:28px 0;text-align:left;cursor:pointer;
}
.faq-q h3{transition:color .25s ease}
.faq-item:hover .faq-q h3{color:var(--blue)}
.faq-q h3{font-family:var(--font-serif);font-weight:400;font-size:clamp(17px,2vw,22px);color:var(--cream)}
.faq-toggle{
  flex-shrink:0;width:22px;height:22px;position:relative;color:var(--blue);
}
.faq-toggle::before,.faq-toggle::after{
  content:"";position:absolute;top:50%;left:50%;background:currentColor;
  transform:translate(-50%,-50%);transition:transform .25s ease,opacity .25s ease;
}
.faq-toggle::before{width:14px;height:2px}
.faq-toggle::after{width:2px;height:14px}
.faq-item.open .faq-toggle::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-answer p{padding-bottom:26px;font-size:16px;color:var(--muted);max-width:920px;line-height:1.6}

/* ============ FINAL CTA ============ */
.final-cta{text-align:center;padding:160px 0}
.final-cta h2{font-size:clamp(38px,6.4vw,78px)}
.final-cta .lede{max-width:660px;margin:26px auto 0;text-align:center}
.final-cta .statement{font-family:var(--font-serif);font-weight:400;font-size:22px;color:var(--cream);margin-top:36px}
.final-cta-actions{margin-top:48px;display:flex;flex-direction:column;align-items:center;gap:22px}
.final-cta .event-meta{margin:0}
.final-quote{
  margin-top:110px;font-family:var(--font-serif);font-weight:400;font-style:italic;
  font-size:clamp(24px,3.2vw,38px);line-height:1.5;max-width:800px;margin-left:auto;margin-right:auto;
  background:linear-gradient(100deg,var(--cream) 25%,var(--blue) 45%,#ffffff 50%,var(--blue) 55%,var(--cream) 75%);
  background-size:250% 100%;
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation:quoteShimmer 5s ease-in-out infinite;
}
/* Slow highlight sweeping through the closing line's text fill, matching
   the quiet shimmer already used on the primary CTA buttons. */
@keyframes quoteShimmer{
  0%{background-position:140% 0}
  100%{background-position:-140% 0}
}
@media (prefers-reduced-motion:reduce){
  .final-quote{animation:none;background:none;color:var(--cream)}
}

/* ============ FOOTER ============ */
.site-footer{
  padding:36px 0;border-top:1px solid var(--line-dark);
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
  width:min(1820px,94%);margin:0 auto;
}
.footer-logo{height:32px;width:auto;display:block}
.footer-text{text-align:right}
.site-footer p{font-size:11px;color:var(--muted)}
.site-footer p:first-child{color:var(--cream);font-weight:500}

/* ============ REVEAL ============ */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s cubic-bezier(.22,.61,.36,1)}
.reveal.in{opacity:1;transform:none}

/* Heading type-reveal: a swift left-to-right wipe (clip-path curtain), not a
   fade — reads as the heading being "typed"/drawn on rather than fading up.
   Works fine across multi-line headings (wipes both lines in one pass) and is
   robust to inline markup (<br>, <em>) since it clips a wrapper box, not the
   text runs themselves.
   IMPORTANT: the clip-path lives on an INNER .type-mask span, never on the
   .reveal-type element itself — an IntersectionObserver's intersection ratio
   for a target accounts for clip-path applied to that same target, so a
   fully clip-path-hidden element permanently reports isIntersecting:false
   and its own .in class can never be added (a real deadlock, confirmed by
   testing: worked instantly once clip-path moved off the observed element). */
.reveal-type{display:block}
.reveal-type .type-mask{display:block;clip-path:inset(0 100% 0 0);-webkit-clip-path:inset(0 100% 0 0);transition:clip-path .85s cubic-bezier(.65,0,.35,1)}
.reveal-type.in .type-mask{clip-path:inset(0 0 0 0);-webkit-clip-path:inset(0 0 0 0)}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .reveal-type .type-mask{clip-path:inset(0 0 0 0);-webkit-clip-path:inset(0 0 0 0);transition:none}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}

/* ============ RESPONSIVE ============ */
@media (max-width:1080px){
  .intro-grid,.learn-grid,.walkaway-grid,.mentor-grid,.mtp-intro-grid,.why-grid,.compare-grid,.pricing-grid{
    grid-template-columns:1fr;
  }
  .learn-image{position:static;max-height:520px;margin-top:40px}
  .struggle-grid{grid-template-columns:repeat(2,1fr)}
  .who-grid{grid-template-columns:repeat(2,1fr)}
  .includes-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  .main-nav{
    position:fixed;inset:0;background:#050607;
    flex-direction:column;justify-content:flex-start;align-items:center;gap:32px;
    padding-top:calc(env(safe-area-inset-top,0px) + 26px);
    opacity:0;pointer-events:none;transition:opacity .3s ease;
  }
  .main-nav.open{opacity:1;pointer-events:auto}
  .main-nav a{font-size:20px}
  .mobile-nav-logo{display:flex;margin-bottom:4px}
  .mobile-nav-logo img{height:44px;width:auto;display:block}
  .menu-toggle{display:flex}
  .header-cta{display:none}
  .main-nav.open ~ .menu-toggle,.menu-toggle{z-index:20}

  .hero{min-height:min(100svh,760px);padding:150px 0 70px}
  .trust-bar{margin-top:-24px}
  .trust-bar .container-wide-flex{gap:18px 30px}

  .struggle-grid,.who-grid,.includes-grid{grid-template-columns:1fr}
  .demo-head,.curriculum-head,.section-head-row,.learn-head{flex-direction:column;align-items:flex-start}
  .details-row{grid-template-columns:1fr}
  .details-row .value{margin-top:4px}
  .curriculum-row{grid-template-columns:44px 1fr}
  .event-meta{flex-direction:column;gap:8px}
  .event-meta .sep{display:none}
  .site-footer{flex-direction:column}
}
@media (max-width:560px){
  .section{padding:64px 0}
  h2.section-heading,h2.section-heading.xl{font-size:clamp(28px,8vw,40px)}
  .learn-row{grid-template-columns:60px 1fr}
  .learn-index{font-size:28px}
  .price-card{padding:34px 24px}
}

/* ============ REQUEST DESKTOP SITE / tall narrow viewport ============ */
@media (max-width:1000px) and (min-height:1600px){
  .hero{min-height:820px}
}
