:root {
  color-scheme: dark;
  --bg: #020817;
  --panel: rgba(7, 18, 37, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --line-blue: rgba(40, 183, 255, 0.34);
  --text: #ffffff;
  --muted: rgba(219, 234, 254, 0.72);
  --faint: rgba(219, 234, 254, 0.52);
  --blue: #28b7ff;
  --blue-strong: #0ea5ff;
  --navy: #071225;
  --green: #42f2bd;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

h1,
h2,
p {
  margin: 0;
  letter-spacing: 0;
}

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

.ambient,
.ambient::before,
.ambient::after,
.grid,
.glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.ambient {
  z-index: -2;
  background:
    radial-gradient(circle at 55% -8%, rgba(56, 189, 248, 0.28), transparent 28rem),
    radial-gradient(circle at 8% 78%, rgba(37, 99, 235, 0.24), transparent 34rem),
    radial-gradient(circle at 92% 72%, rgba(14, 165, 233, 0.18), transparent 30rem),
    linear-gradient(135deg, #020817 0%, #071225 48%, #020817 100%);
}

.ambient::before {
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(80, 159, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 159, 255, 0.14) 1px, transparent 1px);
  background-size: 58px 58px;
}

.ambient::after {
  content: "";
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 75% 22%, rgba(40, 183, 255, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 74%, rgba(66, 242, 189, 0.58) 0 1px, transparent 2px);
  background-size: 210px 180px, 260px 230px, 320px 260px;
  opacity: 0.34;
}

.glow {
  inset: auto;
  border-radius: 999px;
  border: 1px solid rgba(44, 168, 255, 0.26);
  background: rgba(13, 92, 255, 0.1);
  filter: blur(0.2px);
}

.glow-a {
  left: -14rem;
  bottom: -20rem;
  width: 42rem;
  height: 42rem;
  box-shadow: 0 0 120px rgba(40, 136, 255, 0.28);
}

.glow-b {
  right: -14rem;
  top: 28%;
  width: 34rem;
  height: 34rem;
  opacity: 0.7;
}

.launch-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  min-height: calc(100vh - 36px);
  width: min(1240px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(7, 18, 37, 0.82);
  box-shadow:
    0 0 0 1px rgba(44, 168, 255, 0.08),
    0 32px 110px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(28, 132, 255, 0.14);
  backdrop-filter: blur(18px);
}

.card-line {
  position: absolute;
  inset: 0 38px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.launch-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.copy-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(28px, 4vw, 56px);
}

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

.brand-mark {
  display: grid;
  width: 76px;
  height: 76px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(40, 183, 255, 0.42);
  border-radius: 999px;
  background: #071225;
  color: white;
  box-shadow:
    0 0 36px rgba(44, 168, 255, 0.4),
    0 0 90px rgba(66, 242, 189, 0.18);
}

.brand-mark img {
  display: block;
  width: 112%;
  height: 112%;
  object-fit: cover;
}

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

.brand strong {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 760;
  max-width: 360px;
  line-height: 1.35;
}

.launch-kicker {
  display: flex;
  width: min(100%, 360px);
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 5vw, 46px);
  color: var(--blue);
}

.launch-kicker span {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, transparent, rgba(40, 183, 255, 0.72));
}

.launch-kicker strong,
.status-card p:first-child,
.map-card p,
.contact-grid span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(52px, 7.2vw, 92px);
  font-weight: 950;
  line-height: 0.88;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
}

.lead {
  max-width: 640px;
  margin-top: 20px;
  color: #c7ddff;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.56;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tags span {
  border: 1px solid rgba(40, 183, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.checks div {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
}

.checks i {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, white 0 2px, var(--blue) 2px 100%);
  box-shadow: 0 0 20px rgba(40, 183, 255, 0.34);
}

.actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 12px;
  margin-top: 30px;
}

.actions a,
.map-card a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40, 183, 255, 0.48);
  border-radius: 16px;
  background: rgba(2, 8, 23, 0.5);
  padding: 0 18px;
  color: white;
  font-size: 14px;
  font-weight: 850;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.actions a:hover,
.map-card a:hover {
  border-color: var(--blue);
  background: rgba(40, 183, 255, 0.12);
  transform: translateY(-1px);
}

.actions .primary {
  border-color: rgba(40, 183, 255, 0.64);
  background: var(--blue-strong);
  box-shadow: 0 0 32px rgba(40, 183, 255, 0.34);
}

.actions .primary:hover {
  background: #38bdf8;
}

.status-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(20px, 3vw, 36px);
}

.status-card,
.map-card,
.contact-grid > * {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.status-card {
  border-color: rgba(40, 183, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(6, 21, 44, 0.86);
  padding: 24px;
  box-shadow: 0 0 50px rgba(40, 183, 255, 0.12);
}

.status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.status-card p:first-child,
.map-card p {
  color: var(--blue);
}

.status-card h2,
.map-card h2 {
  margin-top: 8px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
}

.spark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(40, 183, 255, 0.32);
  border-radius: 17px;
  background: rgba(40, 183, 255, 0.1);
}

.spark::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--blue);
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
  box-shadow: 0 0 28px rgba(40, 183, 255, 0.7);
}

.status-copy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.65;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(40, 183, 255, 0.28);
  border-radius: 999px;
  background: rgba(40, 183, 255, 0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.map-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-color: rgba(40, 183, 255, 0.22);
  border-radius: var(--radius);
  background: #08152b;
  padding: 24px;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 8, 23, 0.74), rgba(6, 21, 44, 0.54), rgba(2, 8, 23, 0.72));
}

.map-card > :not(.map-visual) {
  position: relative;
  z-index: 1;
}

.map-visual {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background:
    linear-gradient(30deg, transparent 0 34%, rgba(40, 183, 255, 0.36) 34% 35%, transparent 35% 100%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 42% 43%, transparent 43% 100%),
    linear-gradient(180deg, rgba(40, 183, 255, 0.14), rgba(2, 8, 23, 0.9));
}

.map-visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(40, 183, 255, 0.7);
  box-shadow: 0 0 26px rgba(40, 183, 255, 0.55);
}

.map-visual span:nth-child(1) {
  left: 24%;
  top: 32%;
  width: 10px;
  height: 10px;
}

.map-visual span:nth-child(2) {
  right: 20%;
  top: 50%;
  width: 7px;
  height: 7px;
}

.map-visual span:nth-child(3) {
  left: 58%;
  bottom: 22%;
  width: 8px;
  height: 8px;
}

.map-card strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.map-card a {
  width: fit-content;
  min-height: 42px;
  margin-top: 28px;
}

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

.contact-grid > * {
  min-height: 100px;
  border-radius: 18px;
  padding: 15px;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

.contact-grid a:hover {
  border-color: rgba(40, 183, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.contact-grid span {
  display: block;
  color: var(--blue);
}

.contact-grid strong {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

  .launch-card {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 24px);
  }

  .copy-panel {
    text-align: center;
  }

  .brand,
  .launch-kicker {
    margin-inline: auto;
  }

  .launch-kicker {
    justify-content: center;
  }

  .launch-kicker span:last-child {
    display: block;
  }

  .tags,
  .actions {
    justify-content: center;
  }

  .checks {
    max-width: 720px;
    margin-inline: auto;
  }

  .status-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .launch-card {
    border-radius: 20px;
  }

  .copy-panel,
  .status-panel {
    padding: 22px 16px;
  }

  .brand {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 50px);
    line-height: 0.98;
  }

  .lead {
    font-size: 16px;
  }

  .launch-kicker {
    width: 100%;
    gap: 10px;
  }

  .launch-kicker span {
    max-width: 80px;
  }

  .launch-kicker strong {
    white-space: normal;
  }

  .brand strong {
    font-size: 30px;
  }

  .brand small {
    font-size: 11px;
  }

  .checks,
  .actions,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .status-head {
    align-items: center;
  }
}
