:root {
  --bg: #0a0a0a;
  --bg-elevated: #0f0f0f;
  --card: #161616;
  --card-hover: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);
  --text: #f5f5f5;
  --text-dim: #9a9a9a;
  --text-faint: #6b6b6b;
  --accent: #e8491f;
  --accent-bright: #ff5a2a;
  --accent-soft: rgba(232, 73, 31, 0.15);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-bright); }

::selection { background: var(--accent); color: #fff; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 24px;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo .accent { color: var(--accent); }
.logo img { width: 26px; height: 26px; border-radius: 7px; display: block; }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.site-nav a:hover { color: var(--text); }
.site-nav a.active { color: var(--text); }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

main { max-width: 920px; margin: 0 auto; padding: 0 24px 96px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 160px 0 64px;
  text-align: center;
}

.hero-collage {
  position: absolute;
  inset: 20px -400px auto -400px;
  height: 130px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
}
.hero-collage img {
  width: 108px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  filter: saturate(0.85);
}
.hero-collage img:nth-child(odd) { transform: translateY(-8px) rotate(-4deg); }
.hero-collage img:nth-child(even) { transform: translateY(14px) rotate(4deg); }
.hero-collage img:nth-child(3n) { transform: translateY(-2px) rotate(-1.5deg); }

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 73, 31, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 6.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }

.hero p.lede {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto 36px;
}

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 8px; }
.store-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  color: var(--text-faint);
  font-size: 13.5px;
  font-weight: 600;
}
.store-badges .dot {
  width: 6px; height: 6px; min-width: 6px; border-radius: 50%;
  background: var(--text-faint);
  padding: 0;
  border: none;
}

/* ---------- Sections ---------- */

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 72px;
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.feature-card:hover {
  background: var(--card-hover);
  border-color: rgba(232, 73, 31, 0.25);
  transform: translateY(-2px);
}
.feature-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-card .icon svg { width: 18px; height: 18px; }
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Legal / support pages ---------- */

.page-header { padding: 56px 0 8px; }
.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  text-wrap: balance;
}
.updated {
  color: var(--text-faint);
  font-size: 13px;
  font-family: var(--mono);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-soft);
}
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.legal-section p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 10px;
  max-width: 68ch;
}
.legal-section ul {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  margin: 10px 0;
  padding-left: 22px;
  max-width: 68ch;
}
.legal-section li { margin-bottom: 5px; }

.support-card {
  background: linear-gradient(155deg, var(--card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 8px;
  text-align: center;
}
.support-card p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 46ch;
  margin: 0 auto 16px;
}
.support-email {
  display: inline-block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.support-email:hover { background: var(--accent-bright); color: #fff; }

.faq-item { margin-bottom: 22px; }
.faq-item strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }
.faq-item p { color: var(--text-dim); font-size: 14.5px; margin: 0; max-width: 60ch; }

footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 12.5px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .hero { padding: 64px 0 48px; }
  .hero-collage { display: none; }
  .site-nav { gap: 18px; }
}
