/* ============ Project Hustle - design tokens ============ */
:root{
  --purple:#8f55ff;
  --purple-soft:#8b5cf6;
  --purple-deep:#7200dc;
  --purple-light:#af88ff;
  --black:#000;
  --ink:#0d0c10;
  --panel:#141318;
  --line:rgba(255,255,255,.09);
  --mut-d:#8e8e9f;
  --mut-l:#626168;
  --gray:#6b7280;
  --light:#faf9fc;
  --white:#fff;
  --lime:#ecf5b6;
  --disp:'Big Shoulders Display',sans-serif;
  --serif:'Cormorant Garamond',serif;
  --sans:'Inter',sans-serif;
  --geist:'Geist','Inter',sans-serif;
  --shadow-card:0 10px 30px rgba(13,12,16,.08);
}
*{margin:0;padding:0;box-sizing:border-box}
html{
  scroll-behavior:smooth;
  /* Without this, Android/iOS auto-inflate font sizes ("text boosting")
     whenever they judge a page isn't mobile-optimized — which is exactly
     what "Request Desktop Site" triggers. That inflation ignores the
     actual CSS font-size and blows text past its container, which is
     what breaks the layout on a real phone even though the page renders
     correctly at the same pixel width in a desktop browser. */
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  font-family:var(--sans);
  background:var(--black);
  color:var(--white);
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
.container{width:min(1280px,92%);margin:0 auto}
section{position:relative}
.section-light{background:var(--light);color:var(--ink)}

/* ---- typography helpers ---- */
.eyebrow{
  font-family:var(--geist);font-weight:800;font-size:14px;letter-spacing:.22em;
  color:var(--purple);text-transform:uppercase;margin-bottom:18px;
}
.eyebrow.deep{color:var(--purple-deep)}
.display-xl{font-family:var(--disp);font-weight:900;font-size:clamp(56px,7vw,96px);line-height:.95;letter-spacing:.01em}
.display-lg{font-family:var(--disp);font-weight:800;font-size:clamp(44px,5.4vw,76px);line-height:.98;letter-spacing:.01em}
.on-dark{color:var(--white)}
.serif-accent{font-family:var(--serif);font-style:italic;font-weight:600;color:var(--purple);letter-spacing:0}
.serif-accent.grad{
  background:linear-gradient(100deg,var(--purple-light),var(--purple) 55%,var(--purple-deep));
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.accent{color:var(--purple)}
.accent-solid{color:var(--purple)}
.serif-xl{font-family:var(--serif);font-weight:400;font-size:clamp(40px,4.6vw,66px);line-height:1.08}
.serif-lg{font-family:var(--serif);font-weight:400;font-size:clamp(44px,5.6vw,82px);line-height:1}
.serif-md{font-family:var(--serif);font-weight:400;font-size:clamp(24px,2.4vw,34px);line-height:1.15}
.serif-xl em,.serif-md em{font-style:italic;color:var(--purple-soft)}
.instrument{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400;color:var(--purple-deep);font-size:.72em;letter-spacing:0}
.fraunces{font-family:'Fraunces',serif;font-style:italic;font-weight:400;color:var(--purple);font-size:.98em;letter-spacing:0}
.arr{display:inline-block;transition:transform .3s ease}

/* ---- buttons ---- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--sans);font-weight:800;font-size:14px;letter-spacing:.08em;
  padding:19px 28px;border-radius:8px;cursor:pointer;border:0;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}
.btn-primary{background:var(--purple);color:var(--white);box-shadow:0 8px 28px rgba(143,85,255,.35)}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(143,85,255,.5);background:#9d6bff}
.btn:hover .arr{transform:translateX(4px)}
.btn-pill{border-radius:999px}
.btn-big{font-size:18px;padding:18px 48px;border-radius:12px}
.btn-wide{width:100%;justify-content:center;border-radius:10px}

/* ---- reveal animations ---- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s cubic-bezier(.22,.61,.36,1)}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}

/* ============ NAVBAR ============ */
.navbar{
  position:fixed;inset:0 0 auto 0;z-index:100;
  padding:20px 0;transition:background .35s ease,padding .35s ease,box-shadow .35s ease;
}
/* blur on a pseudo-element: backdrop-filter on the navbar itself would make it
   the containing block for the fixed mobile menu overlay */
.navbar::before{content:"";position:absolute;inset:0;z-index:-1;background:rgba(5,4,8,.85);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);opacity:0;transition:opacity .35s ease}
.navbar.scrolled::before{opacity:1}
.navbar.scrolled{padding:10px 0;box-shadow:0 1px 0 var(--line)}
.nav-inner{width:min(1280px,94%);margin:0 auto;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{width:54px;height:54px;border-radius:50%;transition:transform .4s ease}
.brand:hover .brand-mark{transform:rotate(-12deg) scale(1.06)}
.brand-mark.lg{width:52px;height:52px}
.brand-text{display:flex;flex-direction:column;line-height:1.15}
.brand-text strong{font-weight:800;font-size:20px;letter-spacing:.03em}
.brand-text small{font-size:11px;font-weight:600;letter-spacing:.18em;color:var(--mut-d)}
.nav-links{display:flex;align-items:center;gap:38px}
.nav-links a{font-size:13px;font-weight:600;letter-spacing:.14em;color:var(--mut-d);position:relative;transition:color .25s ease}
.nav-links a:not(.nav-cta)::after{
  content:"";position:absolute;left:0;bottom:-6px;height:2px;width:0;background:var(--purple);transition:width .3s ease;
}
.nav-links a:hover{color:var(--white)}
.nav-links a:not(.nav-cta):hover::after{width:100%}
.nav-cta{
  margin-left:152px;
  color:var(--white) !important;font-weight:700;border:1px solid var(--purple);
  padding:11px 20px;border-radius:8px;transition:background .3s ease,box-shadow .3s ease !important;
}
.nav-cta:hover{background:var(--purple);box-shadow:0 8px 24px rgba(143,85,255,.4)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;flex-direction:column;gap:5px;padding:6px}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--white);transition:transform .3s ease,opacity .3s ease}

/* ============ HERO ============ */
.hero{
  min-height:min(100svh,1010px);display:flex;flex-direction:column;justify-content:flex-start;
  padding:150px 0 0;overflow:hidden;
  background:radial-gradient(900px 600px at 78% 30%,rgba(143,85,255,.14),transparent 60%),var(--black);
}
.hero-inner{display:grid;grid-template-columns:560px 1fr;gap:40px;align-items:start}
.hero-inner>*{min-width:0}
.hero-copy{padding-top:7px}
.hero-title{font-family:var(--disp);font-weight:900;font-size:clamp(52px,7.2vw,100px);line-height:1;letter-spacing:-.01em;margin:34px 0 36px}
.hero-title .line{display:block;overflow:hidden}
.hero-title .line span{display:inline-block;transform:translateY(110%);animation:riseUp .8s cubic-bezier(.22,.61,.36,1) forwards}
.hero-title .line:nth-child(2) span{animation-delay:.1s}
.hero-title .line:nth-child(3) span{animation-delay:.2s}
.hero-title .line:nth-child(4) span{animation-delay:.3s}
.hero-title .accent span{color:var(--purple)}
@keyframes riseUp{to{transform:none}}
.hero-sub{color:var(--mut-d);font-size:19px;margin-bottom:30px}
.hero-sub strong{color:var(--white)}
.hero-chips{display:flex;flex-wrap:wrap;gap:8px 22px;margin-bottom:32px}
.hero-chips li{font-size:12px;font-weight:700;letter-spacing:.16em;color:var(--mut-d)}
.hero-visual{position:relative;display:block}
.hero-glow{
  position:absolute;inset:8% 4%;border-radius:50%;
  background:radial-gradient(circle,rgba(143,85,255,.32),transparent 65%);
  filter:blur(30px);animation:pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow{0%,100%{opacity:.7;transform:scale(1)}50%{opacity:1;transform:scale(1.06)}}
.hero-portrait{position:relative;width:744px;max-width:none;border-radius:24px;animation:floatY 7s ease-in-out infinite}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.scroll-cue{position:absolute;left:0;right:0;bottom:37px;display:flex;flex-direction:column;align-items:center;gap:10px}
.scroll-cue span{font-size:10px;font-weight:700;letter-spacing:.3em;color:var(--mut-d)}
.mouse{width:22px;height:34px;border:1.5px solid var(--mut-d);border-radius:12px;display:flex;justify-content:center;padding-top:6px}
.mouse i{width:3px;height:7px;border-radius:3px;background:var(--purple);animation:wheel 1.6s ease-in-out infinite}
@keyframes wheel{0%{transform:translateY(0);opacity:1}70%{transform:translateY(9px);opacity:0}100%{opacity:0}}

/* Below the 1440 design width the portrait bleed can't fit - go fluid */

/* ============ TRUTH ============ */
.truth{background:#080710;padding:93px 0 0;overflow:hidden}
/* the design uses asymmetric margins here (64 left / 30 right at 1440) */
.truth>.container{width:auto;max-width:none;margin:0;padding:0 30px 0 64px}
.truth-grid{display:grid;grid-template-columns:minmax(0,1.75fr) minmax(0,1fr) minmax(0,1fr);gap:35px;align-items:start}
.truth .eyebrow{font-size:19px;letter-spacing:.13em}
.line-after{display:flex;align-items:center;gap:15px}
.line-after::after{content:"";width:63px;height:2px;background:var(--purple)}
.truth-copy h2{font-size:77px;line-height:1.09;margin-top:38px;letter-spacing:-.005em}
.truth-why{margin-top:42px;font-size:35px;line-height:.945;color:var(--white);border-left:2px solid var(--purple);padding-left:12px}
.truth-note{margin-top:30px;display:flex;align-items:center;gap:42px}
.tn-text{display:flex;flex-direction:column;gap:4px}
.tn-a{white-space:nowrap;font-family:var(--geist);font-size:17px;font-weight:600;color:#9ca3af;letter-spacing:.04em}
.tn-b{white-space:nowrap;font-family:var(--geist);font-size:11px;font-weight:600;letter-spacing:.1em;color:var(--lime)}
.problem-badge{
  flex:0 0 auto;width:110px;height:110px;border-radius:50%;
  border:1px solid rgba(139,92,246,.5);display:flex;align-items:center;justify-content:center;text-align:center;
  background:rgba(8,7,16,.8);
}
.problem-badge span{font-family:var(--geist);font-size:10px;font-weight:700;letter-spacing:.14em;line-height:1.5}
.problem-badge em{font-style:normal;color:var(--purple-soft)}
/* dashed connector + arrowhead to the right of the badge */
.tn-arrow{flex:0 0 auto;position:relative;width:132px;height:8px;margin-left:-17px}
.tn-arrow::before{
  content:"";position:absolute;left:0;top:50%;width:118px;height:1px;
  background:repeating-linear-gradient(to right,#6b7280 0 6px,transparent 6px 12px);
}
.tn-arrow::after{
  content:"";position:absolute;right:0;top:50%;width:7px;height:7px;
  border-top:1px solid #6b7280;border-right:1px solid #6b7280;
  transform:translateY(-50%) rotate(45deg);
}
.truth-visual{position:relative;align-self:start;margin-top:-31px}
.truth-portrait{
  width:392px;max-width:none;margin-left:-4px;filter:grayscale(1) contrast(1.05);
  mask-image:linear-gradient(to bottom,#000 68%,transparent);
  -webkit-mask-image:linear-gradient(to bottom,#000 68%,transparent);
}
.truth-list{position:relative;z-index:1;padding-top:18px}
.tl-head{font-family:var(--geist);font-size:16px;font-weight:700;letter-spacing:.08em;color:#9ca3af;margin-bottom:32px}
.truth-list ol li{
  display:flex;gap:26px;align-items:baseline;padding:0 0 11px;margin-bottom:11px;border-bottom:1px solid var(--line);
  font-family:var(--geist);font-size:15px;line-height:1.4;font-weight:500;transition:transform .3s ease,color .3s ease;
}
.truth-list ol li:last-child{margin-bottom:0}
.truth-list ol li:hover{transform:translateX(6px);color:var(--purple-light)}
.truth-list ol li span{font-size:13px;font-weight:700;color:var(--purple-soft)}
/* wedge: light panel that cuts up into the dark section */
.truth-wedge{
  margin-top:-216px;background:var(--light);color:#1c1917;position:relative;
  clip-path:polygon(53.5% 14.5%,100% 0,100% 100%,46.5% 100%);
  padding:76px 30px 0 0;min-height:289px;
}
.truth-wedge .container{width:auto;max-width:none;margin:0;padding:0;display:block}
.wedge-copy{text-align:left;margin-left:816px}
.wedge-copy .dash{display:block;width:38px;height:2px;background:var(--purple);margin-bottom:16px}
.wedge-copy p{font-family:var(--geist);font-weight:700;font-size:20px;line-height:1.32;color:#44403c;margin-bottom:10px}
.wedge-copy .serif-lg{font-size:87px;line-height:1;color:#1c1917}
.wedge-copy .serif-lg em{color:var(--purple-soft);font-style:italic}
.wedge-side{
  position:absolute;right:77px;top:49px;display:flex;flex-direction:column;align-items:flex-end;
  font-family:var(--geist);font-weight:700;font-size:15px;letter-spacing:.12em;color:#44403c;
}
.ws-text{writing-mode:vertical-rl;max-height:168px;text-align:left}
.wedge-side .down{color:var(--purple);font-size:16px;line-height:1;margin-top:1px;animation:bounceDown 1.8s ease-in-out infinite;display:inline-block}
@keyframes bounceDown{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}

/* ============ FIVE AREAS ============ */
.areas{padding:120px 0}
.areas-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:50px;align-items:start}
.areas-copy .display-xl{color:var(--ink);margin-bottom:26px}
.lead{color:var(--mut-l);font-size:16px;max-width:420px;margin-bottom:34px}
.line-before{position:relative;padding-top:18px}
.line-before::before{content:"";position:absolute;top:0;left:0;width:56px;height:2px;background:var(--purple)}
.areas-wheel{position:relative;height:642px;margin-top:-64px}
.wheel-frame{position:absolute;left:calc(50% - 23px);top:0;width:642px;height:642px;transform:translateX(-50%)}
.wheel-hub{
  position:absolute;left:321px;top:321px;transform:translate(-50%,-50%);
  width:138px;height:138px;border-radius:50%;z-index:3;
  background:var(--white);
  box-shadow:0 0 0 1px #eee9f7,0 18px 44px rgba(63,29,120,.14);
  display:flex;align-items:center;justify-content:center;
}
.hub-core{
  width:102px;height:102px;border-radius:50%;overflow:hidden;
  box-shadow:0 12px 30px rgba(114,0,220,.35);
  animation:hubPulse 4s ease-in-out infinite;
}
@keyframes hubPulse{0%,100%{box-shadow:0 12px 30px rgba(114,0,220,.35)}50%{box-shadow:0 12px 42px rgba(114,0,220,.55)}}
.hub-core img{width:100%;height:100%;object-fit:cover}
.petal{position:absolute;inset:0;z-index:1}
.petal::before{
  content:"";position:absolute;inset:0;background:center/100% 100% no-repeat;
  filter:drop-shadow(0 14px 26px rgba(63,29,120,.07));
  transition:filter .35s ease,transform .35s ease;
}
.petal:hover{z-index:2}
.petal:hover::before{filter:drop-shadow(0 20px 36px rgba(114,0,220,.18))}
.petal-in{
  position:absolute;width:126px;transform:translate(-50%,-50%);
  display:flex;flex-direction:column;align-items:center;text-align:center;
}
.petal-body::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 642 642'%3E%3Cpath d='M284.9,200.3 L197.1,64.3 A285,285 0 0 1 444.9,64.3 L357.1,200.3 A126,126 0 0 0 284.9,200.3 Z' fill='%23e6def7' stroke='%23e6def7' stroke-width='74' stroke-linejoin='round'/%3E%3Cpath d='M284.9,200.3 L197.1,64.3 A285,285 0 0 1 444.9,64.3 L357.1,200.3 A126,126 0 0 0 284.9,200.3 Z' fill='%23fff' stroke='%23fff' stroke-width='72' stroke-linejoin='round'/%3E%3C/svg%3E")}
.petal-body .petal-in{left:321px;top:113px}
.petal-mind::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 642 642'%3E%3Cpath d='M424.7,249.4 L526.8,123.9 A285,285 0 0 1 603.4,359.5 L447.0,318.0 A126,126 0 0 0 424.7,249.4 Z' fill='%23e6def7' stroke='%23e6def7' stroke-width='74' stroke-linejoin='round'/%3E%3Cpath d='M424.7,249.4 L526.8,123.9 A285,285 0 0 1 603.4,359.5 L447.0,318.0 A126,126 0 0 0 424.7,249.4 Z' fill='%23fff' stroke='%23fff' stroke-width='72' stroke-linejoin='round'/%3E%3C/svg%3E")}
.petal-mind .petal-in{left:519px;top:257px}
.petal-money::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 642 642'%3E%3Cpath d='M421.1,397.5 L572.1,455.8 A285,285 0 0 1 371.7,601.5 L362.8,439.9 A126,126 0 0 0 421.1,397.5 Z' fill='%23e6def7' stroke='%23e6def7' stroke-width='74' stroke-linejoin='round'/%3E%3Cpath d='M421.1,397.5 L572.1,455.8 A285,285 0 0 1 371.7,601.5 L362.8,439.9 A126,126 0 0 0 421.1,397.5 Z' fill='%23fff' stroke='%23fff' stroke-width='72' stroke-linejoin='round'/%3E%3C/svg%3E")}
.petal-money .petal-in{left:443px;top:489px}
.petal-looks::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 642 642'%3E%3Cpath d='M279.2,439.9 L270.3,601.5 A285,285 0 0 1 69.9,455.8 L220.9,397.5 A126,126 0 0 0 279.2,439.9 Z' fill='%23e6def7' stroke='%23e6def7' stroke-width='74' stroke-linejoin='round'/%3E%3Cpath d='M279.2,439.9 L270.3,601.5 A285,285 0 0 1 69.9,455.8 L220.9,397.5 A126,126 0 0 0 279.2,439.9 Z' fill='%23fff' stroke='%23fff' stroke-width='72' stroke-linejoin='round'/%3E%3C/svg%3E")}
.petal-looks .petal-in{left:199px;top:489px}
.petal-life::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 642 642'%3E%3Cpath d='M195.0,318.0 L38.6,359.5 A285,285 0 0 1 115.2,123.9 L217.3,249.4 A126,126 0 0 0 195.0,318.0 Z' fill='%23e6def7' stroke='%23e6def7' stroke-width='74' stroke-linejoin='round'/%3E%3Cpath d='M195.0,318.0 L38.6,359.5 A285,285 0 0 1 115.2,123.9 L217.3,249.4 A126,126 0 0 0 195.0,318.0 Z' fill='%23fff' stroke='%23fff' stroke-width='72' stroke-linejoin='round'/%3E%3C/svg%3E")}
.petal-life .petal-in{left:123px;top:257px}
.a-icon{
  display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;
  background:#f0e9fc;margin-bottom:22px;transition:transform .3s ease,background .3s ease;
}
.a-icon img{width:20px;height:20px}
.petal:hover .a-icon{transform:scale(1.1);background:#e6dafb}
.petal h3{
  font-family:var(--geist);font-weight:900;font-size:20px;color:var(--ink);
  padding-bottom:10px;margin-bottom:10px;position:relative;
}
.petal h3::after{content:"";position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:18px;height:2px;background:var(--purple-light)}
.petal p{font-family:var(--geist);font-size:13px;color:var(--mut-l);line-height:1.5}

/* ============ PHASES ============ */
.phases{background:var(--black);padding:71px 0 93px}
.phases-head{display:grid;grid-template-columns:670px 1fr;gap:50px;align-items:start;margin-bottom:0}
.phases .eyebrow{font-size:17px;letter-spacing:.2em}
.phases-head h2{font-size:109px;line-height:103px;letter-spacing:-.028em;margin-top:2px}
.phases-head h2 .serif-accent{font-size:1.073em}
.ph-tag{font-family:var(--geist);font-size:13px;font-weight:700;letter-spacing:.28em;color:var(--mut-d);margin-top:16px}
.phases-intro{padding-top:58px}
.pi-a{font-size:24px;line-height:1.15;margin-bottom:0}
.pi-b{color:var(--purple);font-size:54px;line-height:1.1;margin-bottom:0}
.pi-c{font-family:var(--geist);font-size:15px;line-height:1.75;color:var(--mut-d);max-width:none;margin-top:35px}
/* timeline: dim at the ends, purple through the middle; only the inner dots are filled */
.timeline{
  position:relative;height:2px;margin:58px 0 0;
  background:linear-gradient(90deg,rgba(255,255,255,.16),rgba(143,85,255,.96) 50%,rgba(255,255,255,.05));
}
.tl-dot{position:absolute;top:-4px;width:10px;height:10px;border-radius:50%;background:var(--purple)}
.tl-dot:nth-child(1),.tl-dot:nth-child(4){background:transparent;border:1px solid rgba(255,255,255,.38)}
.tl-dot:nth-child(1){left:0}
.tl-dot:nth-child(2){left:27.97%}
.tl-dot:nth-child(3){left:52.81%}
.tl-dot:nth-child(4){left:89.84%}
.phases-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;margin-top:58px}
.phase{transition:transform .35s ease}
.phase:hover{transform:translateY(-6px)}
.phase:hover .ph-num{color:var(--purple);-webkit-text-stroke:0}
.ph-head{display:flex;align-items:center;gap:16px}
.ph-num{font-family:var(--disp);font-weight:900;font-size:63px;line-height:.85;color:transparent;-webkit-text-stroke:1.5px rgba(255,255,255,.42);transition:color .35s ease}
.ph-titles{padding-top:2px}
.phase h3{font-family:var(--geist);font-weight:800;font-size:21px;letter-spacing:.04em;margin:0 0 1px}
.ph-sub{font-family:var(--serif);font-style:italic;font-size:16px;color:var(--mut-d);margin:0}
.ph-desc{font-family:var(--geist);font-size:13.5px;color:#d5d4dd;margin:33px 0 0;line-height:1.55}
.ph-list{margin-top:20px;padding-top:26px;border-top:1px solid rgba(255,255,255,.12)}
.ph-list li{
  font-family:var(--geist);font-size:13px;line-height:1.15;color:var(--mut-d);padding:0 0 12px;
  transition:color .25s ease,padding-left .25s ease;
}
.ph-list li:last-child{padding-bottom:0}
.ph-list li::before{content:"\2192  ";color:var(--purple);font-weight:700}
.ph-list li:hover{color:var(--white);padding-left:6px}

/* ============ LEARN EXECUTE REPORT ============ */
.ler{padding:110px 0}
.ler-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:70px;align-items:center}
.ler-copy .display-lg{color:var(--ink);margin-bottom:22px}
.ler-live{font-family:'DM Sans',sans-serif;font-size:30px;color:var(--ink);margin-bottom:12px}
.ler-live em{color:var(--purple);font-style:italic}
.ler-sub{font-family:'DM Sans',sans-serif;font-size:20px;color:#62627a;max-width:400px}
.ler-steps-head{font-family:'DM Sans',sans-serif;font-weight:900;font-size:15px;letter-spacing:.16em;color:#62627a;margin-bottom:28px;border-bottom:2px solid var(--purple);display:inline-block;padding-bottom:8px}
.ler-row{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
.ler-step{padding:10px 26px;border-left:1px solid #e5e2ec;transition:background .3s ease,transform .3s ease}
.ler-step:first-child{border-left:0;padding-left:0}
.ler-step:hover{transform:translateY(-6px)}
.ls-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.ls-icon{
  width:48px;height:48px;border-radius:50%;background:var(--white);border:1px solid #e5e2ec;
  display:inline-flex;align-items:center;justify-content:center;font-size:19px;box-shadow:var(--shadow-card);
  transition:transform .3s ease,border-color .3s ease;
}
.ler-step:hover .ls-icon{transform:scale(1.1) rotate(-6deg);border-color:var(--purple-light)}
.ls-num{font-family:var(--disp);font-weight:800;font-size:44px;color:transparent;-webkit-text-stroke:1.5px #d8d2e6}
.ler-step h3{font-family:var(--disp);font-weight:800;font-size:28px;color:var(--ink);margin-bottom:10px;border-bottom:2px solid var(--purple);display:inline-block;padding-bottom:6px}
.ler-step p{font-family:'DM Sans',sans-serif;font-size:14px;color:#62627a;line-height:1.6}

/* ============ WEEK ============ */
.week{background:var(--black);padding:120px 0}
.week-grid{display:grid;grid-template-columns:280px 1fr;gap:50px;align-items:center}
.week-copy .display-lg{margin-bottom:14px}
.accent-serif{margin-bottom:30px}
.accent-serif em{color:var(--purple);font-style:italic}
.week-cards{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.day-card{
  background:#0b0a12;border:1px solid var(--line);border-radius:12px;padding:16px 14px;
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.day-card:hover{transform:translateY(-8px);border-color:rgba(143,85,255,.6);box-shadow:0 18px 40px rgba(143,85,255,.15)}
.day-card.is-featured{border-color:var(--purple);box-shadow:0 0 0 1px var(--purple),0 12px 32px rgba(143,85,255,.2)}
.dc-day{font-family:var(--geist);font-size:10px;font-weight:800;letter-spacing:.16em;color:var(--mut-d);margin-bottom:2px}
.dc-num{font-family:'Instrument Serif',serif;font-size:36px;color:var(--purple);line-height:1.1;display:block;margin-bottom:10px}
.day-card img{width:100%;aspect-ratio:2/3;object-fit:cover;border-radius:6px;filter:grayscale(1);transition:filter .4s ease,transform .4s ease;margin-bottom:12px}
.day-card:hover img{filter:grayscale(0)}
.day-card h3{font-family:var(--disp);font-weight:800;font-size:19px;letter-spacing:.03em;border-bottom:2px solid var(--purple);display:inline-block;padding-bottom:4px;margin-bottom:8px}
.day-card p{font-family:var(--geist);font-size:11.5px;color:var(--mut-d);line-height:1.55}
.day-card.is-featured p{color:#d5d4dd}

/* ============ SHIFT / TRANSFORMATION ============ */
.shift{padding:120px 0;background:#fbfaff}
.shift-grid{display:grid;grid-template-columns:1.05fr .62fr .95fr .62fr;gap:36px;align-items:center;margin-bottom:56px}
.shift-copy .display-lg{color:#0d0d0d;margin-bottom:20px}
.shift-lead{font-family:var(--geist);font-size:19px;font-weight:500;color:#0d0d0d;margin-bottom:10px}
.shift-sub{font-family:var(--geist);font-size:14px;color:#57565c;margin-bottom:26px;max-width:380px}
.shift-card{
  display:flex;gap:14px;align-items:center;background:var(--white);border:1px solid #eceaf2;border-radius:12px;
  padding:16px 20px;box-shadow:var(--shadow-card);max-width:380px;transition:transform .3s ease,box-shadow .3s ease;
}
.shift-card:hover{transform:translateY(-4px);box-shadow:0 18px 36px rgba(114,0,220,.12)}
.sc-icon{width:40px;height:40px;border-radius:50%;background:#f3edff;color:var(--purple-deep);display:inline-flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.shift-card strong{font-family:'Unbounded',sans-serif;font-size:11px;font-weight:800;letter-spacing:.08em;color:var(--purple-deep)}
.shift-card p{font-family:var(--geist);font-size:13px;color:#57565c}
.sb-head,.sa-head{font-family:'Unbounded',sans-serif;font-size:13px;font-weight:800;letter-spacing:.1em;color:#57565c;margin-bottom:12px}
.sa-head.accent,.shift-after .sa-head{color:var(--purple-deep)}
.x-list li,.check-list li{
  font-family:var(--geist);font-size:13px;padding:9px 0;border-bottom:1px solid #edeaf4;color:#57565c;
}
.x-list li::before{content:"× ";color:#b3b1bd;font-weight:700;margin-right:6px}
.check-list li{color:#0d0d0d;font-weight:600}
.check-list li::before{content:"✓ ";color:var(--purple-deep);font-weight:700;margin-right:6px}
.shift-visual img{border-radius:18px;box-shadow:0 24px 60px rgba(13,12,16,.25);transition:transform .5s ease}
.shift-visual:hover img{transform:scale(1.02)}
.shift-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;background:var(--white);
  border:1px solid #eceaf2;border-radius:16px;padding:26px 30px;box-shadow:var(--shadow-card);
}
.ss-item{display:flex;gap:14px;align-items:center}
.ss-icon{width:42px;height:42px;border-radius:50%;background:#f3edff;color:var(--purple-deep);display:inline-flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.ss-item strong{font-family:'Unbounded',sans-serif;font-size:11px;font-weight:700;color:#0d0d0d;letter-spacing:.04em}
.ss-big{font-style:normal;font-size:20px;font-weight:800;color:var(--purple-deep);margin-right:4px}
.ss-item p{font-family:var(--geist);font-size:12px;color:#57565c}
.shift-quote{
  text-align:center;margin-top:44px;font-family:'Unbounded',sans-serif;font-size:13px;font-weight:800;
  letter-spacing:.14em;color:#57565c;
}
.shift-quote span{border-bottom:2px solid var(--purple);padding-bottom:3px}

/* ============ YOUTUBE ============ */
.yt{background:var(--black);padding:120px 0 0}
.yt-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:60px;align-items:center;margin-bottom:64px}
.yt-copy .display-lg{margin-bottom:22px}
.yt-sub{font-family:var(--geist);font-size:17px;color:var(--mut-d);max-width:440px;margin-bottom:30px}
.btn-yt{border-radius:10px}
.yt-featured{
  position:relative;display:block;border-radius:16px;overflow:hidden;border:1px solid rgba(143,85,255,.4);
  box-shadow:0 24px 60px rgba(143,85,255,.15);transition:transform .4s ease,box-shadow .4s ease;
}
.yt-featured:hover{transform:translateY(-6px);box-shadow:0 30px 70px rgba(143,85,255,.28)}
.yt-featured img{width:100%;transition:transform .6s ease}
.yt-featured:hover img{transform:scale(1.04)}
.play-badge{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:72px;height:72px;border-radius:50%;background:rgba(143,85,255,.92);color:var(--white);
  display:flex;align-items:center;justify-content:center;font-size:24px;padding-left:5px;
  box-shadow:0 0 0 0 rgba(143,85,255,.5);animation:playPulse 2.2s ease-out infinite;
  transition:transform .3s ease;
}
.yt-featured:hover .play-badge,.pv-thumb:hover .play-badge{transform:translate(-50%,-50%) scale(1.12)}
@keyframes playPulse{0%{box-shadow:0 0 0 0 rgba(143,85,255,.45)}100%{box-shadow:0 0 0 26px rgba(143,85,255,0)}}
.yt-latest-head{font-family:var(--geist);font-weight:800;font-size:17px;letter-spacing:.06em;color:#aaa;margin-bottom:20px}
.yt-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:70px}
.yt-thumb{
  position:relative;overflow:hidden;width:100%;padding:0;margin:0;cursor:pointer;
  aspect-ratio:16/10;border-radius:12px;background:linear-gradient(140deg,#1c1b22,#131218);
  border:1px solid var(--line);display:flex;align-items:center;justify-content:center;
  transition:transform .35s ease,border-color .35s ease;font:inherit;
}
.yt-thumbs iframe{
  width:100%;aspect-ratio:16/10;border-radius:12px;border:1px solid var(--line);
}
.yt-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.yt-thumb span{
  position:relative;z-index:1;
  width:46px;height:46px;border-radius:50%;background:rgba(143,85,255,.15);color:var(--purple-light);
  display:flex;align-items:center;justify-content:center;font-size:15px;padding-left:3px;transition:background .3s ease,color .3s ease;
  backdrop-filter:blur(2px);
}
.yt-thumb:hover{transform:translateY(-6px);border-color:rgba(143,85,255,.5)}
.yt-thumb:hover span{background:var(--purple);color:var(--white)}
.yt-stats{background:#120c22;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:26px 0}
.yt-stats-inner{display:flex;align-items:center;gap:44px;flex-wrap:wrap}
.ys-item{display:flex;align-items:center;gap:14px}
.ys-icon{width:40px;height:40px;border-radius:50%;background:rgba(143,85,255,.16);color:var(--purple-light);display:inline-flex;align-items:center;justify-content:center;font-size:15px}
.ys-item strong{font-family:'Archivo Narrow',sans-serif;font-size:26px;font-weight:700;display:block;line-height:1.1}
.ys-item p{font-family:var(--geist);font-size:10px;font-weight:700;letter-spacing:.12em;color:var(--mut-d)}
.ys-more{margin-left:auto;text-align:right}
.ys-more p{font-family:var(--geist);font-size:13px;color:var(--mut-d);margin-bottom:4px}
.ys-more a{font-family:var(--geist);font-weight:700;font-size:18px;color:var(--purple);transition:color .3s ease}
.ys-more a:hover{color:var(--purple-light)}
.ys-more a:hover .arr{transform:translateX(5px)}

/* ============ STORIES ============ */
.stories{padding:120px 0 205px;background:linear-gradient(180deg,#fff 0%,#f7f3ff 100%)}
.stories-head{text-align:center;margin-bottom:56px}
.stories-head .display-lg{color:#111827}
.stories-sub{font-size:19px;color:var(--gray);margin-top:16px}
.stories-sub strong{color:var(--purple)}
.stories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.stories-col:nth-child(2){margin-top:44px}
.t-card{
  background:var(--white);border:1px solid #eee9f7;border-radius:16px;padding:26px;margin-bottom:24px;
  box-shadow:0 6px 20px rgba(20,10,50,.05);transition:transform .35s ease,box-shadow .35s ease;
}
.t-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(114,0,220,.12)}
.tq{font-family:var(--serif);font-size:44px;line-height:.6;color:var(--purple);display:block;margin-bottom:16px}
.t-card p{font-size:14.5px;color:#0a1f44;line-height:1.65;margin-bottom:20px}
.t-card footer{display:flex;align-items:center;gap:12px}
.t-avatar{
  width:40px;height:40px;border-radius:50%;background:#f0e7ff;color:var(--purple-deep);
  display:inline-flex;align-items:center;justify-content:center;font-weight:700;font-size:16px;flex-shrink:0;
}
.t-avatar.av-img{background:linear-gradient(135deg,#c9b3f5,#8f55ff);color:#fff}
.t-card footer strong{font-size:15px;color:#0a1f44;display:block}
.stars{color:#f5a623;font-size:11px;letter-spacing:2px}
.stories .container{position:relative}
/* the CTA floats over the foot of the card grid, which fades out behind it */
.stories-fade{
  position:absolute;left:0;right:0;bottom:0;height:440px;z-index:2;pointer-events:none;
  display:flex;align-items:flex-end;justify-content:center;padding-bottom:130px;
  background:linear-gradient(180deg,rgba(247,243,255,0) 0%,#f7f3ff 72%);
}
.stories-fade .btn{
  pointer-events:auto;width:331px;height:77px;padding:0;justify-content:center;
  font-size:22px;letter-spacing:.01em;border-radius:8px;
  background:var(--purple-deep);box-shadow:0 18px 46px rgba(114,0,220,.35);
}
.stories-fade .btn:hover{background:#8118e8}

/* ============ PROOF ============ */
.proof{background:var(--black);padding:120px 0}
.proof-grid{display:grid;grid-template-columns:486px 1fr;gap:60px;align-items:center;margin-bottom:70px}
.proof-copy .display-lg{margin-bottom:22px}
.bigger{font-size:1.3em}
.proof-sub{font-size:15px;color:var(--mut-d);max-width:430px;margin-bottom:30px;line-height:1.7}
.proof-feats{display:grid;grid-template-columns:1fr 1fr;gap:18px;max-width:430px}
.proof-feats li{display:flex;gap:12px;align-items:flex-start}
.proof-feats li span{
  width:36px;height:36px;border-radius:10px;background:rgba(143,85,255,.14);display:inline-flex;
  align-items:center;justify-content:center;font-size:15px;flex-shrink:0;
}
.proof-feats strong{font-size:13px;display:block}
.proof-feats p{font-size:11px;color:var(--mut-d)}
.pv-thumb{position:relative;display:block;border-radius:16px;overflow:hidden;box-shadow:0 24px 60px rgba(143,85,255,.12);transition:transform .4s ease}
.pv-thumb:hover{transform:translateY(-5px)}
.pv-thumb img{width:100%}
.pv-bar{
  margin-top:20px;display:flex;align-items:center;justify-content:flex-start;gap:14px;
  background:#0f0e15;border:1px solid var(--line);border-radius:12px;padding:19px 26px;
  font-size:16.5px;font-weight:700;letter-spacing:.04em;transition:border-color .3s ease,background .3s ease;
}
.pv-bar:hover{border-color:var(--purple);background:#141020}
.pv-bar:hover .arr{transform:translateX(5px)}
.pv-yt{color:#f00;font-size:16px;display:inline-flex;align-items:center}
.pv-bar .arr{margin-left:auto;color:var(--purple)}
.proof-ba{display:grid;grid-template-columns:127px 464px 197px 420px;gap:24px;align-items:center}
.ba-head{font-size:13px;font-weight:800;letter-spacing:.12em;color:var(--mut-d);margin-bottom:8px}
.ba-head.accent{color:var(--purple)}
.ba-list li{font-size:13px;font-weight:500;line-height:1.35;padding:5px 0}
.ba-list li::before{content:"▸ ";color:var(--mut-d);margin-right:6px}
.ba-list.after li::before{color:var(--purple)}
.ba-photos{display:flex;align-items:center;gap:21px;justify-content:center}
.ba-photos figure{border-radius:14px;overflow:hidden;flex:1;transition:transform .4s ease}
.ba-photos figure:hover{transform:scale(1.03)}
.ba-arrow{
  width:40px;height:40px;border-radius:50%;background:rgba(143,85,255,.2);color:var(--purple-light);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:17px;
  animation:nudge 2s ease-in-out infinite;
}
@keyframes nudge{0%,100%{transform:translateX(0)}50%{transform:translateX(5px)}}
.ba-cta{
  background:radial-gradient(120% 120% at 80% 0%,rgba(143,85,255,.16),transparent 60%),#0f0e15;
  border:1px solid var(--line);border-radius:18px;padding:32px;
}
.bc-eyebrow{font-size:11px;font-weight:800;letter-spacing:.18em;color:var(--mut-d);margin-bottom:10px}
.ba-cta h3{font-family:var(--disp);font-weight:800;font-size:36px;line-height:1;margin-bottom:14px}
.bc-sub{font-size:13px;color:var(--mut-d);margin-bottom:22px;line-height:1.6}
.ba-cta .btn-pill{display:flex;width:100%;height:48px;padding:0 26px;justify-content:flex-start;font-size:14px}
.ba-cta .btn-pill .arr{margin-left:auto}

/* ============ FOR YOU ============ */
.foryou{background:#080710;padding:62px 0 0;overflow:hidden}
.foryou-grid{position:relative;display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;align-items:start;padding-bottom:67px}
.foryou-copy{min-height:0}
.foryou-copy>*:not(.fy-portrait){position:relative;z-index:1}
.fy-sub{font-size:15px;color:var(--mut-d);max-width:300px;margin-bottom:26px;line-height:1.7}
.fy-sign{font-family:'Oooh Baby',cursive;font-size:44px;color:var(--purple)}
.fy-portrait{
  position:absolute;left:187px;bottom:0;width:453px;max-width:none;pointer-events:none;z-index:0;
  mask-image:linear-gradient(to bottom,#000 75%,transparent);-webkit-mask-image:linear-gradient(to bottom,#000 75%,transparent);
}
.fy-head{font-size:22px;font-weight:800;color:var(--purple);margin-bottom:22px;letter-spacing:.02em}
.fy-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.fy-card{
  display:flex;gap:14px;align-items:flex-start;background:#0e0d15;border:1px solid var(--line);
  border-radius:12px;padding:18px;transition:transform .3s ease,border-color .3s ease,background .3s ease;
}
.fy-card:hover{transform:translateY(-5px);border-color:rgba(143,85,255,.55);background:#12101c}
.fy-card>span{
  width:38px;height:38px;border-radius:10px;background:rgba(143,85,255,.14);display:inline-flex;
  align-items:center;justify-content:center;font-size:15px;flex-shrink:0;
}
.fy-card strong{font-size:12.5px;letter-spacing:.03em;display:block;margin-bottom:5px}
.fy-card p{font-size:12px;color:var(--mut-d);line-height:1.55}
.notforyou{background:linear-gradient(180deg,#150a2b,#1c0f38);border-top:1px solid rgba(143,85,255,.25);padding:64px 0 70px}
.nf-title{text-align:center;font-family:var(--disp);font-weight:800;font-size:30px;letter-spacing:.03em;color:var(--purple);margin-bottom:44px}
.nf-title span{color:var(--white)}
.nf-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.nf-item{text-align:center;padding:0 16px;border-left:1px solid rgba(143,85,255,.18)}
.nf-item:first-child{border-left:0}
.nf-x{
  width:46px;height:46px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px;
  transition:transform .3s ease;
}
.nf-x img{width:100%;height:100%}
.nf-item:hover .nf-x{transform:rotate(90deg)}
.nf-item strong{display:block;font-size:12.5px;letter-spacing:.04em;margin-bottom:8px}
.nf-item p{font-size:11.5px;color:var(--mut-d);line-height:1.55}

/* ============ FAQ ============ */
.faq{padding:120px 0 90px}
.faq-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;margin-bottom:60px}
.faq-copy .display-lg{color:#111827;margin-bottom:24px}
.faq-copy .eyebrow{text-transform:uppercase}
.faq-sub{font-size:15px;color:var(--gray);max-width:320px;margin-bottom:34px}
.faq-help{
  display:flex;gap:14px;align-items:flex-start;background:var(--white);border:1px solid #eee9f7;border-radius:14px;
  padding:20px;box-shadow:var(--shadow-card);max-width:340px;
}
.fh-icon{width:40px;height:40px;border-radius:50%;background:#f3edff;display:inline-flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}
.faq-help strong{font-size:13px;color:var(--purple);display:block;margin-bottom:5px}
.faq-help p{font-size:12.5px;color:var(--gray)}
.faq-item{
  background:var(--white);border:1px solid #eee9f7;border-radius:12px;margin-bottom:14px;
  transition:border-color .3s ease,box-shadow .3s ease;overflow:hidden;
}
.faq-item:hover{border-color:#d9c9ff}
.faq-item[open]{border-color:var(--purple);box-shadow:0 12px 30px rgba(114,0,220,.08)}
.faq-item summary{
  display:flex;align-items:center;gap:16px;padding:19px 22px;cursor:pointer;list-style:none;
  font-size:15px;font-weight:600;color:#111827;user-select:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.fq-num{font-size:14px;font-weight:700;color:var(--purple)}
.fq-toggle{margin-left:auto;position:relative;width:14px;height:14px;flex-shrink:0}
.fq-toggle::before,.fq-toggle::after{content:"";position:absolute;background:#9b8fb3;transition:transform .3s ease,opacity .3s ease}
.fq-toggle::before{left:0;top:6px;width:14px;height:2px}
.fq-toggle::after{left:6px;top:0;width:2px;height:14px}
.faq-item[open] .fq-toggle::after{transform:rotate(90deg);opacity:0}
.fq-body{padding:0 22px 20px 52px}
.fq-body p{font-size:13.5px;color:var(--gray);line-height:1.7}
.faq-banner{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  background:var(--white);border:1px solid #eee9f7;border-radius:16px;padding:24px 30px;box-shadow:var(--shadow-card);
}
.fb-left{display:flex;align-items:center;gap:16px}
.fb-icon{
  width:46px;height:46px;border-radius:50%;background:#f3edff;color:var(--purple-deep);
  display:inline-flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;
  animation:spinSlow 9s linear infinite;
}
@keyframes spinSlow{to{transform:rotate(360deg)}}
.fb-left strong{font-size:17px;color:#111827;display:block}
.fb-left p{font-size:13px;color:var(--gray)}

/* ============ FINAL ============ */
.final{background:radial-gradient(900px 500px at 85% 20%,rgba(143,85,255,.14),transparent 60%),var(--black);padding:130px 0 0;overflow:hidden}
.final-grid{position:relative;display:block;padding-bottom:70px}
.final-copy{position:relative;z-index:2;max-width:640px}
.final-sub{font-size:15px;color:var(--mut-d);max-width:460px;margin:0 0 34px;line-height:1.7}
.final-card{
  background:#0e0d15;border:1px solid rgba(143,85,255,.35);border-radius:18px;padding:30px;
  max-width:619px;box-shadow:0 24px 60px rgba(143,85,255,.12);
  transition:transform .35s ease,box-shadow .35s ease;
}
.final-card:hover{transform:translateY(-4px);box-shadow:0 30px 70px rgba(143,85,255,.2)}
.fc-eyebrow{font-size:11px;font-weight:700;letter-spacing:.18em;color:var(--purple);margin-bottom:10px}
.final-card h3{font-family:var(--disp);font-weight:900;font-size:32px;line-height:1.02;margin-bottom:20px}
.fc-note{margin-top:14px;font-size:12px;color:var(--mut-d);text-align:center}
.fc-note span{color:var(--white);font-weight:700}
/* the portrait is a full-bleed cutout, clipped by the section, with the
   quote floating on top of it - not a rounded card */
.final-visual{position:absolute;right:24px;bottom:0;width:700px;z-index:1;pointer-events:none}
.final-visual img{display:block;width:100%;border-radius:0}
.final-glow{display:none}
.final-quote{
  position:absolute;right:24px;bottom:154px;width:240px;z-index:3;
  display:flex;gap:12px;align-items:flex-start;
  background:#15111d;border:1px solid rgba(143,85,255,.18);border-radius:14px;padding:18px;
}
.fqm{font-family:var(--disp);font-weight:900;font-size:34px;line-height:.8;color:var(--purple)}
.final-quote p{font-size:13px;font-weight:600;font-style:italic;margin-bottom:6px;line-height:1.45}
.parisienne{font-family:'Parisienne',cursive;font-size:22px;color:var(--purple-light)}
.final-feats{border-top:1px solid var(--line);background:#0a0910;padding:34px 0}
.ff-inner{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
.ff-item{display:flex;gap:14px;align-items:flex-start}
.ff-item>span{
  width:44px;height:44px;border-radius:12px;background:rgba(143,85,255,.14);display:inline-flex;
  align-items:center;justify-content:center;font-size:17px;flex-shrink:0;transition:transform .3s ease,background .3s ease;
}
.ff-item:hover>span{transform:scale(1.1);background:rgba(143,85,255,.28)}
.ff-item strong{font-family:var(--disp);font-weight:800;font-size:20px;letter-spacing:.03em;display:block;margin-bottom:4px}
.ff-item p{font-size:13px;color:var(--mut-d)}

/* ============ FOOTER ============ */
.footer{background:#070609;border-top:1px solid var(--line);padding:70px 0 0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:44px;padding-bottom:54px}
.f-tag{font-size:13px;color:var(--mut-d);max-width:300px;margin-top:18px;line-height:1.7}
.f-col h4{font-family:'Archivo Narrow',sans-serif;font-size:17px;font-weight:700;margin-bottom:18px}
.f-col a{display:block;font-size:14.5px;color:#c9c8d4;padding:6px 0;transition:color .25s ease,padding-left .25s ease}
.f-col a:hover{color:var(--purple-light);padding-left:6px}
.store-badge{
  display:flex !important;align-items:center;gap:13px;border:1px solid var(--line);border-radius:10px;
  padding:11px 18px !important;margin-bottom:12px;width:100%;max-width:216px;background:#0d0c12;
  transition:border-color .3s ease,transform .3s ease;
}
.store-badge:hover{border-color:var(--purple);transform:translateY(-3px);padding-left:18px !important;color:inherit !important}
.sb-icon{display:inline-flex;align-items:center;justify-content:center;width:26px;flex-shrink:0}
.sb-icon svg{width:24px;height:26px}
.sb-text{display:flex;flex-direction:column;line-height:1.2}
.sb-text small{font-size:9px;letter-spacing:.08em;color:var(--mut-d)}
.sb-text strong{font-size:15px}
@media (max-width:1390px){
  .hero-inner{grid-template-columns:1.15fr .85fr}
  .hero-visual{display:flex;justify-content:center}
  .hero-portrait{width:min(560px,100%);max-width:100%}
  /* truth: the design's fixed offsets only hold at the 1440 design width */
  .truth>.container{padding:0 4.4vw}
  .truth-visual{margin-top:0}
  .truth-portrait{width:100%;max-width:420px;margin-left:0}
  .truth-wedge{margin-top:-80px}
  .areas-wheel{height:566px;margin-top:-56px}
  .wheel-frame{transform:translateX(-50%) scale(.87);transform-origin:top center}
  .truth-copy h2{font-size:clamp(44px,5.6vw,77px);line-height:1.09}
  .truth-why{font-size:clamp(26px,3.2vw,35px)}
  .wedge-copy .serif-lg{font-size:clamp(46px,6.2vw,87px)}
  .wedge-copy p{font-size:clamp(16px,1.6vw,20px)}
  .wedge-copy{margin-left:57%}
  .wedge-side{right:4.4vw}
  /* phases: fixed design-width values go fluid */
  .phases-head{grid-template-columns:1.2fr 1fr}
  .phases-head h2{font-size:clamp(56px,7.6vw,109px);line-height:1.06}
  .pi-b{font-size:clamp(30px,3.8vw,54px)}
  .proof-grid{grid-template-columns:1fr 1.35fr}
  .pv-bar{font-size:14px;padding:16px 20px}
  .proof-ba{grid-template-columns:.5fr 1.3fr .5fr 1.2fr;gap:24px}
  /* keep the portrait tied to the copy column once the grid narrows */
  .foryou-copy{position:relative}
  .fy-portrait{left:auto;right:-40px;width:min(420px,92%)}
  .final-visual{right:-40px;width:min(560px,52%)}
  .final-quote{right:-20px;width:220px}
  /* the 152px spacer only fits at the 1440 design width */
  .hero{min-height:min(100svh,820px)}
  .nav-cta{margin-left:0}
  .nav-links{gap:26px}
  .brand-text strong,.brand-text small,.nav-links a{white-space:nowrap}
}

@media (max-width:600px){
  .store-badge{max-width:250px}
}
.footer-bottom{
  border-top:1px solid var(--line);padding:22px 0;display:flex;align-items:center;
  justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.footer-bottom p{font-size:13px;color:var(--mut-d)}
.f-social{display:flex;gap:12px}
.f-social a{
  width:40px;height:40px;border-radius:50%;border:1px solid var(--line);display:flex;align-items:center;
  justify-content:center;color:var(--white);transition:all .3s ease;
}
.f-social a svg{width:19px;height:19px}
.f-social a:hover{border-color:var(--purple);color:var(--white);background:rgba(143,85,255,.15);transform:translateY(-3px)}

/* ============ RESPONSIVE ============ */
@media (max-width:1120px){
  .areas-grid{grid-template-columns:1fr;gap:30px}
  .areas-wheel{height:520px;margin-top:-50px}
  .wheel-frame{transform:translateX(-50%) scale(.8);transform-origin:top center}
  .week-cards{grid-template-columns:repeat(3,1fr)}
  .week-grid{grid-template-columns:1fr;gap:40px}
  .proof-ba{grid-template-columns:1fr 1fr;gap:28px}
  .ba-cta{grid-column:span 2}
  .nf-grid{grid-template-columns:repeat(3,1fr);row-gap:34px}
  .nf-item:nth-child(4){border-left:0}
  .shift-grid{grid-template-columns:1fr 1fr;gap:30px}
  .shift-copy{grid-column:span 2}
  .shift-visual{grid-column:span 2;max-width:520px;margin:0 auto}
  .shift-stats{grid-template-columns:1fr 1fr}
}
@media (max-width:900px){
  .nav-links{
    position:fixed;inset:0;background:#050408;
    flex-direction:column;justify-content:flex-start;padding-top:150px;gap:36px;
    opacity:0;pointer-events:none;transition:opacity .35s ease;
  }
  .nav-links.open{opacity:1;pointer-events:auto}
  .nav-links a{font-size:17px}
  .nav-cta{margin-left:0}
  .nav-toggle{display:flex;position:relative;z-index:110}
  .navbar .brand{position:relative;z-index:110}
  .nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle.open span:nth-child(2){opacity:0}
  .nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .hero{padding-top:120px;padding-bottom:60px}
  .hero-inner{grid-template-columns:1fr;gap:50px}
  .scroll-cue{position:static;margin-top:40px}
  .truth>.container{padding:0 5vw}
  .truth-grid{grid-template-columns:1fr;gap:44px}
  .truth-visual{max-width:380px;margin-top:0}
  .truth-portrait{width:100%;max-width:100%;margin-left:0}
  .truth-copy h2{font-size:clamp(32px,8.6vw,44px);line-height:1.12;margin-top:24px}
  .truth .eyebrow{font-size:14px;letter-spacing:.22em}
  .truth-why{font-size:clamp(22px,5.4vw,30px);line-height:1.15;margin-top:28px}
  .truth-note{margin-top:34px;flex-wrap:wrap;gap:22px}
  .tn-arrow{display:none}
  .wedge-copy{margin-left:0}
  .wedge-copy .serif-lg{font-size:clamp(40px,10vw,60px)}
  .truth-wedge{clip-path:polygon(0 30px,100% 0,100% 100%,0 100%);margin-top:20px;padding:70px 0 20px;min-height:0}
  .areas{padding:70px 0}
  .truth-wedge .container{padding:0 5vw}
  .wedge-side{display:none}
  .areas-grid{gap:50px}
  .areas-wheel{height:auto;margin-top:0}
  .wheel-frame{position:static;width:auto;height:auto;transform:none;display:grid;grid-template-columns:1fr 1fr;gap:14px}
  .wheel-hub{display:none}
  .petal{position:static;width:auto;height:auto;margin:0;transform:none;background:var(--white);border:1px solid #eceaf2;border-radius:18px;padding:26px 18px;box-shadow:var(--shadow-card)}
  .petal::before{display:none}
  .petal-in{position:static;width:auto;transform:none !important}
  .petal h3{font-size:19px}
  .petal p{font-size:13px}
  .phases-head{grid-template-columns:1fr;gap:26px}
  .phases-intro{padding-top:0}
  .phases .eyebrow{font-size:14px;letter-spacing:.22em}
  .ph-num{font-size:52px}
  .timeline{margin-top:44px}
  .phases-grid{grid-template-columns:1fr 1fr;gap:28px}
  .ler-grid{grid-template-columns:1fr;gap:50px}
  .ler-row{grid-template-columns:1fr;gap:26px}
  .ler-step{border-left:0;padding:0}
  .yt-grid{grid-template-columns:1fr;gap:44px}
  .yt-thumbs{grid-template-columns:repeat(2,1fr)}
  .ys-more{margin-left:0;text-align:left}
  .stories-grid{grid-template-columns:1fr 1fr}
  .stories-col:nth-child(3){display:none}
  .stories-fade{height:340px;padding-bottom:96px}
  .stories-fade .btn{width:min(331px,80vw);height:66px;font-size:19px}
  .proof-grid{grid-template-columns:1fr;gap:44px}
  .foryou-grid{grid-template-columns:1fr;gap:50px}
  .foryou-copy{min-height:0}
  .fy-portrait{position:static;width:min(380px,80%);margin-top:26px;mask-image:none;-webkit-mask-image:none}
  .faq-grid{grid-template-columns:1fr;gap:44px}
  .final-grid{padding-bottom:0}
  .final-visual{position:static;width:min(460px,100%);margin:34px auto 0;right:auto}
  .final-quote{position:static;width:auto;max-width:480px;margin-top:22px;right:auto}
  .final-copy{max-width:none}
  .ff-inner{grid-template-columns:1fr 1fr;gap:22px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
}
@media (max-width:600px){
  .hero-title{font-size:clamp(34px,10.5vw,54px)}
  .display-xl{font-size:clamp(38px,10vw,56px)}
  .display-lg{font-size:clamp(32px,8.8vw,48px)}
  .serif-xl{font-size:clamp(32px,8.6vw,44px)}
  .hero-sub{font-size:16px}
  .week-cards{grid-template-columns:1fr 1fr}
  .phases-grid{grid-template-columns:1fr}
  .fy-grid{grid-template-columns:1fr}
  .nf-grid{grid-template-columns:1fr;row-gap:30px}
  .nf-item{border-left:0;padding:0}
  .shift-grid{grid-template-columns:1fr}
  .shift-copy,.shift-visual{grid-column:auto}
  .shift-stats{grid-template-columns:1fr;padding:22px}
  .proof-ba{grid-template-columns:1fr}
  .ba-cta{grid-column:auto}
  .stories-grid{grid-template-columns:1fr}
  .stories-col:nth-child(2){margin-top:0}
  .yt-thumbs{grid-template-columns:1fr 1fr}
  .yt-stats-inner{gap:22px}
  .ff-inner{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .btn{padding:14px 22px;font-size:13px}
  .final-card{padding:24px}
  .fq-body{padding-left:22px}
}


/* ---- figma icon sizing ---- */
.ls-icon img{width:24px;height:24px}
.sc-icon img,.ss-icon img{width:20px;height:20px}
.ys-icon img{width:20px;height:20px}
.btn-yt img{width:22px;height:22px}
.pv-yt img{width:24px;height:24px}
.proof-feats li span img{width:18px;height:18px}
.fy-card>span img{width:19px;height:19px}
.fh-icon img,.fb-icon img{width:20px;height:20px}
.ff-item>span img{width:24px;height:24px}
.sb-icon img{width:24px;height:26px}
.pv-yt{display:inline-flex}
