:root {
  --bg-top: #121110;
  --bg-mid: #1f1c1a;
  --bg-bottom: #0d0d0d;
  --panel: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.94);
  --body: rgba(255, 255, 255, 0.76);
  --muted: rgba(255, 255, 255, 0.58);
  --accent: #c7a885;
  --button-text: #291f17;
  --max: 720px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: linear-gradient(145deg, var(--bg-top), var(--bg-mid) 45%, var(--bg-bottom));
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.top-nav {
  margin-bottom: 32px;
  font-size: 14px;
}

.top-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.top-nav a:hover { text-decoration: underline; }

header { margin-bottom: 40px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}

.tagline {
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  color: var(--muted);
  font-weight: 500;
  max-width: 34ch;
}

.hero-copy {
  margin-top: 24px;
  font-size: 1.05rem;
  max-width: 52ch;
}

section {
  margin-bottom: 28px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

h2 {
  font-size: 1.25rem;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

p + p { margin-top: 12px; }

ul, ol {
  margin-top: 12px;
  padding-left: 1.25rem;
}

li { margin-top: 8px; }

li strong { color: var(--text); font-weight: 600; }

a.inline {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

a.inline:hover { text-decoration: underline; }

.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta:hover { transform: scale(0.98); opacity: 0.92; }

.cta-note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 540px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

.card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.supporter { border-color: rgba(199, 168, 133, 0.25); }

.faq details {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.faq details + details { margin-top: 10px; }

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq details[open] summary { margin-bottom: 10px; }

.faq details p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

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

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

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

footer p + p { margin-top: 8px; }
