:root {
  --bg: #0e1316;
  --bg-alt: #141b20;
  --surface: #1a2329;
  --yellow: #f8ec1e;
  --green: #117a33;
  --green-bright: #1fa855;
  --red: #c0392b;
  --text: #eef2f4;
  --muted: #8a9aa6;
  --border: rgba(248, 236, 30, 0.15);
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover { text-decoration: underline; }

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 19, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

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

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 80% 20%, rgba(17, 122, 51, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(248, 236, 30, 0.08), transparent 40%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--green-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
}

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

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

.lead.narrow { max-width: 42ch; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--yellow);
  color: #1a1500;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.stats li {
  display: flex;
  flex-direction: column;
}

.stats strong {
  font-size: 1.4rem;
  color: var(--yellow);
}

.stats span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Target visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
}

.target-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid;
}

.ring-1 { border-color: var(--red); inset: 0; }
.ring-2 { border-color: var(--yellow); inset: 12%; }
.ring-3 { border-color: var(--green); inset: 24%; background: rgba(17, 122, 51, 0.25); }

.dart {
  position: absolute;
  width: 14px;
  height: 120px;
  background: linear-gradient(to bottom, var(--yellow), #b8960a);
  border-radius: 7px;
  top: 8%;
  left: 58%;
  transform: rotate(-35deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.dart::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid var(--red);
}

.dart::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 14px;
  background: var(--yellow);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-label {
  color: var(--green-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 36px;
  max-width: 20ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

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

.card-num {
  display: block;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.reply-note {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.contact-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-row:last-child { border-bottom: none; }

.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.contact-row a {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Privacy */
.privacy-wrap h2 { max-width: none; }

.effective {
  color: var(--muted);
  margin: -20px 0 32px;
  font-size: 0.9rem;
}

.policy {
  display: grid;
  gap: 28px;
}

.policy h3 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 1rem;
}

.policy p {
  margin: 0 0 10px;
  color: var(--muted);
  max-width: 72ch;
}

.policy p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 16px 4vw;
    gap: 14px;
  }

  .nav.open { display: flex; }

  .menu-btn { display: flex; }

  .hero-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { max-width: 260px; }

  .hero { padding-top: 48px; }
}
