:root {
  color-scheme: dark;
  --bg: #02030a;
  --panel: rgba(7, 16, 32, 0.68);
  --panel-strong: rgba(9, 22, 42, 0.86);
  --line: rgba(99, 246, 255, 0.28);
  --cyan: #27f7ff;
  --teal: #35ffd0;
  --pink: #ff3ca6;
  --gold: #f0b90b;
  --violet: #9b87ff;
  --green: #39ff88;
  --muted: #93abc3;
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 18%, rgba(255, 255, 255, 0.018) 34%, transparent 58%),
    radial-gradient(circle at 50% 30%, rgba(23, 247, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 78% 14%, rgba(255, 60, 166, 0.18), transparent 22rem),
    radial-gradient(circle at 12% 88%, rgba(57, 255, 136, 0.09), transparent 20rem),
    linear-gradient(145deg, #02030a 0%, #07111f 44%, #050610 100%);
  color: white;
  overflow-x: hidden;
}

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

#holo-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  padding: 18px;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(39, 247, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 247, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(900px) rotateX(58deg) translateY(-20vh) scale(1.35);
  transform-origin: center top;
  z-index: -4;
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background: conic-gradient(from 180deg, transparent, rgba(39, 247, 255, 0.12), transparent, rgba(255, 60, 166, 0.11), transparent);
  filter: blur(70px);
  animation: slow-spin 28s linear infinite;
  z-index: -6;
}

.noise,
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.14;
  mix-blend-mode: screen;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 7px);
  z-index: 8;
}

.scanline {
  height: 28vh;
  background: linear-gradient(to bottom, transparent 0%, rgba(39, 247, 255, 0.2) 50%, transparent 100%);
  animation: scan 6s linear infinite;
  z-index: 9;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 9, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 42px rgba(39, 247, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 0 28px rgba(39, 247, 255, 0.04);
}

.brand-lockup,
.nav-cluster,
.hero-actions,
.metric-row,
.system-badges {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(39, 247, 255, 0.55);
  border-radius: 8px;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(39, 247, 255, 0.3), inset 0 0 20px rgba(39, 247, 255, 0.1);
}

.brand-lockup small,
.eyebrow {
  display: block;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-lockup strong,
h1,
h2,
h3,
.panel-heading strong {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-lockup strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(0.88rem, 1.55vw, 1.08rem);
}

.nav-cluster {
  gap: 8px;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.76rem;
}

.nav-cluster a,
.signal-pill,
.hero-actions a,
.system-badges span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
}

.nav-cluster a {
  padding: 7px 10px;
}

.nav-cluster a:hover,
.hero-actions a:hover {
  border-color: rgba(39, 247, 255, 0.58);
  color: white;
  box-shadow: 0 0 22px rgba(39, 247, 255, 0.16);
}

.signal-pill {
  padding: 7px 10px;
  color: var(--green);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
  border-color: rgba(57, 255, 136, 0.32);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  min-height: calc(100vh - 92px);
  gap: 24px;
  padding: 34px 2vw 28px;
}

.hero-copy {
  max-width: 720px;
}

h1 {
  margin: 12px 0 14px;
  max-width: 100%;
  font-size: clamp(2.8rem, 4.1vw, 4.8rem);
  line-height: 0.92;
  text-shadow:
    0 0 24px rgba(39, 247, 255, 0.5),
    0 0 70px rgba(255, 60, 166, 0.32);
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #bfd2df;
  font-size: clamp(0.96rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  gap: 10px;
  margin-top: 24px;
}

.hero-actions a {
  padding: 11px 14px;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.primary-action {
  color: #001216;
  background: linear-gradient(135deg, var(--cyan), var(--teal)) !important;
  border-color: transparent !important;
  font-weight: 800;
}

.ghost-action {
  color: var(--cyan);
}

.holo-console {
  position: relative;
  min-height: clamp(430px, 62vh, 680px);
  border: 1px solid rgba(99, 246, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 21, 42, 0.32), rgba(2, 8, 18, 0.15)),
    radial-gradient(circle at 50% 45%, rgba(39, 247, 255, 0.15), transparent 18rem);
  box-shadow:
    0 22px 90px rgba(0, 0, 0, 0.36),
    inset 0 0 58px rgba(39, 247, 255, 0.06);
  backdrop-filter: blur(12px);
}

.holo-console::before,
.holo-console::after,
.panel::before,
.panel::after,
.intel-card::before,
.intel-card::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  pointer-events: none;
}

.holo-console::before,
.panel::before,
.intel-card::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.holo-console::after,
.panel::after,
.intel-card::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
}

.core-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.core,
.ring,
.node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}

.core {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(39, 247, 255, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.34), transparent 20%),
    radial-gradient(circle, rgba(39, 247, 255, 0.35), rgba(255, 60, 166, 0.12) 52%, transparent 70%);
  box-shadow: 0 0 80px rgba(39, 247, 255, 0.3), inset 0 0 38px rgba(39, 247, 255, 0.22);
  transform: translate(-50%, -50%);
  animation: core-pulse 3.8s ease-in-out infinite;
}

.core span {
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 18px rgba(39, 247, 255, 0.82);
}

.ring {
  border: 1px solid rgba(39, 247, 255, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
  animation: orbit 10s linear infinite;
}

.ring-a {
  width: 82%;
  height: 82%;
}

.ring-b {
  width: 62%;
  height: 62%;
  border-color: rgba(255, 60, 166, 0.42);
  animation-duration: 13s;
  animation-direction: reverse;
}

.ring-c {
  width: 42%;
  height: 42%;
  border-color: rgba(57, 255, 136, 0.34);
  animation-duration: 8s;
}

.node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px currentColor;
}

.n1 {
  color: var(--cyan);
  transform: translate(170px, -105px);
}

.n2 {
  color: var(--pink);
  transform: translate(-210px, -20px);
}

.n3 {
  color: var(--gold);
  transform: translate(120px, 185px);
}

.n4 {
  color: var(--green);
  transform: translate(-80px, 140px);
}

.readout {
  position: absolute;
  width: 150px;
  padding: 10px;
  border: 1px solid rgba(39, 247, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  font-family: "Share Tech Mono", monospace;
}

.readout span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.readout strong {
  color: var(--green);
  font-size: 1.05rem;
}

.readout-left {
  left: 22px;
  bottom: 24px;
}

.readout-right {
  top: 24px;
  right: 22px;
}

.panel-grid,
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.panel,
.intel-card,
.systems-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 21, 42, 0.78), rgba(2, 8, 18, 0.64));
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38), inset 0 0 34px rgba(39, 247, 255, 0.05);
}

.panel {
  min-height: 230px;
  padding: 14px;
}

.wide {
  grid-column: span 2;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.panel-heading strong {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
}

.metric-row {
  justify-content: space-between;
  gap: 10px;
  margin-top: 28px;
}

.metric-row div {
  min-width: 0;
}

.metric-row span {
  display: block;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.metric-row strong {
  display: block;
  margin-top: 5px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.15rem, 2.7vw, 2.1rem);
}

.bar-stack {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.bar-stack i {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 22px rgba(39, 247, 255, 0.28);
}

.status-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  font-family: "Share Tech Mono", monospace;
}

.status-list span {
  color: var(--cyan);
}

.status-list b {
  color: var(--muted);
  font-weight: 500;
}

.wallet-orb {
  width: 130px;
  height: 130px;
  margin: 22px auto 10px;
  border: 1px solid rgba(255, 60, 166, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle, rgba(255, 60, 166, 0.32), rgba(39, 247, 255, 0.12) 54%, transparent 72%);
  box-shadow: 0 0 62px rgba(255, 60, 166, 0.22), inset 0 0 34px rgba(39, 247, 255, 0.14);
  animation: wallet-pulse 4.2s ease-in-out infinite;
}

.panel-copy,
.intel-card p {
  color: #b7c9d7;
  line-height: 1.6;
}

.systems-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 18px;
}

.systems-strip h2 {
  max-width: 680px;
  margin: 5px 0 0;
  font-size: clamp(1.1rem, 2.4vw, 2.15rem);
}

.system-badges {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.system-badges span {
  padding: 8px 10px;
  color: var(--cyan);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
}

.intel-grid {
  padding-bottom: 22px;
}

.intel-card {
  min-height: 210px;
  padding: 18px;
}

.intel-card span {
  color: var(--pink);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.84rem;
}

.intel-card h3 {
  margin: 24px 0 10px;
  font-size: 1rem;
}

.intel-card p {
  margin: 0;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  from {
    transform: translateY(-32vh);
  }
  to {
    transform: translateY(105vh);
  }
}

@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg);
  }
}

@keyframes core-pulse {
  0%,
  100% {
    filter: brightness(1);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    filter: brightness(1.25);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes wallet-pulse {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.25);
    transform: scale(1.04);
  }
}

@media (max-width: 980px) {
  .top-bar,
  .systems-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }

  .holo-console {
    min-height: 480px;
  }

  .panel-grid,
  .intel-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

  .system-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-shell {
    padding: 10px;
  }

  .nav-cluster {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-cluster a {
    flex: 1;
    min-width: 78px;
    text-align: center;
  }

  .hero {
    gap: 14px;
    padding-inline: 0;
  }

  h1 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }

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

  .hero-actions a {
    text-align: center;
  }

  .holo-console {
    min-height: 410px;
  }

  .core {
    width: 92px;
    height: 92px;
  }

  .readout {
    width: 132px;
  }
}
