:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-border: rgba(156, 198, 125, 0.22);
  --text: #25311d;
  --muted: #65715e;
  --green: #9ac67d;
  --green-deep: #6f9b55;
  --yellow: #f8ca2c;
  --yellow-soft: #fff1b8;
  --shadow: 0 24px 80px rgba(75, 107, 57, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 32px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(248, 202, 44, 0.22), transparent 28%),
    radial-gradient(circle at right center, rgba(154, 198, 125, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fdfdf8 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  filter: blur(6px);
}

body::before {
  top: -120px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(248, 202, 44, 0.12);
}

body::after {
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: rgba(154, 198, 125, 0.14);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 40px 32px;
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(248, 202, 44, 0.18);
  border-radius: 24px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: min(100%, 320px);
  margin: 0 auto 20px;
}

.copy-block {
  max-width: 640px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lead {
  margin: 14px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 202, 44, 0.12), rgba(154, 198, 125, 0.14));
  color: var(--text);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(154, 198, 125, 0.18);
}

@media (max-width: 720px) {
  body {
    padding: 20px;
  }

  .hero-card {
    padding: 28px 24px 24px;
    border-radius: 24px;
  }

  .hero-card::after {
    inset: 10px;
    border-radius: 18px;
  }

  .brand-mark {
    width: min(100%, 420px);
    margin-bottom: 20px;
  }

  .lead {
    font-size: 1rem;
  }

  .status-row {
    width: 100%;
    justify-content: center;
  }
}