:root {
  color-scheme: light;
  --ink: #152029;
  --muted: #5f6f7a;
  --line: #d9e2e4;
  --paper: #f6f8f5;
  --white: #ffffff;
  --green: #11715d;
  --green-dark: #0d4f43;
  --blue: #315f9f;
  --amber: #d9a232;
  --rose: #b45c67;
  --shadow: 0 24px 70px rgba(21, 32, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(217, 226, 228, 0.82);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

nav a,
.site-footer a,
.feature-card a {
  text-decoration: none;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover::after,
nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 44px;
  min-height: calc(100vh - 72px);
  padding: 84px max(32px, calc((100vw - 1180px) / 2)) 92px;
  background:
    linear-gradient(90deg, rgba(246, 248, 245, 0.97) 0%, rgba(246, 248, 245, 0.79) 46%, rgba(246, 248, 245, 0.3) 100%),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(246, 248, 245, 0), var(--paper));
  content: "";
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.panel-label {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin-top: 24px;
  color: #42545e;
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.cookie button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.cookie button:hover {
  transform: translateY(-2px);
}

.button.primary,
.cookie button {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(17, 113, 93, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  border-color: rgba(17, 113, 93, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.hero-panel,
.report-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  align-self: center;
  padding: 24px;
}

.metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: var(--muted);
}

.metric-row strong,
.metric-grid strong {
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.meter {
  height: 10px;
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #dde8e8;
}

.meter span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
  animation: grow 1200ms ease both;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 248, 245, 0.86);
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 82px 32px;
}

.intro {
  padding-top: 64px;
  text-align: center;
}

.intro h2 {
  max-width: 900px;
  margin: 14px auto 18px;
  font-size: clamp(30px, 5vw, 52px);
}

.intro p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head h2,
.report-copy h2,
.contact-card h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 46px);
}

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

.feature-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(17, 113, 93, 0.38);
  box-shadow: 0 18px 46px rgba(21, 32, 41, 0.11);
  transform: translateY(-5px);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.feature-card:nth-child(2) .icon {
  background: var(--green);
}

.feature-card:nth-child(3) .icon {
  background: var(--rose);
}

.feature-card h3 {
  margin-top: 28px;
  font-size: 23px;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
}

.feature-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 820;
}

.band {
  background: #eaf1ee;
}

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

.timeline article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(21, 32, 41, 0.08);
}

.timeline span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 850;
}

.timeline h3 {
  margin-top: 24px;
  font-size: 22px;
}

.timeline p,
.report-copy p,
.contact-card p {
  margin-top: 14px;
  color: var(--muted);
}

.reports {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 36px;
}

.report-card {
  padding: 28px;
  background: var(--white);
}

.chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 220px;
  padding: 16px;
  border-radius: 8px;
  background: #eef4f4;
}

.chart span {
  display: block;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  animation: rise 900ms ease both;
}

.chart span:nth-child(2) {
  background: linear-gradient(180deg, var(--amber), var(--green));
}

.chart span:nth-child(4) {
  background: linear-gradient(180deg, var(--rose), var(--blue));
}

.report-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.report-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.report-card li span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.report-card li:nth-child(2) span {
  background: var(--amber);
}

.report-card li:nth-child(3) span {
  background: var(--rose);
}

.report-card strong {
  margin-left: auto;
  color: var(--ink);
}

.contact {
  padding-top: 40px;
}

.contact-card {
  padding: clamp(28px, 6vw, 58px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 79, 67, 0.94), rgba(49, 95, 159, 0.74)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.contact-card .section-kicker,
.contact-card p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card h2,
.contact-card .button.secondary {
  color: var(--white);
}

.contact-card .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.legal-hero {
  padding: 84px max(32px, calc((100vw - 1180px) / 2)) 70px;
  background:
    linear-gradient(90deg, rgba(246, 248, 245, 0.98), rgba(246, 248, 245, 0.76)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.legal-hero div {
  max-width: 860px;
}

.legal-hero h1 {
  margin-top: 12px;
  font-size: clamp(38px, 6vw, 68px);
}

.legal-hero p:last-child {
  max-width: 740px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-block h2 {
  font-size: 24px;
}

.legal-block p {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 540px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie[hidden],
.cookie.dismissed {
  display: none !important;
}

.cookie p {
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes grow {
  from {
    width: 0;
  }
}

@keyframes rise {
  from {
    height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 920px) {
  .hero,
  .reports {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .feature-grid,
  .timeline,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 20px;
  }

  .nav-toggle {
    position: absolute;
    top: 14px;
    right: 20px;
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 12px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
    padding: 64px 20px 72px;
  }

  .section {
    padding: 64px 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }

  .cookie {
    right: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
  }
}
