:root {
  --bg: #0b0b0b;
  --panel: #111111;
  --panel-2: #161616;
  --text: #f4f1e8;
  --muted: #a8a49a;
  --gold: #d1a53a;
  --gold-soft: #efd98c;
  --line: rgba(255,255,255,.10);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(209,165,58,.10), transparent 30rem),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 52px 52px, 52px 52px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(209,165,58,.55); color: var(--gold-soft);
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.brand-text strong { font-size: 13px; }
.brand-text span { color: var(--gold-soft); margin-top: 3px; }
.top-link { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.top-link:hover { color: var(--text); }

.hero { padding: 118px 0 106px; max-width: 940px; margin-left: max(20px, calc((100vw - var(--max))/2)); margin-right: 20px; }
.eyebrow { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; margin: 0 0 18px; }
h1, h2 { margin: 0; letter-spacing: -.04em; line-height: 1.02; }
h1 { font-size: clamp(48px, 7.5vw, 94px); max-width: 980px; }
h2 { font-size: clamp(34px, 5vw, 58px); }
.hero-copy { color: #cbc7bd; max-width: 760px; font-size: clamp(18px, 2.2vw, 24px); margin: 30px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; gap: 14px; padding: 15px 20px; text-decoration: none; font-weight: 800; font-size: 14px; border: 1px solid var(--gold); }
.button.primary { color: #111; background: var(--gold-soft); }
.button.primary:hover { background: #f6e3a6; }
.text-link { color: #ded9cd; text-underline-offset: 5px; }
.microcopy { color: var(--muted); font-size: 13px; margin-top: 18px; }

.metrics-band { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.band-grid > div { padding: 27px 24px 29px; border-right: 1px solid var(--line); min-height: 138px; }
.band-grid > div:first-child { padding-left: 0; }
.band-grid > div:last-child { border-right: 0; }
.band-grid span { display: block; color: var(--gold); font-size: 11px; letter-spacing: .15em; margin-bottom: 12px; }
.band-grid strong { font-size: 19px; }
.band-grid p { color: var(--muted); margin: 7px 0 0; font-size: 14px; }

.section { padding-block: 108px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
.statement { padding-top: 32px; border-top: 1px solid var(--line); }
.statement > p:first-child { color: var(--muted); margin-top: 0; }
.questions { font-size: clamp(22px, 3vw, 34px); line-height: 1.35; margin-bottom: 0; }

.transparency { padding-top: 0; }
.transparency-card { background: linear-gradient(135deg, rgba(209,165,58,.09), rgba(255,255,255,.018)); border: 1px solid rgba(209,165,58,.24); padding: clamp(28px, 5vw, 62px); }
.transparency-card h2 { max-width: 800px; }
.transparency-card > p:last-child { max-width: 820px; color: #bdb8ad; font-size: 17px; margin: 24px 0 0; }

.cta { padding: 18px 0 116px; }
.cta h2 { max-width: 720px; margin-bottom: 30px; }

.site-footer { border-top: 1px solid var(--line); padding: 30px 0 42px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer a { color: #ddd8cc; text-underline-offset: 4px; }

@media (max-width: 760px) {
  .site-header { min-height: 72px; }
  .top-link { font-size: 0; }
  .top-link span { font-size: 20px; }
  .hero { padding: 82px 0 72px; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .band-grid > div, .band-grid > div:first-child { padding: 22px 18px; border-bottom: 1px solid var(--line); }
  .band-grid > div:nth-child(2) { border-right: 0; }
  .band-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .split { grid-template-columns: 1fr; gap: 42px; }
  .section { padding-block: 78px; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 430px) {
  .shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .hero { margin-left: 14px; margin-right: 14px; }
  h1 { font-size: 46px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { justify-content: space-between; width: 100%; }
  .band-grid { grid-template-columns: 1fr; }
  .band-grid > div, .band-grid > div:first-child { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .band-grid > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .band-grid > div:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
