/* ============================================================
   GRABBIT — Landing Page Styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --bg:      #080c18;
  --bg2:     #0e1224;
  --card:    #111827;
  --accent:  #38bdf8;
  --accent-h:#0ea5e9;
  --accent-s:rgba(56,189,248,0.1);
  --accent-g:rgba(56,189,248,0.2);
  --violet:  #5b6ef5;
  --green:   #22c55e;
  --text:    #e2e8f8;
  --text2:   #7b8db0;
  --text3:   #4a5578;
  --border:  rgba(56,189,248,0.08);
  --border2: rgba(255,255,255,0.06);
  --font:    'DM Sans', sans-serif;
  --sora:    'Sora', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(8,12,24,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px var(--accent-g); }
.logo-icon svg { width: 18px; height: 18px; color: #fff; }
.logo-name { font-family: var(--sora); font-size: 1.2rem; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.logo-name span { color: #7dd3fc; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; gap: 6px; }
.lang-switcher a { padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; color: var(--text2); text-decoration: none; border: 1px solid var(--border2); transition: all 0.2s; }
.lang-switcher a:hover, .lang-switcher a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff; padding: 8px 20px; border-radius: 99px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s; box-shadow: 0 0 20px var(--accent-g); }
.nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 120px 64px 80px; gap: 60px; overflow: hidden; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.2); border-radius: 99px; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 { font-family: var(--sora); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 .c1 { color: var(--accent); }
.hero h1 .c2 { color: var(--violet); }
.hero-sub { font-size: 1.05rem; color: var(--text2); line-height: 1.7; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 99px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: var(--font); }
.btn-hero svg { width: 17px; height: 17px; }
.btn-hero.primary { background: var(--accent); color: #fff; box-shadow: 0 4px 24px var(--accent-g); }
.btn-hero.primary:hover { background: var(--accent-h); transform: translateY(-2px); }
.btn-hero.ghost { background: rgba(255,255,255,0.05); border: 1px solid var(--border2); color: var(--text); }
.btn-hero.ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--accent); }
.btn-hero.discord { background: #5865f2; color: #fff; }
.btn-hero.discord:hover { background: #4752c4; transform: translateY(-2px); }
.hero-stats { display: flex; gap: 36px; }
.stat-num { font-family: var(--sora); font-size: 1.6rem; font-weight: 700; color: var(--text); }
.stat-lbl { font-size: 0.78rem; color: var(--text2); }

/* ── APP MOCKUP ── */
.app-window { width: 100%; background: var(--bg); border: 1px solid rgba(56,189,248,0.12); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.mock-topbar { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--border); background: rgba(8,12,24,0.8); }
.mock-page-title { font-family: var(--sora); font-size: 0.95rem; font-weight: 600; color: var(--text); }
.mock-pill { font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; background: rgba(56,189,248,0.12); color: var(--accent); border: 1px solid rgba(56,189,248,0.25); }
.mock-shell { display: flex; height: 400px; }
.mock-sidebar { width: 170px; flex-shrink: 0; background: linear-gradient(175deg,#060a14 0%,#0a0e20 60%,#0d0a24 100%); padding: 18px 10px 14px; display: flex; flex-direction: column; border-right: 1px solid var(--border); position: relative; overflow: hidden; }
.mock-sidebar::before { content:''; position:absolute; width:130px; height:130px; border-radius:50%; background:rgba(56,189,248,0.18); bottom:-40px; left:-25px; filter:blur(45px); pointer-events:none; }
.mock-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.mock-logo-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.mock-logo-icon svg { width: 12px; height: 12px; color: #fff; }
.mock-logo-name { font-family: var(--sora); font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.mock-logo-name span { color: #7dd3fc; }
.mock-nav-lbl { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.15); padding: 0 4px; margin-bottom: 4px; }
.mock-nav-item { display: flex; align-items: center; gap: 7px; padding: 7px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.3); margin-bottom: 2px; position: relative; }
.mock-nav-item.active { background: rgba(56,189,248,0.1); color: rgba(255,255,255,0.9); }
.mock-nav-item.active::before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:3px; height:14px; background:#7dd3fc; border-radius:0 3px 3px 0; }
.mock-nav-item svg { width: 13px; height: 13px; opacity: 0.7; flex-shrink: 0; }
.mock-nav-item.active svg { opacity: 1; }
.mock-nav-badge { margin-left:auto; background:var(--accent); color:#fff; font-size:0.58rem; font-weight:700; padding:1px 5px; border-radius:99px; }
.mock-main { flex: 1; overflow: hidden; }
.mock-page { padding: 18px; }
.mock-card { background: var(--card); border: 1px solid var(--border); border-radius: 13px; padding: 16px; margin-bottom: 10px; box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset; }
.mock-label { font-size: 0.68rem; font-weight: 500; color: var(--text2); margin-bottom: 5px; }
.mock-url-row { display: flex; gap: 7px; margin-bottom: 12px; }
.mock-input { flex: 1; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 7px; padding: 8px 10px; font-size: 0.75rem; color: var(--text2); }
.mock-fetch-btn { background: var(--accent); color: #fff; border: none; border-radius: 7px; padding: 8px 12px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.mock-fetch-btn svg { width: 12px; height: 12px; }
.mock-plat-badge { display: inline-flex; align-items: center; gap: 5px; padding: 2px 9px; border-radius: 99px; font-size: 0.65rem; font-weight: 700; margin-bottom: 10px; }
.mock-plat-dot { width: 5px; height: 5px; border-radius: 50%; }
.badge-yt { background: rgba(255,68,68,0.12); color: #ff4444; border: 1px solid rgba(255,68,68,0.25); }
.badge-ig { background: rgba(225,48,108,0.12); color: #e1306c; border: 1px solid rgba(225,48,108,0.25); }
.badge-tt { background: rgba(0,242,234,0.12); color: #00f2ea; border: 1px solid rgba(0,242,234,0.25); }
.mock-preview { display: flex; gap: 10px; margin-bottom: 12px; }
.mock-thumb { width: 100px; height: 56px; border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.mock-preview-title { font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-preview-meta { font-size: 0.68rem; color: var(--text2); }
.mock-sec-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 7px; }
.mock-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.mock-chip { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 99px; font-size: 0.7rem; font-weight: 500; border: 1.5px solid var(--border); color: var(--text2); background: rgba(255,255,255,0.02); }
.mock-chip svg { width: 10px; height: 10px; }
.mock-chip.sel { border-color: var(--accent); background: var(--accent-s); color: var(--accent); }
.mock-add-bar { display: flex; justify-content: flex-end; gap: 7px; }
.mock-btn-g { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text2); padding: 7px 13px; border-radius: 7px; font-size: 0.75rem; }
.mock-btn-p { background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 9px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 5px; box-shadow: 0 4px 14px var(--accent-g); }
.mock-btn-p svg { width: 13px; height: 13px; }
.mock-queue-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px; display: flex; gap: 10px; margin-bottom: 7px; }
.mock-queue-thumb { width: 64px; height: 36px; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.mock-queue-title { font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-queue-meta { font-size: 0.65rem; color: var(--text2); display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.mock-status { padding: 1px 7px; border-radius: 99px; font-size: 0.6rem; font-weight: 700; }
.s-dl { background: rgba(56,189,248,0.12); color: var(--accent); border: 1px solid rgba(56,189,248,0.25); }
.s-done { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.mock-prog-track { height: 3px; background: rgba(56,189,248,0.1); border-radius: 99px; overflow: hidden; }
.mock-prog-fill { height: 100%; background: var(--accent); border-radius: 99px; box-shadow: 0 0 8px rgba(56,189,248,0.5); }
.mock-queue-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; margin-left: auto; }
.mock-pct { font-family: var(--sora); font-size: 0.95rem; font-weight: 700; color: var(--accent); }
.mock-speed { font-size: 0.6rem; color: var(--text2); }
.grab-float { position: absolute; bottom: -16px; right: -16px; background: #5b6ef5; color: #fff; padding: 9px 16px; border-radius: 99px; font-family: var(--sora); font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 6px; box-shadow: 0 6px 24px rgba(91,110,245,0.5); animation: float-btn 4s ease-in-out infinite; white-space: nowrap; z-index: 10; }
.grab-float svg { width: 13px; height: 13px; }
@keyframes float-btn { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── PLATFORMS ── */
.platforms { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.platforms-label { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text3); margin-bottom: 20px; }
.platforms-track { display: flex; gap: 10px; animation: marquee 22s linear infinite; width: max-content; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.plat-chip { display: flex; align-items: center; gap: 7px; padding: 7px 16px; background: var(--card); border: 1px solid var(--border2); border-radius: 99px; font-size: 0.8rem; font-weight: 600; color: var(--text2); white-space: nowrap; }
.plat-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ── FEATURES ── */
.features { padding: 90px 64px; }
.section-eyebrow { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--sora); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text2); line-height: 1.7; margin-bottom: 44px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.feat-card { background: rgba(14,18,36,0.6); border: 1px solid var(--border2); border-radius: 15px; padding: 24px; transition: all 0.3s; position: relative; overflow: hidden; }
.feat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(56,189,248,0.3),transparent); opacity:0; transition:opacity 0.3s; }
.feat-card:hover { border-color: rgba(56,189,248,0.18); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.feat-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feat-icon svg { width: 19px; height: 19px; }
.feat-title { font-family: var(--sora); font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feat-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }

/* ── EXTENSION ── */
.ext-section { padding: 70px 64px; background: linear-gradient(180deg,transparent,rgba(91,110,245,0.03),transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ext-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1050px; margin: 0 auto; }
.browser-mock { background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.browser-bar { background: rgba(8,12,24,0.9); padding: 8px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: 4px; }
.browser-dot { width: 7px; height: 7px; border-radius: 50%; }
.browser-url { flex: 1; background: rgba(255,255,255,0.04); border-radius: 4px; padding: 3px 8px; font-size: 0.65rem; color: var(--text2); font-family: monospace; }
.browser-ext { width: 18px; height: 18px; background: #5b6ef5; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.browser-ext svg { width: 9px; height: 9px; color: #fff; }
.browser-content { height: 240px; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg,#0f172a,#06091a); overflow: hidden; }
.fake-video { width: 72%; height: 136px; background: #1a1f35; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.fake-play { width: 40px; height: 40px; background: rgba(255,68,68,0.85); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.fake-play svg { width: 16px; height: 16px; color: #fff; margin-left: 3px; }
.ext-float { position: absolute; bottom: 18px; right: 18px; background: #5b6ef5; color: #fff; padding: 8px 14px; border-radius: 99px; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 5px; box-shadow: 0 5px 20px rgba(91,110,245,0.5); animation: float-btn 3s ease-in-out infinite; }
.ext-float svg { width: 12px; height: 12px; }
.ext-toast { position: absolute; bottom: 56px; right: 18px; background: #1e293b; color: var(--green); padding: 4px 10px; border-radius: 6px; font-size: 0.65rem; font-weight: 600; border: 1px solid rgba(34,197,94,0.3); white-space: nowrap; animation: toast 3s ease-in-out infinite; }
@keyframes toast { 0%,25%{opacity:0;transform:translateY(5px)} 45%,80%{opacity:1;transform:translateY(0)} 100%{opacity:0} }
.ext-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ext-steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--text2); line-height: 1.5; }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-s); border: 1px solid rgba(56,189,248,0.3); color: var(--accent); font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* ── PRICING ── */
.pricing { padding: 90px 64px; }
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.pricing-card { background: rgba(14,18,36,0.7); border: 1px solid var(--border2); border-radius: 18px; padding: 26px; position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(56,189,248,0.28); background: linear-gradient(180deg,rgba(56,189,248,0.05),rgba(14,18,36,0.7)); }
.pricing-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 2px 14px; border-radius: 99px; white-space: nowrap; }
.pricing-plan { font-family: var(--sora); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 10px; }
.pricing-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 5px; }
.p-currency { font-size: 1rem; font-weight: 600; color: var(--text2); }
.p-amount { font-family: var(--sora); font-size: 2.4rem; font-weight: 800; color: var(--text); }
.p-period { font-size: 0.8rem; color: var(--text2); }
.pricing-desc { font-size: 0.76rem; color: var(--text2); margin-bottom: 18px; min-height: 28px; }
.pricing-divider { height: 1px; background: var(--border2); margin-bottom: 16px; }
.pricing-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.pricing-feats li { font-size: 0.82rem; color: var(--text2); display: flex; align-items: center; gap: 7px; }
.pricing-feats li.y { color: var(--text); }
.pricing-feats li::before { content:'✗'; color:var(--text3); font-weight:700; font-size:0.7rem; width:13px; flex-shrink:0; }
.pricing-feats li.y::before { content:'✓'; color:var(--green); }
.p-btn { display: block; text-align: center; padding: 11px; border-radius: 99px; font-size: 0.86rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.p-btn.primary { background: var(--accent); color: #fff; box-shadow: 0 4px 18px var(--accent-g); }
.p-btn.primary:hover { background: var(--accent-h); transform: translateY(-1px); }
.p-btn.violet { background: #5b6ef5; box-shadow: 0 4px 18px rgba(91,110,245,0.3); }
.p-btn.violet:hover { background: #4558f0; }
.p-btn.outline { border: 1px solid var(--border2); color: var(--text2); }
.p-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.pricing-note { text-align: center; font-size: 0.75rem; color: var(--text3); margin-top: 22px; }

/* ── CTA ── */
.cta { padding: 70px 64px; text-align: center; }
.cta-inner { max-width: 560px; margin: 0 auto; background: linear-gradient(135deg,rgba(56,189,248,0.07),rgba(91,110,245,0.07)); border: 1px solid rgba(56,189,248,0.18); border-radius: 22px; padding: 52px 44px; }
.cta-inner h2 { font-family: var(--sora); font-size: 1.9rem; font-weight: 800; margin-bottom: 10px; }
.cta-inner p { color: var(--text2); margin-bottom: 26px; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { padding: 36px 64px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.75rem; color: var(--text3); }

/* ── Glow ── */
.glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-right { display: none; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .ext-section { padding: 56px 24px; }
  .ext-layout { grid-template-columns: 1fr; gap: 36px; }
  .pricing { padding: 56px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .cta { padding: 56px 24px; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
}

/* ── Prose (terms/privacy) ── */
.prose-page { max-width: 760px; margin: 0 auto; padding: 120px 32px 80px; }
.prose-page h1 { font-family: var(--sora); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.prose-page .updated { font-size: 0.8rem; color: var(--text3); margin-bottom: 40px; }
.prose-page h2 { font-family: var(--sora); font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 32px 0 10px; }
.prose-page p, .prose-page li { font-size: 0.92rem; color: var(--text2); line-height: 1.75; margin-bottom: 10px; }
.prose-page ul { padding-left: 20px; }
.prose-page a { color: var(--accent); }
