:root {
  --black: #000000;
  --abyss: #050506;
  --charcoal: #0E0E10;
  --iron: #141417;
  --gold: #C9A961;
  --gold-soft: #DAB877;
  --gold-dark: #8F7638;
  --white: #F5F4F0;
  --ash: #7D7D7D;
  --steel: #969696;
  --slate: #494949;
  --line: rgba(245, 244, 240, 0.07);
  --line-strong: rgba(201, 169, 97, 0.3);

  --font: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  --max: 1280px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 8px 12px;
  z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 16px 32px;
}
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  justify-self: start;
}
.menu-trigger:hover { color: var(--gold); }
.menu-trigger-icon {
  width: 24px;
  height: 14px;
  display: inline-block;
  position: relative;
}
.menu-trigger-icon::before,
.menu-trigger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
}
.menu-trigger-icon::before { top: 3px; }
.menu-trigger-icon::after { top: 10px; }

.nav-logo { justify-self: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-end {
  justify-self: end;
  font-family: inherit;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--white);
}
.nav-end a { opacity: 0.85; }
.nav-end a:hover { opacity: 1; color: var(--gold); }

/* ---------- Overlay menu ---------- */
.overlay-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.overlay-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.overlay-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
}
.overlay-close {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.overlay-close:hover { color: var(--gold); }
.overlay-close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.overlay-menu nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 32px;
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.overlay-menu nav a {
  color: var(--white);
  font-size: clamp(32px, 6.5vw, 68px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.05;
  padding: 14px 0;
  display: inline-block;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), transform 0.3s var(--ease);
}
.overlay-menu nav a:hover {
  color: var(--gold);
  transform: translateX(18px);
}
.overlay-menu-footer {
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ash);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.overlay-menu-footer a { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg svg {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: 70%;
  max-width: 900px;
  height: auto;
  opacity: 0.22;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 28%, transparent 28%);
}
.hero .container { position: relative; z-index: 1; }

.eyebrow {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin: 0 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 12px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-block;
}

h1 {
  font-family: inherit;
  font-size: clamp(42px, 9vw, 118px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 36px;
  max-width: 1100px;
}
h1 .gold { color: var(--gold); }

.hero-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ash);
  max-width: 640px;
  line-height: 1.6;
  margin: 0 0 48px;
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); color: var(--black); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245, 244, 240, 0.5);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-block { width: 100%; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-stat-value {
  display: block;
  font-family: inherit;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ash);
}

/* ---------- Panel / section base ---------- */
.panel {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.panel-alt { background: var(--abyss); }
.panel-label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.panel-label::before {
  content: "";
  width: 10px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-block;
}

h2 {
  font-family: inherit;
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 48px;
  max-width: 1080px;
}
h2 .gold { color: var(--gold); }

h3 {
  font-family: inherit;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 16px;
  color: var(--white);
}

.panel-lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ash);
  max-width: 740px;
  line-height: 1.65;
  margin: 0 0 56px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.prose p { color: var(--ash); margin: 0 0 18px; font-size: 17px; line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--white); font-weight: 500; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.steps li {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  transition: background 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.steps li:hover { background: var(--charcoal); }
.step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.step-num {
  font-family: inherit;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.steps li h3 { margin-bottom: 16px; }
.steps li p { color: var(--ash); margin: 0; font-size: 15px; line-height: 1.65; }

/* ---------- Icons ---------- */
.icon {
  width: 38px;
  height: 38px;
  stroke: var(--gold);
  stroke-width: 1.25;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
  display: block;
}

/* ---------- Data table ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-family: inherit;
}
.data-table caption {
  text-align: left;
  padding: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  caption-side: top;
}
.data-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.data-table thead th:first-child { padding-left: 0; }
.data-table tbody th {
  padding: 20px 20px 20px 0;
  text-align: left;
  font-weight: 400;
  color: var(--ash);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.data-table tbody td {
  padding: 20px;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.005em;
}
.data-table tbody tr.highlight th,
.data-table tbody tr.highlight td {
  background: var(--iron);
  color: var(--gold);
  font-size: 18px;
}
.data-table tbody tr.highlight th { color: var(--gold); font-weight: 500; font-size: 13px; }
.data-table small {
  display: block;
  color: var(--slate);
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.fine-print {
  margin-top: 32px;
  font-size: 13px;
  color: var(--slate);
  max-width: 860px;
  line-height: 1.7;
}

/* ---------- Chart ---------- */
.chart {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.chart-col {
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}
.chart-col:last-child { border-right: 0; background: var(--iron); }
.chart-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ash);
}
.chart-value {
  font-family: inherit;
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 500;
  color: var(--gold);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.chart-bar-wrap {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.chart-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: growBar 1.6s var(--ease) 0.4s forwards;
}
.chart-bar.low { --target: 28%; }
.chart-bar.high { --target: 100%; animation-delay: 0.8s; }
.chart-caption {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes growBar { to { width: var(--target); } }

/* ---------- 10y Projection ---------- */
.projection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 56px;
}
.proj-card {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.proj-card:last-child { border-right: 0; background: var(--iron); }
.proj-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin: 0 0 36px;
}
.proj-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.proj-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ash);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proj-list li:last-child { border-bottom: 0; }
.proj-list li strong {
  color: var(--white);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.proj-total {
  margin-top: auto;
  padding: 32px 0 12px;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proj-total span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ash);
}
.proj-total strong {
  font-family: inherit;
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.proj-foot {
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.55;
}
.proj-foot strong { color: var(--gold); font-weight: 500; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  transition: background 0.25s var(--ease);
}
.pillar:hover { background: var(--charcoal); }
.pillar .icon { margin-bottom: 32px; }
.pillar h3 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.pillar p {
  color: var(--ash);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.team-card {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  transition: background 0.25s var(--ease);
}
.team-card:hover { background: var(--charcoal); }
.avatar {
  width: 76px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--line-strong);
}
.team-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.005em;
}
.team-card .role {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0 0 24px;
}
.team-card p:last-child {
  color: var(--ash);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 48px 40px;
}
.field { display: flex; flex-direction: column; gap: 12px; }
.field label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.28em;
}
.field input,
.field select,
.field textarea {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}
.field-check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ash);
  font-weight: 400;
}
.field-check a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.field-check a:hover { border-bottom-color: var(--gold); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status {
  min-height: 20px;
  font-size: 12px;
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.form-status.error { color: #E9685F; }

.contact-alt {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.contact-alt a { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 96px 0 32px;
  background: var(--abyss);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand-col .footer-brand { display: inline-block; margin: 0 0 28px; }
.footer-brand-col .footer-brand img { height: 38px; width: auto; }
.footer-claim {
  color: var(--ash);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  max-width: 360px;
  margin: 0;
  line-height: 1.6;
}
.footer-col p {
  margin: 0 0 14px;
  color: var(--ash);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.7;
}
.footer-col a { color: var(--ash); }
.footer-col a:hover { color: var(--gold); }
.footer-head {
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--white) !important;
  margin-bottom: 22px !important;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.footer-bottom .small {
  color: var(--slate);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0;
}

/* ---------- Legal pages ---------- */
.legal-main {
  padding: 160px 0 120px;
  background: var(--abyss);
  border-bottom: 1px solid var(--line);
}
.legal-main .container { max-width: 880px; }
.legal-main h1 {
  font-size: clamp(42px, 6vw, 80px);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.0;
}
.legal-meta {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 0 0 64px;
}
.legal-main h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 64px 0 20px;
  max-width: none;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.legal-main h3 {
  font-size: 14px;
  margin: 32px 0 12px;
  color: var(--white);
  letter-spacing: 0.08em;
}
.legal-main p,
.legal-main li {
  color: var(--ash);
  font-size: 16px;
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0;
}
.legal-main p { margin: 0 0 16px; }
.legal-main ul { padding-left: 24px; margin: 0 0 16px; }
.legal-main li { margin-bottom: 8px; }
.legal-main a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.legal-main a:hover { border-bottom-color: var(--gold); }
.legal-main strong { color: var(--white); font-weight: 500; }
.legal-main hr { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
  border-top: 1px solid var(--line);
}
.legal-table th, .legal-table td {
  padding: 14px 16px 14px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ash);
  vertical-align: top;
}
.legal-table th {
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 48px;
  border-bottom: 0 !important;
}
.back-home:hover { color: var(--gold-soft) !important; }

.placeholder {
  background: rgba(201, 169, 97, 0.08);
  border: 1px dashed var(--line-strong);
  padding: 2px 10px;
  color: var(--gold);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .chart { grid-template-columns: 1fr; }
  .projection { grid-template-columns: 1fr; }
  .chart-col:last-child { border-top: 1px solid var(--line); }
  .proj-card:last-child { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-bg svg { opacity: 0.15; right: -25%; width: 95%; }
  .container { padding: 0 24px; }
  .site-header { padding: 18px 24px; }
}

@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-stats { gap: 32px; }
  .panel { padding: 80px 0; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .nav-end { display: none; }
  .data-table thead th, .data-table tbody th, .data-table tbody td { padding: 14px 10px; font-size: 13px; }
  .data-table thead th:first-child, .data-table tbody th { padding-left: 0; font-size: 11px; }
  .proj-card { padding: 40px 28px; }
  .chart-col { padding: 40px 28px; }
  .form { padding: 32px 24px; }
  h2 { margin-bottom: 32px; }
}

/* ---------- Gold glow system ---------- */
.steps li,
.pillar,
.team-card,
.proj-card {
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.steps li:hover,
.pillar:hover,
.team-card:hover,
.proj-card:hover {
  border-color: rgba(201, 169, 97, 0.45);
  box-shadow:
    0 0 0 1px rgba(201, 169, 97, 0.2),
    0 20px 60px -20px rgba(201, 169, 97, 0.18),
    inset 0 0 80px -20px rgba(201, 169, 97, 0.05);
}

.chart,
.projection,
.form {
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, 0.08),
    0 0 60px -20px rgba(201, 169, 97, 0.06);
}
.form:focus-within {
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, 0.2),
    0 0 80px -16px rgba(201, 169, 97, 0.12);
}

.btn-primary {
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
}
.btn-primary:hover {
  box-shadow:
    0 10px 30px -8px rgba(201, 169, 97, 0.4),
    0 0 0 1px rgba(201, 169, 97, 0.3);
}
.btn-ghost:hover {
  box-shadow: 0 0 20px -4px rgba(201, 169, 97, 0.2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}

.avatar {
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.team-card:hover .avatar {
  background: rgba(201, 169, 97, 0.15);
  box-shadow: 0 0 28px -4px rgba(201, 169, 97, 0.3);
}

.hero-stat-value,
.chart-value,
.proj-total strong {
  text-shadow: 0 0 30px rgba(201, 169, 97, 0.15);
}

/* Custom select chevron */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23C9A961' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px;
}

/* Focus ring (accessibility) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}

/* Hero CTA subtle idle glow */
.hero .btn-primary {
  animation: primaryPulse 3s var(--ease) 1.5s infinite;
}
@keyframes primaryPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
  50% { box-shadow: 0 8px 24px -8px rgba(201, 169, 97, 0.28); }
}

/* Section divider accent */
.hero::after,
.panel + .panel::before {
  box-shadow: 0 0 20px rgba(201, 169, 97, 0.25);
}

/* Eyebrow and panel label hex glow */
.eyebrow::before,
.panel-label::before {
  box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

/* Gold accent lines on caption / meta */
.data-table caption,
.legal-meta {
  position: relative;
  padding-left: 18px;
}
.data-table caption::before,
.legal-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1.5px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
