:root {
  color-scheme: light;
  --ink: #17122b;
  --muted: #625b78;
  --cream: #f6eaff;
  --paper: #fffaff;
  --violet: #8785ff;
  --violet-mid: #b880ff;
  --violet-deep: #641bff;
  --violet-hot: #c143fc;
  --violet-bright: #8785ff;
  --lavender: #eae9ff;
  --line: #d7ccff;
  --shadow: 0 28px 70px rgba(100, 27, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 8% 12%, rgba(135, 133, 255, 0.42), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(193, 67, 252, 0.28), transparent 26rem),
    linear-gradient(145deg, #f6eaff 0%, #fbedff 50%, #eae9ff 100%),
    var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: center;
  min-height: 38vh;
}

.hero-copy {
  padding: 24px 0;
}

.eyebrow,
.mini-label {
  margin: 0;
  color: var(--violet-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-art {
  justify-self: end;
  width: min(100%, 430px);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.countdown-panel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(184, 128, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 250, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.countdown-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--violet-deep), var(--violet), var(--violet-mid));
  content: "";
}

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

.launch-date {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
}

.status-pill {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(100, 27, 255, 0.14);
  border-radius: 999px;
  background: var(--lavender);
  color: var(--violet-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.time-card {
  display: grid;
  min-height: 148px;
  place-items: center;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(234, 233, 255, 0.72), transparent),
    #fffaff;
}

.time-value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.6rem, 8vw, 5.75rem);
  font-weight: 900;
  line-height: 1;
}

.time-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.progress-track {
  overflow: hidden;
  height: 13px;
  margin-top: 28px;
  border-radius: 999px;
  background: #f1e7ff;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet-deep), var(--violet-hot));
  transition: width 400ms ease;
}

.countdown-message {
  margin: 18px 0 0;
  color: var(--violet-deep);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 800;
}

.readiness {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.readiness article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(184, 128, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 255, 0.78);
}

.readiness span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.readiness strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.disclaimer {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: center;
}

.is-launched .status-pill {
  background: var(--violet-deep);
  color: #fffaff;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 560px);
    padding-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-art {
    justify-self: center;
    max-width: 310px;
  }

  .panel-heading,
  .readiness {
    grid-template-columns: 1fr;
  }

  .panel-heading {
    display: grid;
  }

  .status-pill {
    width: max-content;
  }

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

  .time-card {
    min-height: 124px;
  }
}

@media (max-width: 420px) {
  .countdown-grid {
    gap: 10px;
  }

  .time-card {
    min-height: 112px;
    padding: 14px 8px;
  }

  .time-label {
    font-size: 0.68rem;
  }
}
