:root {
  --bg: #04111d;
  --panel: rgba(6, 20, 35, 0.84);
  --panel-strong: rgba(9, 27, 47, 0.92);
  --text: #f3f8ff;
  --muted: #a9c3df;
  --accent: #20a7e7;
  --accent-dark: #1466b2;
  --line: rgba(164, 211, 255, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(32, 167, 231, 0.26), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(20, 102, 178, 0.28), transparent 24%),
    radial-gradient(circle at bottom center, rgba(14, 61, 114, 0.28), transparent 28%),
    linear-gradient(135deg, #020911 0%, #041423 45%, #061d31 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.18;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
  position: relative;
  z-index: 1;
}

.hero-card,
.contact-card,
.map-card {
  background: var(--panel);
  border: 1px solid rgba(114, 188, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding: 36px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #85d8ff;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: clamp(140px, 18vw, 220px);
  max-width: 100%;
  margin-bottom: 24px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 3.15vw, 3.1rem);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: none;
  white-space: nowrap;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 28px;
}

.countdown-wrap {
  padding: 22px;
  border-radius: 22px;
  background: rgba(9, 27, 47, 0.72);
  border: 1px solid rgba(32, 167, 231, 0.18);
}

.countdown-label {
  color: var(--muted);
  margin-bottom: 14px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.time-box {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 10px;
  text-align: center;
}

.time-box span {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.time-box small {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #03111d;
  box-shadow: 0 12px 28px rgba(32, 167, 231, 0.26);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #f6fbff;
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-profile {
  color: #dff5ff;
  border: 1px solid rgba(133, 216, 255, 0.28);
  background: linear-gradient(135deg, rgba(20, 102, 178, 0.9), rgba(32, 167, 231, 0.85));
  box-shadow: 0 14px 34px rgba(20, 102, 178, 0.28);
}

.btn-profile:hover {
  background: linear-gradient(135deg, rgba(18, 86, 150, 0.95), rgba(24, 132, 196, 0.92));
}

.status-panel {
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(32, 167, 231, 0.18), rgba(8, 26, 46, 0.84)),
    var(--panel-strong);
  border: 1px solid rgba(32, 167, 231, 0.18);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: auto;
}

.status-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.status-badge {
  align-self: flex-start;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(133, 216, 255, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #8cdeff;
}

.status-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
  color: #f5fbff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 22px rgba(32, 167, 231, 0.22);
}

.status-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.launch-date {
  padding-top: 20px;
  border-top: 1px solid rgba(164, 211, 255, 0.14);
}

.launch-date span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.launch-date strong {
  font-size: 1.5rem;
}

.contact-card,
.map-card {
  margin-top: 24px;
  padding: 30px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
}

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

.contact-item {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 167, 231, 0.38);
  box-shadow: 0 14px 28px rgba(2, 12, 25, 0.32);
}

.contact-title {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #85d8ff;
  margin-bottom: 8px;
}

.contact-value {
  display: block;
  font-size: 1.05rem;
  color: var(--muted);
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.map-note {
  margin-top: 14px;
  color: var(--muted);
}

.map-note a {
  color: #8cdeff;
  font-weight: 600;
  text-decoration: none;
}

.map-note a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(114, 188, 255, 0.12);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer a {
  color: #8cdeff;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

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

  h1 {
    max-width: none;
    white-space: normal;
  }

  .status-panel {
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .hero-card,
  .contact-card,
  .map-card {
    padding: 22px;
    border-radius: 24px;
  }

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

  .brand-logo {
    margin: 0 auto 22px;
  }

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

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

  .btn {
    width: 100%;
  }

  .status-badge {
    align-self: center;
  }

  .status-panel,
  .launch-date {
    text-align: center;
  }

  .site-footer {
    padding: 18px;
  }
}
