/* ─────────────────────────────────────────────────────────────
   Slaps — landing styles
   Aesthetic: supporter-culture. Black + white, bold Barlow
   Condensed italic for brand, clean Inter for body.
   ───────────────────────────────────────────────────────────── */

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

:root {
  --bg: #0f0f0f;
  --surface: #171717;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --text-muted: #9a9a9a;
  --text-faint: #5e5e5e;
  --accent: #ffffff;
  --brand: "Barlow Condensed", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(20px, 5vw, 40px);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }

/* Subtle noise overlay for that printed-sticker feel */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ─── Nav ───────────────────────────────────────────────────── */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 3px;
}

.nav nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 12vw, 140px) var(--pad) 80px;
  text-align: center;
  gap: 24px;
}

.wordmark {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: clamp(4px, 1.5vw, 20px);
  line-height: 0.9;
  color: var(--accent);
  text-transform: uppercase;
  /* Slight off-axis tilt for that "slapped on a wall" feel */
  transform: rotate(-2deg);
  text-shadow: 0 0 40px rgba(255,255,255,0.05);
}

.tag {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -8px;
}

.lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 8px;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--accent);
  transition: transform 0.1s ease;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ─── How it works ──────────────────────────────────────────── */
.how {
  position: relative;
  z-index: 2;
  padding: 80px var(--pad);
  border-top: 1px solid var(--border);
  text-align: center;
}

.how h2 {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 6px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: left;
}

.num {
  display: block;
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 24px var(--pad);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-small {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

footer nav {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.copy {
  font-size: 12px;
  color: var(--text-faint);
}

/* ─── Legal pages ───────────────────────────────────────────── */
.legal {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px var(--pad) 80px;
}

.legal h1 {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.legal .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal h2 {
  font-family: var(--brand);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--accent);
}

.legal h3 {
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal p, .legal li {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul, .legal ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 14px;
}

.legal th, .legal td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  color: #cfcfcf;
}

.legal th {
  background: var(--surface);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal strong { color: var(--accent); font-weight: 700; }

/* ─── Auth / confirmation checkmark ─────────────────────────── */
.check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  color: var(--accent);
  font-size: 52px;
  font-weight: 800;
  line-height: 82px;
  text-align: center;
  margin-bottom: 8px;
  box-shadow: 0 0 32px rgba(255,255,255,0.08);
}

/* ─── Responsive tweaks ─────────────────────────────────────── */
@media (max-width: 640px) {
  .nav { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .hero { padding-top: 80px; padding-bottom: 60px; }
}
