
:root {
  --bg: #0b0d10;
  --surface: #15191f;
  --surface-2: #1d222a;
  --surface-3: #262c35;
  --text: #f4f4f1;
  --muted: #9b9fa8;
  --gold: #d7ad34;
  --gold-light: #f0cf69;
  --gold-dark: #7b5a13;
  --line: rgba(215, 173, 52, .42);
  --shadow: 0 20px 55px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(215,173,52,.08), transparent 28%),
    linear-gradient(180deg, #0b0d10 0%, #090b0e 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,13,16,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: min(360px, 44vw);
  height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.34));
}
nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  color: #d7d8db;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
}
nav a:hover { color: var(--gold-light); }

.hero { padding: 90px 0 74px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 14px;
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: -.055em;
  margin-bottom: 28px;
}
h1 span { color: var(--gold-light); }
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.04em;
}
h3 { font-size: 1.35rem; }
.lead { font-size: 1.25rem; max-width: 800px; color: #c9cbd0; }
.lead-small { font-size: 1.08rem; color: #c9cbd0; }

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: #0d0f12;
  border-color: var(--gold-light);
  background: linear-gradient(180deg, #f2d76e 0%, #c39321 52%, #7d5911 100%);
  box-shadow: 0 10px 26px rgba(215,173,52,.23), inset 0 1px 0 rgba(255,255,255,.45);
}
.button-secondary {
  color: var(--gold-light);
  border-color: var(--gold);
  background: linear-gradient(180deg, #242a33 0%, #11151a 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.status-note { color: var(--muted); margin-top: 18px; font-size: .9rem; }

.hero-panel, .card, .support-card, .privacy {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015) 42%, rgba(0,0,0,.12)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-panel {
  border-radius: 28px;
  padding: 28px;
}
.hero-badge {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.1rem;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-stat { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-label { display: block; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }

.section { padding: 82px 0; }
.section-alt { background: rgba(255,255,255,.018); border-block: 1px solid rgba(215,173,52,.12); }
.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading p, .copy p, .privacy p { color: #c5c8ce; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card { border-radius: 22px; padding: 26px; min-height: 225px; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #2a3039, #13171d);
  margin-bottom: 24px;
  font-weight: 900;
}
.card p { color: var(--muted); margin-bottom: 0; }

.split, .support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.support-card { border-radius: 24px; padding: 30px; }
.support-label { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 900; }
.support-card a { color: var(--gold-light); font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 900; text-decoration: none; word-break: break-word; }
.support-card p { color: var(--muted); margin-bottom: 0; }

.privacy { border-radius: 28px; padding: clamp(26px, 5vw, 54px); }
.privacy h3 { color: var(--gold-light); margin-top: 34px; }
.effective { color: var(--muted) !important; font-size: .92rem; }

footer { border-top: 1px solid var(--line); background: #080a0d; padding: 30px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .92rem;
}
.footer-inner strong { color: var(--text); display: block; }
.footer-inner span { color: var(--gold); }

@media (max-width: 900px) {
  .hero-grid, .split, .support-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .header-inner { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  nav { width: 100%; justify-content: flex-start; gap: 16px; }
  .brand img { width: min(390px, 88vw); height: 62px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1160px); }
  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  h1 { font-size: 3rem; }
  .footer-inner { flex-direction: column; }
  nav a { font-size: .88rem; }
}
