@font-face {
  font-family: "Oxanium";
  src: url("./assets/oxanium-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("./assets/nunito-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #eef7f3;
  --muted: #8da09d;
  --dim: #5f706d;
  --void: #030706;
  --panel: #08100f;
  --panel-2: #0b1513;
  --line: rgba(153, 184, 176, 0.16);
  --line-strong: rgba(153, 184, 176, 0.28);
  --green: #77f2a1;
  --green-hot: #a7ffc2;
  --cyan: #6ad7e7;
  --amber: #efaa4b;
  --red: #ef5a4c;
  --content: min(1180px, calc(100vw - 48px));
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 22%, rgba(48, 110, 86, 0.08), transparent 27rem),
    var(--void);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), rgba(106, 215, 231, 0.9), transparent);
  box-shadow: 0 0 16px rgba(119, 242, 161, 0.55);
  pointer-events: none;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border: 1px solid var(--green);
  background: #07110f;
  color: #fff;
  font-family: "Oxanium", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 7, 6, 0.86), rgba(3, 7, 6, 0));
  transition: border-color 220ms ease, background 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  border-bottom-color: var(--line);
  background: rgba(3, 7, 6, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Oxanium", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.65em;
  letter-spacing: 0.18em;
}

.brand-mark {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
  border: 1px solid rgba(119, 242, 161, 0.7);
  background: linear-gradient(135deg, rgba(119, 242, 161, 0.16), transparent 55%);
}

.brand-mark::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid var(--green);
  box-shadow: 0 0 10px rgba(119, 242, 161, 0.6);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Oxanium", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  color: #a8b8b5;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(119, 242, 161, 0.55);
  background: rgba(119, 242, 161, 0.09);
  color: var(--green-hot);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  background: var(--green);
  color: #04100a;
  box-shadow: 0 0 24px rgba(119, 242, 161, 0.25);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #040908;
}

.hero-art,
.hero-grid,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.hero-grid,
.final-grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(119, 242, 161, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 242, 161, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 50%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 50%, transparent);
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(3, 7, 6, 0.2) 0%, rgba(3, 7, 6, 0.02) 44%, rgba(3, 7, 6, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 7, 6, 0.28), transparent 24%, transparent 72%, #030706 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  padding: calc(var(--header-height) + 42px) 0 80px;
}

.hero-content > * {
  max-width: 610px;
}

.hero-logo {
  width: min(410px, 78vw);
  margin: 0 0 24px -12px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.7));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-family: "Oxanium", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

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

h1,
h2,
h3 {
  font-family: "Oxanium", sans-serif;
}

h1 {
  margin-bottom: 23px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

h1 em {
  color: var(--green-hot);
  font-style: normal;
  text-shadow: 0 0 28px rgba(119, 242, 161, 0.22);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 28px;
  color: #b5c4c1;
  font-size: 17px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  font-family: "Oxanium", sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  border: 1px solid var(--green-hot);
  background: var(--green);
  color: #041009;
  box-shadow: 0 0 25px rgba(119, 242, 161, 0.18), inset 0 0 16px rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  background: var(--green-hot);
  box-shadow: 0 0 34px rgba(119, 242, 161, 0.32);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(8, 16, 15, 0.72);
  color: #dce8e5;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(119, 242, 161, 0.48);
  background: rgba(14, 30, 25, 0.88);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: #82938f;
  font-family: "Oxanium", sans-serif;
  font-size: 10px;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list span {
  margin-right: 4px;
  color: var(--green);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1320px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6f817d;
  font-family: "Oxanium", sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(119, 242, 161, 0.35);
  border-radius: 50%;
}

.hero-scroll i::before {
  position: absolute;
  top: 9px;
  left: 15px;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--green);
  animation: scroll-pulse 1.7s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(-2px); opacity: 0.4; }
  50% { transform: translateY(3px); opacity: 1; }
}

.proof {
  position: relative;
  z-index: 3;
  display: flex;
  width: var(--content);
  min-height: 146px;
  align-items: center;
  justify-content: space-between;
  margin: -1px auto 0;
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.proof-item strong {
  color: #f5fbf9;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 570;
  line-height: 1;
}

.proof-item strong span {
  color: var(--green);
  font-size: 0.6em;
}

.proof-item small {
  max-width: 90px;
  color: var(--muted);
  font-family: "Oxanium", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2,
.command-copy h2,
.faction-copy h2,
.final-content h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.1vw, 58px);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
  text-transform: uppercase;
}

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

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

.loop-card {
  position: relative;
  min-height: 310px;
  padding: 32px 25px 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(13, 26, 23, 0.68), rgba(5, 10, 9, 0.62));
  transition: background 220ms ease, transform 220ms ease;
}

.loop-card::after {
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 110px;
  height: 110px;
  content: "";
  transform: rotate(45deg);
  border: 1px solid rgba(119, 242, 161, 0.1);
}

.loop-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  background: linear-gradient(150deg, rgba(18, 39, 31, 0.82), rgba(5, 10, 9, 0.75));
}

.loop-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #42514e;
  font-family: "Oxanium", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.loop-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 49px;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid rgba(119, 242, 161, 0.45);
  background: rgba(119, 242, 161, 0.06);
  color: var(--green);
  font-size: 20px;
}

.loop-icon::first-letter {
  transform: rotate(-45deg);
}

.loop-card h3 {
  margin-bottom: 13px;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.command {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-top: 70px;
}

.command-visual {
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
}

.command-visual img {
  width: 100%;
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%, 0 17px);
}

.command-visual::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  content: "";
  background: linear-gradient(135deg, rgba(106, 215, 231, 0.62), transparent 24%, transparent 76%, rgba(239, 170, 75, 0.5));
  clip-path: polygon(17px 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%, 0 17px);
}

.visual-frame {
  position: absolute;
  inset: 16px;
  border-top: 1px solid rgba(106, 215, 231, 0.36);
  border-left: 1px solid rgba(106, 215, 231, 0.36);
  pointer-events: none;
}

.visual-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(3, 7, 6, 0.82);
  color: var(--cyan);
  font-family: "Oxanium", sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.check-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.check-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 15px 12px;
  background: var(--panel);
}

.check-list > li > span {
  color: var(--green);
  font-family: "Oxanium", sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.check-list div {
  display: flex;
  flex-direction: column;
}

.check-list strong {
  color: #dce8e5;
  font-family: "Oxanium", sans-serif;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.check-list small {
  color: var(--dim);
  font-size: 12px;
}

.systems {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(7, 15, 13, 0.92), rgba(5, 10, 9, 0.96)),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(119, 242, 161, 0.035) 80px);
}

.system-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.system-shot,
.system-panel {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #060b0a;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.system-shot-wide {
  grid-row: span 2;
  min-height: 654px;
}

.system-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 350ms ease;
}

.system-shot-wide img {
  object-position: center;
}

.system-shot:hover img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.system-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(3, 7, 6, 0.94) 100%);
  pointer-events: none;
}

.system-shot figcaption {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 25px;
  left: 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.system-shot figcaption span,
.panel-code {
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Oxanium", sans-serif;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-shot figcaption strong {
  margin-bottom: 6px;
  font-family: "Oxanium", sans-serif;
  font-size: 18px;
  font-weight: 630;
  text-transform: uppercase;
}

.system-shot figcaption small {
  max-width: 520px;
  color: #91a39f;
  font-size: 13px;
}

.system-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 100% 100%, rgba(119, 242, 161, 0.12), transparent 55%),
    var(--panel-2);
}

.system-panel::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  content: "";
  border-right: 1px solid rgba(119, 242, 161, 0.32);
  border-bottom: 1px solid rgba(119, 242, 161, 0.32);
}

.system-panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 620;
  line-height: 1.15;
  text-transform: uppercase;
}

.system-panel > p:not(.panel-code) {
  color: var(--muted);
  font-size: 14px;
}

.mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.mode-tags span {
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  color: #aebebb;
  font-family: "Oxanium", sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.faction-copy h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(119, 242, 161, 0.42);
  color: var(--green);
  font-family: "Oxanium", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faction-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  transform: perspective(1000px) rotateY(-4deg);
}

.faction-matrix > span {
  position: relative;
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  background: linear-gradient(125deg, color-mix(in srgb, currentColor 11%, #07100f), #07100f 60%);
  color: var(--green);
  font-family: "Oxanium", sans-serif;
  font-size: 13px;
  font-weight: 660;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.faction-matrix > span::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.faction-matrix small {
  margin-top: 3px;
  color: #748782;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.faction-matrix .f-vulcan { color: #ff6c5e; }
.faction-matrix .f-zephyr { color: #62e5f5; }
.faction-matrix .f-titan { color: #f6bd50; }
.faction-matrix .f-nova { color: #b99af1; }
.faction-matrix .f-void { color: #8d78ff; }
.faction-matrix .f-garage { color: #ffad67; }

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(45px, 8vw, 110px);
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.faq .section-heading {
  margin-bottom: 0;
}

.faq .section-heading h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  cursor: pointer;
  color: #dce7e4;
  font-family: "Oxanium", sans-serif;
  font-size: 13px;
  font-weight: 590;
  letter-spacing: 0.025em;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--green);
  font-size: 18px;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 120%, rgba(119, 242, 161, 0.18), transparent 45%),
    linear-gradient(180deg, #07100e, #030706);
}

.final-grid {
  position: absolute;
  inset: 0;
}

.final-content {
  position: relative;
  width: min(800px, calc(100vw - 48px));
  padding: 90px 0;
  text-align: center;
}

.final-content .eyebrow {
  justify-content: center;
}

.final-content h2 {
  margin-bottom: 16px;
}

.final-content > p {
  margin-bottom: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: var(--content);
  min-height: 150px;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  color: #5f716d;
}

.footer-brand {
  font-size: 11px;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  color: #586964;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  font-family: "Oxanium", sans-serif;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.site-footer > p {
  margin: 0;
  font-size: 10px;
  text-align: right;
}

.reveal {
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

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

@media (max-width: 980px) {
  :root {
    --content: min(100% - 38px, 760px);
  }

  .hero-art {
    object-position: 58% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(3, 7, 6, 0.42) 0%, rgba(3, 7, 6, 0.04) 74%),
      linear-gradient(180deg, rgba(3, 7, 6, 0.28), transparent 22%, transparent 66%, #030706 100%);
  }

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

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

  .command {
    gap: 58px;
  }

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

  .factions {
    gap: 50px;
  }

  .faq {
    gap: 18px;
  }

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

  .system-shot-wide {
    grid-row: auto;
    min-height: 480px;
  }

  .system-shot,
  .system-panel {
    min-height: 360px;
  }

  .system-panel {
    min-height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 0;
    text-align: center;
  }

  .footer-brand,
  .site-footer nav {
    justify-content: center;
  }

  .site-footer > p {
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
    --content: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 16px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .brand {
    font-size: 12px;
  }

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

  .nav-cta {
    padding: 9px 12px;
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-art {
    height: 47%;
    object-position: 74% center;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }

  .hero-vignette {
    background: linear-gradient(180deg, rgba(3, 7, 6, 0.04), #030706 54%, #030706 100%);
  }

  .hero-content {
    align-self: end;
    padding: 205px 0 46px;
  }

  .hero-logo {
    width: min(290px, 78vw);
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(35px, 10.5vw, 42px);
    line-height: 1;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 8px 14px;
    font-size: 8px;
  }

  .hero-scroll {
    display: none;
  }

  .proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 22px 0;
  }

  .proof-item {
    min-height: 80px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-left: 18px;
    border: 1px solid var(--line);
    border-width: 0 1px 1px 0;
  }

  .proof-item:nth-of-type(3),
  .proof-item:nth-of-type(4) {
    border-bottom-width: 0;
  }

  .proof-divider {
    display: none;
  }

  .proof-item small {
    max-width: none;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .command-copy h2,
  .faction-copy h2,
  .final-content h2 {
    font-size: clamp(29px, 9vw, 42px);
  }

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

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

  .loop-card {
    min-height: 250px;
  }

  .loop-icon {
    margin-bottom: 34px;
  }

  .command {
    padding-top: 20px;
  }

  .command-visual {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .visual-label {
    right: 9px;
    bottom: 9px;
    font-size: 6px;
  }

  .systems {
    padding-right: 16px;
    padding-left: 16px;
  }

  .system-shot,
  .system-shot-wide {
    min-height: 350px;
  }

  .system-shot img {
    object-position: center;
  }

  .system-shot-wide img {
    object-position: 43% center;
  }

  .system-shot figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .system-shot figcaption strong {
    font-size: 15px;
  }

  .system-panel {
    min-height: 310px;
    padding: 25px;
  }

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

  .faction-matrix > span {
    min-height: 72px;
  }

  .faq-list summary {
    min-height: 64px;
    font-size: 12px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

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

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

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