:root {
  --ink: #15171c;
  --muted: #657184;
  --line: #dde3ea;
  --soft: #f3f8f6;
  --panel: #ffffff;
  --dark: #101827;
  --navy: #17324d;
  --brand: #2e7d32;
  --brand-dark: #1f5c25;
  --blue: #1f6fb2;
  --shadow: 0 18px 48px rgba(23, 50, 77, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

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

.topbar {
  background: #111318;
  color: #fff;
  border-bottom: 3px solid var(--brand);
  font-size: 12px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar span {
  font-weight: 800;
  letter-spacing: .08em;
  color: #b9d6ff;
}

.topbar p { margin: 0; flex: 1; }
.topbar nav { display: flex; gap: 22px; font-weight: 700; }

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand__mark {
  width: 39px;
  height: 39px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--blue));
  font-weight: 800;
}

.brand strong { display: block; font-size: 18px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #383d47;
  font-size: 13px;
  font-weight: 700;
}

.nav__links a:hover { color: var(--brand); }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 0 17px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.button .material-symbols-outlined { font-size: 19px; }
.button--primary { background: var(--brand); color: #fff; box-shadow: 0 12px 24px rgba(46,125,50,.18); }
.button--primary:hover { background: var(--brand-dark); }
.button--secondary { background: #fff; border-color: #ccd5df; color: var(--dark); }

.hero {
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #fff 0%, #f5fbf7 100%);
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.status, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  background: #e8f5eb;
  border-radius: 6px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f6a21a;
}

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

h1 {
  margin: 22px 0 22px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__content p {
  color: #546173;
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__media {
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eaf1f2;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 1.47 / 1;
  object-fit: cover;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 56px;
}

.quick-grid article, .card, .audience-grid article, .steps article, .trust__grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-grid article {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  font-size: 13px;
}

.material-symbols-outlined { color: var(--brand); }

.section { padding: 74px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--dark); color: #fff; }

.split__grid, .feature-layout, .lead__grid, .ecosystem__box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

h3 {
  margin: 14px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.copy p, .feature-layout p, .lead__copy p, .ecosystem p {
  color: var(--muted);
  line-height: 1.8;
}

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

.card {
  padding: 22px;
  min-height: 184px;
}

.card .material-symbols-outlined {
  font-size: 28px;
  color: var(--blue);
}

.card p, .audience-grid p, .steps p, .trust__grid p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
  font-size: 14px;
}

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

.audience-grid article { padding: 22px; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.steps article {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  padding: 20px;
}

.steps b {
  color: #88d18e;
  font-size: 13px;
}

.steps p { color: #cbd5e1; }
.section--dark .eyebrow { background: rgba(46,125,50,.18); color: #a7e2ad; }

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-list span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 13px;
  color: #27313f;
  font-size: 13px;
  font-weight: 700;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 16px;
}

.trust__grid article { padding: 18px; }

.notice {
  padding: 16px 18px;
  border: 1px solid #bfd8c2;
  background: #fff;
  border-radius: 8px;
  color: #476151;
  line-height: 1.7;
}

.lead { background: linear-gradient(135deg, #f7fbff 0%, #eef8f1 100%); }

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #343b46;
  font-size: 13px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5df;
  border-radius: 7px;
  padding: 12px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.form-message { grid-column: 1 / -1; margin: 0; color: var(--brand-dark); font-weight: 800; }

.ecosystem__box {
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(18, 24, 35, .08);
}

.ecosystem__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ecosystem__links a {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
  font-weight: 800;
  color: var(--navy);
}

.footer {
  background: #111318;
  color: #fff;
  padding: 38px 0 22px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 28px;
  padding-bottom: 26px;
}

.footer p {
  color: #b8c2ce;
  margin: 8px 0 0;
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  color: #9faabd;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav__links.is-open {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 108px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .hero__grid, .split__grid, .feature-layout, .lead__grid, .ecosystem__box { grid-template-columns: 1fr; }
  .quick-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar nav { display: none; }
  .topbar__inner { gap: 10px; }
  .topbar p { font-size: 11px; }
  .brand small { display: none; }
  .hero { padding-top: 36px; }
  h1 { font-size: 34px; line-height: 1.08; }
  .hero__actions, .button { width: 100%; }
  .hero__media img { aspect-ratio: 1.16 / 1; }
  .quick-grid, .card-grid, .audience-grid, .steps, .trust__grid, .footer__grid, .ecosystem__links, .lead-form { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .ecosystem__box { padding: 22px; }
}
