
/* ================================================================
   LANGUAGE PICKER
================================================================ */

/* Hide all Google Translate UI — we use our own */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-ftab-float,
.goog-te-menu-frame { display: none !important; }
.goog-text-highlight  { background: none !important; box-shadow: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

/* Nav right section */
.nav-right {
  display: flex; align-items: center; gap: 10px;
}

/* Wrapper — positions the dropdown */
.lang-wrap {
  position: relative;
}

/* Globe trigger button */
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  height: 36px; padding: 0 10px; border-radius: var(--r2);
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65); cursor: pointer;
  transition: all var(--fast);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em;
}
.lang-btn:hover { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.30); }
.lang-wrap.open .lang-btn { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.30); }
.nav.scrolled .lang-btn { color: var(--text-2); border-color: var(--border); }
.nav.scrolled .lang-btn:hover { background: var(--surface); color: var(--text-1); }
.nav.scrolled .lang-wrap.open .lang-btn { background: var(--surface); color: var(--text-1); }

.lang-globe  { width: 16px; height: 16px; }
.lang-current { font-variant-numeric: tabular-nums; }
.lang-chevron {
  width: 10px; height: 10px;
  transition: transform var(--fast);
}
.lang-wrap.open .lang-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.lang-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 260px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r3); box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  z-index: 500; overflow: hidden;
}

/* Search input row */
.lang-search-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border);
}
.lang-search-icon { width: 14px; height: 14px; color: var(--text-3); flex-shrink: 0; }
.lang-search {
  flex: 1; font-family: var(--sans); font-size: var(--t1);
  color: var(--text-1); background: transparent; border: none; outline: none;
  padding: 2px 0;
}
.lang-search::placeholder { color: var(--text-3); }

/* Scrollable list */
.lang-list {
  max-height: 280px; overflow-y: auto;
  padding: 6px;
  scroll-behavior: smooth;
}
.lang-list::-webkit-scrollbar { width: 4px; }
.lang-list::-webkit-scrollbar-track { background: transparent; }
.lang-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Individual language option */
.lang-opt {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  width: 100%; padding: 9px 10px; border-radius: var(--r1);
  background: transparent; border: none; cursor: pointer;
  text-align: left; transition: background var(--fast);
}
.lang-opt:hover { background: var(--sage-faint); }
.lang-opt.active { background: var(--sage-subtle); }
.lang-native {
  font-size: var(--t1); font-weight: 600; color: var(--text-1);
  line-height: 1.3;
}
.lang-en {
  font-size: var(--t0); color: var(--text-3); white-space: nowrap;
  font-weight: 400;
}
.lang-opt.active .lang-native { color: var(--sage); }
.lang-opt.active .lang-en     { color: var(--sage); opacity: 0.7; }

/* Mobile: lang panel goes left-aligned on small screens */
@media (max-width: 400px) {
  .lang-panel { right: auto; left: 0; width: 240px; }
}
/* ================================================================
   NAV
================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 20px;
  border-bottom: 1px solid transparent;
  transition: background var(--slow), border-color var(--slow);
}
.nav.scrolled {
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { font-family: var(--serif); font-size: 22px; color: #fff; transition: color var(--mid); }
.nav.scrolled .nav-logo { color: var(--text-1); }
.nav-links { display: none; }
.nav-btn {
  font-family: var(--sans); font-size: var(--t1); font-weight: 600;
  padding: 8px 18px; min-height: 38px;
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1); color: #fff;
  transition: all var(--fast); cursor: pointer;
}
.nav-btn:hover { background: rgba(255,255,255,0.18); }
.nav.scrolled .nav-btn { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }
.nav.scrolled .nav-btn:hover { background: #111110; }

@media (min-width: 768px) {
  .nav { padding: 0 32px; }
  .nav-inner { height: 64px; }
  .nav-logo  { font-size: 24px; }
  .nav-links {
    display: flex; align-items: center; gap: 28px; list-style: none;
  }
  .nav-links a {
    font-size: var(--t1); font-weight: 500;
    color: rgba(255,255,255,0.50); transition: color var(--fast);
  }
  .nav.scrolled .nav-links a { color: var(--text-2); }
  .nav-links a:hover { color: #fff; }
  .nav.scrolled .nav-links a:hover { color: var(--text-1); }
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 90svh;
  background: var(--dark-1);
  display: flex; align-items: flex-start;
  position: relative; overflow: hidden;
  padding: max(70px, 9svh) 20px 72px;
}
/* Subtle ground line that bridges hero → trust bar */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,124,89,0.30), transparent);
}
.hero-g1 {
  pointer-events: none;
  position: absolute; top: -5%; right: -8%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.36) 0%, transparent 58%);
}
.hero-g2 {
  pointer-events: none;
  position: absolute; bottom: -10%; left: -10%;
  width: 42vw; height: 42vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.16) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 48px;
}

.hero-pill { margin-bottom: 20px; opacity: 0; animation: rise 0.6s var(--ease) 0.05s both; }
.hero-h {
  font-family: var(--serif); font-size: var(--t6);
  line-height: var(--lh-tight); color: #fff;
  margin-bottom: 18px;
  opacity: 0; animation: rise 0.8s var(--ease) 0.18s both;
}
.hero-h em { font-style: italic; color: rgba(255,255,255,0.38); }
.hero-sub {
  font-size: var(--t3); color: rgba(255,255,255,0.46);
  line-height: var(--lh-loose); margin-bottom: 32px; max-width: 440px;
  opacity: 0; animation: rise 0.8s var(--ease) 0.30s both;
}
.hero-cta {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  opacity: 0; animation: rise 0.8s var(--ease) 0.42s both;
}
.hero-trust { font-size: var(--t1); color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-sep   { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.18); }

/* Mockup */
.hero-visual { opacity: 0; animation: rise 1s var(--ease) 0.50s both; }
.mkp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r4);
  overflow: hidden;
  box-shadow: 0 48px 96px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.mkp-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mkp-logo { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.55); }
.mkp-dots { display: flex; gap: 5px; }
.mkp-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.mkp-body { padding: 14px 16px 18px; }
.mkp-stage {
  background: #0c1f15; border-radius: var(--r3); padding: 14px;
  margin-bottom: 10px; position: relative; overflow: hidden;
}
.mkp-stage::after { content:''; position:absolute; top:-20px; right:-20px; width:80px; height:80px; border-radius:50%; background:rgba(74,124,89,0.20); }
.mkp-ey   { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.mkp-name { font-family: var(--serif); font-size: 20px; color: #fff; margin-bottom: 3px; position: relative; z-index: 1; }
.mkp-line { font-size: 10px; color: rgba(255,255,255,0.44); line-height: 1.5; margin-bottom: 10px; }
.mkp-path { display: flex; background: rgba(255,255,255,0.06); border-radius: 5px; padding: 2px; }
.mkp-ps   { flex: 1; text-align: center; padding: 4px 2px; border-radius: 3px; font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.18); }
.mkp-ps.a { background: rgba(255,255,255,0.10); color: #fff; }
.mkp-ps.d { color: rgba(255,255,255,0.35); }
.mkp-ps-div { display:flex; align-items:center; font-size: 8px; color: rgba(255,255,255,0.12); }
.mkp-lbl  { font-size: 8px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.18); margin: 9px 0 4px; }
.mkp-act  { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r1); padding: 9px 11px; margin-bottom: 7px; display:flex; gap: 7px; }
.mkp-an   { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-size: 7px; font-weight: 700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mkp-at   { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 2px; }
.mkp-ad   { font-size: 8px; color: rgba(255,255,255,0.32); line-height: 1.45; }
.mkp-atag { display:inline-flex; align-items:center; gap:2px; background:rgba(74,124,89,0.18); border:1px solid rgba(74,124,89,0.28); color:#6A9B79; font-size:7px; font-weight:700; padding:2px 6px; border-radius:var(--r5); margin-top:3px; }
.mkp-fac  { display:flex; align-items:center; gap:6px; padding:5px 9px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.05); border-radius:var(--r1); margin-bottom:3px; }
.mkp-fs   { width:15px; height:15px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mkp-fs.g { background:rgba(74,124,89,0.22); }
.mkp-fs.o { background:rgba(184,107,26,0.18); }
.mkp-fs svg { width:8px; height:8px; }
.mkp-fn   { font-size: 9px; font-weight:600; color:rgba(255,255,255,0.45); flex:1; }
.mkp-ft   { font-size: 8px; color:rgba(255,255,255,0.22); }

/* Floating badges */
.hb {
  position: absolute; background: #fff; border-radius: var(--r3);
  padding: 10px 14px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px; min-width: 140px;
}
.hb-1 { bottom: -16px; left: -20px; animation: float 5s ease-in-out 0.8s infinite; }
.hb-2 { top: 12px; right: -14px;   animation: float 5s ease-in-out 2.0s infinite; }
.hb-icon { width: 32px; height: 32px; border-radius: var(--r1); background: var(--sage-faint); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hb-icon svg { width:16px; height:16px; }
.hb-lbl  { font-size: 10px; color: var(--text-3); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1px; }
.hb-val  { font-family: var(--serif); font-size: 18px; color: var(--text-1); line-height: 1; }
.hb-val.green { color: var(--sage); }

@keyframes rise  { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }

@media (min-width: 900px) {
  .hero { padding: 64px 32px 64px; min-height: 82svh; align-items: center; }
  .hero-inner { flex-direction: row; align-items: center; gap: 72px; }
  .hero-text { flex: 0 0 50%; }
  .hero-visual { flex: 1; }
  .hero-cta { flex-direction: row; align-items: center; }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.ti { display:flex; align-items:center; gap:7px; font-size: var(--t1); color: var(--text-2); font-weight: 500; white-space: nowrap; }
.ti-ck { width: 20px; height: 20px; border-radius: 50%; background: var(--sage-subtle); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ti-ck svg { width: 10px; height: 10px; }

@media (min-width: 768px) {
  .trust-bar { padding: 20px 32px; }
  .trust-bar-inner { gap: 36px; }
}

/* ================================================================
   SECTION SHELL
================================================================ */
.sec { padding: 72px 20px; }
.sec-inner { max-width: var(--max-w); margin: 0 auto; }
.sec-ey { font-size: var(--t0); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.sec-h  { font-family: var(--serif); font-size: var(--t5); line-height: var(--lh-snug); color: var(--text-1); margin-bottom: 14px; }
.sec-sub{ font-size: var(--t3); color: var(--text-2); line-height: var(--lh-loose); max-width: 520px; }

@media (min-width: 768px) { .sec { padding: 96px 32px; } }
@media (min-width: 768px) {
  :root { --app-w: 580px; }
  .stage-hero { border-radius: var(--r4); }
  #app { display: flex; flex-direction: column; align-items: center; }
  .screen { align-items: center; }
  .sticky-bar { display: flex; justify-content: center; }
}

/* ================================================================
   PROBLEM SECTION
================================================================ */
.s-problem { background: var(--bg); }
.prob-grid { display: flex; flex-direction: column; gap: 48px; }
.prob-h   { font-family: var(--serif); font-size: clamp(24px,4vw,40px); line-height: var(--lh-snug); color: var(--text-1); margin-bottom: 16px; }
.prob-h em { font-style: italic; color: var(--text-3); }
.prob-body { font-size: var(--t3); color: var(--text-2); line-height: var(--lh-loose); margin-bottom: 28px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-c {
  background: var(--surface); border-radius: var(--r3); padding: 22px 20px;
  border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
}
.stat-c::before { content: ''; position: absolute; bottom: -20px; right: -20px; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.08) 0%, transparent 70%); }
.stat-n { font-family: var(--serif); font-size: 40px; color: var(--text-1); line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: var(--t1); color: var(--text-2); line-height: var(--lh-normal); }

.frust-list { display: flex; flex-direction: column; gap: 10px; }
.frust-c {
  background: var(--surface);
  border-radius: var(--r3); border: 1.5px solid var(--border);
  padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform var(--mid) var(--ease), border-color var(--fast);
}
.frust-c:hover { transform: translateX(4px); border-color: var(--sage-mid); }
.frust-ic { width: 38px; height: 38px; border-radius: var(--r2); background: var(--sage-subtle); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.frust-ic svg { width: 18px; height: 18px; }
.frust-title { font-size: var(--t2); font-weight: 700; color: var(--text-1); margin-bottom: 3px; line-height: var(--lh-snug); }
.frust-desc  { font-size: var(--t1); color: var(--text-2); line-height: var(--lh-normal); }

@media (min-width: 900px) {
  .prob-grid { flex-direction: row; align-items: center; gap: 64px; }
  .prob-grid > * { flex: 1; }
}

/* ================================================================
   HOW IT WORKS
================================================================ */
.s-how { background: var(--paper); }
.steps-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.step-c {
  background: var(--surface); border-radius: var(--r4);
  border: 1.5px solid var(--border); padding: 28px;
  transition: border-color var(--fast), box-shadow var(--fast);
  position: relative; overflow: hidden;
}
.step-c::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; border-radius: var(--r4) var(--r4) 0 0;
  transition: background var(--mid);
}
.step-c:hover { border-color: var(--sage-mid); box-shadow: var(--sh-md); }
.step-c:hover::after { background: var(--sage); opacity: 0.5; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--text-1); color: #fff;
  font-family: var(--serif); font-size: var(--t3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-title { font-family: var(--serif); font-size: var(--t4); color: var(--text-1); margin-bottom: 8px; line-height: var(--lh-snug); }
.step-desc  { font-size: var(--t1); color: var(--text-2); line-height: var(--lh-loose); }

@media (min-width: 768px) {
  .steps-grid { flex-direction: row; gap: 14px; }
  .step-c { flex: 1; }
}

/* ================================================================
   STAGES
================================================================ */
.s-stages { background: var(--dark-1); position: relative; overflow: hidden; padding: 72px 20px; }
.s-stages::before {
  content: ''; position: absolute; top: -25%; left: 50%; transform: translateX(-50%);
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.s-stages .sec-inner { position: relative; z-index: 1; }
.s-stages .sec-ey  { color: var(--sage-mid); }
.s-stages .sec-h   { color: #fff; }
.s-stages .sec-sub { color: rgba(255,255,255,0.40); }
.stages-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.stage-c {
  border-radius: var(--r4); padding: 22px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--mid) var(--ease), box-shadow var(--mid);
}
/* Consistent decorative blob — same colour on all cards */
.stage-c::before { content:''; position:absolute; top:-40px; right:-40px; width:120px; height:120px; border-radius:50%; background:rgba(74,124,89,0.10); pointer-events:none; }
.stage-c:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(255,255,255,0.09), 0 18px 44px rgba(0,0,0,0.3); }

/* Progressive sage tint — same dark base, increasing warmth toward Ready */
.stage-c.exploring { background: #1E2220; }
.stage-c.building  { background: #1C2520; }
.stage-c.ontrack   { background: #192820; }
.stage-c.ready     { background: #162B1E; }

/* hl is a transient JS-applied class — not hardcoded in HTML */
.stage-c.hl { box-shadow: 0 0 0 1.5px var(--sage), var(--sh-sage); transform: translateY(-2px); }

/* Consistent icon container across all cards */
.stage-ic { width: 36px; height: 36px; border-radius: var(--r2); background: rgba(74,124,89,0.18); display:flex; align-items:center; justify-content:center; margin-bottom: 14px; }
.stage-ic svg { width: 18px; height: 18px; }
.stage-name   { font-family: var(--serif); font-size: var(--t4); color: #fff; margin-bottom: 7px; }
.stage-desc   { font-size: var(--t1); color: rgba(255,255,255,0.55); line-height: var(--lh-normal); margin-bottom: 14px; }
.stage-detail { font-size: var(--t0); color: rgba(255,255,255,0.28); line-height: var(--lh-normal); padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07); }

@media (min-width: 768px) { .stages-grid { flex-direction: row; } .stage-c { flex: 1; } }
@media (min-width: 768px) { .s-stages { padding: 96px 32px; } }

/* ================================================================
   FEATURES
================================================================ */
.s-features { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 40px; }
.feat-c {
  background: var(--surface); border-radius: var(--r4);
  border: 1.5px solid var(--border); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color var(--fast), transform var(--mid) var(--ease);
}
.feat-c::after {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:transparent; border-radius:var(--r4) var(--r4) 0 0;
  transition: background var(--mid);
}
.feat-c:hover { border-color: var(--sage-mid); transform: translateY(-2px); }
.feat-c:hover::after { background: linear-gradient(90deg, transparent, rgba(74,124,89,0.38), transparent); }
.feat-c .ib { margin-bottom: 18px; }
.feat-title { font-family: var(--serif); font-size: var(--t4); color: var(--text-1); margin-bottom: 8px; line-height: var(--lh-snug); }
.feat-desc  { font-size: var(--t1); color: var(--text-2); line-height: var(--lh-loose); }
.feat-c.accent { background: var(--sage); border-color: var(--sage); }
.feat-c.accent::after { display: none; }
.feat-c.accent:hover { border-color: var(--sage-hover); }
.feat-c.accent .ib { background: rgba(255,255,255,0.15); }
.feat-c.accent .feat-title { color: #fff; }
.feat-c.accent .feat-desc  { color: rgba(255,255,255,0.68); }

@media (min-width: 600px)  { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   BOTTOM CTA
================================================================ */
.s-cta {
  background: var(--dark-1); padding: 72px 20px;
  text-align: center; position: relative; overflow: hidden;
}
.s-cta::before {
  content:''; position:absolute; bottom:-20%; left:50%; transform:translateX(-50%);
  width:60vw; height:60vw; border-radius:50%;
  background:radial-gradient(circle, rgba(74,124,89,0.15) 0%, transparent 60%);
  pointer-events:none;
}
.s-cta-inner { max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.s-cta .sec-ey { color: var(--sage-mid); margin-bottom: 12px; }
.cta-h    { font-family: var(--serif); font-size: clamp(28px,5vw,50px); color: #fff; line-height: var(--lh-tight); margin-bottom: 16px; }
.cta-h em { font-style: italic; color: rgba(255,255,255,0.36); }
.cta-sub  { font-size: var(--t3); color: rgba(255,255,255,0.40); line-height: var(--lh-loose); margin-bottom: 36px; }
.cta-trust{ font-size: var(--t1); color: rgba(255,255,255,0.24); margin-top: 18px; }
.s-cta .btn-white { margin: 0 auto; max-width: 280px; }

@media (min-width: 768px) { .s-cta { padding: 96px 32px; } }

/* ================================================================
   FOOTER
================================================================ */
footer { background: var(--dark-foot); padding: 36px 20px; }
.foot-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.foot-logo  { font-family: var(--serif); font-size: 19px; color: rgba(255,255,255,0.28); }
.foot-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.foot-links a { font-size: var(--t1); color: rgba(255,255,255,0.22); transition: color var(--fast); }
.foot-links a:hover { color: rgba(255,255,255,0.50); }
.foot-copy  { font-size: var(--t1); color: rgba(255,255,255,0.16); }
@media (min-width: 768px) {
  footer { padding: 36px 32px; }
  .foot-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ================================================================
   STAGE HERO (result screen)
================================================================ */
.stage-hero {
  width:100%; max-width:var(--app-w);
  margin: 0 20px 14px;
  border-radius:var(--r4); padding:24px;
  position:relative; overflow:hidden;
}


.stage-hero::before { content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,0.04); }
.s-exploring { background:#222220; }
.s-building  { background:#251E0F; }
.s-ontrack   { background:#0D2017; }
.s-ready     { background:#081510; }

.sh-ey   { font-size:var(--t0); font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.30); margin-bottom:10px; }
.sh-name { font-family:var(--serif); font-size:34px; line-height:1; color:#fff; margin-bottom:8px; position:relative; z-index:1; }
.sh-line { font-size:var(--t1); color:rgba(255,255,255,0.56); line-height:var(--lh-loose); margin-bottom:20px; position:relative; z-index:1; }
.sh-path { display:flex; background:rgba(255,255,255,0.07); border-radius:var(--r1); padding:2px; margin-bottom:8px; }
.ps      { flex:1; text-align:center; padding:8px 4px; border-radius:6px; font-size:11px; font-weight:600; color:rgba(255,255,255,0.22); transition:all 0.2s; }
.ps.done   { color:rgba(255,255,255,0.42); }
.ps.active { background:rgba(255,255,255,0.13); color:#fff; }
.ps-div    { display:flex; align-items:center; font-size:10px; color:rgba(255,255,255,0.14); }
.sh-note   { font-size:11px; color:rgba(255,255,255,0.26); text-align:center; }
/* Loading state — spins globe while GT initialises */
.lang-btn[data-loading] .lang-globe {
  animation: lang-spin 0.9s linear infinite;
}
.lang-btn[data-loading] .lang-chevron { opacity: 0; }
@keyframes lang-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
