:root {
  --ink: #17211d;
  --muted: #5b6761;
  --line: #dce6de;
  --surface: #ffffff;
  --soft: #f4f8f2;
  --cream: #fffaf0;
  --green: #176b4a;
  --green-dark: #0f4e36;
  --gold: #f4b63f;
  --rose: #bd4b5f;
  --blue: #315f9f;
  --shadow: 0 24px 70px rgba(22, 38, 30, 0.14);
}

* {
  box-sizing: border-box;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 10px 24px rgba(23, 107, 74, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #34423b;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #e9f3ec;
  color: var(--green-dark);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 58px 0 48px;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.hero-text,
.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(23, 107, 74, 0.2);
}

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

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--green);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-strip span,
.demo-points span,
.benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #33433b;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hero-copy {
  min-width: 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid #c9d9cf;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.browser-dots {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.browser-dots span:nth-child(2) {
  background: var(--rose);
}

.browser-dots span:nth-child(3) {
  background: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  color: #dfeae4;
  background: #1c2b25;
}

.mock-sidebar strong {
  color: #fff;
  margin-bottom: 14px;
}

.mock-panel {
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(244, 182, 63, 0.15), transparent 36%),
    linear-gradient(180deg, #fbfff8, #edf6ef);
}

.panel-heading,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.panel-heading small {
  color: var(--muted);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #dff0e5;
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-row {
  margin: 28px 0;
}

.metric-row div {
  flex: 1;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-row strong {
  display: block;
  font-size: 1.8rem;
}

.metric-row span,
.work-list p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.work-list p {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.work-list p span {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--green);
}

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

.band {
  width: 100%;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split h2,
.section-heading h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.split p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.mini-card,
.use-card,
.detail-card,
.price-card,
.resource-grid article,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(22, 38, 30, 0.06);
}

.card,
.mini-card,
.use-card,
.detail-card,
.price-card,
.resource-grid article {
  padding: 24px;
}

.card h3,
.mini-card h3,
.use-card h2,
.detail-card h2,
.price-card h2,
.resource-grid h2 {
  line-height: 1.16;
  margin-bottom: 10px;
}

.card p,
.mini-card p,
.use-card p,
.detail-card p,
.price-card p,
.resource-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.feature-matrix a {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.feature-matrix a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  counter-increment: steps;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.timeline li::before {
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
}

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

.quote-section {
  text-align: center;
}

.quote-section blockquote {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 800;
}

.quote-section p {
  color: var(--muted);
  font-weight: 800;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 56px;
  padding: 54px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(244, 182, 63, 0.25), transparent 38%),
    #173127;
}

.final-cta .eyebrow {
  color: #a9dfba;
}

.final-cta h2 {
  max-width: 760px;
}

.page-hero {
  display: grid;
  gap: 12px;
  padding: 86px 0 66px;
}

.page-hero .button {
  width: fit-content;
  margin-top: 10px;
}

.feature-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

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

.workflow article {
  padding: 26px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 38, 30, 0.06);
}

.workflow span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.pricing-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 24px 60px rgba(23, 107, 74, 0.16);
}

.price-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

.faq {
  max-width: 860px;
}

.faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.form-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 5vw, 60px);
}

.form-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: #34423b;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #cbd8cf;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 107, 74, 0.18);
  border-color: var(--green);
}

.form-status {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.demo-points,
.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
}

.resource-grid article span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-note {
  max-width: 900px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, auto);
  gap: 28px;
  padding: 38px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 470px;
  color: var(--muted);
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

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

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .form-hero,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .grid.three,
  .grid.five,
  .feature-matrix,
  .feature-details,
  .workflow,
  .pricing-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero,
  .page-hero,
  .section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 15vw, 3.35rem);
  }

  .grid.two,
  .grid.three,
  .grid.five,
  .feature-matrix,
  .feature-details,
  .workflow,
  .pricing-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  .mock-sidebar {
    display: none;
  }

  .metric-row {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta {
    padding: 34px 22px;
  }

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

  .proof-strip span,
  .demo-points span {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .final-cta {
    width: min(100%, 390px);
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero,
  .page-hero,
  .section,
  .final-cta {
    padding-right: 14px;
    padding-left: 14px;
    margin-right: 0;
    margin-left: 0;
  }

  .band {
    padding-right: 14px;
    padding-left: 14px;
  }
}
