:root {
  color-scheme: dark;
  --ink: #050505;
  --surface: #0c0c0c;
  --surface-raised: #111111;
  --mint: #cff0ec;
  --mint-soft: #a8d9d3;
  --text: #f3f7f6;
  --muted: #9aa8a4;
  --line: rgba(207, 240, 236, 0.16);
  --line-strong: rgba(207, 240, 236, 0.34);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 9%, rgba(168, 217, 211, 0.09), transparent 25rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

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

.grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 18% 27%, transparent 0 1px, rgba(255, 255, 255, 0.18) 1.5px 2px, transparent 2.5px 5px),
    repeating-radial-gradient(circle at 76% 71%, transparent 0 1px, rgba(255, 255, 255, 0.12) 1.5px 2px, transparent 2.5px 6px);
  background-size: 107px 113px, 131px 127px;
}

.launch-header,
.launch-footer {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.launch-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.launch-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  text-decoration: none;
}

.launch-brand img {
  filter: drop-shadow(0 0 16px rgba(207, 240, 236, 0.18));
}

.launch-brand span {
  color: var(--mint);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.launch-brand em {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  text-transform: none;
}

.launch-header nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.25rem);
}

.launch-header nav a,
.header-back {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.launch-header nav a:hover,
.launch-header nav a:focus-visible,
.header-back:hover,
.header-back:focus-visible {
  color: var(--mint);
}

.header-back {
  justify-self: end;
  color: var(--mint);
}

main > section {
  padding-inline: max(32px, calc((100vw - 1312px) / 2));
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(3rem, 6vw, 7.5rem);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.kicker,
.section-label {
  margin: 0;
  color: var(--mint-soft);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kicker span {
  width: 28px;
  height: 1px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

h1 {
  max-width: 900px;
  margin-top: 1.65rem;
  font-size: clamp(4.2rem, 7.2vw, 7.5rem);
}

h1 em,
h2 em,
.product h3 em {
  color: var(--mint);
  font-weight: 400;
}

.hero-lede {
  max-width: 750px;
  margin: 2rem 0 0;
  color: #c5cecc;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e7fffc;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--mint);
  border-color: var(--mint);
}

.hero-boundary {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.hero-boundary strong {
  color: var(--text);
}

.status-board {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(12, 12, 12, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), 0 0 80px rgba(168, 217, 211, 0.05);
}

.status-board-head,
.state-card-head,
.product-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-board-head {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.status-board-head b {
  color: var(--mint);
}

.release-signal {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.release-signal::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.8));
}

.release-signal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.38) contrast(1.08);
}

.live-chip {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  color: var(--mint);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--line-strong);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-chip i,
.state-live .state-card-head i,
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.status-ledger {
  margin: 0;
  padding: 0.5rem 1.1rem 1rem;
}

.status-ledger div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.status-ledger div:last-child {
  border-bottom: 0;
}

.status-ledger dt,
.status-ledger dd {
  margin: 0;
  font-size: 0.78rem;
}

.status-ledger dt {
  color: var(--muted);
}

.status-ledger dd {
  color: #79827f;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-ledger dd.is-live {
  color: var(--mint);
}

.status-ledger dd.is-beta {
  color: #d8c892;
}

.truth-strip {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding-block: 1.1rem;
  color: var(--muted);
  background: var(--mint);
  border-block: 1px solid var(--mint);
}

.truth-strip span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.truth-strip .dot {
  background: #111;
  box-shadow: none;
}

.truth-strip .dot.alpha {
  background: transparent;
  border: 1px solid #111;
}

.state-section,
.rights-section,
.gates-section,
.roadmap-section {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-heading,
.rights-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 3rem;
  align-items: start;
}

.section-heading h2,
.products-heading h2,
.rights-heading h2,
.gates-section header h2,
.architecture-copy h2,
.roadmap-section header h2,
.closing-section h2 {
  font-size: clamp(3.4rem, 6vw, 6.5rem);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.state-card {
  min-height: 520px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--surface);
}

.state-live {
  background: linear-gradient(145deg, rgba(207, 240, 236, 0.07), transparent 55%), var(--surface);
}

.state-card-head {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.state-card-head span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--mint);
}

.state-staged .state-card-head span {
  color: #d8c892;
}

.state-card h3 {
  max-width: 550px;
  margin: 4rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.state-card > p,
.state-card li {
  color: var(--muted);
}

.state-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
  padding-left: 1.2rem;
}

.state-card li::marker {
  color: var(--mint);
}

.state-staged li::marker {
  color: #d8c892;
}

.card-links a,
.docs-link {
  color: var(--mint);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.card-links a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--line-strong);
}

.disabled-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.65rem 1rem;
  color: #6e7774;
  border: 1px solid rgba(154, 168, 164, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: not-allowed;
}

.products-section {
  padding-block: clamp(6rem, 10vw, 11rem);
  background: var(--mint);
  color: var(--ink);
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.25fr) minmax(0, 0.5fr) minmax(220px, 0.25fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

.products-heading .section-label {
  color: #4a5956;
}

.products-heading h2 em,
.product h3 em {
  color: #5f7672;
}

.products-heading > p:last-child {
  margin: 0;
  color: #45524f;
}

.product-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(5, 5, 5, 0.32);
  border: 1px solid rgba(5, 5, 5, 0.32);
}

.product {
  padding: clamp(2rem, 4vw, 4rem);
  background: #dff8f5;
}

.product-network {
  background: #c5e6e1;
}

.product-index {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  color: #465652;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-index strong {
  margin-right: auto;
  margin-left: 0.6rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.product-type {
  margin: 3rem 0 0.5rem;
  color: #50615d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 4.6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.91;
}

.product-lede {
  margin: 1.5rem 0 2.5rem;
  color: #34413e;
  font-size: 1.02rem;
}

.product-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
}

.product-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
}

.product-steps li > span,
.architecture-card li > span {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.product-steps strong,
.network-grid strong {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.product-steps p,
.network-grid p {
  margin: 0.3rem 0 0;
  color: #52625e;
  font-size: 0.82rem;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(5, 5, 5, 0.18);
  border: 1px solid rgba(5, 5, 5, 0.18);
}

.network-grid > div {
  min-height: 160px;
  padding: 1.2rem;
  background: #cbeae6;
}

.network-grid span {
  display: block;
  margin-bottom: 1.8rem;
  color: #576964;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-rule {
  margin: 2rem 0 0;
  padding: 1rem;
  color: #3f4c49;
  border: 1px solid rgba(5, 5, 5, 0.2);
  font-size: 0.78rem;
}

.product-rule strong {
  color: var(--ink);
}

.rights-section {
  background: var(--surface);
}

.rights-heading {
  grid-template-columns: minmax(180px, 0.25fr) minmax(0, 0.48fr) minmax(220px, 0.27fr);
}

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

.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.rights-grid article {
  min-height: 280px;
  padding: 2rem;
  background: var(--ink);
}

.rights-grid span {
  color: var(--mint-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rights-grid h3 {
  margin: 5rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.rights-grid p,
.rights-warning p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.rights-warning {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 2rem;
  margin-top: 1px;
  padding: 2rem;
  color: var(--ink);
  background: var(--mint);
}

.rights-warning strong {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rights-warning p {
  color: #34423f;
}

.gates-section header,
.roadmap-section header {
  display: grid;
  grid-template-columns: minmax(180px, 0.25fr) minmax(0, 0.5fr) minmax(220px, 0.25fr);
  gap: 2rem;
}

.gates-section header > p:last-child {
  margin: 0;
  color: var(--muted);
}

.gate-list {
  margin: 5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.gate-list li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 160px;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.gate-number {
  color: var(--mint-soft);
  font-family: var(--serif);
  font-size: 2rem;
}

.gate-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.gate-list p {
  max-width: 800px;
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.gate-list b {
  justify-self: end;
  margin-top: 0.65rem;
  color: var(--mint);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.architecture-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(380px, 0.42fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding-block: clamp(6rem, 10vw, 10rem);
  background: var(--mint);
  color: var(--ink);
}

.architecture-copy .section-label {
  color: #4d605c;
}

.architecture-copy h2 {
  margin-top: 1.5rem;
}

.architecture-copy h2 em {
  color: #5f7672;
}

.architecture-copy > p:not(.section-label) {
  max-width: 760px;
  color: #3b4946;
}

.architecture-copy > p:nth-of-type(2) {
  margin-top: 2rem;
}

.docs-link {
  display: inline-block;
  margin-top: 1.3rem;
  padding-bottom: 0.3rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(5, 5, 5, 0.4);
}

.architecture-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text);
  background: var(--ink);
  border: 1px solid rgba(5, 5, 5, 0.5);
  box-shadow: 18px 18px 0 rgba(5, 5, 5, 0.1);
}

.architecture-card > p {
  margin: 0;
  color: var(--mint-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.architecture-card ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.architecture-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.8rem;
  padding: 0.9rem 0;
  color: #c5cfcc;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.architecture-card li > span {
  color: var(--mint);
}

.architecture-alert {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line-strong);
}

.architecture-alert strong {
  color: #d8c892;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.architecture-alert span {
  color: var(--muted);
  font-size: 0.77rem;
}

.roadmap-section {
  background: var(--surface);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.roadmap-grid article {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 1.75rem;
  background: var(--ink);
}

.roadmap-grid article.roadmap-now {
  background: linear-gradient(145deg, rgba(207, 240, 236, 0.09), transparent 60%), var(--ink);
}

.roadmap-grid span,
.roadmap-grid b {
  color: var(--mint-soft);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.roadmap-grid h3 {
  margin: 5rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.roadmap-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.roadmap-grid b {
  margin-top: auto;
  padding-top: 1rem;
  color: #77827f;
}

.roadmap-now b {
  color: var(--mint);
}

.closing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(7rem, 12vw, 13rem);
  text-align: center;
}

.closing-section > img {
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 24px rgba(207, 240, 236, 0.22));
}

.closing-section h2 {
  margin-top: 1.5rem;
}

.closing-section > p:not(.kicker) {
  max-width: 710px;
  margin: 1.7rem auto 0;
  color: var(--muted);
}

.launch-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 110px;
  border-top: 1px solid var(--line);
}

.launch-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-footer p:last-child {
  justify-self: end;
}

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

  .launch-header nav {
    display: none;
  }

  .launch-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .status-board {
    max-width: 760px;
  }

  .products-heading,
  .rights-heading,
  .gates-section header {
    grid-template-columns: 0.3fr 0.7fr;
  }

  .products-heading > p:last-child,
  .rights-heading > p:last-child,
  .gates-section header > p:last-child {
    grid-column: 2;
  }

  .product-map,
  .architecture-section {
    grid-template-columns: 1fr;
  }

  .architecture-card {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .launch-header,
  .launch-footer {
    width: min(100% - 32px, 1440px);
  }

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

  .launch-brand span {
    font-size: 0.92rem;
  }

  .header-back {
    font-size: 0.65rem;
  }

  main > section {
    padding-inline: 20px;
  }

  .launch-hero {
    padding-block: 4.5rem 5rem;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .truth-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
    padding-block: 1rem;
  }

  .section-heading,
  .products-heading,
  .rights-heading,
  .gates-section header,
  .roadmap-section header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-heading > p:last-child,
  .rights-heading > p:last-child,
  .gates-section header > p:last-child {
    grid-column: auto;
  }

  .section-heading h2,
  .products-heading h2,
  .rights-heading h2,
  .gates-section header h2,
  .architecture-copy h2,
  .roadmap-section header h2,
  .closing-section h2 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

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

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

  .state-card h3 {
    margin-top: 2.8rem;
  }

  .product {
    padding: 1.5rem;
  }

  .product h3 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

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

  .rights-warning {
    grid-template-columns: 1fr;
  }

  .gate-list li {
    grid-template-columns: 48px 1fr;
  }

  .gate-list b {
    grid-column: 2;
    justify-self: start;
    margin-top: 0;
  }

  .architecture-section {
    grid-template-columns: 1fr;
  }

  .launch-footer {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-block: 1.5rem;
  }

  .launch-footer p:last-child {
    justify-self: start;
  }
}

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