:root {
  --cream: #fdf4d1;
  --cream-2: #fae69f;
  --green-dark: #33511d;
  --green: #4e6f31;
  --green-soft: #aad08d;
  --green-mid: #94a96b;
  --orange: #d97706;
  --shadow: 0 20px 50px rgba(51, 81, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--green-dark);
  background:
    radial-gradient(circle at top left, rgba(170, 208, 141, 0.30), transparent 30%),
    radial-gradient(circle at bottom right, rgba(148, 169, 107, 0.28), transparent 28%),
    linear-gradient(180deg, var(--cream), #fff9e9);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  filter: blur(2px);
}

body::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -40px;
  background: radial-gradient(circle, var(--green-soft) 0%, transparent 70%);
}

body::after {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -40px;
  background: radial-gradient(circle, var(--cream-2) 0%, transparent 72%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}

.card {
  width: min(760px, 100%);
  text-align: center;
  background: rgba(255, 251, 236, 0.85);
  border: 1px solid rgba(78, 111, 49, 0.14);
  border-radius: 28px;
  padding: 36px 28px 42px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.logo {
  width: min(100%, 560px);
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.badge {
  display: inline-block;
  margin: 8px auto 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(170, 208, 141, 0.30);
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  color: var(--green-dark);
}

#dots {
  color: var(--orange);
}

.lead {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.text {
  margin: 0 auto;
  max-width: 580px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(51, 81, 29, 0.9);
}

strong {
  color: var(--green);
}

@media (max-width: 640px) {
  .card {
    padding: 24px 18px 30px;
    border-radius: 22px;
  }

  .badge {
    margin-top: 4px;
  }

  .text {
    line-height: 1.65;
  }
}
