:root {
  --ink: #111418;
  --muted: #68706b;
  --line: #dde3df;
  --panel: #f7f8f6;
  --soft: #eef3ef;
  --accent: #1e6c5b;
  --accent-2: #42c7a8;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 227, 223, 0.8);
}

.nav {
  width: min(100% - 40px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #3c433f;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--accent);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 650;
  font-size: 14px;
}

.nav-cta:hover,
.button:hover {
  background: var(--accent);
  color: var(--white);
}

.hero {
  width: min(100% - 40px, var(--max));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 52px;
  padding: 54px 0 48px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 640px;
  color: #3f4742;
  font-size: 20px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.text-link {
  font-weight: 700;
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
}

.status-panel {
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 236px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(17, 20, 24, 0.12);
  backdrop-filter: blur(14px);
}

.status-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.pulse-line {
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(90deg, transparent 0 8%, rgba(66, 199, 168, .25) 8% 24%, transparent 24% 34%, rgba(30, 108, 91, .3) 34% 48%, transparent 48% 100%);
  border: 1px solid #dfe8e3;
}

.section {
  padding: 96px 0;
}

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

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.card p,
.split p,
.legal-main p,
.legal-main li {
  color: var(--muted);
}

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

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

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

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card .number {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

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

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

.step {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.step p {
  color: #c8d0cb;
}

.step::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 104px;
  height: 104px;
  border: 22px solid rgba(66, 199, 168, 0.22);
  border-radius: 999px;
}

.contact-band {
  padding: 54px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-band p {
  max-width: 660px;
  color: #cdd5d0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.legal-hero {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 88px 0 40px;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-main {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 20px 0 96px;
}

.legal-main section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  font-size: 28px;
}

@media (max-width: 880px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .nav,
  .wrap,
  .hero,
  .footer-inner,
  .legal-hero,
  .legal-main {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    gap: 18px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 18px;
  }

  .status-panel {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .contact-band {
    padding: 30px;
  }
}
