:root {
  --bg: #f3f8f4;
  --surface: #ffffffcc;
  --ink: #10231c;
  --muted: #3f5e54;
  --accent: #0b8f70;
  --accent-2: #0f5d86;
  --ring: #8fd3c0;
  --shadow: 0 12px 35px rgba(16, 35, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 0% -10%, #d6f2e3 0%, transparent 65%),
    radial-gradient(900px 380px at 100% 0%, #d6e8f2 0%, transparent 60%),
    var(--bg);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, #0b8f70 1px, transparent 0);
  background-size: 20px 20px;
}

.topbar {
  width: min(1100px, 92vw);
  margin: 22px auto;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.toplink {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.hero,
.panel,
footer {
  width: min(1100px, 92vw);
  margin: 18px auto;
}

.hero {
  background: linear-gradient(140deg, #ffffffdd, #f7fffbcc);
  border: 1px solid #d4ebe2;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 46px);
}

.eyebrow {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.06;
}

.lead {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.7;
}

.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 11px;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #13a888);
  box-shadow: 0 8px 20px rgba(11, 143, 112, 0.3);
}

.btn-ghost {
  color: var(--accent-2);
  background: #e7f1f7;
}

.stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stats article {
  background: #ffffffd8;
  border: 1px solid #d8ece5;
  border-radius: 14px;
  padding: 14px;
}

.stats h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--accent);
}

.stats p {
  margin: 4px 0 0;
  color: var(--muted);
}

.panel {
  background: #ffffffd4;
  border: 1px solid #d4ebe2;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.panel li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: #eff8f4;
  border-radius: 10px;
  padding: 10px 12px;
}

footer {
  text-align: center;
  color: #4a6b5f;
  padding-bottom: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .panel li {
    flex-direction: column;
  }
}
