:root {
  color-scheme: dark;
  --ink: #f4f4ed;
  --muted: rgba(244, 244, 237, 0.72);
  --line: rgba(244, 244, 237, 0.18);
  --black: #050604;
  --green: #355a48;
  --red: #df2e26;
  --gold: #d8b15e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 6, 4, 0.72), rgba(5, 6, 4, 0));
}

.brand {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a,
.contract-pill,
.primary-action,
.secondary-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(5, 6, 4, 0.38);
  backdrop-filter: blur(14px);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contract-pill {
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(18px, 5vw, 72px) 64px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #050604;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.86) 0%, rgba(5, 6, 4, 0.48) 38%, rgba(5, 6, 4, 0.08) 72%),
    linear-gradient(0deg, rgba(5, 6, 4, 0.9) 0%, rgba(5, 6, 4, 0.12) 48%, rgba(5, 6, 4, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  min-width: 0;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(5rem, 16vw, 15rem);
  line-height: 0.82;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
}

h2 {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(244, 244, 237, 0.86);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: lowercase;
}

.hero-copy span {
  display: block;
  color: var(--red);
}

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

.primary-action {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.2);
}

.secondary-action {
  background: rgba(244, 244, 237, 0.1);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--red);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: moveSignal 22s linear infinite;
}

.ticker span {
  padding: 15px 22px;
  color: #fff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #050604 0%, #11160f 100%);
}

.story-intro {
  position: sticky;
  top: 96px;
  align-self: start;
}

.surveillance-frame {
  margin: 34px 0 0;
  border: 1px solid rgba(244, 244, 237, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 6, 4, 0.4);
}

.surveillance-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.surveillance-frame figcaption {
  padding: 13px 14px;
  color: rgba(244, 244, 237, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lore-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.5;
  font-weight: 700;
}

.lore-copy p {
  margin: 0;
}

.lore-copy strong {
  color: var(--ink);
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: stretch;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--green);
}

.mission-text p:last-child {
  max-width: 720px;
  color: rgba(244, 244, 237, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  font-weight: 800;
}

.signal-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(244, 244, 237, 0.24);
  border-radius: 8px;
  padding: 26px;
  background: rgba(5, 6, 4, 0.24);
}

.signal-card span,
.signal-card a {
  color: rgba(244, 244, 237, 0.7);
  font-weight: 900;
  text-transform: uppercase;
}

.signal-agent-image {
  display: block;
  width: 100%;
  max-height: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(244, 244, 237, 0.2);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(244, 244, 237, 0.64);
  background: #050604;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@keyframes moveSignal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-inline: 16px;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    max-width: 48vw;
  }

  .nav-links a,
  .contract-pill {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding-top: 150px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 6, 4, 0.95) 0%, rgba(5, 6, 4, 0.28) 52%, rgba(5, 6, 4, 0.48) 100%),
      linear-gradient(90deg, rgba(5, 6, 4, 0.62), rgba(5, 6, 4, 0.1));
  }

  .story,
  .mission-panel {
    grid-template-columns: 1fr;
  }

  .story-intro {
    position: static;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .nav-links {
    width: 358px;
    max-width: 100%;
    flex-direction: column;
  }

  .nav-links a,
  .contract-pill {
    flex: 1;
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.62rem;
  }

  .contract-pill {
    font-size: 0;
  }

  .contract-pill::after {
    content: "ca: soon";
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(3.25rem, 15.5vw, 4rem);
  }

  .hero-content,
  .hero-copy {
    width: 342px;
    max-width: calc(100% - 48px);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
