:root {
  --bg: #06080d;
  --bg-alt: #0a0f18;
  --text: #edf1f8;
  --muted: #98a4bc;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --cyan: #14d9ff;
  --red: #ff3b3b;
  --amber: #ffb84c;
  --panel: rgba(9, 14, 24, 0.8);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Rajdhani", sans-serif;
  color: var(--text);
  background: radial-gradient(1000px 600px at 12% -10%, rgba(20, 217, 255, 0.15), transparent 60%),
              radial-gradient(800px 480px at 90% 5%, rgba(255, 59, 59, 0.17), transparent 60%),
              var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bg-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.9);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(6, 8, 13, 0.68);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.brand-tag {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255, 184, 76, 0.55);
}

.brand-name {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.main-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cyan);
}

.text-link {
  color: var(--cyan);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.text-link:hover,
.text-link:focus-visible {
  color: #7fe9ff;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4.8rem 0 3.2rem;
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  display: grid;
  gap: 0.22rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  text-transform: uppercase;
}

h1 .accent {
  color: var(--red);
  text-shadow: 0 0 26px rgba(255, 59, 59, 0.42);
  font-size: clamp(1.05rem, 2.3vw, 1.8rem);
  letter-spacing: 0.2em;
}

.lead {
  margin-top: 1.1rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.86rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn.primary {
  background: linear-gradient(90deg, var(--red), #ff6565);
  color: #fff;
  box-shadow: 0 12px 34px rgba(255, 59, 59, 0.35);
}

.btn.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.02);
}

.btn:hover { transform: translateY(-1px); }

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--panel);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.dial {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    conic-gradient(from 0deg, rgba(20,217,255,.75), rgba(255,184,76,.85), rgba(255,59,59,.9), rgba(20,217,255,.75));
  padding: 0.55rem;
}

.dial-core {
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, #141d2c, #070b14 60%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  place-items: center;
  text-align: center;
}

.dial-number {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(4rem, 9vw, 6.2rem);
  line-height: 0.95;
  color: var(--amber);
  text-shadow: 0 0 30px rgba(255, 184, 76, 0.6);
}

.dial-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--cyan);
}

.status-stack {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row:last-child { border-bottom: 0; }
.status-row span {
  font-family: "JetBrains Mono", monospace;
  color: var(--muted);
  font-size: 0.75rem;
}

.status-row strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.84rem;
  color: var(--text);
}

.section { padding: 4rem 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3.2vw, 2.4rem);
  letter-spacing: 0.04em;
}

.card-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(20, 26, 38, 0.85), rgba(8, 12, 20, 0.93));
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.07rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.timeline-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.03));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.timeline {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.timeline li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(10, 15, 25, 0.78);
  padding: 0.92rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.04rem;
}

.timeline span {
  min-width: 2rem;
  text-align: center;
  border-radius: 8px;
  font-family: "JetBrains Mono", monospace;
  color: var(--red);
  border: 1px solid rgba(255, 59, 59, 0.45);
  padding: 0.2rem 0.3rem;
}

.related-section {
  padding-top: 3.2rem;
}

.related-copy {
  max-width: 760px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.06rem;
}

.faq-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(10, 15, 25, 0.78);
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.faq-item p {
  color: var(--muted);
  margin: 0.7rem 0 0;
  font-size: 1.02rem;
}

.contact {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,217,255,.08), rgba(255,59,59,.08));
  margin-bottom: 4rem;
}

.contact h2 { margin-top: 0.3rem; }
.contact p {
  color: var(--muted);
  margin: 0.8rem auto 1.1rem;
  max-width: 66ch;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0 1.4rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
  }

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

  .lead { font-size: 1.1rem; }
}
