:root {
  --ink: #090a0a;
  --ink-soft: #151616;
  --paper: #f3f0e9;
  --paper-deep: #e7e2d9;
  --white: #fffefa;
  --muted: #68645e;
  --signal: #f04a3a;
  --signal-bright: #ff6252;
  --signal-dark: #c93227;
  --rule: rgba(9, 10, 10, 0.15);
  --rule-inverse: rgba(255, 254, 250, 0.18);
  --max: 1440px;
  --pad: clamp(1.25rem, 4.5vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 10, 0.92);
  border-color: var(--rule-inverse);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.wordmark img {
  display: block;
  width: auto;
  height: 4.35rem;
}

.desktop-nav {
  display: flex;
  gap: 2.2rem;
  color: rgba(255, 254, 250, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a,
.site-footer button {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.site-footer button:hover {
  color: var(--signal-bright);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 254, 250, 0.36);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: var(--signal);
  color: var(--ink);
  border-color: var(--signal);
}

.nav-toggle {
  display: none;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 254, 250, 0.36);
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  padding: 1.25rem var(--pad) 1.5rem;
  color: var(--white);
  background: rgba(9, 10, 10, 0.98);
  border-bottom: 1px solid var(--rule-inverse);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
}

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

.mobile-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-inverse);
  font-size: 1rem;
  font-weight: 600;
}

.mobile-nav .mobile-cta {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(9rem, 15vh, 11rem) var(--pad) 2.4rem;
  color: var(--white);
  background: #050606;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.99) 0%, rgba(3, 4, 4, 0.92) 25%, rgba(3, 4, 4, 0.54) 47%, rgba(3, 4, 4, 0.04) 72%),
    linear-gradient(180deg, rgba(3, 4, 4, 0.36) 0%, transparent 35%, rgba(3, 4, 4, 0.22) 75%, rgba(3, 4, 4, 0.78) 100%);
}

.hero-presence-status {
  position: absolute;
  right: var(--pad);
  bottom: 7.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 999px;
  background: rgba(5, 6, 6, 0.56);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.hero-presence-status span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 1rem rgba(240, 74, 58, 0.9);
}

.hero-presence-status p {
  margin: 0;
  color: rgba(255, 254, 250, 0.62);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-presence-status strong {
  margin-right: 0.45rem;
  color: var(--white);
  font-weight: 650;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(48rem, 52vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2.4rem;
  color: rgba(255, 254, 250, 0.68);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 0.34rem;
  height: 2.6rem;
  border-radius: 2px;
  background: var(--signal);
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(4.25rem, 7.4vw, 7.5rem);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.81;
}

h1 em,
h2 em {
  color: inherit;
  font-style: normal;
}

.hero-deck {
  max-width: 32rem;
  margin: 2.4rem 0 0;
  color: rgba(255, 254, 250, 0.72);
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 12.5rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 254, 250, 0.22);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.button-primary span {
  color: var(--signal);
}

.text-link {
  padding: 0.65rem 0;
  color: rgba(255, 254, 250, 0.76);
  border-bottom: 1px solid rgba(255, 254, 250, 0.36);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-foot {
  position: absolute;
  right: var(--pad);
  bottom: 1.5rem;
  left: var(--pad);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-inverse);
  color: rgba(255, 254, 250, 0.5);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.section-light,
.section-paper,
.section-dark,
.section-signal {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}

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

.section-paper {
  background: var(--paper);
}

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

.section-index {
  position: absolute;
  top: clamp(2rem, 4vw, 4rem);
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index span {
  min-width: 2.3rem;
  padding-right: 0.8rem;
  border-right: 1px solid currentColor;
}

.section-index p {
  margin: 0;
}

.section-index.inverse {
  color: var(--signal);
}

.manifesto {
  display: grid;
  min-height: 92vh;
  place-items: center;
}

.manifesto-copy {
  width: min(72rem, 90%);
}

.kicker {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.manifesto h2,
.why-now h2,
.presence-reel h2,
.relay-types h2,
.system h2,
.space-product h2,
.roadmap h2,
.pilot h2,
.applications h2,
.network h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 560;
  letter-spacing: -0.068em;
  line-height: 0.96;
}

.large-body {
  max-width: 54rem;
  margin: 3.5rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  line-height: 1.35;
}

.why-now {
  min-height: 94vh;
  border-top: 1px solid var(--rule);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
  margin-top: 2rem;
}

.why-heading {
  position: sticky;
  top: 8rem;
}

.why-heading h2 {
  max-width: 9ch;
}

.why-points {
  border-top: 1px solid var(--rule);
}

.why-points article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  column-gap: 1.5rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--rule);
}

.why-points article > p:first-child {
  grid-row: 1 / 3;
  margin: 0.35rem 0 0;
  color: var(--signal-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.why-points h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.why-points article > p:last-child {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.presence-reel {
  min-height: 100vh;
  overflow: hidden;
}

.presence-reel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 34%, rgba(255, 254, 250, 0.055), transparent 28%),
    linear-gradient(90deg, rgba(255, 254, 250, 0.035) 1px, transparent 1px);
  background-size: auto, 12.5vw 100%;
}

.reel-head,
.reel-grid,
.reel-note {
  position: relative;
  z-index: 2;
}

.reel-head {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-top: 2rem;
}

.reel-head h2 {
  max-width: 12ch;
}

.reel-head h2 em {
  color: inherit;
  font-style: normal;
}

.reel-head > p {
  max-width: 32rem;
  margin: 0 0 0.65rem;
  color: rgba(255, 254, 250, 0.58);
  font-size: 1.05rem;
}

.reel-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.35fr;
  gap: 1px;
  margin-top: 5rem;
  background: var(--rule-inverse);
  border: 1px solid var(--rule-inverse);
}

.reel-card {
  position: relative;
  min-width: 0;
  min-height: 44rem;
  margin: 0;
  overflow: hidden;
  background: #050606;
}

.reel-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 44rem;
  object-fit: cover;
  transition: filter 500ms ease, transform 700ms ease;
}

.reel-card-human video,
.reel-card-object video {
  object-position: center;
}

.reel-card-human video {
  filter: grayscale(0.88) contrast(1.04) brightness(0.88);
}

.reel-card-world video {
  filter: saturate(0.78) brightness(0.82);
}

.reel-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 6, 6, 0.88) 88%, #050606);
}

.reel-card:hover video {
  transform: scale(1.015);
}

.reel-card-human:hover video {
  filter: grayscale(0.78) contrast(1.04) brightness(0.94);
}

.reel-card-object:hover video,
.reel-card-world:hover video {
  filter: saturate(0.92) brightness(0.94);
}

.reel-card figcaption {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 2;
}

.reel-card figcaption span {
  color: var(--signal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.reel-card figcaption strong {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.reel-card figcaption p {
  max-width: 24rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 254, 250, 0.58);
  font-size: 0.84rem;
}

.reel-note {
  margin: 1.2rem 0 0;
  color: rgba(255, 254, 250, 0.38);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.relay-types {
  min-height: 100vh;
  border-top: 1px solid var(--rule);
}

.relay-list {
  margin-top: 3rem;
}

.platform-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}

.platform-intro .kicker {
  margin: 0 0 0.6rem;
}

.platform-intro h2 {
  margin: 0;
}

.relay-row {
  display: grid;
  grid-template-columns: 5rem 1fr minmax(18rem, 0.9fr) 2rem;
  gap: 2rem;
  align-items: center;
  min-height: 12rem;
  border-top: 1px solid var(--rule);
}

.relay-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.relay-row p {
  margin: 0;
}

.relay-number,
.app-index,
.flow-index {
  color: var(--signal-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.relay-row h3 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 560;
  letter-spacing: -0.06em;
}

.relay-row > p:nth-of-type(2) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.relay-row > span {
  color: var(--signal);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.relay-row:hover > span {
  transform: translate(0.25rem, -0.25rem);
}

.system {
  overflow: hidden;
  min-height: 100vh;
}

.system::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -18%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(240, 74, 58, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 8rem rgba(240, 74, 58, 0.06);
}

.system-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 2.1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-top: 2rem;
}

.system-intro .eyebrow {
  align-self: start;
}

.system-intro > p:last-child {
  margin: 0 0 0.5rem;
  color: rgba(255, 254, 250, 0.58);
  font-size: 1rem;
}

.layer-stack {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem minmax(0, 1fr);
  align-items: stretch;
  margin-top: 5rem;
}

.layer-card {
  position: relative;
  min-height: 24rem;
  padding: 2.2rem;
  overflow: hidden;
  border: 1px solid var(--rule-inverse);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.055), rgba(255, 254, 250, 0.012)),
    rgba(255, 255, 255, 0.01);
}

.layer-card::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 254, 250, 0.08);
  border-radius: 50%;
}

.layer-card-space {
  border-color: rgba(240, 74, 58, 0.42);
  background:
    radial-gradient(circle at 90% 110%, rgba(240, 74, 58, 0.18), transparent 52%),
    linear-gradient(145deg, rgba(240, 74, 58, 0.085), rgba(255, 254, 250, 0.012));
}

.layer-tag {
  margin: 0;
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.layer-card h3 {
  max-width: 10ch;
  margin: 3.4rem 0 1.6rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 520;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.layer-card h3 span {
  color: var(--signal);
}

.layer-definition {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: 1.05rem;
}

.layer-card ul {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  left: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.layer-card li {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--rule-inverse);
  border-radius: 999px;
  color: rgba(255, 254, 250, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.layer-connector {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  padding: 1.5rem 0.6rem;
}

.layer-connector::before,
.layer-connector::after {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--signal));
}

.layer-connector::after {
  background: linear-gradient(var(--signal), transparent);
}

.layer-connector span {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 1.5rem rgba(240, 74, 58, 0.7);
}

.layer-connector p {
  margin: 1.5rem 0;
  color: rgba(255, 254, 250, 0.42);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.system-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 6rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule-inverse);
}

.system-flow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 76%;
  height: 1px;
  background: var(--signal);
}

.system-flow li {
  position: relative;
  min-height: 18rem;
  padding: 3rem 2rem 0 0;
  border-right: 1px solid var(--rule-inverse);
}

.system-flow li:not(:first-child) {
  padding-left: 2rem;
}

.system-flow li:last-child {
  border-right: 0;
}

.flow-node {
  position: absolute;
  top: -0.42rem;
  left: 0;
  display: grid;
  width: 0.8rem;
  height: 0.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
}

.system-flow li:not(:first-child) .flow-node {
  left: 2rem;
}

.flow-index {
  margin: 0;
  color: var(--signal);
}

.system-flow h3 {
  margin: 2.8rem 0 1.4rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.system-flow li > p:last-child {
  max-width: 15rem;
  margin: 0;
  color: rgba(255, 254, 250, 0.52);
  font-size: 0.88rem;
}

.space-product {
  min-height: 96vh;
  border-bottom: 1px solid var(--rule);
}

.space-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  margin-top: 2rem;
}

.space-copy .large-body {
  margin: 2.5rem 0 0;
}

.text-link-dark {
  display: inline-flex;
  margin-top: 2.5rem;
  color: var(--ink);
  border-color: var(--ink);
}

.space-family-visual {
  position: relative;
  min-height: clamp(29rem, 52vw, 47rem);
  margin: 0;
  overflow: hidden;
  background: #ddd6cb;
  border: 1px solid rgba(9, 10, 10, 0.2);
}

.space-family-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(29rem, 52vw, 47rem);
  object-fit: cover;
}

.space-family-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(9, 10, 10, 0.72));
}

.space-family-visual figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  color: var(--white);
}

.space-family-visual figcaption span {
  color: var(--signal-bright);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.space-family-visual figcaption p {
  max-width: 20rem;
  margin: 0;
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.8rem;
  text-align: right;
}

.space-aperture {
  position: relative;
  min-height: clamp(29rem, 52vw, 47rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 74, 58, 0.08), transparent 42%),
    radial-gradient(circle at 50% 48%, rgba(255, 254, 250, 0.12), transparent 26%),
    var(--ink);
  border: 1px solid rgba(9, 10, 10, 0.28);
}

.space-aperture::before,
.space-aperture::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.space-aperture::before {
  inset: 8%;
  border: 1px solid rgba(255, 254, 250, 0.28);
  box-shadow: inset 0 0 4rem rgba(255, 254, 250, 0.04);
}

.space-aperture::after {
  right: 8%;
  bottom: 8%;
  left: 8%;
  height: 24%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 254, 250, 0.2) 50%, transparent 50.2%),
    linear-gradient(rgba(255, 254, 250, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 250, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 2.5rem 2.5rem, 2.5rem 2.5rem;
  transform: perspective(20rem) rotateX(55deg);
  transform-origin: bottom;
}

.aperture-depth {
  position: absolute;
  inset: 14% 20% 19%;
}

.aperture-depth span {
  position: absolute;
  border: 1px solid rgba(255, 254, 250, 0.2);
  box-shadow: 0 0 2rem rgba(255, 254, 250, 0.03);
}

.aperture-depth span:nth-child(1) {
  inset: 0;
}

.aperture-depth span:nth-child(2) {
  inset: 15%;
}

.aperture-depth span:nth-child(3) {
  inset: 31%;
  border-color: rgba(255, 254, 250, 0.34);
}

.aperture-signal {
  position: absolute;
  top: 48%;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--signal) 22%, var(--signal) 78%, transparent);
  box-shadow: 0 0 1.6rem rgba(240, 74, 58, 0.55);
}

.aperture-signal::before,
.aperture-signal::after,
.aperture-signal i {
  position: absolute;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: var(--signal);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 1.2rem rgba(240, 74, 58, 0.8);
  transform: translate(-50%, -50%);
}

.aperture-signal::before {
  left: 0;
}

.aperture-signal::after {
  right: -0.8rem;
}

.aperture-signal i {
  left: 50%;
}

.space-aperture > p {
  position: absolute;
  right: 8%;
  bottom: 4%;
  margin: 0;
  color: rgba(255, 254, 250, 0.52);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.space-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 5rem 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.space-specs > div {
  min-height: 10rem;
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
}

.space-specs > div:first-child {
  padding-left: 0;
}

.space-specs > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.space-specs dt {
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.space-specs dd {
  max-width: 15rem;
  margin: 2.4rem 0 0;
  font-size: 1.1rem;
}

.format-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.format-lineup article {
  position: relative;
  min-height: 19rem;
  padding: 2rem;
  border-right: 1px solid var(--rule);
}

.format-lineup article:first-child {
  padding-left: 0;
}

.format-lineup article:last-child {
  padding-right: 0;
  border-right: 0;
}

.format-lineup article.is-now::before {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--signal);
}

.format-lineup p {
  margin: 0;
  color: var(--signal-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.format-lineup h3 {
  margin: 5rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 560;
  letter-spacing: -0.06em;
}

.format-lineup span {
  display: block;
  max-width: 21rem;
  color: var(--muted);
}

.roadmap {
  min-height: 92vh;
}

.roadmap-head {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 4rem;
  align-items: end;
  margin-top: 2rem;
}

.roadmap-head .kicker {
  max-width: 26rem;
  margin: 0 0 0.6rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.roadmap-grid article {
  position: relative;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--rule);
}

.roadmap-grid article:first-child {
  padding-left: 0;
}

.roadmap-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.status-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-label span {
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--signal);
  border-radius: 50%;
}

.is-current .status-label span {
  background: var(--signal);
  box-shadow: 0 0 1.25rem rgba(240, 74, 58, 0.45);
}

.roadmap-grid h3 {
  margin: 5rem 0 1.4rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 560;
  letter-spacing: -0.05em;
}

.roadmap-grid article > p:nth-of-type(2) {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
}

.status-foot {
  margin: auto 0 0;
  padding-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.truth {
  min-height: 80vh;
}

.truth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
  margin-top: 3rem;
}

.truth h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.truth-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.48;
}

.truth dl {
  margin: 4rem 0 0;
  border-top: 1px solid var(--rule);
}

.truth dl > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
}

.truth dt {
  font-weight: 650;
}

.truth dd {
  margin: 0;
  color: var(--muted);
}

.pilot {
  min-height: 94vh;
}

.pilot-head {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 0.8fr;
  gap: 4rem;
  align-items: end;
  margin-top: 2rem;
}

.pilot-head .kicker,
.pilot-head > p:last-child {
  margin: 0 0 0.65rem;
}

.pilot-head > p:last-child {
  color: var(--muted);
}

.pilot-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 6rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.pilot-steps li {
  min-height: 21rem;
  padding: 2rem;
  border-right: 1px solid var(--rule);
}

.pilot-steps li:first-child {
  padding-left: 0;
}

.pilot-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.pilot-steps li > p:first-child {
  margin: 0;
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pilot-steps h3 {
  margin: 5rem 0 1.2rem;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pilot-steps li > p:last-child {
  margin: 0;
  color: var(--muted);
}

.pilot-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.pilot-action > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.applications-head {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 5rem;
  align-items: end;
  margin-top: 3rem;
}

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

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 7rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.application-grid article {
  min-height: 22rem;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--rule);
}

.application-grid article:not(:first-child) {
  padding-left: 2rem;
}

.application-grid article:last-child {
  border-right: 0;
}

.application-grid h3 {
  margin: 5.5rem 0 1.2rem;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.application-grid article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.network {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 86vh;
}

.network-copy {
  position: relative;
  z-index: 3;
}

.network-copy > p:last-child {
  max-width: 34rem;
  margin: 2.5rem 0 0;
  color: rgba(255, 254, 250, 0.58);
  font-size: 1.15rem;
}

.network-visual {
  position: relative;
  height: 34rem;
}

.network-node {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 2.5rem rgba(240, 74, 58, 0.55);
}

.node-a { top: 17%; left: 12%; }
.node-b { top: 42%; left: 61%; }
.node-c { top: 75%; left: 28%; }
.node-d { top: 12%; right: 8%; }

.network-line {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 74, 58, 0.15), var(--signal));
  transform-origin: left center;
}

.line-a {
  top: 19%;
  left: 13%;
  width: 64%;
  transform: rotate(18deg);
}

.line-b {
  top: 44%;
  left: 29%;
  width: 41%;
  transform: rotate(142deg);
}

.line-c {
  top: 18%;
  left: 62%;
  width: 33%;
  transform: rotate(-13deg);
}

.network-visual::before,
.network-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 254, 250, 0.13);
}

.network-visual::before {
  inset: 8% 9% 12% 5%;
}

.network-visual::after {
  inset: 23% 25% 27% 20%;
  border-color: rgba(240, 74, 58, 0.23);
}

.contact {
  min-height: 96vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 12.5vw 100%, auto;
  border-top: 1px solid var(--rule);
}

.contact-label {
  margin: 0 0 8vh;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-dark);
}

.contact h2 {
  max-width: 10ch;
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 0.82;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(64rem, 100%);
  margin-top: 8vh;
  padding: 1.3rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 650;
}

.contact-link span {
  color: var(--signal-dark);
  font-size: 1.5em;
  transition: transform 180ms ease;
}

.contact-link:hover span {
  transform: translate(0.3rem, -0.3rem);
}

.contact-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12vh;
  padding-top: 1.3rem;
  border-top: 1px solid var(--rule);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-foot p {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem var(--pad);
  color: rgba(255, 254, 250, 0.48);
  background: var(--ink);
  border-top: 1px solid var(--rule-inverse);
  font-size: 0.72rem;
}

.site-footer button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  width: min(46rem, calc(100vw - 2.5rem));
  padding: 1.15rem;
  color: var(--white);
  background: rgba(9, 10, 10, 0.96);
  border: 1px solid var(--rule-inverse);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin: 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: 0.82rem;
}

.consent-banner strong {
  color: var(--white);
  font-weight: 650;
}

.consent-banner > div {
  display: flex;
  gap: 0.6rem;
}

.consent-banner button,
.legal-cookie-button {
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--rule-inverse);
  border-radius: 999px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 650;
  cursor: pointer;
}

.consent-banner .consent-accept {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.legal-cookie-button {
  margin-top: 0.5rem;
  color: var(--ink);
  border-color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.footer-mark {
  color: var(--white);
  font-size: 1rem;
}

.legal-page {
  min-height: 100vh;
  padding: 8rem var(--pad);
  color: var(--ink);
  background: var(--paper);
}

.legal-shell {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.legal-shell h1 {
  margin: 4rem 0 2rem;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.legal-shell h2 {
  margin-top: 3rem;
  font-size: 1.25rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell .wordmark {
  color: var(--ink);
}

.legal-shell .wordmark img {
  height: 4.1rem;
}

.footer-mark img {
  height: 5.25rem;
}

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

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 980px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-visual img {
    object-position: 57% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(3, 4, 4, 0.97) 0%, rgba(3, 4, 4, 0.86) 38%, rgba(3, 4, 4, 0.2) 72%),
      linear-gradient(180deg, rgba(3, 4, 4, 0.42) 0%, transparent 38%, rgba(3, 4, 4, 0.66) 100%);
  }

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

  .relay-row {
    grid-template-columns: 3rem 1fr 1fr 1rem;
    gap: 1.25rem;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-heading {
    position: static;
  }

  .why-heading h2 {
    max-width: 12ch;
  }

  .platform-intro,
  .reel-head,
  .roadmap-head,
  .pilot-head {
    grid-template-columns: 1fr;
  }

  .platform-intro {
    gap: 1rem;
  }

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

  .roadmap-grid article,
  .roadmap-grid article:first-child,
  .roadmap-grid article:last-child {
    min-height: 18rem;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .roadmap-grid article:last-child {
    border-bottom: 0;
  }

  .roadmap-grid h3 {
    margin-top: 3rem;
  }

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

  .system-intro .eyebrow {
    margin-bottom: 0;
  }

  .system-intro > p:last-child {
    max-width: 32rem;
  }

  .layer-stack {
    grid-template-columns: 1fr;
  }

  .layer-connector {
    grid-template: 3.6rem / 1fr auto 1fr;
    padding: 0 1.4rem;
  }

  .layer-connector::before,
  .layer-connector::after {
    width: 100%;
    height: 1px;
  }

  .layer-connector::before {
    background: linear-gradient(90deg, transparent, var(--signal));
  }

  .layer-connector::after {
    background: linear-gradient(90deg, var(--signal), transparent);
  }

  .layer-connector p {
    margin: 0 1.5rem;
  }

  .system-flow,
  .application-grid,
  .space-specs,
  .pilot-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reel-card-world {
    grid-column: 1 / -1;
  }

  .reel-card-world,
  .reel-card-world video {
    min-height: 32rem;
  }

  .system-flow::before {
    width: 52%;
  }

  .system-flow li:nth-child(2) {
    border-right: 0;
  }

  .system-flow li:nth-child(3),
  .system-flow li:nth-child(4) {
    border-top: 1px solid var(--rule-inverse);
  }

  .application-grid article:nth-child(2) {
    border-right: 0;
  }

  .application-grid article:nth-child(3),
  .application-grid article:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .space-layout {
    grid-template-columns: 1fr;
  }

  .space-copy {
    max-width: 52rem;
  }

  .space-aperture,
  .space-family-visual,
  .space-family-visual img {
    min-height: 38rem;
  }

  .space-specs > div:nth-child(2),
  .pilot-steps li:nth-child(2) {
    border-right: 0;
  }

  .space-specs > div:nth-child(3),
  .space-specs > div:nth-child(4),
  .pilot-steps li:nth-child(3),
  .pilot-steps li:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .space-specs > div:nth-child(3) {
    padding-left: 0;
  }

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

  .format-lineup article,
  .format-lineup article:first-child,
  .format-lineup article:last-child {
    min-height: 15rem;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .format-lineup article:last-child {
    border-bottom: 0;
  }

  .format-lineup h3 {
    margin-top: 3rem;
  }

  .pilot-steps li,
  .pilot-steps li:first-child,
  .pilot-steps li:last-child {
    min-height: 17rem;
    padding: 2rem;
  }

  .pilot-steps li:nth-child(odd) {
    padding-left: 0;
  }

  .pilot-steps li:nth-child(even) {
    padding-right: 0;
  }

  .pilot-steps h3 {
    margin-top: 3rem;
  }

  .applications-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .applications-head > p {
    max-width: 35rem;
  }

  .network {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 680px) {
  .wordmark img {
    height: 3.4rem;
  }

  .legal-shell .wordmark img {
    height: 3.4rem;
  }

  .footer-mark img {
    height: 4.25rem;
  }

  .site-header {
    min-height: 64px;
  }

  .header-cta {
    display: none;
    padding: 0.6rem 0.8rem;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 840px;
    padding-top: 8rem;
  }

  .hero-visual img {
    object-position: 66% center;
    opacity: 0.8;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero-deck {
    max-width: 19rem;
  }

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

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(3, 4, 4, 0.9) 0%, rgba(3, 4, 4, 0.68) 46%, rgba(3, 4, 4, 0.18) 68%, rgba(3, 4, 4, 0.8) 100%),
      linear-gradient(90deg, rgba(3, 4, 4, 0.62) 0%, transparent 100%);
  }

  .hero-presence-status {
    right: var(--pad);
    bottom: 8.4rem;
  }

  .hero-foot {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.55rem;
  }

  .manifesto {
    min-height: auto;
    padding-top: 8rem;
  }

  .manifesto-copy {
    width: 100%;
  }

  .why-points article {
    grid-template-columns: 2rem 1fr;
    column-gap: 1rem;
  }

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

  .reel-card-world {
    grid-column: auto;
  }

  .reel-card,
  .reel-card video,
  .reel-card-world,
  .reel-card-world video {
    min-height: 38rem;
  }

  .platform-intro {
    margin-bottom: 3rem;
  }

  .large-body {
    margin-top: 2.5rem;
  }

  .relay-list {
    margin-top: 1rem;
  }

  .relay-row {
    grid-template-columns: 2rem 1fr 1rem;
    gap: 1rem;
    min-height: auto;
    padding: 2.4rem 0;
  }

  .relay-row > p:nth-of-type(2) {
    grid-column: 2 / 4;
    margin-top: -0.6rem;
  }

  .relay-row h3 {
    font-size: 3.2rem;
  }

  .layer-stack {
    margin-top: 3.5rem;
  }

  .layer-card {
    min-height: 22rem;
    padding: 1.5rem;
  }

  .layer-card h3 {
    margin-top: 2.5rem;
  }

  .layer-card ul {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .layer-connector {
    padding: 0;
  }

  .layer-connector p {
    margin: 0 0.8rem;
  }

  .system-flow,
  .application-grid,
  .space-specs,
  .pilot-steps,
  .truth-layout,
  .network {
    grid-template-columns: 1fr;
  }

  .system-flow::before {
    display: none;
  }

  .system-flow li,
  .system-flow li:not(:first-child) {
    min-height: 14rem;
    padding: 3rem 0 1.5rem;
    border-right: 0;
    border-top: 1px solid var(--rule-inverse);
  }

  .system-flow .flow-node,
  .system-flow li:not(:first-child) .flow-node {
    left: 0;
  }

  .truth-layout {
    gap: 4rem;
  }

  .space-aperture,
  .space-family-visual,
  .space-family-visual img {
    min-height: 30rem;
  }

  .space-family-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .space-family-visual figcaption p {
    text-align: left;
  }

  .space-specs > div,
  .space-specs > div:first-child,
  .space-specs > div:last-child,
  .space-specs > div:nth-child(3) {
    min-height: auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule);
    border-right: 0;
  }

  .space-specs > div:first-child {
    border-top: 0;
  }

  .space-specs dd {
    margin-top: 1.1rem;
  }

  .pilot-steps li,
  .pilot-steps li:first-child,
  .pilot-steps li:last-child,
  .pilot-steps li:nth-child(odd),
  .pilot-steps li:nth-child(even) {
    min-height: auto;
    padding: 2rem 0;
    border-top: 1px solid var(--rule);
    border-right: 0;
  }

  .pilot-steps li:first-child {
    border-top: 0;
  }

  .pilot-steps h3 {
    margin-top: 2rem;
  }

  .pilot-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .application-grid article,
  .application-grid article:not(:first-child) {
    min-height: 15rem;
    padding: 2rem 0;
    border-right: 0;
    border-top: 1px solid var(--rule);
  }

  .application-grid h3 {
    margin-top: 3.2rem;
  }

  .network-visual {
    height: 24rem;
  }

  .network-copy {
    grid-row: 1;
  }

  .contact h2 {
    font-size: clamp(4.7rem, 21vw, 7rem);
  }

  .contact-link {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .contact-foot {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

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

  .site-footer nav {
    justify-self: end;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .consent-banner > div {
    justify-content: flex-end;
  }
}

@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;
  }
}
