:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --line: #252525;
  --text: #d9e9f5;
  --muted: #8595a0;
  --blue: #4cc3ff;
  --blue-soft: #1f82c4;
  --blue-deep: #071521;
  --green: #8aff9f;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-color: var(--blue-soft) #0b0b0b;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 6px),
    var(--bg);
  font-family: "Courier New", "Lucida Console", Courier, monospace;
  font-size: 14px;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.12) 0.7px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.05) 0.7px, transparent 0.7px);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
  opacity: 0.22;
}

.topbar {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  padding: 0 8px;
  border-bottom: 1px solid #2f2f2f;
  background: linear-gradient(#171717, #0d0d0d);
}

.brand {
  margin-right: auto;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(138, 255, 159, 0.65);
}

.status-text {
  color: var(--green);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 74px min(7vw, 86px) 96px;
  border-bottom: 1px solid #151515;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.74;
  filter: saturate(0.94) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35) 44%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.18) 42%, rgba(5, 5, 5, 0.76));
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.28) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent, rgba(76, 195, 255, 0.08), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-shadow: 2px 2px 0 #000, 0 0 7px #000;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(48px, 9vw, 122px);
  line-height: 0.92;
}

.subcopy {
  max-width: 680px;
  margin: 20px 0 0;
  color: #e7f6ff;
  font-size: 16px;
  line-height: 1.55;
}

.countdown {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.countdown div {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(5, 5, 5, 0.82);
}

.countdown strong {
  color: var(--blue);
  font-size: clamp(25px, 5vw, 44px);
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #fff;
  background: #06263f;
}

.status-panel {
  width: min(1080px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px auto 44px;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  background: var(--line);
}

.status-panel div {
  min-height: 148px;
  padding: 16px;
  background: rgba(8, 8, 8, 0.94);
}

.status-panel span {
  color: var(--blue);
  font-weight: 700;
}

.status-panel strong {
  display: block;
  margin-top: 14px;
  color: #f2fbff;
  font-size: 18px;
}

.status-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

footer {
  width: min(1080px, calc(100% - 28px));
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 26px;
  padding: 0 6px;
  color: var(--muted);
  border-top: 1px solid #1d1d1d;
}

footer span:first-child {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 92vh;
    padding: 72px 20px 92px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .countdown,
  .status-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-panel {
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 13px;
  }

  .topbar {
    height: auto;
    min-height: 28px;
    flex-wrap: wrap;
  }

  .hero {
    padding-inline: 14px;
  }

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

  .countdown div {
    min-height: 70px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
  }
}
