:root {
  --navy-950: #06101f;
  --navy-900: #09172a;
  --navy-800: #10223b;
  --ink: #eff5ff;
  --muted: #b2bfd3;
  --line: rgba(225, 238, 255, 0.16);
  --amber: #ffbe18;
  --amber-soft: #ffd86c;
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

a:focus-visible {
  outline: 3px solid var(--amber-soft);
  outline-offset: 4px;
}

.container { width: min(100% - 48px, 1040px); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 31, 0.88);
}

.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-inner { min-height: 76px; }

.wordmark, .footer-brand {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

nav, .footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
nav a, .footer-links a { color: var(--muted); font-size: 0.92rem; }
nav a:hover, .footer-links a:hover { color: var(--amber-soft); }

.hero {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 74% 33%, rgba(255, 190, 24, 0.16), transparent 30%),
    var(--navy-900);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; min-height: 590px; gap: 68px; }
.hero-copy { padding: 88px 0; }
.eyebrow { margin: 0 0 12px; color: var(--amber); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; }
h1 { margin-bottom: 16px; font-size: clamp(4rem, 10vw, 7.2rem); letter-spacing: -0.085em; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.065em; }
h3 { margin-bottom: 12px; font-size: 1.2rem; letter-spacing: -0.035em; }
.hero-lede { max-width: 590px; margin-bottom: 20px; color: var(--amber-soft); font-size: clamp(1.25rem, 2.8vw, 1.75rem); font-weight: 650; line-height: 1.35; }
.hero-copy > p:not(.eyebrow):not(.hero-lede):not(.metadata), .about-copy, .support p { color: var(--muted); }
.metadata { margin-top: 30px; color: var(--ink); font-size: 0.9rem; font-weight: 600; }
.metadata span { margin: 0 6px; color: var(--amber); }

.hero-art { position: relative; display: grid; place-items: center; min-height: 370px; }
.hero-art img { position: relative; z-index: 1; width: min(100%, 330px); border-radius: 25%; box-shadow: 0 22px 65px rgba(0, 0, 0, 0.38); }
.glow { position: absolute; width: 310px; aspect-ratio: 1; border-radius: 50%; background: var(--amber); filter: blur(76px); opacity: 0.2; }

.section { padding: 104px 0; }
.about { border-bottom: 1px solid var(--line); }
.about-copy { max-width: 720px; font-size: 1.06rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.feature-card, .legal-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.035); }
.feature-card { min-height: 220px; padding: 26px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 0.96rem; }
.feature-number { display: block; margin-bottom: 46px; color: var(--amber); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; }

.support { background: var(--navy-800); }
.support-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.support p { font-size: 1.08rem; }
.email-link { display: inline-block; border-bottom: 2px solid var(--amber); color: var(--amber-soft); font-size: 1.05rem; font-weight: 750; }
.email-link:hover { color: var(--amber); }

.legal { border-bottom: 1px solid var(--line); }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.legal-card { display: flex; align-items: center; justify-content: space-between; padding: 25px 28px; font-size: 1.1rem; font-weight: 750; }
.legal-card span:last-child { color: var(--amber); font-size: 1.4rem; }
.legal-card:hover { border-color: var(--amber); background: rgba(255, 190, 24, 0.07); }

.site-footer { padding: 38px 0; color: var(--muted); font-size: 0.86rem; }
.site-footer p { margin-bottom: 0; }
.footer-brand { margin-bottom: 5px !important; color: var(--ink); }

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1040px); }
  .header-inner { min-height: 68px; }
  nav, .footer-links { gap: 14px; }
  nav a { font-size: 0.82rem; }
  .hero-grid, .support-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { padding: 68px 0 30px; }
  .hero-art { min-height: 270px; padding-bottom: 54px; }
  .hero-art img { width: min(68vw, 285px); }
  .section { padding: 72px 0; }
  .feature-grid, .legal-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-number { margin-bottom: 32px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
