:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-soft: #eef3f1;
  --ink: #101614;
  --muted: #5d6863;
  --line: #d9e1dd;
  --green: #0b7f52;
  --green-dark: #075438;
  --green-soft: #e7f5ee;
  --blue: #285c9f;
  --blue-soft: #e8eff8;
  --amber: #a06110;
  --amber-soft: #fff3df;
  --shadow: 0 20px 60px rgba(20, 35, 29, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(16, 22, 20, 0.06);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.logos,
.card-head,
.pricing-head,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-size: 13px;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px 0 20px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.22;
}

.hero-lede {
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(11, 127, 82, 0.2);
}

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

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

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin: 0;
}

.trust-strip div {
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-strip dd {
  margin: 3px 0 0;
  font-size: 18px;
  font-weight: 850;
}

.product-visual {
  min-width: 0;
}

.dashboard-window {
  overflow: hidden;
  background: #fbfcfb;
  border: 1px solid #cbd8d2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  background: #cdd6d2;
  border-radius: 50%;
}

.window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 14px;
}

.metric-card,
.chart-card,
.platform-card,
.insight-card {
  min-width: 0;
  padding: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-card {
  grid-column: span 2;
}

.metric-card.net {
  background: var(--green-soft);
  border-color: #b8dfcd;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.metric-card strong,
.insight-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.metric-card small {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 750;
}

.chart-card {
  grid-column: span 4;
}

.platform-card,
.insight-card {
  grid-column: span 3;
}

.card-head {
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.card-head strong {
  color: var(--green);
  font-size: 13px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 104px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  min-height: 34px;
  background: var(--green);
  border-radius: 6px 6px 0 0;
}

.platform-card ul,
.price-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.platform-card li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.platform-card li:last-child {
  border-bottom: 0;
}

.insight-card {
  background: var(--amber-soft);
  border-color: #ead2ac;
}

.insight-card strong {
  color: #6e3d05;
  font-size: 24px;
}

.insight-card p {
  margin: 12px 0 0;
  color: #6e5a3e;
}

.logos {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(var(--max), calc(100% - 32px));
  margin: 8px auto 0;
  padding: 22px 0 54px;
}

.logos span {
  padding: 9px 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.split-section,
.feature-section,
.workflow-section,
.pricing-section,
.faq-section {
  padding: 76px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.proof-grid,
.feature-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

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

.proof-grid article,
.feature-grid article,
.workflow-list li,
.price-card,
.testimonial-grid article,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-grid article,
.feature-grid article,
.workflow-list li,
.testimonial-grid article {
  padding: 22px;
}

.proof-grid p,
.feature-grid p,
.workflow-list p,
.price-card p,
.faq-list p {
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 28px;
  border-radius: 50%;
}

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

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

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

.section-intro {
  max-width: 780px;
  margin-bottom: 32px;
}

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

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(5) {
  background: var(--surface-soft);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--green);
  font-weight: 850;
}

.testimonial-band {
  padding: 66px 0;
  background: var(--ink);
  color: #fff;
}

.testimonial-grid {
  grid-template-columns: 1fr 1fr 0.7fr;
}

.testimonial-grid article {
  background: #18211e;
  border-color: #2c3834;
}

.testimonial-grid p {
  font-size: 19px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  color: #b9c6c0;
}

.score-card strong {
  font-size: 58px;
  line-height: 1;
}

.pricing-head {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.billing-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 18px 48px rgba(11, 127, 82, 0.12);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #b8dfcd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.price {
  display: block;
  margin-top: 16px;
  font-size: 44px;
  line-height: 1;
}

.price-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  flex: 1;
  margin: 22px 0;
}

.price-card li {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 70px;
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16, 22, 20, 0.08);
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

@media (max-width: 980px) {
  .hero,
  .split-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .proof-grid,
  .feature-grid,
  .workflow-list,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .section-shell,
  .logos,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 32px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .metric-card strong,
  .insight-card strong {
    font-size: 28px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .trust-strip,
  .proof-grid,
  .feature-grid,
  .workflow-list,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .chart-card,
  .platform-card,
  .insight-card {
    grid-column: auto;
  }

  .pricing-head,
  .final-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta {
    padding: 26px;
  }
}
