:root {
  --bg: #f4f1ea;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #18312a;
  --muted: #52655f;
  --line: rgba(24, 49, 42, 0.12);
  --brand: #0f8f76;
  --brand-dark: #0b6d5a;
  --accent: #f0b24b;
  --shadow: 0 20px 60px rgba(17, 54, 45, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 178, 75, 0.24), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 143, 118, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #eef4f1 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #18b194);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 48px;
}

.panel {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 143, 118, 0.08);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

h1, h2, h3 {
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
  margin-top: 18px;
}

.hero p,
.section-copy,
.card p,
.list li,
.footer,
.meta {
  color: var(--muted);
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 22px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.hero-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.stat-grid,
.card-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 49, 42, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.section {
  padding: 22px 0 18px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 49, 42, 0.08);
  box-shadow: 0 12px 36px rgba(17, 54, 45, 0.08);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  line-height: 1.65;
}

.band {
  margin: 38px 0;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  background: linear-gradient(135deg, #0f8f76, #0b6d5a);
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 26px 64px rgba(11, 109, 90, 0.24);
}

.band p,
.band .meta,
.band .list li {
  color: rgba(255, 255, 255, 0.86);
}

.list {
  margin: 16px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 48px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page {
  padding: 28px 0 56px;
}

.page-hero,
.page-panel {
  padding: 32px;
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.meta {
  margin-top: 14px;
  line-height: 1.7;
}

.page-panel h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.page-panel p,
.page-panel li {
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .band,
  .card-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .nav,
  .section-header,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .page-hero,
  .page-panel,
  .band {
    padding: 24px;
  }
}
