:root {
  --bg: #fafafa;
  --fg: #111827;
  --muted: #6b7280;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-fg: #ffffff;
  --border: #e5e7eb;
  --card: #ffffff;
  --radius: 12px;
  --max-width: 480px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0f19;
    --fg: #f3f4f6;
    --muted: #9ca3af;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --border: #1f2937;
    --card: #111827;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px calc(32px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 100vh;
}

.brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

header h1 {
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

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

.tagline {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.big-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 650;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.15s ease;
}

.big-button:hover {
  background: var(--accent-hover);
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

.features {
  margin: 0;
  padding: 16px 16px 16px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.features li {
  margin-bottom: 8px;
}

.features li:last-child {
  margin-bottom: 0;
}

.destinations h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 10px;
}

.flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flags span {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

footer {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

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

footer a:hover {
  text-decoration: underline;
}

.legal {
  font-size: 0.8rem;
  margin: 8px 0 0;
}
