:root {
  color-scheme: dark;
  --black: #080807;
  --panel: #151514;
  --panel-2: #1e1b17;
  --line: rgba(255, 191, 73, 0.18);
  --gold: #f6b632;
  --gold-2: #ffd36a;
  --orange: #ff8a00;
  --ember: #d95112;
  --green: #16d46c;
  --white: #fff8ea;
  --muted: #aaa29a;
  --dim: #6f6861;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(125deg, rgba(246, 182, 50, 0.12), transparent 34%),
    linear-gradient(310deg, rgba(217, 81, 18, 0.11), transparent 38%),
    linear-gradient(180deg, #090908 0%, #11100f 52%, #080807 100%);
  color: var(--white);
  font-family: "Bahnschrift", "Aptos", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0.75rem 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 900;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--gold-2);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 138, 0, 0.34));
}

nav {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.7rem);
  color: #d9d0c6;
  font-size: 0.85rem;
  text-transform: uppercase;
}

nav a {
  padding: 0.65rem 0;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: 3rem 0 5rem;
}

.eyebrow,
.proof-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--gold-2);
  text-shadow:
    0 2px 0 #7d4104,
    0 10px 36px rgba(255, 138, 0, 0.28),
    0 0 1px #fff1a8;
}

.tagline {
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  font-weight: 900;
}

.lede {
  max-width: 58ch;
  color: #d5ccc2;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.signal-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-actions {
  margin: 2rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.button.primary {
  background: linear-gradient(180deg, #ffc14b, #ff8a00);
  color: #170d03;
  box-shadow: 0 16px 40px rgba(255, 138, 0, 0.25);
}

.button.ghost {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.03);
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.signal-strip strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.network-card {
  position: relative;
  overflow: hidden;
  min-height: min(640px, 76svh);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    radial-gradient(circle at 50% 48%, rgba(246, 182, 50, 0.12), transparent 17rem),
    var(--panel);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.network-card::before {
  content: "";
  position: absolute;
  inset: -30% 36% -20% 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: rotate(18deg);
  animation: scan 6.5s ease-in-out infinite;
}

.network-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem;
  color: var(--green);
  font-weight: 900;
  font-size: 1.18rem;
}

.network-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    18px 0 0 -7px var(--green),
    -18px 0 0 -7px var(--green),
    0 18px 0 -7px var(--green),
    0 -18px 0 -7px var(--green);
}

.orbit-system {
  position: relative;
  width: min(88vw, 520px);
  aspect-ratio: 1;
  margin: 2.8rem auto 1rem;
}

.track {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 77%;
  height: 77%;
  border: 2px solid rgba(255, 187, 49, 0.5);
  border-color: rgba(255, 187, 49, 0.55) transparent rgba(255, 187, 49, 0.18) rgba(255, 187, 49, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
}

.track-a { --r: 14deg; animation: rotateSlow 24s linear infinite; }
.track-b { --r: 84deg; width: 60%; height: 60%; border-color: rgba(255,255,255,0.34) transparent rgba(255,255,255,0.2); animation: rotateSlow 18s linear infinite reverse; }
.track-c { --r: 138deg; width: 92%; height: 50%; border-color: rgba(39, 127, 255, 0.4) transparent transparent rgba(39, 127, 255, 0.45); animation: wobble 8s ease-in-out infinite; }

.core,
.node,
.particle {
  position: absolute;
  border-radius: 50%;
}

.core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.95), transparent 0.45rem),
    radial-gradient(circle at 50% 50%, rgba(45, 139, 255, 0.78), rgba(9, 29, 53, 0.94) 68%);
  box-shadow:
    0 0 44px rgba(67, 177, 255, 0.35),
    0 0 72px rgba(255, 138, 0, 0.18);
}

.core::before,
.core::after,
.core-glass {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(210, 239, 255, 0.4);
  border-radius: 42% 58% 52% 48%;
  animation: morph 7s ease-in-out infinite;
}

.core::after {
  inset: 22%;
  animation-duration: 5s;
  animation-direction: reverse;
}

.core strong {
  position: relative;
  z-index: 1;
  color: white;
  font-size: clamp(1.2rem, 5vw, 2.4rem);
}

.core small {
  position: absolute;
  z-index: 1;
  top: 58%;
  color: rgba(255,255,255,0.7);
  font-weight: 900;
}

.node {
  display: grid;
  place-items: center;
  width: 22%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 220, 138, 0.5);
  background:
    radial-gradient(circle at 36% 26%, rgba(255,255,255,0.28), transparent 0.9rem),
    radial-gradient(circle at 50% 50%, rgba(28, 160, 119, 0.25), rgba(16, 14, 11, 0.95) 62%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 2px, transparent 2px 10px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.42), inset 0 0 28px rgba(246, 182, 50, 0.1);
  animation: floatNode 4.5s ease-in-out infinite;
}

.node b {
  color: #f4eadf;
  font-size: clamp(0.65rem, 1.5vw, 0.82rem);
  text-shadow: 0 1px 10px black;
}

.node-1 { left: 39%; top: 5%; animation-delay: -1s; }
.node-2 { right: 5%; top: 28%; animation-delay: -2s; }
.node-3 { right: 13%; bottom: 12%; animation-delay: -0.4s; }
.node-4 { left: 39%; bottom: 0; animation-delay: -3s; }
.node-5 { left: 4%; top: 31%; animation-delay: -1.8s; }

.particle {
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, #d5ffe2 0 23%, var(--green) 24% 44%, transparent 45%);
  filter: drop-shadow(0 0 9px rgba(22, 212, 108, 0.85));
  offset-path: path("M 60 230 C 170 120, 260 170, 310 255");
  animation: flow 3.8s linear infinite;
}

.particle-2 { offset-path: path("M 430 140 C 380 230, 330 240, 285 270"); animation-delay: -1s; }
.particle-3 { offset-path: path("M 430 390 C 360 330, 325 300, 285 270"); animation-delay: -2s; }
.particle-4 { offset-path: path("M 120 395 C 190 310, 230 280, 285 270"); animation-delay: -3s; }

.live-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.live-metrics span {
  padding: 1rem 0.9rem;
  background: rgba(255,255,255,0.025);
}

.live-metrics strong,
.live-metrics em {
  display: block;
}

.live-metrics strong {
  font-size: 1rem;
  color: var(--white);
}

.live-metrics em {
  margin-top: 0.25rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.75rem;
}

.proof-band,
.process,
.specs,
.reserve {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  color: #fff4dc;
}

.proof-band p,
.process p,
.spec-copy p,
.reserve p {
  color: var(--muted);
  line-height: 1.7;
}

.process {
  padding: 6rem 0 4rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 260px;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    var(--panel);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
}

h3 {
  color: var(--gold-2);
  font-size: 1.25rem;
}

.specs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: 4.5rem 0;
}

.spec-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--panel-2);
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  color: var(--white);
  text-align: right;
}

.reserve {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(255, 138, 0, 0.18), transparent 42%),
    var(--panel);
}

.reserve img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 138, 0, 0.32));
}

.reserve h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.65rem, 3.5vw, 3rem);
}

.reserve p {
  margin-bottom: 0;
}

@keyframes rotateSlow {
  to { transform: translate(-50%, -50%) rotate(calc(var(--r, 0deg) + 360deg)); }
}

@keyframes wobble {
  0%, 100% { transform: translate(-50%, -50%) rotate(138deg) scaleX(1); }
  50% { transform: translate(-50%, -50%) rotate(156deg) scaleX(1.08); }
}

@keyframes floatNode {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
}

@keyframes flow {
  from { offset-distance: 0%; opacity: 0; }
  10%, 88% { opacity: 1; }
  to { offset-distance: 100%; opacity: 0; }
}

@keyframes scan {
  0%, 100% { transform: translateX(-160%) rotate(18deg); opacity: 0; }
  42%, 58% { opacity: 1; }
  100% { transform: translateX(160%) rotate(18deg); }
}

@keyframes morph {
  0%, 100% { transform: rotate(0deg) scale(1); border-radius: 42% 58% 52% 48%; }
  50% { transform: rotate(180deg) scale(1.12); border-radius: 55% 45% 40% 60%; }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .proof-band,
  .specs,
  .reserve {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .network-card {
    min-height: auto;
  }

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

  .reserve {
    grid-template-columns: 84px 1fr;
  }

  .reserve .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .site-header,
  .hero,
  .proof-band,
  .process,
  .specs,
  .reserve {
    width: min(100% - 22px, var(--max));
  }

  nav {
    overflow-x: auto;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: normal;
    font-size: clamp(2.75rem, 13vw, 3.35rem);
  }

  .hero-copy,
  .hero-visual,
  .network-card {
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }

  .orbit-system {
    width: 100%;
  }

  .live-metrics {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    display: block;
  }

  .spec-list strong {
    display: block;
    margin-top: 0.35rem;
    text-align: left;
  }
}

@media (min-width: 721px) and (max-width: 940px) {
  .site-header {
    width: min(100% - 32px, var(--max));
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  nav {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
    gap: 1.35rem;
    min-height: calc(100svh - 70px);
    padding: 1.4rem 0 3rem;
  }

  h1 {
    font-size: clamp(3.35rem, 7vw, 4.4rem);
  }

  .lede {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin: 1.2rem 0 0.9rem;
  }

  .button {
    min-height: 42px;
    padding: 0.72rem 0.9rem;
  }

  .signal-strip {
    gap: 0.5rem;
  }

  .signal-strip span {
    font-size: 0.78rem;
  }

  .network-card {
    min-height: 520px;
  }

  .orbit-system {
    width: min(44vw, 390px);
    margin-top: 1.3rem;
  }

  .live-metrics {
    grid-template-columns: 1fr;
    margin-top: 0.5rem;
  }

  .live-metrics span {
    padding: 0.7rem 0.85rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Cosmos-inspired staging direction: immersive orbital hero with NodeBlaster palette. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 1px);
  display: block;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(5rem, 8vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 8, 5, 0.78) 42%, rgba(255, 128, 0, 0.32) 100%),
    linear-gradient(18deg, rgba(22, 90, 122, 0.34), transparent 42%),
    #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--black) 72%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: clamp(2rem, 7vh, 5.5rem);
  text-align: center;
}

.hero-copy .eyebrow {
  color: rgba(255, 248, 234, 0.62);
}

.hero h1 {
  max-width: none;
  color: #fff6e5;
  font-family: "Trebuchet MS", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 10.8vw, 10.4rem);
  font-weight: 900;
  line-height: 0.84;
  text-shadow:
    0 0 34px rgba(246, 182, 50, 0.32),
    0 12px 62px rgba(0, 0, 0, 0.75);
}

.tagline {
  color: var(--gold);
  text-shadow: 0 0 28px rgba(255, 138, 0, 0.44);
}

.lede {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 234, 0.74);
}

.hero-actions,
.signal-strip {
  justify-content: center;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cosmic-glow,
.ambient-orbit,
.ambient-object {
  position: absolute;
  pointer-events: none;
}

.cosmic-glow {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.75;
}

.glow-cold {
  left: 38%;
  top: 20%;
  background: rgba(64, 184, 255, 0.36);
  animation: driftGlow 15s ease-in-out infinite;
}

.glow-hot {
  right: -8rem;
  top: 6rem;
  background: rgba(255, 128, 0, 0.48);
  animation: driftGlow 18s ease-in-out infinite reverse;
}

.ambient-orbit {
  left: 50%;
  top: 44%;
  width: min(1180px, 112vw);
  height: min(560px, 54vw);
  border: 1px solid rgba(255, 248, 234, 0.14);
  border-color: rgba(255, 248, 234, 0.18) transparent rgba(246, 182, 50, 0.12) rgba(255, 248, 234, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(16deg);
}

.orbit-two {
  width: min(960px, 100vw);
  height: min(430px, 48vw);
  transform: translate(-50%, -50%) rotate(-18deg);
  border-color: rgba(255, 138, 0, 0.18) rgba(255, 248, 234, 0.08) transparent transparent;
}

.ambient-object {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 248, 234, 0.84);
  font-weight: 900;
  border: 1px solid rgba(255, 226, 156, 0.24);
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.28), transparent 1.2rem),
    radial-gradient(circle at 50% 55%, rgba(255, 138, 0, 0.24), rgba(9, 8, 6, 0.96) 68%);
  box-shadow: inset -18px -20px 48px rgba(0, 0, 0, 0.62), 0 0 42px rgba(255, 138, 0, 0.18);
  animation: floatPlanet 9s ease-in-out infinite;
}

.object-a {
  width: clamp(86px, 13vw, 180px);
  height: clamp(86px, 13vw, 180px);
  right: 11%;
  top: 11%;
}

.object-b {
  width: clamp(88px, 16vw, 220px);
  height: clamp(88px, 16vw, 220px);
  left: 8%;
  top: 19%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.22), transparent 1.2rem),
    radial-gradient(circle at 50% 50%, rgba(28, 160, 119, 0.26), rgba(5, 8, 10, 0.96) 68%);
  animation-delay: -3s;
}

.object-c {
  width: clamp(62px, 9vw, 120px);
  height: clamp(62px, 9vw, 120px);
  right: 23%;
  bottom: 14%;
  color: var(--gold-2);
  animation-delay: -6s;
}

.network-card {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: min(420px, 32vw);
  min-height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.72;
  transform: scale(0.78);
  transform-origin: bottom right;
}

.network-card::before {
  display: none;
}

.network-title,
.live-metrics {
  display: none;
}

.orbit-system {
  width: 100%;
  margin: 0;
}

.node {
  background:
    radial-gradient(circle at 36% 26%, rgba(255,255,255,0.22), transparent 0.9rem),
    radial-gradient(circle at 50% 50%, rgba(246, 182, 50, 0.18), rgba(16, 14, 11, 0.95) 62%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 10px);
}

.core {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.95), transparent 0.45rem),
    radial-gradient(circle at 50% 50%, rgba(255, 151, 21, 0.82), rgba(24, 10, 3, 0.94) 68%);
}

.proof-band {
  margin-top: -1rem;
}

@keyframes driftGlow {
  0%, 100% { transform: translate3d(-3%, 1%, 0) scale(1); }
  50% { transform: translate3d(4%, -4%, 0) scale(1.08); }
}

@keyframes floatPlanet {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@media (min-width: 721px) and (max-width: 940px) {
  .hero {
    display: block;
    grid-template-columns: none;
    padding-top: 5.6rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 11vw, 6.6rem);
  }

  .network-card {
    right: 1rem;
    bottom: 2rem;
    width: 320px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 3.8rem 0 3.5rem;
  }

  .hero-copy {
    padding-top: 2rem;
    text-align: left;
  }

  .hero-actions,
  .signal-strip {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .object-a {
    right: -2.8rem;
    top: 4.5rem;
  }

  .object-b {
    left: -2rem;
    top: 9rem;
    opacity: 0.42;
  }

  .object-c,
  .network-card {
    display: none;
  }

  .ambient-orbit {
    top: 24rem;
    width: 620px;
    height: 300px;
  }
}

/* New circuit-board image integration. */
.circuit-hero {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
  border: 1px solid rgba(255, 196, 92, 0.18);
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: saturate(1.1) contrast(1.12) brightness(0.78);
}

.circuit-hero-a {
  left: -5vw;
  bottom: 4vh;
  width: min(440px, 34vw);
  aspect-ratio: 4 / 5;
  transform: rotate(-8deg);
  mask-image: linear-gradient(115deg, black 0 45%, transparent 82%);
}

.circuit-hero-b {
  right: 4vw;
  bottom: -8vh;
  width: min(520px, 38vw);
  aspect-ratio: 16 / 10;
  transform: rotate(5deg);
  opacity: 0.18;
  mask-image: linear-gradient(20deg, transparent 0, black 36% 78%, transparent 100%);
}

.image-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.image-band figure {
  position: relative;
  min-height: clamp(260px, 32vw, 430px);
  margin: 0;
  overflow: hidden;
  background: #0d0c0a;
}

.image-band img,
.spec-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08) brightness(0.78);
}

.image-band figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.62)),
    linear-gradient(90deg, rgba(255, 138, 0, 0.16), transparent 50%);
}

.image-band figcaption {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  color: var(--white);
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0,0,0,0.9);
}

.specs {
  grid-template-columns: 0.85fr 0.8fr 0.75fr;
}

.spec-image {
  min-height: 440px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,0.38);
}

@media (min-width: 721px) and (max-width: 940px) {
  .specs {
    grid-template-columns: 1fr 1fr;
  }

  .spec-image {
    grid-column: 1 / -1;
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .circuit-hero {
    opacity: 0.14;
  }

  .circuit-hero-a {
    width: 70vw;
    left: -25vw;
    bottom: 8vh;
  }

  .circuit-hero-b {
    width: 80vw;
    right: -30vw;
    bottom: 3vh;
  }

  .image-band,
  .specs {
    grid-template-columns: 1fr;
  }

  .image-band figure,
  .spec-image {
    min-height: 260px;
  }
}
