:root {
  --bg: #f7f2e8;
  --bg-deep: #efe4d0;
  --surface: rgba(255, 250, 241, 0.84);
  --surface-border: rgba(88, 103, 86, 0.16);
  --text: #1f2822;
  --muted: #56675b;
  --accent: #d88a16;
  --accent-soft: rgba(216, 138, 22, 0.16);
  --shadow: rgba(49, 44, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 214, 128, 0.35), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(103, 139, 119, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

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

.hero {
  position: relative;
  width: min(100%, 960px);
  display: flex;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: auto 50% 10%;
  width: min(72vw, 620px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216, 138, 22, 0.28) 0%, rgba(216, 138, 22, 0) 68%);
  filter: blur(12px);
}

.hero__card {
  position: relative;
  width: min(100%, 700px);
  padding: 42px 28px 40px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  box-shadow:
    0 24px 60px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  animation: rise-in 900ms ease-out both;
}

.hero__logo {
  width: min(100%, 340px);
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 18px 34px rgba(32, 41, 35, 0.12));
}

.hero__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero__copy {
  width: min(100%, 34rem);
  margin: 18px auto 0;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #87560b;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero__status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216, 138, 22, 0.14);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px 14px;
  }

  .hero__card {
    padding: 28px 18px 30px;
    border-radius: 22px;
  }

  .hero__logo {
    width: min(100%, 280px);
    margin-bottom: 10px;
  }

  .hero__eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.72rem;
  }

  .hero__copy {
    font-size: 0.98rem;
  }

  .hero__status {
    width: 100%;
    padding-inline: 14px;
  }
}
