:root {
  --brand-blue: #0072bc;
  --brand-orange: #f58220;
  --brand-green: #76b82a;
  --ink: #0a1f33;
  --ink-muted: rgba(10, 31, 51, 0.72);
  --surface: #ffffff;
  --surface-muted: #f3f7fb;
  --surface-dark: #061426;
  --border: rgba(10, 31, 51, 0.12);
  --shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 50;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid color-mix(in oklab, var(--brand-orange), white 35%);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--surface), white 0%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.08);
  border-bottom-color: color-mix(in oklab, var(--border), transparent 35%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: grid;
  gap: 6px;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  display: block;
  height: clamp(44px, 6.2vw, 56px);
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.brand__logo--footer {
  height: clamp(52px, 7vw, 72px);
  filter: drop-shadow(0 10px 22px rgba(6, 20, 38, 0.18));
}

.brand__meta {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

.brand__meta--footer {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav a:hover {
  background: color-mix(in oklab, var(--brand-blue), white 92%);
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 -3px 0 color-mix(in oklab, var(--brand-orange), white 10%);
}

.site-nav a.pill--accent:hover {
  background: linear-gradient(135deg, color-mix(in oklab, var(--brand-orange), white 18%), var(--brand-orange));
  color: #1b0b00;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
}

.nav-toggle__bars {
  width: 22px;
  height: 14px;
  display: inline-block;
  background: linear-gradient(
    var(--ink),
    var(--ink) 2px,
    transparent 2px,
    transparent 6px,
    var(--ink) 6px,
    var(--ink) 8px,
    transparent 8px,
    transparent 12px,
    var(--ink) 12px,
    var(--ink) 14px
  );
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 10px 0 14px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header__inner {
    flex-wrap: wrap;
  }
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.pill--accent {
  border-color: color-mix(in oklab, var(--brand-orange), white 35%);
  background: linear-gradient(135deg, color-mix(in oklab, var(--brand-orange), white 18%), var(--brand-orange));
  color: #1b0b00;
  font-weight: 650;
}

.trust-strip {
  background: linear-gradient(90deg, var(--brand-blue), color-mix(in oklab, var(--brand-blue), black 12%));
  color: #fff;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 0;
}

.trust-strip__item {
  padding: 10px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip__item:last-child {
  border-right: 0;
}

.kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (max-width: 920px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip__item:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: -1px;
  background: radial-gradient(900px 500px at 15% 10%, color-mix(in oklab, var(--brand-blue), white 70%), transparent 60%),
    radial-gradient(800px 520px at 85% 20%, color-mix(in oklab, var(--brand-orange), white 55%), transparent 55%),
    radial-gradient(700px 520px at 70% 95%, color-mix(in oklab, var(--brand-green), white 70%), transparent 55%),
    linear-gradient(180deg, var(--surface-muted), var(--surface));
  opacity: 1;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__copy {
  padding-top: 6px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--brand-blue);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-orange), color-mix(in oklab, var(--brand-orange), black 8%));
  color: #1b0b00;
  box-shadow: 0 14px 30px color-mix(in oklab, var(--brand-orange), transparent 55%);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--border);
  color: var(--ink);
}

.btn--invert {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(6, 20, 38, 0.22);
  color: #061426;
}

.btn--invert:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero__stats dt {
  font-size: 12px;
  color: var(--ink-muted);
}

.hero__stats dd {
  margin: 4px 0 0;
  font-weight: 800;
  font-size: 16px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel__head {
  padding: 16px 16px 0;
}

.panel__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.panel__sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.panel__figure {
  margin: 12px 0 0;
}

.panel__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-top: 1px solid var(--border);
}

.panel__caption {
  padding: 12px 16px 16px;
  color: var(--ink-muted);
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

.section--muted {
  background: var(--surface-muted);
}

.section--dark {
  background: radial-gradient(900px 500px at 20% 0%, color-mix(in oklab, var(--brand-blue), black 35%), var(--surface-dark));
  color: #fff;
}

.section--accent {
  background: linear-gradient(
    135deg,
    color-mix(in oklab, var(--brand-blue), white 10%),
    color-mix(in oklab, var(--brand-orange), white 12%)
  );
  color: #061426;
}

.section--accent .section__title,
.section--accent .section__lead {
  color: inherit;
}

.section__header {
  margin-bottom: 22px;
}

.section__header--center {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 26px;
}

.section__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section__lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 17px;
  max-width: 78ch;
}

.section--dark .section__lead {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }
}

.callout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.callout__title {
  margin: 0 0 10px;
}

.ticks {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-muted);
}

.ticks li {
  margin: 8px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 820px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.card__index {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: color-mix(in oklab, var(--brand-blue), white 35%);
  margin-bottom: 8px;
}

.card__title {
  margin: 0 0 8px;
}

.metrics {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.metric {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: var(--surface);
}

.metric__value {
  font-weight: 900;
  font-size: 18px;
  color: var(--brand-blue);
}

.metric__label {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 14px;
}

.aside-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.65));
}

.tri-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .tri-grid {
    grid-template-columns: 1fr;
  }
}

.tri {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.tri h3 {
  margin: 0 0 8px;
}

.fineprint {
  font-size: 13px;
  color: var(--ink-muted);
}

.section--dark .fineprint {
  color: rgba(255, 255, 255, 0.72);
}

.verify-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px) {
  .verify-grid {
    grid-template-columns: 1fr;
  }
}

.verify-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.verify-card figcaption {
  padding: 12px 14px 14px;
  color: var(--ink-muted);
  font-size: 14px;
}

.verify-card--text {
  padding: 16px;
}

.path {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed color-mix(in oklab, var(--brand-blue), white 55%);
  background: color-mix(in oklab, var(--brand-blue), white 92%);
  overflow: auto;
}

.embed-slot {
  margin-top: 12px;
}

.embed-slot iframe,
.embed-slot embed {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 12px;
}

.verify-external {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.verify-external__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
}

.verify-external__intro {
  margin: 0 0 16px;
  color: var(--ink-muted);
  max-width: 85ch;
}

.verify-external__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.verify-external__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  box-shadow: 0 10px 26px rgba(6, 20, 38, 0.05);
}

.verify-external__name {
  font-weight: 850;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.verify-external__hint {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.45;
}

.verify-external__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.verify-external__link:hover {
  color: color-mix(in oklab, var(--brand-blue), black 12%);
  text-decoration: none;
}

.verify-external__link:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand-orange), white 25%);
  outline-offset: 2px;
  border-radius: 6px;
}

.verify-external__disclaimer {
  margin: 14px 0 0;
  max-width: 85ch;
}

.map-block {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.map-block__title {
  margin: 0 0 8px;
  font-size: 18px;
}

.map-block__lead {
  margin: 0 0 14px;
  color: var(--ink-muted);
  max-width: 75ch;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  max-height: 440px;
  background: var(--surface-muted);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-frame--leaflet {
  aspect-ratio: unset;
  min-height: 360px;
  position: relative;
}

.map-frame--leaflet #org-map {
  width: 100%;
  height: 380px;
  z-index: 0;
}

.map-frame--leaflet .leaflet-control-attribution {
  font-size: 11px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
}

@media (max-width: 600px) {
  .map-frame--leaflet #org-map {
    height: 300px;
  }
}

.map-block__actions {
  margin: 10px 0 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}

.blog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.blog-card__excerpt {
  margin: 0;
  color: var(--ink-muted);
  flex: 1;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(6, 20, 38, 0.06);
}

.event-card__date {
  font-weight: 950;
  color: var(--brand-blue);
  line-height: 1.15;
  min-width: 64px;
}

.event-card__badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand-green), white 70%);
  color: #0b2a08;
}

.event-card__badge--muted {
  background: color-mix(in oklab, var(--ink), white 88%);
  color: var(--ink);
}

.article-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 16px;
}

.back-row {
  margin-bottom: 18px;
}

.contact-block {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.contact-label {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.email {
  font-weight: 800;
  color: var(--brand-blue);
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

.form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form__title {
  margin: 0 0 8px;
}

.field {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.field__label {
  font-size: 13px;
  color: var(--ink-muted);
}

.field__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}

.field__input:focus {
  outline: 3px solid color-mix(in oklab, var(--brand-blue), white 55%);
  outline-offset: 1px;
  border-color: color-mix(in oklab, var(--brand-blue), white 35%);
}

.site-footer.site-footer--mega {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(118deg, #020807 0%, #0a2416 38%, #13402a 78%, #1a5c3d 100%);
}

.mega-footer__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 300px at 14% 0%, rgba(120, 220, 160, 0.14), transparent 55%);
}

.mega-footer {
  position: relative;
  z-index: 1;
  padding: 48px 0 0;
  padding-bottom: 8px;
}

.mega-footer__crest {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.mega-footer__crest-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(120, 200, 150, 0.45);
  background: rgba(0, 0, 0, 0.28);
  padding: 6px;
}

.mega-footer__columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr 1.05fr;
  gap: 28px 22px;
  align-items: start;
  padding-bottom: 8px;
}

@media (max-width: 960px) {
  .mega-footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .mega-footer__columns {
    grid-template-columns: 1fr;
  }
}

.mega-footer__name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: #fff;
}

.mega-footer__tagline {
  margin: 0 0 10px;
  opacity: 0.93;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.mega-footer__id {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.mega-footer__id strong {
  color: #7ef29a;
  font-weight: 800;
}

.mega-footer__micro {
  margin: 0 0 16px;
  font-size: 12px;
  opacity: 0.76;
  line-height: 1.4;
}

.mega-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-footer__soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #dfffea;
}

.mega-footer__heading {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fd9aa;
  margin: 0 0 14px;
  font-weight: 700;
}

.mega-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mega-footer__links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
}

.mega-footer__links a:hover {
  color: #bff7cf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mega-footer__contact-line {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.mega-footer__contact-line a {
  color: #bff7cf;
  font-weight: 650;
}

.mega-footer__contact-line a:hover {
  text-decoration: underline;
}

.mega-footer__contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7fd9a4;
  margin-bottom: 4px;
}

.mega-footer__cta {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, #37f37a 0%, #1ec55d 100%);
  color: #042612;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.mega-footer__cta:hover {
  filter: brightness(1.06);
}

.mega-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding: 16px 0 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.76;
}

.mega-footer__bar p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.inline-link {
  color: var(--brand-blue);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(6, 20, 38, 0.06);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  float: right;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq__item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 10px;
}

.faq__item p {
  margin: 10px 0 4px;
  color: var(--ink-muted);
}

.faq__more {
  margin: 14px 0 0;
  color: var(--ink-muted);
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

@media (max-width: 900px) {
  .cta {
    grid-template-columns: 1fr;
  }
}

.cta__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta__lead {
  margin: 0;
  color: color-mix(in oklab, #061426, white 10%);
  font-size: 16px;
  max-width: 70ch;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .cta__actions {
    justify-content: flex-start;
  }
}

.page {
  padding: 26px 0 10px;
}

.page-hero {
  padding: 34px 0 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-muted), var(--surface));
}

.page-hero__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.page-hero__lead {
  margin: 0;
  max-width: 78ch;
  color: var(--ink-muted);
  font-size: 17px;
}

.prose {
  max-width: 78ch;
}

.prose h2 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose ul {
  padding-left: 18px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.timeline__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: var(--surface);
}

.timeline__year {
  font-weight: 950;
  color: var(--brand-blue);
  letter-spacing: 0.02em;
}
