:root {
  color-scheme: dark;
  --ink: #0b0d0e;
  --ink-2: #141719;
  --ink-3: #20262a;
  --paper: #f4efe7;
  --paper-2: #fffaf1;
  --muted: #6c7377;
  --quiet: #aeb8b6;
  --line: rgba(11, 13, 14, 0.14);
  --line-dark: rgba(244, 239, 231, 0.18);
  --teal: #0f9ca6;
  --teal-bright: #49d2d6;
  --brick: #d76044;
  --gold: #c99b46;
  --green: #4e8b75;
  --max: 1180px;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

img,
canvas {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold), var(--brick));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(244, 239, 231, 0.12);
  background: rgba(11, 13, 14, 0.76);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(11, 13, 14, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  min-width: 150px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 30px);
  color: var(--quiet);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--paper);
}

.hero {
  position: relative;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  min-height: 86svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

.hero-image,
.hero-canvas,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.035);
  transition: transform 500ms ease-out;
}

.hero-canvas {
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 13, 14, 0.98) 0%, rgba(11, 13, 14, 0.86) 42%, rgba(11, 13, 14, 0.34) 80%),
    linear-gradient(0deg, rgba(11, 13, 14, 0.96) 0%, rgba(11, 13, 14, 0.22) 38%, rgba(11, 13, 14, 0.42) 100%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: 86svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 34px) clamp(20px, 4vw, 48px) 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-bright);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  max-width: 880px;
  margin: 0 0 22px;
  font-size: 9.4rem;
  line-height: 0.84;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
}

h1 small {
  display: inline-block;
  margin-bottom: 0.18em;
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
}

h2 {
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.56rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-lede {
  width: min(700px, 100%);
  margin-bottom: 30px;
  color: rgba(244, 239, 231, 0.82);
  font-size: 1.32rem;
  line-height: 1.52;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(244, 239, 231, 0.32);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--teal-bright);
  background: var(--teal-bright);
  color: #061113;
}

.button.secondary {
  background: rgba(244, 239, 231, 0.09);
  color: var(--paper);
}

.button.ghost {
  border-color: transparent;
  color: var(--paper);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(244, 239, 231, 0.28);
  background: rgba(244, 239, 231, 0.07);
}

.hero-console {
  width: min(100%, 820px);
  margin-top: 12px;
  border: 1px solid rgba(244, 239, 231, 0.2);
  border-radius: 8px;
  background: rgba(7, 9, 9, 0.55);
  box-shadow: inset 0 1px 0 rgba(244, 239, 231, 0.08);
  backdrop-filter: blur(14px);
}

.console-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(244, 239, 231, 0.14);
  color: var(--quiet);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.console-grid div {
  min-height: 112px;
  padding: 15px;
  border-right: 1px solid rgba(244, 239, 231, 0.12);
}

.console-grid div:last-child {
  border-right: 0;
}

.console-grid span,
.console-grid strong,
.console-grid em {
  display: block;
}

.console-grid span {
  margin-bottom: 12px;
  color: var(--teal-bright);
  font-size: 0.72rem;
  font-weight: 900;
}

.console-grid strong {
  margin-bottom: 7px;
  color: var(--paper);
}

.console-grid em {
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.38;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 900px);
  margin: 38px 0 0;
  border-top: 1px solid rgba(244, 239, 231, 0.2);
}

.hero-facts div {
  padding: 18px 24px 0 0;
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--paper);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.38;
}

.review-lens {
  position: relative;
  z-index: 4;
  padding: 38px clamp(20px, 4vw, 48px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.review-lens-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.review-lens h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 2.45rem;
  line-height: 1.04;
}

.lens-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 239, 231, 0.72);
  overflow: hidden;
}

.lens-tabs,
.edge-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 48px;
}

.lens-tab,
.edge-tab {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.lens-tab:last-child,
.edge-tab:last-child {
  border-right: 0;
}

.lens-tab:hover,
.lens-tab:focus-visible,
.lens-tab.is-active {
  background: var(--ink);
  color: var(--paper);
}

.lens-panel {
  min-height: 212px;
  padding: 26px;
}

.lens-panel strong,
.lens-panel p {
  display: block;
}

.lens-panel strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
}

.lens-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.56;
}

.lens-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}

.lens-panel dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.lens-panel dt {
  margin-bottom: 6px;
  color: var(--brick);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lens-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.42;
}

.band {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 48px);
}

.snapshot-band {
  background: var(--paper);
}

.product-band {
  background: #ece4d7;
}

.issue-band {
  background: #0b1113;
  color: var(--paper);
}

.capabilities-band {
  background: var(--ink);
  color: var(--paper);
}

.system-map-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: #182022;
  color: var(--paper);
}

.funding-band {
  background: var(--paper);
}

.founder-band {
  background: #0f1415;
  color: var(--paper);
}

.contact-band {
  background: #ece4d7;
}

.snapshot-grid,
.section-head,
.product-grid,
.capability-grid,
.system-map-band,
.funding-layout,
.founder-grid,
.contact-wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.snapshot-grid,
.founder-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

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

.section-head h2 {
  max-width: 890px;
}

.snapshot-copy p,
.system-map-copy p,
.founder-grid p,
.product-card p,
.capability-grid p,
.funding-card li,
.contact-wrap p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.capabilities-band .capability-grid p,
.system-map-copy p,
.founder-grid p {
  color: rgba(244, 239, 231, 0.72);
}

.snapshot-copy p:last-child,
.system-map-copy p:last-child,
.contact-wrap p:last-child {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.comic-evidence {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 18px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11181a;
  color: var(--paper);
}

.comic-art {
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, 0.18);
  border-radius: 8px;
  background: #070909;
}

.comic-art img {
  width: 100%;
  height: min(620px, 72vw);
  filter: brightness(1.16) contrast(1.05);
  object-fit: cover;
  object-position: center 48%;
}

.comic-art-copy {
  max-width: 700px;
}

.comic-art-copy p {
  color: rgba(244, 239, 231, 0.72);
  font-size: 1.03rem;
  line-height: 1.68;
}

.cast-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.cast-thumb {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 2;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, 0.18);
  border-radius: 6px;
  background: #070909;
  color: var(--paper);
  cursor: pointer;
}

.cast-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 160ms ease;
}

.cast-thumb:hover::after,
.cast-thumb:focus-visible::after,
.cast-thumb[aria-pressed="true"]::after {
  border-color: var(--teal-bright);
}

.cast-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  filter: brightness(1.08) contrast(1.04);
  object-fit: cover;
}

.cast-thumb span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  max-width: calc(100% - 14px);
  padding: 4px 6px;
  border-radius: 4px;
  background: rgba(7, 9, 9, 0.72);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-card,
.funding-card,
.contact-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.58);
}

.product-card {
  padding: clamp(24px, 4vw, 40px);
}

.product-card.featured {
  background:
    linear-gradient(135deg, rgba(15, 156, 166, 0.11), rgba(215, 96, 68, 0.09)),
    rgba(255, 250, 241, 0.7);
}

.card-label {
  margin-bottom: 20px;
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.compact-list div {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.compact-list dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.compact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.issue-layout,
.issue-proof-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.issue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.issue-media {
  overflow: hidden;
  border: 1px solid rgba(244, 239, 231, 0.16);
  border-radius: 8px;
  background: #070909;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.issue-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.issue-copy {
  min-width: 0;
}

.issue-masthead {
  width: min(100%, 430px);
  height: auto;
  margin-bottom: 24px;
}

.issue-copy h2 {
  max-width: 600px;
  font-size: clamp(2.45rem, 5vw, 4.15rem);
}

.issue-copy p {
  max-width: 620px;
  color: rgba(244, 239, 231, 0.74);
  font-size: 1.05rem;
  line-height: 1.66;
}

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

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(244, 239, 231, 0.18);
}

.status-strip div {
  padding: 18px 16px 0 0;
}

.status-strip span,
.issue-proof-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-strip strong {
  display: block;
  color: var(--paper);
  font-size: 0.94rem;
  line-height: 1.34;
}

.issue-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.issue-proof-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(244, 239, 231, 0.16);
  border-radius: 8px;
  background: rgba(244, 239, 231, 0.045);
}

.issue-proof-grid h3 {
  color: var(--paper);
}

.issue-proof-grid p {
  color: rgba(244, 239, 231, 0.68);
  line-height: 1.58;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article {
  min-height: 302px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 239, 231, 0.045);
}

.capability-grid article:nth-child(1) {
  border-top: 3px solid var(--teal-bright);
}

.capability-grid article:nth-child(2) {
  border-top: 3px solid var(--gold);
}

.capability-grid article:nth-child(3) {
  border-top: 3px solid var(--brick);
}

.capability-grid article:nth-child(4) {
  border-top: 3px solid var(--green);
}

.capability-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--quiet);
  font-weight: 900;
}

.edge-lab {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(7, 9, 9, 0.98) 0%, rgba(17, 24, 26, 0.98) 44%, rgba(23, 32, 34, 0.98) 100%),
    #070909;
}

.edge-lab::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(73, 210, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 210, 214, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  pointer-events: none;
}

.edge-lab-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
  width: min(100%, var(--max));
  min-height: 740px;
  margin: 0 auto;
  padding: 112px clamp(20px, 4vw, 48px);
}

.edge-lab-copy {
  max-width: 680px;
}

.edge-lab-copy p {
  max-width: 620px;
  color: rgba(244, 239, 231, 0.74);
  font-size: 1.08rem;
  line-height: 1.66;
}

.edge-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(244, 239, 231, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(73, 210, 214, 0.1), rgba(215, 96, 68, 0.08)),
    rgba(7, 9, 9, 0.48);
}

.edge-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(73, 210, 214, 0.7), transparent);
  pointer-events: none;
}

.edge-visual span {
  position: relative;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(244, 239, 231, 0.14);
  border-radius: 6px;
  background: rgba(7, 9, 9, 0.7);
  color: rgba(244, 239, 231, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.edge-visual span:nth-child(2) {
  border-color: rgba(73, 210, 214, 0.48);
}

.edge-visual span:nth-child(3) {
  border-color: rgba(201, 155, 70, 0.48);
}

.edge-visual span:nth-child(4) {
  border-color: rgba(215, 96, 68, 0.48);
}

.edge-panel {
  border: 1px solid rgba(244, 239, 231, 0.2);
  border-radius: 8px;
  background: rgba(7, 9, 9, 0.66);
  box-shadow: inset 0 1px 0 rgba(244, 239, 231, 0.1);
  backdrop-filter: blur(18px);
}

.edge-tab {
  border-color: rgba(244, 239, 231, 0.16);
  color: var(--quiet);
}

.edge-tab:hover,
.edge-tab:focus-visible,
.edge-tab.is-active {
  background: var(--teal-bright);
  color: #061113;
}

.edge-tabs .edge-tab.is-active {
  background: var(--teal-bright);
  color: #061113;
}

.edge-tab-panel {
  min-height: 254px;
  padding: 28px;
}

.edge-tab-panel h3 {
  margin-bottom: 12px;
}

.edge-tab-panel p {
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.62;
}

.edge-meter {
  margin-top: 28px;
}

.edge-meter span {
  display: block;
  margin-bottom: 9px;
  color: var(--quiet);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edge-meter i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 239, 231, 0.12);
}

.edge-meter i::before {
  content: "";
  display: block;
  width: var(--meter);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-bright), var(--gold));
}

.system-map-copy {
  max-width: 620px;
}

.system-map {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #0f1415;
}

.system-map img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.funding-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.funding-card {
  padding: clamp(24px, 3vw, 32px);
}

.funding-card h3 {
  margin-bottom: 18px;
}

.funding-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.funding-card li::marker {
  color: var(--brick);
}

.funding-card.priorities {
  background:
    linear-gradient(180deg, rgba(201, 155, 70, 0.11), rgba(15, 156, 166, 0.08)),
    rgba(255, 250, 241, 0.68);
}

.runway-band {
  background: #11181a;
  color: var(--paper);
}

.runway-band .section-head h2 {
  max-width: 940px;
}

.runway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid rgba(244, 239, 231, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.runway-step {
  position: relative;
  min-height: 292px;
  padding: 28px;
  border-right: 1px solid rgba(244, 239, 231, 0.16);
  background: rgba(244, 239, 231, 0.04);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.runway-step:last-child {
  border-right: 0;
}

.runway-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: transparent;
  transition: background 180ms ease;
}

.runway-step.is-active {
  background: rgba(244, 239, 231, 0.08);
}

.runway-step.is-active::before {
  background: linear-gradient(90deg, var(--teal-bright), var(--brick));
}

.runway-step span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--teal-bright);
  font-weight: 900;
}

.runway-step p {
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.62;
}

.contact-wrap {
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.contact-wrap .button.primary,
.contact-wrap .button.secondary {
  border-color: var(--ink);
}

.contact-wrap .button.primary {
  background: var(--ink);
  color: var(--paper);
}

.contact-wrap .button.secondary {
  background: transparent;
  color: var(--ink);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(244, 239, 231, 0.12);
  color: var(--quiet);
  background: #070909;
  font-size: 0.9rem;
}

.site-footer img {
  width: 154px;
  height: auto;
}

.js [data-reveal] {
  transform: translateY(24px);
  transition: transform 520ms ease;
}

.js [data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .capability-grid,
  .funding-layout,
  .runway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funding-card.priorities {
    grid-column: 1 / -1;
  }

  .runway-step:nth-child(2) {
    border-right: 0;
  }

  .runway-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 239, 231, 0.16);
  }
}

@media (max-width: 900px) {
  .product-grid,
  .comic-evidence,
  .issue-layout,
  .system-map-band,
  .snapshot-grid,
  .founder-grid,
  .contact-wrap,
  .review-lens-inner,
  .edge-lab-content {
    grid-template-columns: 1fr;
  }

  .edge-lab,
  .edge-lab-content {
    min-height: 680px;
  }

  .edge-lab-content {
    align-items: center;
    padding-block: 96px;
  }

}

@media (max-width: 720px) {
  :root {
    --header-height: 132px;
  }

  .site-header {
    display: grid;
    align-items: start;
    gap: 12px;
  }

  .brand {
    width: 152px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.84rem;
  }

  .hero,
  .hero-content {
    min-height: 82svh;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(11, 13, 14, 0.98), rgba(11, 13, 14, 0.68)),
      linear-gradient(0deg, rgba(11, 13, 14, 0.96), rgba(11, 13, 14, 0.28) 46%, rgba(11, 13, 14, 0.5));
  }

  h1 {
    display: block;
    max-width: min(calc(100vw - 48px), 390px);
    font-size: 4.7rem;
    line-height: 0.9;
  }

  h1 small {
    display: block;
    margin: 10px 0 0;
    font-size: 1.6rem;
  }

  h2 {
    font-size: 2.28rem;
  }

  h3 {
    font-size: 1.34rem;
  }

  .review-lens h2 {
    font-size: 2rem;
  }

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

  .hero-lede,
  .hero-actions,
  .hero-facts,
  .hero-console {
    max-width: min(calc(100vw - 48px), 390px);
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-console,
  .hero-facts {
    display: none;
  }

  .console-grid,
  .lens-panel dl,
  .runway {
    grid-template-columns: 1fr;
  }

  .console-grid div,
  .runway-step {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 231, 0.14);
  }

  .console-grid div:last-child,
  .runway-step:last-child {
    border-bottom: 0;
  }

  .hero-facts div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 239, 231, 0.15);
  }

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

  .capability-grid,
  .funding-layout,
  .issue-proof-grid {
    grid-template-columns: 1fr;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .compact-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .system-map img {
    min-height: 260px;
  }

  .comic-art img {
    height: auto;
    max-height: none;
  }

  .cast-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edge-panel,
  .lens-shell {
    width: 100%;
  }

  .edge-tabs,
  .lens-tabs {
    grid-template-columns: 1fr;
  }

  .edge-tab,
  .lens-tab {
    min-height: 46px;
    border-right: 0;
  }

  .edge-visual {
    grid-template-columns: 1fr;
  }

  .edge-visual::before {
    right: auto;
    bottom: 18px;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(73, 210, 214, 0.7), transparent);
  }
}

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

  .skip-link,
  .button,
  .hero-image,
  .js [data-reveal],
  .runway-step {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }

  .hero-image {
    transform: none;
  }
}
