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

:root {
  --red: #C1001A;
  --red-bright: #E30622;
  --dark: #0A0A0A;
  --surface: #111111;
  --surface2: #181818;
  --border: rgba(255,255,255,0.08);
  --text: #F2F2F2;
  --muted: rgba(242,242,242,0.5);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica Neue, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--red-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo span { font-weight: 800; font-size: 17px; color: var(--text); letter-spacing: -0.3px; }
.nav-logo span em { color: var(--red-bright); font-style: normal; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); text-decoration: none; }
.nav-links a.nav-cta {
  color: #fff; font-weight: 700; font-size: 13px;
  background: var(--red-bright); padding: 6px 14px; border-radius: 999px;
  transition: background .15s, opacity .15s;
}
.nav-links a.nav-cta:hover { background: var(--red); text-decoration: none; opacity: 1; color: #fff; }
.nav-links a.nav-cta.active { background: var(--red); color: #fff; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 5% 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-kerb {
  position: absolute; top: -60px; left: -80px;
  width: 520px; opacity: 0.18; pointer-events: none;
  transform: rotate(10deg);
}
.hero-kerb-r {
  position: absolute; bottom: -60px; right: -80px;
  width: 520px; opacity: 0.12; pointer-events: none;
  transform: rotate(190deg);
}
.hero-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--red-bright); text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 7vw, 72px); font-weight: 900; letter-spacing: -2px;
  line-height: 1.05; margin-bottom: 22px;
}
.hero h1 span { color: var(--red-bright); }
.hero p { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.6; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 14px;
  transition: border-color .15s, background .15s;
}
.badge:hover { border-color: var(--red); background: #1d1d1d; text-decoration: none; }
.badge svg { width: 22px; height: 22px; fill: var(--text); flex-shrink: 0; }
.badge-sub { font-size: 10px; font-weight: 400; color: var(--muted); display: block; }

.hero-icon {
  margin: 56px auto 0; width: 120px; height: 120px;
  border-radius: 26px; box-shadow: 0 24px 64px rgba(193,0,26,0.25);
}

/* ── FEATURES ── */
.features { padding: 80px 5%; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--red-bright);
  text-transform: uppercase; margin-bottom: 14px;
}
.features h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1px; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── STRIP ── */
.strip {
  background: var(--red); padding: 56px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.strip h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; }
.strip p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; }
.btn-light {
  display: inline-block; padding: 13px 32px; border-radius: 10px;
  background: var(--text); color: var(--dark); font-weight: 800; font-size: 15px;
  transition: opacity .15s;
}
.btn-light:hover { opacity: 0.88; text-decoration: none; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 40px 5%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 30px; height: 30px; border-radius: 7px; }
.footer-logo span { font-weight: 800; font-size: 15px; }
.footer-logo span em { color: var(--red-bright); font-style: normal; }
footer p { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--text); text-decoration: none; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 60px 5% 100px; }
.legal-wrap h1 { font-size: clamp(26px, 5vw, 42px); font-weight: 900; letter-spacing: -1px; margin-bottom: 6px; }
.legal-wrap .updated { font-size: 12px; color: var(--muted); margin-bottom: 48px; }
.legal-intro { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-section p, .legal-section li { font-size: 14px; color: rgba(242,242,242,0.82); line-height: 1.75; }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-top: 6px; }
.legal-section li { margin-bottom: 4px; }
.legal-section p + p { margin-top: 10px; }
.legal-contact {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; margin-top: 48px;
}
.legal-contact p { font-size: 13px; }
.legal-contact a { color: var(--red-bright); }

/* ── GUIDELINE SECTIONS ── */
.guide-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; margin-bottom: 16px;
}
.guide-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.guide-icon { font-size: 22px; }
.guide-card h2 { font-size: 15px; font-weight: 800; border: none; padding: 0; margin: 0; }
.guide-card p, .guide-card li { font-size: 14px; color: rgba(242,242,242,0.82); line-height: 1.75; }
.guide-card ul { padding-left: 20px; margin-top: 6px; }
.guide-card li { margin-bottom: 4px; }

/* ── LAUNCH PILLS ── */
.launch-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.launch-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  padding: 6px 14px; border-radius: 999px; border: 1px solid;
}
.launch-pill.available { background: rgba(0,200,80,0.12); border-color: rgba(0,200,80,0.3); color: #4dff91; }
.launch-pill.coming { background: rgba(255,255,255,0.06); border-color: var(--border); color: var(--muted); }
.badge-disabled { opacity: 0.55; cursor: default; }
.badge-disabled:hover { border-color: var(--border) !important; background: var(--surface2) !important; }

/* ── WAITLIST ── */
.waitlist {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 72px 5%; text-align: center;
}
.waitlist-inner { max-width: 520px; margin: 0 auto; }
.waitlist h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.waitlist p { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.waitlist-row { display: flex; gap: 10px; }
.waitlist-input {
  flex: 1; padding: 13px 16px; border-radius: 10px;
  background: var(--dark); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; outline: none;
  transition: border-color .15s;
}
.waitlist-input:focus { border-color: var(--red-bright); }
.waitlist-btn {
  padding: 13px 24px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--red-bright); color: #fff; font-weight: 800; font-size: 15px;
  transition: background .15s;
  white-space: nowrap;
}
.waitlist-btn:hover { background: var(--red); }
.waitlist-fine { font-size: 12px; color: var(--muted); margin-top: 12px; margin-bottom: 0; }

/* ── SOCIAL SECTION ── */
.social-section { padding: 80px 5%; text-align: center; }
.social-inner { max-width: 600px; margin: 0 auto; }
.social-section h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.social-section p { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-weight: 700; font-size: 14px;
  transition: border-color .15s, background .15s;
}
.social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-link:hover { border-color: var(--red); background: #1d1d1d; text-decoration: none; color: var(--text); }

/* ── WAITLIST SUCCESS ── */
.success-wrap {
  min-height: calc(100vh - 64px - 140px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 5%;
  text-align: center;
}
.success-inner { max-width: 520px; margin: 0 auto; }
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-inner h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; }
.success-inner > p { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 40px; }
.success-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.btn-back {
  display: inline-flex; align-items: center;
  padding: 11px 22px; border-radius: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); font-weight: 600; font-size: 14px;
  transition: border-color .15s, color .15s;
}
.btn-back:hover { border-color: var(--red); color: var(--text); text-decoration: none; }
.success-social p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  footer { flex-direction: column; align-items: flex-start; }
}
