:root {
  --bg: #f6f8f6;
  --surface: #ffffff;
  --surface-soft: #f1f5f2;
  --text: #142018;
  --muted: #5f7065;
  --line: #dbe6dd;
  --primary: #05c26a;
  --primary-deep: #049e57;
  --shadow-sm: 0 8px 24px rgba(20, 32, 24, 0.05);
  --shadow-md: 0 18px 45px rgba(20, 32, 24, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  padding-top: 78px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

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

.page-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 420px;
  background:
    radial-gradient(50% 50% at 80% 20%, rgba(5, 194, 106, 0.16), transparent 75%),
    radial-gradient(35% 35% at 20% 10%, rgba(5, 194, 106, 0.1), transparent 80%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-space {
  padding: 6rem 0;
}

.muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f2f6f3 25%, #f2f6f3 75%, rgba(255, 255, 255, 0));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, #f6f8f6 84%, transparent);
  border-bottom: 1px solid rgba(219, 230, 221, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.logo {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.74rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #11ce75, var(--primary));
  color: #fff;
  box-shadow: 0 10px 25px rgba(5, 194, 106, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(5, 194, 106, 0.35);
  background: linear-gradient(180deg, #10c771, var(--primary-deep));
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: #fff;
}

.btn-secondary:hover {
  background: #f7fbf8;
}

.hero {
  padding-top: 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-copy h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 17ch;
}

.hero-subtitle {
  margin-top: 1.2rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 1.65rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #496254;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.product-kicker {
  color: var(--muted);
  font-size: 0.8rem;
}

.product-header h2 {
  margin-top: 0.2rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: #e8f9f0;
  color: #0f8a50;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(5, 194, 106, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 194, 106, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(5, 194, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(5, 194, 106, 0);
  }
}

.product-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-panel {
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  border: 1px solid #e3ebe5;
}

.product-panel h3 {
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
}

.product-panel p,
.tasks-panel li {
  color: #4c6154;
  font-size: 0.88rem;
}

.tasks-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.tasks-panel li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.done {
  background: #0faa63;
}

.dot.run {
  background: #f6bf3f;
}

.dot.wait {
  background: #9bad9f;
}

.chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.chips span {
  padding: 0.35rem 0.55rem;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #deeadf;
  color: #2d4537;
  font-size: 0.78rem;
}

.activity-bar {
  margin-top: 0.75rem;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #ddebe0;
  overflow: hidden;
}

.activity-bar span {
  display: block;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--primary), #53df99);
  border-radius: inherit;
  animation: moveBar 2.5s ease-in-out infinite;
}

@keyframes moveBar {
  0%,
  100% {
    transform: translateX(-20%);
    width: 38%;
  }

  50% {
    transform: translateX(150%);
    width: 52%;
  }
}

.section-head {
  max-width: 730px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.55rem, 2.7vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

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

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

.info-card,
.use-case-card,
.step-card,
.stat-card,
.price-card,
.faq-item,
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card,
.use-case-card,
.step-card {
  padding: 1.25rem;
}

.info-card:hover,
.use-case-card:hover,
.step-card:hover,
.price-card:hover,
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(20, 32, 24, 0.08);
}

.info-card h3,
.use-case-card h3,
.step-card h3,
.price-card h3 {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.info-card p,
.use-case-card p,
.step-card p {
  margin-top: 0.55rem;
  font-size: 0.94rem;
  color: var(--muted);
}

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

.step-index {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.84rem;
}

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

.stat-card {
  padding: 1.2rem;
}

.stat-value {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 0.36rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonials-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  padding: 1.2rem;
  font-size: 0.95rem;
  color: #2e4235;
}

.testimonial cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  color: #5f7065;
  font-size: 0.86rem;
}

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

.price-card {
  padding: 1.35rem;
}

.price {
  margin-top: 0.5rem;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card ul {
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.price-card li {
  position: relative;
  padding-left: 1.1rem;
  color: #456051;
  font-size: 0.9rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8dbfa2;
}

.price-card .btn {
  width: 100%;
}

.featured {
  border: 1px solid #85d9ae;
  box-shadow: 0 22px 42px rgba(5, 194, 106, 0.2);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(5, 194, 106, 0.08), transparent 50%);
  pointer-events: none;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.6rem;
  background: #e7f8ef;
  color: #0f8b51;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.3rem 0.58rem;
}

.faq-wrap {
  max-width: 940px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.05rem 1.15rem;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #658374;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a,
.footer-inner p {
  color: #5f7065;
  font-size: 0.88rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-4,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  body {
    padding-top: 70px;
  }

  .section-space {
    padding: 4.8rem 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 1rem;
    left: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 0.4rem;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.65rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: #f4f8f5;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header .btn {
    display: none;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid,
  .grid-2,
  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
