:root{
  /* Premium dark palette */
  --bg: #0F172A;
  --text: #F8FAFC;
  --muted: rgba(248,250,252,.72);
  --line: rgba(248,250,252,.10);

  --primary: #6366F1;
  --accent:  #D9F99D;
  --cta:     #22C55E;

  /* Surfaces */
  --surface:  rgba(15, 23, 42, .62);
  --surface2: rgba(15, 23, 42, .72);
  --surface3: rgba(15, 23, 42, .92);

  --card: var(--surface2);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --shadow2: 0 26px 80px rgba(0,0,0,.42);

  --radius: 18px;
  --radius2: 26px;

  --max: 1180px;

  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-heading: "Space Grotesk", "Segoe UI", Arial, sans-serif;

  --card-bg: rgba(15,23,42,.72);
  --card-bg-soft: rgba(15,23,42,.62);
  --card-border: rgba(248,250,252,.10);
  --card-shadow: 0 18px 60px rgba(0,0,0,.35);
  --card-shadow-hover: 0 26px 80px rgba(0,0,0,.42);
}
:root{
  /* ...your existing vars... */
  --siteHeaderH: 72px; /* will be updated by JS */
}

/* Smooth scrolling + proper anchor offset for sticky header */
html, body{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--siteHeaderH, 72px) + 14px);
}

/* Respect accessibility */
@media (prefers-reduced-motion: reduce){
  html, body{ scroll-behavior: auto; }
}
*{ box-sizing: border-box; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
:focus-visible{
  outline: 2px solid rgba(99,102,241,.6);
  outline-offset: 2px;
}
/* Gradient logo text */
.logo-flicker{
  display: inline-block;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(90deg, #6366F1 0%, #D9F99D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Each character */
.logo-flicker .char{
  display: inline-block;
  will-change: transform, opacity, filter;
  transition: transform 120ms ease, opacity 120ms ease, filter 120ms ease;
}

/* Blink style (subtle premium pop, not a seizure-flicker) */
.logo-flicker .char.blink{
  opacity: 0.35;
  filter: brightness(1.25) saturate(1.25);
  transform: translateY(-0.5px) scale(1.04);
}

/* Optional: a slightly stronger “spark” look */
.logo-flicker .char.spark{
  opacity: 1;
  filter: brightness(1.55) saturate(1.35);
  transform: translateY(-1px) scale(1.07);
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce){
  .logo-flicker .char{
    transition: none;
  }
}
html,body{
  padding:0;
  margin:0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% 8%, rgba(99,102,241,.25), transparent 60%),
    radial-gradient(1000px 600px at 90% 12%, rgba(217,249,157,.14), transparent 60%),
    radial-gradient(900px 700px at 50% 85%, rgba(56,189,248,.10), transparent 65%),
    linear-gradient(180deg, #0B1220 0%, #0F172A 45%, #0B1220 100%);
  background-attachment: fixed;
}

/* Global animated background glow layer */
body::before{
  content:"";
  position: fixed;
  inset: -200px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(600px 600px at 20% 30%, rgba(99,102,241,.18), transparent 70%),
    radial-gradient(700px 700px at 80% 60%, rgba(217,249,157,.10), transparent 70%),
    radial-gradient(500px 500px at 60% 10%, rgba(56,189,248,.08), transparent 70%);
  filter: blur(40px);
  animation: globalFloat 18s ease-in-out infinite alternate;
}

@keyframes globalFloat{
  0%{
    transform: translateY(0px) translateX(0px);
  }
  50%{
    transform: translateY(-30px) translateX(20px);
  }
  100%{
    transform: translateY(20px) translateX(-20px);
  }
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.small{ font-size: 13px; font-weight: 500; }
.muted{ color: var(--muted); }
.section{ padding: 112px 0; }
.section.alt{
  background:
    linear-gradient(180deg, rgba(99,102,241,.05), rgba(217,249,157,.03)),
    transparent;
}
.section-head{ margin-bottom: 28px; max-width: 820px; }
.section-head h2{ margin: 0 0 12px 0; font-size: 40px; letter-spacing: -0.03em; line-height: 1.12; font-weight: 800; }
.section-head p{ font-size: 16px; font-weight: 500; }
.kicker{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: 10px;
  font-weight: 600;
}
h1,h2,h3,.brand-name,.hero-card-title,.price-name,.final-title,.cta-strip-title{ font-family: var(--font-heading); }
h2{ font-size: 40px; letter-spacing: -0.02em; margin: 0 0 12px; font-weight: 800; }
h3{ margin: 12px 0 8px; font-size: 20px; font-weight: 700; }
p{ font-size: 16px; line-height: 1.7; color: var(--muted); font-weight: 500; }
ul{ padding-left: 18px; margin: 10px 0 0; }
li{ margin: 8px 0; color: rgba(248,250,252,.72); }

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, .7);
  border-bottom: 1px solid rgba(248,250,252,.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-link{ color: rgba(248,250,252,.72); font-size: 13px; }
.pill{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(99,102,241,.18);
  color: rgba(248,250,252,.92);
  font-weight: 700;
  border: 1px solid rgba(99,102,241,.42);
}

.header{
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(15, 23, 42, .68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, box-shadow .2s ease;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  transition: padding .2s ease;
}
.header.scrolled{
  background: rgba(15, 23, 42, .9);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.header.scrolled .header-inner{
  padding: 12px 0;
}
.brand{ display:flex; align-items:center; gap: 12px; }
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(248,250,252,.22), rgba(248,250,252,.02)),
              linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(99,102,241,.25);
}
.brand-text .brand-name{ font-weight: 800; letter-spacing: -0.02em; font-size: 14px; }
.brand-text .brand-sub{ font-size: 12px; color: var(--muted); margin-top: 1px; }
.brand.mini .brand-mark{ width: 34px; height: 34px; border-radius: 12px; }

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav a{
  position: relative;
  font-size: 13.5px;
  color: rgba(248,250,252,.85);
  font-weight: 600;
  opacity: .85;
}
.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .2s ease;
}
.nav a:hover{ color: rgba(248,250,252,.95); opacity: 1; }
.nav a:hover::after{ width: 100%; }

.header-cta{ display:flex; gap: 10px; align-items:center; }

.primary-btn, .ghost-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.primary-btn{
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(99,102,241,.22), 0 6px 16px rgba(99,102,241,.25);
  border-color: rgba(99,102,241,.35);
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.primary-btn:hover{
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow: 0 20px 40px rgba(99,102,241,.26), 0 8px 20px rgba(99,102,241,.24);
}
.ghost-btn{
  background: rgba(15,23,42,.4);
  border-color: rgba(99,102,241,.35);
  color: rgba(248,250,252,.90);
}
.ghost-btn:hover{ transform: translateY(-1px); border-color: rgba(99,102,241,.45); box-shadow: var(--shadow2); }
.primary-btn.full, .ghost-btn.full{ width:100%; }
.primary-btn.big, .ghost-btn.big{ padding: 14px 18px; border-radius: 16px; font-size: 15px; }
.primary-btn.small, .ghost-btn.small{ padding: 10px 14px; border-radius: 14px; font-size: 13px; }

.menu-btn{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(248,250,252,.12);
  background: rgba(15,23,42,.7);
  align-items:center;
  justify-content:center;
  gap: 4px;
  cursor:pointer;
}
.menu-btn span{
  width: 18px;
  height: 2px;
  background: rgba(248,250,252,.75);
  display:block;
}
.mobile-nav{
  display:block;
  position: fixed;
  inset: 0;
  padding: 0;
  background: linear-gradient(180deg, #0F172A 0%, #0C1426 100%);
  height: 100svh;
  overflow-y: auto;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.mobile-nav.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-panel{
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 20px 24px;
  display:flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(14px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-nav.open .mobile-panel{
  transform: translateY(0);
  opacity: 1;
}
.mobile-panel-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-close{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(99,102,241,.35);
  background: rgba(99,102,241,.12);
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  cursor:pointer;
}
.mobile-links{
  border-top: 1px solid rgba(248,250,252,.08);
  border-bottom: 1px solid rgba(248,250,252,.08);
}
.mobile-links a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 6px;
  font-weight: 700;
  color: rgba(248,250,252,.9);
  border-bottom: 1px dashed rgba(248,250,252,.08);
}
.mobile-links a:last-child{ border-bottom: none; }
.mobile-links a::after{
  content: "›";
  color: rgba(99,102,241,.9);
  font-size: 20px;
}
.mobile-nav-cta{
  display:flex;
  gap: 10px;
  padding-top: 4px;
  flex-wrap: wrap;
}
.mobile-nav-cta .ghost-btn,
.mobile-nav-cta .primary-btn{
  flex: 1 1 160px;
  justify-content: center;
}

@media (max-width: 720px){
  .mobile-nav{ padding: 0; }
  .mobile-panel{ padding: 16px 18px 22px; }
  .mobile-links a{ font-size: 15px; }
  .value-grid{ grid-template-columns: 1fr; }
}

.hero{
  position: relative;
  padding: 120px 0 64px;
  overflow: hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.hero-bg{ position:absolute; inset:0; pointer-events:none; }
.mesh{
  position:absolute; inset:-40px;
  background:
    radial-gradient(720px 440px at 16% 18%, rgba(99,102,241,.28), transparent 62%),
    radial-gradient(680px 420px at 78% 20%, rgba(217,249,157,.16), transparent 62%),
    radial-gradient(680px 520px at 50% 86%, rgba(99,102,241,.16), transparent 60%),
    linear-gradient(180deg, rgba(99,102,241,.12), rgba(15,23,42,0));
  filter: saturate(1.1);
}
.glow{
  position:absolute;
  width: 520px; height: 520px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .25;
  animation: floaty 9s ease-in-out infinite;
}
.g1{ left: -120px; top: -120px; background: rgba(99,102,241,.85); }
.g2{ right: -160px; top: 40px; background: rgba(217,249,157,.45); animation-delay: 1.3s; }
.g3{ left: 25%; bottom: -260px; background: rgba(99,102,241,.65); animation-delay: 2.2s; }

@keyframes floaty{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(16px, -22px); }
}

.hero-kicker{ display:flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: rgba(99,102,241,.16);
  border: 1px solid rgba(99,102,241,.30);
  color: rgba(248,250,252,.92);
}
.badge.outline{
  background: rgba(15,23,42,.5);
  border: 1px solid var(--line);
  color: rgba(248,250,252,.78);
}

.hero-title{
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  color: #F8FAFC;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 0 16px;
}
.gradient-text{
  background: linear-gradient(90deg, #6366F1 0%, #D9F99D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle{
  font-size: 16.5px;
  margin: 0 0 22px;
  color: rgba(248,250,252,.78);
  max-width: 560px;
}

.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 28px; }

.hero-proof{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.proof-item{
  position: relative;
  background:
    linear-gradient(180deg, rgba(15,23,42,.62), rgba(15,23,42,.62)) padding-box,
    linear-gradient(120deg, rgba(99,102,241,.35), rgba(217,249,157,.18)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.proof-item.wide{
  grid-column: 1 / -1;
}
.proof-item:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}
.proof-icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(99,102,241,.16);
  border: 1px solid rgba(99,102,241,.30);
}
.proof-title{ font-weight: 700; letter-spacing: -0.01em; }
.proof-desc{ font-size: 12.5px; color: rgba(248,250,252,.70); margin-top: 2px; font-weight: 500; }

.hero-card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hero-card:hover{
  border-color: rgba(248,250,252,.2);
  box-shadow: var(--card-shadow-hover);
}
.hero-card-top{ display:flex; align-items:center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.hero-card-title{ font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.hero-card-sub{ color: rgba(248,250,252,.72); font-size: 13.5px; margin-top: 4px; }
.hero-card-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(248,250,252,.15), rgba(99,102,241,.35), rgba(248,250,252,.1));
  margin: 12px 0 14px;
}
.chip{
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.8), rgba(15,23,42,.8)) padding-box,
    linear-gradient(120deg, rgba(99,102,241,.7), rgba(217,249,157,.7), rgba(34,197,94,.7)) border-box;
  border: 1px solid transparent;
  color: rgba(248,250,252,.92);
  font-weight: 900;
  font-size: 12px;
  background-size: 200% 200%;
  animation: chipShift 6s linear infinite;
}
@keyframes chipShift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

.form{ display:block; }
.field{ display:flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
label{ font-size: 12.5px; color: rgba(248,250,252,.74); font-weight: 500; }
input, select{
  padding: 12px 12px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(248,250,252,.14);
  background: rgba(15,23,42,.75);
  color: rgba(248,250,252,.92);
  outline: none;
  font-size: 14px;
}
input::placeholder{ color: rgba(248,250,252,.55); }
input:focus, select:focus{
  border-color: rgba(99,102,241,.65);
  box-shadow: 0 0 0 4px rgba(99,102,241,.22);
}
.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note{ margin: 10px 0 0; font-size: 12px; color: rgba(248,250,252,.72); }
.form-status{ margin-top: 10px; font-weight: 700; font-size: 13px; }

.trust-row{ margin-top: 14px; }
.trust-title{ font-weight: 600; font-size: 13px; color: rgba(248,250,252,.84); margin: 10px 0 10px; }
.trust-logos{ display:flex; flex-wrap: wrap; gap: 8px; }
.logo-pill{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(248,250,252,.22);
  background: rgba(15,23,42,.6);
  color: rgba(248,250,252,.74);
  font-weight: 600;
  font-size: 12px;
}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

.card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(248,250,252,.2);
}
.card-title{ font-weight: 700; margin-bottom: 8px; }

.bullets{ margin-top: 14px; display:flex; flex-direction: column; gap: 12px; }
.bullet{ display:flex; gap: 10px; align-items: flex-start; }
.dot{ width: 10px; height: 10px; border-radius: 999px; background: var(--primary); margin-top: 5px; box-shadow: 0 10px 22px rgba(99,102,241,.28); }

.mini-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.mini{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: var(--card-bg-soft);
  font-weight: 700;
  font-size: 13px;
  color: rgba(248,250,252,.82);
}

.timeline{
  position: relative;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 32px;
  height: 1px;
  background: rgba(248,250,252,.08);
  z-index: 0;
}
.t-item{
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.t-item:hover{
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(248,250,252,.2);
}
.t-item.highlight{
  border-color: rgba(99,102,241,.45);
  background: linear-gradient(180deg, rgba(99,102,241,.16), rgba(15,23,42,.85));
}
.t-badge{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(99,102,241,.36);
  color: rgba(248,250,252,.92);
}

/* --- JOURNEY SECTION --- */
.journey{
  display:grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 22px;
}

.journey-left{
  position: relative;
  align-self: stretch;
}

/* Premium sticky “chapter card” */
.journey-sticky{
  position: sticky;
  top: 120px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(248,250,252,.10);
  background:
    radial-gradient(1200px 420px at 18% 0%, rgba(99,102,241,.22), transparent 55%),
    radial-gradient(900px 360px at 85% 18%, rgba(217,249,157,.12), transparent 55%),
    rgba(15,23,42,.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  overflow: hidden;
}

.journey-sticky::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(99,102,241,.55), rgba(217,249,157,.25), rgba(248,250,252,.08));
  opacity: .45;
  filter: blur(0.2px);
  z-index: 0;
  pointer-events: none;
}

.journey-sticky::after{
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  top: -220px;
  background: rgba(99,102,241,.55);
  filter: blur(70px);
  opacity: .22;
  z-index: 0;
  pointer-events: none;
}

.journey-sticky > *{ position: relative; z-index: 1; }

/* Big chapter number + subtle watermark */
.journey-step{
  font-family: var(--font-heading);
  font-size: 74px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  display:flex;
  align-items: baseline;
  gap: 12px;
}

.journey-step::after{
  content: "JOURNEY";
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,250,252,.62);
  font-weight: 800;
}

.journey-badge{
  display:inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.35);
  background: rgba(99,102,241,.14);
  font-size: 12px;
  font-weight: 800;
  color: rgba(248,250,252,.92);
}

.journey-title{
  margin-top: 14px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.journey-sub{
  margin-top: 8px;
  font-size: 15px;
  color: rgba(248,250,252,.72);
  line-height: 1.65;
  max-width: 34ch;
}

/* Progress with glow */
.journey-progress{
  margin-top: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248,250,252,.08);
  overflow: hidden;
  border: 1px solid rgba(248,250,252,.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.journey-progress span{
  display:block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(99,102,241,.28);
  transition: width .35s ease;
}

/* Right side: cinematic panels */
.journey-right{
  display:flex;
  flex-direction: column;
  gap: 16px;
}

.journey-panel{
  position: relative;
  min-height: auto;
  height: clamp(420px, 62vh, 620px);
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  padding: 40px 48px;
  border-radius: var(--radius2);
  border: 1px solid rgba(248,250,252,.10);
  background:
    radial-gradient(1000px 420px at 20% 18%, rgba(99,102,241,.14), transparent 60%),
    radial-gradient(900px 380px at 88% 18%, rgba(217,249,157,.10), transparent 60%),
    rgba(15,23,42,.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  opacity: .30;
  transform: translateY(0) scale(.97);
  will-change: transform;
  transition: opacity .45s ease, transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  overflow: hidden;
}

.journey-panel::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius2) + 2px);
  background: linear-gradient(135deg, rgba(99,102,241,.40), rgba(217,249,157,.18), rgba(248,250,252,.06));
  opacity: .28;
  z-index: 0;
  pointer-events: none;
}

.journey-panel::after{
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  background: rgba(217,249,157,.35);
  filter: blur(90px);
  opacity: .12;
  z-index: 0;
  pointer-events: none;
}

.journey-panel > *{ position: relative; z-index: 1; }

.journey-panel.is-active{
  opacity: 1;
  border-color: rgba(248,250,252,.18);
  box-shadow: 0 26px 90px rgba(0,0,0,.48);
  transform: translateY(-6px) scale(1.02);
}

.journey-panel.scene-2{ transform: translateX(26px) scale(.97); }
.journey-panel.scene-3{ transform: translateY(26px) scale(.97); }

.journey-panel.is-active.scene-2{ transform: translateX(0) translateY(-6px) scale(1.02); }
.journey-panel.is-active.scene-3{ transform: translateX(0) translateY(-6px) scale(1.02); }

.panel-inner{
  max-width: 560px;
}
.journey-panel .panel-inner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-meta{
  display:none;
  gap: 10px;
  align-items:center;
  margin-bottom: 14px;
}

.panel-num{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(248,250,252,.92);
}

.panel-badge{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,.12);
  background: rgba(15,23,42,.62);
  font-size: 12px;
  font-weight: 700;
  color: rgba(248,250,252,.82);
}

.panel-chips{
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(248,250,252,.08);
}
.panel-chips span{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(248,250,252,.10);
  background: rgba(15,23,42,.55);
  color: rgba(248,250,252,.78);
  font-weight: 700;
  font-size: 12px;
}

/* Premium list rows inside the right panel */
.journey-panel ul,
.journey-panel .panel-bullets{
  list-style: none;
  padding-left: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.journey-panel ul li,
.journey-panel .panel-bullets li{
  padding: 12px 14px 12px 34px;
  border-radius: 14px;
  border: 1px solid rgba(248,250,252,.10);
  background: rgba(15,23,42,.55);
  color: rgba(248,250,252,.82);
  line-height: 1.55;
  position: relative;
}
.journey-panel ul li::before,
.journey-panel .panel-bullets li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(99,102,241,.95);
  box-shadow: 0 0 0 4px rgba(99,102,241,.14);
  position: absolute;
  left: 14px;
  top: 18px;
}
.journey-panel.is-active .panel-inner::before{
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin-bottom: 8px;
  background: linear-gradient(90deg,
    rgba(99,102,241,.0),
    rgba(99,102,241,.45),
    rgba(217,249,157,.25),
    rgba(99,102,241,.0)
  );
  opacity: .9;
}

.cta-strip{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.cta-strip-title{ font-weight: 700; }
.cta-strip-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

/* Accordion Styles Upgrade */
.acc-item{
  width:100%;
  text-align:left;
  padding: 20px 24px;
  border: 1px solid rgba(248,250,252,.10);
  background: var(--card-bg);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  cursor:pointer;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 14px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.acc-item::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(99,102,241,.0), rgba(99,102,241,.08), rgba(217,249,157,.05), rgba(99,102,241,.0));
  opacity:0;
  transition: opacity .3s ease;
}
.acc-item:hover{
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.45);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}
.acc-item:hover::before{
  opacity:1;
}
.acc-item[aria-expanded="true"]{
  border-color: rgba(99,102,241,.55);
  background: linear-gradient(180deg, rgba(99,102,241,.12), rgba(15,23,42,.95));
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
}
.acc-title{
  font-weight: 800;
  color: rgba(248,250,252,.95);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.acc-icon{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(248,250,252,.14);
  background: rgba(15,23,42,.8);
  font-weight: 900;
  color: rgba(248,250,252,.9);
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.acc-item[aria-expanded="true"] .acc-icon{
  transform: rotate(45deg);
  border-color: rgba(99,102,241,.6);
  color: rgba(99,102,241,.95);
}
.acc-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--card-bg-soft);
  padding: 0 24px;
  border-radius: 0 0 20px 20px;
}

/* ===== Curriculum panel readability upgrade ===== */
.acc-panel{
  color: rgba(248,250,252,.84);
}

/* Keep text from spanning too wide on large screens */
.acc-panel p,
.acc-panel ul{
  max-width: 78ch;
}

.acc-panel p{
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(248,250,252,.72);
  letter-spacing: 0.01em;
}

/* Replace default bullets with clean, pill-like rows */
.acc-panel ul{
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.acc-panel ul li{
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 14px;
  border: 1px solid rgba(248,250,252,.10);
  background: rgba(15,23,42,.55);
  color: rgba(248,250,252,.82);
  line-height: 1.6;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}

.acc-panel ul li::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(99,102,241,.95);
  box-shadow: 0 0 0 4px rgba(99,102,241,.14);
}

/* Slightly stronger contrast for expanded state */
.acc-item[aria-expanded="true"] + .acc-panel p{
  color: rgba(248,250,252,.78);
}

/* Mobile tuning: tighter rows and slightly larger text */
@media (max-width: 720px){
  .acc-panel p{ font-size: 15px; }
  .acc-panel ul li{ padding: 11px 12px 11px 38px; font-size: 14.25px; }
}
.acc-item[aria-expanded="true"] + .acc-panel{
  padding: 18px 24px 24px;
  border: 1px solid rgba(248,250,252,.12);
  border-top: none;
  margin-bottom: 18px;
}

/* Stagger bullet animation */
@keyframes bulletFade{
  from{ opacity:0; transform: translateY(6px);} 
  to{ opacity:1; transform: translateY(0);} 
}
.acc-item[aria-expanded="true"] + .acc-panel ul li{
  opacity:0;
  animation: bulletFade .45s ease forwards;
}
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(1){ animation-delay:.05s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(2){ animation-delay:.1s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(3){ animation-delay:.15s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(4){ animation-delay:.2s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(5){ animation-delay:.25s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(6){ animation-delay:.3s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(7){ animation-delay:.35s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(8){ animation-delay:.4s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(9){ animation-delay:.45s; }
.acc-item[aria-expanded="true"] + .acc-panel ul li:nth-child(10){ animation-delay:.5s; }

/* ===== Module 9 Highlight (Advanced Bonus Layer) ===== */
.module-advanced{
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(15,23,42,.9), rgba(15,23,42,.9)) padding-box,
    linear-gradient(120deg, rgba(99,102,241,.9), rgba(217,249,157,.8), rgba(34,197,94,.8)) border-box;
  box-shadow: 0 30px 90px rgba(99,102,241,.25);
}
.module-advanced[aria-expanded="true"]{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 40px 120px rgba(99,102,241,.35);
}
.module-advanced + .acc-panel{
  border: 1px solid rgba(99,102,241,.45);
  border-top:none;
  background: linear-gradient(180deg, rgba(99,102,241,.10), rgba(15,23,42,.85));
}

@media (min-width: 980px){
  .acc-panel ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }
  .acc-panel ul li{
    break-inside: avoid;
  }
}

.tools-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tool-card{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(248,250,252,.12);
  background: rgba(248,250,252,.04);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  min-height: 62px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.tool-card:hover{
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.40);
  background: rgba(248,250,252,.055);
  box-shadow: 0 16px 42px rgba(0,0,0,.26);
}

.tool-logo{
  width: 100%;
  max-width: 110px;
  height: 26px;
  object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.22));
}

@media (max-width: 980px){
  .tool-card{ min-height: 60px; }
  .tool-logo{ max-width: 104px; height: 24px; }
}

@media (max-width: 520px){
  .tools-grid{ gap: 12px; }
  .tool-card{ padding: 12px; min-height: 58px; }
  .tool-logo{ max-width: 98px; height: 22px; }
}
.tool-card:hover{
  transform: translateY(-4px);
  color: rgba(248,250,252,.9);
  border-color: rgba(248,250,252,.2);
  box-shadow: var(--card-shadow-hover);
}

.who-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.who-card{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.who-card:hover{
  transform: translateY(-4px);
  border-color: rgba(248,250,252,.2);
  box-shadow: var(--card-shadow-hover);
}
.who-title{ font-weight: 700; margin-bottom: 6px; }
.who-desc{ color: rgba(248,250,252,.72); font-size: 14px; }

.checklist{ list-style: none; padding-left: 0; margin: 12px 0 0; }
.checklist li{
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(248,250,252,.78);
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.28);
  color: rgba(34,197,94,.95);
  font-weight: 900;
  font-size: 12px;
}

.pricing-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.price-card{
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(15,23,42,.88), rgba(15,23,42,.88)) padding-box,
    linear-gradient(120deg, rgba(99,102,241,.35), rgba(217,249,157,.18)) border-box;

  border: 1px solid transparent;
  border-radius: var(--radius2);
  padding: 24px;

  box-shadow: 
    0 24px 70px rgba(0,0,0,.45);

  transition: 
    transform .3s ease, 
    box-shadow .3s ease;
}

/* Ambient glow */
.price-card::before{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  left: -160px;
  background: rgba(99,102,241,.45);
  filter: blur(100px);
  opacity: .15;
  pointer-events:none;
  transition: opacity .3s ease;
}

.price-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 36px 110px rgba(0,0,0,.55);
}

.price-card:hover::before{
  opacity: .28;
}
.price-card:not(.featured) .now{
  text-shadow: 0 0 18px rgba(99,102,241,.35);
}
.price-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.price-name{ font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.price-tag{
  font-weight: 600;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(99,102,241,.36);
  color: rgba(248,250,252,.92);
}

/* Premium (featured) pricing card: rotating conic-gradient border ring */

/* Animate an angle variable cleanly */
@property --spinAngle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes premiumBorderSpin {
  from { --spinAngle: 0deg; }
  to   { --spinAngle: 360deg; }
}

.price-card.featured{
  position: relative;
  overflow: hidden;

  /* This creates a real border area for the gradient ring */
  border: 2px solid transparent;
  border-radius: var(--radius2);

  /* Layer 1 = inner surface (padding-box)
     Layer 2 = rotating conic gradient (border-box) */
  background:
    linear-gradient(160deg, #1E293B 0%, #111827 45%, #0F172A 100%) padding-box,
    conic-gradient(
      from var(--spinAngle),
      rgba(99,102,241,1),
      rgba(217,249,157,1),
      rgba(34,197,94,1),
      rgba(99,102,241,1)
    ) border-box;

  box-shadow:
    0 45px 140px rgba(99,102,241,.45),
    0 20px 70px rgba(0,0,0,.65);

  /* Clockwise rotation */
  animation: premiumBorderSpin 2s linear infinite;
}

/* Keep card content above the backgrounds */
.price-card.featured > *{
  position: relative;
  z-index: 1;
}

/* Featured card: richer ambient glow override */
.price-card.featured::before{
  opacity: .22;
  background: rgba(217,249,157,.40);
}
.price{
  display:flex;
  align-items:baseline;
  gap: 10px;
  margin: 12px 0 14px;
}
.emi{
  font-size: 12.5px;
  color: rgba(34,197,94,.9);
  font-weight: 600;
  margin-bottom: 12px;
}
.slash{
  color: rgba(248,250,252,.55);
  text-decoration: line-through;
  font-weight: 600;
}
.now{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.price-card.featured .now{
  font-size: 42px;

  background: linear-gradient(90deg, #ffffff, #D9F99D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-list{
  margin-top: 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.line{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: var(--card-bg-soft);
  font-weight: 600;
  color: rgba(248,250,252,.82);
}

/* Value box: premium glassy depth, glows, and value grid tiles */
.value-box{
  position: relative;
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(248,250,252,.12);
  overflow: hidden;

  /* Depth layers: subtle gradient + glass surface */
  background:
    radial-gradient(900px 320px at 18% 0%, rgba(99,102,241,.16), transparent 55%),
    radial-gradient(800px 300px at 88% 10%, rgba(217,249,157,.10), transparent 55%),
    linear-gradient(180deg, rgba(15,23,42,.82), rgba(15,23,42,.74));

  backdrop-filter: blur(14px);
  box-shadow:
    0 28px 90px rgba(0,0,0,.52),
    0 10px 28px rgba(0,0,0,.32);
}

/* Faint radial glow behind the heading area */
.value-box::before{
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  top: -300px;
  background: rgba(99,102,241,.55);
  filter: blur(90px);
  opacity: .16;
  pointer-events: none;
}

.value-box::after{
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -300px;
  bottom: -320px;
  background: rgba(217,249,157,.38);
  filter: blur(110px);
  opacity: .10;
  pointer-events: none;
}

.value-box > *{ position: relative; z-index: 1; }

.value-title{
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  color: rgba(248,250,252,.92);
}
.value-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.value-item{
  position: relative;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(248,250,252,.12);

  /* Glass blur effect on the value grid tiles */
  background: rgba(15,23,42,.48);
  backdrop-filter: blur(12px);

  font-weight: 700;
  color: rgba(248,250,252,.86);

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.10),
    0 10px 26px rgba(0,0,0,.25);

  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.value-item:hover{
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.38);
  background: rgba(15,23,42,.56);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.10),
    0 16px 42px rgba(0,0,0,.32);
}

/* Note box: glassy depth, subtle gradients, matches value/investment area */
.note-box{
  position: relative;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(248,250,252,.12);
  overflow: hidden;

  background:
    radial-gradient(700px 260px at 12% 0%, rgba(99,102,241,.12), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.78), rgba(15,23,42,.72));

  backdrop-filter: blur(12px);
  box-shadow:
    0 22px 70px rgba(0,0,0,.45),
    0 8px 22px rgba(0,0,0,.28);
}

.note-box > *{ position: relative; z-index: 1; }

.note-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  color: rgba(248,250,252,.92);
  margin-bottom: 6px;
}

.note-box .muted{
  color: rgba(248,250,252,.72);
}

.contact-card{
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}
.contact-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(248,250,252,.08);
  gap: 16px;
}
.label{ color: rgba(248,250,252,.66); font-weight: 600; font-size: 13px; }

.final-cta{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.final-title{ font-weight: 700; font-size: 18px; }
.final-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.footer{
  padding: 46px 0 0;
  border-top: 1px solid var(--line);
  background: rgba(15,23,42,.9);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 26px;
  align-items:flex-start;
}
.footer-brand p{ margin: 10px 0 0; }
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.footer-col{
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.footer-title{
  font-weight: 700;
  color: rgba(248,250,252,.88);
  margin-bottom: 4px;
}
.footer-col a{
  color: rgba(248,250,252,.72);
  font-weight: 600;
}
.footer-col a:hover{ color: var(--primary); }

.footer-bottom{
  margin-top: 28px;
  border-top: 1px solid rgba(248,250,252,.08);
  padding: 16px 0 22px;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}
@keyframes rise{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
.reveal.show > *{
  animation: rise .6s ease both;
}
.reveal.show > *:nth-child(2){ animation-delay: .08s; }
.reveal.show > *:nth-child(3){ animation-delay: .16s; }
.reveal.show > *:nth-child(4){ animation-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.show{ transition: none; transform: none; }
  .reveal.show > *{ animation: none; }
  .mobile-nav, .mobile-panel{ transition: none; }
  .mobile-panel{ transform: none; opacity: 1; }
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .menu-btn{ display:flex; }
  .header-cta{ display:none; }
  .hero-inner{ grid-template-columns: 1fr; }
  /* Reduce excess top spacing between navbar and hero content on mobile */
  .hero{
    padding: 88px 0 48px;
  }
  .hero-subtitle{ max-width: 100%; }
  .split{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .timeline::before{
    left: 16px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
  .t-item{ padding-left: 32px; }
  .tools-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: 1fr; }
  /* Show 90k (featured) plan first on mobile */
  .pricing-grid .price-card.featured{
    order: -1;
  }
  .hero-proof{ grid-template-columns: 1fr; }
  .who-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-strip, .final-cta{ flex-direction: column; align-items: flex-start; }

  /* --- Journey: Mobile (sticky program header + stacked cards) --- */
:root{
  /* Will be overwritten by JS on load/resize */
  --siteHeaderH: 64px;
  --programHeadH: 150px;

  /* Sticky offset for the cards (header + program heading + breathing space) */
  --journey-top: calc(var(--siteHeaderH) + var(--programHeadH) + 14px);
  --journey-card-radius: 24px;
}
/* Wrapper that constrains the sticky program head to ONLY the card stack area */
#program .program-sticky-wrap{
  position: relative;
}
/* Make Program heading sticky on mobile, then cards run underneath */
#program .program-head{
  position: sticky;
  top: calc(var(--siteHeaderH) + env(safe-area-inset-top, 0px));
  z-index: 80;

  /* Premium sticky glass backdrop so text stays readable */
  margin: 0;
  padding: 10px 0 14px;
  background: transparent;
  backdrop-filter: none;
}
#program .program-head *{
  position: relative;
  z-index: 1;
}

/* Remove the big bottom margin from the section-head when it becomes sticky */
#program .program-head .section-head{
  margin-bottom: 0;
}

/* Journey becomes single column on mobile */
.journey{
  grid-template-columns: 1fr;
  gap: 18px;
}
.journey-left{ display:none; }

/* The card stack area ends naturally after last card (so next section scrolls normally) */
.journey-right{
  position: relative;
  display: block;
  padding-top: 10px;
  padding-bottom: 90px; /* just enough room for last card to unstick cleanly */
}

/* Each card sticks below the sticky program header */
.journey-panel{
  position: sticky;
  top: calc(var(--journey-top) + env(safe-area-inset-top, 0px));
  z-index: 10;
  display: block;
  width: 100%;

  height: auto;
  min-height: 0;
  padding: 22px 18px 18px;
  border-radius: var(--journey-card-radius);

  background:
    radial-gradient(900px 420px at 20% 0%, rgba(99,102,241,.22), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(217,249,157,.10), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.86), rgba(15,23,42,.66));

  border: 1px solid rgba(248,250,252,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);

  opacity: 1;
  transform: none;
  transition: box-shadow .28s ease, border-color .28s ease, transform .28s ease;
  overflow: hidden;
}

/* Add a small visible gap between stacked sticky cards (no overlap) */
.journey-panel + .journey-panel{
  margin-top: 14px;
}

/* Active card gets a little lift and stronger border */
.journey-panel.is-active{
  border-color: rgba(99,102,241,.55);
  box-shadow: 0 30px 92px rgba(0,0,0,.62);
  transform: translateY(-2px);
}

.journey-panel .panel-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

/* Remove decorative divider on mobile */
.journey-panel .panel-inner::before{
  content: none !important;
  display: none !important;
}

/* ===== Hierarchy: Number -> Month -> Heading (centered) ===== */
.journey-panel .panel-meta{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 2px 0 8px;
  text-align: center;
}

.journey-panel .panel-num{
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(99,102,241,.95);
  text-shadow: 0 18px 40px rgba(99,102,241,.22);
}

.journey-panel .panel-badge{
  padding: 0;
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(248,250,252,.62);
}

.journey-panel h3{
  font-size: 24px;
  line-height: 1.18;
  margin: 0;
  text-align: center;
  letter-spacing: -0.02em;
}

/* ===== Body and bullets left-aligned to the full card width ===== */
.journey-panel p{
  font-size: 15px;
  line-height: 1.65;
  margin: 8px 0 0;
  text-align: left;
  max-width: none;
}

.journey-panel ul,
.journey-panel .panel-bullets{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journey-panel ul li,
.journey-panel .panel-bullets li{
  position: relative;
  padding: 0 0 0 18px;
  background: none;
  border: none;
  box-shadow: none;
  color: rgba(248,250,252,.82);
  line-height: 1.6;
  font-size: 15px;
  text-align: left;
}

.journey-panel ul li::before,
.journey-panel .panel-bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(99,102,241,.95);
  box-shadow: 0 0 0 4px rgba(99,102,241,.12);
}

/* Chips centered and separated */
.journey-panel .panel-chips{
  margin-top: 18px;
  padding-top: 16px;
  padding-bottom: 6px;
  border-top: 1px solid rgba(248,250,252,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.journey-panel .panel-chips span{
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.30);
  color: rgba(248,250,252,.85);
  font-weight: 700;
}

/* Small phones */
@media (max-width: 520px){
  .journey-panel{ padding: 20px 16px 16px; }
  .journey-panel h3{ font-size: 22px; }
  .journey-panel p{ font-size: 14.5px; }
  .journey-panel .panel-num{ font-size: 44px; }
  .journey-panel + .journey-panel{ margin-top: 12px; }
}
}
/* ===== Scroll-to-top + progress ring (bottom-right) ===== */
.scroll-top{
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  /* Filled circle */
  background: rgba(15,23,42,.82);
  border: 1px solid rgba(248,250,252,.14);
  backdrop-filter: blur(12px);

  display: grid;
  place-items: center;

  cursor: pointer;
  z-index: 90;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.98);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .25s ease;

  /* Prevent any ring bleed/overlap */
  overflow: hidden;

  box-shadow: 0 18px 48px rgba(0,0,0,.38);
}

.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 60px rgba(0,0,0,.48);
}

.scroll-top:active{
  transform: translateY(-1px) scale(.995);
}

/* Soft aura */
.scroll-top::before{
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15,23,42,.88), rgba(15,23,42,.70));
  filter: blur(10px);
  opacity: .55;
  pointer-events: none;
}

.scroll-top__icon{
  position: relative;
  z-index: 2;

  /* Remove font-box weirdness */
  line-height: 1;
  display: grid;
  place-items: center;

  color: rgba(248,250,252,.92);
  font-weight: 900;
  font-size: 18px;

  transform: translateY(-1px);
}

.scroll-top__ring{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 1;
  pointer-events: none;
}

/* IMPORTANT: no fill on circles, only stroke */
.scroll-top__track,
.scroll-top__progress{
  fill: none;
  stroke-width: 4;
}

.scroll-top__track{
  stroke: rgba(248,250,252,.14);
}

/* Ring itself */
.scroll-top__progress{
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 6px 14px rgba(99,102,241,.22));
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .scroll-top{ transition: none; }
  .scroll-top:hover{ transform: none; }
}

@media (max-width: 720px){
  .scroll-top{
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
.scroll-top-ring .ring-progress{
  /* fallback first */
  stroke: rgba(99,102,241,.95);
  /* gradient second (must be after fallback) */
  stroke: url(#scrollRingGradient);

  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 26px 26px;

  filter: drop-shadow(0 0 10px rgba(99,102,241,var(--ringGlow, .45)));
}
@keyframes premiumSpin{
  to{ transform: rotate(360deg); }
}