/* ───────────────────────────────────────────────────────────────────
   ORGAN HUNT · landing page styles
   Palette: near-black base · organ red accent · bone text
   Type:    Big Shoulders Stencil Display · Inter · JetBrains Mono
   ─────────────────────────────────────────────────────────────────── */

:root {
  --bg:          #070707;
  --bg-1:        #0c0c0c;
  --surface:     #111111;
  --surface-2:   #161513;
  --line:        #26221f;
  --line-2:      #36302c;
  --red:         #c41c1c;
  --red-deep:    #7a1212;
  --red-glow:    #ff2b2b;
  --red-dark:    #2a0a0a;
  --bone:        #ece8e2;
  --bone-dim:    #b8b1a7;
  --mute:        #6e6864;
  --mute-2:      #4a4641;
  --green:       #5a8a3a;
  --green-dim:   #3a6b3a;

  --fs-display:  clamp(46px, 8.4vw, 132px);
  --fs-h2:       clamp(34px, 4.6vw, 72px);
  --fs-h3:       clamp(20px, 1.4vw, 26px);
  --fs-body:     17px;
  --fs-small:    13px;

  --ff-display:  "Big Shoulders Stencil Display", "Big Shoulders Stencil Text", "Oswald", Impact, sans-serif;
  --ff-ui:       "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ff-mono:     "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--ff-ui);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--bone); }

::selection { background: var(--red); color: var(--bone); }

/* Page-wide grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.10;
  mix-blend-mode: overlay;
}

/* ───────────────────────────────  REVEAL  ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ───────────────────────────────  TYPE  ───────────────────────────── */

.display {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: .92;
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0 0 24px;
  color: var(--bone);
}
.display em {
  font-style: normal;
  color: var(--red);
}
.display--center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow__bar {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 60ch;
  margin: 0 auto 56px;
  text-align: center;
  text-wrap: pretty;
}

.prose p { margin: 0 0 18px; color: var(--bone-dim); max-width: 52ch; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose__single { color: var(--bone-dim); max-width: 52ch; margin: 0 0 24px; }
.prose__contact { color: var(--bone); }
.prose__contact a { color: var(--red); border-bottom: 1px solid var(--red-deep); padding-bottom: 1px; }
.prose__contact a:hover { color: var(--red-glow); border-bottom-color: var(--red); }

.mono { font-family: var(--ff-mono); font-variant-numeric: tabular-nums; }

/* ───────────────────────────────  SECTIONS  ───────────────────────── */

.section {
  position: relative;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 88px;
  align-items: start;
}
.two-col--ant { grid-template-columns: 1fr 1.05fr; align-items: center; }

/* ───────────────────────────────  NAV  ────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(7,7,7,0.84);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  padding: 12px 48px;
}
.nav__brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  height: 30px;
}
.nav__brand img { height: 22px; width: auto; opacity: .94; }
.nav__tm {
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--bone-dim);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--red);
  transition: right .25s cubic-bezier(.2,.7,.2,1);
}
.nav__links a:hover::after { right: 0; }

.nav__burger {
  display: none;
  width: 28px; height: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--bone);
  margin: 4px 0;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav__sheet {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(7,7,7,0.96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav__sheet a {
  font-family: var(--ff-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
  padding: 6px 0;
}

/* ───────────────────────────────  HERO  ───────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-top: none;
  padding-top: 0;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: -2;
  transform: translateY(var(--py, 0));
  will-change: transform;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.94) brightness(0.78);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 70% at 50% 55%, transparent 35%, rgba(7,7,7,0.78) 78%, var(--bg) 100%),
    radial-gradient(ellipse 70% 55% at 50% 60%, rgba(196,28,28,0.18) 0%, transparent 55%);
  animation: heartbeat 2.6s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 30%, 100% { opacity: 1; }
  10% { opacity: 0.84; }
  20% { opacity: 0.92; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}

.hero__chrome {
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 110px 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__rule {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--bone-dim);
  opacity: .8;
}
.hero__rule::before, .hero__rule::after { display: none; }
.hero__rule--bot { color: var(--bone-dim); }

.hero__center {
  position: relative;
  text-align: center;
  padding: 0 32px;
  max-width: 1100px;
  z-index: 1;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bone-dim);
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  background: rgba(7,7,7,0.45);
  margin-bottom: 38px;
}
.hero__kicker .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  animation: heartbeat-dot 1.4s infinite;
}
@keyframes heartbeat-dot {
  0%, 50%, 100% { opacity: 1; }
  20% { opacity: 0.3; }
  30% { opacity: 1; }
  40% { opacity: 0.4; }
}

.hero__title {
  position: relative;
  margin: 0 0 28px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: var(--fs-display);
  line-height: 0.85;
  letter-spacing: -0.012em;
  text-transform: uppercase;
}
.hero__title-real {
  position: relative;
  z-index: 2;
  color: var(--bone);
  background: linear-gradient(180deg, #f4efe6 0%, #b6aea3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(196,28,28,0.25);
}
.hero__title-gap { display: inline-block; width: 0.3em; }
.hero__title-ghost {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,28,28,0.32);
  transform: translate(4px, 4px);
  z-index: 1;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
  margin: 0 auto 38px;
  max-width: 32ch;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
}
.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #0a0a0a;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--red-glow);
  border-color: var(--red-glow);
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,28,28,0.35);
}
.btn--primary svg { stroke: #0a0a0a; }
.btn--ghost:hover {
  border-color: var(--bone-dim);
  color: var(--bone);
  background: rgba(255,255,255,0.03);
}

.hero__meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--mute);
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bone-dim);
  z-index: 2;
}
.hero__scroll svg { color: var(--bone-dim); animation: float 2.6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ───────────────────────────────  GAME OVERVIEW  ──────────────────── */

.section--game { background: var(--bg); }

.overview__text .display { max-width: 12ch; }

.speclist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  margin: 38px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.speclist div { display: flex; flex-direction: column; gap: 4px; }
.speclist dt {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--mute);
  text-transform: uppercase;
  margin: 0;
}
.speclist dd { margin: 0; font-size: 15px; color: var(--bone); }

.overview__art { position: sticky; top: 100px; }

.art-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--line);
}
.art-frame__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 6s ease;
  filter: contrast(1.05) saturate(0.95);
}
.art-frame__img.is-active { opacity: 1; transform: scale(1); }

.art-frame__chrome { position: absolute; inset: 14px; pointer-events: none; }
.art-frame__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--red);
}
.art-frame__corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.art-frame__corner--tr { top: 0; right: 0; border-left:  none; border-bottom: none; }
.art-frame__corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.art-frame__corner--br { bottom: 0; right: 0; border-left:  none; border-top: none; }

.art-frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(7,7,7,0.92));
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.art-frame__dots { display: inline-flex; gap: 6px; }
.art-frame__dots button {
  width: 18px; height: 4px;
  background: var(--mute-2);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.art-frame__dots button.is-on { background: var(--red); }

/* ───────────────────────────────  MECHANICS  ──────────────────────── */

.section--mech {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196,28,28,0.06), transparent 70%),
    var(--bg);
}

.mech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 16px;
}
.mech {
  position: relative;
  background: var(--bg-1);
  padding: 40px 32px 48px;
  min-height: 340px;
  transition: background .35s;
}
.mech:hover { background: var(--surface); }
.mech:hover .mech__no { color: var(--red); }

.mech__no {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--mute);
  margin-bottom: 30px;
  transition: color .25s;
}
.mech__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  color: var(--bone);
  text-transform: uppercase;
}
.mech__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bone-dim);
  margin: 0;
}
.mech__tag {
  position: absolute;
  top: 36px; right: 28px;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--red);
  border: 1px solid var(--red-deep);
  padding: 4px 8px;
  text-transform: uppercase;
}
.mech__corner {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 18px; height: 18px;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  opacity: 0.6;
}

/* ───────────────────────────────  ANTAGONIST  ─────────────────────── */

.section--ant {
  background: #050505;
  overflow: hidden;
  padding: 160px 0;
}
.ant__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(196,28,28,0.10), transparent 70%),
    radial-gradient(circle at 70% 50%, rgba(0,0,0,0.4), #050505 70%);
  pointer-events: none;
}
.section--ant .section__inner { position: relative; z-index: 1; }

.ant__img-wrap { position: relative; }
.ant__plate {
  position: relative;
  aspect-ratio: 5 / 6;
  background:
    linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.ant__plate img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(1.08) brightness(0.92);
}
.ant__plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}
.ant__plate::after {
  content: "REC";
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--red);
  padding-left: 16px;
  z-index: 3;
}
.ant__crosshair {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.ant__id {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.ant__id-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--bone-dim);
}
.ant__id-num {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.05em;
}
.ant__id-line {
  flex-basis: 100%;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: 4px;
}

.ant__text .display { max-width: 10ch; }

.ant__quote {
  border-left: 2px solid var(--red);
  padding: 8px 0 8px 22px;
  margin: 0 0 26px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--bone);
  letter-spacing: 0.005em;
  max-width: 36ch;
}

.ant__facts {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.ant__facts li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--bone-dim);
}
.ant__facts li span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
  padding-top: 4px;
}

/* ───────────────────────────────  PROGRESS  ───────────────────────── */

.section--prog { background: var(--bg); }
.section--prog .display { text-align: center; margin-left: auto; margin-right: auto; max-width: 14ch; }
.section--prog .eyebrow { display: flex; justify-content: center; }

.prog-summary {
  margin: 16px auto 64px;
  max-width: 980px;
  padding: 28px 32px 26px;
  background: var(--bg-1);
  border: 1px solid var(--line);
}
.prog-summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.prog-summary__count {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 0.01em;
}
.prog-summary__num { color: var(--red); }
.prog-summary__slash { color: var(--mute-2); }
.prog-summary__total { color: var(--bone); }
.prog-summary__lbl {
  display: inline-block;
  margin-left: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--mute);
  text-transform: uppercase;
}
.prog-summary__lbl--sm { margin-left: 8px; }
.prog-summary__pct .mono {
  font-size: 28px;
  color: var(--bone);
  font-weight: 500;
}

.prog-bar {
  position: relative;
  height: 8px;
  background: var(--surface-2);
  margin-bottom: 24px;
  overflow: visible;
}
.prog-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  transition: width 2s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 18px rgba(196,28,28,0.55);
}
.prog-bar__ticks { position: absolute; inset: 0; pointer-events: none; }
.prog-bar__ticks span {
  position: absolute;
  top: -3px; bottom: -3px;
  width: 1px;
  background: var(--bg);
  transform: translateX(-0.5px);
}

.prog-summary__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.prog-summary__legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.prog-summary__win {
  margin-left: auto;
  color: var(--red) !important;
  border-left: 1px solid var(--line-2);
  padding-left: 22px;
}

.ipg-pulse {
  animation: pulse 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.78); }
}

.ms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.ms {
  display: grid;
  grid-template-columns: 64px 32px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s;
}
.ms:hover {
  background: rgba(196,28,28,0.04);
  padding-left: 24px;
}
.ms__code {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.ms__glyph { display: flex; align-items: center; justify-content: center; }
.ms__body { min-width: 0; }
.ms__title {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.015em;
  color: var(--bone);
  line-height: 1.1;
}
.ms__note {
  font-size: 13.5px;
  color: var(--mute);
  margin-top: 4px;
}
.ms__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.ms__date {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
}
.ms-status {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  padding: 5px 9px;
  border: 1px solid var(--line-2);
  color: var(--bone-dim);
}
.ms-status--complete { color: #b9d5a3; border-color: var(--green-dim); background: rgba(58,107,58,0.10); }
.ms-status--in       { color: var(--red);     border-color: var(--red-deep);  background: rgba(196,28,28,0.10); }
.ms-status--up       { color: var(--mute);    border-color: var(--line-2); }

.ms--complete .ms__title    { color: var(--bone); }
.ms--in-progress .ms__title { color: var(--bone); }
.ms--upcoming .ms__title    { color: var(--bone-dim); }
.ms--upcoming .ms__code     { color: var(--mute-2); }

/* ───────────────────────────────  ABOUT  ──────────────────────────── */

.section--about {
  background: var(--bg-1);
  padding: 140px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 88px;
  align-items: center;
}
.about__mark img {
  width: 100%;
  max-width: 360px;
  opacity: 0.92;
}
.about__text .display { font-size: clamp(28px, 3vw, 44px); max-width: 22ch; }

/* ───────────────────────────────  FOOTER  ─────────────────────────── */

.footer {
  background: #050505;
  padding: 56px 0 42px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 56px;
  align-items: center;
}
.footer__brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}
.footer__brand img { height: 22px; opacity: 0.85; }
.footer__tm {
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--mute);
  margin-top: 2px;
}
.footer__socials {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  padding: 10px 14px;
  transition: all .25s;
}
.footer__socials a:hover {
  color: var(--bone);
  border-color: var(--red);
}
.footer__socials a .mono { color: var(--red); font-weight: 600; }
.footer__handle { color: var(--bone-dim); }
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
  text-align: right;
}
.footer__build { color: var(--mute-2); }

/* ───────────────────────────────  RESPONSIVE  ─────────────────────── */

@media (max-width: 980px) {
  .section { padding: 100px 0; }
  .section__inner { padding: 0 28px; }
  .nav { padding: 14px 24px; }
  .nav--solid { padding: 10px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }

  .hero__chrome { padding: 90px 24px 24px; }

  .two-col { grid-template-columns: 1fr; gap: 56px; }
  .two-col--ant { grid-template-columns: 1fr; gap: 48px; }
  .overview__art { position: static; }
  .art-frame { aspect-ratio: 4 / 5; max-width: 560px; margin: 0 auto; }

  .mech-grid { grid-template-columns: 1fr 1fr; }
  .mech { min-height: auto; padding: 32px 24px 40px; }

  .ant__facts li { grid-template-columns: 1fr; gap: 4px; }

  .ms { grid-template-columns: 48px 28px 1fr; gap: 18px; padding: 18px 12px; }
  .ms:hover { padding-left: 14px; }
  .ms__meta { grid-column: 1 / -1; padding-left: 94px; gap: 12px; }
  .ms__title { font-size: 18px; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__mark img { max-width: 220px; margin: 0 auto; display: block; }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer__legal { align-items: center; text-align: center; }
  .footer__socials { justify-content: center; }
}

@media (max-width: 560px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .mech-grid { grid-template-columns: 1fr; }
  .speclist { grid-template-columns: 1fr 1fr; gap: 16px; }
  .prog-summary { padding: 22px 18px; }
  .prog-summary__legend { gap: 14px; }
  .prog-summary__win { margin-left: 0; border-left: none; padding-left: 0; width: 100%; }
}
