
:root {
  --bg: #f5f7f6;
  --ink: #111417;
  --muted: #5f6b75;
  --line: #d8e0e6;
  --surface: #ffffff;
  --accent: #19745f;
  --accent-dark: #105743;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(245, 247, 246, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.site-header nav,
.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header a:not(.brand),
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-header a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.hero {
  align-items: center;
  display: flex;
  min-height: calc(100svh - 130px);
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 15, 18, 0.84), rgba(8, 15, 18, 0.5) 42%, rgba(8, 15, 18, 0.08));
  inset: 0;
  position: absolute;
}

.hero-copy {
  color: #fff;
  max-width: 760px;
  padding: clamp(52px, 8vw, 116px) clamp(18px, 7vw, 96px);
  position: relative;
}

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

.hero .eyebrow {
  color: #8ee5cd;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 12vw, 142px);
  line-height: 0.9;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  margin: 0;
}

h3 {
  font-size: 22px;
  margin: 16px 0 10px;
}

.lead {
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.45;
  margin: 0;
  max-width: 680px;
}

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

.button {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.band {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.band.muted {
  background: #eaf0f1;
}

.inner {
  margin: 0 auto;
  max-width: 1180px;
}

.split {
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.text-stack {
  color: var(--muted);
  display: grid;
  font-size: 19px;
  gap: 18px;
  line-height: 1.7;
}

.text-stack p {
  margin: 0;
}

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

.columns article {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.columns span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.columns p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.legal-links {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
}

.legal-links nav {
  display: grid;
  gap: 12px;
}

.legal-links a {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  padding-top: 14px;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--accent);
}

.legal {
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 48px);
}

.legal-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.legal-heading h1 {
  color: var(--ink);
  font-size: clamp(44px, 8vw, 84px);
}

.legal-heading p,
.legal-body p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-body {
  padding-top: 26px;
}

.legal-body h2 {
  font-size: 26px;
  line-height: 1.2;
  margin-top: 34px;
}

.legal-body a {
  color: var(--accent-dark);
  font-weight: 800;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer span {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    padding-top: 14px;
    position: static;
  }

  .hero {
    min-height: calc(100svh - 168px);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 15, 18, 0.86), rgba(8, 15, 18, 0.48));
  }

  .split,
  .columns,
  .legal-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
