:root {
  color-scheme: dark;
  --ink: #071011;
  --ink-2: #0b1518;
  --panel: rgba(10, 19, 22, 0.82);
  --paper: #f5f0e3;
  --muted: #b9c0bd;
  --line: rgba(231, 195, 110, 0.22);
  --gold: #e7c36e;
  --gold-soft: #f7dda0;
  --teal: #73d6c6;
  --violet: #b98cff;
  --red: #c66552;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 0%, rgba(120, 81, 167, 0.12), transparent 31rem),
    linear-gradient(180deg, #071011 0%, #091315 44%, #060b0d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  color: #06100f;
  background: var(--teal);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
}

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

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 88px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand-mark::before,
.brand-mark i {
  position: absolute;
  border-style: solid;
  border-radius: 50%;
  content: "";
}

.brand-mark::before {
  inset: 0;
  border-width: 1px;
  border-color: var(--gold) transparent var(--gold) var(--gold);
  transform: rotate(-35deg);
}

.brand-mark i:nth-child(1) {
  inset: 7px;
  border-width: 1px;
  border-color: var(--teal) var(--teal) transparent var(--teal);
  transform: rotate(60deg);
}

.brand-mark i:nth-child(2) {
  inset: 14px;
  border-width: 2px;
  border-color: var(--violet) transparent var(--violet) var(--violet);
  transform: rotate(145deg);
}

.brand-mark i:nth-child(3) {
  top: 1px;
  bottom: 1px;
  left: 20px;
  width: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, var(--gold), transparent 36%, transparent 64%, var(--violet));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0.28em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(245, 240, 227, 0.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.topnav > a:not(.nav-play) {
  color: rgba(245, 240, 227, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.topnav > a:not(.nav-play):hover {
  color: var(--paper);
}

.nav-play {
  padding: 12px 18px;
  border: 1px solid rgba(115, 214, 198, 0.52);
  color: #06100f;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(115, 214, 198, 0.12);
}

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stage,
.hero-stage img,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
}

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

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 8, 10, 0.99) 0%, rgba(3, 8, 10, 0.88) 28%, rgba(3, 8, 10, 0.28) 58%, rgba(3, 8, 10, 0.10) 78%),
    linear-gradient(180deg, rgba(3, 8, 10, 0.28) 0%, transparent 26%, rgba(3, 8, 10, 0.16) 68%, #071011 100%);
}

.hero-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(115, 214, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 214, 198, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 900px;
  margin-inline: auto;
  padding: 128px 0 170px;
}

.hero-copy {
  width: min(620px, 52vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 0 12px rgba(115, 214, 198, 0.45);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 6.1vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold-soft);
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(231, 195, 110, 0.16);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: #c8cfcc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #06100f;
  background: linear-gradient(100deg, var(--gold), #f5dda1 46%, var(--teal));
  box-shadow: 0 15px 40px -22px rgba(115, 214, 198, 0.75);
}

.button-ghost {
  border-color: rgba(245, 240, 227, 0.25);
  color: var(--paper);
  background: rgba(7, 16, 17, 0.52);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(115, 214, 198, 0.6);
  background: rgba(12, 25, 27, 0.86);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(245, 240, 227, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(115, 214, 198, 0.5);
  border-radius: 50%;
  color: var(--teal);
  font-size: 10px;
}

.hero-facts {
  position: absolute;
  right: 24px;
  bottom: 48px;
  left: 24px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  border: 1px solid rgba(231, 195, 110, 0.22);
  background: rgba(5, 11, 13, 0.75);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  min-height: 104px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-facts dd {
  margin: 9px 0 0;
  color: rgba(245, 240, 227, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-rule {
  position: relative;
  height: 54px;
}

.section-rule::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.section-rule span {
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

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

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.command-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.timeline-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--era) 13%, transparent), transparent 58%),
    rgba(8, 16, 18, 0.86);
}

.timeline-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--era) 35%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 28px color-mix(in srgb, var(--era) 6%, transparent), 0 0 80px color-mix(in srgb, var(--era) 15%, transparent);
  content: "";
}

.timeline-card.past { --era: var(--gold); }
.timeline-card.present { --era: var(--teal); }
.timeline-card.future { --era: var(--violet); }

.timeline-index {
  margin-bottom: 62px;
  color: color-mix(in srgb, var(--era) 75%, white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.timeline-label,
.faction-card > div > p {
  margin-bottom: 10px;
  color: var(--era, var(--teal));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.timeline-card h3 {
  max-width: 300px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
}

.timeline-card > p:not(.timeline-label) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
}

.timeline-signal {
  position: absolute;
  bottom: 28px;
  left: 34px;
  z-index: 1;
  color: color-mix(in srgb, var(--era) 70%, white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.command {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.command-visual {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(115, 214, 198, 0.28);
  background: rgba(4, 10, 12, 0.82);
  box-shadow: 0 26px 70px -38px rgba(0, 0, 0, 0.9), 0 0 42px -30px var(--teal);
}

.command-visual::before,
.command-visual::after {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--teal);
  content: "";
}

.command-visual::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.command-visual::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.command-visual img {
  width: 100%;
  height: auto;
  background: #02070a;
}

.capture-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(115, 214, 198, 0.32);
  color: #dffcf6;
  background: rgba(3, 10, 11, 0.82);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.capture-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

.command-copy h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.resource-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.resource-line span {
  padding: 6px 10px;
  border: 1px solid rgba(231, 195, 110, 0.25);
  color: var(--gold-soft);
  background: rgba(231, 195, 110, 0.06);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(115, 214, 198, 0.55);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faction-card {
  --faction: var(--teal);
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  min-height: 230px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--faction) 28%, transparent);
  background:
    radial-gradient(circle at 12% 50%, color-mix(in srgb, var(--faction) 14%, transparent), transparent 32%),
    rgba(8, 16, 18, 0.8);
}

.faction-card.concordat { --faction: #91d2c9; --era: #91d2c9; }
.faction-card.veyra { --faction: #d7a952; --era: #d7a952; }
.faction-card.helix { --faction: #b98cff; --era: #b98cff; }
.faction-card.sygma { --faction: #c66552; --era: #c66552; }

.faction-card img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--faction) 22%, transparent));
}

.faction-card h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.1;
}

.faction-card blockquote {
  margin: 0 0 10px;
  color: rgba(245, 240, 227, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.faction-card > div > span {
  color: var(--muted);
  font-size: 12px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.systems-grid article {
  min-height: 310px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

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

.systems-grid article > span {
  display: inline-block;
  margin-bottom: 76px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.systems-grid h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.systems-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--teal);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 22px;
  font-weight: 300;
  transition: transform 160ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -6px 48px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 64px auto 0;
  padding: 58px;
  border: 1px solid rgba(231, 195, 110, 0.24);
  background:
    radial-gradient(circle at 86% 50%, rgba(185, 140, 255, 0.16), transparent 28%),
    radial-gradient(circle at 56% 120%, rgba(115, 214, 198, 0.14), transparent 36%),
    rgba(8, 16, 18, 0.86);
}

.final-cta > div {
  max-width: 800px;
}

.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 4.4vw, 64px);
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta .button {
  flex: 0 0 auto;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: min(calc(100% - 48px), var(--max));
  align-items: center;
  gap: 28px;
  margin: 90px auto 0;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer > p {
  margin: 0;
  color: rgba(245, 240, 227, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer nav a {
  color: rgba(245, 240, 227, 0.56);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

@media (max-width: 960px) {
  .topnav {
    gap: 20px;
  }

  .topnav > a:not(.nav-play) {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-inner {
    min-height: 820px;
    padding-bottom: 190px;
  }

  .hero-copy {
    width: min(650px, 72vw);
  }

  .hero-stage img {
    object-position: 62% center;
  }

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

  .timeline-card {
    min-height: 310px;
  }

  .timeline-index {
    margin-bottom: 34px;
  }

  .command,
  .faq {
    grid-template-columns: 1fr;
  }

  .command-copy {
    max-width: 760px;
  }

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

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

  .systems-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer > p {
    display: none;
  }
}

@media (max-width: 680px) {
  .topbar,
  .hero-inner,
  .section,
  .hero-facts,
  .final-cta,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    min-height: 74px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark i:nth-child(1) { inset: 6px; }
  .brand-mark i:nth-child(2) { inset: 12px; }
  .brand-mark i:nth-child(3) { left: 16px; }

  .brand-copy strong {
    font-size: 14px;
  }

  .nav-play {
    padding: 10px 13px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage img {
    height: 760px;
    object-position: 67% center;
  }

  .hero-stage {
    height: 760px;
    bottom: auto;
  }

  .hero-scrim,
  .hero-grid {
    height: 760px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 8, 10, 0.93), rgba(3, 8, 10, 0.5)),
      linear-gradient(180deg, rgba(3, 8, 10, 0.18), rgba(3, 8, 10, 0.52) 56%, #071011 100%);
  }

  .hero-grid {
    opacity: 0.16;
  }

  .hero-inner {
    min-height: 760px;
    align-items: flex-start;
    padding: 128px 0 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1.01;
  }

  h1 em {
    font-size: 0.8em;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.55;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .trust-row {
    gap: 14px;
    font-size: 9px;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 28px;
  }

  .hero-facts div {
    min-height: 88px;
    padding: 18px;
  }

  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-facts dt {
    font-size: 23px;
  }

  .hero-facts dd {
    font-size: 8px;
  }

  .section-rule {
    height: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  h2,
  .command-copy h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .section-heading > p:last-child,
  .command-copy > p {
    font-size: 15px;
  }

  .timeline-card {
    min-height: 340px;
    padding: 26px;
  }

  .timeline-signal {
    left: 26px;
  }

  .command {
    gap: 38px;
  }

  .command-visual {
    padding: 5px;
  }

  .capture-tag {
    bottom: 14px;
    left: 14px;
  }

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

  .faction-card {
    grid-template-columns: 104px 1fr;
    min-height: 190px;
    padding: 20px 18px;
  }

  .faction-card img {
    width: 88px;
    height: 88px;
  }

  .faction-card h3 {
    font-size: 22px;
  }

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

  .systems-grid article,
  .systems-grid article:nth-child(2) {
    min-height: auto;
    padding: 28px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .systems-grid article > span {
    margin-bottom: 30px;
  }

  .faq {
    gap: 24px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 16px;
  }

  .final-cta {
    min-height: 0;
    margin-top: 34px;
    padding: 34px 24px;
  }

  .footer {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

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