:root {
  --ink: #102027;
  --muted: #66747c;
  --line: #dce5e2;
  --paper: #fbfdfb;
  --white: #ffffff;
  --green: #10a66a;
  --green-dark: #08784b;
  --navy: #123047;
  --teal: #0b7285;
  --amber: #f2a922;
  --shadow: 0 18px 48px rgba(18, 48, 71, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 253, 251, 0.88);
  border-bottom: 1px solid rgba(220, 229, 226, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 136px;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: #40525b;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.footer a:hover {
  color: var(--green-dark);
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(270deg, rgba(251, 253, 251, 0.98) 0%, rgba(251, 253, 251, 0.9) 38%, rgba(251, 253, 251, 0.2) 76%);
}

.hero-content {
  width: min(680px, calc(100% - 36px));
  margin-left: auto;
  margin-right: clamp(18px, 6vw, 76px);
  padding: 78px 0 110px;
}

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

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

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 590px;
  color: #465961;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

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

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary.dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.full {
  width: 100%;
  margin-top: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-stats span {
  min-width: 136px;
  padding: 12px 14px;
  color: #51636a;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 229, 226, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(18, 48, 71, 0.08);
}

.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: end;
  background: var(--white);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.metrics .section-kicker {
  color: #8df0c1;
}

.metrics h2 {
  margin-bottom: 0;
}

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

.metric-card {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 12px 0 8px;
  color: #ffffff;
  font-size: 52px;
  line-height: 1;
}

.metric-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.feature-band {
  background: #eef7f1;
}

.screenshots {
  background: var(--white);
}

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

.screenshot-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(220, 229, 226, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  background: #f8fafc;
}

.screenshot-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.screenshot-card strong {
  color: var(--navy);
  font-size: 18px;
}

.screenshot-card span {
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.pricing-card,
details {
  background: var(--white);
  border: 1px solid rgba(220, 229, 226, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.08);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.feature-card p,
.pricing-card li,
details p {
  color: var(--muted);
}

.workflow {
  background: var(--white);
}

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

.step {
  min-height: 150px;
  padding: 22px;
  border-top: 4px solid var(--amber);
  background: #f7faf8;
  border-radius: 8px;
}

.step span {
  display: block;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: center;
  background: #f5fbfd;
}

.price-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.pricing-card {
  padding: 30px;
}

.plan-label {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 22px 0;
}

.faq {
  background: var(--white);
}

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

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) 72px;
  padding: 48px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.contact .section-kicker {
  color: #8df0c1;
}

.contact h2 {
  max-width: 850px;
  margin-bottom: 12px;
}

.contact p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #5a6c74;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(251, 253, 251, 0.98) 0%, rgba(251, 253, 251, 0.9) 46%, rgba(251, 253, 251, 0.18) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 54px;
  }

  .intro,
  .metrics,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact {
    margin-bottom: 42px;
    padding: 32px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .brand-logo {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    min-height: 820px;
    align-items: start;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .features,
  .metric-grid,
  .screenshot-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
