/* REDLINE landing — dark, layered near-blacks + one hot-red accent. */
:root {
  --bg: #0A0A0C;
  --surface: #121216;
  --surface-alt: #1A1A20;
  --stroke: #2A2A33;
  --accent: #FF2D2D;
  --accent-deep: #C20E0E;
  --text: #F4F4F6;
  --text-2: #9A9AA6;
  --text-muted: #5E5E6B;
  --gold: #E8B23A;
  --radius: 18px;
  --radius-pill: 999px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-feature-settings: 'tnum' 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── wordmark ─────────────────────────────────────────── */
.wordmark {
  font-weight: 800; font-style: italic; letter-spacing: -0.02em;
  font-size: 22px; display: inline-flex; align-items: center; gap: 8px;
}
.wordmark .tick { color: var(--accent); font-style: normal; }

/* ── nav ──────────────────────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a.link { color: var(--text-2); font-size: 14px; font-weight: 500; }
.nav-links a.link:hover { color: var(--text); }

/* ── buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; box-shadow: 0 8px 30px rgba(255,45,45,0.28);
}
.btn-primary:hover { box-shadow: 0 10px 38px rgba(255,45,45,0.42); }
.btn-ghost { background: var(--surface-alt); color: var(--text); border-color: var(--stroke); }
.btn-ghost:hover { border-color: #3a3a44; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }

/* ── hero ─────────────────────────────────────────────── */
.hero { position: relative; padding: 96px 0 72px; text-align: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,45,0.20), rgba(255,45,45,0) 62%);
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border-radius: var(--radius-pill); background: rgba(255,45,45,0.10);
  border: 1px solid rgba(255,45,45,0.35); color: var(--accent);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 26px;
}
h1 {
  font-size: clamp(40px, 7vw, 76px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.02; margin-bottom: 20px;
}
h1 .em { font-style: italic; color: var(--accent); }
.hero p.sub {
  font-size: clamp(16px, 2.2vw, 20px); color: var(--text-2);
  max-width: 620px; margin: 0 auto 34px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-note { margin-top: 18px; color: var(--text-muted); font-size: 13px; }

/* ── section ──────────────────────────────────────────── */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 12px; }
.section-head p { color: var(--text-2); font-size: 16px; }

/* ── features grid ────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 26px 24px;
}
.card .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,45,45,0.12); color: var(--accent); font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.card p { color: var(--text-2); font-size: 14.5px; }

/* ── stats band ───────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat .num { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -0.02em; }
.stat .lbl { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── CTA band ─────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(255,45,45,0.10), rgba(194,14,14,0.04));
  border: 1px solid rgba(255,45,45,0.25); border-radius: 26px;
  padding: 54px 30px; text-align: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--text-2); margin-bottom: 26px; }

/* ── footer ───────────────────────────────────────────── */
footer { border-top: 1px solid var(--stroke); padding: 40px 0; margin-top: 40px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--text-2); font-size: 14px; }
.foot-links a:hover { color: var(--text); }
.foot-copy { color: var(--text-muted); font-size: 13px; }

/* ── legal pages ──────────────────────────────────────── */
.legal { padding: 56px 0 40px; }
.legal .wrap { max-width: 780px; }
.legal h1 { font-size: clamp(32px, 5vw, 46px); text-align: left; margin-bottom: 8px; }
.legal .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; text-align: left; }
.legal h3 { font-size: 17px; font-weight: 700; margin: 22px 0 6px; }
.legal p, .legal li { color: var(--text-2); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a.inline { color: var(--accent); }
.legal a.inline:hover { text-decoration: underline; }
.back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); font-size: 14px; margin-bottom: 28px; }
.back:hover { color: var(--text); }

/* ── responsive ───────────────────────────────────────── */
@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .nav-links .link { display: none; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 56px; }
  .btn { width: 100%; }
  .cta-row { flex-direction: column; }
}
