:root {
  --bg-0: #020b14;
  --bg-1: #051826;
  --bg-2: #0b2a3b;
  --cyan: #68f6ff;
  --cyan-soft: rgba(104, 246, 255, 0.35);
  --teal: #36d2b6;
  --ember: #ff6b3d;
  --ember-deep: #c24b2c;
  --ember-glow: 0 0 18px rgba(255, 107, 61, 0.45);
  --gold: #ffb44c;
  --ink: #cfefff;
  --muted: rgba(207, 239, 255, 0.68);
  --panel: rgba(5, 20, 30, 0.82);
  --border: rgba(104, 246, 255, 0.25);
  --glow: 0 0 28px rgba(104, 246, 255, 0.18);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

.landing-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(15, 61, 79, 0.65) 0%, transparent 60%),
              radial-gradient(1200px 600px at 80% 20%, rgba(18, 61, 80, 0.55) 0%, transparent 60%),
              linear-gradient(140deg, rgba(2, 11, 20, 0.75), rgba(5, 24, 38, 0.8) 55%, rgba(11, 42, 59, 0.85));
  backdrop-filter: blur(6px) saturate(1.1);
  overflow: hidden;
  z-index: 2000;
}

.landing-overlay[hidden] {
  display: none;
}

.stage {
  width: min(980px, 92vw);
  min-height: min(560px, 82vh);
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(3, 15, 24, 0.88), rgba(4, 22, 34, 0.8));
  box-shadow: var(--glow);
  padding: clamp(22px, 3vw, 36px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(18px, 2vw, 28px);
  position: relative;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(104, 246, 255, 0.08), transparent 35%),
    repeating-linear-gradient(0deg, rgba(104, 246, 255, 0.04) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(104, 246, 255, 0.04) 0 1px, transparent 1px 26px);
  opacity: 0.25;
  pointer-events: none;
}

.stage::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 22px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 107, 61, 0.2), rgba(255, 107, 61, 0.95), rgba(255, 107, 61, 0.2));
  box-shadow: var(--ember-glow);
  opacity: 0.85;
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #ffd3c5;
}

.brand-badge {
  width: 84px;
  height: 96px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.status-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(104, 246, 255, 0.2);
  background: rgba(4, 20, 28, 0.7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(32px, 4.4vw, 52px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: #ffe5dc;
}

.hero-copy p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}

.hero-copy .lead {
  color: #dffbff;
  font-size: clamp(16px, 1.6vw, 20px);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta {
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #03131b;
  background: linear-gradient(120deg, var(--ember), #ff8a57);
  box-shadow: 0 12px 30px rgba(255, 107, 61, 0.35);
}

.cta--top {
  padding: 10px 18px;
  font-size: 12px;
}

.cta-secondary {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(104, 246, 255, 0.35);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  background: transparent;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(4, 18, 26, 0.8);
  border: 1px solid rgba(104, 246, 255, 0.2);
}

.metric .value {
  font-size: 18px;
  color: var(--cyan);
  font-weight: 700;
}

.metric .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.map-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(104, 246, 255, 0.3);
  background: linear-gradient(160deg, rgba(3, 18, 30, 0.9), rgba(6, 32, 46, 0.8));
  height: min(360px, 40vh);
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.35);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(54, 210, 182, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 180, 76, 0.15), transparent 60%);
  opacity: 0.8;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(8, 60, 70, 0.15), transparent 62%);
  pointer-events: none;
}

.map-world {
  position: absolute;
  inset: 10% 6%;
  width: 88%;
  height: 80%;
  opacity: 0.4;
  fill: rgba(96, 120, 132, 0.7);
  stroke: rgba(120, 160, 180, 0.4);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(104, 246, 255, 0.35));
  pointer-events: none;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(104, 246, 255, 0.18) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(104, 246, 255, 0.18) 0 1px, transparent 1px 18px);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}

.map-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(104, 246, 255, 0.8);
  z-index: 3;
}

.node-a { top: 28%; left: 24%; }
.node-b { top: 52%; left: 60%; background: var(--teal); box-shadow: 0 0 12px rgba(54, 210, 182, 0.8); }
.node-c { top: 18%; left: 70%; background: var(--gold); box-shadow: 0 0 12px rgba(255, 180, 76, 0.8); }
.node-d { top: 72%; left: 38%; }
.node-e { top: 36%; left: 78%; background: #ff4d4d; box-shadow: 0 0 12px rgba(255, 77, 77, 0.85); }
.node-f { top: 64%; left: 16%; background: #ff6b3d; box-shadow: 0 0 12px rgba(255, 107, 61, 0.75); }
.node-g { top: 22%; left: 46%; }
.node-h { top: 58%; left: 78%; background: #ff4d4d; box-shadow: 0 0 12px rgba(255, 77, 77, 0.85); }
.node-i { top: 44%; left: 34%; }
.node-j { top: 80%; left: 62%; background: var(--teal); box-shadow: 0 0 12px rgba(54, 210, 182, 0.8); }

.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(104, 246, 255, 0.1), rgba(104, 246, 255, 0.85), rgba(104, 246, 255, 0.2));
  opacity: 0.8;
  box-shadow: 0 0 10px rgba(104, 246, 255, 0.5);
  z-index: 2;
}

.line-a { top: 30%; left: 26%; width: 42%; transform: rotate(8deg); }
.line-b { top: 58%; left: 38%; width: 36%; transform: rotate(-12deg); }
.line-c { top: 44%; left: 20%; width: 52%; transform: rotate(-2deg); opacity: 0.7; }
.line-d { top: 22%; left: 42%; width: 36%; transform: rotate(18deg); opacity: 0.7; }
.line-e { top: 36%; left: 54%; width: 24%; transform: rotate(-18deg); opacity: 0.7; }
.line-f { top: 66%; left: 18%; width: 30%; transform: rotate(18deg); opacity: 0.7; }

.intel-card {
  border-radius: 16px;
  border: 1px solid rgba(104, 246, 255, 0.25);
  background: rgba(5, 20, 30, 0.8);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.intel-card h3 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffcbb7;
}

.intel-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.intel-row strong {
  color: #e8fbff;
}

.footnote {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footnote span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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