:root {
  --navy: #0F2A3D;
  --navy-2: #071B2B;
  --green: #2E9B52;
  --green-dark: #1F7A3E;
  --soft-green: #EEF8F2;
  --gray: #F6F8FA;
  --text: #203040;
  --muted: #667789;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(15, 42, 61, .10);
  --radius: 28px;
}

* { 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(--text);
  background:
    radial-gradient(circle at top right, rgba(46,155,82,.08), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #f7faf8 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(15,42,61,.08);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15,42,61,.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
}
.brand-mark::first-letter { color: var(--navy); }
.brand-mark {
  background: linear-gradient(90deg, var(--navy) 0 50%, var(--green) 50%);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text {
  font-size: 12px;
  line-height: 1.25;
  color: var(--navy);
  border-left: 1px solid rgba(15,42,61,.35);
  padding-left: 14px;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 28px rgba(46,155,82,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(46,155,82,.28);
}
.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 56px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 2px solid rgba(46,155,82,.25);
  border-left-color: transparent;
  transform: rotate(-28deg);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 12px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin-bottom: 24px;
}
h1::first-line { color: var(--navy); }
h1 span, strong { color: var(--green); }

.lead {
  max-width: 620px;
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.link {
  color: var(--navy);
  font-weight: 700;
}
.link:hover { color: var(--green); }

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.proof-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual { position: relative; }
.curve-card {
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,42,61,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

svg { width: 100%; height: auto; display: block; }
.bars rect { fill: url(#barGrad); opacity: .85; }
.grid-line {
  fill: none;
  stroke: rgba(15,42,61,.08);
  stroke-width: 18;
  stroke-linecap: round;
}
.line {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 2.2s ease forwards .5s;
}
.dot { fill: var(--green); opacity: 0; animation: pop .45s ease forwards 1.5s; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; transform: scale(1); } }

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-title h2, .results h2, .about h2, .cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
}

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

.card {
  min-height: 230px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,42,61,.08);
  box-shadow: 0 18px 45px rgba(15,42,61,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15,42,61,.11);
}
.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--soft-green);
  font-size: 26px;
}
.card h3 {
  color: var(--navy);
  font-size: 20px;
}
.card p, .pillar p, .about-card p {
  color: var(--muted);
  line-height: 1.65;
}

.statement {
  text-align: center;
  margin: 42px 0 0;
  font-size: 22px;
  color: var(--navy);
}
.statement strong { color: var(--green); }

.approach {
  padding-top: 40px;
}
.pillar-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(238,248,242,.9), rgba(255,255,255,.9));
  border: 1px solid rgba(15,42,61,.08);
}
.pillar {
  padding: 42px;
  border-right: 1px solid rgba(15,42,61,.08);
}
.pillar:last-child { border-right: 0; }
.pillar span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: .16em;
}
.pillar h3 {
  margin: 28px 0 12px;
  font-size: 34px;
  color: var(--navy);
}

.results {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 44px;
  border-radius: var(--radius);
  padding: 70px;
  background: linear-gradient(135deg, var(--soft-green), #fff);
  border: 1px solid rgba(15,42,61,.08);
}
.results ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.results li {
  margin: 14px 0;
  color: var(--navy);
  font-weight: 700;
}
.results li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.kpi {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(46,155,82,.14), transparent 110px),
    #f9fbfa;
}
.kpi strong {
  color: var(--green);
  font-size: 46px;
  line-height: 1;
}
.kpi span {
  margin-top: 8px;
  color: var(--navy);
  font-weight: 800;
}

.about-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,42,61,.08);
}

.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta h2 { color: white; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.footer {
  padding: 36px max(20px, calc((100vw - 1180px) / 2));
  background: var(--navy-2);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer p { color: rgba(255,255,255,.68); margin: 8px 0 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }
  .three, .four, .pillar-wrap, .results {
    grid-template-columns: 1fr;
  }
  .pillar { border-right: 0; border-bottom: 1px solid rgba(15,42,61,.08); }
  .pillar:last-child { border-bottom: 0; }
  .results { padding: 42px 26px; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 24px);
    border-radius: 24px;
  }
  .brand-text { display: none; }
  .btn-small { display: none; }
  .section { width: calc(100% - 28px); padding: 68px 0; }
  h1 { font-size: 42px; }
  .lead { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .card, .about-card { padding: 24px; }
  .dashboard { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}
