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

:root {
  --bg: #0a0908;
  --text-primary: #f5f0ea;
  --text-secondary: #a89f94;
  --text-muted: #5a5248;
  --accent: #C8966A;
  --accent-fg: #1a0e06;
  --accent-dim: #8a6040;
  --surface: #111;
  --border: #1e1e1e;
  --border-card: #2a2a2a;
  --error: #ff6b6b;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.logo { color: var(--accent); font-weight: 700; font-size: 18px; }
.nav-tag { color: var(--text-muted); font-size: 12px; letter-spacing: 1px; }

/* PHONES SECTION */
.phones-section {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.phones {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* side padding makes first/last item center-snap */
  padding: 20px calc(50% - 120px) 24px;
}
.phones::-webkit-scrollbar { display: none; }
.phone-screenshot {
  flex: 0 0 240px;
  scroll-snap-align: center;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-screenshot img {
  width: 100%;
  display: block;
}

/* dots */
.phones-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.2s;
}
.dot.active { background: var(--accent); }

/* MOBILE */
@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .phone-screenshot { flex: 0 0 80vw; }
}

/* HERO */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  text-align: center;
  border-bottom: none;
}
.eyebrow {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

/* WAITLIST FORM */
.form-row {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 14px;
}
.form-row input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input::placeholder { color: var(--text-muted); }
.form-row input:focus { border-color: var(--accent); }
.form-row button {
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: opacity 0.2s;
}
.form-row button:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { color: var(--text-muted); font-size: 12px; }
.form-note.error { color: var(--error); }
.form-success {
  color: var(--text-primary);
  font-size: 16px;
  padding: 16px 0;
}

/* DESCRIPTION */
.description {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 24px 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.description p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}
.description strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* HOW IT WORKS */
.steps-section {
  padding: 80px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.steps-label {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 56px;
}
.steps {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
}
.step-num {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.step h3 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step .step-body {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { color: var(--accent); font-weight: 700; font-size: 15px; }
.footer-note { color: var(--text-muted); font-size: 12px; }

/* MOBILE */
@media (max-width: 640px) {
  .form-row { flex-direction: column; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
}
