/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:    #000000;
  --bg-medium:  #0F0D0B;
  --bg-card:    #161410;
  --gold:       #E8902A;
  --gold-dim:   #BF7420;
  --orange:     #F28D26;
  --blue:       #5A7380;
  --text-1:     #F2EFEA;
  --text-2:     #B3AFA8;
  --text-3:     #807C75;
  --border:     rgba(255,255,255,0.08);
  --radius:     14px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-1);
}

.nav-logo span { color: var(--gold); }

.nav-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: background .15s;
}

.nav-cta:hover { background: #f0c65f; text-decoration: none; }
.nav-cta svg { flex-shrink: 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}

/* ── App icon in hero ─────────────────────────────────────── */
.hero-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}

.hero-app-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(230,184,87,.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background .15s, transform .15s;
}

.btn-primary:hover { background: #f0c65f; transform: translateY(-1px); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-2);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

/* ── Mockup strip ─────────────────────────────────────────── */
.mockup-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  overflow: hidden;
}

.mockup-phone {
  width: 220px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background: var(--bg-medium);
  aspect-ratio: 9/19.5;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.6);
  flex-shrink: 0;
}

.mockup-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-phone.center {
  transform: scale(1.05);
  border-color: rgba(232,144,42,.4);
  box-shadow: 0 32px 80px rgba(232,144,42,.18), 0 32px 64px rgba(0,0,0,.6);
}

/* ── Modes ────────────────────────────────────────────────── */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.section .lead {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 40px;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) { .mode-grid { grid-template-columns: 1fr; } }

.mode-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.mode-card.orange { border-top: 3px solid var(--orange); }
.mode-card.gold   { border-top: 3px solid var(--gold); }

.mode-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.mode-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mode-card p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Feature strip ────────────────────────────────────────── */
.feature-strip {
  background: var(--bg-medium);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.feat {
  text-align: center;
}

.feat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feat h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feat p {
  font-size: 13px;
  color: var(--text-3);
}

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 36px;
}

.appstore-badge {
  display: inline-block;
  transition: transform .15s;
}

.appstore-badge:hover { transform: scale(1.03); }

.appstore-badge img { height: 52px; }

/* Placeholder badge when App Store link isn't live yet */
.appstore-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 14px;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-3);
}

.footer-links a:hover { color: var(--gold); }

/* ── Privacy page ─────────────────────────────────────────── */
.prose {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px 80px;
}

.prose h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.prose .meta {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 40px;
}

.prose h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--gold);
}

.prose p, .prose li {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.7;
}

.prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.prose a { color: var(--gold); }
