:root {
  --bg: #0d0b14;
  --surface: #1a1626;
  --brand: #c8f135;
  --brand2: #ff3cac;
  --text: #f2eeff;
  --muted: #9088b0;
  --border: #2a2438;
  --radius: 12px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: 'Bangers', 'Impact', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ── Header ───────────────────────────────────────────────── */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Bangers', 'Impact', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.logo .daft {
  color: var(--brand);
}

.logo .detours {
  color: var(--brand2);
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--brand);
  text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: 64px 24px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--brand);
}

.hero .subhead {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 120ms ease;
  min-width: 200px;
}

.store-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.store-button svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-button .small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.store-button .big {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ── Features ─────────────────────────────────────────────── */

.features {
  padding: 48px 24px 64px;
  max-width: 1080px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.feature h3 {
  font-size: 26px;
  color: var(--brand);
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
}

/* ── Tours section ───────────────────────────────────────── */

.tours {
  padding: 48px 24px 64px;
  max-width: 1080px;
  margin: 0 auto;
}

.tours h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}

.tours-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.tour-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tour-card .name {
  font-family: 'Bangers', 'Impact', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.tour-card .badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.badge.available {
  background: var(--brand);
  color: var(--bg);
}

.badge.coming {
  background: var(--border);
  color: var(--muted);
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.site-footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
}

.site-footer .links a {
  color: var(--muted);
}

.site-footer .links a:hover {
  color: var(--brand);
}

/* ── Privacy / long-form content ──────────────────────────── */

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.prose h1 {
  font-size: 48px;
  margin-bottom: 8px;
}

.prose .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.prose h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--brand);
}

.prose p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: var(--text);
}

.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.prose li {
  margin-bottom: 6px;
  line-height: 1.7;
  color: var(--text);
}

.prose a {
  color: var(--brand);
  text-decoration: underline;
}

/* ── Desktop ──────────────────────────────────────────────── */

@media (min-width: 720px) {
  .hero {
    padding: 96px 24px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero .subhead {
    font-size: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tours h2 {
    font-size: 44px;
  }

  .prose h1 {
    font-size: 56px;
  }
}
