:root {
  --black: #050505;
  --black-2: #11110f;
  --cream: #f1eee4;
  --cream-2: #e5e0d3;
  --teal: #18d6c4;
  --grey: #a6a59f;
  --line: rgba(241, 238, 228, 0.2);
  --line-dark: rgba(5, 5, 5, 0.22);
  --sans: "Manrope", sans-serif;
  --serif: "Instrument Serif", serif;
  --mono: "DM Mono", monospace;
  --page: 1440px;
  --gutter: clamp(20px, 3.3vw, 52px);
  --section-space: clamp(92px, 11vw, 170px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 400;
}

.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: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--teal);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.section {
  position: relative;
  max-width: var(--page);
  margin-inline: auto;
  padding: var(--section-space) var(--gutter);
}

.section--cream {
  max-width: none;
  background: var(--cream);
  color: var(--black);
}

.section--cream > * {
  width: 100%;
  max-width: calc(var(--page) - (var(--gutter) * 2));
  margin-inline: auto;
}

.section-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow--teal {
  color: var(--teal);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__mark {
  width: 34px;
  color: var(--teal);
  fill: currentColor;
}

.brand small {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--grey);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 28px);
  font-family: var(--mono);
  font-size: 10px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--cream);
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-left: 18px;
  border: 1px solid rgba(241, 238, 228, 0.5);
  background: var(--cream);
  color: var(--black);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.arrow-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--black);
  color: var(--teal);
  font-size: 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--cream);
  transition: transform 180ms ease;
}

.event-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.event-hero__media {
  position: absolute;
  inset: 0 0 0 42%;
}

.event-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.1);
}

.event-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(5, 5, 5, 0.62) 20%, rgba(5, 5, 5, 0.08) 68%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.82) 0%, transparent 50%);
}

.event-hero__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 238, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 238, 228, 0.08) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  pointer-events: none;
}

.event-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(870px, 69vw);
  min-height: 100svh;
  padding: clamp(150px, 18vh, 210px) var(--gutter) 56px;
  flex-direction: column;
  justify-content: center;
}

.event-hero h1 {
  max-width: 850px;
  margin-top: 25px;
  font-size: clamp(62px, 7.5vw, 122px);
}

.event-hero h1 em {
  display: inline-block;
}

.event-hero__lede {
  max-width: 670px;
  margin-top: 30px;
  color: rgba(241, 238, 228, 0.82);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-support {
  margin-top: 34px;
  color: var(--grey);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.event-hero__board {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 48px;
  width: min(390px, 29vw);
  border: 1px solid rgba(241, 238, 228, 0.42);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
}

.event-hero__board > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
}

.event-hero__board > div:last-child {
  border-bottom: 0;
}

.event-hero__board strong {
  color: var(--teal);
  font-weight: 400;
}

.event-hero__board-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px var(--teal);
}

.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 58px;
  padding-left: 22px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.button--light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.button--dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

.button__icon {
  display: grid;
  width: 57px;
  min-height: 57px;
  align-self: stretch;
  place-items: center;
  background: var(--black);
  color: var(--cream);
  font-size: 18px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--dark .button__icon {
  background: var(--teal);
  color: var(--black);
}

.button:hover .button__icon {
  transform: translate(3px, -3px);
  background: var(--teal);
  color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--cream);
}

.text-link span {
  color: var(--teal);
  font-size: 16px;
}

.audience-marquee {
  overflow: hidden;
  border-block: 1px solid var(--black);
  background: var(--teal);
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 58px);
  font-style: italic;
  white-space: nowrap;
}

.audience-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 16px 0 20px;
  animation: marquee 36s linear infinite;
}

.audience-marquee i {
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.statement__copy {
  display: grid;
  grid-template-columns: minmax(440px, 1.4fr) minmax(300px, 0.72fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(70px, 9vw, 130px) 0;
}

.statement__copy h2 {
  font-size: clamp(50px, 6.3vw, 96px);
}

.statement__copy > div {
  align-self: end;
}

.statement__copy p,
.territories__heading p,
.method__heading > p,
.trust__heading > p,
.skybridge__copy > p,
.insights__heading > p,
.corporate-link > div > p,
.final-cta__content > p {
  font-size: 16px;
  line-height: 1.65;
}

.statement__copy p + p {
  margin-top: 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.impact-grid article {
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.impact-grid span,
.path-grid span,
.trust-grid span,
.fit__criteria span {
  font-family: var(--mono);
  font-size: 10px;
}

.impact-grid h3 {
  margin-top: 110px;
  font-size: clamp(38px, 4.5vw, 68px);
}

.impact-grid p {
  max-width: 360px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.6;
}

.impact-grid__accent {
  background: var(--teal);
}

.statement blockquote {
  max-width: 1100px;
  margin-top: clamp(76px, 10vw, 140px);
  padding-left: clamp(26px, 4vw, 56px);
  border-left: 6px solid var(--teal);
  font-family: var(--serif);
  font-size: clamp(40px, 5.3vw, 78px);
  font-style: italic;
  line-height: 1.02;
}

.territories__heading {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(72px, 9vw, 125px) 0;
}

.territories__heading h2 {
  font-size: clamp(55px, 6.8vw, 102px);
}

.territories__heading > p {
  color: var(--grey);
}

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

.territory-card {
  position: relative;
  display: grid;
  min-height: 440px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--cream);
  grid-template-columns: 55px 1fr auto;
  gap: 22px;
  transition: background-color 180ms ease, color 180ms ease;
}

.territory-card:nth-child(even) {
  border-left: 0;
}

.territory-card:nth-child(n + 3) {
  border-top: 0;
}

.territory-card__number {
  font-family: var(--mono);
  font-size: 10px;
}

.territory-card > div {
  align-self: end;
}

.territory-card h3 {
  max-width: 520px;
  margin-top: 18px;
  font-size: clamp(40px, 4.6vw, 70px);
}

.territory-card > div > p:last-child {
  max-width: 500px;
  margin-top: 24px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.6;
}

.territory-card > i {
  font-family: var(--serif);
  font-size: 36px;
  font-style: normal;
}

.territory-card:hover {
  background: var(--cream);
  color: var(--black);
}

.territory-card:hover > div > p:last-child {
  color: #4d4c48;
}

.territory-card--teal {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--black);
}

.territory-card--teal > div > p:last-child {
  color: var(--black);
}

.territory-card--dark {
  background: var(--black-2);
}

.section-action {
  margin-top: 42px;
}

.system {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(560px, 1.15fr);
  gap: clamp(48px, 7vw, 110px);
}

.system__intro .section-label {
  margin-bottom: clamp(64px, 8vw, 110px);
}

.system__sticky {
  position: sticky;
  top: 130px;
}

.system__sticky h2 {
  margin-top: 20px;
  font-size: clamp(50px, 5.8vw, 88px);
}

.system__sticky > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 28px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.65;
}

.system__sticky .text-link {
  margin-top: 34px;
}

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

.system-card {
  display: flex;
  min-height: 390px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--black-2);
}

.system-card:nth-child(even) {
  border-left: 0;
}

.system-card:nth-child(n + 3) {
  border-top: 0;
}

.system-card:last-child {
  grid-column: 1 / -1;
}

.system-card > span {
  font-family: var(--mono);
  font-size: 10px;
}

.system-card > div {
  margin-top: auto;
}

.system-card h3 {
  margin-top: 14px;
  font-size: clamp(34px, 3.5vw, 54px);
}

.system-card > div > p:last-child {
  max-width: 390px;
  margin-top: 22px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.55;
}

.system-card > i {
  align-self: flex-end;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 56px;
  font-style: normal;
}

.system-card--teal {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--black);
}

.system-card--teal > div > p:last-child,
.system-card--teal > i {
  color: var(--black);
}

.method__heading {
  display: grid;
  grid-template-columns: minmax(520px, 1.4fr) minmax(250px, 0.5fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(72px, 9vw, 125px) 0;
}

.method__heading h2 {
  font-size: clamp(55px, 6.8vw, 102px);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.path-grid article {
  min-height: 350px;
  padding: 24px;
  border-right: 1px solid var(--black);
}

.path-grid h3 {
  margin-top: 120px;
  font-size: clamp(27px, 2.6vw, 40px);
}

.path-grid p {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.55;
}

.path-grid__accent {
  background: var(--teal);
}

.fit {
  display: grid;
  grid-template-columns: minmax(400px, 1.1fr) minmax(400px, 0.9fr);
  gap: clamp(55px, 8vw, 120px);
  background: var(--teal);
  color: var(--black);
}

.fit h2 {
  margin-top: 20px;
  font-size: clamp(55px, 6.5vw, 96px);
}

.fit h2 em {
  color: var(--black);
}

.fit__criteria {
  border-top: 1px solid var(--black);
}

.fit__criteria article {
  display: grid;
  min-height: 72px;
  align-items: center;
  border-bottom: 1px solid var(--black);
  grid-template-columns: 45px 1fr;
  gap: 20px;
}

.fit__criteria p {
  font-size: clamp(16px, 1.6vw, 22px);
}

.fit__note {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--black);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
}

.trust__heading {
  display: grid;
  grid-template-columns: minmax(480px, 1.35fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(72px, 9vw, 125px) 0;
}

.trust__heading h2 {
  font-size: clamp(52px, 6.4vw, 96px);
}

.trust__heading > p {
  color: var(--grey);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--cream);
  border-left: 1px solid var(--cream);
}

.trust-grid article {
  min-height: 340px;
  padding: 25px;
  border-right: 1px solid var(--cream);
}

.trust-grid h3 {
  margin-top: 115px;
  font-size: clamp(28px, 2.7vw, 42px);
}

.trust-grid p {
  margin-top: 20px;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.6;
}

.claims-boundary {
  display: grid;
  grid-template-columns: 170px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
  padding: 26px 30px;
  border-left: 5px solid var(--teal);
  background: var(--black-2);
}

.claims-boundary > span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
}

.claims-boundary > p {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.55;
}

.skybridge__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  padding-top: clamp(75px, 9vw, 125px);
}

.skybridge__mark {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: var(--black);
}

.skybridge__mark span {
  width: 12%;
  height: calc(54% + (var(--i, 0) * 6%));
  border: 1px solid var(--teal);
  transform: skewY(calc((var(--i, 0) - 2) * 5deg));
  background: transparent;
}

.skybridge__mark span:nth-child(1) { --i: 0; background: var(--teal); }
.skybridge__mark span:nth-child(2) { --i: 1; }
.skybridge__mark span:nth-child(3) { --i: 2; }
.skybridge__mark span:nth-child(4) { --i: 3; }
.skybridge__mark span:nth-child(5) { --i: 4; }

.skybridge__copy h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(55px, 6.7vw, 100px);
}

.skybridge__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 28px;
}

.skybridge__boundary {
  padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 10px !important;
}

.skybridge__copy .button {
  margin-top: 34px;
}

.insights__heading {
  display: grid;
  grid-template-columns: minmax(500px, 1.35fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(72px, 9vw, 125px) 0;
}

.insights__heading h2 {
  font-size: clamp(55px, 6.6vw, 100px);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.insight-grid a {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 25px;
  flex-direction: column;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transition: background-color 180ms ease, color 180ms ease;
}

.insight-grid a:nth-child(2) {
  background: var(--black);
  color: var(--cream);
}

.insight-grid a:hover {
  background: var(--teal);
  color: var(--black);
}

.insight-grid a > span {
  font-family: var(--mono);
  font-size: 10px;
}

.insight-grid h3 {
  max-width: 440px;
  margin-top: auto;
  font-size: clamp(34px, 3.5vw, 54px);
}

.insight-grid i {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-style: normal;
}

.corporate-link {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(300px, 0.65fr);
  gap: clamp(55px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.corporate-link h2 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(55px, 6.8vw, 102px);
}

.corporate-link > div:last-child {
  align-self: end;
}

.corporate-link > div > p {
  color: var(--grey);
}

.corporate-link .text-link {
  margin-top: 28px;
  margin-right: 24px;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
  padding-top: clamp(72px, 9vw, 125px);
}

.faq__layout > h2 {
  font-size: clamp(55px, 6.7vw, 100px);
}

.faq-item {
  border-top: 1px solid var(--black);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--black);
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 94px;
  padding: 22px 0;
  align-items: center;
  border: 0;
  background: transparent;
  grid-template-columns: 1fr 35px;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span {
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 500;
}

.faq-item button i {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 36px;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-item__answer {
  display: grid;
  max-height: 0;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: max-height 300ms ease, grid-template-rows 300ms ease;
}

.faq-item__answer p {
  max-width: 700px;
  padding: 0 60px 0 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.is-open .faq-item__answer {
  max-height: 260px;
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 28px;
}

.faq-item.is-open button i {
  transform: rotate(45deg);
}

.final-cta {
  display: grid;
  min-height: 760px;
  align-items: center;
  background: var(--teal);
  color: var(--black);
  grid-template-columns: minmax(150px, 0.35fr) minmax(600px, 1.65fr);
  gap: clamp(30px, 6vw, 100px);
}

.final-cta__number {
  align-self: start;
  padding-top: 20px;
  font-family: var(--mono);
  font-size: clamp(90px, 13vw, 200px);
  line-height: 0.8;
}

.final-cta__content h2 {
  max-width: 1050px;
  margin-top: 22px;
  font-size: clamp(60px, 7.6vw, 116px);
}

.final-cta__content h2 em {
  color: var(--black);
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 28px;
}

.final-cta .button {
  margin-top: 38px;
}

.site-footer {
  display: grid;
  max-width: var(--page);
  min-height: 300px;
  margin-inline: auto;
  padding: 64px var(--gutter);
  align-items: start;
  grid-template-columns: 0.65fr 0.9fr 1.15fr auto;
  gap: 45px;
}

.brand--footer {
  width: fit-content;
}

.site-footer > p {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 34px;
  font-family: var(--mono);
  font-size: 10px;
}

.site-footer nav a:hover {
  color: var(--teal);
}

.site-footer > span:last-child {
  color: var(--grey);
  font-family: var(--mono);
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: var(--gutter);
  bottom: 24px;
  left: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: var(--black);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.analytics-consent p {
  max-width: 640px;
  margin: 0;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.45;
}

.analytics-consent a {
  color: var(--cream);
  text-underline-offset: 3px;
}

.analytics-consent__actions {
  display: flex;
  gap: 8px;
}

.analytics-consent button,
.footer-preferences {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.analytics-consent button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
}

.analytics-consent button:last-child {
  border-color: var(--teal);
  color: var(--black);
  background: var(--teal);
}

.analytics-consent button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.footer-preferences {
  width: fit-content;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.footer-preferences:hover,
.footer-preferences:focus-visible {
  color: var(--teal);
}

.perimeter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin-top: 48px;
  padding: 34px;
  border: 1px solid var(--black);
  background: var(--cream);
}

.perimeter-form label {
  display: grid;
  gap: 9px;
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.perimeter-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: 0;
  color: var(--black);
  background: #fff;
  font: 500 15px/1.4 var(--sans);
}

.perimeter-form select:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.perimeter-form__actions,
.perimeter-ready {
  grid-column: 1 / -1;
}

.perimeter-form__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.perimeter-form__actions p,
.perimeter-ready p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.perimeter-ready {
  max-width: 980px;
  margin-top: 48px;
  padding: 34px;
  border: 1px solid var(--black);
  background: var(--teal);
}

.perimeter-ready h3 {
  margin: 0 0 12px;
  font: 400 clamp(36px, 5vw, 64px)/0.95 var(--serif);
}

.perimeter-ready .button {
  margin-top: 24px;
}

.proof-table {
  display: grid;
  border-top: 1px solid currentColor;
}

.proof-table article {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) 1fr 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid currentColor;
}

.proof-table h3,
.proof-table p {
  margin: 0;
}

.proof-table h3 {
  font-size: 19px;
}

.proof-table p {
  color: var(--muted);
  line-height: 1.65;
}

.page-section--teal .proof-table p,
.page-section--cream .proof-table p {
  color: rgba(5, 5, 5, 0.7);
}

/* Shared inner-page shell */
.page-hero {
  position: relative;
  min-height: 78svh;
  padding: clamp(150px, 18vh, 210px) var(--gutter) 70px;
  overflow: hidden;
  background: var(--black);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 238, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 238, 228, 0.08) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  content: "";
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(24, 214, 196, 0.08), 0 0 0 12vw rgba(24, 214, 196, 0.04);
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.page-hero h1 {
  max-width: 1100px;
  margin-top: 28px;
  font-size: clamp(65px, 8.3vw, 128px);
}

.page-hero__lede {
  max-width: 710px;
  margin-top: 32px;
  color: var(--grey);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.page-hero .button {
  margin-top: 38px;
}

.page-section {
  max-width: var(--page);
  margin-inline: auto;
  padding: var(--section-space) var(--gutter);
}

.page-section--cream,
.page-section--teal {
  max-width: none;
}

.page-section--cream {
  background: var(--cream);
  color: var(--black);
}

.page-section--teal {
  background: var(--teal);
  color: var(--black);
}

.page-section__inner {
  width: 100%;
  max-width: calc(var(--page) - (var(--gutter) * 2));
  margin-inline: auto;
}

.page-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  margin-bottom: clamp(60px, 8vw, 110px);
}

.page-heading h2 {
  font-size: clamp(52px, 6.4vw, 94px);
}

.page-heading p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.65;
}

.page-section--cream .page-heading p,
.page-section--teal .page-heading p {
  color: #3d3d39;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.content-card {
  min-height: 320px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.content-card > span {
  font-family: var(--mono);
  font-size: 10px;
}

.content-card h3 {
  margin-top: 105px;
  font-size: clamp(35px, 4vw, 60px);
}

.content-card p,
.content-card li {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.65;
}

.content-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.content-card li + li {
  margin-top: 8px;
}

.content-card--teal {
  background: var(--teal);
  color: var(--black);
}

.content-card--dark {
  background: var(--black);
  color: var(--cream);
}

.detail-stack {
  border-top: 1px solid currentColor;
}

.detail-row {
  display: grid;
  min-height: 260px;
  padding: 38px 0;
  align-items: start;
  border-bottom: 1px solid currentColor;
  grid-template-columns: 70px minmax(260px, 0.75fr) minmax(340px, 1.25fr);
  gap: 34px;
}

.detail-row > span {
  font-family: var(--mono);
  font-size: 10px;
}

.detail-row h3 {
  font-size: clamp(36px, 4.4vw, 66px);
}

.detail-row > div > p,
.detail-row li {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.65;
}

.page-section--cream .detail-row > div > p,
.page-section--cream .detail-row li,
.page-section--teal .detail-row > div > p,
.page-section--teal .detail-row li {
  color: #3d3d39;
}

.detail-row ul {
  margin: 0;
  padding-left: 18px;
}

.detail-row li + li {
  margin-top: 7px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(420px, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.page-cta h2 {
  font-size: clamp(55px, 6.9vw, 104px);
}

.page-cta__aside p {
  font-size: 15px;
  line-height: 1.65;
}

.page-cta__aside .button {
  margin-top: 30px;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav > a:not(.nav-cta):nth-child(4),
  .site-nav > a:not(.nav-cta):nth-child(5) {
    display: none;
  }

  .event-hero__board {
    width: 330px;
  }

  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .path-grid article {
    border-bottom: 1px solid var(--black);
  }

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

  .trust-grid article {
    border-bottom: 1px solid var(--cream);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(100svh - 70px);
    padding: 70px var(--gutter) 40px;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black);
    visibility: hidden;
    transition: transform 260ms ease, visibility 260ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav > a:not(.nav-cta),
  .site-nav > a:not(.nav-cta):nth-child(4),
  .site-nav > a:not(.nav-cta):nth-child(5) {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 500;
  }

  .nav-cta {
    width: 100%;
    margin-top: 30px;
    justify-content: space-between;
  }

  .event-hero__media {
    inset: 0;
  }

  .event-hero__shade {
    background: linear-gradient(0deg, var(--black) 0%, rgba(5, 5, 5, 0.68) 58%, rgba(5, 5, 5, 0.42) 100%);
  }

  .event-hero__copy {
    width: 100%;
    padding-top: 140px;
    padding-bottom: 250px;
    justify-content: flex-start;
  }

  .event-hero__board {
    right: var(--gutter);
    bottom: 35px;
    left: var(--gutter);
    width: auto;
  }

  .statement__copy,
  .territories__heading,
  .method__heading,
  .trust__heading,
  .insights__heading,
  .corporate-link,
  .page-heading,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid article {
    min-height: 260px;
  }

  .impact-grid h3 {
    margin-top: 70px;
  }

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

  .territory-card,
  .territory-card:nth-child(even),
  .territory-card:nth-child(n + 3) {
    border: 1px solid var(--cream);
    border-top: 0;
  }

  .territory-card:first-child {
    border-top: 1px solid var(--cream);
  }

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

  .system__sticky {
    position: static;
  }

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

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

  .fit__note {
    grid-column: auto;
  }

  .claims-boundary {
    grid-template-columns: 1fr;
  }

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

  .skybridge__mark {
    min-height: 380px;
  }

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

  .final-cta {
    min-height: 680px;
    grid-template-columns: 1fr;
  }

  .final-cta__number {
    display: none;
  }

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

  .detail-row {
    grid-template-columns: 48px 1fr;
  }

  .detail-row > div {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .analytics-consent__actions {
    width: 100%;
  }

  .analytics-consent button {
    flex: 1;
  }

  .perimeter-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .perimeter-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .perimeter-form__actions .button {
    width: 100%;
  }

  .proof-table article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  :root {
    --section-space: 82px;
  }

  .brand small {
    display: none;
  }

  .section-label {
    font-size: 9px;
  }

  .event-hero__copy {
    min-height: 900px;
    padding-top: 130px;
    padding-bottom: 280px;
  }

  .event-hero h1 {
    font-size: clamp(50px, 13.4vw, 58px);
  }

  .event-hero__lede {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .event-hero__board > div {
    min-height: 49px;
    padding-inline: 14px;
    font-size: 8px;
  }

  .statement__copy h2,
  .territories__heading h2,
  .method__heading h2,
  .trust__heading h2,
  .insights__heading h2,
  .corporate-link h2,
  .faq__layout > h2,
  .page-heading h2,
  .page-cta h2 {
    font-size: 51px;
  }

  .statement__copy {
    gap: 36px;
    padding: 58px 0 70px;
  }

  .impact-grid article {
    padding: 22px;
  }

  .statement blockquote {
    font-size: 38px;
  }

  .territories__heading,
  .method__heading,
  .trust__heading,
  .insights__heading {
    gap: 30px;
    padding: 58px 0 68px;
  }

  .territory-card {
    min-height: 360px;
    padding: 22px;
    grid-template-columns: 35px 1fr auto;
    gap: 12px;
  }

  .territory-card h3 {
    font-size: 43px;
  }

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

  .system-card,
  .system-card:nth-child(even),
  .system-card:nth-child(n + 3) {
    min-height: 330px;
    border: 1px solid var(--line);
    border-top: 0;
  }

  .system-card:first-child {
    border-top: 1px solid var(--line);
  }

  .system-card:last-child {
    grid-column: auto;
  }

  .system__sticky h2 {
    font-size: 49px;
  }

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

  .path-grid article {
    min-height: 285px;
    border-bottom: 1px solid var(--black);
  }

  .path-grid h3 {
    margin-top: 75px;
  }

  .fit h2 {
    font-size: 49px;
  }

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

  .trust-grid article {
    min-height: 285px;
  }

  .trust-grid h3 {
    margin-top: 75px;
  }

  .skybridge__mark {
    min-height: 300px;
  }

  .skybridge__copy h2 {
    font-size: 52px;
  }

  .insight-grid a {
    min-height: 315px;
  }

  .faq-item button {
    min-height: 84px;
  }

  .faq-item__answer p {
    padding-right: 20px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta__content h2 {
    font-size: 57px;
  }

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

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

  .page-hero {
    min-height: 75svh;
    padding-top: 140px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 54px);
    overflow-wrap: anywhere;
  }

  .page-hero__content,
  .page-hero__lede {
    max-width: 100%;
  }

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

  .content-card {
    min-height: 280px;
  }

  .content-card h3 {
    margin-top: 70px;
  }

  .detail-row {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: 34px 1fr;
    gap: 16px;
  }

  .detail-row h3 {
    font-size: 40px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .menu-toggle,
  .audience-marquee {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .event-hero,
  .trust,
  .system,
  .corporate-link {
    background: #fff;
    color: #000;
  }
}
