:root {
  color-scheme: dark;
  --bg: #061611;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-strong: rgba(255, 255, 255, 0.16);
  --text: #f6fff5;
  --muted: #b8d8c5;
  --green: #78ff97;
  --gold: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(120, 255, 151, 0.24), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(255, 209, 102, 0.2), transparent 26rem),
    linear-gradient(135deg, #061611 0%, #0f3021 54%, #11200c 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
  min-height: 74vh;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions, .cta .button { margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 8px 8px 0 0;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: #14310e;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 16px 36px rgba(120, 255, 151, 0.2);
}
.secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card, .qa-card, .cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card {
  padding: 18px;
  border-radius: 36px;
  transform: rotate(2deg);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
}
.hero-card span {
  display: block;
  padding: 18px 8px 6px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.qa-card {
  min-height: 320px;
  padding: 28px;
  border-radius: 28px;
}
.qa-card.featured { background: var(--panel-strong); }
.icon { font-size: 3rem; }
.qa-card h2 { margin: 18px 0 12px; font-size: 1.5rem; }
.qa-card p { color: var(--muted); line-height: 1.7; }

.cta {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 20px;
  padding: 28px;
  border-radius: 32px;
}
.cta img {
  width: 100%;
  border-radius: 24px;
}
.cta p { color: var(--muted); }

@media (max-width: 820px) {
  .hero, .qa-grid, .cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 28px; }
  h1 { font-size: clamp(2.8rem, 16vw, 5rem); }
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.site-footer a {
  color: var(--text);
  margin-left: 16px;
  text-decoration: none;
  font-weight: 700;
}
.site-footer a:hover { color: var(--gold); }

.legal-page {
  max-width: 900px;
}
.legal-page h1 {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
}
.legal-card {
  margin-top: 28px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.legal-card h2 {
  margin-top: 24px;
  color: var(--gold);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .site-footer { display: block; }
  .site-footer a { display: block; margin: 10px 0 0; }
}


.support-card {
  margin: 28px 0 0;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.support-card h2 { margin-bottom: 10px; }
.support-card p { color: var(--muted); line-height: 1.7; }
.support-card a, .legal-card a:not(.button) {
  color: var(--gold);
  font-weight: 800;
}
