:root {
  --field: #142f29;
  --field-2: #1d453b;
  --paper: #fbfff9;
  --text: #16231f;
  --muted: #63756d;
  --line: #d8e4dc;
  --green: #1f8069;
  --mint: #dff4eb;
  --orange: #d77a2b;
  --orange-soft: #fff0df;
  --shadow: 0 22px 64px rgba(16, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #edf4ef;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  inset: 16px 20px auto;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(20, 47, 41, 0.74);
  color: #fff;
  padding: 10px 12px;
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 1.1rem;
  font-weight: 950;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #d6e9e1;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 7px;
  padding: 0 16px;
  font-weight: 900;
}

.header-cta,
.primary-cta {
  background: var(--green);
  color: #fff;
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 150px 20px 72px;
  background:
    linear-gradient(90deg, rgba(13, 32, 27, 0.88), rgba(13, 32, 27, 0.56), rgba(13, 32, 27, 0.22)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 9px;
  color: #8bd4bd;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero p {
  max-width: 690px;
  color: #d9e9e2;
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.proof-strip,
.section,
.workflow,
.app-preview,
.site-footer {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.proof-strip article,
.feature-card,
.pricing-card,
.faq details,
.preview-shell,
.workflow {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.proof-strip article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
}

.proof-strip strong {
  font-size: 1.25rem;
}

.proof-strip span,
.feature-card p,
.workflow p,
.pricing-card p,
.faq p,
.site-footer span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding-top: 86px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 26px;
}

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

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

.feature-card span {
  color: var(--green);
  font-weight: 950;
}

.feature-card.accent {
  background: var(--orange-soft);
  border-color: #f2c18d;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1.15fr);
  gap: 28px;
  align-items: center;
  margin-top: 86px;
  padding-top: 32px;
  padding-bottom: 32px;
}

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

.workflow-steps article {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  background: #f4faf6;
  padding: 18px;
}

.workflow-steps strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--field);
  color: #fff;
}

.app-preview {
  padding-top: 86px;
}

.preview-shell {
  background: var(--field);
  color: #fff;
  padding: 18px;
}

.preview-top {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.preview-top span {
  border-radius: 7px;
  padding: 12px 14px;
  color: #d6e9e1;
  font-weight: 850;
}

.preview-top span:first-child {
  background: #fff;
  color: var(--field);
}

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

.preview-grid article {
  min-height: 130px;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 18px;
}

.preview-grid .orange {
  background: var(--orange-soft);
}

.preview-grid span {
  color: var(--muted);
  font-weight: 800;
}

.preview-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.75rem;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.pricing-card strong {
  font-size: 1.8rem;
}

.faq {
  padding-bottom: 86px;
}

.faq details {
  padding: 18px;
  margin-bottom: 12px;
}

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

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  padding-bottom: 30px;
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header,
  .workflow,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .proof-strip,
  .feature-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    border-radius: 0;
    background: var(--field);
  }

  .hero {
    min-height: 86vh;
    padding-top: 72px;
  }

  .proof-strip,
  .feature-grid,
  .workflow-steps,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
