:root {
  --ink: #07080c;
  --ink-soft: #0d1118;
  --panel: #111722;
  --paper: #f2eee5;
  --text: #f7f3ea;
  --muted: #a9b2bc;
  --muted-strong: #c8ced4;
  --line: rgba(247, 243, 234, 0.16);
  --line-strong: rgba(247, 243, 234, 0.3);
  --cyan: #7fe8ff;
  --blue: #3976e6;
  --gold: #e7c46f;
  --copper: #ce7540;
  --content: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 4.75rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(57, 118, 230, 0.08), transparent 28rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.88);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.8rem;
}

.brand img {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0 10px rgba(127, 232, 255, 0.2));
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 0.87rem;
  letter-spacing: 0.025em;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--gold);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.7rem);
}

.site-nav a,
.nexus-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.nexus-link:hover {
  color: var(--text);
}

.nexus-link {
  justify-self: end;
  gap: 0.65rem;
  color: var(--cyan);
}

.hero {
  position: relative;
  min-height: max(51rem, calc(100svh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(28rem, 0.92fr) minmax(28rem, 1.08fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 47%, rgba(57, 118, 230, 0.15), transparent 30%),
    radial-gradient(circle at 80% 48%, rgba(127, 232, 255, 0.07), transparent 45%),
    linear-gradient(115deg, #07080c 0 46%, #090c15 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 60rem;
  height: 60rem;
  top: 46%;
  right: -8rem;
  transform: translateY(-50%);
  border: 1px solid rgba(127, 232, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 6rem rgba(57, 118, 230, 0.025),
    0 0 0 14rem rgba(231, 196, 111, 0.018);
}

.hero::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.82), transparent 56%),
    linear-gradient(0deg, rgba(7, 8, 12, 0.75), transparent 26%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.85;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(127, 232, 255, 0.68) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(231, 196, 111, 0.5) 0 1px, transparent 1.5px);
  background-position: 0 0, 37px 64px, 91px 31px;
  background-size: 137px 149px, 191px 173px, 227px 211px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), #000 45%, #000);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: clamp(6rem, 10vh, 9rem) var(--gutter) clamp(7rem, 11vh, 10rem);
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 0.75rem;
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.collection-heading h2,
.process h2,
.gateway h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.7rem);
  font-weight: 820;
  letter-spacing: -0.067em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 em {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.045em;
  -webkit-text-stroke: 1px rgba(127, 232, 255, 0.85);
  text-shadow: 0 0 35px rgba(57, 118, 230, 0.38);
}

.hero-lede {
  max-width: 41rem;
  margin: 2.25rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.hero-lede strong {
  color: var(--text);
  font-weight: 720;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
}

.button,
.text-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, var(--paper), #d9faff 44%, #f5d986 100%);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.15, 1);
}

.button-primary {
  color: var(--ink);
}

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

.button:hover::before {
  transform: translateX(4%);
}

.text-link {
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted-strong);
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--cyan);
  color: var(--text);
}

.hero-metrics {
  max-width: 35rem;
  margin: 3.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics div {
  min-height: 5.2rem;
  padding: 0.9rem 1rem 0.8rem 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.hero-metrics div:not(:first-child) {
  padding-left: 1rem;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 5rem var(--gutter) 7rem 1rem;
}

.hero-shirt {
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 45%;
  position: relative;
  width: min(31rem, 72%);
  margin: 0;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  border: 1px solid rgba(127, 232, 255, 0.3);
  background: #080a10;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(231, 196, 111, 0.05),
    0 0 70px rgba(57, 118, 230, 0.2);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease;
}

.hero-shirt::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--gx) var(--gy), rgba(127, 232, 255, 0.18), transparent 34%);
  transition: opacity 220ms ease;
}

.hero-shirt:hover::after,
.product-card:hover::after {
  opacity: 1;
}

.hero-shirt img {
  width: 100%;
  height: auto;
}

.hero-shirt figcaption {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 4;
  min-height: 5rem;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.85rem;
  border-top: 1px solid var(--line-strong);
  background: rgba(7, 8, 12, 0.9);
  backdrop-filter: blur(14px);
}

.hero-shirt figcaption > span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.hero-shirt figcaption strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.hero-shirt figcaption small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-rings {
  position: absolute;
  width: min(48rem, 86%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.signal-rings i {
  position: absolute;
  border: 1px solid rgba(127, 232, 255, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(57, 118, 230, 0.05);
  animation: orbit-drift 18s linear infinite;
}

.signal-rings i::before,
.signal-rings i::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.signal-rings i::before {
  top: -0.2rem;
  left: 42%;
}

.signal-rings i::after {
  right: 9%;
  bottom: 18%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.signal-rings i:nth-child(1) {
  width: 100%;
  height: 42%;
  transform: rotate(-18deg);
}

.signal-rings i:nth-child(2) {
  width: 88%;
  height: 58%;
  animation-direction: reverse;
  animation-duration: 23s;
}

.signal-rings i:nth-child(3) {
  width: 70%;
  height: 100%;
  transform: rotate(25deg);
  animation-duration: 28s;
}

.visual-note {
  position: absolute;
  right: var(--gutter);
  bottom: 6rem;
  margin: 0;
  color: #87939d;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.signal-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 3rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.86);
  color: #78838d;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 3rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-marquee div {
  width: max-content;
  animation: signal-pass 38s linear infinite;
}

.status-band {
  min-height: 5rem;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(231, 196, 111, 0.25);
  background: #0c0e13;
}

.status-band p {
  max-width: 80rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-band strong {
  color: var(--gold);
}

.status-light {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(231, 196, 111, 0.7);
}

.section-shell {
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.section-heading,
.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading h2,
.collection-heading h2,
.process h2,
.gateway h2 {
  font-size: clamp(3.5rem, 6.8vw, 7rem);
}

.section-heading > p {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.shortlist {
  border-bottom: 1px solid var(--line);
}

.candidate-list {
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.candidate-list li {
  position: relative;
  min-height: 10rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(127, 232, 255, 0.035), transparent 55%);
  transition: background-color 220ms ease;
}

.candidate-list li:last-child {
  border-right: 0;
}

.candidate-list li:hover {
  background-color: rgba(57, 118, 230, 0.07);
}

.candidate-list span {
  position: absolute;
  top: 1.2rem;
  left: 1.35rem;
  color: var(--gold);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.63rem;
}

.candidate-list strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.candidate-list small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection {
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
  background:
    radial-gradient(circle at 92% 8%, rgba(57, 118, 230, 0.12), transparent 35rem),
    #090b10;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.filter-button {
  min-height: 46px;
  cursor: pointer;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted-strong);
  font-size: 0.65rem;
  font-weight: 740;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover {
  border-color: var(--cyan);
  color: var(--text);
}

.filter-button[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.result-count {
  margin: 2.75rem 0 1rem;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.7rem);
}

.product-card {
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 45%;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d1016;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  z-index: 2;
  border-color: rgba(127, 232, 255, 0.35);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45), 0 0 36px rgba(57, 118, 230, 0.12);
}

.interactive-tilt.tilt-nw { --rx: 2.4deg; --ry: -2.4deg; --gx: 18%; --gy: 18%; }
.interactive-tilt.tilt-nc { --rx: 2.4deg; --ry: 0deg; --gx: 50%; --gy: 18%; }
.interactive-tilt.tilt-ne { --rx: 2.4deg; --ry: 2.4deg; --gx: 82%; --gy: 18%; }
.interactive-tilt.tilt-cw { --rx: 0deg; --ry: -2.4deg; --gx: 18%; --gy: 50%; }
.interactive-tilt.tilt-cc { --rx: 0deg; --ry: 0deg; --gx: 50%; --gy: 50%; }
.interactive-tilt.tilt-ce { --rx: 0deg; --ry: 2.4deg; --gx: 82%; --gy: 50%; }
.interactive-tilt.tilt-sw { --rx: -2.4deg; --ry: -2.4deg; --gx: 18%; --gy: 82%; }
.interactive-tilt.tilt-sc { --rx: -2.4deg; --ry: 0deg; --gx: 50%; --gy: 82%; }
.interactive-tilt.tilt-se { --rx: -2.4deg; --ry: 2.4deg; --gx: 82%; --gy: 82%; }

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #06070a;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(7, 8, 12, 0.2), transparent 30%),
    linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.045) 46%, transparent 69%);
  transform: translateX(-75%);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.product-card:hover .product-image::after {
  transform: translateX(75%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.1, 1), filter 300ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.025);
}

.catalog-number,
.candidate-badge {
  position: absolute;
  z-index: 4;
  background: rgba(7, 8, 12, 0.86);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.catalog-number {
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold);
}

.candidate-badge {
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-left: 2px solid var(--cyan);
  color: var(--cyan);
}

.product-copy {
  position: relative;
  z-index: 4;
  min-height: 8.6rem;
  padding: 1.15rem;
  border-top: 1px solid var(--line);
  background: #0d1016;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-copy p span {
  color: var(--gold);
}

.product-copy h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.product-copy small {
  margin-top: 0.7rem;
  display: block;
  color: #87919a;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(231, 196, 111, 0.05), transparent 40%),
    var(--ink-soft);
}

.process-inner {
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(25rem, 0.8fr) minmax(30rem, 1.2fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 10rem);
}

.process-copy {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.process-copy > p:last-child {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.process-list li {
  min-height: 9.25rem;
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  align-self: start;
  margin-top: 0.15rem;
  color: var(--gold);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.65rem;
}

.process-list strong {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 36rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.gateway {
  position: relative;
  min-height: 46rem;
  padding: clamp(7rem, 13vw, 12rem) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(57, 118, 230, 0.17), transparent 29rem),
    #07080c;
}

.gateway::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.4px);
  background-size: 151px 139px;
  opacity: 0.5;
}

.gateway h2 {
  max-width: 11ch;
}

.gateway > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 2rem 0 2.5rem;
  color: var(--muted);
}

.gateway-orbit {
  position: absolute;
  z-index: -1;
  width: min(55rem, 90vw);
  aspect-ratio: 1;
  border: 1px solid rgba(127, 232, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(57, 118, 230, 0.02),
    0 0 0 8rem rgba(231, 196, 111, 0.012),
    inset 0 0 80px rgba(57, 118, 230, 0.06);
  animation: gateway-breathe 7s ease-in-out infinite;
}

footer {
  padding: 1.5rem var(--gutter) 1rem;
  border-top: 1px solid var(--line);
  background: #040509;
}

.footer-inner {
  max-width: var(--content);
  margin-inline: auto;
  min-height: 4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  color: #717c86;
  font-size: 0.67rem;
  line-height: 1.25;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 720;
}

.footer-state {
  color: var(--gold);
}

.footer-credit {
  color: #7b858f;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.03em;
}

@keyframes orbit-drift {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes signal-pass {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gateway-breathe {
  0%, 100% { transform: scale(0.97); opacity: 0.62; }
  50% { transform: scale(1.03); opacity: 1; }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .hero {
    grid-template-columns: minmax(25rem, 0.95fr) minmax(23rem, 1.05fr);
  }

  .hero-shirt {
    width: min(27rem, 78%);
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 52rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(5rem, 14vw, 8rem);
  }

  .hero-visual {
    min-height: 46rem;
    padding: 2rem var(--gutter) 7rem;
  }

  .hero-shirt {
    width: min(29rem, 66vw);
  }

  .visual-note {
    bottom: 5rem;
  }

  .section-heading,
  .collection-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.5rem;
  }

  .filter-controls {
    justify-content: flex-start;
  }

  .result-count {
    text-align: left;
  }

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

  .candidate-list li:nth-child(2) {
    border-right: 0;
  }

  .candidate-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .process-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .process-copy {
    position: static;
    max-width: 45rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 1.15rem;
    --header-height: 4.35rem;
  }

  .site-header {
    gap: 0.75rem;
  }

  .brand img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .brand strong {
    font-size: 0.75rem;
  }

  .brand small {
    font-size: 0.5rem;
  }

  .nexus-link {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .hero-copy {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.5rem);
  }

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

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-metrics div {
    min-height: 4.7rem;
    padding-inline: 0.65rem;
  }

  .hero-metrics div:first-child {
    padding-left: 0;
  }

  .hero-metrics dt {
    font-size: 0.5rem;
  }

  .hero-metrics dd {
    font-size: 1.2rem;
  }

  .hero-visual {
    min-height: 36rem;
    padding-top: 1rem;
  }

  .hero-shirt {
    width: min(24rem, 88vw);
  }

  .signal-rings {
    width: 115vw;
  }

  .visual-note {
    display: none;
  }

  .status-band {
    align-items: flex-start;
    padding-block: 1.2rem;
  }

  .section-heading h2,
  .collection-heading h2,
  .process h2,
  .gateway h2 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .candidate-list {
    grid-template-columns: 1fr;
  }

  .candidate-list li {
    min-height: 7.6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .candidate-list li:last-child {
    border-bottom: 0;
  }

  .filter-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-button {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    width: 100%;
  }

  .product-copy {
    min-height: 7.6rem;
  }

  .product-copy h3 {
    font-size: 1.25rem;
  }

  .process-list li {
    grid-template-columns: 2.3rem 1fr;
  }

  .gateway {
    min-height: 39rem;
  }

  .gateway .button {
    width: 100%;
    justify-content: space-between;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-brand {
    margin-bottom: 0.25rem;
  }

  .footer-credit {
    margin-top: 0.45rem !important;
  }
}

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

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

  .hero-shirt,
  .product-card {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .hero h1 em {
    color: CanvasText;
    -webkit-text-stroke: 0;
    text-shadow: none;
  }

  .status-light {
    border: 1px solid CanvasText;
  }
}
