:root {
  --ink: #090b0d;
  --obsidian: #0f1216;
  --graphite: #181c22;
  --panel: rgba(16, 19, 24, 0.76);
  --panel-solid: #15191f;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(8, 11, 13, 0.12);
  --mist: #f4efe5;
  --soft: rgba(244, 239, 229, 0.74);
  --muted: #8d938f;
  --gold: #d6aa48;
  --green: #0b7a55;
  --red: #b82334;
  --blue: #4b91ad;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--mist);
  background: var(--ink);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 34px;
  background: rgba(246, 241, 232, 0.9);
  border-bottom: 1px solid rgba(15,18,22,0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid rgba(15,18,22,0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 82px;
  height: 56px;
  padding: 5px;
  border: 1px solid rgba(15,18,22,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(15,18,22,0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: #6c665c;
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(15,18,22,0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #5d574f;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(15,18,22,0.08);
  color: var(--ink);
}

.header-action {
  justify-self: end;
  padding: 11px 15px;
  border: 1px solid rgba(15,18,22,0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  align-items: end;
  gap: 36px;
  padding: 128px 38px 34px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.2%, 0.6%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,13,0.96) 0%, rgba(9,11,13,0.84) 34%, rgba(9,11,13,0.42) 66%, rgba(9,11,13,0.86) 100%),
    linear-gradient(0deg, rgba(9,11,13,1), transparent 42%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(62vw, 980px);
  z-index: 1;
  opacity: 0.98;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-copy,
.status-deck {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(56px, 8.6vw, 132px);
  line-height: 0.86;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

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

.button.ghost {
  border: 1px solid var(--line);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.status-deck {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  min-height: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 13, 16, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-signal-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(238,190,73,0.26), transparent 26%),
    radial-gradient(circle at 78% 30%, rgba(42,146,110,0.24), transparent 30%),
    radial-gradient(circle at 50% 82%, rgba(237,23,88,0.18), transparent 28%),
    linear-gradient(145deg, rgba(18,20,20,0.94), rgba(4,6,7,0.94));
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 78%);
}

.hero-signal-panel::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(238,190,73,0.2);
  border-radius: 8px;
  box-shadow:
    0 0 42px rgba(238,190,73,0.1),
    inset 0 0 46px rgba(42,146,110,0.1);
}

#logoParticles {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 1;
  pointer-events: none;
}

.status-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.status-card {
  --meter-color: 214,170,72;
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(var(--meter-color),0.13), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.035);
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(var(--meter-color),0.22), transparent 34%),
    linear-gradient(90deg, rgba(var(--meter-color),0.08), transparent 62%);
  opacity: 0.72;
}

.status-card.is-green {
  --meter-color: 42,146,110;
}

.status-card.is-red {
  --meter-color: 237,23,88;
}

.status-grid strong {
  position: relative;
  z-index: 1;
  font-family: Manrope, Inter, sans-serif;
  font-size: 46px;
  line-height: 0.9;
  color: #fff8e9;
  text-shadow: 0 0 18px rgba(var(--meter-color),0.26);
}

.status-grid span {
  position: relative;
  z-index: 1;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.status-card i {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 11px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.status-card i::after {
  content: "";
  display: block;
  width: var(--meter, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--meter-color),0.25), rgba(var(--meter-color),0.95));
  box-shadow: 0 0 14px rgba(var(--meter-color),0.55);
}

.node-explorer {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  min-height: 100vh;
  border-top: 1px solid var(--line);
  background: #f4eee3;
  color: var(--ink);
}

.explorer-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 112px 26px 28px;
  border-right: 1px solid rgba(15,18,22,0.12);
  background:
    radial-gradient(circle at 24% 12%, rgba(214,170,72,0.2), transparent 30%),
    linear-gradient(180deg, #faf6ee 0%, #e7dfd1 100%);
  color: var(--ink);
}

.explorer-sidebar h2,
.section-head h2,
.signal-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 0.96;
}

.search-box {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  color: #6a6258;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-box input {
  height: 48px;
  border: 1px solid rgba(15,18,22,0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}

.search-box input::placeholder {
  color: rgba(15,18,22,0.42);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-pill {
  border: 1px solid rgba(15,18,22,0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.68);
  color: #4c463f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.filter-pill.is-active {
  background: var(--gold);
  color: var(--ink);
}

.explorer-stage {
  padding: 112px 28px 38px;
  overflow: hidden;
}

.rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #5b564e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rail-head strong {
  color: #8d6415;
}

.node-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 16px;
  grid-auto-flow: dense;
}

.node-card {
  position: relative;
  overflow: hidden;
  grid-column: auto;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(15,18,22,0.12);
  border-radius: 8px;
  background: #fbf7ef;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(49,43,34,0.14);
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.node-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.node-card > * {
  position: relative;
  z-index: 1;
}

.node-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 100, 21, 0.45);
  background: #fffaf0;
}

.node-card.is-featured {
  grid-column: auto;
  min-height: 430px;
}

.card-topline {
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.region-badge,
.status {
  flex: 0 0 auto;
  border: 1px solid rgba(15,18,22,0.16);
  border-radius: 999px;
  padding: 6px 9px;
  color: #5b564e;
  font-size: 11px;
  font-weight: 900;
}

.node-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
}

.node-focus {
  margin: 18px 20px 0;
  color: #5b564e;
  line-height: 1.45;
  max-width: 34rem;
}

.node-role {
  margin: 16px 20px 0;
  padding: 12px 14px;
  border-left: 3px solid rgba(214,170,72,0.85);
  background: rgba(214,170,72,0.09);
}

.node-role span,
.node-role strong {
  display: block;
}

.node-role span {
  color: #8d6415;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.node-role strong {
  margin-top: 5px;
  color: #3f3a32;
  font-size: 13px;
  line-height: 1.38;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 20px 0;
}

.tag-list span {
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(15,18,22,0.08);
  color: #413d36;
  font-size: 12px;
  font-weight: 800;
}

.state-art {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #1a1d21;
}

.node-card.is-featured .state-art {
  min-height: 210px;
}

.state-art img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: brightness(1.24) saturate(1.18) contrast(0.96);
  transition: transform 500ms ease;
}

.node-card:hover .state-art img {
  transform: scale(1.045);
}

.state-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(8,10,12,0.18)),
    radial-gradient(circle at 80% 18%, rgba(255,224,140,0.2), transparent 28%);
}

.card-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
  pointer-events: none;
}

.state-art-flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.68;
}

.state-art-flow i {
  position: absolute;
  height: 2px;
  width: 72%;
  left: 12%;
  background: linear-gradient(90deg, transparent, rgba(255,230,166,0.74), transparent);
  box-shadow: 0 0 18px rgba(214,170,72,0.45);
  transform-origin: center;
}

.state-art-flow i:nth-child(1) { top: 34%; transform: rotate(-12deg); }
.state-art-flow i:nth-child(2) { top: 52%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(11,180,122,0.45), transparent); }
.state-art-flow i:nth-child(3) { top: 70%; transform: rotate(-4deg); background: linear-gradient(90deg, transparent, rgba(184,35,52,0.42), transparent); }

.node-visual {
  position: relative;
  min-height: 130px;
  margin: 22px 0;
  border-radius: 8px;
  overflow: hidden;
}

.node-card.is-featured .node-visual {
  min-height: 188px;
}

.node-visual i,
.node-visual span {
  position: absolute;
  display: block;
}

.visual-norte::before {
  background: radial-gradient(circle at 78% 22%, rgba(75,145,173,0.24), transparent 28%), linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
}

.frontier {
  background: radial-gradient(circle at 68% 42%, rgba(214,170,72,0.18), transparent 22%), linear-gradient(110deg, rgba(75,145,173,0.12), rgba(255,255,255,0.02));
}

.frontier::before,
.frontier::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 12%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(214,170,72,0.24);
  border-radius: 50%;
}

.frontier::after {
  inset: 28% auto auto 34%;
  width: 120px;
  height: 120px;
  border-color: rgba(75,145,173,0.28);
}

.frontier i {
  width: 2px;
  height: 130%;
  top: -15%;
  background: linear-gradient(transparent, rgba(214,170,72,0.6), transparent);
  transform: rotate(58deg);
}

.frontier i:nth-child(1) { left: 22%; }
.frontier i:nth-child(2) { left: 50%; transform: rotate(72deg); }
.frontier i:nth-child(3) { left: 76%; transform: rotate(45deg); }

.frontier span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(214,170,72,0.9);
}

.frontier span:nth-of-type(1) { left: 18%; top: 58%; }
.frontier span:nth-of-type(2) { left: 52%; top: 28%; background: var(--blue); }
.frontier span:nth-of-type(3) { right: 18%; bottom: 22%; background: var(--green); }

.visual-centro::before {
  background: radial-gradient(circle at 22% 80%, rgba(184,35,52,0.18), transparent 26%), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
}

.control {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent), repeating-linear-gradient(90deg, rgba(244,239,229,0.12) 0 1px, transparent 1px 46px), repeating-linear-gradient(0deg, rgba(244,239,229,0.08) 0 1px, transparent 1px 38px);
}

.control i {
  width: 1px;
  height: 86%;
  bottom: 0;
  background: linear-gradient(transparent, rgba(214,170,72,0.45));
}

.control i:nth-child(1) { left: 14%; }
.control i:nth-child(2) { left: 28%; height: 62%; }
.control i:nth-child(3) { left: 43%; height: 96%; }
.control i:nth-child(4) { left: 58%; height: 72%; }
.control i:nth-child(5) { left: 70%; height: 92%; }
.control i:nth-child(6) { left: 84%; height: 58%; }

.control span {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(214,170,72,0.3);
  transform: rotateX(58deg) rotateZ(45deg);
}

.control span:nth-of-type(1) { left: 18%; top: 22%; }
.control span:nth-of-type(2) { left: 42%; top: 44%; border-color: rgba(184,35,52,0.35); }
.control span:nth-of-type(3) { right: 16%; top: 18%; border-color: rgba(11,122,85,0.32); }

.visual-centro-bajio::before {
  background: radial-gradient(circle at 75% 80%, rgba(214,170,72,0.2), transparent 28%), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
}

.bajio {
  background: linear-gradient(120deg, rgba(214,170,72,0.1), rgba(255,255,255,0.02));
}

.bajio i {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, rgba(244,239,229,0.9), rgba(82,80,76,0.45));
  box-shadow: 20px 24px 40px rgba(0,0,0,0.26);
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.bajio i:nth-child(1) { left: 17%; top: 44%; }
.bajio i:nth-child(2) { left: 50%; top: 22%; width: 34px; height: 34px; opacity: 0.7; }
.bajio i:nth-child(3) { right: 14%; bottom: 18%; width: 58px; height: 58px; }

.bajio span {
  height: 2px;
  width: 70%;
  left: 12%;
  background: linear-gradient(90deg, transparent, rgba(214,170,72,0.7), transparent);
  transform: rotate(-18deg);
}

.bajio span:nth-of-type(1) { top: 52%; }
.bajio span:nth-of-type(2) { top: 68%; transform: rotate(14deg); background: linear-gradient(90deg, transparent, rgba(184,35,52,0.42), transparent); }

.visual-occidente::before {
  background: radial-gradient(circle at 16% 20%, rgba(11,122,85,0.18), transparent 26%), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
}

.wave {
  background: linear-gradient(135deg, rgba(11,122,85,0.12), rgba(214,170,72,0.04));
}

.wave i {
  left: -10%;
  width: 120%;
  height: 42px;
  border-top: 2px solid rgba(214,170,72,0.42);
  border-radius: 50%;
}

.wave i:nth-child(1) { top: 20%; transform: rotate(-4deg); }
.wave i:nth-child(2) { top: 39%; transform: rotate(5deg); border-color: rgba(11,122,85,0.4); }
.wave i:nth-child(3) { top: 58%; transform: rotate(-7deg); border-color: rgba(244,239,229,0.22); }
.wave i:nth-child(4) { top: 76%; transform: rotate(3deg); border-color: rgba(184,35,52,0.32); }

.wave span {
  width: 78px;
  height: 78px;
  right: 18%;
  top: 26%;
  border: 1px solid rgba(214,170,72,0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(214,170,72,0.12);
}

.visual-sur-sureste::before {
  background: radial-gradient(circle at 20% 80%, rgba(11,122,85,0.24), transparent 30%), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
}

.bio {
  background: radial-gradient(circle at 60% 40%, rgba(11,122,85,0.2), transparent 30%), rgba(255,255,255,0.035);
}

.bio i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(11,122,85,0.75);
}

.bio i:nth-child(1) { left: 16%; top: 34%; }
.bio i:nth-child(2) { left: 32%; top: 62%; background: var(--gold); }
.bio i:nth-child(3) { left: 54%; top: 28%; }
.bio i:nth-child(4) { right: 22%; top: 58%; background: var(--red); }
.bio i:nth-child(5) { right: 12%; top: 24%; background: var(--mist); }

.bio span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,122,85,0.65), transparent);
  transform-origin: left center;
}

.bio span:nth-of-type(1) { left: 16%; top: 38%; width: 70%; transform: rotate(15deg); }
.bio span:nth-of-type(2) { left: 30%; top: 66%; width: 55%; transform: rotate(-28deg); }

.visual-golfo::before {
  background: radial-gradient(circle at 70% 20%, rgba(75,145,173,0.24), transparent 28%), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
}

.port {
  background: linear-gradient(180deg, rgba(75,145,173,0.13), transparent), rgba(255,255,255,0.02);
}

.port i {
  bottom: 20%;
  width: 22%;
  height: 42%;
  border: 1px solid rgba(75,145,173,0.36);
  border-bottom: 0;
}

.port i:nth-child(1) { left: 14%; height: 28%; }
.port i:nth-child(2) { left: 39%; height: 52%; }
.port i:nth-child(3) { right: 15%; height: 36%; }

.port span {
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214,170,72,0.58), transparent);
}

.port span:nth-of-type(1) { top: 36%; transform: rotate(-9deg); }
.port span:nth-of-type(2) { top: 55%; transform: rotate(5deg); background: linear-gradient(90deg, transparent, rgba(75,145,173,0.54), transparent); }
.port span:nth-of-type(3) { top: 74%; transform: rotate(-2deg); }

.lattice {
  background: repeating-linear-gradient(60deg, rgba(214,170,72,0.12) 0 1px, transparent 1px 42px), repeating-linear-gradient(-60deg, rgba(244,239,229,0.08) 0 1px, transparent 1px 42px);
}

.lattice i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.lattice i:nth-child(1) { left: 18%; top: 28%; }
.lattice i:nth-child(2) { left: 40%; top: 62%; }
.lattice i:nth-child(3) { right: 34%; top: 24%; background: var(--green); }
.lattice i:nth-child(4) { right: 15%; bottom: 25%; background: var(--red); }

.lattice span {
  height: 1px;
  width: 76%;
  left: 12%;
  top: 50%;
  background: rgba(214,170,72,0.38);
  transform: rotate(18deg);
}

.lattice span:nth-of-type(2) {
  transform: rotate(-18deg);
  background: rgba(244,239,229,0.18);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: auto 20px 0;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(15,18,22,0.12);
}

.contact-note {
  color: #8d6415;
  font-size: 12px;
  font-weight: 900;
}

.region-band,
.signals,
.network-atlas {
  padding: 92px 38px;
}

.region-band {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0b0d10;
  color: var(--mist);
}

.region-visual {
  position: absolute;
  inset: 0;
}

.region-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.08);
}

.region-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,13,0.95), rgba(9,11,13,0.7) 45%, rgba(9,11,13,0.28)),
    linear-gradient(0deg, rgba(9,11,13,0.96), transparent 46%);
  z-index: 1;
}

.section-head {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.55;
}

.region-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.region-card {
  min-height: 236px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(214,170,72,0.2), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.26);
}

.region-card-main {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.region-card strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 50px;
  line-height: 0.9;
}

.region-card span {
  display: block;
  color: var(--soft);
  font-weight: 900;
}

.region-card small {
  display: block;
  margin-top: 4px;
  color: rgba(244,239,229,0.5);
  font-size: 12px;
  font-weight: 800;
}

.region-meter {
  position: relative;
  height: 6px;
  margin: 20px 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  overflow: hidden;
}

.region-meter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 18px rgba(214,170,72,0.45);
}

.region-node-list,
.region-sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.region-node-list b,
.region-sector-list em {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-style: normal;
}

.region-node-list b {
  background: rgba(255,255,255,0.1);
  color: var(--mist);
  font-weight: 850;
}

.region-sector-list {
  margin-top: 10px;
}

.region-sector-list em {
  border: 1px solid rgba(214,170,72,0.26);
  color: rgba(244,239,229,0.66);
  font-weight: 750;
}

.signals {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  background:
    radial-gradient(circle at 12% 30%, rgba(184, 35, 52, 0.24), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(11, 122, 85, 0.22), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.signals-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.18) contrast(1.12);
}

.signals::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,13,0.92), rgba(9,11,13,0.62), rgba(9,11,13,0.86)),
    linear-gradient(0deg, rgba(9,11,13,0.98), transparent 40%, rgba(9,11,13,0.75));
  z-index: 0;
}

.operating-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.signal-copy {
  position: sticky;
  top: 104px;
  z-index: 1;
}

.signal-copy p:not(.eyebrow) {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.55;
  max-width: 640px;
}

.global-intel {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.global-proof-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(244,239,229,0.22);
  border-bottom: 1px solid rgba(244,239,229,0.16);
}

.global-proof-line span,
.global-proof-line strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.global-proof-line span {
  color: rgba(244,239,229,0.56);
}

.global-proof-line strong {
  color: var(--gold);
  text-align: right;
}

.global-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.global-proof-grid article {
  min-height: 138px;
  padding: 16px;
  border: 1px solid rgba(244,239,229,0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.08), rgba(244,239,229,0.025)),
    rgba(9,11,13,0.32);
  backdrop-filter: blur(8px);
}

.global-proof-grid b {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.9;
  color: #fff8e9;
}

.global-proof-grid span {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.global-proof-grid p {
  margin: 12px 0 0;
  color: rgba(244,239,229,0.62);
  font-size: 12px;
  line-height: 1.42;
}

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

.capability-ribbon article {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(244,239,229,0.12);
  color: rgba(244,239,229,0.76);
  font-size: 12px;
  font-weight: 850;
}

.capability-ribbon i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(214,170,72,0.8);
}

.sector-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
    rgba(12,14,18,0.62);
  backdrop-filter: blur(10px);
}

.sector-orbit {
  position: absolute;
  right: -32px;
  top: -34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(214,170,72,0.22);
  border-radius: 50%;
  opacity: 0.78;
}

.sector-orbit::before,
.sector-orbit::after,
.sector-orbit i {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.sector-orbit::before {
  inset: 24px;
  border: 1px solid rgba(11,122,85,0.22);
}

.sector-orbit::after {
  width: 8px;
  height: 8px;
  left: 22px;
  top: 58px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(214,170,72,0.8);
}

.sector-orbit i:nth-child(1) {
  width: 6px;
  height: 6px;
  right: 38px;
  top: 34px;
  background: var(--green);
}

.sector-orbit i:nth-child(2) {
  width: 5px;
  height: 5px;
  right: 54px;
  bottom: 28px;
  background: var(--red);
}

.sector-orbit i:nth-child(3) {
  width: 4px;
  height: 4px;
  left: 64px;
  bottom: 44px;
  background: var(--mist);
}

.sector-card strong {
  position: relative;
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 58px;
  line-height: 0.9;
}

.sector-card span {
  position: relative;
  display: block;
  margin-top: 14px;
  color: var(--soft);
  font-weight: 900;
}

.sector-examples {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.sector-examples b {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(244,239,229,0.68);
  font-size: 12px;
  line-height: 1;
}

.network-atlas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  background:
    radial-gradient(circle at 10% 20%, rgba(12,146,102,0.2), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(214,170,72,0.18), transparent 34%),
    radial-gradient(circle at 72% 85%, rgba(184,35,52,0.13), transparent 30%),
    linear-gradient(180deg, #11151a 0%, #070809 100%);
  color: var(--mist);
  overflow: hidden;
}

.network-atlas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 72% 36%, black, transparent 76%);
  opacity: 0.75;
}

.atlas-copy,
.atlas-board {
  position: relative;
  z-index: 1;
}

.atlas-copy {
  position: sticky;
  top: 104px;
}

.atlas-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.92;
}

.atlas-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(244,239,229,0.66);
  font-size: 18px;
  line-height: 1.55;
}

.atlas-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 14px;
}

.atlas-panel {
  border: 1px solid rgba(244,239,229,0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
    rgba(8,10,12,0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}

.atlas-map {
  grid-row: span 2;
  padding: 22px;
  background:
    radial-gradient(circle at 78% 16%, rgba(214,170,72,0.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(12,146,102,0.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
    rgba(8,10,12,0.58);
}

.atlas-regions,
.atlas-capabilities {
  padding: 18px;
}

.atlas-projects {
  grid-column: 1 / -1;
  padding: 18px;
}

.atlas-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244,239,229,0.12);
}

.atlas-panel-head span,
.atlas-panel-head strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.atlas-panel-head span {
  color: rgba(244,239,229,0.56);
}

.atlas-panel-head strong {
  color: var(--gold);
  text-align: right;
}

.atlas-locations {
  display: grid;
  gap: 10px;
}

.atlas-locations article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.atlas-locations b {
  color: var(--red);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
}

.atlas-locations strong,
.atlas-locations span {
  display: block;
}

.atlas-locations strong {
  color: #fff8e9;
  font-size: 18px;
}

.atlas-locations span {
  margin-top: 4px;
  color: rgba(244,239,229,0.58);
  font-size: 12px;
  font-weight: 850;
}

.atlas-region-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 58px;
  gap: 12px;
  align-items: center;
  min-height: 38px;
}

.atlas-region-row span {
  color: rgba(244,239,229,0.78);
  font-size: 12px;
  font-weight: 900;
}

.atlas-region-row div {
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.atlas-region-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 14px rgba(214,170,72,0.42);
}

.atlas-region-row strong {
  color: rgba(244,239,229,0.68);
  font-size: 12px;
  text-align: right;
}

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

.atlas-capability-grid article {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(214,170,72,0.15), transparent 34%),
    rgba(255,255,255,0.04);
}

.atlas-capability-grid span {
  display: block;
  color: rgba(244,239,229,0.74);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.atlas-capability-grid b {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
}

.atlas-project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.atlas-project-list article {
  min-height: 148px;
  padding: 14px;
  border: 1px solid rgba(244,239,229,0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(184,35,52,0.13), transparent 34%),
    rgba(255,255,255,0.04);
}

.atlas-project-list strong,
.atlas-project-list span,
.atlas-project-list p {
  display: block;
}

.atlas-project-list strong {
  color: #fff8e9;
  font-size: 15px;
  line-height: 1.22;
}

.atlas-project-list span {
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
}

.atlas-project-list p {
  margin: 10px 0 0;
  color: rgba(244,239,229,0.58);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, auto) minmax(260px, 0.9fr);
  align-items: center;
  gap: 28px;
  min-height: 156px;
  padding: 34px 38px;
  border-top: 1px solid rgba(244,239,229,0.12);
  background:
    radial-gradient(circle at 20% 0%, rgba(214,170,72,0.12), transparent 30%),
    #050607;
  color: var(--soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(244,239,229,0.14);
  background:
    radial-gradient(circle at 30% 28%, rgba(237,23,88,0.95), transparent 12%),
    radial-gradient(circle at 68% 24%, rgba(126,190,72,0.95), transparent 12%),
    radial-gradient(circle at 50% 68%, rgba(214,170,72,0.95), transparent 12%),
    rgba(255,255,255,0.05);
}

.footer-mark i {
  position: absolute;
  height: 2px;
  width: 32px;
  left: 11px;
  top: 26px;
  background: rgba(244,239,229,0.58);
  transform-origin: center;
}

.footer-mark i:nth-child(1) { transform: rotate(34deg); }
.footer-mark i:nth-child(2) { transform: rotate(-32deg); }
.footer-mark i:nth-child(3) { transform: rotate(90deg); opacity: 0.65; }
.footer-mark i:nth-child(4) { transform: rotate(0deg); opacity: 0.32; }
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--mist);
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
}

.footer-brand span,
.footer-action span {
  color: rgba(244,239,229,0.58);
  font-size: 12px;
  font-weight: 850;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-nav a {
  padding: 9px 11px;
  border: 1px solid rgba(244,239,229,0.12);
  border-radius: 999px;
  color: rgba(244,239,229,0.74);
  font-size: 12px;
  font-weight: 850;
}

.footer-nav a:hover,
.site-footer a:hover {
  color: #fff8e9;
}

.footer-action {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.site-footer a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .node-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .node-card,
  .node-card.is-featured {
    grid-column: span 1;
  }

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

  .hero,
  .signals,
  .network-atlas,
  .atlas-board {
    grid-template-columns: 1fr;
  }

  .status-deck {
    min-height: 280px;
  }
}

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

  .site-nav {
    display: none;
  }

  .node-explorer {
    grid-template-columns: 1fr;
  }

  .explorer-sidebar {
    position: relative;
    height: auto;
    padding: 82px 18px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .explorer-stage,
  .region-band,
  .signals,
  .network-atlas,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .explorer-stage {
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .header-action {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .node-rail,
  .region-grid,
  .sector-board,
  .global-proof-grid,
  .capability-ribbon,
  .atlas-capability-grid,
  .atlas-project-list,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .global-proof-line,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .global-proof-line,
  .footer-action {
    align-items: start;
    justify-items: start;
    text-align: left;
  }

  .status-card {
    grid-template-columns: 74px 1fr;
  }

  .status-grid strong {
    font-size: 42px;
  }
}
