:root {
  color-scheme: light;
  --bg-1: rgb(255, 255, 255);
  --bg-2: #f4faf5;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(40, 167, 69, 0.24);
  --text: #1f2b22;
  --muted: #4f6a57;
  --accent: rgb(40, 167, 69);
  --accent-2: rgb(40, 167, 69);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(40, 167, 69, 0.15), transparent 50%),
    radial-gradient(900px 500px at -10% 100%, rgba(40, 167, 69, 0.1), transparent 45%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(40, 167, 69, 0.08);
  text-align: center;
}

.logo {
  max-width: 220px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgb(40, 167, 69);
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
}

.lead {
  margin: 16px auto 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.65;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 13px 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.note {
  margin: 20px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .card {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .logo {
    max-width: 170px;
    max-height: 56px;
    margin-bottom: 18px;
  }
}
