@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #0a0f2a;
  --surface: #0d1533;
  --card: #131b3d;
  --raised: #1b2550;
  --border: #262f5c;
  --text: #f1f3ff;
  --sand: #c7ccf0;
  --muted: #8b93c4;
  --gold: #ffd166;
  --cyan: #43c6e8;
  --green: #66d7a8;
  --orange: #ff9f43;
  --red: #ff6b6b;
  --purple: #b38cff;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 30;
  background: rgba(10, 15, 42, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; }
.brand, .nav-links, .language { display: flex; align-items: center; }
.brand { gap: 12px; font: 700 16px "Space Grotesk"; letter-spacing: .24em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-links { gap: 28px; color: var(--sand); font-size: 13px; }
.nav-end { display: flex; align-items: center; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-right: 14px;
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--border); background: var(--raised);
  font: 600 12px "Space Grotesk"; letter-spacing: .02em;
  transition: border-color .18s ease, background .18s ease;
}
.nav-cta:hover { border-color: var(--gold); background: var(--card); }
.nav-cta svg { width: 15px; height: 15px; flex: none; }
.language { border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.language button { border: 0; background: none; color: var(--muted); padding: 7px 9px; border-radius: 999px; font: 600 11px Inter; cursor: pointer; }
.language button[aria-pressed="true"] { background: var(--gold); color: #101425; }

/* Hero */
.hero { min-height: 100svh; padding: 130px 0 70px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(56px, 8vw, 110px); align-items: center; }
.eyebrow, .section-label { color: var(--gold); font: 600 11px "Space Grotesk"; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { font: 700 clamp(52px, 7.2vw, 100px)/.95 "Space Grotesk"; letter-spacing: -.06em; max-width: 9ch; margin: 24px 0 28px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.lead { max-width: 570px; color: var(--sand); font-size: clamp(17px, 1.8vw, 21px); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { padding: 15px 22px; border-radius: 999px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; background: none; color: var(--text); }
.button.primary { background: var(--gold); border-color: var(--gold); color: #101425; }
.fine { color: var(--muted); font-size: 12px; margin-top: 16px; }

/* Store badges */
.store-actions { gap: 12px; }
.store-badge {
  position: relative; display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px 11px 17px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--raised); color: var(--text);
  font-family: inherit; cursor: pointer; text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--card); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge-text small { font-size: 10px; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.store-badge-text strong { font: 600 16px "Space Grotesk"; letter-spacing: -.01em; }

.store-badge-soon { opacity: .62; }
.store-badge-soon:hover { transform: none; border-color: var(--border); background: var(--raised); }
.store-badge-soon::after {
  content: attr(data-soon); position: absolute; left: 50%; bottom: calc(100% + 10px);
  transform: translate(-50%, 4px); padding: 6px 12px; border-radius: 999px;
  background: var(--gold); color: #101425; font: 600 11px "Space Grotesk";
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
}
.store-badge-soon:hover::after, .store-badge-soon:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

/* Phone mockups (real in-app screenshots) */
.phone-frame {
  position: relative; width: min(340px, 100%); aspect-ratio: 1170/2532; margin: auto;
  border-radius: 34px; border: 1px solid var(--border); background: var(--card);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
  overflow: hidden;
}
.phone-frame img, .phone-frame video { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hero-video { background: var(--card); }

/* Proof strip */
.proof { border-block: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof strong { padding: 28px; text-align: center; font: 600 14px "Space Grotesk"; border-right: 1px solid var(--border); }
.proof strong:last-child { border: 0; }

/* Statement */
.statement { padding: clamp(100px, 13vw, 180px) 0; }
.narrow { max-width: 920px; }
.statement h2, .section-head h2, .privacy-teaser h2, .final-cta h2 {
  font: 600 clamp(38px, 5.4vw, 68px)/1 "Space Grotesk"; letter-spacing: -.05em; margin: 18px 0 24px;
}
.statement .narrow > p:last-child { color: var(--sand); font-size: 18px; max-width: 700px; }

/* Showcase */
.showcase { padding: clamp(100px, 12vw, 160px) 0; background: var(--surface); border-block: 1px solid var(--border); }
.section-head { text-align: center; max-width: 850px; margin: auto; }
.feature-list { display: grid; gap: clamp(100px, 13vw, 170px); margin-top: 90px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.feature-row:nth-child(even) .feature-copy { order: 2; }
.feature-copy span { display: block; color: var(--gold); font: 600 11px "Space Grotesk"; letter-spacing: .18em; margin-bottom: 18px; }
.feature-copy h3 { font: 600 clamp(30px, 3.9vw, 48px)/1.08 "Space Grotesk"; letter-spacing: -.04em; margin-bottom: 18px; }
.feature-copy p { color: var(--sand); font-size: 16px; max-width: 520px; }

/* Privacy teaser */
.privacy-teaser { padding: clamp(100px, 12vw, 160px) 0; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.privacy-card { padding: 34px; background: var(--card); border: 1px solid var(--border); border-radius: 24px; }
.privacy-card .phone-frame { width: 170px; margin: 0 0 24px; }
.privacy-card p { color: var(--sand); margin: 0 0 24px; }
.privacy-card a { color: var(--gold); font-weight: 600; }

/* Final CTA */
.final-cta { text-align: center; padding: clamp(100px, 13vw, 180px) 24px; border-top: 1px solid var(--border); }
.final-cta h2 { max-width: 780px; margin: 28px auto 18px; }
.final-cta p { color: var(--sand); }
.final-cta .actions { justify-content: center; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 12px; flex-wrap: wrap; }
.footer-inner div { display: flex; gap: 22px; }

/* Legal pages */
.legal { max-width: 780px; padding-top: 150px; padding-bottom: 120px; }
.legal > h1 { font: 700 clamp(42px, 6.6vw, 68px)/1 "Space Grotesk"; letter-spacing: -.05em; margin: 18px 0; }
.updated { color: var(--muted); font-size: 13px; padding-bottom: 35px; border-bottom: 1px solid var(--border); }
.legal section { padding-top: 40px; }
.legal section h2 { font: 600 23px "Space Grotesk"; margin-bottom: 12px; }
.legal section p { color: var(--sand); margin-bottom: 14px; }
.legal-contact { margin-top: 48px; padding: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; }
.legal a { color: var(--gold); }

@media (max-width: 850px) {
  .nav-links { display: none; }
  .hero-grid, .feature-row, .privacy-grid { grid-template-columns: 1fr; }
  .hero { text-align: center; }
  .hero h1, .lead { margin-inline: auto; }
  .actions { justify-content: center; }
  .hero-grid > .phone-frame { width: min(300px, 72vw); }
  .feature-copy { text-align: center; }
  .feature-copy p { margin: auto; }
  .feature-row:nth-child(even) .feature-copy { order: 0; }
  .feature-row .phone-frame { width: min(300px, 72vw); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof strong:nth-child(2) { border-right: 0; }
  .proof strong:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .privacy-grid { text-align: center; }
  .privacy-teaser h2 { margin-inline: auto; }
  .privacy-card { max-width: 600px; margin: auto; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .brand span { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 8px 11px; margin-right: 10px; }
  .hero h1 { font-size: 52px; }
  .phone-frame, .hero-grid > .phone-frame, .feature-row .phone-frame { width: min(270px, 76vw); }
  .proof strong { padding: 22px 10px; font-size: 12px; }
  .footer-inner { flex-direction: column; align-items: center; }
  .legal { padding-top: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
