:root {
  --nlp-page-max: 1160px;
  --nlp-page-pad-x: 22px;
  --nlp-bg: lab(98.8505% -.00655651 .761843); /* #fbfcfb; */
  --nlp-surface: #ffffff;
  --nlp-text: #000;
  --nlp-muted: #545454;
  --nlp-muted-2: #8d93a0;
  --nlp-foreground: lab(1.5459% -.0968501 -1.40916);
  --nlp-line: #e9edf1;
  --nlp-primary: #000;
  --nlp-primary-hover: #1a1d24;
  --nlp-primary-text: #ffffff;
  --nlp-accent: #169b59;
  --nlp-accent2: lab(34.9512% -60.8722 32.1139);
  --nlp-accent-soft: #eaf8ef;
  --nlp-radius-sm: 12px;
  --nlp-radius-md: 16px;
  --nlp-radius-lg: 20px;
  --nlp-shadow-1: 0 1px 2px rgba(15, 17, 21, 0.06), 0 14px 40px rgba(15, 17, 21, 0.04);
  --nlp-shadow-2: 0 1px 2px rgba(15, 17, 21, 0.08), 0 24px 64px rgba(15, 17, 21, 0.08);
  --nlp-text-base: 0.93rem;
  --nlp-text-h3: 1.25rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

body[data-page="landing"] .material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

body[data-page="landing"] {
  background: var(--nlp-bg);
  color: var(--nlp-text);
  overflow-x: clip;
  font-family: "Inter", "Avenir Next", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-page="landing"] .nlp-page {
  width: min(100%, var(--nlp-page-max));
  margin: 0 auto;
  padding: 12px var(--nlp-page-pad-x) 0px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

section{
    margin: 0 0 150px 0;
}
body[data-page="landing"] .nlp-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px max(var(--nlp-page-pad-x), calc((100vw - var(--nlp-page-max)) / 2 + var(--nlp-page-pad-x)));
  border-bottom: 1px solid transparent;
  background: rgba(251, 252, 251, 0);
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

body[data-page="landing"].landing-header-scrolled .nlp-topbar {
  background: rgba(251, 252, 251, 0.72);
  border-bottom-color: rgba(15, 17, 21, 0.08);
  box-shadow: 0 8px 26px rgba(15, 17, 21, 0.05);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}

body[data-page="landing"].landing-reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.92s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body[data-page="landing"].landing-reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body[data-page="landing"] .nlp-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body[data-page="landing"] .logo-mark {
  display: grid;
  place-items: center;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(155deg, #121419, #1f8c60);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body[data-page="landing"] .logo-mark.small {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 0.72rem;
}

body[data-page="landing"] .nlp-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
}

body[data-page="landing"] .nlp-nav a {
  color: var(--nlp-muted);
  font-size: 0.845rem;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 500;
}

body[data-page="landing"] .nlp-nav a:hover {
  background: #f5f7f9;
  color: var(--nlp-text);
}

body[data-page="landing"] .nlp-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

body[data-page="landing"] .nlp-link {
  color: var(--nlp-muted);
  font-size: 0.845rem;
  font-weight: 600;
}

body[data-page="landing"] .nlp-link:hover {
  color: var(--nlp-text);
}

body[data-page="landing"] .nlp-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 38px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

body[data-page="landing"] .nlp-btn:hover {
  transform: translateY(-1px);
}

body[data-page="landing"] .nlp-btn-primary {
  background: var(--nlp-primary);
  color: var(--nlp-primary-text);
}

body[data-page="landing"] .nlp-btn-primary:hover {
  background: var(--nlp-primary-hover);
}

body[data-page="landing"] .nlp-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 48px;
}

body[data-page="landing"] .nlp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--nlp-accent) 26%, #dbeedd);
  background: var(--nlp-accent-soft);
  color: var(--nlp-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body[data-page="landing"] .nlp-badge .material-symbols-rounded {
  font-size: 15px;
}

body[data-page="landing"] .nlp-hero h1 {
  margin: 0;
  display: grid;
  gap: 2px;
  justify-items: center;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.055em;
}

body[data-page="landing"] .nlp-hero h1 .accent {
  color: var(--nlp-accent);
}

body[data-page="landing"] .nlp-subtitle {
  margin: 0;
  max-width: 530px;
  color: var(--nlp-muted);
  font-size: var(--nlp-text-base);
  line-height: 1.55;
}

body[data-page="landing"] .nlp-hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

body[data-page="landing"] .nlp-hero-actions .material-symbols-rounded {
  font-size: 16px;
}

body[data-page="landing"] .nlp-hero-card {
    width: min(100%, 780px);
    margin-top: 12px;
    background: #FFF;
    padding: 8px;
    border-radius: 24px;
    border: 1px solid rgba(15, 17, 21, 0.08);
    box-shadow:
    0 2px 5px rgba(15, 17, 21, 0.03),
    0 24px 48px rgba(15, 17, 21, 0.06);
}

body[data-page="landing"] .nlp-border-card {
    padding: 8px;
    border-radius: 24px;
    background: #f9f9f7;
    padding: 54px;
    display: grid;
    gap: 40px;
  }

body[data-page="landing"] .nlp-hero-card-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px;
}

body[data-page="landing"] .nlp-hero-total {
  display: grid;
  gap: 6px;
  justify-items: start;
}

body[data-page="landing"] .nlp-hero-total p {
  margin: 0 0 10px 40px;
  color: #5c626d;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 400;
  text-transform: uppercase;
}

body[data-page="landing"] .nlp-hero-total-value {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 0.95;
}

body[data-page="landing"] .nlp-hero-total-main {
  font-size: clamp(2.35rem, 8vw, 4.1rem);
  letter-spacing: -0.055em;
  font-weight: 600;
  color: #0a0c10;
}

body[data-page="landing"] .nlp-hero-total-decimals {
  margin-bottom: 0.18em;
  color: #737986;
  font-size: clamp(1rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

body[data-page="landing"] .nlp-growth-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid #add4bb;
  background: #dbeee2;
  color: #0f7d42;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body[data-page="landing"] .nlp-growth-pill .material-symbols-rounded {
  font-size: 18px;
}

body[data-page="landing"] .nlp-bars {
  height: 230px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  align-items: end;
  padding: 4px 0 0;
}

body[data-page="landing"] .nlp-bars span {
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(170, 220, 193, 0.95) 0%, rgba(0, 142, 62, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

body[data-page="landing"] .nlp-hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="landing"] .nlp-hero-stats article {
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 16px 14px;
  text-align: center;
  display: grid;
  gap: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body[data-page="landing"] .nlp-hero-stats p {
  margin: 0;
  color: #666d78;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

body[data-page="landing"] .nlp-hero-stats strong {
  margin: 0;
  color: #111419;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

body[data-page="landing"] .nlp-hero-stat-track {
  height: 4px;
  border-radius: 999px;
  background: #d9ddd8;
  overflow: hidden;
}

body[data-page="landing"] .nlp-hero-stat-track span {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a7f38, #0a7f38);
}


body[data-page="landing"] .nlp-section {
  display: grid;
  gap: 100px;
}

body[data-page="landing"] .nlp-section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

body[data-page="landing"] .nlp-kicker {
  margin: 0;
  color: var(--nlp-accent);
  letter-spacing: 0.15em;
  font-size: 0.845rem;
  font-weight: 600;
  text-transform: uppercase;
}

body[data-page="landing"] .nlp-section-head h2 {
  margin: 0;
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
}

body[data-page="landing"] .nlp-feature-grid,
body[data-page="landing"] .nlp-steps-grid,
body[data-page="landing"] .nlp-testimonial-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="landing"] .nlp-feature-card,
body[data-page="landing"] .nlp-step-card,
body[data-page="landing"] .nlp-testimonial-card {
  border: 1px solid var(--nlp-line);
  border-radius: var(--nlp-radius-md);
  background: var(--nlp-surface);
  box-shadow: var(--nlp-shadow-1);
}

body[data-page="landing"] .nlp-feature-card {
  min-height: 190px;
  padding: 40px;
  display: grid;
  align-content: start;
  gap: 10px;
}

body[data-page="landing"] .nlp-feature-card .material-symbols-rounded {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--nlp-accent);
  background: var(--nlp-accent-soft);
  margin-bottom: 18px;
}

body[data-page="landing"] .nlp-feature-card h3 {
  margin: 0;
  font-size: var(--nlp-text-h3);
  letter-spacing: -0.02em;
  font-weight: 600;
}

body[data-page="landing"] .nlp-feature-card p {
  margin: 0;
  color: var(--nlp-muted);
  font-size: var(--nlp-text-base);
  line-height: 1.5;
}

body[data-page="landing"] .nlp-step-card {
  padding: 40px;
  display: grid;
  align-content: start;
  gap: 8px;
}


body[data-page="landing"] .nlp-step-card h3 {
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-size: var(--nlp-text-h3);
}

body[data-page="landing"] .nlp-step-card p {
  margin: 0;
  color: var(--nlp-muted);
  font-size: var(--nlp-text-base);
  line-height: 1.5;
}

body[data-page="landing"] .nlp-step-number {
    margin: 0;
    font-size: clamp(4.5rem, 5vw, 6rem) !important;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #d7dce4 !important;
    font-weight: 700;
  }

body[data-page="landing"] .nlp-step-mock {
  margin-top: 14px;
  border-radius: 20px;
  border: 1px solid #dfe4de;
  background: #f3f5f1;
  min-height: 168px;
  padding: 18px 20px;
  overflow: hidden;
}

body[data-page="landing"] .nlp-step-signup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body[data-page="landing"] .nlp-step-signup-line {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dfdfdf, #d5d5d5);
}

body[data-page="landing"] .nlp-step-signup-line-lg {
  width: min(100%, 76%);
}

body[data-page="landing"] .nlp-step-signup-line-sm {
  width: min(100%, 52%);
}

body[data-page="landing"] .nlp-step-signup-btn {
  margin-top: auto;
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid #8fc7a8;
  background: #d3e7d8;
  color: #0f7a43;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body[data-page="landing"] .nlp-step-accounts {
  display: grid;
  align-content: center;
  gap: 0;
}

body[data-page="landing"] .nlp-step-account-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: #555c69;
  font-size: 0.98rem;
  line-height: 1.2;
}

body[data-page="landing"] .nlp-step-account-row + .nlp-step-account-row {
  border-top: 1px solid rgba(15, 17, 21, 0.05);
}

body[data-page="landing"] .nlp-step-account-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #11843f;
  box-shadow: 0 0 0 3px rgba(17, 132, 63, 0.08);
}

body[data-page="landing"] .nlp-step-chart {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(244, 247, 243, 0.9)),
    #f3f5f1;
}

body[data-page="landing"] .nlp-step-chart::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(15, 17, 21, 0.05) 0,
      rgba(15, 17, 21, 0.05) 1px,
      transparent 1px,
      transparent 36px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(15, 17, 21, 0.045) 0,
      rgba(15, 17, 21, 0.045) 1px,
      transparent 1px,
      transparent 26px
    );
  opacity: 0.35;
}

body[data-page="landing"] .nlp-step-chart-bars {
  position: absolute;
  inset: 28px 20px 20px;
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
}

body[data-page="landing"] .nlp-step-chart-bars span {
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, #bfe8cd 0%, #7fcb9b 100%);
  opacity: 0.55;
}

body[data-page="landing"] .nlp-step-chart-svg {
  position: absolute;
  inset: 22px 18px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 40px);
}

body[data-page="landing"] .nlp-step-chart-area {
  fill: rgba(22, 155, 89, 0.12);
}

body[data-page="landing"] .nlp-step-chart-line {
  fill: none;
  stroke: #13844a;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="landing"] .nlp-step-chart-point {
  fill: #13844a;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2;
}

body[data-page="landing"] .nlp-step-signup-btn,
body[data-page="landing"] .nlp-step-chart-bars span {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

body[data-page="landing"].landing-reveal-enabled .nlp-step-card[data-reveal]:not(.is-visible) .nlp-step-signup-btn {
  transform: translateY(10px) scale(0.98);
}

body[data-page="landing"].landing-reveal-enabled .nlp-step-card[data-reveal]:not(.is-visible) .nlp-step-chart-bars span {
  opacity: 0;
  transform: translateY(10px) scaleY(0.75);
}

body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span {
  opacity: 0.55;
  transform: translateY(0) scaleY(1);
}

body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(1) { transition-delay: 70ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(2) { transition-delay: 110ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(3) { transition-delay: 150ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(4) { transition-delay: 190ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(5) { transition-delay: 230ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(6) { transition-delay: 270ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(7) { transition-delay: 310ms; }
body[data-page="landing"] .nlp-step-card.is-visible .nlp-step-chart-bars span:nth-child(8) { transition-delay: 350ms; }

body[data-page="landing"] .nlp-metrics {
  border-top: 1px solid var(--nlp-line);
  border-bottom: 1px solid var(--nlp-line);
  padding: 110px 6px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="landing"] .nlp-metrics article {
  text-align: center;
  display: grid;
  gap: 14px;
}

body[data-page="landing"] .nlp-metrics strong {
  font-size: clamp(1.95rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600 !important;
}

body[data-page="landing"] .nlp-metrics p {
  margin: 0;
  color: var(--nlp-muted);
  font-size: 0.875rem;
}

body[data-page="landing"] .nlp-testimonial-card {
  padding: 48px 44px 42px;
  display: grid;
  align-content: start;
  gap: 18px;
}

body[data-page="landing"] .nlp-stars {
  margin: 0;
  color: var(--nlp-accent) !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.1em;
  font-weight: 600 !important;
}

body[data-page="landing"] .nlp-testimonial-card > p {
  margin: 0;
  color: #2c3138;
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
}

body[data-page="landing"] .nlp-testimonial-card footer {
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

body[data-page="landing"] .nlp-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dde8e3;
  color: #0f7c43;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body[data-page="landing"] .nlp-testimonial-author {
  display: grid;
  gap: 2px;
}

body[data-page="landing"] .nlp-testimonial-card footer strong {
  color: #15181d;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body[data-page="landing"] .nlp-testimonial-card footer .nlp-testimonial-author span {
  color: #6a717d;
  font-size: 0.86rem;
}

body[data-page="landing"] .nlp-testimonial-author span {
  line-height: 1.25;
}

body[data-page="landing"] .nlp-faq {
  gap: 90px;
}

body[data-page="landing"] .nlp-faq-list {
  display: grid;
}

body[data-page="landing"] .nlp-faq details {
  border-bottom: 1px solid var(--nlp-line);
  padding: 24px 0;
}

body[data-page="landing"] .nlp-faq details:first-child {
  border-top: 1px solid var(--nlp-line);
}

body[data-page="landing"] .nlp-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

body[data-page="landing"] .nlp-faq summary::-webkit-details-marker {
  display: none;
}

body[data-page="landing"] .nlp-faq summary::after {
  content: "+";
  color: var(--nlp-muted-2);
}

body[data-page="landing"] .nlp-faq details[open] summary::after {
  content: "−";
}

body[data-page="landing"] .nlp-faq p {
  margin: 8px 0 0;
  color: var(--nlp-muted);
  font-size: var(--nlp-text-base);
  line-height: 1.5;
}

body[data-page="landing"] .nlp-faq .nlp-kicker {
    color: var(--nlp-accent);
  }


body[data-page="landing"] .nlp-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(15, 17, 21, 0.07);
  border-radius: 28px;
  background:
    radial-gradient(620px 320px at 16% -8%, rgba(113, 203, 150, 0.28) 0%, rgba(113, 203, 150, 0.12) 28%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(460px 260px at 84% 14%, rgba(208, 245, 222, 0.9) 0%, rgba(237, 253, 245, 0.55) 34%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    0 2px 6px rgba(15, 17, 21, 0.03),
    0 26px 60px rgba(15, 17, 21, 0.06);
  padding: clamp(58px, 9vw, 112px) clamp(22px, 6vw, 64px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

body[data-page="landing"] .nlp-final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  right: -70px;
  top: -110px;
  border-radius: 50%;
  background: rgba(130, 212, 167, 0.22);
  filter: blur(22px);
}

body[data-page="landing"] .nlp-final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 12% 18% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 17, 21, 0.07), transparent);
}

body[data-page="landing"] .nlp-final-cta h2 {
  margin: 0;
  font-size: clamp(2.05rem, 5.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #0b0d10;
}

body[data-page="landing"] .nlp-final-cta p {
  margin: 0;
  max-width: 600px;
  color: #5d6470;
  font-size: var(--nlp-text-base);
  line-height: 1.55;
}

body[data-page="landing"] .nlp-final-cta .nlp-kicker {
  color: #0f8a48;
}

body[data-page="landing"] .nlp-final-cta .nlp-hero-actions {
  margin-top: 8px;
  gap: 14px;
}

body[data-page="landing"] .nlp-final-cta .nlp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #303640;
  font-weight: 500;
}

body[data-page="landing"] .nlp-footer {
  width: 100vw;
  margin-top: 24px;
  margin-inline: calc(50% - 50vw);
  background: #f5f6f3;
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}

body[data-page="landing"] .nlp-footer-inner {
  width: min(100%, var(--nlp-page-max));
  margin: 0 auto;
  padding: 72px var(--nlp-page-pad-x) 34px;
  display: grid;
  gap: 52px;
}

body[data-page="landing"] .nlp-footer-top {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(0, 1fr));
}

body[data-page="landing"] .nlp-footer-col {
  display: grid;
  align-content: start;
  gap: 16px;
}

body[data-page="landing"] .nlp-footer-col-brand {
  gap: 18px;
}

body[data-page="landing"] .nlp-footer-col-brand .nlp-brand {
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body[data-page="landing"] .nlp-footer .logo-mark.small {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 0.9rem;
  letter-spacing: -0.04em;
}

body[data-page="landing"] .nlp-footer-brand-copy {
  margin: 0;
  max-width: 320px;
  color: #6a707b;
  font-size: 1.02rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

body[data-page="landing"] .nlp-footer h3 {
  margin: 0;
  color: #565d68;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="landing"] .nlp-footer-links {
  display: grid;
  gap: 14px;
}

body[data-page="landing"] .nlp-footer-links a,
body[data-page="landing"] .nlp-footer-links p {
  margin: 0;
  color: #666d78;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

body[data-page="landing"] .nlp-footer-links a:hover {
  color: #111419;
}

body[data-page="landing"] .nlp-footer-bottom {
  border-top: 1px solid rgba(15, 17, 21, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body[data-page="landing"] .nlp-footer-bottom p {
  margin: 0;
  color: #6c727d;
  font-size: 0.93rem;
  line-height: 1.4;
}

body[data-page="landing"] .nlp-footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  body[data-page="landing"] {
    --nlp-page-pad-x: 14px;
  }

  body[data-page="landing"] .nlp-page {
    padding: 10px var(--nlp-page-pad-x) 40px;
    gap: 58px;
  }

  body[data-page="landing"] .nlp-topbar {
    grid-template-columns: 1fr auto;
    row-gap: 8px;
  }

  body[data-page="landing"] .nlp-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  body[data-page="landing"] .nlp-feature-grid,
  body[data-page="landing"] .nlp-steps-grid,
  body[data-page="landing"] .nlp-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="landing"] .nlp-step-card {
    padding: 32px 28px;
  }

  body[data-page="landing"] .nlp-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="landing"] .nlp-footer {
    margin-top: 18px;
  }

  body[data-page="landing"] .nlp-footer-inner {
    padding: 48px var(--nlp-page-pad-x) 26px;
    gap: 38px;
  }

  body[data-page="landing"] .nlp-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  body[data-page="landing"] .nlp-footer-col-brand {
    grid-column: 1 / -1;
    gap: 14px;
  }

  body[data-page="landing"] .nlp-footer-brand-copy {
    max-width: 100%;
    font-size: 0.96rem;
  }

  body[data-page="landing"] .nlp-footer-links a,
  body[data-page="landing"] .nlp-footer-links p {
    font-size: 0.95rem;
  }

  body[data-page="landing"] .nlp-footer-bottom {
    padding-top: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  body[data-page="landing"] .nlp-footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  body[data-page="landing"] {
    --nlp-page-pad-x: 10px;
  }

  body[data-page="landing"] .nlp-page {
    padding: 8px var(--nlp-page-pad-x) 34px;
    gap: 46px;
  }

  body[data-page="landing"] .nlp-topbar {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  body[data-page="landing"] .nlp-nav {
    display: none;
  }

  body[data-page="landing"] .nlp-top-actions {
    justify-content: space-between;
  }

  body[data-page="landing"] .nlp-hero-actions {
    width: 100%;
    flex-direction: column;
  }

  body[data-page="landing"] .nlp-hero-actions .nlp-btn {
    width: 100%;
  }

  body[data-page="landing"] .nlp-hero-card {
    padding: 14px;
    gap: 14px;
  }

  body[data-page="landing"] .nlp-hero-card-head {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  body[data-page="landing"] .nlp-growth-pill {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  body[data-page="landing"] .nlp-growth-pill .material-symbols-rounded {
    font-size: 16px;
  }

  body[data-page="landing"] .nlp-hero-total p {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  body[data-page="landing"] .nlp-bars {
    height: 164px;
    gap: 4px;
  }

  body[data-page="landing"] .nlp-hero-stats article {
    padding: 12px 12px 11px;
    border-radius: 14px;
  }

  body[data-page="landing"] .nlp-hero-stats p {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  body[data-page="landing"] .nlp-hero-stats strong {
    font-size: 1rem;
  }

  body[data-page="landing"] .nlp-step-card {
    padding: 28px 20px;
  }

  body[data-page="landing"] .nlp-step-mock {
    min-height: 150px;
    padding: 16px;
  }

  body[data-page="landing"] .nlp-testimonial-card {
    padding: 28px 20px 24px;
    gap: 14px;
  }

  body[data-page="landing"] .nlp-testimonial-card > p {
    min-height: 0;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  body[data-page="landing"] .nlp-testimonial-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  body[data-page="landing"] .nlp-testimonial-card footer strong {
    font-size: 0.95rem;
  }

  body[data-page="landing"] .nlp-testimonial-card footer .nlp-testimonial-author span {
    font-size: 0.8rem;
  }

  body[data-page="landing"] .nlp-step-account-row {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  body[data-page="landing"] .nlp-hero-stats,
  body[data-page="landing"] .nlp-feature-grid,
  body[data-page="landing"] .nlp-steps-grid,
  body[data-page="landing"] .nlp-metrics,
  body[data-page="landing"] .nlp-testimonial-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="landing"] .nlp-final-cta {
    border-radius: 22px;
    gap: 16px;
    padding: 44px 18px;
  }

  body[data-page="landing"] .nlp-final-cta .nlp-hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  body[data-page="landing"] .nlp-final-cta .nlp-hero-actions .nlp-btn {
    width: 100%;
  }

  body[data-page="landing"] .nlp-final-cta .nlp-link {
    width: 100%;
  }

  body[data-page="landing"] .nlp-footer {
    margin-top: 14px;
  }

  body[data-page="landing"] .nlp-footer-inner {
    padding: 34px var(--nlp-page-pad-x) 18px;
    gap: 26px;
  }

  body[data-page="landing"] .nlp-footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body[data-page="landing"] .nlp-footer-col {
    gap: 12px;
  }

  body[data-page="landing"] .nlp-footer-col-brand {
    gap: 12px;
  }

  body[data-page="landing"] .nlp-footer .logo-mark.small {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.84rem;
  }

  body[data-page="landing"] .nlp-footer-brand-copy {
    font-size: 0.92rem;
  }

  body[data-page="landing"] .nlp-footer h3 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  body[data-page="landing"] .nlp-footer-links {
    gap: 10px;
  }

  body[data-page="landing"] .nlp-footer-links a,
  body[data-page="landing"] .nlp-footer-links p {
    font-size: 0.9rem;
  }

  body[data-page="landing"] .nlp-footer-bottom {
    padding-top: 16px;
    gap: 6px;
  }

  body[data-page="landing"] .nlp-footer-bottom p {
    font-size: 0.83rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="landing"].landing-reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  body[data-page="landing"] .nlp-step-signup-btn,
  body[data-page="landing"] .nlp-step-chart-bars span {
    transition: none;
  }
}
