:root {
  color-scheme: dark;
  --ink: #030604;
  --ink-soft: #07100a;
  --panel: rgba(3, 10, 6, 0.88);
  --paper: #ddffe5;
  --phosphor: #62ff87;
  --phosphor-soft: #91ffad;
  --amber: #ffb547;
  --cyan: #72e8ff;
  --muted: #7ba68a;
  --line: rgba(98, 255, 135, 0.22);
  --line-strong: rgba(98, 255, 135, 0.52);
  --mono: "SFMono-Regular", "Cascadia Code", "Liberation Mono", "Roboto Mono", Consolas, monospace;
  --page-progress: 0;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(98, 255, 135, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 255, 135, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
  color: var(--paper);
  font-family: var(--mono);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(98, 255, 135, 0.027) 4px
  );
  mix-blend-mode: screen;
}

body::after {
  position: fixed;
  z-index: 91;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--phosphor);
  color: var(--ink);
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border: 1px solid var(--phosphor);
  background: var(--ink);
  color: var(--phosphor);
  font-size: 12px;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(98, 255, 135, 0.18);
  background: rgba(3, 6, 4, 0.78);
  backdrop-filter: blur(16px) saturate(1.25);
}

.brand {
  justify-self: start;
  color: var(--phosphor);
  font-size: 13px;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(98, 255, 135, 0.35);
}

.brand-path {
  color: var(--amber);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
}

.site-nav a {
  position: relative;
  padding: 23px 0 20px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
  transition: color 180ms ease;
}

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

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-status {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}

.header-status time {
  min-width: 62px;
  color: var(--phosphor-soft);
}

.status-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 0 4px rgba(98, 255, 135, 0.1), 0 0 12px var(--phosphor);
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 7px rgba(98, 255, 135, 0.02), 0 0 5px var(--phosphor);
  }
}

.page-progress {
  position: fixed;
  z-index: 100;
  top: 61px;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: rgba(98, 255, 135, 0.08);
}

.page-progress span {
  display: block;
  width: calc(var(--page-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--phosphor), var(--cyan), var(--amber));
  box-shadow: 0 0 14px rgba(98, 255, 135, 0.65);
}

.section-frame {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding-right: clamp(20px, 5vw, 76px);
  padding-left: clamp(20px, 5vw, 76px);
}

.section-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--phosphor);
  font-size: 10px;
}

.section-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--phosphor);
  font-size: clamp(9px, 1.1vw, 12px);
}

.english-copy {
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(116px, 13vw, 180px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -5;
  background: #020604;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 49%;
  filter: saturate(0.62) contrast(1.28) brightness(0.42) hue-rotate(78deg);
  transform: scale(1.08) translate3d(0, 0, 0);
  will-change: transform;
}

.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  opacity: 0.25;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(98, 255, 135, 0.18) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(98, 255, 135, 0.16) 50%, transparent 50.1%);
  background-size: 25vw 25vw;
  transform: perspective(700px) rotateX(60deg) scale(1.8) translateY(26%);
  transform-origin: center bottom;
}

.hero-vignette {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 4, 0.96) 0%, rgba(3, 6, 4, 0.58) 43%, rgba(3, 6, 4, 0.2) 74%, rgba(3, 6, 4, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 6, 4, 0.38) 0%, transparent 36%, rgba(3, 6, 4, 0.92) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  align-items: end;
  width: min(100%, 1500px);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 76px);
  gap: clamp(40px, 7vw, 120px);
}

.hero-copy-block {
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(4.4rem, 11.6vw, 11.8rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  width: fit-content;
  transform-origin: center;
  will-change: transform;
}

.kinetic-word,
.kinetic-char {
  display: inline-block;
}

.kinetic-word {
  white-space: nowrap;
}

.kinetic-char {
  will-change: transform;
}

.hero-line-primary {
  color: var(--paper);
  text-shadow:
    4px 0 0 rgba(114, 232, 255, 0.28),
    -3px 0 0 rgba(255, 181, 71, 0.22),
    0 0 40px rgba(98, 255, 135, 0.12);
}

.hero-line-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--phosphor);
  text-shadow: 0 0 26px rgba(98, 255, 135, 0.22);
}

.hero-intro {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 4vw, 58px);
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-lead {
  flex: 0 0 auto;
  margin: 0;
  color: var(--phosphor);
  font-size: 15px;
}

.hero-description {
  max-width: 34rem;
  margin: 0;
  color: #a9c8b2;
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.terminal-window {
  overflow: hidden;
  align-self: end;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--panel);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 40px rgba(98, 255, 135, 0.025);
  backdrop-filter: blur(10px);
}

.terminal-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(98, 255, 135, 0.045);
  color: var(--muted);
  font-size: 9px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32483a;
}

.terminal-dots span:first-child {
  background: var(--amber);
}

.terminal-dots span:nth-child(2) {
  background: var(--cyan);
}

.terminal-dots span:last-child {
  background: var(--phosphor);
}

.terminal-encryption {
  justify-self: end;
  color: var(--phosphor);
}

.terminal-body {
  min-height: 230px;
  padding: 22px 20px 24px;
  font-size: clamp(10px, 1vw, 12px);
  line-height: 1.75;
}

.terminal-body p {
  margin: 0;
  opacity: 0.35;
  transform: translateX(-5px);
}

.terminal-window.is-typing .terminal-body p {
  animation: terminal-line 260ms ease forwards;
}

.terminal-window.is-typing .terminal-body p:nth-child(1) {
  animation-delay: 80ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(2) {
  animation-delay: 210ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(3) {
  animation-delay: 370ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(4) {
  animation-delay: 510ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(5) {
  animation-delay: 610ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(6) {
  animation-delay: 710ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(7) {
  animation-delay: 810ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(8) {
  animation-delay: 980ms;
}

.terminal-window.is-typing .terminal-body p:nth-child(9) {
  animation-delay: 1140ms;
}

@keyframes terminal-line {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.terminal-prompt {
  color: var(--phosphor);
}

.terminal-output {
  color: #a5c7ae;
}

.terminal-connected {
  color: var(--amber);
}

.terminal-connected::after {
  display: inline-block;
  width: 6px;
  height: 12px;
  margin-left: 5px;
  content: "";
  background: var(--amber);
  vertical-align: -2px;
  animation: cursor-blink 900ms steps(1) infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  width: 16px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(98, 255, 135, 0.18);
}

.scroll-line::after {
  display: block;
  width: 100%;
  height: 20px;
  content: "";
  background: var(--phosphor);
  animation: scroll-trace 1.8s ease-in-out infinite;
}

@keyframes scroll-trace {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(220%);
  }
}

.scroll-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--phosphor);
  border-bottom: 1px solid var(--phosphor);
  transform: rotate(45deg);
}

.signal-section {
  position: relative;
  min-height: 165svh;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(98, 255, 135, 0.035), transparent 28%),
    var(--ink-soft);
}

.signal-sticky {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
}

.signal-noise {
  position: absolute;
  top: 9%;
  right: -2vw;
  width: 66vw;
  color: rgba(98, 255, 135, 0.035);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  transform: rotate(-4deg);
  user-select: none;
}

.signal-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
}

.kinetic-title {
  max-width: 1200px;
  margin: clamp(54px, 8vw, 110px) 0 clamp(46px, 7vw, 90px);
  font-size: clamp(3.2rem, 8.3vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  will-change: transform;
}

.signal-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  max-width: 1060px;
  margin-left: auto;
  gap: clamp(30px, 8vw, 120px);
}

.signal-summary > p:first-child {
  margin: 0;
  color: var(--paper);
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.75;
}

.signal-summary .english-copy {
  margin: 6px 0 0;
  line-height: 1.9;
}

.signal-stats,
.transmission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(70px, 10vw, 130px) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-stats div,
.transmission-stats div {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.signal-stats div:last-child,
.transmission-stats div:last-child {
  border-right: 0;
}

.signal-stats dt,
.transmission-stats dt {
  color: var(--muted);
  font-size: 9px;
}

.signal-stats dd,
.transmission-stats dd {
  margin: 0;
  color: var(--phosphor);
  font-size: clamp(11px, 1.2vw, 15px);
}

.modules-section {
  position: relative;
  padding: clamp(110px, 14vw, 210px) 0 clamp(130px, 16vw, 240px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0, rgba(98, 255, 135, 0.025) 50%, transparent 100%),
    var(--ink);
}

.modules-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  align-items: end;
  margin: clamp(66px, 10vw, 130px) 0 64px;
  gap: 50px;
}

.modules-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 7.4vw, 8.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  will-change: transform;
}

.modules-heading p {
  margin: 0 0 8px;
  color: #a9c8b2;
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.9;
}

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

.module-row {
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.75fr) minmax(260px, 1fr) 120px;
  align-items: center;
  min-height: 115px;
  padding: 20px 14px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    padding 180ms ease;
}

.module-row h3 {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 28px);
  font-weight: 600;
}

.module-row p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.7;
}

.module-index {
  color: var(--phosphor);
  font-size: 11px;
}

.module-status,
.module-action {
  justify-self: end;
  color: var(--phosphor);
  font-size: 10px;
}

.module-status::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
  vertical-align: 1px;
}

.module-action {
  color: var(--amber);
}

.module-link:hover,
.module-link:focus-visible {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(98, 255, 135, 0.055);
}

.module-link:hover h3,
.module-link:focus-visible h3 {
  color: var(--phosphor);
}

.transmission-section {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.transmission-media,
.transmission-media picture,
.transmission-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.transmission-media {
  z-index: -3;
}

.transmission-media img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.45) contrast(1.3) brightness(0.32) hue-rotate(78deg);
  transform: scale(1.08);
  will-change: transform;
}

.transmission-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 4, 0.96), rgba(3, 6, 4, 0.5) 66%, rgba(3, 6, 4, 0.84)),
    linear-gradient(180deg, rgba(3, 6, 4, 0.4), rgba(3, 6, 4, 0.9));
}

.transmission-content {
  padding-top: 130px;
  padding-bottom: 110px;
}

.transmission-copy {
  margin: clamp(70px, 10vw, 140px) 0 0;
}

.transmission-copy h2 {
  max-width: 1120px;
  margin: 0 0 38px;
  font-size: clamp(3.2rem, 8.3vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  will-change: transform;
}

.transmission-copy > p {
  max-width: 720px;
  margin: 0 0 12px auto;
  color: var(--paper);
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(15px, 1.8vw, 21px);
  line-height: 1.9;
}

.transmission-copy > .english-copy {
  color: var(--muted);
  font-size: 12px;
}

.transmission-stats {
  margin-top: clamp(68px, 9vw, 120px);
  background: rgba(3, 6, 4, 0.42);
  backdrop-filter: blur(8px);
}

.site-footer {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  padding: 40px clamp(20px, 5vw, 76px);
  gap: 30px;
  border-top: 1px solid var(--line);
  background: #020403;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.footer-main a {
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-main a:hover {
  color: var(--phosphor);
}

.site-footer > p {
  margin: 0;
  color: #4c6d56;
  font-size: 9px;
}

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

  .site-nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .terminal-window {
    width: min(100%, 600px);
  }

  .module-row {
    grid-template-columns: 54px minmax(160px, 0.8fr) minmax(220px, 1fr) 100px;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 32px 32px;
  }

  .site-header {
    min-height: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    font-size: 10px;
  }

  .header-status > span:not(.status-light) {
    display: none;
  }

  .page-progress {
    top: 55px;
  }

  .hero {
    min-height: 880px;
    padding: 110px 0 68px;
  }

  .hero-grid {
    background-size: 50vw 50vw;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(3, 6, 4, 0.42), rgba(3, 6, 4, 0.5) 34%, rgba(3, 6, 4, 0.98)),
      linear-gradient(90deg, rgba(3, 6, 4, 0.82), rgba(3, 6, 4, 0.28));
  }

  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
    gap: 46px;
  }

  .eyebrow {
    margin-bottom: 23px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 19.2vw, 5.5rem);
    line-height: 0.82;
  }

  .hero-intro {
    display: block;
    margin-top: 26px;
  }

  .hero-description {
    margin-top: 10px;
    font-size: 13px;
  }

  .terminal-body {
    min-height: 202px;
    padding: 18px 16px 20px;
  }

  .terminal-bar {
    grid-template-columns: 1fr auto;
  }

  .terminal-bar > span:nth-child(2) {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .signal-section {
    min-height: 145svh;
  }

  .signal-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .kinetic-title {
    margin: 50px 0 42px;
    font-size: clamp(3.1rem, 15vw, 5.2rem);
    line-height: 0.98;
  }

  .signal-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .signal-summary > p:first-child {
    font-size: 16px;
  }

  .signal-stats,
  .transmission-stats {
    margin-top: 64px;
  }

  .signal-stats div,
  .transmission-stats div {
    min-height: 76px;
    padding: 14px 10px;
  }

  .signal-stats dd,
  .transmission-stats dd {
    font-size: 9px;
  }

  .modules-section {
    padding: 100px 0 120px;
  }

  .modules-heading {
    grid-template-columns: 1fr;
    margin: 54px 0 44px;
    gap: 26px;
  }

  .modules-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }

  .module-row {
    grid-template-columns: 34px 1fr auto;
    min-height: 98px;
    padding: 17px 4px;
    gap: 10px;
  }

  .module-row p {
    grid-column: 2 / -1;
    grid-row: 2;
    font-size: 10px;
  }

  .module-row h3 {
    font-size: 16px;
  }

  .module-status,
  .module-action {
    grid-column: 3;
    grid-row: 1;
    font-size: 8px;
  }

  .module-link:hover,
  .module-link:focus-visible {
    padding-right: 8px;
    padding-left: 8px;
  }

  .transmission-section {
    min-height: 920px;
  }

  .transmission-content {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .transmission-copy {
    margin-top: 68px;
  }

  .transmission-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 14.5vw, 5rem);
  }

  .transmission-copy > p {
    margin-left: 0;
    font-size: 15px;
  }

  .site-footer {
    min-height: 170px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 36px;
    padding-bottom: calc(36px + env(safe-area-inset-bottom));
  }

  .footer-main {
    max-width: 360px;
    line-height: 1.7;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media img,
  .transmission-media img,
  [data-follow] {
    transform: none !important;
  }
}
