:root {
  --brand: #000323;
  --brand-soft: #10133a;
  --ink: #090b1c;
  --muted: #5f6170;
  --line: #dedfe6;
  --line-dark: rgba(255, 255, 255, 0.16);
  --paper: #f7f7f4;
  --white: #ffffff;
  --soft: #eeeff3;
  --soft-blue: #f0f1f8;
  --max: 1240px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 24px 70px rgba(0, 3, 34, 0.08);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--brand);
}

:focus-visible {
  outline: 3px solid rgba(0, 3, 34, 0.34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brand);
  transform: translateY(-180%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding-block: clamp(80px, 9vw, 136px);
}

.section-light {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--brand);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: rgba(255, 255, 255, 0.64);
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 6.25vw, 5.85rem);
  font-weight: 760;
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.25vw, 4.1rem);
  font-weight: 730;
  line-height: 1.01;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.12;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--brand);
}

.button-primary:hover {
  background: var(--brand-soft);
}

.button-secondary {
  color: var(--brand);
  border-color: rgba(0, 3, 34, 0.18);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--brand);
  background: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.88rem;
}

.button-light {
  color: var(--brand);
  background: var(--white);
}

.button-light:hover {
  background: #f0f0f3;
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--brand);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(0, 3, 34, 0.22);
  text-underline-offset: 5px;
  transition: text-decoration-color var(--transition), gap var(--transition);
}

.text-link:hover {
  gap: 14px;
  text-decoration-color: var(--brand);
}

.text-link-light {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

.text-link-light:hover {
  text-decoration-color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 247, 244, 0.92);
  backdrop-filter: blur(18px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 3, 34, 0.1);
  box-shadow: 0 8px 30px rgba(0, 3, 34, 0.04);
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: clamp(168px, 15vw, 206px);
  height: auto;
  aspect-ratio: 3000 / 744;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4d4f5e;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--transition), background-color var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand);
  background: rgba(0, 3, 34, 0.055);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 3, 34, 0.16);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--brand);
  transition: transform var(--transition);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: 84px 0 0;
  overflow-y: auto;
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-nav {
  display: grid;
  gap: 0;
  padding-block: 18px 48px;
}

.mobile-nav > a:not(.button) {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--brand);
  font-size: clamp(1.55rem, 7vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 28px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 116px);
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 3, 34, 0.055), transparent 27%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.hero-copy {
  padding-block: 18px;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: #4c4e5d;
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 24px;
  color: #777985;
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow-soft);
}

.hero-panel::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-panel-top,
.hero-panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.panel-kicker,
.panel-index,
.hero-panel-footer {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.pathway li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 21px 0;
  border-top: 1px solid var(--line-dark);
}

.pathway li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.path-number {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  font-weight: 720;
}

.pathway strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.pathway p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.91rem;
  line-height: 1.55;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: start;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading-wide {
  max-width: 1000px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.intro-copy {
  padding-top: 44px;
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy .lead-copy {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
  line-height: 1.48;
  letter-spacing: -0.022em;
}

/* Network video */
.network-video {
  background: var(--paper);
}

.network-video-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.network-video-copy {
  position: sticky;
  top: 116px;
}

.network-video-copy h2 {
  max-width: 560px;
  margin-bottom: 24px;
}

.network-video-copy > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
}

.network-video-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.network-video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: var(--shadow-soft);
}

.network-video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 466;
  background: transparent;
  object-fit: contain;
}

.network-video-caption {
  margin: 0;
  padding: 0 4px;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

/* Benefits */
.benefits {
  background: var(--paper);
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-number {
  padding-top: 5px;
  color: #878996;
  font-size: 0.8rem;
  font-weight: 760;
}

.benefit-row h3 {
  margin: 0;
}

.benefit-row p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

/* Formats */
.formats h2,
.formats h3 {
  color: var(--white);
}

.formats-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.formats-head h2 {
  max-width: 760px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.format-card {
  min-height: 300px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color var(--transition);
}

.format-card:hover {
  background: rgba(255, 255, 255, 0.045);
}

.format-label {
  margin-bottom: 76px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-card h3 {
  margin-bottom: 14px;
}

.format-card p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.64);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.95fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.audience-copy p:last-child {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.audience-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.audience-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  color: #2f3140;
  font-size: 1.03rem;
  line-height: 1.5;
}

.audience-list span {
  padding-top: 3px;
  color: #9698a4;
  font-size: 0.74rem;
  font-weight: 760;
}

/* Coming soon */
.coming {
  background: var(--soft-blue);
}

.coming-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.coming-head > p {
  margin: 0;
  color: var(--muted);
}

.coming-list {
  border-top: 1px solid rgba(0, 3, 34, 0.15);
}

.coming-item {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 3, 34, 0.15);
}

.status-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(0, 3, 34, 0.16);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.coming-item h3,
.coming-item p {
  margin: 0;
}

.coming-item p {
  color: var(--muted);
}

/* CTA */
.final-cta {
  padding-block: clamp(68px, 7vw, 100px);
  background: var(--white);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--brand);
}

.cta-card h2 {
  max-width: 850px;
  color: var(--white);
}

.cta-copy > p:last-child {
  max-width: 680px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.cta-actions {
  display: grid;
  min-width: 220px;
  gap: 10px;
}

/* Footer */
.site-footer {
  padding-top: 72px;
  color: #4f5160;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.6fr));
  gap: 48px;
  padding-bottom: 64px;
}

.brand-footer img {
  width: 190px;
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 24px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #777985;
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-panel {
    max-width: 780px;
  }

  .intro-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .audience-list {
    max-width: 800px;
  }

  .coming-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .coming-head > p {
    max-width: 700px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-grid .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding-block: 78px;
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-menu {
    inset: 72px 0 0;
  }

  .brand img {
    width: 160px;
  }

  h1 {
    font-size: clamp(3rem, 14.6vw, 4.45rem);
    line-height: 0.97;
  }

  h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.45rem);
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    padding: 28px 24px;
    border-radius: 26px;
  }

  .hero-panel::after {
    display: none;
  }

  .hero-panel-footer {
    display: grid;
    gap: 6px;
  }

  .network-video-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .network-video-copy {
    position: static;
  }

  .network-video-frame {
    border-radius: 24px;
  }

  .network-video-caption {
    padding-inline: 16px;
  }

  .benefit-row {
    grid-template-columns: 40px 1fr;
    gap: 16px 14px;
    padding: 28px 0;
  }

  .benefit-row p {
    grid-column: 2;
  }

  .formats-head {
    display: grid;
    align-items: start;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: auto;
  }

  .format-label {
    margin-bottom: 48px;
  }

  .coming-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-card {
    gap: 38px;
    padding: 34px 24px;
    border-radius: 26px;
  }

  .cta-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
    gap: 5px;
    padding-block: 22px;
  }
}

@media (max-width: 460px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding-block: 68px;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .pathway li {
    grid-template-columns: 34px 1fr;
  }

  .audience-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-grid .footer-column:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(76px, 8.5vw, 124px);
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 3, 34, 0.05), transparent 26%),
    var(--paper);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 900px;
}

.about-hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #4c4e5d;
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  line-height: 1.62;
}

.about-manifesto {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 3, 34, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-manifesto-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: #858794;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.manifesto-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.manifesto-item > span {
  padding-top: 4px;
  color: #9b9ca7;
  font-size: 0.72rem;
  font-weight: 760;
}

.manifesto-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--brand);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.manifesto-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(56px, 10vw, 150px);
  align-items: start;
}

.about-mission-copy {
  padding-top: 42px;
  color: var(--muted);
}

.about-mission-copy > p + p {
  margin-top: 20px;
}

.about-statement {
  color: var(--ink);
  font-size: clamp(1.28rem, 1.95vw, 1.62rem);
  line-height: 1.45;
  letter-spacing: -0.026em;
}

.about-story {
  background: var(--paper);
}

.about-section-head,
.about-values-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 86px);
}

.about-section-head > p,
.about-values-head > p {
  margin: 0;
  color: var(--muted);
}

.story-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.story-step {
  display: grid;
  grid-template-columns: minmax(100px, 0.24fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(32px, 5vw, 50px) 0;
  border-bottom: 1px solid var(--line);
}

.story-year {
  color: var(--brand);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 760;
  letter-spacing: -0.04em;
}

.story-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.story-kicker {
  margin: 4px 0 0;
  color: #8c8e9a;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-content h3 {
  grid-column: 2;
  margin: 0 0 12px;
}

.story-content > p:last-child {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  max-width: 700px;
}

.about-values h2,
.about-values h3 {
  color: var(--white);
}

.about-values-head > p {
  color: rgba(255, 255, 255, 0.62);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.value-card {
  min-height: 320px;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.045);
}

.value-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(64px, 8vw, 96px);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.value-card h3 {
  margin-bottom: 14px;
}

.value-card p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.about-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.92fr);
  gap: clamp(56px, 9vw, 126px);
  align-items: start;
}

.about-why-copy > p:last-child {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
}

.about-reasons {
  border-top: 1px solid var(--line);
}

.reason-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.reason-number {
  padding-top: 5px;
  color: #999ba6;
  font-size: 0.72rem;
  font-weight: 760;
}

.reason-row h3 {
  margin-bottom: 9px;
}

.reason-row p {
  margin: 0;
  color: var(--muted);
}

.about-team {
  background: var(--soft-blue);
}

.about-team-head {
  margin-bottom: clamp(44px, 6vw, 70px);
}

.team-areas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 3, 34, 0.14);
  border-left: 1px solid rgba(0, 3, 34, 0.14);
}

.team-area {
  min-height: 260px;
  padding: clamp(26px, 3vw, 36px);
  border-right: 1px solid rgba(0, 3, 34, 0.14);
  border-bottom: 1px solid rgba(0, 3, 34, 0.14);
  background: rgba(255, 255, 255, 0.24);
}

.team-area > span {
  display: block;
  margin-bottom: 54px;
  color: #999ba6;
  font-size: 0.72rem;
  font-weight: 760;
}

.team-area h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.team-area p {
  margin: 0;
  color: var(--muted);
}

.team-area-cta {
  color: var(--white);
  background: var(--brand);
}

.team-area-cta > span,
.team-area-cta p {
  color: rgba(255, 255, 255, 0.62);
}

.team-area-cta h3 {
  color: var(--white);
}

@media (max-width: 1040px) {
  .about-hero-grid,
  .about-mission-grid,
  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto {
    max-width: 760px;
  }

  .about-mission-copy {
    max-width: 780px;
    padding-top: 0;
  }

  .team-areas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding-top: 58px;
  }

  .about-hero-grid {
    gap: 44px;
  }

  .about-manifesto {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .about-section-head,
  .about-values-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-content h3,
  .story-content > p:last-child {
    grid-column: 1;
  }

  .story-kicker {
    margin-bottom: 3px;
  }

  .value-grid,
  .team-areas {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .value-meta {
    margin-bottom: 52px;
  }

  .team-area {
    min-height: auto;
  }

  .team-area > span {
    margin-bottom: 38px;
  }
}

@media (max-width: 460px) {
  .manifesto-item {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .reason-row {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
}

/* Programmes page */
.programmes-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(76px, 8.5vw, 124px);
  background:
    radial-gradient(circle at 83% 18%, rgba(0, 3, 34, 0.05), transparent 26%),
    var(--paper);
}

.programmes-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.74fr);
  gap: clamp(56px, 8vw, 116px);
  align-items: center;
}

.programmes-hero-copy h1 {
  max-width: 820px;
}

.programmes-hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: #4c4e5d;
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  line-height: 1.62;
}

.programme-index {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow-soft);
}

.programme-index-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.programme-index-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.programme-index-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.programme-index-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.programme-index-list > li > span {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 760;
}

.programme-index-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.programme-index-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.91rem;
  line-height: 1.5;
}

.programme-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(56px, 10vw, 150px);
  align-items: start;
}

.programme-intro-copy {
  padding-top: 42px;
  color: var(--muted);
}

.programme-intro-copy > p + p {
  margin-top: 20px;
}

.programme-statement {
  color: var(--ink);
  font-size: clamp(1.28rem, 1.95vw, 1.62rem);
  line-height: 1.45;
  letter-spacing: -0.026em;
}

.programme-formats {
  background: var(--paper);
}

.programme-section-head,
.programme-planned-head,
.programme-journey-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 86px);
}

.programme-section-head > p,
.programme-planned-head > p,
.programme-journey-head > p {
  margin: 0;
  color: var(--muted);
}

.programme-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.programme-format-card {
  min-height: 330px;
  padding: clamp(26px, 3.2vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  transition: background-color var(--transition), transform var(--transition);
}

.programme-format-card:hover {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.programme-format-meta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(64px, 8vw, 92px);
  color: #9496a2;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.programme-format-card h3 {
  margin-bottom: 13px;
}

.programme-format-card p {
  margin: 0;
  color: var(--muted);
}

.programme-planned {
  background: var(--soft-blue);
}

.programme-planned-head strong {
  color: var(--ink);
  font-weight: 700;
}

.planned-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.planned-card {
  min-height: 360px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(0, 3, 34, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(0, 3, 34, 0.035);
}

.planned-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(70px, 8vw, 104px);
}

.planned-index {
  padding-top: 6px;
  color: #989aa6;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.planned-card h3 {
  margin-bottom: 8px;
}

.planned-tagline {
  margin-bottom: 18px;
  color: var(--brand) !important;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.planned-card > p:last-child {
  margin: 0;
  color: var(--muted);
}

.programme-journey h2,
.programme-journey h3 {
  color: var(--white);
}

.programme-journey-head > p {
  color: rgba(255, 255, 255, 0.62);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.journey-step {
  min-height: 300px;
  padding: clamp(26px, 3.2vw, 38px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.journey-number {
  display: block;
  margin-bottom: clamp(72px, 8vw, 106px);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 760;
}

.journey-step h3 {
  margin-bottom: 12px;
}

.journey-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1040px) {
  .programmes-hero-grid,
  .programme-intro-grid {
    grid-template-columns: 1fr;
  }

  .programme-index {
    max-width: 760px;
  }

  .programme-intro-copy {
    max-width: 780px;
    padding-top: 0;
  }

  .programme-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planned-grid {
    grid-template-columns: 1fr;
  }

  .planned-card {
    min-height: 0;
  }

  .planned-card-top {
    margin-bottom: 54px;
  }

  .journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .programmes-hero {
    padding-top: 58px;
  }

  .programmes-hero-grid {
    gap: 44px;
  }

  .programme-index {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .programme-section-head,
  .programme-planned-head,
  .programme-journey-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .programme-format-grid,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .programme-format-card,
  .journey-step {
    min-height: auto;
  }

  .programme-format-meta,
  .journey-number {
    margin-bottom: 48px;
  }

  .planned-card {
    border-radius: 22px;
  }
}

@media (max-width: 460px) {
  .programme-index-list li {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .planned-card-top {
    margin-bottom: 42px;
  }
}

/* Contact page */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 116px);
  background:
    radial-gradient(circle at 83% 18%, rgba(0, 3, 34, 0.055), transparent 28%),
    var(--paper);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.contact-hero-copy {
  padding-block: 18px;
}

.contact-hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.62;
}

.contact-direct {
  overflow: hidden;
  border: 1px solid rgba(0, 3, 34, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.contact-direct-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  color: #8b8d99;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-direct-row {
  display: grid;
  min-height: 112px;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  transition: background-color var(--transition), padding-left var(--transition);
}

.contact-direct-row:last-child {
  border-bottom: 0;
}

.contact-direct-row:hover {
  padding-left: 30px;
  background: var(--white);
}

.contact-direct-index {
  color: #9a9ca7;
  font-size: 0.7rem;
  font-weight: 760;
}

.contact-direct-copy {
  display: grid;
  gap: 4px;
}

.contact-direct-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.contact-direct-copy > span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-direct-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 3, 34, 0.12);
  border-radius: 50%;
  color: var(--brand);
  font-weight: 700;
}

.contact-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(42px, 7vw, 96px);
  margin-bottom: clamp(52px, 6vw, 78px);
}

.contact-section-head > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-path-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  transition: background-color var(--transition);
}

.contact-path-card:hover {
  background: var(--white);
}

.contact-path-card-featured {
  background: var(--soft-blue);
}

.contact-path-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(72px, 8vw, 104px);
  color: #9698a3;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-path-card h3 {
  max-width: 430px;
  margin-bottom: 16px;
}

.contact-path-card > p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-connect h2 {
  color: var(--white);
}

.contact-connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.contact-connect-copy {
  position: sticky;
  top: 124px;
}

.contact-connect-copy > p:last-child {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.03rem;
}

.contact-social-list {
  border-top: 1px solid var(--line-dark);
}

.contact-social-list a {
  display: grid;
  min-height: 118px;
  grid-template-columns: minmax(100px, 0.38fr) 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left var(--transition), background-color var(--transition);
}

.contact-social-list a:hover {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-social-label {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-social-list strong {
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  letter-spacing: -0.03em;
}

.contact-social-list a > span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.contact-faq-intro {
  position: sticky;
  top: 124px;
}

.contact-faq-intro > p:last-child {
  max-width: 470px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-faq-intro a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-faq-list {
  border-top: 1px solid var(--line);
}

.contact-faq-list details {
  border-bottom: 1px solid var(--line);
}

.contact-faq-list summary {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding-block: 22px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

.contact-faq-list summary::-webkit-details-marker {
  display: none;
}

.contact-faq-list summary span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 3, 34, 0.15);
  border-radius: 50%;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform var(--transition);
}

.contact-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.contact-faq-list details p {
  max-width: 760px;
  margin: -4px 0 28px;
  padding-right: 54px;
  color: var(--muted);
}

.contact-location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.contact-location-copy {
  padding: clamp(36px, 6vw, 72px);
}

.contact-location-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-location-copy .hero-actions {
  margin-top: 34px;
}

.contact-location-mark {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  color: var(--white);
  background: var(--brand);
}

.contact-location-mark::before,
.contact-location-mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-location-mark::before {
  width: 360px;
  height: 360px;
  top: -110px;
  right: -120px;
}

.contact-location-mark::after {
  width: 170px;
  height: 170px;
  top: -14px;
  right: -24px;
}

.contact-location-code {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-location-name {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.contact-location-sub {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 650;
}

@media (max-width: 1040px) {
  .contact-hero-grid,
  .contact-connect-grid,
  .contact-faq-grid,
  .contact-location-panel {
    grid-template-columns: 1fr;
  }

  .contact-direct {
    max-width: 780px;
  }

  .contact-connect-copy,
  .contact-faq-intro {
    position: static;
  }

  .contact-connect-copy {
    max-width: 760px;
  }

  .contact-faq-intro {
    max-width: 720px;
  }

  .contact-location-mark {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding-top: 58px;
  }

  .contact-hero-grid {
    gap: 44px;
  }

  .contact-direct {
    border-radius: 26px;
  }

  .contact-direct-head,
  .contact-direct-row {
    padding-inline: 22px;
  }

  .contact-direct-row:hover {
    padding-left: 22px;
  }

  .contact-section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .contact-path-grid {
    grid-template-columns: 1fr;
  }

  .contact-path-card {
    min-height: auto;
  }

  .contact-path-meta {
    margin-bottom: 52px;
  }

  .contact-social-list a {
    grid-template-columns: 1fr auto;
    gap: 7px 18px;
    padding-block: 26px;
  }

  .contact-social-label {
    grid-column: 1 / -1;
  }

  .contact-social-list a:hover {
    padding-left: 0;
  }

  .contact-faq-list summary {
    min-height: 88px;
  }

  .contact-faq-list details p {
    padding-right: 0;
  }

  .contact-location-panel {
    border-radius: 26px;
  }

  .contact-location-mark {
    min-height: 300px;
  }
}

@media (max-width: 460px) {
  .contact-direct-row {
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
  }

  .contact-direct-arrow {
    width: 34px;
    height: 34px;
  }

  .contact-location-copy {
    padding: 30px 24px;
  }

  .contact-location-mark {
    padding: 30px 24px;
  }
}


/* =========================================================
   Legal / privacy / error pages
   ========================================================= */

.legal-hero {
  padding-top: clamp(72px, 9vw, 126px);
  padding-bottom: clamp(72px, 9vw, 118px);
  color: var(--white);
  background: var(--brand);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(54px, 9vw, 140px);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 8.3rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.legal-hero .eyebrow { color: rgba(255,255,255,.58); }

.legal-hero-lead {
  max-width: 820px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
}

.legal-hero-lead strong { color: var(--white); }

.legal-summary {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.legal-summary-label {
  margin: 0 0 18px;
  color: rgba(255,255,255,.46);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-summary > a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  font-weight: 700;
}

.legal-summary > p:last-child {
  margin: 22px 0 0;
  color: rgba(255,255,255,.58);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(64px, 10vw, 150px);
}

.legal-toc {
  position: sticky;
  top: 124px;
}

.legal-toc nav {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-toc nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 620;
  transition: color var(--transition), padding-left var(--transition);
}

.legal-toc nav a:hover { color: var(--brand); padding-left: 6px; }

.legal-content { min-width: 0; }

.legal-section {
  scroll-margin-top: 120px;
  padding: 0 0 clamp(68px, 8vw, 108px);
  margin: 0 0 clamp(68px, 8vw, 108px);
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child { margin-bottom: 0; border-bottom: 0; }

.legal-section-number {
  margin: 0 0 24px;
  color: #9a9ca8;
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.legal-section h2 {
  max-width: 820px;
  margin: 0 0 28px;
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: .98;
}

.legal-section > p:not(.legal-section-number) {
  max-width: 820px;
  color: var(--muted);
}

.legal-section > p + p { margin-top: 18px; }

.legal-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-fact-card {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.25);
}

.legal-fact-card-wide { grid-column: 1 / -1; }

.legal-fact-card > span,
.legal-people span {
  display: block;
  margin-bottom: 28px;
  color: #999ba6;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-fact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.legal-fact-card p { margin: 0; color: var(--muted); }
.legal-fact-card a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.legal-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-people > div {
  min-height: 148px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-people span { margin-bottom: 22px; }
.legal-people strong { font-size: 1.08rem; }

.legal-definition-list {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.legal-definition-list > div {
  display: grid;
  grid-template-columns: minmax(150px, .4fr) 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.legal-definition-list dt { color: var(--muted); }
.legal-definition-list dd { margin: 0; color: var(--ink); font-weight: 700; }

.legal-copy-stack {
  display: grid;
  gap: 36px;
  margin-top: 38px;
}

.legal-copy-stack h3 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.legal-copy-stack p { max-width: 820px; margin: 0; color: var(--muted); }

.legal-note {
  max-width: 820px;
  margin-top: 34px;
  padding: 26px 28px;
  border-left: 3px solid var(--brand);
  background: var(--soft-blue);
}

.legal-note strong { display: block; margin-bottom: 8px; }
.legal-note p { margin: 0; color: var(--muted); }

.legal-link-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.error-page {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--brand);
}

.error-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.error-page .eyebrow { color: rgba(255,255,255,.55); }
.error-page h1 {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  letter-spacing: -.065em;
  line-height: .92;
}
.error-lead { max-width: 720px; margin: 30px 0 0; color: rgba(255,255,255,.64); font-size: 1.12rem; }
.error-page .button-secondary { color: var(--white); border-color: rgba(255,255,255,.28); }
.error-code { display: flex; justify-content: flex-end; gap: .05em; color: rgba(255,255,255,.08); font-size: clamp(8rem, 20vw, 18rem); font-weight: 800; letter-spacing: -.1em; line-height: .7; }
.error-page + .site-footer { border-top: 1px solid rgba(255,255,255,.12); }
.error-page + .site-footer .footer-bottom a { color: inherit; }

@media (max-width: 980px) {
  .legal-hero-grid, .legal-layout, .error-grid { grid-template-columns: 1fr; }
  .legal-summary { max-width: 650px; }
  .legal-toc { position: static; }
  .legal-toc nav { grid-template-columns: repeat(2, minmax(0,1fr)); border-left: 1px solid var(--line); }
  .legal-toc nav a { padding: 14px; border-right: 1px solid var(--line); }
  .error-code { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .legal-hero { padding-top: 56px; }
  .legal-hero h1 { font-size: clamp(3.3rem, 18vw, 5.7rem); }
  .legal-fact-grid, .legal-people { grid-template-columns: 1fr; }
  .legal-fact-card-wide { grid-column: auto; }
  .legal-toc nav { grid-template-columns: 1fr; }
  .legal-definition-list > div { grid-template-columns: 1fr; gap: 4px; }
  .error-code { font-size: clamp(7rem, 35vw, 11rem); }
}

/* Starthub page */
.starthub-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(76px, 8.5vw, 124px);
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 3, 34, 0.055), transparent 28%),
    var(--paper);
}

.starthub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.74fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}

.starthub-copy h1 {
  max-width: 880px;
}

.starthub-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: #4c4e5d;
  font-size: clamp(1.08rem, 1.72vw, 1.36rem);
  line-height: 1.62;
}

.starthub-panel {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(0, 3, 34, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

/* The generic .pathway component is designed for dark hero panels.
   Starthub uses it on a white card, so use dark text and dividers here. */
.starthub-panel .panel-kicker,
.starthub-panel .panel-index {
  color: rgba(0, 3, 34, 0.58);
}

.starthub-panel .pathway li {
  border-top-color: rgba(0, 3, 34, 0.12);
}

.starthub-panel .pathway li:last-child {
  border-bottom-color: rgba(0, 3, 34, 0.12);
}

.starthub-panel .path-number {
  color: rgba(0, 3, 34, 0.48);
}

.starthub-panel .pathway strong {
  color: var(--brand);
}

.starthub-panel .pathway p {
  color: #5b5d6b;
}

.starthub-tour-grid,
.starthub-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr);
  gap: clamp(52px, 9vw, 120px);
  align-items: start;
}

.starthub-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 3, 34, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.starthub-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.starthub-photo-card figcaption {
  padding: 18px 22px 20px;
  color: #656776;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.starthub-tour-copy {
  padding-top: 24px;
  color: var(--muted);
}

.starthub-tour-copy > p + p {
  margin-top: 20px;
}

.access-grid .format-card {
  min-height: 280px;
}

.starthub-location-card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(0, 3, 34, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.location-label {
  margin-bottom: 16px;
  color: #878996;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-address {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 740;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

@media (max-width: 1040px) {
  .starthub-hero-grid,
  .starthub-tour-grid,
  .starthub-location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .starthub-tour-copy {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .starthub-photo-card figcaption {
    padding: 16px 18px 18px;
  }

  .starthub-location-card {
    padding: 26px 22px;
    border-radius: 26px;
  }
}


/* Starthub visibility + cross-site highlights */
.starthub-access h2,
.starthub-access h3 {
  color: var(--white);
}

.starthub-access .panel-kicker,
.starthub-access .format-label {
  color: rgba(255, 255, 255, 0.58);
}

.starthub-access .format-card p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.starthub-access .format-card {
  background: rgba(255, 255, 255, 0.015);
}

.starthub-access .format-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.starthub-highlight {
  background: var(--white);
}

.starthub-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}

.starthub-highlight-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.starthub-highlight-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.starthub-highlight-copy > p:not(.eyebrow):not(.lead-copy) {
  color: var(--muted);
}

.starthub-highlight-copy .lead-copy {
  margin-top: 26px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.75vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.starthub-highlight-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.starthub-highlight-facts div {
  padding: 22px 18px 22px 0;
}

.starthub-highlight-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.starthub-highlight-facts strong,
.starthub-highlight-facts span {
  display: block;
}

.starthub-highlight-facts strong {
  margin-bottom: 5px;
  color: var(--brand);
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.starthub-highlight-facts span {
  color: #70727f;
  font-size: 0.82rem;
}

.starthub-strip {
  background: var(--paper);
}

.starthub-strip-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: end;
  padding: clamp(36px, 6vw, 66px);
  border: 1px solid rgba(0, 3, 34, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.starthub-strip-card > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

@media (max-width: 1040px) {
  .starthub-highlight-grid,
  .starthub-strip-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .starthub-highlight-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .starthub-highlight-facts {
    grid-template-columns: 1fr;
  }

  .starthub-highlight-facts div {
    padding: 18px 0;
  }

  .starthub-highlight-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .starthub-strip-card {
    padding: 30px 22px;
    border-radius: 26px;
  }
}


/* Audit 2026-08-14: Montserrat is referenced only as a local/system font.
   No remote font provider is contacted. Self-host only after font-license/source verification. */
.verification-callout {
  padding: 20px 22px;
  border: 1px solid rgba(255, 105, 0, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(255, 210, 63, 0.12);
}
.verification-callout strong { display: block; margin-bottom: 6px; }
.verification-callout p { margin: 0; }
.status-inline { font-weight: 800; letter-spacing: .01em; }
