:root {
  --bg: #0A0A0F;
  --bg-card: #14141C;
  --bg-elev: #1C1C26;
  --text: #FAFAFA;
  --text-2: #B8B8C5;
  --text-3: #6B6B7A;
  --accent: #60A5FA;
  --accent-2: #2A6FDB;
  --accent-red: #F87171;
  --border: #26262E;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ─── Layout chrome ───────────────────────────────────────────────── */

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-links { display: flex; gap: 18px; }
.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}
.lang-picker {
  display: inline-flex;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lang-picker a { color: var(--text-3); }
.lang-picker a.current { color: var(--text); }

/* ─── Hero ────────────────────────────────────────────────────────── */

.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(96, 165, 250, 0.18) 0%, transparent 60%),
    radial-gradient(40% 30% at 80% 30%, rgba(248, 113, 113, 0.10) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}
.hero-logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  margin: 0 auto 28px;
  box-shadow:
    0 24px 60px -10px rgba(96, 165, 250, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero .tagline {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-2);
  font-size: 19px;
}
.hero .badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 120ms ease;
}
.store-badge:hover { text-decoration: none; transform: translateY(-1px); }
.store-badge .sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  line-height: 1.2;
  margin-bottom: 2px;
}
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge.coming-soon { background: var(--bg-elev); color: var(--text-2); }
.store-badge.coming-soon .sub { color: var(--text-3); }

/* ─── Features section ────────────────────────────────────────────── */

.features { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 8px;
  text-align: center;
}
.section-title {
  text-align: center;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.section-lead {
  text-align: center;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.feature-card h3 {
  font-size: 18px;
  margin: 14px 0 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
}
.feature-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
}
.feature-card .icon svg { width: 22px; height: 22px; }

/* ─── CTA strip ───────────────────────────────────────────────────── */

.cta-strip {
  padding: 72px 0 96px;
  text-align: center;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(96, 165, 250, 0.12) 0%, transparent 70%),
    var(--bg);
}
.cta-strip h2 {
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.cta-strip p {
  color: var(--text-2);
  margin: 0 0 28px;
}

/* ─── Legal pages (privacy / terms) ───────────────────────────────── */

.legal {
  padding: 64px 0 96px;
  max-width: 760px;
}
.legal h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.legal .updated {
  color: var(--text-3);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 36px;
}
.legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.legal h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  color: var(--text);
}
.legal p, .legal li {
  color: var(--text-2);
  font-size: 16px;
}
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
}

/* ─── Footer ──────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--text-3);
  font-size: 13.5px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { color: var(--text-3); }
.site-footer .links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Mobile ──────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 40px; }
  .hero .tagline { font-size: 17px; }
  .section-title { font-size: 28px; }
  .legal h1 { font-size: 32px; }
  .site-nav .wrap { gap: 12px; }
  .nav-links { display: none; }
}
