/* Wellet — Landing page
   Token màu/spacing đồng bộ ../DESIGN_TOKENS.md — đổi giá trị ở đây khi token gốc đổi. */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #EEF0F4;
  --surface: #FFFFFF;
  --surface-alt: #F6F7F9;
  --border: #E7E9EE;
  --text: #10131A;
  --text2: #6B7280;
  --muted: #9AA1AD;
  --accent: #0D5C42;
  --accent-soft: rgba(13, 92, 66, .08);
  --income: #18A06A;
  --expense: #F2784B;
  --warning: #F2B233;
  --shadow: rgba(17, 24, 39, .08);
  --nav-bg: rgba(238, 240, 244, .72);
}

[data-theme="dark"] {
  --bg: #0E1512;
  --surface: #19211D;
  --surface-alt: #232E28;
  --border: #28332E;
  --text: #EDF2EF;
  --text2: #A0ABA5;
  --muted: #717E77;
  --accent: #29B884;
  --accent-soft: rgba(41, 184, 132, .12);
  --income: #33C98B;
  --expense: #FF8A5C;
  --warning: #F4B544;
  --shadow: rgba(0, 0, 0, .45);
  --nav-bg: rgba(14, 21, 18, .72);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .3s, color .3s;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .75; }
::selection { background: var(--accent); color: #fff; }
img, svg { display: block; max-width: 100%; }

@keyframes lpfloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- layout helpers ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 8vw, 104px) 24px; }
.section-narrow { max-width: 1100px; }
.section-alt { max-width: none; background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-alt.section-narrow > * { max-width: 760px; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-header-wide { max-width: 660px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.pill-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--accent); background: var(--accent-soft); padding: 7px 16px; border-radius: 100px; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1.2px; color: var(--text); line-height: 1.1; }
.section-header .lead { margin-top: 16px; font-size: 16px; color: var(--text2); font-weight: 500; line-height: 1.6; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: 26px; padding: 32px; box-shadow: 0 14px 34px -18px var(--shadow); }
.card p { font-size: 15px; line-height: 1.6; color: var(--text2); font-weight: 500; }
.card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.5px; color: var(--text); margin-bottom: 10px; }

.icon-tile { width: 60px; height: 60px; border-radius: 18px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px; }
.icon-tile-sm { width: 52px; height: 52px; border-radius: 15px; font-size: 25px; margin-bottom: 18px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 15px; padding: 14px 24px; border-radius: 14px; border: none; cursor: pointer; white-space: nowrap; }
.btn-accent { background: var(--accent); color: #fff; font-size: 14.5px; padding: 11px 20px; box-shadow: 0 10px 22px -8px var(--accent); }
.btn-white { background: #fff; color: #0D5C42; box-shadow: 0 16px 34px -12px rgba(4, 20, 13, .5); }
.btn-ghost-light { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .24); color: #fff; }
.btn-outline { background: var(--surface-alt); border: 1px solid var(--border); color: var(--text); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); background: var(--nav-bg); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 1; }
.brand-icon { position: relative; width: 38px; height: 38px; border-radius: 11px; overflow: hidden; background: linear-gradient(145deg, #17a074 0%, #0D5C42 68%, #0a4a35 100%); box-shadow: 0 6px 14px -5px rgba(4, 20, 13, .5), inset 0 0 0 1.2px rgba(255, 255, 255, .14); flex-shrink: 0; }
.brand-icon-sm { width: 34px; height: 34px; border-radius: 10px; box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, .14); }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: -.6px; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text2); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: 10px; padding: 3px; }
.lang-link { font-size: 12px; font-weight: 700; letter-spacing: .3px; color: var(--text2); padding: 6px 9px; border-radius: 7px; }
.lang-link-active { background: var(--accent-soft); color: var(--accent); }
.icon-btn { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 17px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.nav-burger { display: none; }
.nav-links-mobile { display: none; flex-direction: column; gap: 4px; padding: 0 24px 16px; }
.nav-links-mobile a { font-size: 15px; font-weight: 600; color: var(--text2); padding: 10px 4px; border-top: 1px solid var(--border); }
.nav-links-mobile.open { display: flex; }

/* ---------- hero ---------- */
.hero, .final-cta { position: relative; background: radial-gradient(125% 130% at 12% 8%, #14875E 0%, #0D5C42 50%, #0a4634 100%); overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; }
.hero-blob-1 { top: -140px; right: -80px; width: 520px; height: 520px; background: rgba(255, 255, 255, .06); }
.hero-blob-2 { bottom: -180px; left: -100px; width: 440px; height: 440px; background: rgba(41, 184, 132, .18); }
.hero-blob-3 { top: -120px; left: -60px; width: 420px; height: 420px; background: rgba(255, 255, 255, .05); }

.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) 24px clamp(72px, 9vw, 120px); display: flex; flex-wrap: wrap; align-items: center; gap: clamp(40px, 6vw, 72px); }
.hero-copy { flex: 1 1 440px; min-width: 300px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .16); padding: 7px 15px; border-radius: 100px; margin-bottom: 26px; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #7ff0c0; }
.badge span:last-child { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .9); }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.03; }
.hero-lead { margin-top: 22px; font-size: clamp(17px, 2vw, 21px); font-weight: 500; color: rgba(255, 255, 255, .84); line-height: 1.5; max-width: 480px; }
.hero-ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: rgba(255, 255, 255, .66); font-weight: 500; }
.hero-visual { flex: 1 1 340px; min-width: 300px; display: flex; justify-content: center; }

/* ---------- phone mockup ---------- */
.phone { position: relative; width: 308px; }
.phone-float { animation: lpfloat 7s ease-in-out infinite; }
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100px; height: 26px; background: #0b0b0f; border-radius: 16px; z-index: 5; }
.phone { background: #0b0b0f; border-radius: 44px; padding: 9px; box-shadow: 0 44px 90px -26px rgba(4, 20, 13, .65), 0 0 0 2px rgba(255, 255, 255, .06) inset; }
.phone-screen { position: relative; border-radius: 36px; overflow: hidden; background: #EEF0F4; height: 600px; padding: 52px 15px 15px; }
.phone-header { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 14px; }
.phone-greeting { font-size: 11.5px; color: #6b7280; font-weight: 500; }
.phone-username { font-size: 17px; font-weight: 800; color: #10131a; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
.avatar-accent { background: linear-gradient(135deg, #17a074, #0D5C42); }

.balance-card { position: relative; border-radius: 22px; padding: 19px; overflow: hidden; background: linear-gradient(150deg, #11724F 0%, #0D5C42 60%, #0a4d38 100%); box-shadow: 0 20px 40px -14px rgba(13, 92, 66, .5); }
.balance-top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255, 255, 255, .74); font-weight: 500; }
.pill-light { font-size: 11px; color: rgba(255, 255, 255, .8); background: rgba(255, 255, 255, .16); padding: 4px 10px; border-radius: 20px; }
.balance-amount { font-size: 35px; font-weight: 800; color: #fff; letter-spacing: -1px; margin-top: 6px; }
.balance-currency { font-size: 17px; opacity: .75; }
.balance-stats { display: flex; gap: 10px; margin-top: 16px; }
.balance-stat { flex: 1; background: rgba(255, 255, 255, .11); border-radius: 14px; padding: 10px 12px; }
.stat-label { font-size: 11px; font-weight: 600; }
.stat-income { color: #7ff0c0; }
.stat-expense { color: #ffb59e; }
.stat-value { color: #fff; font-weight: 700; font-size: 14px; margin-top: 3px; }

.section-row { display: flex; align-items: center; justify-content: space-between; margin: 18px 4px 10px; }
.section-title { font-size: 14px; font-weight: 700; color: var(--text); }
.section-meta { font-size: 12px; color: var(--muted); font-weight: 600; }

.budget-card { background: #fff; border-radius: 18px; padding: 14px 15px; box-shadow: 0 8px 22px rgba(17, 24, 39, .05); }
.budget-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.budget-row-tight { margin-top: 5px; }
.budget-label { font-size: 12.5px; font-weight: 600; color: #10131a; }
.budget-value { font-size: 12px; color: #6b7280; }
.progress { height: 8px; border-radius: 6px; background: #EEF0F4; overflow: hidden; margin-bottom: 13px; }
.progress-fill { height: 100%; border-radius: 6px; }

/* ---------- space section ---------- */
.space-layout { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 64px); align-items: flex-start; }
.space-copy { flex: 1 1 380px; min-width: 300px; }
.space-copy .lead { margin-top: 20px; font-size: 16px; line-height: 1.65; color: var(--text2); font-weight: 500; }
.space-copy b { color: var(--text); }

.role-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.role-row { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 16px 18px; }
.role-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.role-info { flex: 1; min-width: 0; }
.role-name { font-size: 15.5px; font-weight: 800; color: var(--text); }
.role-desc { font-size: 13.5px; color: var(--text2); font-weight: 500; margin-top: 2px; }
.tag { font-size: 11px; font-weight: 700; color: var(--muted); background: var(--surface-alt); padding: 5px 11px; border-radius: 20px; white-space: nowrap; }

.usecase-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.usecase-card { background: var(--surface); border: 1px dashed var(--border); border-radius: 18px; padding: 18px; }
.usecase-icon { font-size: 22px; margin-bottom: 8px; }
.usecase-title { font-size: 14.5px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.usecase-card p { font-size: 13px; line-height: 1.55; }

.space-visual { flex: 1 1 320px; min-width: 280px; display: flex; justify-content: center; }
.members-card { width: 100%; max-width: 400px; background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 22px; box-shadow: 0 24px 56px -24px var(--shadow); }
.space-header-card { position: relative; border-radius: 20px; padding: 18px; overflow: hidden; background: linear-gradient(150deg, #0D5C42 0%, #11724F 55%, #0a4d38 100%); box-shadow: 0 16px 32px -14px rgba(13, 92, 66, .5); margin-bottom: 16px; display: flex; align-items: center; gap: 13px; }
.space-header-icon { width: 48px; height: 48px; border-radius: 15px; background: rgba(255, 255, 255, .16); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.space-header-title { font-size: 17px; font-weight: 800; color: #fff; }
.space-header-sub { font-size: 12px; color: rgba(255, 255, 255, .72); font-weight: 500; margin-top: 1px; }

.member-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.member-row-last { border-bottom: none; }
.member-info { flex: 1; min-width: 0; }
.member-name { font-size: 14px; font-weight: 700; color: var(--text); }
.member-note { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.role-tag { font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 20px; white-space: nowrap; }

/* ---------- trust band ---------- */
.trust { position: relative; background: radial-gradient(120% 130% at 85% 15%, #14875E 0%, #0D5C42 52%, #0a4634 100%); overflow: hidden; }
.trust-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: clamp(56px, 7vw, 88px) 24px; text-align: center; }
.trust-inner h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1.2px; color: #fff; line-height: 1.15; max-width: 760px; margin: 0 auto; }
.trust-grid { margin-top: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.trust-card { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); border-radius: 22px; padding: 26px; }
.trust-emoji { font-size: 30px; margin-bottom: 12px; }
.trust-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.trust-card p { font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, .78); font-weight: 500; }

/* ---------- platforms ---------- */
.platforms { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: center; gap: clamp(20px, 3vw, 40px); }
.platform-item { flex: 0 1 240px; min-width: 200px; text-align: center; }
.platform-item-web { flex: 1 1 420px; min-width: 300px; max-width: 560px; }
.platform-label { margin-top: 16px; font-size: 14px; font-weight: 800; color: var(--text); }

.device-phone { width: 220px; margin: 0 auto; background: #0b0b0f; border-radius: 36px; padding: 8px; box-shadow: 0 34px 70px -26px var(--shadow), 0 0 0 2px rgba(255, 255, 255, .05) inset; position: relative; }
.device-notch { position: absolute; top: 17px; left: 50%; transform: translateX(-50%); background: #0b0b0f; z-index: 5; }
.device-notch-ios { width: 74px; height: 20px; border-radius: 12px; }
.device-notch-android { width: 9px; height: 9px; border-radius: 50%; top: 20px; }
.device-screen { position: relative; border-radius: 29px; overflow: hidden; background: #EEF0F4; height: 420px; padding: 40px 12px 12px; }
.mini-title { font-size: 13px; font-weight: 800; color: #10131a; margin: 0 2px 12px; }
.mini-balance { border-radius: 16px; padding: 15px; background: linear-gradient(150deg, #11724F, #0D5C42); box-shadow: 0 14px 26px -12px rgba(13, 92, 66, .5); }
.mini-balance-label { font-size: 10px; color: rgba(255, 255, 255, .72); font-weight: 500; }
.mini-balance-value { font-size: 24px; font-weight: 800; color: #fff; margin-top: 3px; }
.mini-card { margin-top: 12px; background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 6px 16px rgba(17, 24, 39, .05); text-align: center; }
.donut { width: 78px; height: 78px; margin: 0 auto 10px; border-radius: 50%; background: conic-gradient(#FF7A59 0 42%, #7C6FF0 42% 68%, #2E9BE6 68% 84%, #F2B233 84% 100%); position: relative; }
.donut-hole { position: absolute; inset: 12px; background: #fff; border-radius: 50%; }
.mini-caption { font-size: 10px; color: #9aa1ad; font-weight: 600; }

.tx-card { background: #fff; border-radius: 16px; padding: 6px 13px; box-shadow: 0 6px 16px rgba(17, 24, 39, .05); }
.tx-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid #f1f2f5; }
.tx-row-last { border-bottom: none; }
.tx-icon { width: 34px; height: 34px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.tx-info { flex: 1; }
.tx-name { font-size: 12px; font-weight: 700; color: #10131a; }
.tx-cat { font-size: 10px; color: #9aa1ad; }
.tx-amount { font-size: 12px; font-weight: 800; }
.tx-amount-expense { color: #F2784B; }
.tx-amount-income { color: #18A06A; }

.browser { border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: 0 40px 80px -30px var(--shadow); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--surface-alt); border-bottom: 1px solid var(--border); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-url { margin-left: 12px; flex: 1; background: var(--bg); border-radius: 8px; padding: 6px 12px; font-size: 11.5px; color: var(--muted); text-align: left; }
.browser-body { padding: 22px; display: flex; gap: 16px; text-align: left; }
.browser-sidebar { width: 130px; flex-shrink: 0; display: flex; flex-direction: column; gap: 9px; }
.browser-brand { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.browser-nav-item { font-size: 12px; font-weight: 600; color: var(--text2); padding: 8px 11px; border-radius: 9px; }
.browser-nav-active { color: #fff; background: var(--accent); font-weight: 700; }
.browser-main { flex: 1; min-width: 0; }
.mini-balance-wide { margin-bottom: 14px; }
.mini-balance-value-lg { font-size: 30px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 14px; padding: 16px 14px; }
.bar { flex: 1; background: var(--accent); border-radius: 5px; }

/* ---------- roadmap ---------- */
.roadmap-card { position: relative; padding: 30px; }
.soon-tag { position: absolute; top: 20px; right: 20px; font-size: 10.5px; font-weight: 700; color: var(--muted); background: var(--surface-alt); padding: 5px 11px; border-radius: 100px; }
.roadmap-icon { font-size: 34px; margin-bottom: 18px; }
.roadmap-card p { font-size: 14.5px; line-height: 1.6; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; align-items: start; }
.price-card { padding: 34px; }
.price-plan { font-size: 15px; font-weight: 800; color: var(--text); }
.price-plan-row { display: flex; align-items: center; gap: 10px; }
.price-plan-light { color: #fff; }
.price-badge { font-size: 10.5px; font-weight: 700; color: #0D5C42; background: #7ff0c0; padding: 4px 10px; border-radius: 100px; }
.price-amount { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.price-num { font-size: 44px; font-weight: 800; letter-spacing: -2px; color: var(--text); }
.price-num-light { color: #fff; }
.price-period { font-size: 15px; color: var(--muted); font-weight: 600; }
.price-period-light { color: rgba(255, 255, 255, .7); }
.price-desc { margin-top: 8px; font-size: 13.5px; color: var(--text2); font-weight: 500; }
.price-desc-light { color: rgba(255, 255, 255, .78); }
.price-cta { display: flex; text-align: center; margin-top: 24px; width: 100%; }
.price-features { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; list-style: none; }
.price-features li { position: relative; padding-left: 26px; font-size: 14px; color: var(--text2); font-weight: 500; line-height: 1.45; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.price-features-light li { color: rgba(255, 255, 255, .9); }
.price-features-light li::before { color: #7ff0c0; }

.price-card-premium { position: relative; background: linear-gradient(160deg, #0D5C42 0%, #0a4634 100%); border: none; box-shadow: 0 30px 64px -24px rgba(13, 92, 66, .55); overflow: hidden; }
.price-card-premium::after { content: ''; position: absolute; top: -40px; right: -30px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255, 255, 255, .07); }
.price-card-premium > * { position: relative; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px 24px; }
.faq-question { width: 100%; display: flex; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; text-align: left; }
.faq-question span:first-child { flex: 1; font-size: 16.5px; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
.faq-sign { font-size: 22px; font-weight: 400; color: var(--accent); flex-shrink: 0; line-height: 1; }
.faq-answer { margin-top: 14px; font-size: 14.5px; line-height: 1.65; color: var(--text2); font-weight: 500; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-sign { content: '−'; }

/* ---------- final cta ---------- */
.final-cta-inner { position: relative; max-width: 820px; margin: 0 auto; padding: clamp(64px, 9vw, 120px) 24px; text-align: center; }
.final-cta-inner h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; color: #fff; letter-spacing: -1.6px; line-height: 1.08; }
.final-cta-inner > p { margin-top: 20px; font-size: clamp(16px, 2vw, 20px); color: rgba(255, 255, 255, .82); font-weight: 500; }
.store-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.store-btn span { font-size: 20px; }
.final-cta-note { margin-top: 22px; font-size: 13.5px; color: rgba(255, 255, 255, .62); font-weight: 500; }

/* ---------- footer ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 72px) 24px clamp(32px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 40px; }
.footer-brand { flex: 1 1 260px; min-width: 240px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-tagline { font-size: 13.5px; color: var(--text2); font-weight: 500; line-height: 1.6; max-width: 280px; }
.footer-col { flex: 1 1 150px; min-width: 140px; }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; font-weight: 600; color: var(--text2); margin-bottom: 11px; }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom > div, .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-bottom span { font-size: 12.5px; color: var(--muted); font-weight: 500; }

/* ---------- legal pages (terms/privacy, roadmap 2.25) ---------- */
.legal-page { padding: 48px 24px 80px; }
.legal-container { max-width: 760px; margin: 0 auto; }
.legal-container h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -.8px; color: var(--text); }
.legal-updated { font-size: 13px; color: var(--muted); margin: 8px 0 32px; font-weight: 500; }
.legal-container h2 { font-size: 20px; font-weight: 800; color: var(--text); margin: 36px 0 12px; letter-spacing: -.3px; }
.legal-container h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.legal-container p, .legal-container li { font-size: 15px; line-height: 1.7; color: var(--text2); font-weight: 500; }
.legal-container ul, .legal-container ol { margin: 8px 0 16px 22px; }
.legal-container li { margin-bottom: 6px; }
.legal-container li ul { margin-top: 6px; }
.legal-container strong { color: var(--text); }
.legal-container a { text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
}
