:root {
  color-scheme: light;
  --ink: #10201d;
  --muted: #63736e;
  --line: #dce6e2;
  --soft: #f2f7f4;
  --paper: #ffffff;
  --brand: #0ba37f;
  --brand-dark: #063b32;
  --rose: #e11d48;
  --amber: #f1b84b;
  --blue: #4577d9;
  --shadow: 0 24px 80px rgba(11, 54, 47, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 230, 226, 0.76);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 9px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
}

.header-action {
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  background: var(--paper);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px) 54px;
  background:
    linear-gradient(120deg, rgba(11, 163, 127, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 78px);
  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: 19px;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: #ffffff;
  background: var(--brand-dark);
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin: 40px 0 0;
}

.hero-stats div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 850;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-visual {
  position: relative;
  min-height: 590px;
}

.screen {
  overflow: hidden;
  border: 1px solid rgba(6, 59, 50, 0.12);
  border-radius: 8px;
  background: #f8fbf9;
  box-shadow: var(--shadow);
}

.screen-toolbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.screen-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}

.metric,
.activity-row,
.feature-grid article,
.pricing-grid article,
.steps article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.metric {
  min-height: 104px;
  padding: 16px;
}

.metric span,
.activity-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 20px;
  font-size: 24px;
}

.metric.accent {
  border-color: rgba(11, 163, 127, 0.32);
  background: #eaf8f3;
}

.activity-panel {
  display: grid;
  gap: 12px;
  padding: 0 18px 22px;
}

.activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
}

.intent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
}

.activity-row.high .intent-dot {
  background: var(--rose);
}

.activity-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-dark);
}

.discount-pop {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: min(310px, 72%);
  padding: 22px;
  border: 1px solid rgba(225, 29, 72, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(60, 17, 30, 0.18);
}

.pop-kicker {
  margin-bottom: 14px;
  font-weight: 800;
}

.code-box {
  padding: 16px;
  border: 2px dashed var(--rose);
  border-radius: 8px;
  background: #fff5f7;
  text-align: center;
}

.code-box strong,
.code-box span {
  display: block;
}

.code-box strong {
  color: var(--rose);
  font-size: 27px;
}

.code-box span {
  margin-top: 5px;
  color: var(--muted);
}

.discount-pop p:last-of-type {
  margin: 14px 0;
  color: var(--muted);
  text-align: center;
}

.discount-pop button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--rose);
  font-weight: 800;
}

.section {
  padding: clamp(68px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: var(--brand-dark);
  color: #ffffff;
}

.split .eyebrow,
.split article span {
  color: #8fe7cb;
}

.split p {
  color: rgba(255, 255, 255, 0.74);
}

.steps,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.steps article {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.steps article span {
  display: inline-block;
  margin-bottom: 34px;
  font-weight: 850;
}

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

.section-heading p,
.feature-grid p,
.app-card p,
.pricing-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.68;
}

.app-showcase {
  background: #ffffff;
}

.app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 980px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(11, 163, 127, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(11, 163, 127, 0.1), transparent 42%),
    #ffffff;
  box-shadow: 0 20px 58px rgba(11, 54, 47, 0.08);
}

.app-card h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.app-card p:last-child {
  max-width: 700px;
  margin-bottom: 0;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 26px;
}

.pricing {
  background: var(--soft);
}

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

.pricing-grid article {
  padding: 24px;
}

.pricing-grid .featured {
  border-color: rgba(11, 163, 127, 0.32);
  box-shadow: 0 18px 52px rgba(11, 54, 47, 0.1);
}

.pricing-grid strong {
  display: block;
  margin: 24px 0 4px;
  font-size: 32px;
}

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

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.nav-open .nav-links {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 50px rgba(16, 32, 29, 0.12);
  }

  .site-header.nav-open .nav-links a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 520px;
  }

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

  .app-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-stats,
  .dashboard-grid,
  .steps,
  .feature-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 610px;
  }

  .discount-pop {
    right: 12px;
    bottom: 0;
    width: calc(100% - 24px);
  }

  .activity-row {
    grid-template-columns: auto 1fr;
  }

  .activity-row b {
    grid-column: 2;
    width: auto;
    height: 34px;
    border-radius: 8px;
  }
}
