:root {
  --red-950: #2b0101;
  --red-900: #450202;
  --red-850: #5e0503;
  --red-800: #760706;
  --red-700: #9b0808;
  --red-600: #c30b0b;
  --gold: #ffd12a;
  --gold-dark: #d99800;
  --cream: #fff5d4;
  --white: #fffdf7;
  --ink: #1c0805;
  --muted: rgba(255, 245, 212, 0.78);
  --border: rgba(255, 209, 42, 0.25);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 198, 32, 0.10), transparent 30%),
    radial-gradient(circle at 82% 4%, rgba(255, 120, 0, 0.11), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(255, 210, 42, 0.06), transparent 34%),
    linear-gradient(135deg, var(--red-950) 0%, var(--red-900) 42%, #260101 100%);
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  opacity: 0.24;
  background-image:
    radial-gradient(rgba(255, 225, 84, 0.55) 0.7px, transparent 0.9px),
    radial-gradient(rgba(0, 0, 0, 0.45) 0.7px, transparent 1px);
  background-size: 13px 13px, 17px 17px;
  background-position: 0 0, 4px 8px;
  mix-blend-mode: overlay;
}
body::after {
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.24) 76%, rgba(0,0,0,.52) 100%);
}

a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus { left: 12px; top: 12px; }

.hero-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 auto clamp(28px, 4.5vw, 54px);
}
.hero-nav a {
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(255, 209, 42, .30);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(43, 1, 1, .58);
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}
.hero-nav a:hover { color: var(--gold); border-color: rgba(255, 209, 42, .55); }

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 34px;
  border: 1px solid rgba(255, 209, 42, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(119, 9, 5, 0.84), rgba(83, 4, 3, 0.90)),
    radial-gradient(circle at 50% 0%, rgba(255, 209, 42, 0.08), transparent 42%);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}
.hero {
  position: relative;
  min-height: calc(94vh - 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px) 32px 72px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 209, 42, .07), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 44%);
}
.hero > * { position: relative; }

.hero-content { max-width: 960px; margin: 0 auto; }
.hero-logo { width: min(300px, 64vw); display: block; margin: 0 auto 12px; filter: drop-shadow(0 14px 20px rgba(0,0,0,.35)); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
}
h1, h2 { margin: 0; line-height: 1.1; letter-spacing: -0.045em; }
h1 { font-size: clamp(2.8rem, 7.2vw, 6.25rem); text-wrap: balance; max-width: 930px; margin: 0 auto; }
h2 { font-size: clamp(2.2rem, 5.8vw, 5.2rem); text-wrap: balance; }
.hero-subline { font-size: clamp(1.12rem, 2.35vw, 1.68rem); color: var(--cream); font-weight: 850; margin: 26px auto 12px; max-width: 820px; line-height: 1.32; }
.pillar-line { color: var(--gold); font-weight: 900; font-size: clamp(0.98rem, 2vw, 1.22rem); margin: 0 0 30px; letter-spacing: .04em; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: 1rem;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.button.secondary { background: rgba(255, 245, 212, 0.11); color: var(--cream); border: 1px solid rgba(255,255,255,.22); }

.two-column,
.ask-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  padding: clamp(28px, 6vw, 60px);
}
.copy-block p,
.ask-intro p,
.safety-section p { font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.55; color: var(--cream); margin-top: 0; }
.copy-block p:last-child { margin-bottom: 0; }

.topics-section, .safety-section { padding: clamp(28px, 6vw, 60px); }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.topic-grid div {
  padding: 16px 14px;
  border: 1px solid rgba(255, 209, 42, .28);
  border-radius: 18px;
  background: rgba(255, 245, 212, .09);
  color: var(--cream);
  font-weight: 850;
  min-height: 74px;
  display: flex;
  align-items: center;
}

.ask-section { align-items: start; }
.ask-form {
  background: rgba(255, 245, 212, 0.08);
  border: 1px solid rgba(255, 209, 42, .24);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 32px);
}
.form-row { margin-bottom: 18px; }
.form-row label, .checkbox-row { display: block; font-weight: 900; color: var(--cream); margin-bottom: 8px; }
.form-row label span { font-weight: 700; color: var(--muted); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(20, 3, 3, 0.76);
  color: var(--white);
  font: inherit;
  outline: none;
}
textarea { resize: vertical; min-height: 160px; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255, 209, 42, .13); }
.field-help, .small-note { display: block; color: var(--muted); font-size: 0.92rem; line-height: 1.45; margin-top: 8px; }
.checkbox-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; line-height: 1.35; margin: 12px 0 22px; }
.checkbox-row input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--gold); }
.submit-button { width: 100%; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--gold); font-weight: 850; }
.hidden-field, .hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { display: block; color: var(--muted); font-size: 0.92rem; line-height: 1.45; margin-top: 8px; }

.safety-section { background: linear-gradient(180deg, rgba(61, 3, 3, .88), rgba(40, 2, 2, .92)); }
.safety-section strong { color: var(--gold); }
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  text-align: center;
  color: var(--muted);
}
.site-footer img { width: 260px; max-width: 70vw; }
.footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.footer-links a { color: var(--cream); font-weight: 850; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .two-column, .ask-section { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; padding: 28px 24px 56px; }
  .hero-nav { gap: 8px; margin-bottom: 28px; }
  .hero-nav a { font-size: 0.76rem; padding: 9px 10px; }
}
@media (max-width: 520px) {
  .topic-grid { grid-template-columns: 1fr; }
  .section-shell { border-radius: 22px; }
  .hero-nav { margin: 0 0 22px; }
  .hero { padding: 22px 18px 46px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero-logo { width: min(270px, 76vw); }
}

