/* =====================================================
   HEA Energy — Investor Relations
   ===================================================== */

/* ---- Utility ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: currentColor; opacity: .7;
}
.eyebrow--light { color: var(--emerald-400); }
[data-theme="dark"] .eyebrow { color: var(--emerald-400); }

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section--muted { background: var(--bg-muted); }
.section--dark {
  background: var(--navy-900);
  color: #eef1f6;
}
.section--dark .section__title,
.section--dark h3 { color: #ffffff; }

.section__head { max-width: 780px; margin-bottom: var(--space-12); }
.section__head--split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  max-width: none;
  align-items: end;
}
@media (max-width: 780px) { .section__head--split { grid-template-columns: 1fr; } }
.section__intro { color: var(--fg-muted); font-size: var(--text-base); }
.section__title {
  font-size: var(--text-2xl);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section__note {
  color: var(--fg-muted);
  margin-top: var(--space-4);
  max-width: 62ch;
  font-size: var(--text-base);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .15s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover { background: var(--navy-700); }
[data-theme="dark"] .btn--primary { background: var(--btn-green); color: var(--btn-green-ink); }
[data-theme="dark"] .btn--primary:hover { background: var(--btn-green-hover); color: var(--btn-green-ink); }
.btn--secondary {
  background: var(--btn-green);
  color: var(--btn-green-ink);
}
.btn--secondary:hover { background: var(--btn-green-hover); color: var(--btn-green-ink); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero .btn--primary,
.contact .btn--primary { background: var(--btn-green); color: var(--btn-green-ink); }
.hero .btn--primary:hover { background: var(--btn-green-hover); color: var(--btn-green-ink); }
.btn--lg { padding: 1rem 1.5rem; font-size: var(--text-base); }
.btn--text {
  padding: .35rem 0;
  border-radius: 0;
  color: var(--accent-strong);
  border-bottom: 1px solid transparent;
}
.btn--text:hover { border-bottom-color: currentColor; transform: none; }
[data-theme="dark"] .btn--text { color: var(--accent); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}
.brand {
  display: inline-flex; align-items: center; gap: .9rem;
  color: var(--brand);
}
[data-theme="dark"] .brand { color: #eef1f6; }
.brand__logo {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand__logo--dark { display: none; }
[data-theme="dark"] .brand__logo--light { display: none; }
[data-theme="dark"] .brand__logo--dark { display: block; }
.brand__divider {
  width: 1px;
  height: 26px;
  background: var(--border-strong);
  display: inline-block;
}
[data-theme="dark"] .brand__divider { background: rgba(255,255,255,.25); }
.brand__section {
  font-family: var(--font-display, var(--font-body));
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--brand);
  white-space: nowrap;
}
[data-theme="dark"] .brand__section { color: #eef1f6; }
@media (max-width: 600px) {
  .brand__logo { height: 28px; }
  .brand__divider, .brand__section { display: none; }
}

.nav {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem);
  font-size: var(--text-sm);
}
.nav a {
  color: var(--fg-muted);
  line-height: 1.2;
  white-space: nowrap;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--fg); border-bottom-color: var(--accent); }
.nav a.nav__cta {
  color: var(--brand);
  background: var(--sand-100);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: .5rem .9rem;
  border-radius: 999px;
  border-bottom: 0;
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
[data-theme="dark"] .nav a.nav__cta { background: var(--surface); color: #fff; }
.nav a.nav__cta:hover { background: var(--brand); color: #fff; border-bottom-color: transparent; }

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--fg);
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle .icon--moon { display: none; }
[data-theme="dark"] .theme-toggle .icon--sun { display: none; }
[data-theme="dark"] .theme-toggle .icon--moon { display: block; }

@media (max-width: 900px) {
  .nav { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  color: #fff;
  min-height: min(88vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--space-32);
  padding-bottom: var(--space-8);
  isolation: isolate;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,14,28,.35) 0%, rgba(5,14,28,.15) 30%, rgba(5,14,28,.75) 78%, rgba(5,14,28,.94) 100%),
    linear-gradient(105deg, rgba(5,14,28,.72) 0%, rgba(5,14,28,.15) 60%, rgba(5,14,28,0) 100%);
  z-index: -1;
}
.hero__grid { padding-bottom: var(--space-16); }
.hero__copy { max-width: 780px; }
.hero__title {
  font-size: var(--text-3xl);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: var(--space-6);
}
.hero__title-line { display: block; }
.hero__title-line--italic {
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 60;
  color: var(--emerald-400);
}
.hero__lede {
  color: rgba(255,255,255,.85);
  font-size: var(--text-base);
  max-width: 62ch;
  margin-bottom: var(--space-8);
}
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 0;
  margin-inline: auto;
  margin-top: var(--space-8);
}
.hero__stats .stat {
  background: rgba(5,14,28,.55);
  padding: var(--space-6) var(--space-5);
  display: flex; flex-direction: column; gap: .35rem;
  min-height: 130px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 1.6vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__unit { font-size: .88em; color: var(--emerald-400); margin-left: 2px; font-family: var(--font-body); font-weight: 600; }
.stat__label {
  color: rgba(255,255,255,.82);
  font-size: var(--text-sm);
  line-height: 1.35;
}
.stat__meta { color: rgba(255,255,255,.55); font-size: .78rem; }

@media (max-width: 900px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 82vh; }
}
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; }
}

/* ---- KPI grid (H1) ---- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--space-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
  margin-bottom: var(--space-16);
}
.kpi {
  background: var(--bg-elev);
  padding: var(--space-6) var(--space-6);
  display: flex; flex-direction: column; gap: .4rem;
  min-height: 150px;
}
.kpi__label {
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.kpi__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 1.6vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
}
.kpi__delta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: .3rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--ink-800);
  font-size: .78rem;
  font-weight: 600;
  margin-top: .1rem;
}
.kpi__delta--up {
  background: color-mix(in oklab, var(--emerald-500) 22%, transparent);
  color: var(--emerald-700);
}
[data-theme="dark"] .kpi__delta { background: var(--bg-muted); color: var(--fg-muted); }
[data-theme="dark"] .kpi__delta--up { background: color-mix(in oklab, var(--emerald-500) 22%, transparent); color: var(--emerald-400); }
.kpi__prev { color: var(--fg-subtle); font-size: var(--text-xs); }
@media (max-width: 900px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .kpi-grid { grid-template-columns: 1fr; } }

/* ---- Daybreak (fleet mini-table) ---- */
.daybreak {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  padding: var(--space-8);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-12);
}
.daybreak__head h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.daybreak__head p { color: var(--fg-muted); font-size: var(--text-sm); }
.daybreak__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.daybreak__table th,
.daybreak__table td {
  padding: .85rem 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.daybreak__table thead th {
  color: var(--fg-subtle);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.daybreak__table th:not(:first-child),
.daybreak__table td:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
.daybreak__note { grid-column: 1 / -1; color: var(--fg-subtle); font-size: var(--text-xs); margin-top: var(--space-3); }
@media (max-width: 780px) {
  .daybreak { grid-template-columns: 1fr; }
}

/* ---- Pullquote ---- */
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 0 0 0 var(--space-6);
  margin: var(--space-12) 0;
  max-width: 62ch;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.45;
  color: var(--fg);
  font-style: italic;
  letter-spacing: -0.005em;
}
.pullquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  margin-top: var(--space-3);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-row { display: flex; gap: var(--space-6); flex-wrap: wrap; align-items: center; }

/* ---- Investment case ---- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--space-6);
}
.case {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.case:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.case__no {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--accent-strong);
  letter-spacing: .1em;
  font-weight: 600;
}
.case h3 {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.case p { color: var(--fg-muted); font-size: var(--text-sm); line-height: 1.6; }
@media (max-width: 900px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cases { grid-template-columns: 1fr; } }

/* ---- Divider ---- */
.divider {
  position: relative;
  height: clamp(280px, 42vw, 460px);
  overflow: hidden;
  isolation: isolate;
}
.divider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.divider__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,14,28,.85) 0%, rgba(5,14,28,.15) 65%, transparent 100%);
  z-index: -1;
}
.divider__caption {
  position: absolute; inset: auto 0 var(--space-10) 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.35;
  letter-spacing: -0.005em;
  max-width: 60ch;
  font-style: italic;
}

/* ---- Bond ---- */
.bond {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
.bond__intro p {
  color: var(--fg-muted);
  margin: var(--space-4) 0 var(--space-6);
  font-size: var(--text-base);
  max-width: 55ch;
}
.bond__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
}
.bond__facts > div {
  background: var(--bg-elev);
  padding: var(--space-5) var(--space-5);
  display: flex; flex-direction: column; gap: .3rem;
  min-height: 92px;
}
.bond__facts dt {
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 600;
}
.bond__facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--fg);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .bond { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .bond__facts { grid-template-columns: 1fr; }
}

/* ---- Reports ---- */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--space-5);
}
.doc {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  min-height: 220px;
}
.doc:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.doc__type {
  display: inline-flex;
  align-self: flex-start;
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  padding: .3rem .55rem;
  border-radius: 999px;
  font-weight: 600;
}
.doc h3 { font-size: var(--text-lg); line-height: 1.2; }
.doc p { color: var(--fg-muted); font-size: var(--text-sm); line-height: 1.55; }
.doc__cta { color: var(--accent-strong); font-size: var(--text-sm); font-weight: 600; margin-top: auto; }
[data-theme="dark"] .doc__cta { color: var(--accent); }
@media (max-width: 1000px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .docs-grid { grid-template-columns: 1fr; } }

/* ---- News timeline ---- */
.timeline { list-style: none; margin: 0; padding: 0; }
.tl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.tl:last-child { border-bottom: 1px solid var(--border); }
.tl__date {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding-top: .35rem;
  font-weight: 500;
}
.tl__body h3 {
  font-size: var(--text-lg);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-2);
}
.tl__body h3 a { border-bottom: 1px solid transparent; }
.tl__body h3 a:hover { border-bottom-color: var(--accent); color: var(--accent-strong); }
[data-theme="dark"] .tl__body h3 a:hover { color: var(--accent); }
.tl__body p { color: var(--fg-muted); font-size: var(--text-sm); line-height: 1.6; max-width: 65ch; }
.tl__link { display: inline-block; margin-top: var(--space-3); color: var(--accent-strong); font-size: var(--text-sm); font-weight: 600; }
[data-theme="dark"] .tl__link { color: var(--accent); }
@media (max-width: 700px) {
  .tl { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* ---- Fleet split ---- */
.fleet {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.fleet__copy p { color: rgba(255,255,255,.8); max-width: 55ch; font-size: var(--text-base); margin: var(--space-4) 0 var(--space-6); }
.section__title--light { color: #fff; }
.fleet__facts { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.fleet__facts li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,.14);
  align-items: baseline;
  color: rgba(255,255,255,.85);
  font-size: var(--text-sm);
}
.fleet__facts li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.fleet__facts li span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  color: var(--emerald-400);
  letter-spacing: -0.02em;
}
.fleet__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fleet__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) {
  .fleet { grid-template-columns: 1fr; }
}

/* ---- Fleet full-bleed banner ---- */
.section--fleet { padding: 0; }
.fleet-bleed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(520px, 54vw, 720px);
  display: flex;
  align-items: center;
}
.fleet-bleed__content {
  position: relative;
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--container-pad, clamp(1.25rem, 4vw, 2.5rem));
}
.fleet-bleed__bg { position: absolute; inset: 0; z-index: -2; }
.fleet-bleed__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fleet-bleed::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(5,14,28,.95) 0%, rgba(5,14,28,.88) 42%, rgba(5,14,28,.52) 74%, rgba(5,14,28,.36) 100%);
}
.fleet-bleed__inner {
  width: min(100%, 60ch);
}
.fleet-bleed .section__title--light { max-width: 24ch; }
.fleet-bleed__lede { color: rgba(255,255,255,.85); font-size: var(--text-base); margin: var(--space-4) 0 var(--space-6); }
.fleet-bleed .fleet__facts { max-width: 30rem; }
@media (max-width: 900px) {
  .fleet-bleed { min-height: 0; display: block; }
  .fleet-bleed__inner { width: 100%; }
  .fleet-bleed::before {
    background: linear-gradient(180deg, rgba(5,14,28,.82) 0%, rgba(5,14,28,.92) 45%, rgba(5,14,28,.96) 100%);
  }
}

/* ---- Governance ---- */
.gov { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start; }
.gov__intro p { color: var(--fg-muted); margin-top: var(--space-4); max-width: 48ch; font-size: var(--text-base); }
.people { display: grid; gap: var(--space-6); }
.person {
  display: grid; grid-template-columns: 64px 1fr; gap: var(--space-5);
  padding: var(--space-6);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: start;
}
.person__initials {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  border-radius: 999px;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .04em;
}
[data-theme="dark"] .person__initials { background: var(--accent); color: var(--navy-950); }
.person__photo {
  width: 76px; height: 76px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  background: var(--navy-800);
  display: block;
  flex: none;
}
.person h3 { font-size: var(--text-lg); line-height: 1.2; }
.person__role {
  font-size: var(--text-sm);
  color: var(--accent-strong);
  font-weight: 600;
  letter-spacing: .04em;
  margin: .2rem 0 var(--space-3);
}
[data-theme="dark"] .person__role { color: var(--accent); }
.person p:last-child { color: var(--fg-muted); font-size: var(--text-sm); line-height: 1.6; }
@media (max-width: 900px) { .gov { grid-template-columns: 1fr; } }

/* ---- Contact ---- */
.contact { background: var(--navy-900); color: #fff; }
.contact__inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  padding-block: var(--space-8);
}
.contact__title {
  font-size: var(--text-2xl);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.contact__sub { color: rgba(255,255,255,.75); margin: var(--space-4) 0 var(--space-8); font-size: var(--text-base); }
.contact__actions {
  margin-top: calc(var(--space-8) + var(--space-6));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.contact__link {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 0;
  transition: color .15s ease;
}
.contact__link:hover { color: var(--btn-green); }
.contact__address {
  font-style: normal;
  margin-top: var(--space-10);
  color: rgba(255,255,255,.65);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.7);
  padding-block: var(--space-10);
  font-size: var(--text-sm);
}
.site-footer__disclaimer {
  max-width: 90ch;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  font-size: var(--text-xs);
  margin-bottom: var(--space-6);
}
.site-footer__row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap; gap: var(--space-3);
}
.site-footer__links a { color: rgba(255,255,255,.75); border-bottom: 1px solid transparent; }
.site-footer__links a:hover { color: #fff; border-bottom-color: var(--accent); }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Document cards with multiple files */
.doc--static { cursor: default; }
.doc--static:hover { border-color: var(--border); transform: none; box-shadow: none; }
.doc__files { list-style: none; margin: auto 0 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.doc__files li + li { border-top: 1px solid var(--border); padding-top: .5rem; }
.doc__files a {
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem;
  color: var(--accent-strong); font-size: var(--text-sm); font-weight: 600;
  text-decoration: none; line-height: 1.35;
}
.doc__files a:hover { text-decoration: underline; }
.doc__files a span {
  flex: none; font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-muted); font-weight: 600;
}
[data-theme="dark"] .doc__files a { color: var(--accent); }

/* ---- Investor access gate ---- */
.gate[hidden] { display: none; }
.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 28, .82);
  backdrop-filter: blur(3px);
}
.gate__panel {
  position: relative;
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(100%, 44rem);
  max-height: min(88vh, 46rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.gate__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}
.gate__body p { color: var(--fg-muted); font-size: var(--text-sm); line-height: 1.65; margin-bottom: var(--space-3); }
.gate__list { margin: var(--space-3) 0 0; padding-left: 1.15rem; display: grid; gap: var(--space-2); }
.gate__list li { color: var(--fg); font-size: var(--text-sm); line-height: 1.6; }
.gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover { background: var(--bg-muted); }
body.gate-open { overflow: hidden; }
