/* =========================================================
   VALIA LIVE, design tokens
========================================================= */
:root{
  --blue:#003BFF;
  --purple:#7A00E0;
  --pink:#D8007A;
  --red:#F51C2C;
  --orange:#FF5C00;
  --yellow:#FFA800;

  --gradient-brand: linear-gradient(90deg, #003BFF 0%, #7A00E0 20%, #D8007A 40%, #F51C2C 60%, #FF5C00 80%, #FFA800 100%);

  --navy-950:#070A1A;
  --navy-900:#0B0F26;
  --navy-800:#141A3D;

  --ink:#14162B;
  --ink-soft:#4D5074;
  --paper:#FFFFFF;
  --paper-warm:#FBF7F3;
  --paper-tint:#F4F1FC;

  --radius-sm:10px;
  --radius-md:20px;
  --radius-lg:30px;

  --shadow-soft: 0 24px 64px -28px rgba(10,14,39,.4);
  --shadow-card: 0 14px 36px -20px rgba(10,14,39,.3);
  --shadow-purple: 0 20px 44px -18px rgba(122,0,224,.45);

  --font-display:'Sora', 'Inter', sans-serif;
  --font-body:'Inter', sans-serif;

  --maxw: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  line-height:1.6;
  font-size:17px;
}

h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  line-height:1.14;
  margin:0 0 .5em;
  letter-spacing:-.015em;
  color:var(--ink);
  text-wrap:balance;
}
h1{ font-size:48px; font-weight:800; }
h2{ font-size:40px; font-weight:700; }
h3{ font-size:clamp(1.5rem, .9vw + 1.2rem, 2.05rem); font-weight:700; }
h4{ font-size:1.2rem; font-weight:700; }
h5{ font-size:1.05rem; font-weight:700; }
p{ margin:0 0 1em; color:var(--ink-soft); font-size:1.0625rem; }
ul{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
figure{ margin:0; }

.text-gradient{
  background:var(--gradient-brand);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.skip-link{
  position:absolute; left:-999px; top:0; background:#fff; color:#111; padding:14px 20px;
  z-index:999; border-radius:0 0 10px 0; font-weight:700;
}
.skip-link:focus{ left:0; }
:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; border-radius:2px; }

section{ position:relative; }

.section-head{ max-width:760px; margin:0 auto 52px; text-align:center; padding:0 24px; }
.section-sub{ font-size:1.1rem; }
.eyebrow{
  display:inline-block; font-family:var(--font-display); font-weight:700; font-size:.82rem; letter-spacing:.13em;
  text-transform:uppercase; color:var(--purple); margin-bottom:14px;
}
.eyebrow-dark{ color:#AEBDFF; }
.eyebrow-light{ color:#FFD9A8; }
.eyebrow-center{ display:block; text-align:center; }

/* Buttons, minimum 48px tap target */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-display); font-weight:700; font-size:.98rem;
  padding:15px 28px; min-height:50px; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0) scale(.98); }
.btn-lg{ padding:18px 36px; font-size:1.05rem; min-height:56px; }
.btn-gradient{
  background:var(--gradient-brand); color:#fff;
  box-shadow:var(--shadow-purple);
}
.btn-gradient:hover{ box-shadow:0 24px 50px -16px rgba(216,0,122,.6); }
.btn-final{ background:var(--navy-950); color:#fff; box-shadow:0 16px 36px -14px rgba(0,0,0,.55); }
.btn-ghost{ background:transparent; border-color:rgba(18,20,43,.2); color:var(--ink); }
.btn-ghost:hover{ border-color:var(--purple); color:var(--purple); }
.btn-ghost-light{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.4); color:#fff; }
.btn-ghost-light:hover{ background:rgba(255,255,255,.16); }
.btn-outline-light{ background:rgba(10,14,39,.25); backdrop-filter:blur(6px); border-color:rgba(255,255,255,.65); color:#fff; }
.btn-outline-light:hover{ background:rgba(255,255,255,.18); }

/* =========================================================
   NAV
========================================================= */
.site-nav{
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,.88); backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(18,20,43,.07);
}
.nav-inner{
  max-width:1440px; margin:0 auto; padding:15px 32px;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; column-gap:24px;
}
.nav-logo{ justify-self:start; }
.nav-logo img{ height:clamp(44px, 5vw, 62px); width:auto; object-fit:contain; }
.nav-links{ display:flex; gap:30px; justify-self:center; }
.nav-links a{ font-size:1.09rem; font-weight:600; color:var(--ink-soft); transition:color .15s; padding:6px 0; white-space:nowrap; }
.nav-links a:hover{ color:var(--purple); }
.nav-cta{ padding:13px 28px; font-size:.94rem; min-height:50px; flex:none; justify-self:end; }
.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; padding:10px; cursor:pointer; justify-self:end; }
.nav-burger span{ width:22px; height:2px; background:var(--ink); display:block; border-radius:2px; }
.nav-mobile{
  display:none; flex-direction:column; gap:2px; padding:8px 24px 20px;
  background:#fff; border-top:1px solid rgba(18,20,43,.08);
}
.nav-mobile a{ padding:14px 4px; font-weight:600; font-size:1.02rem; border-bottom:1px solid rgba(18,20,43,.06); }
.nav-mobile .btn{ margin-top:14px; width:100%; }

@media (max-width:960px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
  .nav-mobile.open{ display:flex; }
}

/* =========================================================
   HERO
========================================================= */
.hero{ padding:48px 24px 0; background:var(--navy-950); overflow:hidden; }
.hero-inner{
  position:relative; max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center;
  padding-bottom:56px;
}
.hero-logo{ height:36px; margin-bottom:24px; }
.hero-copy h1{ color:#fff; margin-bottom:.45em; }
.hero-lead{ color:#C7CBE8; font-size:1.12rem; max-width:540px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }

.hero-media{ position:relative; display:grid; gap:16px; }
.hero-media-frame{ position:relative; border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-soft); }
.hero-media-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-media-frame-2{ margin-left:14%; width:86%; }
.hero-media-badge{
  position:absolute; left:16px; bottom:16px; display:inline-flex; align-items:center; gap:8px;
  background:rgba(10,14,39,.65); backdrop-filter:blur(6px); color:#fff; font-size:.82rem; font-weight:600;
  padding:8px 14px; border-radius:999px; border:1px solid rgba(255,255,255,.18);
}
.live-dot{ width:8px; height:8px; border-radius:50%; background:var(--red); box-shadow:0 0 0 4px rgba(245,28,44,.28); }

.hero-selector{
  max-width:var(--maxw); margin:0 auto; padding:0 0 48px;
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.selector-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden; min-height:160px;
  display:flex; align-items:flex-end; transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:var(--shadow-card);
}
.selector-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.selector-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.selector-overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(6,9,24,.88) 0%, rgba(6,9,24,.35) 55%, rgba(6,9,24,.1) 100%); }
.selector-exec .selector-overlay{ background:linear-gradient(0deg, rgba(0,20,90,.86) 0%, rgba(0,20,90,.3) 55%, rgba(0,20,90,.05) 100%); }
.selector-retiree .selector-overlay{ background:linear-gradient(0deg, rgba(120,10,60,.82) 0%, rgba(120,10,60,.28) 55%, rgba(120,10,60,.05) 100%); }
.selector-text{ position:relative; padding:22px 24px; }
.selector-label{ display:block; font-family:var(--font-display); font-weight:800; color:#fff; font-size:1.2rem; margin-bottom:4px; }
.selector-sub{ display:block; color:#E7E9FF; font-size:.92rem; font-weight:500; }

@media (max-width:980px){
  .hero-inner{ grid-template-columns:1fr; gap:32px; padding-bottom:40px; }
  .hero-media{ order:3; }
  .hero-ctas{ order:2; }
  .hero-media-frame-2{ display:none; }
  .hero-selector{ grid-template-columns:1fr; padding-bottom:40px; }
}

/* =========================================================
   PROBLEM
========================================================= */
.problem{ background:var(--paper); }
.problem-exec, .problem-retiree{
  display:grid; grid-template-columns:.95fr 1.05fr; align-items:stretch;
}
.problem-exec{ background:var(--navy-900); }
.problem-media{ position:relative; min-height:420px; }
.problem-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.problem-copy{ padding:80px 56px; display:flex; flex-direction:column; justify-content:center; }
.problem-exec .problem-copy h2{ color:#fff; }
.problem-exec .problem-lead{ color:#B9BEE0; font-size:1.08rem; }
.problem-retiree{ background:var(--paper-warm); }
.problem-retiree .problem-media{ order:2; }
.problem-retiree .problem-copy{ order:1; }

.timeline{ margin:26px 0; display:flex; flex-direction:column; gap:0; }
.timeline li{ display:flex; gap:18px; align-items:baseline; padding:11px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.timeline .time{ font-family:var(--font-display); font-weight:700; color:#9FB3FF; width:64px; flex:none; font-size:.92rem; }
.timeline .event{ color:#E7E9FF; font-weight:600; font-size:1.02rem; }

.problem-quote{
  font-family:var(--font-display); font-weight:600; font-size:1.12rem; line-height:1.4;
  border-left:3px solid var(--orange); padding-left:18px; margin-top:26px;
}
.problem-exec .problem-quote{ color:#fff; }
.problem-retiree .problem-quote{ color:var(--ink); border-left-color:var(--pink); }

.struggle-list{ margin:26px 0; display:flex; flex-direction:column; gap:12px; }
.struggle-list li{ padding:16px 18px; background:#fff; border-radius:14px; box-shadow:var(--shadow-card); font-size:1.02rem; color:var(--ink-soft); }
.struggle-list strong{ color:var(--pink); display:block; font-family:var(--font-display); font-size:1.05rem; margin-bottom:2px; }

@media (max-width:900px){
  .problem-exec, .problem-retiree{ grid-template-columns:1fr; }
  .problem-media{ min-height:280px; }
  .problem-copy{ padding:52px 24px; }
  .problem-retiree .problem-media{ order:1; }
  .problem-retiree .problem-copy{ order:2; }
}

/* =========================================================
   PATHWAYS
========================================================= */
.pathways{ padding:96px 24px; background:var(--paper-tint); }
.pathways-grid{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.path-panel{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); min-height:560px; display:flex; align-items:flex-end; }
.path-panel-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.path-panel:hover .path-panel-img{ transform:scale(1.04); }
.path-panel-scrim{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(4,6,18,.92) 0%, rgba(4,6,18,.55) 45%, rgba(4,6,18,.1) 78%); }
.path-retiree .path-panel-scrim{ background:linear-gradient(0deg, rgba(70,8,45,.9) 0%, rgba(70,8,45,.5) 45%, rgba(70,8,45,.08) 78%); }
.path-panel-inner{ position:relative; padding:44px; width:100%; }
.path-panel-inner h3{ color:#fff; }
.path-kicker{ font-family:var(--font-display); font-weight:700; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color:#FFD9A8; margin-bottom:14px; }
.path-tags{ display:flex; flex-wrap:wrap; gap:10px; margin:22px 0 28px; }
.path-tags li{ padding:8px 16px; border-radius:999px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.24); color:#fff; font-size:.88rem; font-weight:600; }

@media (max-width:900px){
  .pathways-grid{ grid-template-columns:1fr; }
  .path-panel{ min-height:460px; }
  .path-panel-inner{ padding:32px 24px; }
}

/* =========================================================
   DIFFERENCE (passive vs active)
========================================================= */
.difference{ padding:96px 24px; background:var(--navy-950); }
.difference h2{ color:#fff; }
.difference-panels{ max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr auto 1fr; gap:20px; align-items:center; }
.diff-panel{ border-radius:var(--radius-md); padding:36px 32px; }
.diff-panel-label{ display:block; font-family:var(--font-display); font-weight:800; font-size:1rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:20px; }
.diff-passive{ background:rgba(245,28,44,.08); border:1px solid rgba(245,28,44,.22); }
.diff-passive .diff-panel-label{ color:#FF8B94; }
.diff-passive li{ color:#B9BEE0; padding:8px 0; font-size:1.02rem; text-decoration:line-through; text-decoration-color:rgba(185,190,224,.4); }
.diff-active{ background:rgba(0,59,255,.1); border:1px solid rgba(0,59,255,.28); }
.diff-active .diff-panel-label{ background:var(--gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.diff-active li{ color:#fff; padding:8px 0; font-weight:600; font-size:1.02rem; }
.diff-arrow{ color:var(--purple); display:flex; justify-content:center; }

@media (max-width:720px){
  .difference-panels{ grid-template-columns:1fr; }
  .diff-arrow{ transform:rotate(90deg); padding:4px 0; }
}

/* =========================================================
   HOW IT WORKS
========================================================= */
.how-it-works{ padding:46px 24px; background:var(--paper); }
.how-label{ text-align:center; font-family:var(--font-display); font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.88rem; margin-bottom:30px; }
.how-label-exec{ color:var(--blue); }
.how-label-retiree{ color:var(--orange); margin-top:80px; }
.how-exec, .how-retiree{ max-width:var(--maxw); margin:0 auto; }

.how-steps-exec{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.how-step{ border-radius:var(--radius-md); overflow:hidden; background:var(--navy-900); box-shadow:var(--shadow-card); }
.how-step img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.how-step figcaption{ padding:26px 24px 28px; }
.how-num{ display:inline-block; font-family:var(--font-display); font-weight:800; color:var(--orange); font-size:.9rem; letter-spacing:.06em; margin-bottom:10px; }
.how-step h4{ color:#fff; }
.how-step p{ color:#B9BEE0; font-size:.98rem; margin:0; }

.how-steps-retiree{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.how-step-sm{ border-radius:16px; overflow:hidden; background:var(--paper-warm); box-shadow:var(--shadow-card); }
.how-step-sm img{ width:100%; aspect-ratio:3/4; object-fit:cover; }
.how-step-sm figcaption{ padding:16px 16px 20px; }
.how-num-sm{ display:inline-flex; width:26px; height:26px; border-radius:50%; background:var(--gradient-brand); color:#fff; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:.8rem; margin-bottom:10px; }
.how-step-sm h5{ margin-bottom:6px; font-size:.98rem; }
.how-step-sm p{ font-size:.88rem; margin:0; }
.how-footnote{ text-align:center; margin-top:34px; color:var(--ink-soft); font-size:1.02rem; }

@media (max-width:960px){
  .how-steps-exec{ grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .how-steps-retiree{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:560px){
  .how-steps-retiree{ grid-template-columns:repeat(2,1fr); }
}

/* =========================================================
   RESEARCH
========================================================= */
.research{ padding:96px 24px; background:linear-gradient(185deg,#0A0E27,#141A45); }
.research-inner{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:.65fr 1.35fr; gap:60px; align-items:start; }
.research-visual{ position:sticky; top:110px; display:flex; justify-content:center; padding-top:20px; }
.brain-orb{
  width:260px; height:260px; border-radius:50%;
  background:radial-gradient(circle at 32% 28%, rgba(0,59,255,.9), rgba(122,0,224,.6) 42%, rgba(216,0,122,.28) 68%, transparent 76%);
  box-shadow:0 0 100px rgba(122,0,224,.5);
  position:relative;
}
.brain-ring{ position:absolute; inset:0; margin:auto; width:340px; height:340px; border-radius:50%; border:1px dashed rgba(255,255,255,.18); top:-40px; left:0; right:0; }
.research-copy h2{ color:#fff; }
.research-lead{ color:#B9BEE0; font-size:1.08rem; }
.research-sources{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:32px 0; }
.research-source{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:22px 22px; }
.research-source-tag{
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  color:#9FB3FF; background:rgba(0,59,255,.14); border:1px solid rgba(159,179,255,.3); padding:4px 10px; border-radius:999px; margin-bottom:12px;
}
.research-source-tag-exec{ color:#FFD9A8; background:rgba(255,92,0,.12); border-color:rgba(255,217,168,.3); }
.research-source h4{ color:#fff; margin-bottom:8px; font-size:1.05rem; }
.research-source p{ color:#B9BEE0; font-size:.94rem; margin:0; }
.research-note{ font-size:.92rem; color:#8B8FB3; border-top:1px solid rgba(255,255,255,.12); padding-top:20px; }

@media (max-width:980px){
  .research-inner{ grid-template-columns:1fr; }
  .research-visual{ position:static; padding-top:0; }
  .research-sources{ grid-template-columns:1fr; }
}

/* =========================================================
   ACTIVITIES (featured image + selector)
========================================================= */
.experience{ padding:96px 24px; background:var(--paper); }
.activity-showcase{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1.15fr 1fr; gap:36px; align-items:stretch; }
.activity-featured{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); min-height:440px; background:var(--navy-900); }
.activity-featured img{ width:100%; height:100%; object-fit:cover; display:block; min-height:440px; }
.activity-list{ display:flex; flex-direction:column; gap:10px; justify-content:center; }
.activity-item{
  text-align:left; background:var(--paper-tint); border:2px solid transparent; border-radius:16px; padding:18px 20px;
  cursor:pointer; font-family:inherit; transition:background .2s ease, border-color .2s ease, transform .2s ease;
  display:flex; flex-direction:column; gap:4px;
}
.activity-item:hover{ transform:translateX(4px); }
.activity-item.is-active{ background:#fff; border-color:var(--purple); box-shadow:var(--shadow-card); }
.activity-tag{ font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--purple); }
.activity-name{ font-family:var(--font-display); font-weight:700; font-size:1.12rem; color:var(--ink); }
.activity-desc{ font-size:.94rem; color:var(--ink-soft); display:none; }
.activity-item.is-active .activity-desc{ display:block; }

@media (max-width:900px){
  .activity-showcase{ grid-template-columns:1fr; }
  .activity-featured{ min-height:280px; }
  .activity-featured img{ min-height:280px; }
}

/* =========================================================
   DEEP DIVE (Executive + Retiree)
========================================================= */
.deep-dive{ padding:110px 24px; }
.deep-dive-inner{ max-width:var(--maxw); margin:0 auto; }
.deep-dive-head{ max-width:680px; margin-bottom:56px; }
.deep-dive-exec{ background:radial-gradient(120% 90% at 0% 0%, #171C46, var(--navy-950) 62%); }
.deep-dive-exec h2{ color:#fff; }
.deep-lead{ font-size:1.12rem; }
.deep-dive-exec .deep-lead{ color:#C7CBE8; }

/* skills wheel */
.skills-wheel{ position:relative; max-width:640px; margin:0 auto 90px; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; }
.skills-center{
  position:relative; z-index:2; width:34%; aspect-ratio:1/1; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #1D2E9E, #7A00E0 55%, #D8007A 90%);
  display:flex; align-items:center; justify-content:center; text-align:center;
  box-shadow:0 0 70px rgba(122,0,224,.55);
}
.skills-center span{ color:#fff; font-family:var(--font-display); font-weight:700; font-size:1rem; padding:0 10%; }
.skills-orbit{ position:absolute; inset:0; }
.skills-orbit li{
  position:absolute; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  color:#E7E9FF; font-size:.86rem; font-weight:600; padding:10px 16px; border-radius:999px; white-space:nowrap;
}
.skills-orbit li:nth-child(1){ top:2%; left:50%; transform:translateX(-50%); }
.skills-orbit li:nth-child(2){ top:16%; right:0%; }
.skills-orbit li:nth-child(3){ top:50%; right:-4%; transform:translateY(-50%); }
.skills-orbit li:nth-child(4){ bottom:16%; right:0%; }
.skills-orbit li:nth-child(5){ bottom:2%; left:50%; transform:translateX(-50%); }
.skills-orbit li:nth-child(6){ bottom:16%; left:0%; }
.skills-orbit li:nth-child(7){ top:50%; left:-4%; transform:translateY(-50%); }
.skills-orbit li:nth-child(8){ top:16%; left:0%; }

@media (max-width:760px){
  .skills-wheel{ display:none; }
}
.skills-list-mobile{ display:none; }
@media (max-width:760px){
  .skills-list-mobile{
    display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:70px;
  }
}

/* exec glimpse + audience mosaic figures */
.exec-glimpse, .audience-mosaic{ margin-bottom:80px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); }
.exec-glimpse img, .audience-mosaic img{ width:100%; display:block; }
.exec-glimpse figcaption, .audience-mosaic figcaption{
  padding:20px 28px; background:var(--navy-800); color:#C7CBE8; font-weight:600; font-size:.98rem; text-align:center;
}
.audience-mosaic-light figcaption{ background:var(--paper-tint); color:var(--ink-soft); }

/* transformation block */
.transform-block{ text-align:center; margin-bottom:80px; }
.transform-block h3{ color:#fff; }
.deep-dive-retiree .transform-block h3{ color:var(--ink); }
.transform-sub{ font-weight:600; font-size:1.05rem; }
.deep-dive-exec .transform-sub{ color:#C7CBE8; }
.transform-split{ display:grid; grid-template-columns:1fr auto 1fr; gap:20px; align-items:center; max-width:900px; margin:36px auto; }
.transform-figure{ border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-card); text-align:left; background:var(--navy-800); }
.transform-figure img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.transform-figure figcaption{ padding:20px 22px 24px; color:#C7CBE8; font-size:.94rem; }
.transform-tag{ display:block; font-family:var(--font-display); font-weight:800; font-size:.95rem; margin-bottom:8px; text-transform:uppercase; letter-spacing:.04em; }
.transform-tag-before{ color:#FF8B94; }
.transform-tag-after{ color:#8FD9C4; }
.transform-mid{ color:var(--purple); display:flex; justify-content:center; }
.transform-quote{ font-family:var(--font-display); font-weight:600; font-size:1.12rem; max-width:560px; margin:0 auto; }
.deep-dive-exec .transform-quote{ color:#fff; }

.pillars-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-bottom:80px; }
.pillar{ padding:2px 2px 2px 22px; border-left:3px solid var(--purple); }
.deep-dive-exec .pillar h4{ color:#fff; }
.deep-dive-exec .pillar p{ color:#C7CBE8; font-size:.98rem; margin:0; }
.pillar-num{ display:block; font-family:var(--font-display); font-weight:800; font-size:1.5rem; color:var(--orange); margin-bottom:6px; }
.pillar-light{ border-left-color:var(--pink); }
.pillar-light h4{ color:var(--ink); }
.pillar-light p{ font-size:.98rem; margin:0; }
.pillars-row-outcomes{ margin-bottom:36px; }

/* Retiree Vitality Club, dark canvas subsection */
.retiree-dark{
  position:relative; overflow:hidden;
  margin-left:-24px; margin-right:-24px;
  padding:clamp(80px, 9vw, 130px) 24px;
  margin-bottom:80px;
  background:
    radial-gradient(60% 55% at 88% -8%, rgba(122,0,224,.32), transparent 60%),
    radial-gradient(55% 50% at -8% 108%, rgba(0,59,255,.24), transparent 60%),
    linear-gradient(165deg, #0B1030 0%, #090D24 55%, #070A1B 100%);
}
.retiree-dark-glow{ position:absolute; border-radius:50%; pointer-events:none; }
.retiree-dark-glow-1{ width:440px; height:440px; top:-160px; right:-120px; background:radial-gradient(circle, rgba(216,0,122,.32), rgba(245,28,44,.12) 55%, transparent 75%); filter:blur(6px); }
.retiree-dark-glow-2{ width:360px; height:360px; bottom:-170px; left:-110px; background:radial-gradient(circle, rgba(0,59,255,.26), transparent 70%); filter:blur(6px); }
.retiree-dark-inner{ position:relative; z-index:1; max-width:var(--maxw); margin:0 auto; }

.retiree-dark .eyebrow{
  background:var(--gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.retiree-dark .deep-dive-head h2{ color:#F8F8FF; }
.retiree-dark .deep-dive-head .deep-lead{ color:#C8CBE0; }

.retiree-dark .pillar h4{ color:#fff; }
.retiree-dark .pillar p{ color:#C8CBE0; }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(1){ border-left-color:var(--blue); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(1) .pillar-num{ color:var(--blue); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(2){ border-left-color:var(--pink); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(2) .pillar-num{ color:var(--pink); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(3){ border-left-color:var(--red); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(3) .pillar-num{ color:var(--red); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(4){ border-left-color:var(--yellow); }
.retiree-dark .pillars-row:not(.pillars-row-outcomes) .pillar:nth-child(4) .pillar-num{ color:var(--yellow); }

.retiree-dark .transform-block h3{ color:#F8F8FF; }
.retiree-dark .transform-sub{ color:#C8CBE0; }
.retiree-dark .transform-quote{ color:#fff; }

.retiree-dark .pillar-light{ border-left:3px solid var(--purple); }
.retiree-dark .pillar-light h4{ color:#fff; }
.retiree-dark .pillar-light p{ color:#C8CBE0; }
.retiree-dark .pillars-row-outcomes .pillar-light:nth-child(1){ border-left-color:var(--blue); }
.retiree-dark .pillars-row-outcomes .pillar-light:nth-child(2){ border-left-color:var(--pink); }
.retiree-dark .pillars-row-outcomes .pillar-light:nth-child(3){ border-left-color:var(--orange); }
.retiree-dark .pillars-row-outcomes .pillar-light:nth-child(4){ border-left-color:var(--yellow); }

.deep-dive-retiree .deep-dive-inner{ padding-top:70px; }

@media (max-width:640px){
  .retiree-dark{ padding:64px 18px; margin-bottom:56px; margin-left:-18px; margin-right:-18px; }
  .retiree-dark-glow-1{ width:280px; height:280px; }
  .retiree-dark-glow-2{ width:240px; height:240px; }
  .deep-dive-retiree .deep-dive-inner{ padding-top:0; }
}

.audience-mosaic{ margin-top:0; }

.offer-card{
  max-width:640px; margin:0 auto; border-radius:var(--radius-lg); padding:48px 44px; text-align:center;
}
.offer-exec{ background:linear-gradient(160deg, #12173A, #1B2153); border:1px solid rgba(255,255,255,.14); box-shadow:var(--shadow-soft); }
.offer-retiree{ background:#fff; border:1px solid rgba(122,0,224,.14); box-shadow:var(--shadow-soft); }
.offer-kicker{ font-family:var(--font-display); font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.86rem; color:var(--yellow); margin-bottom:10px; }
.offer-retiree .offer-kicker{ color:var(--purple); }
.offer-price{ font-family:var(--font-display); font-weight:800; font-size:clamp(3rem, 4vw, 3.8rem); color:#fff; margin:0 0 24px; }
.offer-price span{ font-size:1.1rem; font-weight:600; color:#B9BEE0; }
.offer-price-dark{ color:var(--ink); }
.offer-price-dark span{ color:var(--ink-soft); }
.offer-list{ text-align:left; max-width:440px; margin:0 auto 28px; display:flex; flex-direction:column; gap:12px; }
.offer-list li{ padding-left:28px; position:relative; color:#DADCF5; font-size:1rem; }
.offer-list li::before{ content:"\2713"; position:absolute; left:0; color:var(--yellow); font-weight:700; }
.offer-list-dark li{ color:var(--ink-soft); }
.offer-list-dark li::before{ color:var(--purple); }
.offer-pass{
  display:inline-flex; align-items:center; gap:16px; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.18);
  border-radius:999px; padding:12px 24px; margin-bottom:28px;
}
.offer-pass-days{ font-family:var(--font-display); font-weight:800; color:var(--yellow); font-size:1.15rem; }
.offer-pass-label{ font-size:.9rem; color:#DADCF5; }
.offer-pass-light{ background:var(--paper-tint); border-color:rgba(122,0,224,.14); }
.offer-pass-light .offer-pass-days{ color:var(--purple); }
.offer-pass-light .offer-pass-label{ color:var(--ink-soft); }
.offer-fine{ font-size:.86rem; color:var(--ink-soft); margin-top:18px; }

@media (max-width:900px){ .pillars-row{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){
  .pillars-row{ grid-template-columns:1fr; }
  .transform-split{ grid-template-columns:1fr; }
  .transform-mid{ transform:rotate(90deg); padding:6px 0; }
  .offer-price{ font-size:2.6rem; }
  .deep-dive{ padding:70px 20px; }
}

/* =========================================================
   PROVIDER
========================================================= */
.provider{ padding:90px 24px; background:var(--navy-950); }
.provider-inner{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; border-radius:var(--radius-lg); overflow:hidden; }
.provider-media img{ width:100%; height:100%; object-fit:cover; border-radius:var(--radius-lg); }
.provider-copy h3{ color:#fff; }
.provider-copy > p{ color:#B9BEE0; font-size:1.05rem; }
.provider-list{ display:flex; flex-direction:column; gap:12px; margin:24px 0 30px; }
.provider-list li{ color:#DADCF5; font-size:1rem; padding-left:24px; position:relative; }
.provider-list li::before{ content:"\2022"; position:absolute; left:0; color:var(--orange); font-size:1.3em; line-height:1; }

@media (max-width:900px){
  .provider-inner{ grid-template-columns:1fr; }
  .provider-media img{ aspect-ratio:16/10; }
}

/* =========================================================
   FAQ
========================================================= */
.faq{ padding:96px 24px; background:var(--paper); }
.faq-list{ max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--paper-tint); border-radius:16px; padding:6px 24px; }
.faq-item summary{
  cursor:pointer; padding:20px 0; font-weight:700; font-family:var(--font-display); font-size:1.08rem;
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-icon{ flex:none; width:22px; height:22px; position:relative; }
.faq-icon::before, .faq-icon::after{ content:""; position:absolute; background:var(--purple); border-radius:2px; }
.faq-icon::before{ width:14px; height:2px; top:10px; left:4px; }
.faq-icon::after{ width:2px; height:14px; left:10px; top:4px; transition:transform .2s ease; }
.faq-item[open] .faq-icon::after{ transform:scaleY(0); }
.faq-item p{ padding-bottom:22px; margin:0; font-size:1.02rem; }

/* =========================================================
   SURVEY
========================================================= */
.survey{ padding:96px 24px; background:linear-gradient(160deg, var(--navy-950), #171C46 55%, #241A4D); }
.survey-inner{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start; }
.survey-copy h2{ color:#fff; }
.survey-lead{ color:#C7CBE8; font-size:1.1rem; }
.survey-points{ display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.survey-points li{ color:#E7E9FF; font-weight:600; padding-left:30px; position:relative; font-size:1rem; }
.survey-points li::before{ content:"\2713"; position:absolute; left:0; color:var(--yellow); font-weight:800; }
.survey-card-border{
  border-radius:var(--radius-lg); padding:3px; background:var(--gradient-brand);
  box-shadow:0 30px 80px -25px rgba(122,0,224,.55);
}
.survey-card-border iframe{ border-radius:calc(var(--radius-lg) - 3px); background:#fff; display:block; width:100%; }
.survey-privacy{ text-align:center; color:#8B8FB3; font-size:.86rem; margin-top:18px; }

@media (max-width:980px){ .survey-inner{ grid-template-columns:1fr; } }

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta{ padding:110px 24px; text-align:center; background:var(--gradient-brand); }
.final-cta-inner{ max-width:640px; margin:0 auto; }
.final-logo{ height:56px; width:auto; object-fit:contain; margin:0 auto 30px; border-radius:14px; box-shadow:0 18px 40px -16px rgba(0,0,0,.45); }
.final-cta h2{ color:#fff; margin-bottom:36px; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background:var(--navy-950); padding:70px 24px 28px; }
.footer-inner{ max-width:var(--maxw); margin:0 auto; display:flex; justify-content:space-between; align-items:flex-start; gap:44px; flex-wrap:wrap; }
.footer-brand{ max-width:260px; }
.footer-brand img{ height:clamp(52px, 6vw, 68px); width:auto; object-fit:contain; border-radius:12px; }
.footer-brand p{ color:#8B8FB3; margin-top:16px; font-size:.92rem; }
.footer-links{ display:flex; gap:52px; flex-wrap:wrap; }
.footer-links h5{ color:#fff; margin-bottom:16px; font-size:.86rem; text-transform:uppercase; letter-spacing:.06em; }
.footer-links a{ display:block; color:#B9BEE0; font-size:.94rem; padding:6px 0; }
.footer-links a:hover{ color:#fff; }
.footer-bottom{ max-width:var(--maxw); margin:54px auto 0; padding-top:26px; border-top:1px solid rgba(255,255,255,.08); }
.footer-bottom p{ color:#5A5F86; font-size:.84rem; margin:0; }

/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* =========================================================
   MOBILE TYPE + SPACING (global)
========================================================= */
@media (max-width:640px){
  body{ font-size:16px; }
  h1{ font-size:clamp(2.1rem, 8vw, 2.7rem); }
  h2{ font-size:clamp(1.7rem, 7vw, 2.1rem); }
  h3{ font-size:1.35rem; }
  p{ font-size:1rem; }
  .hero{ padding:36px 18px 0; }
  .problem, .pathways, .difference, .how-it-works, .research, .experience, .deep-dive, .provider, .faq, .survey, .final-cta{
    padding-left:18px; padding-right:18px;
  }
  .pathways, .difference, .how-it-works, .research, .experience, .faq, .survey{ padding-top:34px; padding-bottom:34px; }
  .provider{ padding-top:34px; padding-bottom:34px; }
  .final-cta{ padding-top:40px; padding-bottom:40px; }
  .nav-inner{ padding:12px 18px; }
  .section-head{ margin-bottom:36px; }
  .offer-card{ padding:36px 26px; }
}
