:root {
  --bg: #f4f8f6;
  --ink: #102126;
  --ink-soft: #2f484f;
  --brand: #008d7a;
  --brand-2: #1f9fd6;
  --panel: #ffffff;
  --panel-alt: #e8f4f2;
  --line: #bed8d2;
  --shadow: 0 20px 44px rgba(22, 54, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 14%, #e4f7ef 0%, transparent 30%),
    radial-gradient(circle at 82% 0%, #d7eef8 0%, transparent 38%), var(--bg);
  line-height: 1.5;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.2rem 2.4rem;
}

.hero__glow {
  position: absolute;
  inset: -15% -10% auto auto;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 141, 122, 0.26) 0%,
    rgba(0, 141, 122, 0) 68%
  );
  pointer-events: none;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: "Archivo Black", sans-serif;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.4px;
}

.nav__links {
  display: flex;
  gap: 1rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero__content,
.hero__stats,
.panel,
.footer {
  max-width: 1100px;
  margin: 1.5rem auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin: 0.3rem 0 0.8rem;
  max-width: 850px;
}

h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 0.7rem;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.button {
  margin-top: 0.7rem;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(95deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 0.76rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero__stats article {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero__stats h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.panel--alt {
  background: var(--panel-alt);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card ul {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
}

.timeline span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(120deg, #0e9d88, #2ea5db);
  color: #fff;
}

.footer {
  margin-bottom: 1.7rem;
  text-align: center;
}

.footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links {
    flex-wrap: wrap;
  }
}
