:root {
  --bg: #040b16;
  --text: #ffffff;
  --muted: #dce7ff;
  --accent: #7fe7ff;
  --accent-2: #4fa7ff;
  --panel: rgba(53, 108, 224, 0.75);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center top, rgba(129, 193, 255, 0.55), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(18, 87, 255, 0.4), transparent 45%),
    linear-gradient(180deg, #0d49d0, #0940b2 60%, #0a2d88 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  width: min(100%, 980px);
  padding: 20px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.glow-1 {
  top: 0;
  left: 10%;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.35);
}

.glow-2 {
  right: 10%;
  bottom: 0;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px 22px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 70, 214, 0.6), rgba(37, 84, 196, 0.38));
  box-shadow: 0 14px 65px rgba(0, 0, 0, 0.35);
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.coming-soon-frame {
  position: relative;
  width: min(100%, 760px);
  padding: 34px 24px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(61, 121, 255, 0.94), rgba(49, 100, 219, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 16px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.coming-soon-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.headline-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.headline-wrap h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(4rem, 12vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: #f4f8ff;
  text-shadow:
    0 4px 0 rgba(255, 255, 255, 0.28),
    0 8px 0 rgba(12, 47, 124, 0.55),
    0 14px 28px rgba(0, 0, 0, 0.4);
}

.triangle-outline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.triangle-outline::before,
.triangle-outline::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(244, 248, 255, 0.8);
}

.triangle-outline::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  opacity: 0.45;
}

.triangle-outline::after {
  width: 72%;
  height: 72%;
  left: 14%;
  top: 11%;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  opacity: 0.8;
}

.cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pages-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  text-decoration: none;
  color: #0e2c7d;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 15px;
  background: linear-gradient(180deg, #f0f6ff, #d7e6ff);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.launch-panel {
  width: min(100%, 680px);
  padding: 20px;
  border-radius: 20px;
  background: rgba(14, 38, 92, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8cfff9;
  box-shadow: 0 0 0 6px rgba(140, 255, 249, 0.18);
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8ceaff;
}

.info-note {
  margin: 6px 0 0;
  color: #dce7ff;
  font-size: 0.92rem;
}

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

.time-box {
  text-align: center;
  padding: 18px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.time-box span {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: #8ceaff;
}

.time-box small {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #dce7ff;
}

.notice {
  margin: 20px 0 0;
  color: #dce7ff;
  line-height: 1.7;
}

.signup-form {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signup-form input {
  flex: 1 1 230px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 16px;
  border-radius: 999px;
  outline: none;
}

.signup-form input::placeholder {
  color: #d3e1ff;
}

.signup-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  cursor: pointer;
  color: #092553;
  background: linear-gradient(135deg, #9bf7ff, #77c9ff);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.form-message {
  min-height: 1.4rem;
  margin: 12px 0 0;
  color: #8ceaff;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .coming-soon-frame {
    padding: 28px 18px 24px;
  }

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

  .hero-card {
    padding: 16px;
  }
}

