:root {
  --bg: #f8fcfa;
  --surface: #ffffff;
  --surface-soft: #eef8f3;
  --text: #13231d;
  --muted: #5b6f66;
  --line: #dce9e3;
  --primary: #14795f;
  --primary-dark: #0d5f4a;
  --primary-soft: #dff4ec;
  --accent: #4467c4;
  --shadow: 0 24px 80px rgba(22, 60, 47, 0.11);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

strong {
  color: var(--text);
}

code {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6faf8;
  color: var(--primary-dark);
  padding: 0.1rem 0.35rem;
  font-size: 0.9em;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(20, 121, 95, 0.08), transparent 34%),
    var(--surface-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 233, 227, 0.76);
  background: rgba(248, 252, 250, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 82px;
}

.hero::before {
  position: absolute;
  inset: -220px -160px auto auto;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: rgba(20, 121, 95, 0.12);
  content: "";
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(240px, 0.52fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(20, 121, 95, 0.24);
  color: #fff;
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.trust-note {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero-card {
  border: 1px solid rgba(220, 233, 227, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 243, 0.96)),
    #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-screenshot {
  margin: 0;
  width: 100%;
  max-width: min(100%, 380px);
  justify-self: end;
}

.screenshot-chrome {
  display: flex;
  gap: 7px;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  background: #f5faf7;
  padding: 14px 16px;
}

.screenshot-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bfd3ca;
}

.screenshot-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 20px 20px;
  background: #eef6f2;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.stat-card,
.stage-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
}

.stat-card h2 {
  max-width: 980px;
}

.stat-card p {
  max-width: 920px;
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 58px;
}

.content-card,
.feature-card,
.step-card,
.tech-card,
.screenshot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 26px;
}

.content-card p:last-child,
.feature-card p:last-child,
.step-card p:last-child,
.tech-card p:last-child,
.screenshot-card p:last-child {
  margin-bottom: 0;
}

.screenshot-card .screenshot-frame {
  margin-bottom: 22px;
  border-radius: 18px;
}

.screenshot-card .screenshot-chrome {
  display: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 230px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 14px;
  background: var(--text);
  color: #fff;
  font-weight: 900;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stage-card,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 38px;
  align-items: center;
}

.stage-card p {
  margin-bottom: 0;
}

.stage-list {
  display: grid;
  gap: 12px;
}

.stage-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fcfa;
  color: var(--text);
  padding: 12px 16px;
  font-weight: 800;
}

.contact-section {
  padding-top: 40px;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fcfa;
  color: var(--primary-dark);
  padding: 14px 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-details a:hover {
  border-color: rgba(20, 121, 95, 0.42);
  background: var(--primary-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-grid,
  .two-column,
  .stage-card,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-screenshot {
    max-width: min(100%, 420px);
    justify-self: center;
  }

  .feature-grid,
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 3px;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid,
  .steps,
  .screenshot-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .feature-card,
  .step-card,
  .tech-card,
  .screenshot-card,
  .stat-card,
  .stage-card,
  .contact-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
