@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f4f8f7;
  --bg-strong: #dff1ed;
  --surface: #ffffff;
  --surface-soft: #f7fbfa;
  --text: #132120;
  --text-soft: #4a6160;
  --brand: #0a8f7e;
  --brand-deep: #066f62;
  --accent: #f0b429;
  --line: #d5e4e1;
  --shadow: 0 16px 40px rgba(7, 58, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(240, 180, 41, 0.12), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(10, 143, 126, 0.16), transparent 32%),
    linear-gradient(160deg, var(--bg) 0%, #eef7f5 42%, #f8fbfa 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(244, 248, 247, 0.84);
  border-bottom: 1px solid rgba(10, 143, 126, 0.1);
}

.site-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 8px 20px rgba(10, 143, 126, 0.35);
}

.brand-text {
  font-family: Fraunces, serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-deep);
  border-color: rgba(10, 143, 126, 0.22);
  background: rgba(10, 143, 126, 0.08);
}

.hero {
  margin-top: 26px;
  border-radius: 28px;
  border: 1px solid rgba(10, 143, 126, 0.18);
  background:
    linear-gradient(130deg, rgba(10, 143, 126, 0.96) 0%, rgba(6, 111, 98, 0.95) 56%, rgba(4, 78, 70, 0.97) 100%);
  color: #f7fffd;
  box-shadow: var(--shadow);
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.36) 0%, rgba(240, 180, 41, 0) 70%);
  top: -120px;
  right: -90px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.76rem;
  opacity: 0.86;
  font-weight: 800;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  font-family: Fraunces, serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.95rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 255, 253, 0.92);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.button.primary {
  background: #f7fffd;
  color: #075c50;
}

.button.secondary {
  border-color: rgba(247, 255, 253, 0.45);
  color: #f7fffd;
  background: rgba(247, 255, 253, 0.06);
}

.section {
  margin-top: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(7, 58, 52, 0.06);
  padding: 22px 20px;
}

.section h2 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

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

.muted {
  color: var(--text-soft);
}

.grid {
  display: grid;
  gap: 12px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 14px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: var(--brand-deep);
  background: rgba(10, 143, 126, 0.12);
  border: 1px solid rgba(10, 143, 126, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

.notice {
  border: 1px solid rgba(240, 180, 41, 0.36);
  background: rgba(240, 180, 41, 0.12);
  color: #634605;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.92rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.metric {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
}

.metric strong {
  font-size: 1.3rem;
  font-family: Fraunces, serif;
  color: var(--brand-deep);
  display: block;
}

.metric span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.legal p,
.legal li {
  color: var(--text-soft);
}

.legal h2 {
  margin-top: 18px;
}

.footer {
  margin-top: 24px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.84rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 30px 22px;
  }

  .section {
    padding: 18px 14px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
