:root {
  --ink: #102033;
  --ink-soft: #42536a;
  --muted: #f4f7f4;
  --surface: #ffffff;
  --line: rgba(16, 32, 51, 0.12);
  --green: #1f6f43;
  --green-dark: #164c32;
  --gold: #b58b35;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

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

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 111, 67, 0.22);
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background: linear-gradient(135deg, #f7faf7 0%, #ffffff 48%, #eef6ef 100%);
}

.hero-bg {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 111, 67, 0.22), rgba(31, 111, 67, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.stat-card,
.focus-card,
.value-item,
.cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card.large {
  padding: 34px;
}

.stat-card span,
.mini-card span,
.value-item span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin: 10px 0 12px;
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.stat-card p,
.focus-card p,
.value-item p,
.cta-card p,
.split-section p,
.site-footer p {
  color: var(--ink-soft);
}

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

.mini-card {
  min-height: 135px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.mini-card strong {
  display: block;
  margin-top: 16px;
  font-size: 1.05rem;
}

.section {
  padding: 88px 0;
}

.muted {
  background: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: start;
}

.split-section p {
  font-size: 1.08rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.focus-card {
  padding: 30px;
}

.icon-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-weight: 800;
}

.values-section {
  padding-top: 58px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-item {
  padding: 24px;
  box-shadow: none;
}

.value-item strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.06rem;
}

.cta-section {
  padding-top: 30px;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 42px;
  background: linear-gradient(135deg, var(--ink), #1c3f32);
  color: #fff;
}

.cta-card p,
.cta-card .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card h2 {
  margin-bottom: 12px;
}

.site-footer {
  padding: 56px 0 24px;
  background: #07111f;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer img {
  width: 170px;
  margin-bottom: 18px;
  filter: brightness(1.08);
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 22px;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .split-section,
  .cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .cta-card,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 135px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .stat-card.large,
  .focus-card,
  .cta-card {
    padding: 26px;
  }
}
