/* Marketing landing — uses same CSS variables as dashboard tokens */

:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-muted: #475569;
  --text-faint: #94a3b8;
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-soft: #eef2ff;
  --accent: #fb7185;
  --accent-hover: #f43f5e;
  --trust: #0d9488;
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --radius-md: 10px;
  --radius-lg: 14px;
}

html, body { overflow-x: hidden; }

.land-body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Reusable horizontal gutter — same on the sticky nav and on the content. */
.land-nav,
.land-wrap {
  padding-left: 56px;
  padding-right: 56px;
}

@media (max-width: 760px) {
  .land-nav,
  .land-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Links only — do NOT target `.land-btn` or `.p-btn` anchors (they set their own colours). */
.land-body a:not(.land-btn):not(.p-btn) {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.land-body a:not(.land-btn):not(.p-btn):hover {
  color: var(--primary-hover);
}

.land-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}
.land-nav__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.land-nav__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.land-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
}
.land-nav__brand:hover {
  text-decoration: none;
}

.land-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3730a3, var(--primary));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.land-mark svg {
  width: 26px;
  height: 26px;
}

.land-nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  border: 0;
}

.land-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-color 0.14s;
}
.land-nav__link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.land-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
}
.land-nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
}
.land-nav__toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .land-nav__toggle {
    display: inline-flex;
  }
  .land-nav__inner {
    flex-wrap: wrap;
    align-items: center;
  }
  .land-nav__right {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    order: 3;
    padding: 12px 0 4px;
    border-top: 1px solid var(--border);
  }
  body.land-nav-open .land-nav__right {
    display: flex;
  }
  .land-nav__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .land-nav__actions .land-btn {
    width: 100%;
    justify-content: center;
  }
  .lang-switch-landing {
    justify-content: center;
    width: 100%;
  }
}

.land-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
}
.land-btn--ghost {
  background: transparent;
  color: #374151;
  border-color: #d1d5db;
  font-weight: 700;
}
.land-btn--ghost:hover {
  background: #f1f5f9;
  color: #111827;
  border-color: #9ca3af;
}
.land-btn--primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(67, 56, 202, 0.35);
}
.land-btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
}

.land-btn--amber {
  background: #d97706;
  color: #fff;
  border-color: #d97706;
  box-shadow: 0 4px 14px rgba(217,119,6,.30);
}
.land-btn--amber:hover { background: #b45309; border-color: #b45309; color: #fff; }

.land-cb-pilot {
  margin-top: 28px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 100%);
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-lg, 16px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.land-cb-pilot__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #854d0e;
  color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.land-cb-pilot__inner { flex: 1 1 300px; }
.land-cb-pilot__title { margin: 0 0 4px; font-size: 18px; font-weight: 800; color: #78350f; }
.land-cb-pilot__sub { margin: 0 0 12px; font-size: 13px; line-height: 1.55; color: #92400e; }
.land-cb-pilot__facts { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 12px; font-weight: 600; color: #78350f; }
.land-cb-pilot__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.land-cb-pilot__after { margin: 0; font-size: 11px; color: #a16207; font-style: italic; }

.land-market-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.land-market-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  text-decoration: none;
}
.land-market-switch a:hover,
.land-market-switch a.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
  text-decoration: none;
}
.land-market-card {
  margin-top: 14px;
  max-width: 680px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
}
.land-market-card strong,
.land-market-card span {
  display: block;
}
.land-market-card p {
  margin: 6px 0 8px;
  color: var(--text);
  line-height: 1.45;
}
.land-market-card span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* -------------------------------------------------------------------------
   Primary pill: browsers often force `a:visited` / `-webkit-text-fill-color`
   to a link colour that matches our indigo background → unreadable text.
   These rules intentionally win over user-agent + extensions.
   ------------------------------------------------------------------------- */
.land-body a.land-btn.land-btn--primary,
.land-body a.land-btn.land-btn--primary:link,
.land-body a.land-btn.land-btn--primary:visited,
.land-body a.land-btn.land-btn--primary:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.land-body a.land-btn.land-btn--primary:hover,
.land-body a.land-btn.land-btn--primary:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

/* Bottom CTA band: white pill + indigo text (same visited-link trap) */
.land-cta-band a.land-btn.land-btn--primary,
.land-cta-band a.land-btn.land-btn--primary:link,
.land-cta-band a.land-btn.land-btn--primary:visited,
.land-cta-band a.land-btn.land-btn--primary:active,
.land-cta-band a.land-btn.land-btn--primary:hover,
.land-cta-band a.land-btn.land-btn--primary:focus-visible {
  color: #312e81 !important;
  -webkit-text-fill-color: #312e81 !important;
}

/* Mid-page CTA: white pill + indigo text (same visited-link trap) */
.land-midcta a.land-btn.land-btn--primary,
.land-midcta a.land-btn.land-btn--primary:link,
.land-midcta a.land-btn.land-btn--primary:visited,
.land-midcta a.land-btn.land-btn--primary:active,
.land-midcta a.land-btn.land-btn--primary:hover,
.land-midcta a.land-btn.land-btn--primary:focus-visible {
  color: #4f46e5 !important;
  -webkit-text-fill-color: #4f46e5 !important;
}

.land-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.land-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 48px 0 32px;
}

.land-hero-shot {
  margin: 0;
  min-width: 0;
  max-width: 100%;
}
.land-hero-shot picture,
.land-hero-shot__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.land-hero-shot__img {
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: var(--surface);
}

.land-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.land-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.land-hero__ctas--center {
  justify-content: center;
}
@media (max-width: 900px) {
  .land-hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .land-preview__grid,
  .land-preview__tasks {
    grid-template-columns: 1fr;
  }

  .land-preview__workspace {
    grid-template-columns: 1fr;
  }

  .land-preview__sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
  }

  .land-preview__sidebar span {
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
  }

  .land-preview__lead {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .land-preview__badges {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}

.land-hero h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .land-hero h1 {
    font-size: 34px;
  }
}

.land-hero__sub {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
}

.land-hero__niche {
  margin: 0 0 22px;
  padding: 14px 16px;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.land-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}
.land-audience span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
}

.land-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.land-hero__fine {
  font-size: 13px;
  color: var(--text-faint);
}

.land-hero-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin-top: 16px;
}
.land-hero-integration {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.land-hero-integration::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--text-faint);
}
.land-hero-integration--live::before {
  background: #059669;
}
.land-hero-integration--label::before {
  background: #2563eb;
}
.land-hero-integration--soon::before {
  background: #f59e0b;
}
.land-hero-integration--signal {
  font-weight: 700;
  background: #ecfdf5;
  color: #065f46;
  border-color: #6ee7b7;
}
.land-hero-integration--signal::before {
  background: #10b981;
}
.land-hero-integrations__label {
  margin: 12px 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.land-hero-shot__caption {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* NSP-04: Mobile 390px/430px hero polish */
@media (max-width: 430px) {
  .land-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    line-height: 1.25;
  }
  .land-hero__sub {
    font-size: 0.875rem;
  }
  .land-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .land-hero__ctas .land-btn {
    width: 100%;
    justify-content: center;
  }
  .land-hero-integrations {
    gap: 6px;
  }
  .land-hero-shot__img {
    border-radius: 8px;
  }
}

.land-preview {
  background: var(--surface);
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
  transform: translateY(0);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  /* Decorative card in hero grid — must not intercept CTA clicks. */
  pointer-events: none;
}
.land-preview:hover {
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: translateY(-2px);
}
.land-preview__bar {
  height: 6px;
  background: linear-gradient(90deg, #1d4ed8, #0f766e, #be123c);
}
.land-preview__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}
.land-preview__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
}
.land-preview__chrome span:nth-child(1) {
  background: #fb7185;
}
.land-preview__chrome span:nth-child(2) {
  background: #fbbf24;
}
.land-preview__chrome span:nth-child(3) {
  background: #34d399;
}
.land-preview__chrome strong {
  margin-left: 8px;
  color: var(--text-muted);
  font-size: 12px;
}
.land-preview__pad {
  padding: 20px 20px 22px;
}
.land-preview__top,
.land-preview__lead {
  display: flex;
  gap: 14px;
  align-items: center;
}
.land-preview__top {
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.land-preview__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: uppercase;
}
.land-preview__headline {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
}
.land-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.land-preview__workspace {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.land-preview__sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #0f172a;
}
.land-preview__sidebar span {
  display: block;
  min-height: 30px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
}
.land-preview__sidebar span.active {
  background: #eef2ff;
  color: var(--primary);
}
.land-preview__main {
  min-width: 0;
}
.land-preview__metric {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #f8fafc;
}
.land-preview__metric span,
.land-preview__metric small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.land-preview__metric strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 28px;
  line-height: 1;
}
.land-preview__lead {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
}
.land-preview__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e0e7ff;
  flex-shrink: 0;
}
.land-preview__name {
  font-weight: 800;
  font-size: 17px;
}
.land-preview__co {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.land-preview__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
  justify-content: flex-end;
}
.land-pb {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}
.land-pb--hot {
  background: #ffe4e6;
  color: #be123c;
}
.land-preview__tasks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.land-preview__tasks span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: 1px solid #dbeafe;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 700;
  color: #1e3a8a;
}
.land-sync-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #047857;
  letter-spacing: 0;
}

/* Founding Customer Program banner */
.land-founding-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: linear-gradient(135deg, #14532d 0%, #166534 100%);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 24px 0 16px;
}
.land-founding-banner__icon {
  font-size: 20px; flex-shrink: 0; color: #fbbf24;
}
.land-founding-banner__text {
  flex: 1; font-size: 14px; line-height: 1.5;
}
.land-founding-banner__text strong { color: #fbbf24; }
.land-founding-banner__cta {
  background: #fbbf24; color: #14532d; font-weight: 700;
  padding: 8px 18px; border-radius: 8px; font-size: 14px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.land-founding-banner__cta:hover { background: #f59e0b; }
@media (max-width: 600px) {
  .land-founding-banner { flex-direction: column; text-align: center; }
  .land-founding-banner__cta { width: 100%; text-align: center; }
}

.land-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 12px;
  padding: 16px 18px;
  margin: 8px 0 48px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.land-trust:hover {
  border-color: #94a3b8;
  box-shadow: var(--shadow-lg, 0 4px 16px rgba(0,0,0,.1));
}
.land-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  line-height: 1.35;
}

.land-section-kicker {
  margin: 0 0 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0;
  text-transform: uppercase;
}

.land-section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.land-section-lead {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto 28px;
  max-width: 56ch;
  font-size: 15px;
}

.land-product {
  margin-bottom: 56px;
}

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

.land-feature-card {
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.land-feature-card__tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}
.land-feature-card--signal {
  border: 1.5px solid #6ee7b7;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}
.land-feature-card__tag--signal {
  background: #d1fae5;
  color: #065f46;
}

.land-feature-card h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}

.land-feature-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 960px) {
  .land-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .land-feature-grid {
    grid-template-columns: 1fr;
  }
}

.land-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .land-steps {
    grid-template-columns: 1fr;
  }
}
.land-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
}
.land-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}
.land-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.land-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.land-int-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
}

/* Integration chips — honest status (shipped / BYOK / attribution / roadmap) */
.land-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 52px;
  min-height: 40px;
  padding: 4px 8px 5px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  text-transform: uppercase;
  cursor: default;
}
.land-chip__abbr {
  font-size: 12px;
  line-height: 1;
}
.land-chip__status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.92;
}
.land-chip--shipped {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}
.land-chip--byok {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #4338ca;
}
.land-chip--attribution {
  border-color: #fde68a;
  background: #fffbeb;
  color: #b45309;
}
.land-chip--roadmap {
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--text-faint);
}
.land-int-legend {
  max-width: 62ch;
  margin: -40px auto 56px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.land-preview__thread {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.land-preview__bubble {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
  max-width: 92%;
}
.land-preview__bubble--cn {
  background: #ecfdf5;
  color: #065f46;
  justify-self: start;
}
.land-preview__bubble--de {
  background: #eef2ff;
  color: #3730a3;
  justify-self: end;
}

.land-chip--shipped.land-chip--hubspot .land-chip__abbr { color: #c2410c; }
.land-chip--shipped.land-chip--pipedrive .land-chip__abbr { color: #166534; }
.land-chip--shipped.land-chip--salesforce .land-chip__abbr { color: #1e40af; }
.land-chip--shipped.land-chip--wecom .land-chip__abbr { color: #047857; }
.land-chip--shipped.land-chip--email .land-chip__abbr { color: #0d9488; }
.land-chip--byok.land-chip--slack .land-chip__abbr { color: #6d28d9; }
.land-chip--byok.land-chip--teams .land-chip__abbr { color: #4338ca; }
.land-chip--byok.land-chip--ai .land-chip__abbr { color: #6b21a8; }
.land-chip--attribution.land-chip--linkedin .land-chip__abbr { color: #0a66c2; }
.land-chip--roadmap.land-chip--whatsapp .land-chip__abbr { color: #25d366; }
.land-chip--roadmap { opacity: 0.72; }
.land-chip--shipped.land-chip--exchange .land-chip__abbr { color: #0284c7; }
.land-chip--shipped.land-chip--blockchain .land-chip__abbr { color: #7c3aed; }

.land-pilot-pricing { margin-bottom: 56px; }
.land-pilot-pricing__header { text-align: center; max-width: 40rem; margin: 0 auto 28px; }
.land-pilot-pricing__lead { margin-top: 10px; }
.land-pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .land-pilot-layout { grid-template-columns: 1fr; }
}
.land-pilot-card {
  background: var(--surface);
  border: 2px solid #c7d2fe;
  border-radius: var(--radius-lg);
  padding: 28px 26px 22px;
  box-shadow: 0 0 0 1px #4338ca18, 0 20px 48px rgba(67, 56, 202, 0.12);
  text-align: left;
}
.land-pilot-card__badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef2ff 0%, #fce7f3 100%);
  border: 1px solid #c7d2fe;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4338ca;
}
.land-pilot-card__plan {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.land-pilot-card__anchor {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.land-pilot-card__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4px;
  margin: 0 0 6px;
  line-height: 1;
}
.land-pilot-card__amount {
  font-size: clamp(2.75rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.land-pilot-card__currency {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35em;
}
.land-pilot-card__period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45em;
}
.land-pilot-card__meta {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}
.land-pilot-card__sep { margin: 0 6px; opacity: 0.55; }
.land-pilot-card__per-day { color: #047857; font-weight: 600; }
.land-pilot-trust {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.land-pilot-trust li {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}
.land-pilot-card__includes-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.land-pilot-card__includes {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.land-pilot-card__includes li {
  padding-left: 1.35rem;
  position: relative;
  font-size: 14px;
  line-height: 1.45;
}
.land-pilot-card__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #047857;
  font-weight: 700;
}
.land-pilot-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.land-pilot-setup-fold {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: left;
}
.land-pilot-setup-fold summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-faint);
  padding: 4px 0;
}
.land-pilot-setup-fold summary::-webkit-details-marker { display: none; }
.land-pilot-setup-fold summary::after {
  content: " +";
  font-weight: 500;
  opacity: 0.7;
}
.land-pilot-setup-fold[open] summary::after { content: " −"; }
.land-pilot-setup-fold__body {
  margin: 8px 0 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}
.land-pilot-card__footnote {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.land-pilot-card__footnote a { font-weight: 600; }
.land-pilot-compare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.land-pilot-compare__title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.land-pilot-compare__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.land-pilot-compare__list li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
.land-pilot-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.land-pilot-compare__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.land-pilot-compare__link:hover { text-decoration: underline; }

.land-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}
@media (max-width: 1080px) {
  .land-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .land-pricing {
    grid-template-columns: 1fr;
  }
}
.land-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.land-price-card--enterprise {
  border-color: #c7d2fe;
  box-shadow: 0 0 0 1px #4338ca22, var(--shadow-md);
  position: relative;
  z-index: 0;
  isolation: isolate;
}
.land-price-card__cta {
  margin-top: auto;
  align-self: flex-start;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.land-contact-sales__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
}
.land-contact-sales__actions .land-btn {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.land-contact-sales__fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.land-contact-sales__copy {
  font-size: 12px;
  padding: 6px 12px;
}
.land-contact-sales__email {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  user-select: all;
  cursor: text;
  color: var(--text);
}
.land-contact-sales__warn {
  margin: 0 0 12px;
  max-width: 52ch;
}
.land-contact-sales__actions--secondary {
  margin-top: 0;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.45);
}
.contact-modal[hidden] {
  display: none !important;
}
body.contact-modal-open {
  overflow: hidden;
}
.contact-modal__panel {
  width: min(560px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}
.contact-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.contact-modal__head h2 {
  margin: 0;
  font-size: 17px;
}
.contact-modal__close {
  min-width: 36px;
  padding: 6px 10px;
}
.contact-modal__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-modal__field {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}
.contact-modal__body input,
.contact-modal__body textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.contact-modal__body textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-modal__hint {
  margin: -2px 0 6px;
}
.contact-modal__input--error {
  border-color: #b91c1c !important;
  box-shadow: 0 0 0 1px #b91c1c33;
}
.contact-modal__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-modal__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border);
}
.contact-modal__foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.contact-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  max-width: min(92vw, 420px);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  background: #0f172a;
  color: #f8fafc;
}
.contact-toast[hidden] {
  display: none !important;
}
.contact-toast--success {
  background: #047857;
}
.contact-toast--error {
  background: #b91c1c;
}
.contact-toast--info {
  background: #3730a3;
}
.land-price-card strong {
  font-size: 17px;
}
.land-price-card .muted {
  color: var(--text-muted);
  font-size: 14px;
}
.land-pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.land-faq {
  max-width: 720px;
  margin: 0 auto 48px;
}
.land-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 10px;
}
.land-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}
.land-faq p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 14px;
}

.land-cta-band {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  background: linear-gradient(120deg, #312e81, #4338ca 45%, #5b21b6);
  color: #eef2ff;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}
.land-cta-band h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 3vw, 28px);
}
.land-cta-band .land-btn--primary {
  background: #fff !important;
  color: #312e81 !important;
  -webkit-text-fill-color: #312e81 !important;
  border-color: #fff !important;
}
.land-cta-band .land-btn--primary:hover {
  background: var(--surface-2) !important;
  color: #312e81 !important;
  -webkit-text-fill-color: #312e81 !important;
}
.land-cta-band .land-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #e0e7ff;
}
.land-cta-band .land-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.land-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  color: var(--text-muted);
  font-size: 13px;
}
.land-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: center;
}
.land-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.land-footer__made {
  margin: 14px 0 0;
  color: var(--text-faint);
  font-size: 12px;
}

/* ---------------------------------------------------------------------------
   Legal / privacy (marketing shell)
   --------------------------------------------------------------------------- */
.land-legal {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 8px 0 0;
}
.land-legal__back {
  margin: 0 0 16px;
  font-size: 14px;
}
.land-legal__back a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.land-legal__back a:hover {
  text-decoration: underline;
}
.land-legal h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
.land-legal__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.land-legal__section {
  margin-bottom: 28px;
}
.land-legal__section h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.land-legal__rich {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.land-legal__rich p {
  margin: 0 0 12px;
}
.land-legal__rich p:last-child {
  margin-bottom: 0;
}
.land-legal__rich ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}
.land-legal__rich a {
  color: var(--primary);
  font-weight: 600;
}
.land-legal__rich em {
  font-style: normal;
  color: var(--text-faint);
  font-size: 13px;
}

.lang-switch-landing {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 4px 10px;
  max-width: 100%;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  box-sizing: border-box;
}
.lang-switch-landing .sep {
  flex: 0 0 auto;
  user-select: none;
  white-space: nowrap;
  color: var(--text-faint);
}
.lang-switch-landing a {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: 1.75em;
  line-height: 1.35;
  padding: 2px 4px;
  text-align: center;
  color: var(--text-muted);
  text-decoration: none;
}
.lang-switch-landing a:hover,
.lang-switch-landing a:focus-visible {
  color: var(--text);
}
.lang-switch-landing a.active {
  color: var(--primary-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================================================================
   Blog — list index and single article pages
   =================================================================== */

.land-blog-header {
  text-align: center;
  margin: 56px auto 32px;
  max-width: 760px;
}
.land-blog-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(67, 56, 202, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.land-blog-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.land-blog-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 56px;
  display: grid;
  gap: 18px;
}
.land-blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
.land-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(67, 56, 202, 0.35);
}
.land-blog-card__link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 24px 26px;
  color: inherit;
  text-decoration: none !important;
}
.land-blog-card__icon {
  font-size: 36px;
  line-height: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.10), rgba(99, 102, 241, 0.08));
}
.land-blog-card__body h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.land-blog-card__body p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.55;
}
.land-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
  color: var(--text-faint);
  align-items: center;
}
.land-blog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(67, 56, 202, 0.08);
  padding: 3px 9px;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .land-blog-card__link { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .land-blog-card__icon { width: 48px; height: 48px; font-size: 28px; }
}

/* --- Single article ------------------------------------------------ */

.land-blog-breadcrumbs {
  margin: 32px 0 8px;
  font-size: 13px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.land-blog-breadcrumbs span:last-child {
  color: var(--text-muted);
  font-weight: 600;
}

.land-blog-article {
  max-width: 760px;
  margin: 0 auto 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px clamp(20px, 4vw, 52px) 48px;
  box-shadow: var(--shadow-md);
}
.land-blog-article__head {
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.land-blog-article__icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, #312e81, #4338ca);
  color: #fff;
  font-size: 36px;
  margin: 0 0 18px;
  box-shadow: var(--shadow-md);
}
.land-blog-article__head h1 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.land-blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  font-size: 13px;
  color: var(--text-faint);
  margin: 0 0 12px;
}
.land-blog-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

/* Prose typography — applies inside `body_html` rendered by Jinja. */
.land-blog-prose {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
}
.land-blog-prose p { margin: 0 0 16px; }
.land-blog-prose .land-blog-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 28px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}
.land-blog-prose h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}
.land-blog-prose h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 24px 0 10px;
  color: var(--text);
}
.land-blog-prose ul,
.land-blog-prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.land-blog-prose li { margin: 6px 0; }
.land-blog-prose li > strong:first-child { color: var(--text); }
.land-blog-prose a:not(.land-btn) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(67, 56, 202, 0.4);
  text-underline-offset: 2px;
}
.land-blog-prose a:not(.land-btn):hover {
  text-decoration-color: var(--primary);
}
.land-blog-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.land-blog-prose details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 8px 0;
  background: var(--surface-2);
}
.land-blog-prose details[open] {
  background: var(--surface);
  border-color: rgba(67, 56, 202, 0.35);
}
.land-blog-prose summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}
.land-blog-prose summary::-webkit-details-marker { display: none; }
.land-blog-prose summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  font-weight: 800;
  color: var(--primary);
}
.land-blog-prose details[open] summary::before { content: "−"; }
.land-blog-prose summary + p { margin-top: 8px; }
.land-blog-prose .land-btn { margin-top: 12px; }

.land-blog-related {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 24px 26px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.land-blog-related h2 {
  margin: 0 0 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.land-blog-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.land-blog-related a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none !important;
}
.land-blog-related a:hover { color: var(--primary); }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.land-nav__inner {
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

.land-wrap {
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
}

@media (max-width: 480px) {
  .land-btn {
    min-height: 44px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Sprint 57: Feature Tour ───────────────────────────────── */
.land-tour {
  margin: 60px 0 48px;
}
.land-tour__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
.land-tour__tab {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
  color: #64748b;
  transition: background .15s, color .15s, border-color .15s;
}
.land-tour__tab.active,
.land-tour__tab:hover {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}
.land-tour__panels {
  margin-top: 20px;
}
.land-tour__panel {
  display: none;
  align-items: center;
  gap: 32px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
}
.land-tour__panel.active { display: flex; }
@media (max-width: 680px) {
  .land-tour__panel.active { flex-direction: column; }
}
.land-tour__mockup {
  flex: 0 0 320px;
  min-height: 180px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  font-size: 12px;
}
@media (max-width: 680px) { .land-tour__mockup { flex: none; width: 100%; } }
.land-tour__caption { flex: 1; }
.land-tour__caption strong { display: block; font-size: 16px; margin-bottom: 6px; color: #1e293b; }
.land-tour__caption p { color: #475569; font-size: 14px; line-height: 1.6; margin: 0; }

/* Kanban mockup */
.ltm-kanban { display: flex; gap: 10px; height: 100%; }
.ltm-col { flex: 1; }
.ltm-col__head { font-weight: 600; font-size: 11px; text-transform: uppercase; color: #94a3b8; margin-bottom: 8px; }
.ltm-card { background: #f1f5f9; border-radius: 8px; padding: 8px 10px; margin-bottom: 6px; color: #334155; font-size: 12px; border-left: 3px solid #6366f1; }

/* AI mockup */
.ltm-ai-card { display: flex; flex-direction: column; gap: 10px; }
.ltm-ai-row { display: flex; align-items: center; gap: 8px; }
.ltm-ai-label { color: #94a3b8; font-size: 11px; min-width: 90px; }
.ltm-score { font-weight: 700; font-size: 18px; }
.ltm-score--hot { color: #dc2626; }
.ltm-pill { background: #f1f5f9; border-radius: 20px; padding: 2px 10px; font-size: 11px; color: #334155; }
.ltm-pill--green { background: #dcfce7; color: #15803d; }
.ltm-ai-action { margin-top: 4px; }

/* WeCom live mockup */
.ltm-live-badge { display: inline-block; font-size: 11px; font-weight: 600; color: #15803d; background: #dcfce7; border-radius: 20px; padding: 3px 10px; margin-bottom: 12px; }
.ltm-event { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #f1f5f9; }
.ltm-event--muted { opacity: .5; }
.ltm-ev-type { font-weight: 500; color: #334155; }
.ltm-ev-time { color: #94a3b8; font-size: 11px; }

/* Automation mockup */
.ltm-rule { }
.ltm-rule__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ltm-rule__name { font-weight: 600; font-size: 13px; color: #1e293b; }
.ltm-badge { border-radius: 20px; padding: 2px 8px; font-size: 10px; font-weight: 600; }
.ltm-badge--on { background: #dcfce7; color: #15803d; }
.ltm-badge--ok { background: #dcfce7; color: #15803d; }
.ltm-badge--err { background: #fee2e2; color: #dc2626; }
.ltm-run { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid #f1f5f9; }
.ltm-run__meta { font-size: 11px; color: #64748b; flex: 1; }
.ltm-retry { background: none; border: 1px solid #e2e8f0; border-radius: 4px; font-size: 10px; padding: 2px 6px; cursor: pointer; color: #64748b; }

/* ── ROI Strip ──────────────────────────────────────────────── */
.land-roi {
  margin: 56px 0 48px;
  text-align: center;
}
.land-roi__kicker { text-align: center; }
.land-roi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 680px) { .land-roi__grid { grid-template-columns: repeat(2, 1fr); } }
.land-roi__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.land-roi__num { font-size: 32px; font-weight: 800; color: #6366f1; line-height: 1; }
.land-roi__label { font-size: 13px; color: #475569; line-height: 1.4; }

/* ── Mid-page CTA ────────────────────────────────────────────── */
.land-midcta {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  margin: 0 0 56px;
}
.land-midcta__title { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.land-midcta__sub { font-size: 15px; opacity: .85; margin: 0 0 24px; }
.land-midcta .land-btn--primary { background: #fff; color: #4f46e5; border-color: #fff; }
.land-midcta .land-btn--primary:hover { background: #f1f5f9; border-color: #f1f5f9; }
.land-midcta .land-btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.land-midcta .land-btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ── Competitor Comparison Table ───────────────────────────── */
.land-compare-section {
  margin: 0 0 56px;
  text-align: center;
}
.land-compare-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.land-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.land-compare-table thead th {
  background: #f8fafc;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}
.land-compare-table thead th:first-child { text-align: left; }
.land-compare-table tbody td {
  padding: 11px 16px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}
.land-compare-table tbody td:first-child { text-align: left; font-weight: 500; color: #1e293b; }
.land-compare-table tbody tr:last-child td { border-bottom: none; }
.land-compare-table__pragma { background: #f0f4ff; }
.land-compare--yes { color: #15803d; font-weight: 700; font-size: 16px; }
.land-compare--no { color: #dc2626; font-size: 16px; }
.land-compare--partial { color: #b45309; font-size: 12px; }

/* CTA band trial button — standalone class, zero cascade conflicts */
.land-btn--band-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  background: #ffffff;
  color: #312e81;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.land-btn--band-trial:hover,
.land-btn--band-trial:focus-visible {
  background: #eef2ff;
  color: #1e1b4b;
  border-color: #eef2ff;
  text-decoration: none;
  outline: none;
}

/* ── Blog section on landing page ──────────────────────────────── */
.land-blog {
  padding: 72px 24px 56px;
  max-width: 1080px;
  margin: 0 auto;
}
.land-blog__head {
  text-align: center;
  margin-bottom: 36px;
}
.land-blog__sub {
  margin-bottom: 0;
}
.land-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.land-blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.16s;
}
.land-blog-card:hover {
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
  border-color: #c7d2fe;
  transform: translateY(-2px);
  text-decoration: none;
}
.land-blog-card__body {
  flex: 1;
}
.land-blog-card__title {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.4;
}
.land-blog-card__desc {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.land-blog-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #4f46e5;
}
.land-blog__footer {
  text-align: center;
  margin-top: 32px;
}
.land-blog__all {
  font-size: 14px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
}
.land-blog__all:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .land-blog { padding: 48px 16px 40px; }
  .land-blog__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Stats bar — key numbers below hero
   =================================================================== */
.land-stats {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 44px 24px;
}
.land-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.land-stat {
  padding: 0 24px;
}
.land-stat--divider {
  border-left: 1px solid #e2e8f0;
}
.land-stat__num {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -1px;
}
.land-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .land-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .land-stat--divider {
    border-left: none;
  }
  .land-stats__inner .land-stat:nth-child(2),
  .land-stats__inner .land-stat:nth-child(4) {
    border-left: 1px solid #e2e8f0;
  }
}
@media (max-width: 400px) {
  .land-stat__num { font-size: 30px; }
}

/* ===================================================================
   Testimonials
   =================================================================== */
.land-testimonials {
  padding: 72px 24px 64px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.land-testimonials__head { margin-bottom: 40px; }
.land-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.land-tcard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
  transition: box-shadow 0.16s, transform 0.16s;
}
.land-tcard:hover {
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
  transform: translateY(-2px);
}
.land-tcard__quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: #1e293b;
  margin: 0 0 20px;
  position: relative;
  padding-top: 6px;
}
.land-tcard__quote::before {
  content: "\201C";
  font-size: 48px;
  line-height: 0;
  color: var(--primary);
  opacity: 0.25;
  position: absolute;
  top: -4px;
  left: -6px;
}
.land-tcard__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.land-tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.land-tcard__avatar--b { background: linear-gradient(135deg, #0369a1, #0ea5e9); }
.land-tcard__avatar--c { background: linear-gradient(135deg, #065f46, #10b981); }
.land-tcard__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}
.land-tcard__role {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}
@media (max-width: 840px) {
  .land-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Self-serve pricing section — shared component tokens (same as /plans page)
───────────────────────────────────────────────────────────────────────────── */
:root {
  --p-accent:        #4f46e5;
  --p-accent-bg:     #eef2ff;
  --p-accent-border: #c7d2fe;
  --p-accent-glow:   rgba(79, 70, 229, .12);
  --p-green:         #16a34a;
  --p-green-bg:      #f0fdf4;
  --p-green-border:  #86efac;
  --p-warn:          #b45309;
  --p-page-bg:       #f8fafc;
  --p-card-bg:       #ffffff;
  --p-border:        #e2e8f0;
  --p-text:          #0f172a;
  --p-muted:         #64748b;
  --p-faint:         #94a3b8;
  --p-radius:        16px;
  --p-radius-sm:     10px;
  --p-shadow-sm:     0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --p-shadow-md:     0 4px 16px rgba(15, 23, 42, .08), 0 2px 6px rgba(15, 23, 42, .05);
  --p-shadow-feat:   0 0 0 2px var(--p-accent-border), 0 8px 32px var(--p-accent-glow);
}
@media (prefers-color-scheme: dark) {
  :root {
    --p-accent:        #818cf8;
    --p-accent-bg:     #1e1b4b;
    --p-accent-border: #4338ca;
    --p-accent-glow:   rgba(99, 102, 241, .18);
    --p-green:         #4ade80;
    --p-green-bg:      #052e16;
    --p-green-border:  #166534;
    --p-warn:          #fb923c;
    --p-page-bg:       #0d1117;
    --p-card-bg:       #161b22;
    --p-border:        #21262d;
    --p-text:          #f0f6fc;
    --p-muted:         #8b949e;
    --p-faint:         #484f58;
  }
}

/* Landing-specific section wrapper */
.land-selfserve-section {
  padding: 0 0 16px;
}

/* Or-divider */
.p-or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 24px;
  color: var(--p-faint);
  font-size: 13px;
  font-weight: 600;
}
.p-or-divider::before,
.p-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--p-border);
}

/* Self-serve header */
.p-selfserve-header { margin-bottom: 20px; }
.p-selfserve-header h2 { margin: 0 0 6px; font-size: 22px; font-weight: 800; letter-spacing: -.01em; color: var(--p-text); }
.p-selfserve-header p  { margin: 0; font-size: 14px; color: var(--p-muted); line-height: 1.5; }

/* Plan card grid */
.p-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}
.p-grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 740px;
}
.land-selfserve-grid { max-width: 740px; }
@media (max-width: 860px) {
  .p-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .p-grid--2col { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .land-selfserve-grid { max-width: 440px; }
}

/* Plan card */
.p-card {
  background: var(--p-card-bg);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius);
  padding: 28px 24px;
  box-shadow: var(--p-shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.p-card:hover { box-shadow: var(--p-shadow-md); transform: translateY(-1px); }
.p-card--featured {
  border-color: var(--p-accent-border);
  box-shadow: var(--p-shadow-feat);
}
.p-card--featured:hover {
  box-shadow: var(--p-shadow-feat), 0 12px 40px var(--p-accent-glow);
  transform: translateY(-2px);
}

/* Ribbon */
.p-card__ribbon {
  position: absolute;
  top: -1px;
  right: 22px;
  padding: 4px 12px 6px;
  background: var(--p-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
}

/* Badge */
.p-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.p-card__badge--muted  { background: var(--p-page-bg); color: var(--p-muted); border: 1px solid var(--p-border); }
.p-card__badge--accent { background: var(--p-accent-bg); color: var(--p-accent); border: 1px solid var(--p-accent-border); }

/* Card text */
.p-card__name    { margin: 0 0 6px; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--p-text); }
.p-card__tagline { margin: 0 0 18px; font-size: 13px; line-height: 1.5; color: var(--p-muted); }
.p-card__vat     { margin: 0 0 16px; font-size: 11px; color: var(--p-faint); }

/* Price row */
.p-price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 4px;
  line-height: 1;
}
.p-price__currency { font-size: 1.2rem; font-weight: 700; color: var(--p-accent); margin-bottom: .3em; }
.p-price__amount   { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; color: var(--p-accent); }
.p-price__period   { font-size: .9rem; font-weight: 600; color: var(--p-muted); margin-bottom: .35em; }

/* Divider */
.p-divider { border: none; border-top: 1px solid var(--p-border); margin: 14px 0 16px; }

/* Specs rows */
.p-facts  { display: grid; gap: 9px; margin-bottom: 16px; }
.p-fact   { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; line-height: 1.35; }
.p-fact__label { color: var(--p-muted); }
.p-fact__value { color: var(--p-text); font-weight: 600; text-align: right; }

/* Feature list */
.p-features-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--p-faint);
  margin: 0 0 8px;
}
.p-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}
.p-features li {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--p-muted);
  padding-left: 1.4em;
  position: relative;
}
.p-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--p-green);
  font-weight: 700;
  font-size: 12px;
  top: .15em;
}
.p-card--featured .p-features li { color: var(--p-text); }

/* CTA buttons */
.p-ctas { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.p-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, opacity .15s, box-shadow .15s;
  cursor: pointer;
  letter-spacing: -.01em;
}
.p-btn--primary {
  background: var(--p-accent);
  color: #fff;
  box-shadow: 0 2px 8px var(--p-accent-glow);
}
.p-btn--primary:hover { opacity: .9; box-shadow: 0 4px 16px var(--p-accent-glow); }
.p-btn--secondary {
  background: var(--p-page-bg);
  color: var(--p-text);
  border: 1.5px solid var(--p-border);
}
.p-btn--secondary:hover { border-color: var(--p-accent-border); color: var(--p-accent); background: var(--p-accent-bg); }

/* Override link colour for plan CTAs on landing page */
.land-body .p-btn { text-decoration: none; }
.land-body .p-btn:hover { text-decoration: none; }
.land-body a.p-btn--primary { color: #fff; }
.land-body a.p-btn--primary:hover { color: #fff; }
.land-body a.p-btn--secondary { color: var(--p-text); }
.land-body a.p-btn--secondary:hover { color: var(--p-accent); }

/* ── HubSpot comparison table — redesigned ── */
.plans-compare {
  margin: 0 0 32px;
  border-radius: 20px;
  border: 1.5px solid var(--p-accent-border);
  background: var(--p-card-bg);
  box-shadow: var(--p-shadow-md);
  overflow: hidden;
}

/* Header band */
.plans-compare__head {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, var(--p-accent-bg) 0%, var(--p-card-bg) 100%);
  border-bottom: 1px solid var(--p-accent-border);
}
.plans-compare__head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--p-text);
}
.plans-compare__head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-muted);
  max-width: 660px;
}
.plans-compare__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 12px 0 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--p-green-bg);
  color: var(--p-green);
  border: 1.5px solid var(--p-green-border);
  font-size: 13px;
  font-weight: 700;
}
.plans-compare__badge::before { content: '✓'; font-weight: 800; }

.plans-compare__scenario {
  padding: 10px 28px;
  background: var(--p-accent-bg);
  border-bottom: 1px solid var(--p-border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--p-accent);
  margin: 0;
}

/* Table */
.plans-compare__table-wrap {
  overflow-x: auto;
}
.plans-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  line-height: 1.4;
}
.plans-compare__table thead th {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--p-page-bg);
  border-bottom: 2px solid var(--p-border);
  color: var(--p-muted);
  text-align: left;
  vertical-align: bottom;
}
.plans-compare__table thead th:last-child {
  background: var(--p-accent-bg);
  color: var(--p-accent);
  border-bottom-color: var(--p-accent-border);
  border-left: 2px solid var(--p-accent-border);
}
.plans-compare__table tbody td,
.plans-compare__table tbody th {
  padding: 14px 20px;
  border-bottom: 1px solid var(--p-border);
  text-align: left;
  vertical-align: middle;
}
.plans-compare__table tbody tr:last-child td,
.plans-compare__table tbody tr:last-child th { border-bottom: 0; }
.plans-compare__table tbody th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--p-muted);
  background: var(--p-page-bg);
  min-width: 160px;
}
.plans-compare__table tbody td {
  color: var(--p-text);
}
.plans-compare__table tbody td:last-child {
  background: rgba(79, 70, 229, .03);
  border-left: 2px solid var(--p-accent-border);
}
@media (prefers-color-scheme: dark) {
  .plans-compare__table tbody td:last-child { background: rgba(129, 140, 248, .06); }
}
.plans-compare__table tbody tr:hover td,
.plans-compare__table tbody tr:hover th { background: var(--p-accent-bg); }
.plans-compare__table tbody tr:hover td:last-child { background: rgba(79, 70, 229, .08); }

.plans-compare__price {
  display: block;
  font-weight: 800;
  font-size: 17px;
  color: var(--p-text);
  line-height: 1.2;
}
.plans-compare__price--pragma { color: var(--p-accent); }
.plans-compare__muted {
  display: block;
  font-size: 11.5px;
  color: var(--p-muted);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.4;
}
.plans-compare__ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--p-green);
  font-weight: 700;
}
.plans-compare__ok::before { content: '✓'; font-size: 13px; }
.plans-compare__no {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--p-warn);
  font-weight: 600;
}
.plans-compare__no::before { content: '✕'; font-size: 12px; }

/* Footer */
.plans-compare__note {
  padding: 16px 28px 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--p-muted);
}
.plans-compare__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 28px;
}
.plans-compare__disclaimer {
  padding: 0 28px 20px;
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--p-faint);
}

/* CTA button overrides for landing context */
.land-body .plans-compare__ctas a { text-decoration: none; }
.land-body .plans-compare__ctas .p-btn--primary { color: #fff !important; }

/* ══════════════════════════════════════════════════════════════
   REDESIGN 2026-07 — Unified Design System
   Overrides and new component classes — safe to append
   ══════════════════════════════════════════════════════════════ */

/* ── Extra tokens ────────────────────────────────────────────── */
:root {
  --ink:         #080d1a;
  --ink-2:       #0f172a;
  --ink-3:       #1a2540;
  --ink-border:  #1e304d;
  --signal:      #16c97e;
  --signal-dim:  #0e8a56;
  --signal-bg:   rgba(22,201,126,.12);
  --rd-gutter:   56px;
}

/* ── Hero — dark full-bleed ──────────────────────────────────── */
.land-hero {
  background: var(--ink);
  margin-left: calc(-1 * var(--rd-gutter));
  margin-right: calc(-1 * var(--rd-gutter));
  padding-left: var(--rd-gutter);
  padding-right: var(--rd-gutter);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.land-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}
.land-hero::after {
  content: '';
  position: absolute;
  top: -220px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,.14) 0%, transparent 68%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .land-hero {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 48px;
  }
}
/* Hero text colors on dark */
.land-hero h1 {
  color: #ffffff;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 5.5vw, 58px);
}
.land-hero__sub    { color: #94a3b8; }
.land-hero__fine   { color: #475569; }
.land-hero__eyebrow {
  background: rgba(22,201,126,.14);
  border-color: rgba(22,201,126,.32);
  color: #4ade80;
}
.land-hero-integrations__label { color: #475569; }
.land-hero-integration {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #94a3b8;
}
.land-hero-integration::before { background: #475569; }
.land-hero-integration--live {
  background: rgba(22,201,126,.1);
  border-color: rgba(22,201,126,.28);
  color: #4ade80;
}
.land-hero-integration--live::before { background: #22c55e; }
.land-hero-integration--signal {
  background: rgba(22,201,126,.14);
  border-color: rgba(22,201,126,.38);
  color: #4ade80;
}
.land-hero-integration--signal::before { background: #16c97e; }
.land-hero-integration--soon {
  background: rgba(245,158,11,.08);
  border-color: rgba(245,158,11,.2);
  color: #f59e0b;
}
.land-hero-integration--soon::before { background: #f59e0b; }
.land-audience span {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: #cbd5e1;
}
.land-hero__niche {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #94a3b8;
  box-shadow: none;
}
.land-hero-shot__img {
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 -8px 48px rgba(99,102,241,.2), 0 0 0 1px rgba(255,255,255,.06);
  border-radius: 12px 12px 0 0;
}
.land-hero-shot__caption { color: #475569; }

/* ── Hero screenshot — no padding-bottom gap ─────────────────── */
.land-hero-shot {
  align-self: flex-end;
}

/* ── USP Pillars section ─────────────────────────────────────── */
.land-usp-pillars {
  padding: 72px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.land-usp-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .land-usp-grid { grid-template-columns: 1fr; } }

/* Card base */
.land-usp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.land-usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: #6366f1;
}

/* Accent top stripe */
.land-usp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 18px 18px 0 0;
}
.land-usp-grid .land-usp-card:nth-child(1)::before { background: linear-gradient(90deg,#16c97e,#6366f1); }
.land-usp-grid .land-usp-card:nth-child(2)::before { background: #6366f1; }
.land-usp-grid .land-usp-card:nth-child(3)::before { background: linear-gradient(90deg,#6366f1,#16c97e); }

/* Accent (middle) card */
.land-usp-card--accent {
  background: #0f172a;
  border-color: #1e293b;
}
.land-usp-card--accent:hover { border-color: #6366f1; box-shadow: 0 16px 48px rgba(99,102,241,.2); }

/* Icon badge */
.land-usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.land-usp-grid .land-usp-card:nth-child(1) .land-usp-icon {
  background: rgba(22,201,126,.12);
  color: #0e8a56;
  border: 1px solid rgba(22,201,126,.25);
}
.land-usp-grid .land-usp-card:nth-child(2) .land-usp-icon {
  background: rgba(99,102,241,.15);
  color: #6366f1;
  border: 1px solid rgba(99,102,241,.3);
}
.land-usp-grid .land-usp-card:nth-child(3) .land-usp-icon {
  background: rgba(22,201,126,.12);
  color: #0e8a56;
  border: 1px solid rgba(22,201,126,.25);
}

/* Title */
.land-usp-head {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.25;
}
.land-usp-card--accent .land-usp-head { color: #f1f5f9; }

/* Body */
.land-usp-body {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 20px;
  flex: 1;
}
.land-usp-card--accent .land-usp-body { color: #94a3b8; }

/* Tag pill */
.land-usp-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  align-self: flex-start;
  margin-top: auto;
}
.land-usp-card--accent .land-usp-tag {
  background: rgba(255,255,255,.08);
  color: #94a3b8;
  border-color: rgba(255,255,255,.1);
}

.land-feature-card { transition: transform .15s, border-color .15s, box-shadow .15s; }
.land-feature-card:hover { border-color: #6366f1; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(99,102,241,.09); }

/* ── Section headers (kicker + title + lead) ─────────────────── */
.land-section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #16c97e;
}
.land-section-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0f172a;
  text-wrap: balance;
}
.land-section-lead {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 36px;
}
.land-section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #16c97e;
  margin-bottom: 8px;
}

/* ── Feature grid section ────────────────────────────────────── */
.land-product {
  padding: 72px 0;
  background: #ffffff;
  max-width: none;
  margin: 0;
}
.land-product > .land-section-kicker,
.land-product > .land-section-title,
.land-product > .land-section-lead {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.land-feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .land-feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .land-feature-grid { grid-template-columns: 1fr; } }

.land-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
}
.land-feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0f172a;
  margin: 12px 0 6px;
  line-height: 1.3;
}
.land-feature-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Tag color system */
.land-feature-card__tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.land-feature-card__tag--signal { background: rgba(22,201,126,.12); color: #0e8a56; }
.land-feature-card__tag--indigo { background: rgba(99,102,241,.1);  color: #6366f1; }
.land-feature-card__tag--blue   { background: rgba(37,99,235,.1);   color: #2563eb; }
.land-feature-card__tag--teal   { background: rgba(13,148,136,.1);  color: #0d9488; }
.land-feature-card__tag--amber  { background: rgba(217,119,6,.1);   color: #d97706; }
.land-feature-card__tag--rose   { background: rgba(225,29,72,.08);  color: #e11d48; }
.land-feature-card__tag:not([class*="--"]) { background: rgba(99,102,241,.1); color: #6366f1; }

/* Signal card accent */
.land-feature-card--signal {
  border-color: rgba(22,201,126,.3);
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.land-tcard { transition: transform .2s, box-shadow .2s; }
.land-tcard:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }

/* ── Signal Definition section ───────────────────────────────── */
.land-signal-def {
  background: var(--ink, #080d1a);
  padding: 64px 0;
}
.land-signal-def__inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.land-signal-def__eyebrow {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #4ade80; margin-bottom: 12px;
}
.land-signal-def__h2 {
  font-size: 26px; font-weight: 900; letter-spacing: -.02em;
  color: #ffffff; margin: 0 0 12px;
}
.land-signal-def__body { font-size: 14px; color: #94a3b8; line-height: 1.7; margin: 0; }
.land-signal-def__body strong { color: #4ade80; }
.land-signal-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.land-sig-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 16px;
  transition: background .15s, border-color .15s;
}
.land-sig-card:hover { background: rgba(255,255,255,.07); border-color: rgba(99,102,241,.35); }
.land-sig-card__icon { font-size: 20px; margin-bottom: 7px; }
.land-sig-card__title { font-size: 12px; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.land-sig-card__desc { font-size: 11px; color: #64748b; line-height: 1.5; }
@media (max-width: 760px) {
  .land-signal-def__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Social Proof live stats ─────────────────────────────────── */
.land-sp-stats {
  background: var(--ink-2, #0f172a);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.land-sp-stats__inner {
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; text-align: center;
}
.land-sp-stat__num {
  display: block; font-size: 30px; font-weight: 900;
  letter-spacing: -.03em; color: #ffffff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.land-sp-stat__num--green  { color: #4ade80; }
.land-sp-stat__num--indigo { color: #818cf8; }
.land-sp-stat__num--blue   { color: #60a5fa; }
.land-sp-stat__label { display: block; font-size: 11px; color: #64748b; margin-top: 6px; }
@media (max-width: 760px) {
  .land-sp-stats__inner { grid-template-columns: repeat(3,1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .land-sp-stats__inner { grid-template-columns: repeat(2,1fr); }
}

/* ── Team section ────────────────────────────────────────────── */
.land-team-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.land-team-section__inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.land-team-section__eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #16a34a; margin-bottom: 8px;
}
.land-team-section__h2 {
  font-size: 30px; font-weight: 800; color: #0f172a; margin-bottom: 10px;
  letter-spacing: -.025em;
}
.land-team-section__lead {
  color: #64748b; font-size: 15px; max-width: 520px;
  margin: 0 auto 48px; line-height: 1.65;
}
.land-team-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
  gap: 24px; text-align: left; margin-bottom: 36px;
}
.land-member-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.land-member-card:hover { border-color: #6366f1; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.land-member-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.land-member-avatar--m { background: linear-gradient(135deg,#0f172a,#16a34a); }
.land-member-avatar--x { background: linear-gradient(135deg,#0f172a,#6366f1); }
.land-member-name { font-size: 17px; font-weight: 800; color: #0f172a; margin-bottom: 2px; }
.land-member-role { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.land-member-role--green  { color: #16a34a; }
.land-member-role--indigo { color: #6366f1; }
.land-member-exp  { font-size: 11px; color: #94a3b8; margin-bottom: 10px; }
.land-member-bio  { font-size: 13px; color: #475569; line-height: 1.6; margin-bottom: 12px; }
.land-member-li {
  display: inline-flex; align-items: center; gap: 6px;
  color: #2563eb; font-size: 12px; font-weight: 700; text-decoration: none;
  background: #eff6ff; padding: 5px 12px; border-radius: 20px;
  transition: background .12s;
}
.land-member-li:hover { background: #dbeafe; }
.land-team-quote {
  background: linear-gradient(135deg,#0f172a,#1e293b);
  border-radius: 14px; padding: 28px 36px; text-align: center;
}
.land-team-quote p {
  font-size: 15px; color: #e2e8f0; line-height: 1.7;
  font-style: italic; margin: 0 0 12px;
}
.land-team-quote cite { font-size: 13px; color: #4ade80; font-weight: 700; font-style: normal; }
@media (max-width: 760px) {
  .land-team-grid { grid-template-columns: 1fr; }
  .land-team-quote { padding: 20px 24px; }
}

/* ── Ecosystem section ───────────────────────────────────────── */
.land-ecosystem {
  background: var(--ink, #080d1a);
  padding: 64px 24px;
  text-align: center;
}
.land-ecosystem__inner { max-width: 960px; margin: 0 auto; }
.land-ecosystem__eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #4ade80; margin-bottom: 10px;
}
.land-ecosystem__h2 {
  font-size: 26px; font-weight: 800; color: #ffffff; margin-bottom: 8px;
}
.land-ecosystem__sub { font-size: 14px; color: #64748b; margin-bottom: 36px; }
.land-eco-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 14px; text-align: left;
}
.land-eco-card {
  background: rgba(255,255,255,.04);
  border: 1px solid #1e304d;
  border-radius: 12px; padding: 20px;
  text-decoration: none; display: block;
  transition: border-color .15s, background .15s, transform .15s;
}
.land-eco-card:hover {
  background: rgba(255,255,255,.07);
  border-color: #16c97e;
  transform: translateY(-2px);
}
.land-eco-card__icon  { font-size: 22px; margin-bottom: 8px; display: block; }
.land-eco-card__name  { font-weight: 700; color: #ffffff; font-size: 14px; margin-bottom: 4px; }
.land-eco-card__name-wrap { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.land-eco-badge {
  background: #4ade80; color: #0f172a;
  font-size: 9px; font-weight: 800;
  padding: 1px 6px; border-radius: 99px;
}
.land-eco-card__desc { font-size: 12px; color: #64748b; line-height: 1.5; }
.land-body .plans-compare__ctas .p-btn--secondary { color: var(--p-text) !important; }

/* ── USP Pillars — v2 override 2026-07-18 ───────────────────── */
/* Full-bleed the section out of land-wrap's padding */
.land-usp-pillars {
  margin-left: calc(-1 * var(--rd-gutter, 56px)) !important;
  margin-right: calc(-1 * var(--rd-gutter, 56px)) !important;
  padding: 88px var(--rd-gutter, 56px) !important;
  background: #eef2ff !important;
  border-top: 1px solid #c7d2fe !important;
  border-bottom: 1px solid #c7d2fe !important;
}

/* Centered section header above the grid */
.land-usp-header {
  max-width: 1100px;
  margin: 0 auto 52px;
  text-align: center;
}
.land-usp-header .land-section-kicker {
  display: block;
  margin-bottom: 10px;
}
.land-usp-header .land-section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  margin: 0;
}

/* 3-col grid, no extra padding (parent already handles it) */
.land-usp-grid {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
}
@media (max-width: 860px) {
  .land-usp-pillars {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .land-usp-grid { grid-template-columns: 1fr !important; }
}

/* Card */
.land-usp-card {
  background: #ffffff !important;
  border: 1px solid #e0e7ff !important;
  border-radius: 20px !important;
  padding: 36px 28px 28px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 2px 16px rgba(99,102,241,.07), 0 0 0 1px rgba(99,102,241,.05) !important;
  transition: transform .2s, box-shadow .25s, border-color .2s !important;
}
.land-usp-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 64px rgba(99,102,241,.16), 0 0 0 1px rgba(99,102,241,.25) !important;
  border-color: #818cf8 !important;
}

/* Accent top stripe */
.land-usp-card::before {
  content: '' !important;
  position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 5px !important;
  border-radius: 20px 20px 0 0 !important;
}
.land-usp-grid .land-usp-card:nth-child(1)::before { background: linear-gradient(90deg,#16c97e,#6366f1) !important; }
.land-usp-grid .land-usp-card:nth-child(2)::before { background: linear-gradient(90deg,#6366f1,#818cf8) !important; }
.land-usp-grid .land-usp-card:nth-child(3)::before { background: linear-gradient(90deg,#6366f1,#16c97e) !important; }

/* Dark middle card */
.land-usp-card--accent {
  background: #0f172a !important;
  border-color: #334155 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.25), 0 0 0 1px rgba(99,102,241,.1) !important;
}
.land-usp-card--accent:hover {
  border-color: #818cf8 !important;
  box-shadow: 0 24px 64px rgba(99,102,241,.3), 0 0 0 1px rgba(99,102,241,.3) !important;
}

/* Emoji icon badge */
.land-usp-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  font-size: 28px !important;
  line-height: 1 !important;
  margin-bottom: 22px !important;
  flex-shrink: 0 !important;
  font-weight: normal !important;
  letter-spacing: 0 !important;
  border: none !important;
}
.land-usp-grid .land-usp-card:nth-child(1) .land-usp-icon {
  background: rgba(22,201,126,.12) !important;
  border: 1.5px solid rgba(22,201,126,.3) !important;
}
.land-usp-grid .land-usp-card:nth-child(2) .land-usp-icon {
  background: rgba(99,102,241,.15) !important;
  border: 1.5px solid rgba(99,102,241,.35) !important;
}
.land-usp-grid .land-usp-card:nth-child(3) .land-usp-icon {
  background: rgba(59,130,246,.12) !important;
  border: 1.5px solid rgba(59,130,246,.3) !important;
}

/* Heading */
.land-usp-head {
  font-size: 19px !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  color: #0f172a !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
}
.land-usp-card--accent .land-usp-head { color: #f1f5f9 !important; }

/* Body */
.land-usp-body {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin: 0 0 24px !important;
  flex: 1 !important;
}
.land-usp-card--accent .land-usp-body { color: #94a3b8 !important; }

/* Tag */
.land-usp-tag {
  display: inline-block !important;
  padding: 5px 14px !important;
  border-radius: 99px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  background: #eef2ff !important;
  color: #4338ca !important;
  border: 1px solid #c7d2fe !important;
  align-self: flex-start !important;
  margin-top: auto !important;
}
.land-usp-card--accent .land-usp-tag {
  background: rgba(99,102,241,.18) !important;
  color: #a5b4fc !important;
  border-color: rgba(99,102,241,.35) !important;
}
