:root {
  --bg: #09090b;
  --surface: #18181b;
  --surface-high: #27272a;
  --text: #fafafa;
  --muted: #8d8d94;
  --accent: #d9ff26;
  --pink: #ff2e93;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(217,255,38,0.06), transparent 30%), var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(9,9,11,0.72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}
nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
nav a:hover { color: var(--text); }

.hero { padding: 64px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  margin: 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 16px;
}
.hero-copy, .section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, opacity 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--accent);
  color: var(--bg);
}
.button.secondary {
  background: var(--surface);
  border: 1px solid var(--border);
}
.hero-note { color: var(--muted); margin-top: 14px; font-size: 0.95rem; }
.app-store-badge-wrap {
  margin-top: 28px;
}
.app-store-badge {
  height: 44px;
  width: auto;
  display: block;
}

.phone-mockup {
  display: flex;
  justify-content: center;
}
.real-shot-wrap {
  position: relative;
}
.real-shot {
  width: min(300px, 86%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
  margin-inline: auto;
}
.muted { color: var(--muted); font-size: 0.9rem; }

.section { padding: 80px 0; }
.section.alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 14px; }
.grid.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}
.card .icon { font-size: 1.6rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--muted); line-height: 1.65; margin: 0; }

.steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.step span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--accent);
  color: var(--bg);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}
.step p { margin: 8px 0 0; color: var(--muted); line-height: 1.65; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.stat strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.15rem;
}
.stat span { color: var(--muted); display: block; margin-top: 8px; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 16px; }

.policy-main { padding: 56px 0; }
.policy-card {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}
.policy-card h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); margin-bottom: 20px; }
.policy-card h2 { font-size: 1.3rem; margin-top: 28px; margin-bottom: 10px; }
.policy-card p, .policy-card li {
  color: var(--muted);
  line-height: 1.75;
}
.policy-card ul { padding-left: 20px; }
.back-link {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
}
.back-link:hover { color: var(--text); }

@media (max-width: 900px) {
  .hero-grid,
  .grid.features-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .phone-mockup { order: -1; }
}

@media (max-width: 640px) {
  nav { display: none; }
  .section, .hero { padding: 56px 0; }
  .policy-card { padding: 24px; }
  .footer-content { flex-direction: column; }
  .step { grid-template-columns: 1fr; }
}
