: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;
  --brand-node: #ff5a0a;
  --brand-blaster: #ffd36e;
  --tan: #d8bf8f;
  --ember: #d95112;
  --green: #16d46c;
  --white: #fff8ea;
  --muted: #b8b0a8;
  --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(--brand-blaster);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 138, 0, 0.34));
}

.tm-mark {
  display: inline-block;
  margin-left: 0.04em;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: super;
}

.nodeblaster-wordmark {
  display: inline-block;
  color: var(--brand-blaster);
  font-style: normal;
  white-space: nowrap;
}

.wordmark-node {
  color: var(--brand-node);
}

.wordmark-blaster {
  color: var(--brand-blaster);
}

.nodeblaster-wordmark .tm-mark {
  color: var(--brand-blaster);
}

.brand-tm {
  position: relative;
  top: -0.34em;
  font-size: 0.34em;
}

.market-ticker {
  flex: 1 1 360px;
  min-width: 220px;
  max-width: 520px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: tickerDrift 28s linear infinite;
}

.market-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0 0.9rem;
  border-right: 0;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.88);
}

.ticker-item strong {
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.ticker-item em {
  color: var(--white);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.ticker-item b {
  color: var(--muted);
  font-size: 0.72rem;
}

.ticker-item[data-direction="up"] b {
  color: var(--green);
}

.ticker-item[data-direction="down"] b {
  color: #ff6b43;
}

.ticker-signal strong {
  color: var(--green);
}

.ticker-signal b {
  color: var(--white);
}

@keyframes tickerDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

nav {
  display: flex;
  align-items: center;
  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);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.65rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  color: var(--brand-blaster);
  font-size: 0.9em;
  transition: transform 180ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 0.18rem);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 148px;
  padding: 0.38rem;
  border: 1px solid rgba(255, 211, 110, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 90, 10, 0.08), transparent 54%),
    rgba(12, 10, 8, 0.97);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  padding: 0.68rem 0.72rem;
  color: var(--white);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  content: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--brand-blaster);
  background: rgba(255, 211, 110, 0.07);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown.is-open .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.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(3.2rem, 9.8vw, 8rem);
  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.1rem, 2.35vw, 1.72rem);
  font-weight: 900;
}

.lede {
  max-width: 58ch;
  color: #d5ccc2;
  font-size: clamp(0.96rem, 1.18vw, 1.08rem);
  line-height: 1.7;
}

.usa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 248, 234, 0.14);
  background: rgba(8, 8, 7, 0.38);
  color: #fff6e5;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.usa-badge strong {
  font-weight: 900;
}

.flag-icon {
  flex: 0 0 auto;
  width: 31px;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 248, 234, 0.22), 0 0 14px rgba(255, 138, 0, 0.18);
  display: block;
}

.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-coin {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 86%;
  object-fit: contain;
  border-radius: 50%;
  filter:
    drop-shadow(0 0 16px rgba(255, 190, 60, 0.52))
    drop-shadow(0 0 34px rgba(255, 138, 0, 0.34));
}

.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);
  transform-origin: 50% 50%;
  animation: collideNode 5.8s cubic-bezier(.62, 0, .18, 1) infinite;
}

.node b {
  max-width: 78%;
  color: #f4eadf;
  font-size: clamp(0.58rem, 1.28vw, 0.78rem);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 1px 10px black;
}

.node-1 { --tx: 0%; --ty: 88%; left: 39%; top: 5%; animation-delay: -1s; }
.node-2 { --tx: -78%; --ty: 24%; right: 5%; top: 28%; animation-delay: -2.2s; }
.node-3 { --tx: -58%; --ty: -58%; right: 13%; bottom: 12%; animation-delay: -0.4s; }
.node-4 { --tx: 64%; --ty: -58%; left: 18%; bottom: 8%; animation-delay: -3.2s; }
.node-5 { --tx: 92%; --ty: 12%; left: 4%; top: 31%; animation-delay: -1.7s; }

.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 58 236 C 150 174, 210 194, 238 236 C 214 268, 144 292, 76 342");
  animation: collideParticle 3.4s cubic-bezier(.65, 0, .18, 1) infinite;
}

.particle-2 { offset-path: path("M 448 138 C 382 184, 332 196, 282 238 C 316 270, 394 276, 466 240"); animation-delay: -0.9s; }
.particle-3 { offset-path: path("M 438 398 C 368 342, 334 302, 282 282 C 306 246, 382 212, 452 178"); animation-delay: -1.8s; }
.particle-4 { offset-path: path("M 118 402 C 174 328, 214 306, 238 282 C 206 254, 142 232, 74 182"); animation-delay: -2.7s; }

.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(1.75rem, 4vw, 3.2rem);
  line-height: 1.02;
  color: #fff4dc;
}

.proof-band p,
.process p,
.spec-copy p,
.reserve p {
  color: var(--muted);
  line-height: 1.7;
}

.proof-copy {
  display: grid;
  gap: 1rem;
}

.proof-copy p:first-child {
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 800;
}

.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.3rem;
}

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: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--panel-2);
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  color: var(--white);
  text-align: left;
  overflow-wrap: anywhere;
}

.technical-spec-list {
  align-self: stretch;
  align-content: start;
}

.technical-spec-list div {
  padding: 1.05rem 1.1rem;
}

.technical-spec-list span {
  color: var(--tan);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.technical-spec-list strong {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.48;
}

.reserve {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 1.5rem;
  align-items: start;
  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.45rem, 2.8vw, 2.4rem);
}

.reserve p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  min-width: 0;
  align-items: start;
}

.contact-form label {
  display: grid;
  grid-template-rows: 0.9rem auto;
  gap: 0.45rem;
  min-width: 0;
}

.contact-form span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  display: block;
  appearance: none;
  width: 100%;
  border: 1px solid rgba(255, 191, 73, 0.18);
  border-radius: 0;
  background: rgba(8, 8, 7, 0.56);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 0.9rem;
  outline: none;
}

.contact-form input {
  height: 46px;
  line-height: 1.2;
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 211, 106, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
}

.contact-form-message,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: 0.2rem;
}

@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 collideNode {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    filter: brightness(1);
  }
  32% {
    transform: translate(calc(var(--tx) * 0.5), calc(var(--ty) * 0.5)) scale(1.02);
  }
  46% {
    transform: translate(var(--tx), var(--ty)) scale(0.92, 1.08);
    filter: brightness(1.36);
  }
  55% {
    transform: translate(calc(var(--tx) * 0.78), calc(var(--ty) * 0.78)) scale(1.08, 0.92);
    filter: brightness(1.12);
  }
  72% {
    transform: translate(calc(var(--tx) * -0.14), calc(var(--ty) * -0.14)) scale(0.98);
  }
}

@keyframes collideParticle {
  0% {
    offset-distance: 0%;
    opacity: 0;
    transform: scale(0.68);
  }
  12%, 78% {
    opacity: 1;
  }
  52% {
    offset-distance: 54%;
    transform: scale(1.34);
    filter: drop-shadow(0 0 18px rgba(22, 212, 108, 1));
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
    transform: scale(0.72);
  }
}

@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;
  }

  .market-ticker {
    order: 3;
    flex-basis: auto;
    width: 100%;
    max-width: none;
  }

  .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 minmax(0, 1fr);
  }

  .contact-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .site-header,
  .hero,
  .proof-band,
  .process,
  .specs,
  .reserve {
    width: min(100% - 22px, var(--max));
  }

  .site-header nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
    overflow: visible;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: translate(0, -7px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: translate(0, 0);
  }

  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(3rem, 6vw, 3.8rem);
  }

  .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(2rem, 3.8vw, 3rem) 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(0.25rem, 1.5vh, 1rem);
  text-align: center;
}

.hero-copy .eyebrow {
  color: rgba(255, 248, 234, 0.62);
}

.hero h1 {
  max-width: none;
  color: #d78a22;
  font-family: "Trebuchet MS", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(3.25rem, 8.6vw, 8.4rem);
  font-weight: 900;
  line-height: 0.84;
  background:
    linear-gradient(105deg, transparent 0 13%, rgba(255,245,205,0.72) 16%, transparent 22% 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 210, 99, 0.92), transparent 22%),
    radial-gradient(circle at 78% 70%, rgba(106, 47, 13, 0.78), transparent 26%),
    linear-gradient(180deg,
      #ffe79b 0%,
      #f6b632 16%,
      #c87418 38%,
      #7b330c 60%,
      #2a1205 82%,
      #080402 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 241, 184, 0.55),
    0 4px 0 rgba(45, 18, 3, 0.9),
    0 16px 34px rgba(0, 0, 0, 0.82),
    0 0 36px rgba(255, 138, 0, 0.36),
    0 0 72px rgba(112, 55, 10, 0.3);
}

.hero h1 .wordmark-node,
.hero h1 .wordmark-blaster {
  -webkit-text-fill-color: currentColor;
  background: none;
  text-shadow:
    0 3px 0 rgba(45, 18, 3, 0.9),
    0 16px 34px rgba(0, 0, 0, 0.82),
    0 0 36px rgba(255, 90, 10, 0.28);
}

.hero-tm {
  position: relative;
  top: -0.46em;
  font-size: 0.13em;
  color: var(--brand-blaster);
  -webkit-text-fill-color: var(--brand-blaster);
  text-shadow:
    0 1px 0 rgba(45, 18, 3, 0.9),
    0 0 12px rgba(255, 138, 0, 0.32);
}

.tagline {
  color: #fff6e5;
  text-shadow: 0 0 28px rgba(255, 138, 0, 0.44);
}

.hero-role {
  margin: -0.55rem 0 0.75rem;
  color: var(--orange);
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 90, 10, 0.4);
}

.lede {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 234, 0.74);
}

.hero .usa-badge {
  margin-left: auto;
  margin-right: auto;
}

.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: 24%;
  top: 18%;
  color: var(--gold-2);
  animation-delay: -6s;
}

.product-device {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 70px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 34px rgba(255, 138, 0, 0.22));
}

.product-device-main {
  right: 10%;
  top: 49%;
  width: clamp(220px, 28vw, 430px);
  transform: translateY(-50%) rotate(-4deg);
  opacity: 0.44;
  animation: floatProduct 10s ease-in-out infinite;
}

.product-device-port {
  left: 9%;
  bottom: 9%;
  width: clamp(180px, 24vw, 340px);
  transform: rotate(7deg);
  opacity: 0.28;
  mix-blend-mode: screen;
  animation: floatProduct 12s ease-in-out infinite reverse;
}

.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;
}

.badge-teaser {
  position: relative;
  display: grid;
  place-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(-2.4rem, -4vw, -1.1rem) auto clamp(2.2rem, 5vw, 4rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  overflow: hidden;
  border-block: 1px solid rgba(255, 188, 76, 0.16);
  background:
    radial-gradient(circle at center, rgba(255, 191, 73, 0.24), transparent 34%),
    radial-gradient(circle at center, rgba(217, 81, 18, 0.16), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255, 188, 76, 0.08), transparent);
}

.badge-teaser::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 153, 41, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 153, 41, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  opacity: 0.55;
}

.badge-teaser picture {
  display: block;
  width: min(66vw, 520px);
}

.badge-teaser img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 28px 50px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 38px rgba(255, 145, 28, 0.28));
}

@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); }
}

@keyframes floatProduct {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}

@media (min-width: 721px) and (max-width: 940px) {
  .hero {
    display: block;
    grid-template-columns: none;
    padding-top: 5.6rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8.8vw, 5.4rem);
  }

  .network-card {
    right: 1rem;
    bottom: 2rem;
    width: 320px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 1.4rem 0 3.2rem;
  }

  .hero-copy {
    padding-top: 0.25rem;
    text-align: left;
  }

  .hero-actions,
  .signal-strip {
    justify-content: flex-start;
  }

  .hero .usa-badge {
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .badge-teaser {
    width: min(100% - 22px, var(--max));
    margin-top: 0.2rem;
    padding: 1.1rem 0.5rem 1.4rem;
  }

  .badge-teaser picture {
    width: min(88vw, 360px);
  }

  .object-a {
    right: -2.8rem;
    top: 4.5rem;
  }

  .object-b {
    left: -2rem;
    top: 9rem;
    opacity: 0.42;
  }

  .object-c,
  .network-card,
  .product-device-port {
    display: none;
  }

  .product-device-main {
    left: auto;
    right: -5.5rem;
    top: 14rem;
    width: 260px;
    transform: none;
    opacity: 0.26;
  }

  .ambient-orbit {
    top: 24rem;
    width: 620px;
    height: 300px;
  }
}

/* New circuit-board image integration. */
.hardware-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  width: min(var(--max), calc(100% - 32px));
  margin: 1px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
  overflow: hidden;
}

.hardware-gallery::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 138, 0, 0.22), transparent 22rem),
    linear-gradient(120deg, rgba(255, 196, 92, 0.1), transparent 42%);
  mix-blend-mode: screen;
}

.hardware-card {
  position: relative;
  z-index: 1;
  min-height: clamp(280px, 28vw, 420px);
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #10100f;
}

.hardware-card-large {
  grid-row: span 2;
  min-height: clamp(440px, 52vw, 720px);
}

.hardware-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08) brightness(0.72);
  transform: scale(1.01);
}

.fan-mod-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 196, 92, 0.24), transparent 0 9%, rgba(255, 138, 0, 0.08) 10% 18%, transparent 19%),
    repeating-conic-gradient(from 8deg at 50% 45%, rgba(255, 196, 92, 0.2) 0deg 12deg, transparent 12deg 32deg),
    linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0.68)),
    #0d0c0a;
}

.fan-mod-placeholder::before {
  content: "";
  position: absolute;
  width: min(220px, 44%);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 196, 92, 0.42);
  border-radius: 50%;
  box-shadow:
    inset 0 0 34px rgba(255, 138, 0, 0.18),
    0 0 48px rgba(255, 138, 0, 0.22);
}

.fan-mod-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 196, 92, 0.12), transparent),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 255, 255, 0.035) 10px 11px);
  opacity: 0.72;
}

.fan-mod-placeholder span {
  position: relative;
  z-index: 1;
  padding: 0.42rem 0.64rem;
  border: 1px solid rgba(255, 196, 92, 0.45);
  background: rgba(7, 7, 7, 0.72);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hardware-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(255, 138, 0, 0.14), transparent 48%);
}

.hardware-card figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  bottom: clamp(1rem, 2.4vw, 1.6rem);
}

.hardware-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hardware-card strong {
  display: block;
  max-width: 34ch;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.18;
  text-shadow: 0 2px 20px rgba(0,0,0,0.92);
}

.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: minmax(260px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
}

.spec-image {
  grid-column: 1 / -1;
  min-height: 320px;
  max-height: 420px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,0.38);
}

.configurator {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.umbrel {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 4.5rem;
}

.umbrel-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 1.2rem;
}

.umbrel-copy h2 {
  margin-bottom: 0;
}

.umbrel-copy p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.umbrel-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 1px;
  margin: 0 0 1px;
  border: 1px solid var(--line);
  background: var(--line);
  overflow: hidden;
}

.umbrel-screen::before {
  content: "";
  position: absolute;
  inset: -18% -8% auto 38%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.24), transparent 62%);
  filter: blur(28px);
}

.screen-frame {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(0.55rem, 1.5vw, 0.9rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    #10100f;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  height: 30px;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 196, 92, 0.16);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    rgba(8, 8, 7, 0.82);
}

.screen-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.28);
}

.screen-bar i:first-child {
  background: var(--ember);
}

.screen-bar i:nth-child(2) {
  background: var(--gold);
}

.screen-bar i:nth-child(3) {
  background: var(--green);
}

.screen-frame picture {
  display: block;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid rgba(255, 196, 92, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.screen-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.umbrel-screen figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.8rem;
  margin: 0;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.014)),
    var(--panel);
}

.umbrel-screen figcaption span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.umbrel-screen figcaption strong {
  color: var(--white);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.setup-steps article {
  min-height: 230px;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.014)),
    var(--panel);
}

.setup-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2.4rem;
  border: 1px solid rgba(255, 196, 92, 0.34);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 138, 0, 0.12);
}

.setup-steps p {
  color: var(--muted);
  line-height: 1.6;
}

.node-brief {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.16), transparent 52%),
    var(--line);
  overflow: hidden;
}

.node-brief::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("assets/circuitboard1.jpg") center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.node-brief-copy,
.node-callouts article {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(14, 13, 11, 0.94);
}

.node-brief-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.node-brief-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

.node-brief-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.node-brief-copy p.node-control-callout {
  margin: 1rem 0 0;
  padding-left: 0.9rem;
  border-left: 3px solid var(--orange);
  color: var(--brand-node);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.node-callouts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  background: var(--line);
}

.node-callouts article {
  min-height: 176px;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.node-callouts span,
.article-callout-grid span,
.node-type-grid span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 900;
}

.node-callouts h3 {
  margin-bottom: 0.6rem;
}

.node-callouts p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.latency-brief {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 1px auto 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 138, 0, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(31, 131, 171, 0.12), transparent 42%),
    var(--panel);
  overflow: hidden;
}

.latency-brief::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("assets/StockCake-Circuit_Board_Close-up-1622164-standard.jpg") center / cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: screen;
}

.latency-intro,
.latency-grid,
.latency-warning {
  position: relative;
  z-index: 1;
}

.latency-intro {
  max-width: 900px;
  margin-bottom: 1.4rem;
}

.latency-intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 3.4rem);
}

.latency-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.latency-source {
  font-size: 0.88rem;
}

.latency-source a {
  color: var(--gold-2);
  font-weight: 900;
}

.latency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.latency-grid article {
  min-height: 250px;
  padding: 1.25rem;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(9, 8, 7, 0.92);
}

.latency-grid span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.latency-grid h3 {
  color: var(--white);
}

.latency-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.badge-plaque,
.eyebrow.badge-plaque,
.latency-grid .badge-plaque {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.15rem;
  padding: 0.46rem 0.86rem 0.4rem 0.96rem;
  color: var(--white);
  font-family: "Bahnschrift", "Aptos", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.2), rgba(217, 81, 18, 0.1)),
    #211c16;
  border: 1px solid rgba(255, 211, 106, 0.34);
  box-shadow:
    5px 4px 0 rgba(217, 81, 18, 0.32),
    0 12px 24px rgba(0, 0, 0, 0.28);
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%, 7px 50%);
  transform: rotate(-0.4deg);
}

.latency-grid .badge-plaque {
  margin-bottom: 1.55rem;
}

.latency-warning {
  margin-top: 1px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 138, 0, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.2), rgba(255,255,255,0.025));
}

.latency-warning strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.latency-warning p {
  max-width: 850px;
  margin: 0.6rem 0 0;
  color: #e7ded2;
  line-height: 1.65;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer .trademark-notice {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  color: var(--dim);
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 800;
}

.footer-links {
  margin-top: 0.45rem !important;
}

.back-to-top {
  position: fixed;
  right: max(1rem, calc((100vw - var(--max)) / 2 + 1rem));
  bottom: 1.2rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 234, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 231, 155, 0.18), rgba(123, 51, 12, 0.28)),
    rgba(8, 8, 7, 0.76);
  color: #fff6e5;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(255, 138, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(14px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(255, 211, 106, 0.58);
  transform: translateY(-2px);
}

.article-page {
  background:
    linear-gradient(120deg, rgba(255, 138, 0, 0.13), transparent 28%),
    linear-gradient(280deg, rgba(31, 131, 171, 0.13), transparent 34%),
    #080807;
}

.field-guide {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.newsroom-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(2rem, 5vw, 4.5rem) 0 1.2rem;
}

.newsroom-masthead {
  position: relative;
  align-content: end;
  min-height: 420px;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255, 188, 76, 0.22);
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(255, 153, 41, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(255, 153, 41, 0.09) 1px, transparent 1px),
    url("assets/circuitboard1.jpg") center / cover;
  background-size: auto, 42px 42px, 42px 42px, cover;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7), 0 24px 70px rgba(0, 0, 0, 0.36);
}

.newsroom-masthead h1 {
  max-width: 620px;
  margin: 1rem 0;
  color: #fff4dd;
  font-family: "Trebuchet MS", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5.6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.newsroom-masthead > p:last-child {
  max-width: 610px;
  color: rgba(255, 247, 231, 0.76);
  line-height: 1.65;
}

.official-release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 211, 106, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 169, 47, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(114, 70, 11, 0.22), transparent 55%),
    #11100d;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.05);
}

.official-release-card::after {
  content: "NB / WIRE";
  position: absolute;
  right: -0.4rem;
  bottom: -0.65rem;
  color: rgba(255, 211, 106, 0.055);
  font-family: "Trebuchet MS", "Bahnschrift", sans-serif;
  font-size: clamp(4.4rem, 9vw, 9rem);
  font-weight: 1000;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.release-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.draft-stamp {
  padding: 0.38rem 0.62rem;
  border: 1px solid #ff5a0a;
  color: #fff;
  background: rgba(255, 90, 10, 0.18);
  transform: rotate(-2deg);
}

.official-release-card time,
.official-release-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.official-release-card h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0.6rem 0 1rem;
  color: #fff9ec;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.02;
}

.official-release-card p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: rgba(255, 248, 234, 0.7);
  line-height: 1.6;
}

.official-release-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  gap: 0.6rem;
  margin: 1.35rem 0 0.75rem;
  color: var(--gold-2);
  font-weight: 1000;
  text-decoration: none;
}

.steam-whistle-banner {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  margin: clamp(2.8rem, 7vw, 6rem) 0 1rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
  border-block: 1px solid rgba(255, 188, 76, 0.25);
  background: linear-gradient(90deg, rgba(255, 90, 10, 0.16), rgba(255, 211, 106, 0.04) 55%, transparent);
}

.steam-whistle-banner h2 {
  margin: 0.45rem 0 0.55rem;
  color: #fff7e6;
  font-family: "Trebuchet MS", "Bahnschrift", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.steam-whistle-banner p:last-child {
  max-width: 740px;
  color: var(--muted);
}

.whistle-mark {
  position: relative;
  width: 112px;
  height: 112px;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(255, 153, 41, 0.22), inset 0 0 30px rgba(255, 153, 41, 0.12);
}

.whistle-mark::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 29px;
  width: 63px;
  height: 44px;
  border: 9px solid #ffd36e;
  border-right: 0;
  border-radius: 28px 0 0 28px;
  transform: rotate(-8deg);
}

.whistle-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 35px;
  width: 38px;
  height: 25px;
  border-top: 9px solid #ff5a0a;
  border-right: 9px solid #ff5a0a;
  transform: skewX(-18deg);
}

.release-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 90, 10, 0.14), transparent 32%),
    linear-gradient(180deg, #080807, #0d0b08 64%, #070707);
}

.press-release {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.release-warning {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding: 1rem 1.2rem;
  border: 1px solid #ff5a0a;
  color: #fff;
  background: repeating-linear-gradient(135deg, rgba(255, 90, 10, 0.18) 0 10px, rgba(0, 0, 0, 0.24) 10px 20px);
}

.release-warning strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-warning span {
  color: rgba(255, 255, 255, 0.72);
}

.release-header {
  padding: clamp(1.5rem, 4vw, 3.5rem) 0;
  border-block: 1px solid rgba(255, 211, 106, 0.25);
}

.release-status {
  margin: 1.2rem 0;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.release-header h1 {
  max-width: 930px;
  color: #fff7e6;
  font-family: "Trebuchet MS", "Bahnschrift", sans-serif;
  font-size: clamp(2.5rem, 6.3vw, 5.8rem);
  line-height: 0.94;
}

.release-deck {
  max-width: 790px;
  margin-top: 1.5rem;
  color: rgba(255, 248, 234, 0.7);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.release-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4.5rem) 0;
}

.release-copy p,
.release-copy li {
  color: rgba(255, 248, 234, 0.78);
  font-size: 1.04rem;
  line-height: 1.78;
}

.release-copy h2 {
  margin: 2.8rem 0 1rem;
  color: #fff7e6;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.release-copy ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.25rem;
}

.release-copy li::marker {
  color: #ff5a0a;
}

.release-copy blockquote {
  margin: 2.7rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 5px solid #ff5a0a;
  color: #fff2d8;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.72rem);
  line-height: 1.5;
  background: rgba(255, 153, 41, 0.08);
}

.release-hold-note {
  margin-top: 3rem;
  padding: 1.2rem;
  border: 1px dashed rgba(255, 90, 10, 0.65);
  background: rgba(255, 90, 10, 0.07);
}

.release-contact {
  display: grid;
  gap: 0.25rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 211, 106, 0.2);
}

.release-contact span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-contact a,
.release-end {
  color: var(--gold-2);
}

.release-end {
  margin-top: 3rem;
  text-align: center;
}

@media (max-width: 820px) {
  .newsroom-intro {
    grid-template-columns: 1fr;
  }

  .newsroom-masthead,
  .official-release-card {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .steam-whistle-banner {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .whistle-mark {
    width: 64px;
    height: 64px;
  }

  .whistle-mark::before {
    left: 10px;
    top: 17px;
    width: 36px;
    height: 25px;
    border-width: 6px;
    border-right: 0;
  }

  .whistle-mark::after {
    right: 4px;
    top: 20px;
    width: 23px;
    height: 16px;
    border-width: 6px;
  }
}

.top-news-carousel {
  position: relative;
  margin: clamp(1rem, 2vw, 1.7rem) 0 clamp(1.35rem, 3vw, 2.4rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  border: 1px solid rgba(255, 188, 76, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 147, 26, 0.13), transparent 42%),
    radial-gradient(circle at 92% 0%, rgba(255, 210, 88, 0.13), transparent 32%),
    rgba(10, 10, 10, 0.86);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.32);
}

.carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-head h2 {
  max-width: 720px;
  color: #fff6e5;
  font-family: "Trebuchet MS", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  line-height: 0.98;
}

.carousel-controls {
  display: flex;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 188, 76, 0.42);
  color: var(--gold-2);
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(4, 4, 4, 0.72);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.38);
  cursor: pointer;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: #17100a;
  background: linear-gradient(135deg, #ffd36f, #ff941f);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 26%);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 188, 76, 0.65) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  padding-bottom: 0.35rem;
}

.carousel-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 188, 76, 0.24);
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(150deg, rgba(255, 153, 41, 0.11), transparent 42%),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.carousel-card:hover,
.carousel-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 205, 92, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.carousel-card img {
  width: 100%;
  height: 172px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
  padding: 0.7rem;
  display: block;
  border-bottom: 1px solid rgba(255, 188, 76, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 145, 28, 0.12), rgba(0, 0, 0, 0) 48%),
    #050505;
}

.carousel-card span {
  display: inline-flex;
  width: fit-content;
  margin: 1rem 1rem 0.75rem;
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-card strong {
  display: block;
  margin: 0 1rem 1.2rem;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.14;
}

.field-guide-hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  display: grid;
  align-content: center;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.field-guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28), var(--black)),
    url("assets/StockCake-Intricate_Circuit_Design-2456152-standard.jpg") center / cover no-repeat;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

.field-guide-hero h1 {
  max-width: 980px;
  margin-bottom: 1.4rem;
  color: #fff6e5;
  font-family: "Trebuchet MS", "Bahnschrift", "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  line-height: 0.92;
  text-shadow: 0 22px 70px rgba(0,0,0,0.72);
}

.field-guide-hero > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 248, 234, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.legal-hero {
  min-height: 54svh;
}

.legal-summary {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.7rem);
}

.legal-section p {
  overflow-wrap: anywhere;
}

.article-source {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-source a {
  color: var(--gold-2);
  font-weight: 900;
}

.mining-news-hero {
  background:
    linear-gradient(125deg, rgba(255, 155, 36, 0.18), transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(255, 212, 94, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.42)),
    url("assets/circuitboard1.jpg") center / cover;
}

.mining-news-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 153, 41, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 153, 41, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 74%, transparent);
  opacity: 0.38;
}

.flipboard-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 3rem;
}

.flipboard-intro article {
  padding: 1.25rem;
  border: 1px solid rgba(255, 188, 76, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 155, 36, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    var(--panel);
}

.flipboard-intro strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.25;
}

.flipboard-intro a {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
}

.flipboard-intro a:hover {
  color: var(--white);
}

.silicon-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.2rem;
  padding: 0.26rem 0.55rem;
  color: #16100a;
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffd36f, #ff941f);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.38);
}

.news-board {
  padding: 3rem 0 4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.news-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 188, 76, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 155, 36, 0.11), transparent 40%),
    var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.news-card-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 720px;
}

.news-card-wide {
  grid-column: span 2;
}

.news-card-tall {
  grid-row: span 2;
  min-height: 620px;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 188, 76, 0.2);
  background: #0c0c0c;
}

.news-card img.news-source-preview {
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
  padding: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 145, 28, 0.12), rgba(0, 0, 0, 0) 48%),
    #050505;
}

.news-card-feature img {
  height: 340px;
  object-fit: contain;
  object-position: center center;
  padding: 1rem;
  background:
    radial-gradient(circle at center, rgba(255, 145, 28, 0.16), transparent 58%),
    #080808;
}

.news-card-tall img {
  height: 280px;
  object-fit: contain;
  padding: 1.2rem;
  background:
    radial-gradient(circle at center, rgba(255, 145, 28, 0.2), transparent 58%),
    #090909;
}

.publisher-watch .news-card img {
  height: 240px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
  padding: 0.85rem;
  background:
    radial-gradient(circle at center, rgba(255, 145, 28, 0.12), transparent 62%),
    #050505;
}

.news-card-body {
  padding: 1.15rem;
}

.news-kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.news-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.news-card a,
.source-list a {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: none;
}

.silicon-sources {
  display: block;
}

.silicon-sources > div:first-child {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.silicon-sources h2 {
  max-width: 720px;
  line-height: 1.02;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.source-list a {
  margin-top: 0;
  padding: 0.62rem 0.8rem;
  border: 1px solid rgba(255, 188, 76, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.article-callout-grid,
.node-type-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.article-callout-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
}

.article-callout-grid article,
.node-type-grid article {
  background:
    linear-gradient(150deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    var(--panel);
}

.article-callout-grid article {
  min-height: 210px;
  padding: 1.35rem;
}

.article-callout-grid span,
.node-type-grid span {
  margin-bottom: 2rem;
  font-size: 0.78rem;
  font-family: inherit;
  text-transform: uppercase;
}

.article-callout-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.2;
}

.guide-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.guide-section h2 {
  font-size: clamp(1.75rem, 3.8vw, 3.4rem);
}

.guide-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.guide-section-dark {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 138, 0, 0.11), transparent 42%),
    var(--panel);
}

.guide-callout {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-left: 3px solid var(--orange);
  background: rgba(0,0,0,0.24);
}

.guide-callout strong {
  color: var(--gold-2);
}

.guide-callout p {
  margin: 0.5rem 0 0;
}

.node-types {
  padding: 5rem 0 3rem;
}

.node-type-grid {
  grid-template-columns: repeat(4, 1fr);
}

.node-type-grid article {
  min-height: 300px;
  padding: 1.25rem;
}

.node-type-grid h3 {
  color: var(--white);
}

.node-type-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.solo-mining-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin: 2rem 0 3rem;
}

.solo-mining-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.solo-mining-copy strong {
  color: var(--white);
}

.solo-mining-shot {
  margin: 0;
}

.solo-mining-shot picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(42, 205, 255, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(42, 205, 255, 0.16), transparent 44%),
    #06080b;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(42, 205, 255, 0.12);
}

.solo-mining-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.solo-mining-shot figcaption {
  margin-top: 0.85rem;
  color: rgba(255, 248, 234, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  margin: 2rem 0 4rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(255, 138, 0, 0.2), transparent 45%),
    var(--panel);
}

.article-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
}

.article-cta.silicon-sources {
  display: block;
}

.config-intro {
  max-width: 860px;
  margin-bottom: 2rem;
}

.config-intro h2 {
  margin-bottom: 1rem;
}

.config-intro .config-copy {
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.info-popover {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 0.35rem;
}

.info-toggle {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 1px solid rgba(255, 211, 106, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.34), transparent 34%),
    linear-gradient(180deg, #3a2710, #17120d);
  color: var(--gold-2);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.36),
    0 0 16px rgba(255, 138, 0, 0.24);
}

.info-toggle:hover,
.info-toggle:focus-visible,
.info-toggle[aria-expanded="true"] {
  border-color: rgba(255, 248, 234, 0.76);
  color: var(--white);
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 138, 0, 0.22),
    0 0 22px rgba(255, 138, 0, 0.36);
}

.info-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.7rem);
  z-index: 8;
  display: grid;
  gap: 0.35rem;
  width: min(420px, 100%);
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 211, 106, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.11), rgba(217, 81, 18, 0.08)),
    #15120f;
  color: var(--muted);
  box-shadow: 0 20px 42px rgba(0,0,0,0.48);
  transform: translateY(-0.2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.info-panel strong {
  color: var(--gold-2);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.info-panel span {
  line-height: 1.55;
}

.info-popover.is-open .info-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.config-copy.is-help-open,
.config-copy:has(.info-popover.is-open) {
  margin-bottom: 8.5rem;
}

.config-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}

.config-form,
.cart-summary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    var(--panel);
}

.config-form {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1px;
  background-color: var(--line);
}

.config-form fieldset {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: clamp(3.45rem, 4vw, 3.9rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  border: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.014)),
    #151412;
}

.config-form legend {
  position: absolute;
  top: clamp(0.9rem, 1.5vw, 1.1rem);
  left: clamp(1rem, 2vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 1.35rem);
  margin: 0;
  padding: 0.48rem 0.9rem 0.42rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.2), rgba(217, 81, 18, 0.1)),
    #211c16;
  border: 1px solid rgba(255, 211, 106, 0.34);
  box-shadow:
    6px 5px 0 rgba(217, 81, 18, 0.32),
    0 14px 26px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%, 7px 50%);
  transform: translateX(-0.35rem) rotate(-0.4deg);
}

.coin-option {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  min-height: 74px;
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.075);
  background: rgba(0,0,0,0.18);
  cursor: pointer;
}

.coin-option + .coin-option {
  margin-top: 0.75rem;
}

.coin-option input {
  accent-color: var(--orange);
  width: 1.1rem;
  height: 1.1rem;
}

.coin-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #170d03;
  background: linear-gradient(180deg, var(--gold-2), var(--orange));
  font-weight: 900;
  font-size: 0.72rem;
  box-shadow: 0 0 22px rgba(255, 138, 0, 0.22);
}

.coin-option strong,
.coin-option small {
  display: block;
}

.coin-option small,
.mode-note,
.cart-disclaimer {
  color: var(--muted);
}

.mode-switch {
  display: grid;
  gap: 0.85rem;
}

.mode-switch label {
  display: block;
  cursor: pointer;
}

.mode-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-switch span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  font-weight: 900;
}

.mode-switch span::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.mode-switch input:checked + span {
  color: var(--gold-2);
  border-color: rgba(255, 188, 65, 0.42);
  background: linear-gradient(90deg, rgba(255, 138, 0, 0.18), rgba(255,255,255,0.035));
}

.mode-switch input:checked + span::after {
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.58);
}

.mode-note {
  margin: 1rem 0 0;
  line-height: 1.6;
}

.support-list {
  display: grid;
  gap: 0.8rem;
}

.support-list > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--muted);
}

.support-list strong {
  color: var(--gold-2);
}

.cart-summary {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.cart-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-topline span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 900;
}

.cart-topline strong {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.cart-summary h3 {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 1.45rem;
}

.cart-summary p {
  color: var(--muted);
  line-height: 1.65;
}

.cart-summary dl {
  margin: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cart-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-summary dt {
  color: var(--muted);
}

.cart-summary dd {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  text-align: right;
}

.cart-button {
  width: 100%;
}

.cart-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.6);
  opacity: 0.65;
}

.cart-status,
.cart-disclaimer {
  display: block;
  margin-top: 0.85rem;
  line-height: 1.45;
}

.cart-status {
  color: var(--gold-2);
}

.cart-status:empty {
  display: none;
}

.nodeblaster-checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 138, 0, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(151, 65, 24, 0.18), transparent 24rem),
    var(--black);
  color: var(--white);
}

.checkout-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(0.9rem, 2.4vw, 1.55rem) 0 clamp(2.4rem, 5.6vw, 4rem);
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.checkout-brand-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.36rem;
}

.checkout-brand-context {
  color: var(--muted);
  font-weight: 700;
}

.checkout-brand img {
  width: 46px;
  height: auto;
}

.checkout-panel {
  margin-top: clamp(0.95rem, 3.2vw, 1.9rem);
  padding: clamp(0.8rem, 3.2vw, 1.75rem);
  border: 1px solid rgba(255, 186, 73, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(18, 15, 12, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.checkout-panel h1 {
  max-width: 700px;
  margin: 0.8rem 0 1.25rem;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  letter-spacing: 0;
}

.checkout-panel .woocommerce {
  color: var(--white);
  font-size: 0.88rem;
}

.checkout-panel .woocommerce table.shop_table,
.checkout-panel .woocommerce-checkout-review-order-table {
  border-color: rgba(255,255,255,0.16);
  border-radius: 8px;
  overflow: hidden;
}

.checkout-panel .woocommerce table.shop_table th,
.checkout-panel .woocommerce table.shop_table td,
.checkout-panel .woocommerce-checkout-review-order-table th,
.checkout-panel .woocommerce-checkout-review-order-table td {
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.checkout-panel .woocommerce a {
  color: var(--gold-2);
}

.checkout-panel .woocommerce-form-login-toggle,
.checkout-panel .woocommerce-form-coupon-toggle,
.checkout-panel form.woocommerce-form-login,
.checkout-panel form.checkout_coupon {
  display: none !important;
}

.checkout-panel .payment_method_ppcp-axo-gateway {
  display: none !important;
}

.checkout-panel .payment_method_ppcp-gateway label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.checkout-panel .payment_method_ppcp-gateway label::after {
  content: "PayPal";
  display: inline-block;
  padding: 0.16rem 0.42rem 0.18rem;
  border-radius: 4px;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
  color: transparent;
  background:
    linear-gradient(90deg, #003087 0 51%, #009cde 51% 100%) text,
    #fff;
  -webkit-background-clip: text, border-box;
  background-clip: text, border-box;
  -webkit-text-fill-color: transparent;
}

.checkout-panel #customer_details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.checkout-panel #customer_details::before,
.checkout-panel #customer_details::after {
  content: none;
}

.checkout-panel #customer_details .col-1,
.checkout-panel #customer_details .col-2 {
  float: none;
  width: auto;
  max-width: none;
}

.checkout-panel .woocommerce-billing-fields h3,
.checkout-panel .woocommerce-shipping-fields h3 {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 0.86rem;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.15;
}

.checkout-panel #ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  margin: 0;
  line-height: 1.15;
}

.checkout-panel #ship-to-different-address-checkbox {
  flex: 0 0 auto;
  min-height: 0;
  width: 16px;
  height: 16px;
  margin: 0;
}

.checkout-panel .woocommerce button.button,
.checkout-panel .woocommerce a.button,
.checkout-panel .woocommerce #payment #place_order {
  min-height: 22px;
  border: 0;
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  background: linear-gradient(180deg, #ffc14b, #ff8a00);
  color: #170d03;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.05;
}

.checkout-panel .woocommerce input,
.checkout-panel .woocommerce select,
.checkout-panel .woocommerce textarea {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  background: rgba(0,0,0,0.28);
  color: var(--white);
}

.checkout-panel .woocommerce table.shop_table td,
.checkout-panel .woocommerce table.shop_table th {
  padding: 0.72rem 0.82rem;
}

.checkout-panel .woocommerce table.shop_table td.actions {
  padding: 1rem;
}

.checkout-panel .woocommerce table.shop_table td.actions .coupon {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  width: min(100%, 336px);
}

.checkout-panel .woocommerce table.shop_table td.actions .coupon::after {
  content: none;
}

.checkout-panel .woocommerce table.shop_table td.actions .coupon label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.checkout-panel .woocommerce table.shop_table td.actions .coupon .input-text {
  flex: 1 1 216px;
  min-width: 0;
  min-height: 22px;
  padding: 0.3rem 0.5rem;
  border-color: rgba(255, 211, 106, 0.26);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.34);
  font-size: 0.64rem;
  line-height: 1.05;
}

.checkout-panel .woocommerce img.nodeblaster-cart-badge,
.checkout-panel .woocommerce table.shop_table .product-thumbnail img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0,0,0,0.22);
}

@media (max-width: 620px) {
  .checkout-panel #customer_details {
    grid-template-columns: 1fr;
  }

  .checkout-panel .woocommerce table.shop_table td.actions .coupon {
    flex-direction: column;
    width: 100%;
  }

  .checkout-panel .woocommerce table.shop_table td.actions .coupon .button {
    width: 100%;
  }
}

@media (min-width: 721px) and (max-width: 940px) {
  .specs {
    grid-template-columns: 1fr 1fr;
  }

  .spec-image {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .carousel-track {
    grid-auto-columns: minmax(260px, 42%);
  }

  .config-panel,
  .config-form,
  .umbrel-copy,
  .umbrel-screen,
  .node-brief,
  .latency-grid,
  .article-callout-grid,
  .flipboard-intro,
  .news-grid,
  .guide-section,
  .node-type-grid,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .news-card-feature,
  .news-card-wide,
  .news-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .news-card img,
  .news-card-feature img,
  .news-card-tall img {
    height: 240px;
  }

  .setup-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@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,
  .hardware-gallery,
  .specs,
  .config-panel,
  .config-form,
  .umbrel-copy,
  .umbrel-screen,
  .setup-steps,
  .node-brief,
  .latency-grid,
  .article-callout-grid,
  .flipboard-intro,
  .news-grid,
  .guide-section,
  .node-type-grid,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .image-band figure,
  .hardware-card,
  .hardware-card-large,
  .spec-image {
    min-height: 260px;
  }

  .hardware-card-large {
    grid-row: auto;
  }

  .node-brief,
  .latency-brief,
  .site-footer,
  .field-guide {
    width: min(100% - 22px, var(--max));
  }

  .top-news-carousel {
    margin-top: 0.85rem;
    padding: 0.85rem;
  }

  .carousel-head {
    align-items: start;
    flex-direction: column;
  }

  .carousel-track {
    grid-auto-columns: minmax(246px, 82%);
  }

  .carousel-card {
    min-height: 330px;
  }

  .carousel-card img {
    height: 155px;
  }

  .reserve {
    grid-template-columns: 1fr;
  }

  .reserve img {
    width: 86px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
  }

  .node-brief-copy,
  .guide-section-dark,
  .article-cta {
    padding: 1rem;
  }

  .node-callouts article,
  .latency-grid article,
  .article-callout-grid article,
  .news-card,
  .news-card-feature,
  .news-card-wide,
  .news-card-tall,
  .node-type-grid article {
    min-height: auto;
  }

  .news-card-feature,
  .news-card-wide,
  .news-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .news-card img,
  .news-card-feature img,
  .news-card-tall img {
    height: 220px;
  }

  .field-guide-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .field-guide-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  nav {
    gap: 0.8rem;
    font-size: 0.72rem;
  }
}

/* Logo prominence pass. */
.brand img {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.48));
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(0.5rem, 5vh, 3rem);
  z-index: -1;
  width: min(72vw, 640px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: url("assets/logo-transparent-1.png") center / contain no-repeat;
  opacity: 0.08;
  filter: blur(0.5px) drop-shadow(0 0 70px rgba(255, 138, 0, 0.45));
}

.hero-crest {
  display: block;
  width: clamp(116px, 15vw, 210px);
  height: auto;
  margin: 0 auto 1.2rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 26px rgba(255, 138, 0, 0.55))
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.58));
}

.cart-summary {
  position: relative;
  overflow: hidden;
}

.cart-summary::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 260px;
  aspect-ratio: 1;
  background: url("assets/logo-transparent-1.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.cart-seal {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 0 1rem auto;
  filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.38));
}

@media (min-width: 721px) and (max-width: 940px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero-crest {
    width: clamp(100px, 14vw, 142px);
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero-copy::before {
    left: auto;
    right: -7rem;
    top: 0.5rem;
    width: 330px;
    transform: none;
    opacity: 0.1;
  }

  .hero-crest {
    width: 104px;
    margin: 0 0 1rem;
  }

  .cart-seal {
    width: 78px;
    height: 78px;
    margin-left: 0;
  }
}
