:root {
  color-scheme: dark;
  --bg: #07100d;
  --panel: #0e1d17;
  --panel-2: #10251d;
  --text: #f4f7f5;
  --muted: #b8c7c0;
  --green: #79df6d;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(121,223,109,.14), transparent 34rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--green); }
.page {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 40px;
}
.narrow { width: min(760px, calc(100% - 32px)); }
.hero {
  text-align: center;
  padding: 36px 20px 40px;
}

.brand-logo {
  display: block;
  width: min(420px, 78vw);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 20px;
  box-shadow: 0 0 34px rgba(121,223,109,.10);
}

.mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border: 2px solid var(--green);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: 0 0 36px rgba(121,223,109,.16);
}
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  font-size: .84rem;
  letter-spacing: .22em;
  font-weight: 700;
}
h1 {
  margin: 8px 0 14px;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: .95;
  letter-spacing: -0.07em;
}
.narrow h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
h2 { margin-top: 34px; line-height: 1.2; }
.lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.lead.small { font-size: 1.12rem; }
.actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #061009;
  text-decoration: none;
  font-weight: 800;
}
.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.cards article, .policy-list {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.cards h2 { margin-top: 0; }
.cards p { color: var(--muted); margin-bottom: 0; }
.policy-list a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
}
.back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
}
footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 24px 16px 36px;
}
@media (max-width: 760px) {
  .page { padding-top: 36px; }
  .hero { padding: 36px 0; }
  .cards { grid-template-columns: 1fr; }
}

.policy-page {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 40px);
}
.policy-page h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.policy-page p, .policy-page li { color: var(--muted); }
.policy-page strong, .policy-page h2 { color: var(--text); }
.policy-summary {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(121,223,109,.06);
  margin: 24px 0;
}
.policy-summary h2 { margin-top: 0; }
