:root {
  color-scheme: light;
  font-family: "DM Sans", sans-serif;
  color: #15211d;
  background: #f5f8f5;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 50% 38%, #ffffff 0, #eef5f0 76%);
}

.page-shell::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#72877d 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.13;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
}

.glow-one {
  top: -14rem;
  right: -8rem;
  background: #9fe0bc;
}

.glow-two {
  bottom: -17rem;
  left: -7rem;
  background: #b6d8cc;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
  animation: arrive 700ms ease-out both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(43, 89, 68, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #567065;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(36, 66, 52, 0.05);
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #35a56d;
  box-shadow: 0 0 0 4px rgba(53, 165, 109, 0.12);
}

h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
  color: #2f7d59;
}

p {
  max-width: 540px;
  margin: 1.8rem auto 2.25rem;
  color: #65736d;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
}

button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 0.85rem;
  color: #fff;
  background: #173f2d;
  font: 600 0.96rem "DM Sans", sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(23, 63, 45, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

button:hover {
  transform: translateY(-2px);
  background: #245a41;
  box-shadow: 0 16px 32px rgba(23, 63, 45, 0.25);
}

button:active {
  transform: translateY(0);
}

button:focus-visible {
  outline: 3px solid rgba(47, 125, 89, 0.32);
  outline-offset: 4px;
}

footer {
  position: absolute;
  z-index: 1;
  bottom: 1.8rem;
  color: #89948f;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 1.4rem;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  p {
    margin-top: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }

  button {
    transition: none;
  }
}
