:root {
  --bg: #223024;
  --bg-soft: #3b4d36;
  --text: #eef4e8;
  --muted: #c8d5bf;
  --accent: #d7e89e;
  --accent-soft: rgba(215, 232, 158, 0.2);
  --card: rgba(28, 40, 28, 0.72);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #6f8f4f 0, transparent 38%),
    radial-gradient(circle at 80% 20%, #8aa85b 0, transparent 28%),
    linear-gradient(135deg, var(--bg) 0%, #111a12 100%);
}

a {
  color: #f3ffd6;
  text-decoration-color: rgba(243, 255, 214, 0.65);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:visited {
  color: #e7f7c0;
}

a:hover,
a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 32px));
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  animation: float-up 0.9s ease-out both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  margin: 20px 0 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
}

.background-glow {
  position: fixed;
  z-index: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.55;
  animation: drift 9s ease-in-out infinite alternate;
}

.background-glow-left {
  top: -100px;
  left: -80px;
  background: rgba(167, 201, 87, 0.18);
}

.background-glow-right {
  right: -60px;
  bottom: -90px;
  background: rgba(214, 228, 161, 0.18);
  animation-duration: 11s;
}

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

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -12px, 0) scale(1.08);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .lead {
    line-height: 1.7;
  }

  .background-glow {
    width: 240px;
    height: 240px;
  }
}
