/* Unva — Landing page (standalone) */

:root {
  --bg: #070B16;
  --bg2: #0A1124;
  --surface: rgba(255, 255, 255, .045);
  --surface2: rgba(255, 255, 255, .07);
  --border: rgba(148, 163, 184, .16);
  --blue: #3B82F6;
  --blue-l: #60A5FA;
  --cyan: #22D3EE;
  --cyan-d: #06B6D4;
  --violet: #8B5CF6;
  --green: #34D399;
  --text: #F4F8FF;
  --sub: #A6B6D0;
  --muted: #5E6E8C;
  --grad: linear-gradient(120deg, #8B5CF6 0%, #3B82F6 50%, #22D3EE 100%);
  --display: 'Space Grotesk', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans Arabic', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans Arabic', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans Arabic', ui-monospace, monospace;
}

/* ===== Reset / base ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #070B16; }
::selection { background: rgba(34, 211, 238, .28); }
a { color: inherit; text-decoration: none; }

@keyframes uv-breathe {
  0%, 100% { transform: scale(.82); opacity: .55; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* ===== Shared inline-token classes ===== */
.uv-i { width: 1em; height: 1em; display: inline-flex; vertical-align: -.125em; }
.uv-logo {
  display: inline-block;
  background: url(../assets/app-icon.png) center/cover no-repeat;
  border-radius: 7px;
  flex: 0 0 auto;
}
.gt { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.em { color: var(--sub); }
.hl { color: var(--text); font-style: normal; }

.uv-langsel {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 16px 0 0;
  outline: none;
}
.uv-langsel option { background: #0A1124; color: #F4F8FF; }

.uv-faq { padding: 20px 22px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); }
.uv-faq + .uv-faq { margin-top: 12px; }
.uv-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text);
}
.uv-faq summary::-webkit-details-marker { display: none; }
.uv-faq summary .uv-chev { transition: transform .2s ease; color: var(--cyan); flex: 0 0 auto; }
.uv-faq[open] summary .uv-chev { transform: rotate(180deg); }
.uv-faq p { color: var(--sub); font-size: 14.5px; line-height: 1.65; margin: 12px 0 0; }

/* ===== Utilities ===== */
.ic-13 { width: 13px; height: 13px; }
.ic-14 { width: 14px; height: 14px; }
.ic-15 { width: 15px; height: 15px; }
.ic-16 { width: 16px; height: 16px; }
.ic-17 { width: 17px; height: 17px; }
.ic-18 { width: 18px; height: 18px; }
.ic-20 { width: 20px; height: 20px; }
.ic-22 { width: 22px; height: 22px; }
.ic-24 { width: 24px; height: 24px; }
.ic-26 { width: 26px; height: 26px; }
.ic-32 { width: 32px; height: 32px; }
.logo-28 { width: 28px; height: 28px; }
.logo-30 { width: 30px; height: 30px; }

.c-cyan { color: var(--cyan); }
.c-green { color: var(--green); }
.c-sub { color: var(--sub); }
.c-muted { color: var(--muted); }
.c-violet { color: var(--violet); }
.c-blue-l { color: var(--blue-l); }

.mw480 { max-width: 480px; }
.mw520 { max-width: 520px; }
.mw600 { max-width: 600px; }
.mw640 { max-width: 640px; }
.mw720 { max-width: 720px; }
.mw780 { max-width: 780px; }
.mw800 { max-width: 800px; }
.mt16 { margin-top: 16px; }

/* ===== Root shell ===== */
.uv-root {
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(1200px 720px at 78% -8%, rgba(139, 92, 246, .20), transparent 60%),
    radial-gradient(900px 620px at 8% 4%, rgba(34, 211, 238, .14), transparent 58%),
    radial-gradient(1000px 800px at 50% 118%, rgba(59, 130, 246, .12), transparent 60%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}
.uv-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148, 163, 184, .10) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(120% 70% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 70% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
  opacity: .9;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 11, 22, .66);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: 10px;
  flex: 1 1 auto;
  font-size: 14.5px;
  color: var(--sub);
  flex-wrap: wrap;
}
.nav-link { transition: color .15s; }
.nav-link:hover { color: var(--text); }
.lang-picker {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  flex: 0 0 auto;
}
.lang-chev { width: 13px; height: 13px; color: var(--sub); margin-left: -12px; pointer-events: none; }
.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14.5px;
  color: #05101f;
  background: var(--grad);
  box-shadow: 0 8px 26px rgba(59, 130, 246, .34);
}

/* ===== Section scaffolding ===== */
.section { max-width: 1180px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 40px); }
.band { position: relative; }
.band-inner { max-width: 1180px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 40px); }
.band-inner--split { display: flex; gap: clamp(36px, 6vw, 72px); align-items: center; flex-wrap: wrap; }
.split-copy { flex: 1 1 360px; min-width: 300px; }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--cyan);
  text-transform: uppercase;
}
.kicker--rose { color: #FB7185; }
.kicker--violet { color: var(--violet); }
.kicker--green { color: var(--green); }
.section-h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 46px);
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 14px 0 0;
}
.section-sub { color: var(--sub); font-size: 16px; margin: 14px 0 0; }

/* ===== Hero ===== */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 4vw, 40px) clamp(40px, 6vw, 72px);
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.hero-copy { flex: 1 1 440px; min-width: 300px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  color: var(--cyan);
  text-transform: uppercase;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 22px 0 0;
}
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--sub); max-width: 520px; margin: 22px 0 0; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  border-radius: 13px;
  font-weight: 700;
}
.store-btn--light { background: #fff; color: #0A1124; box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }
.store-btn--dark { background: var(--surface2); border: 1px solid var(--border); color: var(--text); }
.store-label { display: flex; flex-direction: column; line-height: 1.05; }
.store-label-top { font-size: 10px; font-weight: 600; letter-spacing: .05em; }
.store-btn--light .store-label-top { opacity: .62; }
.store-btn--dark .store-label-top { color: var(--muted); }
.store-label-main { font-size: 16px; }
.hero-privacy { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--muted); font-size: 13.5px; }

/* ===== Phone mockup ===== */
.hero-phone { flex: 1 1 300px; min-width: 300px; display: flex; justify-content: center; position: relative; }
.phone-glow {
  position: absolute;
  inset: -8% -4%;
  background: var(--grad);
  filter: blur(70px);
  opacity: .3;
  border-radius: 50%;
}
.phone-frame {
  position: relative;
  width: 296px;
  height: 608px;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(160deg, #1a2440, #0b1326);
  box-shadow: 0 40px 90px -28px rgba(0, 0, 0, .8), 0 0 0 1px rgba(148, 163, 184, .18), inset 0 0 0 2px rgba(255, 255, 255, .05);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: radial-gradient(120% 70% at 50% -10%, rgba(139, 92, 246, .30), transparent 55%), #080E1E;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: #05090f;
  border-radius: 0 0 16px 16px;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--sub);
}
.phone-status-icons { display: flex; gap: 5px; align-items: center; }
.phone-body { padding: 18px 22px 0; flex: 1; display: flex; flex-direction: column; }
.phone-greeting { margin: 8px 0 0; font-size: 13px; color: var(--sub); }
.phone-great { margin: 1px 0 0; font-family: var(--display); font-weight: 600; font-size: 18px; }
.phone-ring { position: relative; margin: 18px auto 0; width: 188px; height: 188px; display: grid; place-items: center; }
.phone-ring-svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.phone-ring-center { text-align: center; }
.phone-day { font-family: var(--display); font-weight: 700; font-size: 54px; line-height: 1; letter-spacing: -.03em; }
.phone-day-label { font-size: 11.5px; color: var(--sub); margin-top: 3px; }
.phone-time { font-family: var(--mono); font-size: 12px; color: var(--cyan); margin-top: 5px; }
.phone-card { padding: 13px 15px; border-radius: 15px; background: var(--surface); border: 1px solid var(--border); }
.phone-card--saved { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.phone-card--milestone { margin-top: 11px; }
.phone-card-label { font-size: 11px; color: var(--muted); }
.phone-saved-val { font-family: var(--mono); font-weight: 700; font-size: 18px; margin-top: 2px; }
.phone-saved-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, .14);
  color: var(--green);
}
.phone-milestone-head { display: flex; justify-content: space-between; font-size: 11.5px; }
.phone-pct { font-family: var(--mono); color: var(--cyan); }
.phone-progress { height: 7px; border-radius: 99px; background: rgba(255, 255, 255, .08); margin-top: 8px; overflow: hidden; }
.phone-progress-fill { height: 100%; width: 71%; border-radius: 99px; background: var(--grad); }
.phone-sos-wrap { padding: 0 22px 22px; margin-top: 12px; }
.phone-sos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(120deg, #F43F5E, #FB7185);
  box-shadow: 0 12px 30px rgba(244, 63, 94, .4);
}
.phone-float {
  position: absolute;
  padding: 10px 13px;
  border-radius: 13px;
  background: rgba(10, 17, 36, .82);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6);
}
.phone-float--saved { top: 1%; left: -7%; }
.phone-float--cravings { bottom: 12%; right: -3%; display: flex; align-items: center; gap: 9px; }
.phone-float-label { font-size: 10.5px; color: var(--muted); }
.phone-float-val { font-family: var(--mono); font-weight: 700; font-size: 16px; }
.phone-float-unit { font-size: 11px; color: var(--sub); }
.phone-float-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, .16);
  color: var(--cyan);
}
.phone-float-num { font-family: var(--mono); font-weight: 700; font-size: 15px; }

/* ===== Features ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.feature-card {
  padding: 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .15s;
}
.feature-card--cyan:hover { border-color: rgba(34, 211, 238, .4); }
.feature-card--green:hover { border-color: rgba(52, 211, 153, .4); }
.feature-card--blue:hover { border-color: rgba(59, 130, 246, .4); }
.feature-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; }
.feature-icon--violet { background: rgba(139, 92, 246, .16); color: var(--violet); }
.feature-icon--green { background: rgba(52, 211, 153, .15); color: var(--green); }
.feature-icon--blue { background: rgba(59, 130, 246, .16); color: var(--blue-l); }
.feature-title { font-family: var(--display); font-weight: 600; font-size: 20px; margin: 18px 0 0; }
.feature-body { color: var(--sub); font-size: 15px; margin: 9px 0 0; }
.relapse {
  margin-top: 18px;
  padding: 26px clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(139, 92, 246, .12), rgba(34, 211, 238, .08));
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.relapse-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  color: var(--cyan);
  flex: 0 0 auto;
}
.relapse-text { flex: 1 1 320px; }
.relapse-title { font-family: var(--display); font-weight: 600; font-size: 20px; margin: 0; }
.relapse-body { color: var(--sub); font-size: 15px; margin: 8px 0 0; }

/* ===== SOS ===== */
.band--sos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(244, 63, 94, .06), transparent 40%);
}
.sos-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.sos-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
}
.sos-win { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--sub); font-size: 14.5px; }
.sos-visual { flex: 1 1 300px; min-width: 280px; display: flex; justify-content: center; }
.sos-ring { position: relative; width: 300px; height: 300px; display: grid; place-items: center; }
.sos-pulse {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, .32), transparent 68%);
  animation: uv-breathe 5.5s ease-in-out infinite;
}
.sos-ring-border { position: absolute; width: 236px; height: 236px; border-radius: 50%; border: 1px solid rgba(251, 113, 133, .4); }
.sos-ring-svg { position: absolute; transform: rotate(-90deg); }
.sos-ring-center { text-align: center; position: relative; }
.sos-passin { font-size: 13px; color: var(--sub); }
.sos-timer { font-family: var(--display); font-weight: 700; font-size: 56px; line-height: 1.05; letter-spacing: -.02em; }
.sos-breathe { font-size: 13px; color: #FB7185; }

/* ===== Recovery ===== */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.rec-card { padding: 22px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); }
.rec-card--done { border-color: rgba(52, 211, 153, .32); }
.rec-card--year { background: linear-gradient(135deg, rgba(139, 92, 246, .16), rgba(34, 211, 238, .1)); }
.rec-card-head { display: flex; justify-content: space-between; align-items: center; }
.rec-time { font-family: var(--mono); font-size: 13px; }
.rec-body { font-weight: 600; margin: 12px 0 0; font-size: 15.5px; }
.rec-disclaimer {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== Pricing ===== */
.band--pricing { border-top: 1px solid var(--border); background: linear-gradient(180deg, rgba(139, 92, 246, .06), transparent 42%); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 42px;
  align-items: start;
}
.price-card { padding: 28px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); }
.price-card--pro {
  position: relative;
  background: linear-gradient(160deg, rgba(139, 92, 246, .14), rgba(34, 211, 238, .08));
  border-color: rgba(139, 92, 246, .35);
}
.price-head { display: flex; align-items: center; justify-content: space-between; }
.price-name { font-family: var(--display); font-weight: 700; font-size: 22px; }
.price-amt { font-family: var(--mono); font-weight: 700; font-size: 20px; color: var(--green); }
.price-tag { color: var(--muted); font-size: 13.5px; margin: 4px 0 0; }
.price-tag--pro { color: var(--sub); }
.price-list { display: grid; gap: 13px; margin-top: 22px; }
.price-row { display: flex; gap: 11px; align-items: flex-start; }
.price-check { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.price-feat { font-size: 14.5px; }
.price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 24px; }
.price-tier { padding: 12px 8px; border-radius: 13px; background: rgba(255, 255, 255, .04); border: 1px solid var(--border); text-align: center; }
.price-tier--year { background: rgba(34, 211, 238, .1); border-color: rgba(34, 211, 238, .35); }
.price-tier-label { font-size: 12px; color: var(--sub); }
.price-tier-amt { font-family: var(--mono); font-weight: 700; font-size: 16px; margin-top: 4px; }
.price-tier-note { font-size: 10px; color: var(--muted); margin-top: 2px; }
.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 13px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 15px;
  color: #05101f;
  background: var(--grad);
  box-shadow: 0 10px 28px rgba(59, 130, 246, .32);
}
.price-note {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 640px;
  text-align: center;
}
.price-note-icon { width: 18px; height: 18px; flex: 0 0 auto; color: var(--green); }
.price-note-text { font-size: 14px; color: var(--sub); }

/* ===== Privacy ===== */
.band--privacy { border-top: 1px solid var(--border); background: linear-gradient(180deg, rgba(52, 211, 153, .05), transparent 40%); }
.priv-list { display: grid; gap: 14px; margin-top: 26px; max-width: 480px; }
.priv-row { display: flex; gap: 12px; align-items: center; }
.priv-item { font-weight: 600; }
.priv-visual { flex: 0 1 360px; min-width: 280px; display: flex; justify-content: center; }
.priv-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 32px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7);
}
.priv-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(52, 211, 153, .4), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.priv-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: rgba(52, 211, 153, .14);
  color: var(--green);
}
.priv-card-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 18px;
}
.priv-card-title { font-family: var(--display); font-weight: 700; font-size: 26px; margin-top: 8px; letter-spacing: -.02em; }
.priv-card-body { color: var(--sub); font-size: 14px; margin: 10px 0 0; }

/* ===== FAQ ===== */
.band--faq { border-top: 1px solid var(--border); }
.faq-inner { max-width: 820px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 40px); }
.faq-h2 { margin-bottom: 34px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: rgba(7, 11, 22, .6); }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 4vw, 40px) 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
}
.footer-brand { grid-column: 1 / -1; max-width: 340px; }
.footer-brand-link { display: flex; align-items: center; gap: 10px; }
.footer-tagline { color: var(--sub); font-size: 14px; margin: 14px 0 0; }
.footer-stores { display: flex; gap: 10px; margin-top: 18px; }
.footer-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
}
.footer-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 11px; margin-top: 14px; font-size: 14px; color: var(--sub); }
.footer-link { transition: color .15s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 40px) 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-copy { font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 0; }
.footer-disclaimer { font-size: 12px; color: var(--muted); margin: 0; max-width: 600px; }

/* ===== How it works ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.how-step {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .15s;
}
.how-step:hover { border-color: rgba(139, 92, 246, .4); }
.how-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(139, 92, 246, .22), rgba(34, 211, 238, .16));
  border: 1px solid var(--border);
}
.how-step-title { font-family: var(--display); font-weight: 600; font-size: 19px; margin: 18px 0 0; }
.how-step-body { color: var(--sub); font-size: 15px; margin: 9px 0 0; }

/* ===== Value stats band ===== */
.band--stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(52, 211, 153, .05), transparent 44%);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.stat {
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 42px);
  letter-spacing: -.02em;
  line-height: 1.02;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--sub); font-size: 14px; margin: 10px 0 0; }
.stat-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12.5px;
}

/* ===== Closing CTA band ===== */
.band--cta {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(139, 92, 246, .08), transparent 55%);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 40px);
  text-align: center;
}
.cta-sub { color: var(--sub); font-size: 16px; margin: 16px auto 0; max-width: 520px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}
