:root {
  --brand: #189962;
  --brand-dark: #127a4e;
  --brand-light: #e8f7f0;
  --ink: #0f172a;
  --slate: #475569;
  --muted: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.08), 0 20px 48px rgba(24, 153, 98, 0.14);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), #1fb374 60%, #3ed898);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate);
}

.nav-links a {
  transition: color 0.2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(24, 153, 98, 0.35);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(24, 153, 98, 0.45);
}

.btn-ghost {
  color: var(--brand);
  background: var(--brand-light);
}

.btn-ghost:hover {
  background: #d3efe2;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.nav .btn {
  padding: 10px 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(24, 153, 98, 0.1), transparent 60%),
    radial-gradient(700px 360px at 10% 110%, rgba(62, 216, 152, 0.1), transparent 60%),
    var(--bg-soft);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 153, 98, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 153, 98, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0 96px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 .accent {
  background: linear-gradient(90deg, var(--brand), #1fb374 55%, #3ed898);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  margin: 22px 0 34px;
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-meta div {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.mock-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-bar span:nth-child(1) {
  background: #f87171;
}

.mock-bar span:nth-child(2) {
  background: #fbbf24;
}

.mock-bar span:nth-child(3) {
  background: #34d399;
}

.mock-bar em {
  margin-left: 12px;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 10px;
}

.mock-body {
  padding: 20px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.mock-row .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.mock-row .name svg {
  color: var(--brand);
}

.status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.st-ok {
  background: #dcfce7;
  color: #15803d;
}

.st-warn {
  background: #fef9c3;
  color: #a16207;
}

.st-print {
  background: var(--brand-light);
  color: var(--brand);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
  padding: 16px 14px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}

.mock-chart i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #3ed898, var(--brand));
  opacity: 0.9;
  transform-origin: bottom;
  animation: grow 1s ease both;
}

@keyframes grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.2;
}

.section-head p {
  margin-top: 14px;
  color: var(--slate);
  font-size: 1.05rem;
}

.features {
  background: var(--bg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: all 0.25s;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #a9e3c9;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.integrations {
  background: var(--bg-soft);
}

.int-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: all 0.25s;
}

.int-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #a9e3c9;
}

.int-card .icon {
  margin: 0;
  flex-shrink: 0;
}

.int-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.int-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  text-align: left;
}

.step-num {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), #3ed898);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(24, 153, 98, 0.35);
}

.step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 8px;
}

.step p {
  color: var(--slate);
  font-size: 0.95rem;
}

.cta {
  padding: 0 0 96px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b5c39, var(--brand) 55%, #1fb374);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  color: #fff;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 80%);
}

.cta-box h2 {
  color: #fff;
  position: relative;
}

.cta-box p {
  position: relative;
  margin: 14px auto 32px;
  max-width: 32rem;
  color: #d3efe2;
  font-size: 1.05rem;
}

.cta-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--brand);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cta-contacts {
  position: relative;
  margin-top: 28px;
  font-size: 0.95rem;
  color: #a9e3c9;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contacts a {
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 0;
  }

  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 72px 0;
  }

  .cta-box {
    padding: 56px 24px;
  }
}
