:root {
  --bg: #090b08;
  --panel: #12150f;
  --ink: #e6dfd0;
  --dim: #8c8676;
  --line: #2c3326;
  --amber: #d4a44a;
  --rust: #c24c38;
  --steel: #6e9aaa;
  --violet: #9a6bb0;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans SC", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
}
body.nav-lock { overflow: hidden; height: 100dvh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 40;
  opacity: .14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: fixed; top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex; align-items: center; gap: 16px;
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  background: rgba(10,12,9,.72);
  border: 1px solid rgba(212,164,74,.28);
  backdrop-filter: blur(16px);
}
.word {
  font-family: "Big Shoulders Display", sans-serif;
  letter-spacing: .22em;
  font-size: 14px;
  color: var(--amber);
}
.nav-links { display: flex; gap: 18px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--dim);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex; align-items: center; gap: 10px;
  background: var(--amber);
  color: #16130c;
  border: 0;
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
}
.nav-cta i {
  width: 28px; height: 28px; border-radius: 50%;
  background: #16130c; color: var(--amber);
  display: grid; place-items: center;
  transition: transform .5s var(--ease);
}
.nav-cta:hover i { transform: translate(2px, -1px) scale(1.06); }
.nav-cta:not(:has(i)) { padding: 8px 16px; }
.nav:not(:has(.nav-cta)) { padding-right: 18px; }
.lang-toggle {
  flex: 0 0 auto;
  min-width: 38px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(212,164,74,.45);
  border-radius: 999px;
  background: rgba(212,164,74,.08);
  color: var(--amber);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: var(--amber);
  border-color: var(--amber);
  color: #16130c;
  outline: none;
}
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; position: relative;
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink);
  transition: transform .5s var(--ease), opacity .4s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.on span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero,
.page-hero,
.cta,
.intel-band {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 86vh;
}
@media (min-width: 900px) {
  .hero,
  .page-hero,
  .cta,
  .intel-band {
    min-height: 88vh;
    height: max(88vh, calc(100vw * 0.428));
    max-height: 100dvh;
  }
}
.hero {
  background-image: url("../images/posters/land.jpg");
}
.hero::after,
.page-hero::after,
.cta::after,
.intel-band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,8,.7) 0%, rgba(9,11,8,.22) 46%, transparent 72%),
    linear-gradient(180deg, rgba(9,11,8,.12) 10%, rgba(9,11,8,.92) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 72px;
}
.kicker {
  font-family: "Share Tech Mono", monospace;
  letter-spacing: .32em;
  font-size: 11px;
  color: var(--amber);
}
.hero h1 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(64px, 12vw, 148px);
  line-height: .82;
  margin: 10px 0 16px;
  letter-spacing: .04em;
  font-weight: 800;
}
.hero p {
  max-width: 520px;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn-solid, .btn-ghost {
  border-radius: 999px;
  padding: 14px 16px 14px 22px;
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .45s var(--ease), background .4s;
}
.btn-solid { background: var(--amber); color: #16130c; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-solid:hover, .btn-ghost:hover { transform: translateY(-2px); }
.btn-solid i, .btn-ghost i {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
}
.btn-solid i { background: #16130c; color: var(--amber); }
.btn-ghost i { background: #ffffff10; }

.section { padding: 120px 0; scroll-margin-top: 88px; }
.feat-grid, .cat-nav, .group { scroll-margin-top: 96px; }
.wrap { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--amber);
}
h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .92;
  margin: 8px 0 18px;
  letter-spacing: .03em;
}

.intel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.intel-visual {
  padding: 8px;
  background: #ffffff08;
  border: 1px solid #ffffff12;
  border-radius: 28px;
}
.intel-visual img { border-radius: 22px; height: 520px; width: 100%; object-fit: cover; }
.intel p { color: var(--dim); line-height: 1.85; font-size: 16px; }
.intel-note {
  margin-top: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--amber);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .08em;
}

.forces { padding-top: 40px; }
.slices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 78vh;
  gap: 8px;
}
.slice {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  isolation: isolate;
  min-height: 420px;
  height: 100%;
}
.slice img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease);
}
.slice:hover img { transform: scale(1.12); }
.slice .cap {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 1;
}
.slice::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, #090b08ee 100%);
}
.slice h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 42px;
  margin: 0 0 6px;
}
.slice p { margin: 0; color: var(--dim); font-size: 14px; line-height: 1.6; }
.slice.union h3 { color: var(--steel); }
.slice.red h3 { color: var(--rust); }
.slice.shadow h3 { color: #c59ad4; }

.field {
  background: url("../images/posters/tesla.jpg") center/cover no-repeat;
  position: relative;
}
.field::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(9,11,8,.78);
}
.field .wrap { position: relative; }
.specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.spec {
  padding: 8px;
  background: #ffffff08;
  border: 1px solid #ffffff12;
  border-radius: 24px;
}
.spec > div {
  background: #10140e;
  border-radius: 18px;
  min-height: 220px;
  padding: 28px;
}
.spec b {
  display: block;
  font-family: "Share Tech Mono", monospace;
  color: var(--amber);
  letter-spacing: .2em;
  font-size: 11px;
  margin-bottom: 18px;
}
.spec h3 { margin: 0 0 10px; font-size: 28px; font-family: "Big Shoulders Display", sans-serif; }
.spec p { margin: 0; color: var(--dim); line-height: 1.7; }

.arsenal { background: var(--panel); }
.rack {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 36px;
}
.rack article {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #0c0e0a;
  border: 1px solid #ffffff10;
  min-height: 240px;
  cursor: pointer;
}
.rack article:first-child { grid-row: 1 / span 2; min-height: 520px; }
.rack img { width: 100%; height: 100%; object-fit: cover; }
.rack figcaption {
  position: absolute; left: 18px; bottom: 16px;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--amber);
  text-shadow: 0 2px 12px #000;
}

.intel-band { background-image: url("../images/posters/navy.jpg"); }
.intel-band .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}
.intel-band h2 { margin-top: 8px; }
.intel-band p { max-width: 540px; color: var(--dim); line-height: 1.85; }
.cta { background-image: url("../images/posters/launch.jpg"); }
.cta-navy { background-image: url("../images/posters/navy.jpg"); }
.cta-tesla { background-image: url("../images/posters/tesla.jpg"); }
.cta-sub { background-image: url("../images/posters/sub.jpg"); }
.cta-storm { background-image: url("../images/posters/storm.jpg"); }
.cta-land { background-image: url("../images/posters/land.jpg"); }
.cta-coast { background-image: url("../images/posters/coast.jpg"); }
.cta-base { background-image: url("../images/posters/base.jpg"); }
.cta .wrap { position: relative; z-index: 1; padding-bottom: 72px; }
.cta p { max-width: 460px; color: var(--dim); }
.cta#download {
  min-height: 0;
  height: auto;
  max-height: none;
  align-items: stretch;
  padding: 48px 0 32px;
}
.cta#download .wrap {
  padding-bottom: 8px;
  margin-bottom: 0;
}
.g2m-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}
.cta#download .g2m-close-get > p { max-width: 46ch; }
.cta#download .g2m-dl-meta {
  margin-top: 22px;
  max-width: 420px;
}
.cta#download .g2m-dl-meta > div {
  background: rgba(12, 14, 10, .72);
}
.cta#download .g2m-aside {
  margin-top: 0;
  background: rgba(16, 20, 14, .78);
  backdrop-filter: blur(14px);
}
.cta#download .g2m-aside > p { max-width: none; }
.cta#download .g2m-aside-ways { grid-template-columns: 1fr; }
.section:has(+ #download) { padding-bottom: 48px; }

.foot {
  padding: 28px 0 40px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: .14em;
  display: flex; justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero { padding: 140px 0 56px; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: .9;
  margin: 10px 0 12px;
  letter-spacing: .03em;
  font-weight: 800;
}
.page-hero p {
  max-width: 560px;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.7;
}
.page-hero.union { background-image: url("../images/posters/storm.jpg"); }
.page-hero.red { background-image: url("../images/posters/coast.jpg"); background-position: center 40%; }
.page-hero.shadow { background-image: url("../images/posters/sub.jpg"); }
.page-hero.world { background-image: url("../images/posters/base.jpg"); }

.group { margin: 56px 0 72px; }
.group h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 32px;
  letter-spacing: .06em;
  margin: 0 0 18px;
  color: var(--amber);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.cards figure {
  margin: 0;
  background: #0c0e0a;
  border: 1px solid #ffffff12;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .3s;
}
.cards figure:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}
.cards img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #080a07;
}
.cards figcaption {
  padding: 10px 12px 12px;
  font-size: 13px;
  letter-spacing: .04em;
}
.preview-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.preview-row a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ffffff12;
  background: #0c0e0a;
}
.preview-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.preview-row span {
  display: block;
  padding: 8px 10px 10px;
  font-size: 12px;
  color: var(--dim);
}
.more-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--amber);
  letter-spacing: .16em;
  font-size: 12px;
}

@media (max-width: 860px) {
  .preview-row { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 10px; }
  .nav-links a { font-size: 18px; }
}

.reveal { opacity: 0; transform: translateY(28px); filter: blur(8px); }
.reveal.in { opacity: 1; transform: none; filter: none; transition: 900ms var(--ease); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: block; position: relative; z-index: 70; }
  .nav {
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    justify-content: space-between;
  }
  .nav.open {
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    border: 0;
    background: rgba(8,10,7,.96);
    backdrop-filter: blur(20px);
    z-index: 50;
    align-items: flex-start;
    padding: 18px 16px;
  }
  .nav.open .word { position: relative; z-index: 70; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    z-index: 60;
    background: transparent;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 22px;
  }
  .intel, .slices, .specs, .rack { grid-template-columns: 1fr; }
  .slices { min-height: auto; }
  .slice { min-height: 320px; }
  .hero-inner { margin-bottom: 36px; }
  .hero h1 { font-size: 64px; letter-spacing: 0; }
  .hero p { font-size: 15px; padding-bottom: 8px; }
  .section { padding: 80px 0; }
  .nav.open { z-index: 50; }
  .intel-visual img { height: 280px; }
}

.nav-links a[aria-current="page"] { color: var(--ink); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0c0e0a;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marquee 70s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img {
  height: 92px;
  width: 122px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ffffff14;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.intel-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.intel-thumbs img {
  height: 92px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ffffff12;
}

.slice { display: block; color: inherit; }

.spec { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.spec > img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.spec > div {
  background: #10140e;
  border-radius: 0 0 18px 18px;
  min-height: 200px;
  padding: 24px;
}

.sw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.sw-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 300px;
  isolation: isolate;
  cursor: pointer;
  border: 1px solid #ffffff12;
}
.sw-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.sw-card:hover img { transform: scale(1.08); }
.sw-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, #090b08f2 100%);
}
.sw-card figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1;
}
.sw-card strong {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  letter-spacing: .04em;
}
.sw-card em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.5;
}
.sw-card .tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--amber);
}

.doctrine {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.doctrine span {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--amber);
}

.feat-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-top: 32px;
}
.feat {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #ffffff12;
  cursor: pointer;
  isolation: isolate;
  min-height: 0;
}
.feat:first-child { grid-row: 1 / span 2; }
.feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.feat:hover img { transform: scale(1.07); }
.feat::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, #090b08f5 100%);
}
.feat .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  z-index: 1;
}
.feat h3 {
  margin: 4px 0 6px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: .03em;
}
.feat p { margin: 0; color: var(--dim); font-size: 13px; line-height: 1.55; }
.feat .tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--amber);
}

.cat-nav {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 0;
  margin: 8px 0 12px;
  background: linear-gradient(#090b08 60%, #090b08ee);
}
.cat-nav button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--dim);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .12em;
  transition: background .3s, color .3s, border-color .3s;
}
.cat-nav button.on,
.cat-nav button:hover {
  background: var(--amber);
  color: #16130c;
  border-color: var(--amber);
}

.cards figure { cursor: pointer; }
.cards .tag {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--amber);
  padding: 8px 12px 0;
}
.cards figcaption { padding-top: 4px; }
.group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
}
.group-head h3 { margin: 0; }
.group-head b {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--dim);
  font-weight: 400;
}

.sw-banner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 10px;
  margin: 8px 0 56px;
}
.sw-banner article {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 210px;
  isolation: isolate;
  cursor: pointer;
  border: 1px solid #ffffff12;
}
.sw-banner img { width: 100%; height: 220px; object-fit: cover; }
.sw-banner article::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, #090b08f0 100%);
  pointer-events: none;
}
.sw-banner figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
}
.sw-banner .tag {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 4px;
}

.sister {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 64px;
}
.sister a {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 190px;
  isolation: isolate;
  border: 1px solid #ffffff12;
}
.sister img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.sister a:hover img { transform: scale(1.08); }
.sister a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, #090b08ee 100%);
}
.sister span {
  position: absolute; bottom: 16px; left: 18px; z-index: 1;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  letter-spacing: .04em;
}

.mini-cta {
  margin-top: 72px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #10140e;
}
.mini-cta h2 { margin-bottom: 8px; }
.mini-cta p { color: var(--dim); margin: 0 0 20px; max-width: 480px; }

.tech-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.tech-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  cursor: pointer;
  border: 1px solid #ffffff12;
}
.tech-card.wide { grid-column: 1 / -1; min-height: 320px; }
.tech-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 1s var(--ease);
}
.tech-card:hover img { transform: scale(1.06); }
.tech-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, #090b08f5 100%);
}
.tech-card .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  z-index: 1;
}
.tech-card h3 {
  margin: 4px 0 8px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 32px;
}
.tech-card p { margin: 0; color: var(--dim); font-size: 14px; line-height: 1.6; max-width: 520px; }
.tech-card .tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--amber);
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5,6,4,.94);
  display: grid;
  place-items: center;
  padding: 48px 24px 72px;
}
.lb[hidden] { display: none; }
.lb img {
  max-width: min(980px, 92vw);
  max-height: 72vh;
  border-radius: 16px;
  border: 1px solid #ffffff22;
  box-shadow: 0 30px 80px #000;
}
.lb-cap {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  letter-spacing: .06em;
}
.lb-cap small {
  display: block;
  margin-top: 4px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--amber);
}
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0c0e0a;
  color: var(--ink);
  font-size: 22px;
}

.group[hidden] { display: none; }

.page-hero.union .kicker { color: var(--steel); }
.page-hero.red .kicker { color: var(--rust); }
.page-hero.shadow .kicker { color: #c59ad4; }

.cinema-sec { padding-bottom: 0; }
.cinema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  width: 100%;
}
@media (min-width: 861px) {
  .cinema-grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.cinema-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  min-height: 34vh;
  border: 0;
  border-radius: 0;
}
.cinema-card.wide { grid-column: 1 / -1; min-height: 62vh; }
.cinema-card.tall { grid-row: span 2; }
.cinema-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.cinema-card:hover img { transform: scale(1.06); }
.cinema-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 48%, #090b08f2 100%);
}
.cinema-card figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: .04em;
}
.cinema-card .tag {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .cinema-grid { grid-template-columns: 1fr; }
  .cinema-card { min-height: 32vh; }
  .cinema-card.wide { min-height: 42vh; }
}

@media (max-width: 860px) {
  .intel-thumbs { grid-template-columns: repeat(2, 1fr); }
  .intel-thumbs img { height: 72px; }
  .sw-grid, .sw-banner, .sister, .tech-grid, .feat-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-rows: none; }
  .feat { min-height: 240px; }
  .feat:first-child { grid-row: auto; min-height: 280px; }
  .marquee-track img { height: 64px; width: 86px; }
  .cat-nav {
    top: calc(64px + env(safe-area-inset-top, 0px));
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-nav::-webkit-scrollbar { display: none; }
  .cat-nav button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 16px;
  }
  .tech-card.wide { grid-column: auto; }
}

@media (max-width: 860px) {
  .nav {
    top: calc(10px + env(safe-area-inset-top, 0px));
    padding: 6px 8px 6px 14px;
  }
  .word { letter-spacing: .14em; font-size: 13px; }

  .hero,
  .page-hero,
  .cta,
  .intel-band {
    min-height: 100dvh;
    height: auto;
    max-height: none;
    background-position: center 40%;
  }
  .hero::after,
  .page-hero::after,
  .cta::after,
  .intel-band::after {
    background: linear-gradient(180deg, rgba(9,11,8,.18) 12%, rgba(9,11,8,.55) 48%, rgba(9,11,8,.94) 100%);
  }
  .hero-inner,
  .page-hero .wrap,
  .cta .wrap,
  .intel-band .wrap {
    width: min(1200px, calc(100% - 32px));
    margin-bottom: 28px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .page-hero { padding: calc(108px + env(safe-area-inset-top, 0px)) 0 36px; }
  .hero h1 {
    font-size: clamp(52px, 18vw, 72px);
    line-height: .88;
    letter-spacing: 0;
  }
  .page-hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero p, .page-hero p, .cta p, .intel-band p {
    font-size: 15px;
    max-width: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }
  .btn-solid, .btn-ghost {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 13px;
    letter-spacing: .1em;
  }
  .doctrine { gap: 8px; }
  .doctrine span {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .wrap { width: min(1200px, calc(100% - 32px)); }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(34px, 11vw, 52px); }

  .slice { min-height: 280px; }
  .slice h3 { font-size: 32px; }
  .rack article:first-child { min-height: 280px; }
  .sw-card, .sw-card img { min-height: 220px; height: 220px; }
  .sw-banner article { min-height: 180px; }
  .sw-banner img { height: 180px; }
  .sister a, .sister img { min-height: 160px; height: 160px; }
  .tech-card, .tech-card img { min-height: 220px; }
  .tech-card h3 { font-size: 26px; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cards figcaption { font-size: 12px; padding: 8px 8px 10px; }
  .preview-row { gap: 8px; }

  .foot {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 24px 0 calc(28px + env(safe-area-inset-bottom, 0px));
    width: min(1200px, calc(100% - 32px));
    letter-spacing: .08em;
  }

  .lb { padding: 64px 16px 88px; }
  .lb img {
    max-width: 100%;
    max-height: 58dvh;
  }
  .lb-cap { font-size: 22px; bottom: 16px; padding: 0 12px; }
  .lb-close { top: calc(12px + env(safe-area-inset-top, 0px)); right: 12px; }

  .group { margin: 40px 0 48px; }
  .group-head h3 { font-size: 26px; }

  .cinema-card { min-height: 38vh; }
  .cinema-card.wide { min-height: 46vh; }
}

@media (max-width: 400px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 48px; }
  .preview-row span { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .reveal.in { transition: none; }
}

.page-hero.tool { background-image: url("../images/posters/base.jpg"); }
.page-hero.tool .kicker { color: var(--amber); }
.page-hero.tool h1 {
  font-size: clamp(48px, 7.2vw, 88px);
  line-height: .92;
}
.page-hero.depot-hero {
  background-image: url("../images/posters/launch.jpg");
  min-height: 100dvh;
  height: auto;
  max-height: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 100px 0 40px;
}
.page-hero.depot-hero::after {
  background: linear-gradient(180deg, rgba(9,11,8,.3) 0%, rgba(9,11,8,.82) 100%);
}
.page-hero.depot-hero .wrap {
  width: calc(100% - 48px);
  max-width: none;
  padding-bottom: 8px;
  margin: 0 auto;
}
.depot-head {
  text-align: center;
  margin: 0 auto 28px;
}
.page-hero.depot-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 8px 0 10px;
}
.depot-head p {
  margin: 0 auto;
  max-width: 46ch;
}
.page-hero.depot-hero .depot { margin-top: 0; }
.page-hero.depot-hero .depot-force {
  height: auto;
  aspect-ratio: 2.4 / 1;
  max-height: 240px;
}
.page-hero.depot-hero .depot-plat { font-size: clamp(56px, 4.2vw, 84px); }
.ios-guide-page .page-hero.depot-hero {
  min-height: auto;
  padding: 100px 0 28px;
}
.ios-guide-page .legal-doc { padding-top: 34px; }
.ios-guide-page .depot-head { margin-bottom: 18px; }

@media (min-width: 861px) and (max-width: 1240px) {
  .nav {
    top: 18px;
    min-height: 48px;
    gap: 16px;
    padding: 10px 12px 10px 20px;
  }
  .word { font-size: 16px; letter-spacing: .16em; }
  .nav-links { gap: 15px; }
  .nav-links a { letter-spacing: .08em; font-size: 12px; }
  .nav:not(:has(.nav-cta)) { padding-right: 20px; }
  .lang-toggle { min-width: 40px; height: 32px; }
}

@media (min-width: 1241px) {
  .nav {
    top: 22px;
    min-height: 54px;
    gap: 26px;
    padding: 12px 16px 12px 26px;
    border-color: rgba(212,164,74,.38);
    box-shadow: 0 12px 34px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.05);
  }
  .word { font-size: 18px; letter-spacing: .18em; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 14px; letter-spacing: .14em; }
  .nav:not(:has(.nav-cta)) { padding-right: 26px; }
  .lang-toggle { min-width: 44px; height: 34px; font-size: 12px; }
}

.g2m-shot {
  margin: 0;
  background: #0c0e0a;
  border: 1px solid #ffffff14;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}
.g2m-shot img {
  width: 100%;
  display: block;
  aspect-ratio: 1080 / 761;
  object-fit: cover;
  object-position: top;
  background: #111;
}
.g2m-shot figcaption {
  padding: 12px 16px 14px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--amber);
}

.g2m-split {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}
.g2m-latest-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.g2m-lede {
  margin: 0 0 8px;
  color: var(--dim);
  max-width: 54ch;
  line-height: 1.75;
  font-size: 16px;
}
.g2m-copy h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 32px;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.g2m-copy p {
  margin: 0 0 18px;
  color: var(--dim);
  line-height: 1.75;
  font-size: 15px;
  max-width: 46ch;
}

.g2m-ways {
  display: grid;
  gap: 0;
}
.g2m-ways li {
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.g2m-ways li:last-child { border-bottom: 0; }
.g2m-ways b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.g2m-ways span {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}
.g2m-ways em {
  font-style: normal;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}

.g2m-lib {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}
.g2m-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.g2m-actions div {
  padding: 16px 16px 14px;
  background: #10140e;
  border: 1px solid #ffffff12;
  border-radius: 16px;
}
.g2m-actions b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 20px;
  margin-bottom: 4px;
}
.g2m-actions span { color: var(--dim); font-size: 13px; line-height: 1.5; }

.g2m-support {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.g2m-support a,
.g2m-support article {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 240px;
  isolation: isolate;
  border: 1px solid #ffffff12;
  color: inherit;
}
.g2m-support img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.g2m-support article:hover img { transform: scale(1.06); }
.g2m-support article::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, #090b08f2 100%);
}
.g2m-support .meta {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1;
}
.g2m-support article { cursor: pointer; }
.g2m-support .tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--amber);
}
.g2m-support h3 {
  margin: 4px 0 6px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
}
.g2m-support p { margin: 0; color: var(--dim); font-size: 13px; line-height: 1.5; }

.g2m-note {
  margin-top: 56px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
  line-height: 1.7;
  max-width: 62ch;
}
.g2m-aside {
  margin-top: 28px;
  padding: 28px 32px 26px;
  background: #10140e;
  border: 1px solid #ffffff12;
  border-left: 2px solid var(--amber);
  border-radius: 22px;
  width: 100%;
}
.g2m-aside h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 32px;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.g2m-aside > p {
  margin: 0 0 22px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: none;
}
.g2m-aside-ways {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.g2m-aside-ways li {
  padding: 16px 18px 14px;
  background: #0c0e0a;
  border: 1px solid #ffffff10;
  border-radius: 14px;
}
.g2m-aside-ways b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.g2m-aside-ways span {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}

.g2m-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72vh;
  background: url("../images/posters/mac.jpg") center/cover no-repeat;
  background-color: #000;
}
.g2m-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,8,.7) 0%, rgba(9,11,8,.38) 46%, rgba(9,11,8,.32) 100%),
    linear-gradient(180deg, rgba(9,11,8,.18) 0%, rgba(9,11,8,.55) 100%);
}
.g2m-band .wrap { position: relative; z-index: 1; }
.g2m-home {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.g2m-home .g2m-shot { margin-top: 0; }

#download,
#rosetta { scroll-margin-top: 96px; }
.g2m-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
  align-items: stretch;
}
.g2m-dl-official {
  grid-template-columns: 1fr;
  margin-top: 36px;
}
.g2m-dl-official + .g2m-dl { margin-top: 14px; }
.g2m-dl[hidden] { display: none; }
.g2m-dl-packet {
  position: relative;
  padding: 28px 28px 24px;
  background:
    linear-gradient(180deg, #161b13 0%, #10140e 100%);
  border: 1px solid #ffffff14;
  border-radius: 22px;
  overflow: hidden;
}
.g2m-dl-packet::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 2px;
  background: var(--amber);
}
.g2m-dl-stamp {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--amber);
  margin-bottom: 18px;
}
.g2m-dl-packet h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 40px;
  letter-spacing: .04em;
  margin: 0 0 8px;
  line-height: .95;
}
.g2m-dl-packet > p {
  margin: 0 0 22px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 46ch;
}
.g2m-dl-meta {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 10px;
  margin: 0;
}
.g2m-dl-meta > div {
  padding: 14px 16px 12px;
  background: #0c0e0a;
  border: 1px solid #ffffff10;
  border-radius: 14px;
}
.g2m-dl-meta dt {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--amber);
  margin-bottom: 8px;
}
.g2m-dl-meta dd {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
}
.g2m-dl-meta code {
  font-family: "Share Tech Mono", monospace;
  font-size: 20px;
  letter-spacing: .18em;
  color: var(--ink);
}
.g2m-dl-copy {
  border: 1px solid #ffffff22;
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: .12em;
  font-family: "Share Tech Mono", monospace;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.g2m-dl-copy:hover,
.g2m-dl-copy.on {
  background: var(--amber);
  color: #16130c;
  border-color: var(--amber);
}
.g2m-dl-packet .hero-actions { margin-top: 22px; }

.depot-lede {
  max-width: 54ch;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.depot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto;
  align-items: stretch;
  width: 100%;
}
.depot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 28px 22px;
  background: linear-gradient(180deg, #161b13 0%, #10140e 100%);
  border: 1px solid #ffffff14;
  border-radius: 26px;
  overflow: hidden;
  text-align: center;
}
.depot-card::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 2px;
  z-index: 2;
}
.depot-card.is-live::before { background: var(--amber); }
.depot-force {
  position: relative;
  margin: 0 -28px 18px;
  aspect-ratio: 2.4 / 1;
  height: auto;
  max-height: 240px;
  overflow: hidden;
}
.depot-force img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.depot-force::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,11,8,.12) 0%, rgba(9,11,8,.88) 100%);
}
.depot-status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(212,164,74,.78);
  border-radius: 999px;
  background: rgba(9,11,8,.82);
  color: var(--amber);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  box-shadow: 0 6px 18px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.08);
  white-space: nowrap;
}
.depot-force .depot-plat {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  z-index: 1;
  margin: 0;
  text-shadow: 0 10px 32px rgba(0,0,0,.88);
}
.depot-force .depot-alias {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 1;
  font-size: 15px;
  letter-spacing: .18em;
  color: var(--ink);
  text-shadow: 0 6px 20px rgba(0,0,0,.9);
}
.depot-force figcaption {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .22em;
  white-space: nowrap;
}
.depot-stamp {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--amber);
  margin-bottom: 10px;
}
.depot-card.force-union {
  background: linear-gradient(180deg, #12181c 0%, #0c1012 100%);
  border-color: #6e9aaa36;
  box-shadow: inset 0 1px 0 #6e9aaa40;
}
.depot-card.force-union::before { background: var(--steel); }
.depot-card.force-union .depot-stamp,
.depot-card.force-union .g2m-dl-meta dt,
.depot-card.force-union .depot-force figcaption,
.depot-card.force-union .depot-alias { color: var(--steel); }
.depot-card.force-union h3 { color: #d5e4ea; }
.depot-card.force-union .btn-wait {
  color: var(--steel);
  border-color: #6e9aaa44;
  background: #0b1013;
}
.depot-card.force-red {
  background: linear-gradient(180deg, #1a1210 0%, #120e0c 100%);
  border-color: #c24c3836;
  box-shadow: inset 0 1px 0 #c24c3840;
}
.depot-card.force-red::before { background: var(--rust); }
.depot-card.force-red .depot-stamp,
.depot-card.force-red .g2m-dl-meta dt,
.depot-card.force-red .depot-force figcaption,
.depot-card.force-red .depot-alias { color: var(--rust); }
.depot-card.force-red h3 { color: #edd8d2; }
.depot-card.force-red .btn-wait {
  color: var(--rust);
  border-color: #c24c3844;
  background: #130d0c;
}
.depot-card.force-shadow {
  background: linear-gradient(180deg, #16121a 0%, #100e14 100%);
  border-color: #9a6bb036;
  box-shadow: inset 0 1px 0 #9a6bb040;
}
.depot-card.force-shadow::before { background: #c59ad4; }
.depot-card.force-shadow .depot-stamp,
.depot-card.force-shadow .g2m-dl-meta dt,
.depot-card.force-shadow .depot-force figcaption,
.depot-card.force-shadow .depot-alias { color: #c59ad4; }
.depot-card.force-shadow h3 { color: #eadff0; }
.depot-plat {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: .03em;
  line-height: .8;
  margin: 0 0 10px;
}
.depot-card.force-union .depot-plat { color: var(--steel); }
.depot-card.force-red .depot-plat { color: var(--rust); }
.depot-card.force-shadow .depot-plat { color: #c59ad4; }
.depot-card h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  letter-spacing: .06em;
  margin: 0 0 10px;
  line-height: .95;
}
.depot-card > p {
  margin: 0 auto 12px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}
.depot-kit {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.depot-kit li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #ffffff16;
  background: #0c0e0a;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
}
.depot-card.force-union .depot-kit li {
  border-color: #6e9aaa33;
  color: #c5d8e0;
}
.depot-card.force-red .depot-kit li {
  border-color: #c24c3833;
  color: #edd8d2;
}
.depot-card.force-shadow .depot-kit li {
  border-color: #9a6bb033;
  color: #eadff0;
}
.depot-card .g2m-dl-meta {
  grid-template-columns: 1fr .72fr;
}
.depot-card .g2m-dl-meta dd {
  font-size: 18px;
  overflow-wrap: anywhere;
}
.depot-card .hero-actions {
  margin-top: auto;
  padding-top: 16px;
  justify-content: center;
}
.support-card {
  position: relative;
  isolation: isolate;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: 360px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(212, 164, 74, .34);
  border-radius: 4px;
  background: #11140e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 11, 8, .98) 0%, rgba(9, 11, 8, .88) 42%, rgba(9, 11, 8, .56) 100%),
    url("../images/arsenal.jpg") center 44% / cover no-repeat;
  filter: saturate(.65) contrast(1.04);
}
.support-card::after {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  z-index: -1;
  width: 2px;
  background: var(--amber);
}
.support-copy { min-width: 0; max-width: 560px; }
.support-kicker {
  margin-bottom: 16px;
  color: var(--amber);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .2em;
}
.support-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: .025em;
  line-height: .9;
}
.support-description {
  display: grid;
  gap: 10px;
}
.support-description p {
  max-width: 46ch;
  margin: 0;
  color: #c6c0b4;
  font-size: 15px;
  line-height: 1.75;
}
.support-note {
  max-width: 52ch;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 164, 74, .28);
  color: var(--dim);
  font-size: 12px;
  line-height: 1.65;
}
.support-priorities {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 164, 74, .28);
}
.support-priorities-title {
  color: var(--amber);
  font: 10px "Share Tech Mono", monospace;
  letter-spacing: .18em;
}
.support-priority-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.support-priority-list li {
  min-width: 0;
  padding: 9px 10px;
  border-left: 2px solid rgba(212, 164, 74, .7);
  background: rgba(8, 10, 7, .72);
  color: #aaa698;
  font: 10px/1.35 "Share Tech Mono", monospace;
  letter-spacing: .04em;
}
.support-payments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.support-kofi { display: none; }
html[lang="en"] .support-payments-cn,
html[lang="en"] .support-claim { display: none; }
html[lang="en"] .support-kofi {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 94, 91, .72);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px) 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), transparent 28%),
    linear-gradient(160deg, #38201d, #0b0d0a 48%, #18110f);
  box-shadow: 0 0 28px rgba(255, 94, 91, .14);
  text-align: center;
}
.support-kofi > span { color: #ff7774; font: 10px "Share Tech Mono", monospace; letter-spacing: .16em; }
.support-kofi h3 { margin: 14px 0 10px; color: var(--ink); font: 800 clamp(38px, 5vw, 54px)/.95 "Big Shoulders Display", sans-serif; }
.support-kofi > p:not(.support-kofi-legal) { max-width: 42ch; margin: 0 0 22px; color: #aaa69a; font-size: 14px; line-height: 1.65; }
.support-kofi a { display: inline-flex; border-radius: 7px; box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
.support-kofi img { display: block; width: auto; max-width: 100%; height: 36px; }
.support-kofi-legal {
  max-width: 50ch;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 94, 91, .24);
  color: #77766f;
  font-size: 11px;
  line-height: 1.6;
}
.support-kofi-legal span { display: inline; }
.support-qr {
  --frame-metal: #34382f;
  --payment-accent: var(--amber);
  --payment-glow: rgba(212, 164, 74, .2);
  position: relative;
  margin: 0;
  padding: 14px 14px 16px;
  border: 1px solid var(--payment-accent);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 24%),
    linear-gradient(160deg, var(--frame-metal), #0b0d0a 42%, #171a14);
  box-shadow: 0 0 24px var(--payment-glow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.support-qr.wechat {
  --frame-metal: #173d2d;
  --payment-accent: #07c160;
  --payment-glow: rgba(7, 193, 96, .2);
}
.support-qr.alipay {
  --frame-metal: #182f50;
  --payment-accent: #1677ff;
  --payment-glow: rgba(22, 119, 255, .22);
}
.support-qr::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 22px;
  right: 22px;
  height: 5px;
  z-index: 2;
  border-radius: 2px;
  background: repeating-linear-gradient(135deg, var(--payment-accent) 0 8px, #0b0d0a 8px 16px);
  opacity: .85;
  pointer-events: none;
}
.support-qr:hover {
  transform: translateY(-3px);
  border-color: var(--payment-accent);
}
.support-qr-frame {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  min-height: 184px;
  padding: 17px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #4b5045 0%, #171a15 18%, #0b0d0a 82%, #363a32 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .12),
    inset 0 0 0 5px rgba(0, 0, 0, .36),
    0 12px 28px rgba(0, 0, 0, .34);
  clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
}
.support-qr-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 2;
  border: 1px solid var(--payment-accent);
  clip-path: inherit;
  pointer-events: none;
}
.support-qr-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  box-shadow:
    inset 18px 0 12px -20px var(--payment-accent),
    inset -18px 0 12px -20px var(--payment-accent),
    inset 0 18px 12px -20px var(--payment-accent),
    inset 0 -18px 12px -20px var(--payment-accent);
  pointer-events: none;
}
.support-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 5px solid #e9e5da;
  background: #fff;
}
.support-qr figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 2px 4px;
  text-align: center;
}
.support-qr figcaption strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.support-qr figcaption strong::before {
  content: "//";
  margin-right: 7px;
  color: var(--payment-accent);
  font-family: "Share Tech Mono", monospace;
  letter-spacing: -.08em;
}
.btn-wait {
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 700;
  color: var(--dim);
  border: 1px solid #ffffff18;
  background: #0c0e0a;
}
#ios, #android, #mac, #engine, #terms, #agree { scroll-margin-top: 96px; }
#support { scroll-margin-top: 96px; }

.legal-banner {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 18px 22px 16px;
  background: rgba(12, 14, 10, .82);
  border: 1px solid rgba(212, 164, 74, .45);
  border-left: 3px solid var(--amber);
  border-radius: 16px;
}
.legal-banner-stamp {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--amber);
  margin-bottom: 10px;
}
.legal-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  max-width: none;
}
.legal-banner p b { color: var(--amber); font-weight: 700; }
.legal-banner-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--amber);
  font-size: 12px;
  letter-spacing: .16em;
}
.legal-agree {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--dim);
  max-width: 52ch;
}
.cta .legal-agree,
.depot-card .legal-agree {
  max-width: 52ch;
}
.legal-agree a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc { padding-top: 72px; }
.legal-lead {
  max-width: 72ch;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}
.legal-articles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.legal-articles li {
  padding: 22px 24px 20px;
  background: #10140e;
  border: 1px solid #ffffff12;
  border-radius: 16px;
}
.legal-articles h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.legal-articles p {
  margin: 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.8;
}
.legal-articles strong { color: var(--ink); font-weight: 700; }
.guide-steps { counter-reset: guide-step; }
.guide-steps > li { position: relative; padding-left: 72px; }
.guide-steps > li::before {
  counter-increment: guide-step;
  content: counter(guide-step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--steel);
  font-family: "Share Tech Mono", monospace;
  font-size: 14px;
  letter-spacing: .08em;
}
.file-list {
  margin: 12px 0;
  padding-left: 22px;
  color: var(--ink);
  font-family: "Share Tech Mono", monospace;
  font-size: 14px;
  line-height: 1.9;
}
.file-list code { color: var(--amber); }
.guide-success { margin-top: 28px; }
.guide-actions { margin-top: 28px; }
.legal-foot {
  margin: 28px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(212, 164, 74, .35);
  border-radius: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .depot { grid-template-columns: 1fr; }
  .support-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .g2m-split,
  .g2m-lib,
  .g2m-support,
  .g2m-home,
  .g2m-actions,
  .g2m-close,
  .g2m-dl,
  .g2m-dl-meta,
  .g2m-aside-ways {
    grid-template-columns: 1fr;
  }
  .g2m-support article,
  .g2m-support img { min-height: 200px; }
  .g2m-copy h3 { font-size: 26px; }
  .g2m-dl-packet { padding: 22px 20px 20px; }
  .g2m-dl-packet h3 { font-size: 32px; }
  .g2m-aside { padding: 22px 20px 20px; }
  .g2m-aside h3 { font-size: 26px; }
  .g2m-band {
    min-height: 100dvh;
    background-position: 28% center;
  }
  .depot { grid-template-columns: 1fr; gap: 16px; }
  .depot-card { padding: 0 20px 22px; }
  .depot-card h3 { font-size: 24px; }
  .support-card { gap: 28px; padding: 28px 20px 22px; }
  .support-copy h2 { font-size: clamp(44px, 14vw, 62px); }
  .support-payments { grid-template-columns: 1fr 1fr; }
  .support-qr-frame { min-height: 0; }
  .depot-plat { font-size: clamp(48px, 16vw, 64px); }
  .depot-force {
    margin: 0 -20px 16px;
    height: 150px;
    aspect-ratio: auto;
    max-height: none;
  }
  .page-hero.depot-hero .depot-force {
    height: 150px;
    aspect-ratio: auto;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .support-payments { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .support-card {
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 28px 20px 24px;
  }
  .support-copy h2 { max-width: 100%; overflow-wrap: anywhere; }
  html[lang="en"] .support-kofi { min-height: 0; padding: 30px 20px; }
}

@media (max-width: 430px) {
  .support-priority-list { grid-template-columns: 1fr; }
  .support-kofi h3 { font-size: 40px; }
  .support-kofi > p:not(.support-kofi-legal) { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .support-qr { transition: none; }
  .support-qr:hover { transform: none; }
}

.page-hero.wish-hero {
  background-image: url("../images/posters/navy.jpg");
  min-height: clamp(500px, 42.85vw, 620px);
  height: auto;
  max-height: none;
  padding: 132px 0 36px;
  align-items: flex-end;
}
.page-hero.wish-hero .wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 0;
  padding-bottom: 8px;
}
.page-hero.wish-hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  margin: 8px 0 12px;
}
.page-hero.wish-hero p { max-width: 54ch; }

@media (max-width: 860px) {
  .page-hero.wish-hero {
    min-height: 460px;
  }
}

.wish-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  position: sticky;
  top: 72px;
  z-index: 8;
  padding: 10px 0 12px;
  background: linear-gradient(180deg, #090b08 55%, #090b08cc 100%);
}
.wish-filters,
.wish-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wish-filters button,
.wish-sort button {
  border: 1px solid #ffffff18;
  background: #10140e;
  color: var(--dim);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .12em;
}
.wish-filters button.on,
.wish-sort button.on {
  background: var(--amber);
  color: #16130c;
  border-color: var(--amber);
}
.wish-hint {
  color: var(--dim);
  font-size: 13px;
  margin: 0 0 16px;
}
.wish-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: linear-gradient(180deg, #161b13 0%, #10140e 100%);
  border: 1px solid #ffffff12;
  border-radius: 18px;
  border-left: 2px solid var(--amber);
}
.wish-stamp {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 6px;
}
.wish-copy h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: .04em;
}
.wish-copy p {
  margin: 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.55;
}
.wish-actions { display: flex; gap: 8px; }
.wish-vote {
  min-width: 100px;
  border-radius: 16px;
  border: 1px solid #6e9aaa44;
  background: #0b1013;
  color: var(--steel);
  padding: 10px 14px 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-align: left;
}
.wish-vote[data-p="mac"] {
  border-color: #9a6bb044;
  color: #c59ad4;
  background: #100e14;
}
.wish-vote[data-p="android"] {
  border-color: #7d9e5544;
  color: #a6c878;
  background: #0e130d;
}
.wish-vote b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin-top: 2px;
  color: var(--ink);
}
.wish-vote.on { opacity: .5; cursor: default; }
.wish-vote:not(:disabled):hover { transform: translateY(-1px); }

@media (max-width: 860px) {
  .wish-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wish-actions { width: 100%; }
  .wish-vote { flex: 1; }
  .wish-bar { top: 58px; }
}

/* NukeHour Website V2 — product information layer */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 60;
  padding: 10px 14px;
  color: #16130c;
  background: var(--amber);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.nav.v2-nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 10px 8px 22px;
  border-radius: 4px;
  background: rgba(9, 11, 8, .94);
  border-color: rgba(212, 164, 74, .5);
  box-shadow: 0 14px 40px rgba(4, 5, 3, .45), inset 0 1px rgba(255, 255, 255, .05);
}
.nav.v2-nav::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(212, 164, 74, .12);
  pointer-events: none;
}
.nav.v2-nav .word {
  display: grid;
  flex: 0 0 auto;
  line-height: .86;
  font-size: 15px;
  letter-spacing: .18em;
}
.nav.v2-nav .nav-links {
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin-left: auto;
}
.nav.v2-nav .nav-links a,
.nav.v2-nav .nav-link-disabled {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  color: #b9b3a4;
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: .13em;
  white-space: nowrap;
}
.nav.v2-nav .nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav.v2-nav .nav-links a:hover,
.nav.v2-nav .nav-links a[aria-current="page"] { color: var(--ink); }
.nav.v2-nav .nav-links a:hover::after,
.nav.v2-nav .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav.v2-nav .nav-link-disabled { color: #66675f; cursor: not-allowed; }
.nav.v2-nav .nav-link-disabled small {
  position: absolute;
  top: -1px;
  right: 0;
  color: #8b713f;
  font-size: 7px;
  letter-spacing: .06em;
}
.nav.v2-nav .lang-toggle { width: 46px; height: 38px; border-radius: 2px; }

.v2-overline,
.section-command-head > div > span,
.about-statement > span {
  color: var(--amber);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.product-hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  padding: 168px 0 58px;
  overflow: hidden;
  background: #090b08;
}
.product-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/hero.jpg") 72% center / cover no-repeat;
  filter: saturate(.66) contrast(1.08);
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #090b08 0%, rgba(9, 11, 8, .96) 34%, rgba(9, 11, 8, .5) 69%, rgba(9, 11, 8, .72) 100%),
    linear-gradient(0deg, #090b08 0%, transparent 38%);
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
  gap: 8vw;
  align-items: end;
}
.product-hero-copy { max-width: 760px; }
.product-hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  color: #eee8db;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(70px, 9.4vw, 132px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .81;
  text-wrap: balance;
}
.product-lead {
  max-width: 38ch;
  margin: 0 0 13px;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.45;
}
.product-detail {
  max-width: 60ch;
  margin: 0;
  color: #aaa595;
  font-size: 15px;
  line-height: 1.8;
}
.product-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn-disabled {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  color: #77776d;
  border: 1px dashed #4b4d44;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  cursor: not-allowed;
}
.asset-disclaimer {
  max-width: 68ch;
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--amber);
  color: #8d897d;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  line-height: 1.7;
}
.product-readout {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(212, 164, 74, .42);
  background: rgba(7, 9, 6, .82);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .025);
}
.product-readout::before { content: ""; position: absolute; top: -1px; left: 18px; width: 82px; height: 3px; background: var(--amber); }
.product-readout > span { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 10px; letter-spacing: .2em; }
.product-readout > strong { display: block; margin: 18px 0 26px; font-family: "Big Shoulders Display", sans-serif; font-size: 28px; letter-spacing: .05em; line-height: 1; }
.product-readout dl { margin: 0; }
.product-readout dl div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-top: 1px solid #ffffff12; }
.product-readout dt { color: var(--dim); font-size: 11px; }
.product-readout dd { margin: 0; color: var(--ink); font-family: "Share Tech Mono", monospace; font-size: 11px; text-align: right; }
.platform-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #5b5b50;
  color: #c9c3b5;
  background: rgba(9, 11, 8, .62);
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
}
.product-platforms { margin-top: 62px; border-top: 1px solid rgba(212, 164, 74, .24); padding-top: 18px; }

.section-command-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid #31342c;
}
.section-command-head h2 { margin: 8px 0 0; font-size: clamp(44px, 6vw, 74px); }
.section-command-head p { margin: 8px 0 0; color: var(--dim); }
.section-command-head > a { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 12px; letter-spacing: .1em; }
.proof-strip { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.proof-strip span { padding: 8px 10px; border-left: 2px solid #6e9aaa; color: #b9c9cf; background: #101512; font-family: "Share Tech Mono", monospace; font-size: 10px; }

.gameplay-section { padding-top: 104px; background: #0d100c; }
.gameplay-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 14px;
}
.demo-card { position: relative; overflow: hidden; min-width: 0; background: #080a07; border: 1px solid #2d3129; }
.demo-card:first-child { grid-row: 1 / span 2; }
.demo-media { position: relative; display: block; width: 100%; height: 100%; min-height: 220px; padding: 0; overflow: hidden; border: 0; background: #090b08; }
.demo-card:first-child .demo-media { min-height: 474px; }
.demo-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.08); transition: transform .4s ease, filter .4s ease; }
.demo-card:hover img { transform: scale(1.025); filter: saturate(.78) contrast(1.05); }
.demo-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 7, 5, .94), transparent 56%); }
.demo-pending,
.demo-play { position: absolute; top: 18px; right: 18px; z-index: 2; padding: 8px 10px; color: var(--amber); border: 1px solid rgba(212, 164, 74, .6); background: rgba(8, 10, 7, .88); font-family: "Share Tech Mono", monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.demo-meta { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 3; pointer-events: none; }
.demo-meta span { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 9px; letter-spacing: .2em; }
.demo-meta h3 { margin: 5px 0 0; font-family: "Big Shoulders Display", sans-serif; font-size: clamp(24px, 3vw, 42px); letter-spacing: .03em; }
.demo-card iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.section-note { margin: 18px 0 0; color: #77796f; font-size: 12px; }

.how-section { background: #11140e; }
.section-command-head > strong { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 11px; letter-spacing: .12em; }
.how-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid #3b3d34; border-bottom: 1px solid #3b3d34; }
.how-grid li { min-height: 190px; padding: 28px 32px; border-left: 1px solid #3b3d34; }
.how-grid li:first-child { border-left: 0; }
.how-grid li > span { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 12px; }
.how-grid h3 { max-width: 14ch; margin: 48px 0 0; font-size: clamp(20px, 2vw, 28px); line-height: 1.25; text-wrap: balance; }

.status-section { background: url("../images/briefing.jpg") center / cover no-repeat fixed; }
.status-section::before { content: ""; position: absolute; inset: 0; background: rgba(8, 10, 7, .9); }
.status-section { position: relative; }
.status-layout { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; align-items: start; }
.status-layout h2 { margin-top: 12px; }
.status-layout p { max-width: 42ch; color: var(--dim); line-height: 1.8; }
.status-grid { border-top: 1px solid #4a4c42; }
.status-row { display: grid; grid-template-columns: minmax(150px, .7fr) 1fr; gap: 24px; align-items: center; min-height: 92px; border-bottom: 1px solid #34372f; }
.status-row > div { display: flex; align-items: center; gap: 14px; }
.status-row > span:last-child { color: #b1ac9f; font-family: "Share Tech Mono", monospace; font-size: 12px; text-align: right; }
.status-signal { width: 9px; height: 9px; background: var(--amber); box-shadow: 0 0 14px rgba(212, 164, 74, .55); }
.status-available .status-signal { background: #7ba36a; }
.status-development .status-signal { background: #c24c38; }

.updates-section { background: #090b08; }
.updates-list { border-top: 1px solid #34372f; }
.update-row { display: grid; grid-template-columns: 130px 1fr 42px; gap: 34px; align-items: center; min-height: 130px; border-bottom: 1px solid #34372f; }
.update-row time { color: #77796f; font-family: "Share Tech Mono", monospace; font-size: 11px; }
.update-row div > span { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.update-row h3 { margin: 7px 0 5px; font-size: 22px; }
.update-row p { margin: 0; color: var(--dim); font-size: 13px; }
.update-row > a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #4b4e45; color: var(--amber); }

.legacy-hero h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(64px, 12vw, 148px);
  line-height: .82;
  margin: 10px 0 16px;
  letter-spacing: .04em;
  font-weight: 800;
}

.v2-page main { min-height: 70vh; }
.v2-page-hero { position: relative; min-height: 500px; display: flex; align-items: end; padding: 160px 0 72px; background: #0d100c; overflow: hidden; }
.v2-page-hero::before { content: ""; position: absolute; inset: 0; opacity: .52; filter: saturate(.55); }
.projects-v2-hero::before { background: linear-gradient(90deg, #090b08 15%, transparent), url("../images/silo.jpg") 70% center / cover; }
.downloads-v2-hero::before { background: linear-gradient(90deg, #090b08 15%, transparent), url("../images/arsenal.jpg") center / cover; }
.about-v2-hero::before { background: linear-gradient(90deg, #090b08 15%, transparent), url("../images/briefing.jpg") center / cover; }
.legal-v2-hero::before { background: linear-gradient(90deg, #090b08 15%, transparent), url("../images/battle.jpg") center / cover; }
.v2-page-hero .wrap { position: relative; z-index: 1; }
.v2-page-hero h1 { max-width: 940px; margin: 18px 0 12px; font-family: "Big Shoulders Display", sans-serif; font-size: clamp(64px, 9vw, 118px); line-height: .84; letter-spacing: -.015em; }
.v2-page-hero p { max-width: 62ch; margin: 0; color: #bbb5a7; font-size: 17px; line-height: 1.7; }
.v2-page-hero .platform-strip { margin-top: 28px; }

.project-ledger { padding-top: 78px; }
.project-stack { display: grid; gap: 18px; }
.project-entry { display: grid; grid-template-columns: 52px minmax(0, .92fr) minmax(300px, 1.08fr); min-height: 390px; border-top: 1px solid #45483e; border-bottom: 1px solid #2e312a; background: #10130e; }
.project-index { padding: 28px 12px; color: var(--amber); border-right: 1px solid #34372f; font-family: "Share Tech Mono", monospace; font-size: 12px; text-align: center; }
.project-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 42px 40px; }
.project-entry > img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; filter: saturate(.56) contrast(1.06); }
.project-status { display: flex; align-items: center; gap: 9px; color: #d5ab5d; font-family: "Share Tech Mono", monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.project-status span { width: 7px; height: 7px; background: var(--amber); }
.project-status.is-available { color: #9cb88b; }
.project-status.is-available span { background: #7ba36a; }
.project-status.is-planned { color: #7d8076; }
.project-status.is-planned span { background: #666a61; }
.project-copy h2 { margin: 14px 0; font-size: clamp(42px, 5vw, 68px); }
.project-copy p { max-width: 54ch; margin: 0 0 22px; color: var(--dim); line-height: 1.75; }
.project-copy .project-actions { margin-top: auto; }
.tool-reservations { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tool-reservations span { padding: 8px 10px; border: 1px dashed #4b4d44; color: #77796f; font-family: "Share Tech Mono", monospace; font-size: 9px; }
.project-blueprint { display: grid; place-content: center; border-left: 1px solid #34372f; background: repeating-linear-gradient(0deg, transparent 0 23px, rgba(212, 164, 74, .06) 23px 24px), repeating-linear-gradient(90deg, transparent 0 23px, rgba(212, 164, 74, .06) 23px 24px); text-align: center; }
.project-blueprint span { color: #6b6e65; font-family: "Share Tech Mono", monospace; font-size: 10px; letter-spacing: .2em; }
.project-blueprint strong { margin-top: 10px; color: #8e8d80; font-family: "Big Shoulders Display", sans-serif; font-size: 50px; letter-spacing: .08em; }

.about-brief { padding-top: 84px; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; }
.about-statement h2 { margin: 18px 0; font-size: clamp(50px, 6vw, 80px); }
.about-statement p { max-width: 45ch; color: var(--dim); font-size: 17px; line-height: 1.8; }
.about-statement .platform-strip { margin-top: 28px; }
.about-constraints { border-top: 1px solid #44473e; }
.about-constraints article { padding: 28px 0 30px; border-bottom: 1px solid #34372f; }
.about-constraints article > span { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 9px; letter-spacing: .18em; }
.about-constraints h3 { max-width: 46ch; margin: 10px 0 0; color: #c6c0b4; font-size: 18px; font-weight: 500; line-height: 1.6; }
.about-paths { padding-top: 40px; background: #11140e; }
.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: #3b3e35; border: 1px solid #3b3e35; }
.path-grid a { display: grid; grid-template-columns: 40px 1fr 30px; gap: 18px; align-items: center; min-height: 110px; padding: 24px; background: #0d100c; transition: background .2s ease; }
.path-grid a:hover { background: #151910; }
.path-grid span { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 11px; }
.path-grid strong { font-size: 20px; }
.path-grid i { color: var(--amber); font-style: normal; }

.legal-v2 { padding-top: 72px; }
.legal-scope-list { border-top: 1px solid #45483e; }
.legal-scope-list article { display: grid; grid-template-columns: 72px minmax(0, 1fr); border-bottom: 1px solid #34372f; }
.legal-index { padding: 36px 0; color: var(--amber); border-right: 1px solid #34372f; font-family: "Share Tech Mono", monospace; font-size: 11px; }
.legal-scope-list article > div:last-child { padding: 34px 42px 38px; }
.legal-scope-list article span { color: #888a80; font-size: 12px; }
.legal-scope-list h2 { margin: 7px 0 16px; font-size: clamp(32px, 4vw, 50px); }
.legal-scope-list p { max-width: 78ch; margin: 0; color: #aaa698; line-height: 1.8; }
.legal-scope-list a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

.v2-downloads { padding-top: 70px; overflow-x: clip; }
.depot-card[data-platform] { min-height: 0; padding: 32px; border-radius: 4px; }
.depot-card[data-platform] h2 { margin: 18px 0 10px; font-size: 36px; }
.depot-card[data-platform] > p { min-height: 68px; margin: 0; color: var(--dim); font-size: 13px; line-height: 1.65; }
.platform-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.platform-code { color: #777a70; font-family: "Share Tech Mono", monospace; font-size: 10px; letter-spacing: .16em; }
.status-flag { padding: 7px 9px; border: 1px solid #5b5d53; color: #bbb6a9; font-family: "Share Tech Mono", monospace; font-size: 9px; line-height: 1.25; text-align: right; }
.status-review { border-color: rgba(212, 164, 74, .6); color: var(--amber); }
.status-development { border-color: rgba(194, 76, 56, .6); color: #d78979; }
.status-available { border-color: rgba(123, 163, 106, .65); color: #a6c596; }
.platform-facts { margin: 20px 0 0; border-top: 1px solid #34372f; }
.platform-facts div { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid #292c26; }
.platform-facts dt { color: #74776e; font-family: "Share Tech Mono", monospace; font-size: 10px; }
.platform-facts dd { margin: 0; color: #c5c0b3; font-size: 11px; line-height: 1.45; }
.depot-card[data-platform] .hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  width: 100%;
  gap: 12px;
  padding-top: 28px;
}
.depot-card[data-platform] .hero-actions > a,
.depot-card[data-platform] .hero-actions > button {
  min-width: 0;
  min-height: 60px;
  padding: 14px 12px;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.depot-card[data-platform] > .legal-agree {
  min-height: 38px;
  margin: 22px 0 0;
  text-align: center;
}
.development-lock { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 22px; color: #8a8c83; font-family: "Share Tech Mono", monospace; font-size: 11px; }
.development-lock span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #51534c; }

.foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
  width: 100%;
  margin: 0;
  padding: 46px max(24px, calc((100vw - 1200px) / 2));
  border-top: 1px solid rgba(212, 164, 74, .35);
  background: #080a07;
}
.foot-brand { display: grid; gap: 6px; }
.foot-brand strong { color: var(--amber); font-family: "Big Shoulders Display", sans-serif; font-size: 28px; letter-spacing: .14em; }
.foot-brand span { color: #77796f; font-family: "Share Tech Mono", monospace; font-size: 10px; letter-spacing: .12em; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.foot-links a,
.foot-disabled { color: #aba699; font-size: 12px; }
.foot-disabled { color: #62645d; }
.foot-legal { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid #292c26; color: #66685f; font-size: 10px; }

.error-main { min-height: 78vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding-top: 90px; }
.error-code { color: rgba(212, 164, 74, .14); font-family: "Big Shoulders Display", sans-serif; font-size: clamp(160px, 32vw, 440px); font-weight: 800; line-height: .6; }
.error-main h1 { margin: 30px 0 10px; font-family: "Big Shoulders Display", sans-serif; font-size: clamp(54px, 8vw, 98px); }
.error-main p { color: var(--dim); }

@media (max-width: 1100px) {
  .product-hero { min-height: 760px; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-readout { max-width: 560px; }
  .project-entry { grid-template-columns: 48px 1fr; }
  .project-entry > img,
  .project-blueprint { grid-column: 2; min-height: 300px; border-top: 1px solid #34372f; border-left: 0; }
  .depot-card[data-platform] { padding: 32px; }
}

@media (max-width: 860px) {
  .nav.v2-nav { top: 10px; width: calc(100% - 24px); min-height: 56px; padding: 6px 8px 6px 16px; }
  .nav.v2-nav .burger { display: block; z-index: 3; }
  .nav.v2-nav .nav-links { position: fixed; top: 68px; right: 0; left: 0; display: none; padding: 18px; border: 1px solid rgba(212, 164, 74, .4); background: #090b08f7; }
  .nav.v2-nav.open .nav-links { display: grid; }
  .nav.v2-nav .nav-links a,
  .nav.v2-nav .nav-link-disabled { min-height: 48px; }
  .nav.v2-nav .lang-toggle { margin-left: auto; }
  .product-hero { min-height: 0; padding: 126px 0 44px; }
  .product-hero h1 { font-size: clamp(62px, 16vw, 96px); }
  .product-readout { display: none; }
  .product-platforms { margin-top: 40px; }
  .gameplay-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .demo-card:first-child { grid-row: auto; }
  .demo-card:first-child .demo-media,
  .demo-media { min-height: min(58vw, 360px); }
  .section-command-head { align-items: flex-start; flex-direction: column; }
  .proof-strip { justify-content: flex-start; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid li { min-height: 130px; border-top: 1px solid #3b3d34; border-left: 0; }
  .how-grid li:first-child { border-top: 0; }
  .how-grid h3 { margin-top: 28px; }
  .status-section { background-attachment: scroll; }
  .status-layout,
  .about-grid { grid-template-columns: 1fr; gap: 54px; }
  .update-row { grid-template-columns: 96px 1fr 38px; gap: 18px; }
  .v2-page-hero { min-height: 420px; padding-top: 130px; }
  .project-copy { padding: 34px 26px; }
  .path-grid { grid-template-columns: 1fr; }
  .depot-card[data-platform] { padding: 28px 22px 26px; }
  .foot { grid-template-columns: 1fr; }
  .foot-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .wrap,
  .hero-inner { width: min(100% - 32px, 1200px); }
  .product-hero h1 { font-size: clamp(58px, 18.5vw, 78px); }
  .product-actions > *,
  .project-actions > * { width: 100%; justify-content: space-between; }
  .product-platforms { gap: 6px; }
  .product-platforms span { flex: 1 1 auto; justify-content: center; }
  .section { padding-top: 82px; padding-bottom: 88px; }
  .update-row { grid-template-columns: 1fr 34px; padding: 24px 0; }
  .update-row time { grid-column: 1 / -1; }
  .status-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .status-row > span:last-child { text-align: left; }
  .project-entry { grid-template-columns: 36px 1fr; }
  .project-index { padding: 24px 6px; }
  .project-copy { padding: 28px 18px; }
  .project-entry > img,
  .project-blueprint { min-height: 220px; }
  .project-copy h2 { font-size: 42px; }
  .legal-scope-list article { grid-template-columns: 42px 1fr; }
  .legal-scope-list article > div:last-child { padding: 28px 18px 32px; }
  .platform-card-head { align-items: flex-start; }
  .platform-facts div { grid-template-columns: 1fr; gap: 5px; }
  .depot-card[data-platform] .hero-actions { grid-template-columns: 1fr; }
  .support-payments { gap: 32px; }
  .foot { padding: 38px 20px; }
  .foot-legal { flex-direction: column; }
}

/* Supporter system: restrained community recognition, not payment gamification. */
.support-claim {
  grid-column: 1 / -1;
  min-width: 0;
  border-top: 1px solid rgba(212, 164, 74, .28);
  padding-top: 22px;
}
.support-claim summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.support-claim summary::-webkit-details-marker { display: none; }
.support-claim-mark { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--amber); color: var(--amber); font-family: "Share Tech Mono", monospace; }
.support-claim[open] .support-claim-mark { background: var(--amber); color: #11140e; transform: rotate(45deg); }
.support-claim-form { max-width: 860px; margin-top: 22px; }
.support-claim-form > p { max-width: 68ch; color: var(--dim); font-size: 12px; line-height: 1.7; }
.support-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 24px; margin: 22px 0; }
.support-form-grid label { display: grid; min-width: 0; gap: 8px; color: #bbb5a7; font-size: 12px; }
.support-form-grid input[type="text"],
.support-form-grid input[type="password"],
.support-form-grid input[type="number"],
.support-form-grid input[type="datetime-local"],
.support-form-grid select,
.support-form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #45483e;
  border-radius: 4px;
  padding: 12px 13px;
  background: #090b08;
  color: var(--ink);
  font: inherit;
}
.support-form-grid input:focus-visible,
.support-form-grid select:focus-visible,
.support-form-grid textarea:focus-visible { border-color: var(--amber); outline: 2px solid rgba(212, 164, 74, .3); outline-offset: 2px; }
.support-form-message { grid-column: 1 / -1; }
.support-form-check { display: flex !important; grid-column: 1 / -1; grid-template-columns: none; align-items: center; gap: 10px !important; }
.support-form-check input { width: 18px; height: 18px; accent-color: var(--amber); }
.support-form-status { min-height: 22px; margin: 14px 0 0; color: #b8c6a9 !important; white-space: pre-line; }
.supporters-link { display: inline-flex; gap: 10px; margin-top: 22px; color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 12px; }

.supporters-hero::before { background: linear-gradient(90deg, #090b08 15%, rgba(9, 11, 8, .34)), url("../images/posters/base.jpg") center 52% / cover; }
.supporters-hero small { display: block; margin-top: 18px; color: #8d897d; font-size: 12px; }
.founding-section { padding-top: 88px; background: #0d100c; }
.supporters-section-head { max-width: 700px; margin-bottom: 34px; }
.supporters-section-head h2 { margin-bottom: 12px; }
.supporters-section-head p { margin: 0; color: var(--dim); line-height: 1.75; }
.founding-supporters-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid #35382f; background: #35382f; }
.founding-supporters-list > .supporters-empty:only-child { grid-column: 1 / -1; }
.supporters-priority-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 28px; align-items: start; }
.supporters-panel { min-width: 0; padding: 34px; border: 1px solid #35382f; border-radius: 4px; background: #10130e; }
.supporters-panel h2 { font-size: clamp(38px, 5vw, 58px); }
.supporters-list { display: grid; gap: 1px; background: #30332b; }
.supporter-item { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; align-items: center; min-height: 78px; padding: 15px 18px; background: #0b0e0a; }
.supporter-avatar { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #56584e; color: var(--amber); background: #15180f; font-family: "Share Tech Mono", monospace; font-size: 12px; }
.supporter-name { overflow: hidden; color: var(--ink); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.supporter-meta { margin-top: 4px; color: var(--dim); font-size: 11px; }
.supporter-amount { color: #c8c2b4; font-family: "Share Tech Mono", monospace; font-size: 12px; text-align: right; }
.supporter-amount.is-unverified { color: #85867e; }
.supporter-verification { display: inline-flex; width: fit-content; margin-top: 7px; border: 1px solid #55584e; padding: 4px 7px; color: #96988d; font-family: "Share Tech Mono", monospace; font-size: 9px; letter-spacing: .06em; }
.supporter-verification.is-verified { border-color: rgba(212, 164, 74, .45); color: var(--amber); }
.supporter-badge { display: inline-flex; width: fit-content; margin-top: 7px; border: 1px solid rgba(212, 164, 74, .45); padding: 4px 7px; color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 9px; letter-spacing: .08em; }
.supporters-empty { margin: 0; padding: 30px; border-left: 2px solid #56584e; color: #8e8d80; background: #0b0e0a; line-height: 1.7; }
.supporters-cta { padding-top: 82px; background: #0b0e0a; }
.supporters-cta .wrap { max-width: 760px; text-align: center; }
.supporters-cta p { color: var(--dim); }
.supporters-cta .btn-solid { margin-top: 18px; }

.supporters-preview-section { background: #11140e; }
.supporters-preview-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); gap: 8vw; align-items: center; }
.supporters-preview-copy p { max-width: 45ch; color: var(--dim); line-height: 1.75; }
.supporters-preview-copy .btn-ghost { margin-top: 18px; }
.supporters-preview-board { min-width: 0; border-left: 1px solid #3d4037; padding-left: 34px; }
.supporters-preview-board h3 { margin: 0 0 20px; font-size: 28px; }
.supporters-preview-board ol { margin: 0; padding: 0; list-style: none; }

@media (max-width: 860px) {
  .support-form-grid,
  .founding-supporters-list,
  .supporters-priority-grid,
  .supporters-preview-layout { grid-template-columns: 1fr; }
  .supporters-preview-board { border-top: 1px solid #3d4037; border-left: 0; padding-top: 30px; padding-left: 0; }
}

@media (max-width: 560px) {
  .supporters-panel { padding: 24px 18px; }
  .supporter-item { grid-template-columns: auto minmax(0, 1fr); }
  .supporter-amount { grid-column: 2; text-align: left; }
}

/* Open-source, legal, and release information system. */
.open-source-hero::before,
.licenses-hero::before,
.source-hero::before,
.releases-hero::before { background: linear-gradient(90deg, #090b08 16%, rgba(9, 11, 8, .46)), url("../images/arsenal.jpg") center 44% / cover; }
.info-lead { max-width: 820px; }
.info-lead > span,
.license-list article header > span,
.publication-state > span { color: var(--amber); font: 11px "Share Tech Mono", monospace; letter-spacing: .14em; }
.info-lead h2 { margin: 14px 0 18px; font-size: clamp(42px, 6vw, 72px); }
.info-lead p,
.info-copy p { color: #b3afa2; font-size: 16px; line-height: 1.85; }
.upstream-section,
.publication-section,
.home-open-source { background: #10130e; }
.upstream-layout,
.publication-layout,
.home-open-source-layout { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(44px, 8vw, 120px); align-items: start; }
.upstream-layout h2,
.publication-layout h2,
.home-open-source-layout h2 { margin: 12px 0 0; font-size: clamp(48px, 7vw, 86px); }
.info-actions,
.inline-links,
.release-actions { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.info-actions a,
.inline-links a,
.release-actions > a:not(.btn-solid) { color: var(--amber); font: 12px "Share Tech Mono", monospace; text-decoration: none; }
.info-actions a:hover,
.inline-links a:hover,
.release-actions > a:not(.btn-solid):hover { color: var(--ink); }
.source-callout { background: #0b0e0a; }
.source-callout-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; border-left: 3px solid var(--amber); padding: 12px 0 12px 34px; }
.source-callout-inner h2 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 56px); }
.source-callout-inner p { max-width: 68ch; margin: 0; color: var(--dim); line-height: 1.75; }
.license-list { display: grid; gap: 1px; border: 1px solid #34372f; background: #34372f; }
.license-list article { padding: clamp(28px, 5vw, 54px); background: #0d100c; }
.license-list article header { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 30px; align-items: end; }
.license-list article header > span { grid-column: 1 / -1; }
.license-list article h2 { margin: 0; font-size: clamp(40px, 6vw, 66px); }
.license-list article header > strong { color: var(--amber); font: 14px "Share Tech Mono", monospace; }
.license-list dl,
.release-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 30px 0 0; background: #30332b; }
.license-list dl div,
.release-facts div { min-width: 0; padding: 18px; background: #10130e; }
.license-list dt,
.release-facts dt { color: #777a70; font: 10px "Share Tech Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.license-list dd,
.release-facts dd { margin: 8px 0 0; color: #c0bcaf; line-height: 1.55; }
.publication-state { border: 1px solid #4a4d42; padding: 30px; }
.publication-state strong { display: block; margin: 14px 0; color: var(--ink); font: 50px/1 "Big Shoulders Display", sans-serif; }
.publication-state p { margin: 0; color: #9b8456; font: 10px "Share Tech Mono", monospace; letter-spacing: .1em; }
.status-ledger { border-top: 1px solid #3a3d34; }
.status-ledger article { display: grid; grid-template-columns: 70px 1fr; border-bottom: 1px solid #3a3d34; }
.status-ledger article > span { padding: 30px 12px; color: var(--amber); font: 12px "Share Tech Mono", monospace; }
.status-ledger article > div { padding: 28px 34px; border-left: 1px solid #3a3d34; }
.status-ledger h2 { margin: 0 0 8px; font-size: 34px; }
.status-ledger p { margin: 0; color: var(--dim); line-height: 1.7; }
.release-advisory { display: grid; grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr) auto; gap: 26px; align-items: center; margin-bottom: 34px; border-left: 3px solid var(--amber); padding: 18px 24px; background: #14170f; }
.release-advisory strong { color: #d8c28b; font-size: 15px; }
.release-advisory p { margin: 0; color: var(--dim); line-height: 1.65; }
.release-advisory a { color: var(--amber); white-space: nowrap; }
.release-list { display: grid; gap: 24px; }
.release-record { border: 1px solid #393c33; padding: clamp(24px, 4vw, 42px); background: #0c0f0b; }
.release-record header { display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.release-record header span { color: var(--amber); font: 11px "Share Tech Mono", monospace; letter-spacing: .12em; }
.release-record h3 { margin: 6px 0 0; font-size: clamp(38px, 5vw, 58px); }
.release-state { border: 1px solid #8e7647; padding: 8px 10px; color: #d4b875; font: 10px "Share Tech Mono", monospace; letter-spacing: .09em; }
.release-state.is-mapped { border-color: #647d52; color: #a8c58d; }
.release-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.release-facts .release-source,
.release-facts .release-hash { grid-column: span 3; }
.release-hash code { color: #d6d0c1; font: 11px/1.7 "Share Tech Mono", monospace; overflow-wrap: anywhere; }
.game-files-note { background: #10130e; }
.legal-scope-list .inline-links { margin-top: 18px; }
.support-scope-en { font-size: 12px; opacity: .72; }
.foot { grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr); align-items: start; }
.foot-directory { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.foot-directory > div { display: grid; align-content: start; gap: 10px; }
.foot-directory strong { margin-bottom: 5px; color: #6f7169; font: 10px "Share Tech Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.foot-directory a { color: #b6b1a4; font-size: 12px; }
.foot-directory a:hover { color: var(--amber); }

@media (max-width: 860px) {
  .upstream-layout,
  .publication-layout,
  .home-open-source-layout { grid-template-columns: 1fr; gap: 34px; }
  .source-callout-inner { align-items: flex-start; flex-direction: column; }
  .release-advisory { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .foot-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .license-list article header { grid-template-columns: 1fr; }
  .license-list dl,
  .release-facts { grid-template-columns: 1fr; }
  .release-facts .release-source,
  .release-facts .release-hash { grid-column: auto; }
  .release-record header { flex-direction: column; }
  .release-actions > * { width: 100%; justify-content: space-between; }
  .foot-directory { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .support-claim summary { scroll-behavior: auto; }
}

/* Private supporter verification workbench. */
.support-admin { min-height: 100dvh; margin: 0; background: #090b08; color: var(--ink); font-family: "Noto Sans SC", sans-serif; }
.support-admin-nav { position: relative; z-index: 2; display: flex; min-height: 72px; align-items: center; justify-content: space-between; border-bottom: 1px solid #35382f; padding: 0 4vw; background: rgba(9, 11, 8, .96); }
.support-admin-nav .word { color: var(--amber); font-family: "Big Shoulders Display", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: .08em; }
.support-admin-nav > a:last-child { color: #aaa99f; font: 11px "Share Tech Mono", monospace; }
.support-admin-main { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 70px 0 100px; }
.support-admin-heading { max-width: 760px; }
.support-admin-heading > p { margin: 0 0 14px; color: var(--amber); font: 11px "Share Tech Mono", monospace; letter-spacing: .18em; }
.support-admin-heading h1 { margin: 0; font-size: clamp(52px, 8vw, 92px); }
.support-admin-heading > span { display: block; max-width: 64ch; margin-top: 18px; color: #a4a399; line-height: 1.7; }
.support-admin-auth { display: grid; grid-template-columns: minmax(240px, 480px) auto; gap: 12px; align-items: end; margin: 54px 0 70px; }
.support-admin-auth label { display: grid; gap: 8px; color: #bbb5a7; font-size: 12px; }
.support-admin-auth input { min-width: 0; border: 1px solid #45483e; border-radius: 4px; padding: 12px 13px; background: #0d100c; color: var(--ink); font: inherit; }
.support-admin-auth input:focus-visible { border-color: var(--amber); outline: 2px solid rgba(212, 164, 74, .3); outline-offset: 2px; }
.support-admin-auth p { grid-column: 1 / -1; min-height: 20px; margin: 0; color: #85867e; font-size: 11px; }
.support-admin-queue { border-top: 1px solid #35382f; padding-top: 42px; }
.support-admin-queue-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.support-admin-queue-head h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); }
.support-admin-queue-head p { margin: 8px 0 0; color: #85867e; font-size: 12px; }
.support-admin-list { display: grid; gap: 14px; }
.support-admin-claim { border: 1px solid #35382f; border-radius: 4px; padding: 26px; background: #10130e; }
.support-admin-claim-title { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.support-admin-claim-title h3 { margin: 0; color: var(--ink); font-size: 22px; }
.support-admin-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 24px 0 0; }
.support-admin-facts div { min-width: 0; }
.support-admin-facts dt { color: #777a70; font: 9px "Share Tech Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.support-admin-facts dd { overflow-wrap: anywhere; margin: 6px 0 0; color: #c6c2b7; font-size: 12px; }
.support-admin-message, .support-admin-warning { margin: 22px 0 0; border-left: 2px solid #55584e; padding: 10px 14px; color: #aaa99f; background: #0b0e0a; font-size: 12px; line-height: 1.65; }
.support-admin-warning { border-left-color: var(--amber); color: #c9b98f; }
.support-admin-actions { display: flex; gap: 12px; margin-top: 24px; }
.support-admin-dialog { width: min(720px, calc(100% - 32px)); border: 1px solid #4c4f44; border-radius: 4px; padding: 34px; background: #10130e; color: var(--ink); }
.support-admin-dialog::backdrop { background: rgba(3, 4, 3, .82); }
.support-admin-dialog h2 { margin: 0; font-size: 42px; }
.support-admin-dialog > form > p { color: #99998f; line-height: 1.65; }
.support-admin-dialog-close { position: absolute; top: 12px; right: 12px; }
.support-admin-dialog-close button { border: 1px solid #4c4f44; width: 38px; height: 38px; background: #090b08; color: #bdb8aa; cursor: pointer; }
.support-admin-dialog [data-verify-status] { min-height: 20px; color: #c9b98f; font-size: 12px; }

.testflight-apply-button { color: #78c8d6; border-color: rgba(120, 200, 214, .45); }
.testflight-dialog { width: min(780px, calc(100% - 32px)); max-height: min(900px, calc(100dvh - 32px)); overflow: auto; border: 1px solid #46656b; border-top: 3px solid #78c8d6; border-radius: 0; padding: 0; background: #0b100f; color: var(--ink); box-shadow: 0 30px 100px rgba(0, 0, 0, .62); }
.testflight-dialog::backdrop { background: rgba(2, 5, 5, .86); backdrop-filter: blur(5px); }
.testflight-form > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 28px 30px 24px; border-bottom: 1px solid rgba(120, 200, 214, .22); }
.testflight-form > header span { color: #78c8d6; font-family: "Share Tech Mono", monospace; font-size: 11px; letter-spacing: .16em; }
.testflight-form > header h2 { margin: 6px 0 0; font-size: clamp(32px, 6vw, 52px); line-height: 1; }
.testflight-close { flex: 0 0 40px; width: 40px; height: 40px; border: 1px solid #405154; background: transparent; color: var(--ink); font-size: 25px; cursor: pointer; }
.testflight-capacity { margin: 24px 30px 0; padding: 16px 18px; border-left: 3px solid var(--amber); background: rgba(221, 177, 69, .07); }
.testflight-capacity strong { color: var(--amber); font-family: "Share Tech Mono", monospace; font-size: 12px; letter-spacing: .12em; }
.testflight-capacity p { margin: 6px 0 0; color: #c6c4b9; font-size: 13px; line-height: 1.7; }
.testflight-capacity .testflight-apple-service { margin-top: 10px; color: #9fa9a4; }
.testflight-apple-service a { margin-left: .35em; color: #8bd7e3; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.testflight-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 25px 30px 16px; }
.testflight-fields [hidden] { display: none !important; }
.testflight-fields label:not(.testflight-check) { display: grid; gap: 8px; }
.testflight-fields label > span { color: #b7bbb4; font-family: "Share Tech Mono", monospace; font-size: 11px; letter-spacing: .08em; }
.testflight-fields input,.testflight-fields select { width: 100%; min-height: 46px; border: 1px solid #35413d; border-radius: 0; padding: 10px 12px; background: #080c0a; color: var(--ink); }
.testflight-fields input:focus,.testflight-fields select:focus { border-color: #78c8d6; outline: 1px solid #78c8d6; }
.testflight-fields small { color: var(--dim); font-size: 10px; line-height: 1.5; }
.testflight-wide { grid-column: 1 / -1; }
.testflight-check { display: flex; align-items: flex-start; gap: 10px; padding: 2px 0; }
.testflight-check input { width: 18px; min-height: 18px; margin: 1px 0 0; accent-color: #78c8d6; }
.testflight-check span { font-family: inherit !important; font-size: 13px !important; letter-spacing: 0 !important; }
.testflight-privacy { margin: 0 30px; color: var(--dim); font-size: 11px; line-height: 1.7; }
.testflight-form > footer { display: flex; justify-content: flex-end; gap: 12px; padding: 20px 30px; }
.testflight-form > footer button { min-width: 130px; }
.testflight-status { min-height: 22px; margin: 0; padding: 0 30px 26px; color: #8ad2df; font-size: 12px; line-height: 1.6; }

@media (max-width: 620px) {
  .testflight-dialog { width: calc(100% - 18px); max-height: calc(100dvh - 18px); }
  .testflight-form > header { padding: 22px 18px 18px; }
  .testflight-capacity { margin: 18px 18px 0; }
  .testflight-fields { grid-template-columns: 1fr; padding: 20px 18px 14px; }
  .testflight-wide { grid-column: auto; }
  .testflight-privacy { margin: 0 18px; }
  .testflight-form > footer { padding: 18px; }
  .testflight-form > footer button { min-width: 0; flex: 1; }
  .testflight-status { padding: 0 18px 22px; }
}

@media (max-width: 860px) {
  .support-admin-main { width: min(100% - 32px, 680px); padding-top: 48px; }
  .support-admin-auth, .support-admin-facts { grid-template-columns: 1fr; }
  .support-admin-auth .btn-solid { width: 100%; }
  .support-admin-queue-head { align-items: stretch; flex-direction: column; }
  .support-admin-queue-head .btn-ghost { width: 100%; }
}

@media (max-width: 560px) {
  .support-admin-nav { padding: 0 18px; }
  .support-admin-heading h1 { font-size: 48px; }
  .support-admin-claim { padding: 20px 16px; }
  .support-admin-claim-title { align-items: flex-start; flex-direction: column; }
  .support-admin-actions { flex-direction: column; }
  .support-admin-actions button { width: 100%; }
  .support-admin-dialog { padding: 28px 18px 20px; }
}

/* Engineering blog: an editorial extension of the existing command interface. */
.blog-index-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 72px;
  background: #090b08;
}
.blog-index-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/silo.jpg") 68% center / cover no-repeat;
  filter: saturate(.48) contrast(1.12);
}
.blog-index-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #090b08 0%, rgba(9, 11, 8, .94) 48%, rgba(9, 11, 8, .48) 100%), linear-gradient(0deg, #090b08 0%, transparent 42%);
}
.blog-index-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 72px; align-items: end; }
.blog-index-hero h1 { max-width: 780px; margin: 18px 0 14px; font-size: clamp(74px, 11vw, 144px); line-height: .82; }
.blog-index-hero p { max-width: 48ch; margin: 0; color: #bbb5a7; font-size: 17px; line-height: 1.7; }
.blog-index-signal { border-left: 1px solid rgba(212, 164, 74, .54); padding: 20px 0 18px 26px; }
.blog-index-signal span { color: #85867d; font: 10px "Share Tech Mono", monospace; letter-spacing: .18em; }
.blog-index-signal strong { display: block; margin-top: 18px; color: var(--amber); font: 800 38px/.88 "Big Shoulders Display", sans-serif; letter-spacing: .05em; }

.blog-feed { padding-top: 76px; }
.blog-feed-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; border-bottom: 1px solid #45483e; padding-bottom: 20px; }
.blog-feed-heading h2 { margin: 0; font-size: clamp(44px, 6vw, 68px); }
.blog-feed-heading span { color: #777a70; font: 10px "Share Tech Mono", monospace; letter-spacing: .18em; }
.blog-feature { display: grid; grid-template-columns: minmax(360px, 1.04fr) minmax(0, .96fr); min-height: 520px; border-bottom: 1px solid #34372f; background: #0d100c; }
.blog-feature + .blog-feature { margin-top: 32px; }
.blog-feature-media { position: relative; min-height: 520px; overflow: hidden; background: #11140f; }
.blog-feature-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(212, 164, 74, .16); pointer-events: none; }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) contrast(1.08); transition: transform .35s ease, filter .35s ease; }
.blog-feature-media:hover img { transform: scale(1.015); filter: saturate(.78) contrast(1.08); }
.blog-feature-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(34px, 5vw, 64px); }
.blog-article-meta { display: flex; flex-wrap: wrap; justify-content: space-between; width: 100%; gap: 12px; color: var(--amber); font: 10px "Share Tech Mono", monospace; letter-spacing: .13em; }
.blog-article-meta time { color: #777a70; }
.blog-feature h3 { max-width: 690px; margin: 30px 0 14px; font-size: clamp(48px, 6vw, 76px); line-height: .92; }
.blog-feature h3 a:hover { color: var(--amber); }
.blog-feature-subtitle { margin: 0 0 24px; color: #d0cbbb; font-size: 17px; font-weight: 600; line-height: 1.55; }
.blog-feature-copy > p:not(.blog-feature-subtitle) { max-width: 58ch; margin: 0; color: #99998f; line-height: 1.75; }
.blog-topic-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.blog-topic-row span { border: 1px solid #44473e; padding: 7px 9px; color: #96978d; font: 9px "Share Tech Mono", monospace; letter-spacing: .11em; }
.blog-feature-actions { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; margin-top: auto; padding-top: 28px; }
.blog-feature-actions > span { color: #777a70; font: 10px "Share Tech Mono", monospace; }

.article-hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 144px 0 68px;
  background: #090b08;
}
.article-hero-media { position: absolute; inset: 0; z-index: -2; background: url("../images/hero.jpg") 68% center / cover no-repeat; filter: saturate(.45) contrast(1.12); }
.renderer-article-page .article-hero-media { background-image: url("../images/battle.jpg"); background-position: 58% center; }
.article-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #090b08 0%, rgba(9, 11, 8, .97) 45%, rgba(9, 11, 8, .52) 100%), linear-gradient(0deg, #090b08 0%, transparent 55%); }
.article-hero-inner { max-width: 1200px; }
.article-back { display: inline-block; margin-bottom: 40px; color: #aaa698; font: 11px "Share Tech Mono", monospace; }
.article-back:hover { color: var(--amber); }
.article-series { color: var(--amber); font: 11px "Share Tech Mono", monospace; letter-spacing: .19em; }
.article-hero h1 { max-width: 900px; margin: 18px 0 18px; font-size: clamp(64px, 8.6vw, 116px); line-height: .84; letter-spacing: -.012em; }
.article-hero > .article-hero-inner > p { max-width: 60ch; margin: 0; color: #c6c0b0; font-size: clamp(17px, 2vw, 22px); line-height: 1.55; }
.article-byline { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; color: #84867d; font: 10px "Share Tech Mono", monospace; letter-spacing: .1em; }
.article-shell { display: grid; grid-template-columns: 150px minmax(0, 760px); gap: clamp(42px, 8vw, 112px); justify-content: center; align-items: start; padding-top: 86px; padding-bottom: 120px; }
.article-rail { position: sticky; top: 120px; border-top: 2px solid var(--amber); padding-top: 16px; }
.article-rail > span { color: #777a70; font: 9px "Share Tech Mono", monospace; letter-spacing: .14em; }
.article-rail > strong { display: block; margin: 12px 0 22px; color: rgba(212, 164, 74, .42); font: 800 84px/.8 "Big Shoulders Display", sans-serif; }
.article-rail p { margin: 0; color: #898a81; font: 11px/1.8 "Share Tech Mono", monospace; }
.article-prose[hidden] { display: none !important; }
.article-prose { min-width: 0; color: #b9b5a9; font-size: 17px; line-height: 1.9; }
.article-prose > p, .article-prose section > p { max-width: 70ch; }
.article-prose p { margin: 0 0 24px; }
.article-prose .article-lede { margin-bottom: 28px; color: #e0dbce; font-size: clamp(20px, 2.4vw, 25px); font-weight: 500; line-height: 1.7; }
.article-prose section { scroll-margin-top: 110px; margin-top: 74px; }
.article-prose h2 { margin: 0 0 24px; color: var(--ink); font-size: clamp(38px, 5vw, 56px); line-height: 1; }
.article-prose code { color: #d8b66d; font-family: "Share Tech Mono", monospace; font-size: .9em; }
.article-prose pre { max-width: 100%; overflow-x: auto; margin: 28px 0; border-left: 2px solid var(--amber); padding: 22px 24px; background: #0b0e0a; color: #d7d1c2; font: 13px/1.7 "Share Tech Mono", monospace; }
.article-prose pre code { color: inherit; font-size: inherit; }
.article-prose .article-diagram { border: 1px solid #35382f; border-left: 2px solid var(--amber); background: repeating-linear-gradient(0deg, #0b0e0a 0 27px, rgba(212, 164, 74, .035) 27px 28px); }
.article-toc { margin-bottom: 54px; border-top: 1px solid #45483e; border-bottom: 1px solid #34372f; padding: 24px 0 28px; }
.article-toc > strong { color: var(--amber); font: 10px "Share Tech Mono", monospace; letter-spacing: .15em; }
.article-toc ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 28px; margin: 18px 0 0; padding: 0; list-style-position: inside; }
.article-toc li { color: #6f7169; font: 12px/1.6 "Share Tech Mono", monospace; }
.article-toc a { color: #b8b4a7; }
.article-toc a:hover { color: var(--amber); }
.article-facts { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 28px 0; padding: 0; list-style: none; border: 1px solid #3b3e35; }
.article-facts li { min-width: 0; border-left: 1px solid #3b3e35; padding: 16px 8px; color: #d1cbbb; font: 11px "Share Tech Mono", monospace; text-align: center; }
.article-facts li:first-child { border-left: 0; }
.article-disclosure { margin-top: 86px; border-top: 2px solid var(--amber); padding-top: 28px; }
.article-disclosure strong { color: var(--amber); font: 800 28px "Big Shoulders Display", sans-serif; letter-spacing: .08em; }
.article-disclosure p { margin: 14px 0 0; color: #777a70; font: 11px/1.8 "Share Tech Mono", monospace; }

@media (max-width: 1000px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: min(62vw, 500px); }
  .article-shell { grid-template-columns: 100px minmax(0, 720px); gap: 46px; }
}

@media (max-width: 860px) {
  .blog-index-hero { min-height: 520px; padding-top: 126px; }
  .blog-index-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .blog-index-signal { display: none; }
  .article-hero { min-height: 620px; padding-top: 120px; }
  .article-shell { grid-template-columns: 1fr; width: min(100% - 32px, 760px); padding-top: 58px; }
  .article-rail { display: none; }
}

@media (max-width: 560px) {
  .blog-index-hero { min-height: 460px; padding-bottom: 48px; }
  .blog-index-hero h1 { font-size: clamp(66px, 22vw, 92px); }
  .blog-feed-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .blog-feature-media { min-height: 66vw; }
  .blog-feature-copy { padding: 30px 20px; }
  .blog-feature h3 { font-size: 48px; }
  .blog-feature-actions { align-items: stretch; flex-direction: column; }
  .blog-feature-actions .btn-solid { width: 100%; justify-content: space-between; }
  .article-hero { min-height: 560px; padding-bottom: 42px; }
  .article-back { margin-bottom: 30px; }
  .article-hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .article-hero > .article-hero-inner > p { font-size: 16px; }
  .article-byline { gap: 9px 16px; }
  .article-prose { font-size: 16px; line-height: 1.85; }
  .article-prose section { margin-top: 60px; }
  .article-toc ol { grid-template-columns: 1fr; }
  .article-facts { grid-template-columns: 1fr 1fr; }
  .article-facts li { border-top: 1px solid #3b3e35; }
  .article-facts li:first-child, .article-facts li:nth-child(2) { border-top: 0; }
  .article-facts li:nth-child(odd) { border-left: 0; }
  .article-prose pre { margin-right: -8px; margin-left: -8px; padding: 18px 16px; font-size: 11px; }
}

.managed-blog-feature:first-child{margin-top:0}.managed-post{max-width:900px;padding-top:clamp(8rem,15vw,12rem);padding-bottom:6rem}.managed-post-back{display:inline-block;margin-bottom:3rem;color:var(--gold);font-family:var(--mono);font-size:.78rem;letter-spacing:.08em;text-decoration:none}.managed-post header{border-bottom:1px solid rgba(221,177,69,.28);padding-bottom:2.5rem}.managed-post h1{max-width:16ch;margin:.7rem 0 1rem;font-family:var(--display);font-size:clamp(2.8rem,7vw,6.5rem);line-height:.94}.managed-post-summary{max-width:62ch;color:var(--muted);font-size:1.1rem}.managed-post-body{max-width:72ch;padding-top:2rem}.managed-post-body p{margin:0 0 1.45rem;color:#d6d2c5;font-size:1.05rem;line-height:1.85;white-space:pre-wrap}.managed-post-status{color:var(--gold)}
