:root {
  color-scheme: light;
  --bg-top: #fbf7ff;
  --bg-bottom: #fffdf9;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(134, 93, 191, 0.14);
  --text: #2f2238;
  --muted: #6f6177;
  --accent: #8a2c85;
  --accent-deep: #5a1b69;
  --accent-soft: #f4ddf3;
  --shadow: 0 32px 90px rgba(83, 38, 104, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(204, 150, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 184, 140, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.52;
}

.bg-orb-left {
  width: 280px;
  height: 280px;
  top: 9%;
  left: -60px;
  background: radial-gradient(circle, rgba(196, 119, 255, 0.34), transparent 68%);
}

.bg-orb-right {
  width: 340px;
  height: 340px;
  right: -70px;
  bottom: 4%;
  background: radial-gradient(circle, rgba(255, 184, 140, 0.3), transparent 70%);
}

.hero-card {
  position: relative;
  width: min(100%, 760px);
  padding: 52px 42px 40px;
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.92;
  font-weight: 700;
}

.lede {
  margin: 20px 0 0;
  max-width: 44rem;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--muted);
}

.status-panel {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(245, 234, 250, 0.88);
  border: 1px solid rgba(138, 44, 133, 0.08);
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 5px rgba(138, 44, 133, 0.12);
  flex: 0 0 auto;
}

.status-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.status-copy {
  margin-top: 4px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 30px rgba(90, 27, 105, 0.22);
}

.button-secondary {
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(138, 44, 133, 0.14);
}

.footer-note {
  margin-top: 24px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 680px) {
  .hero-card {
    padding: 38px 24px 30px;
    border-radius: 26px;
  }

  .lede {
    font-size: 0.98rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
