*, *::before, *::after { box-sizing: border-box; }

.lp {
  --lp-content-max: 1200px;
  --lp-pad-x: clamp(24px, 8vw, 120px);
  --lp-pad-y: clamp(56px, 7vw, 88px);
  --lp-nav-offset: 6px;
  --lp-nav-visual-height: 56px;
  --lp-nav-dropdown-gap: -2px;
  --lp-nav-max: 1280px;
  --lp-nav-height: 64px;
  --lp-chrome-height: var(--lp-nav-height);
  --lp-dark: #0b0b0c;
  --lp-sk-base: var(--gray-100);
  --lp-sk-shine: var(--white);
  --lp-sk-sweep: 920px;
  --lp-section-title-size: clamp(22px, 2.4vw, 32px);
  --lp-section-title-size-narrow: clamp(20px, 2.1vw, 28px);
  --lp-section-title-size-mobile: 22px;

  font-family: var(--font-open-sans), system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  min-height: 100dvh;
  overflow-x: clip;
}

/* Single page scroll on landing — avoid height:100% body trap + nested overflow */
html:has(.lp),
html:has(.lp) body {
  height: auto;
  min-height: 100%;
  overflow-x: clip;
}

html:has(.lp) {
  --lp-nav-height: 64px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--lp-nav-height);
  scrollbar-gutter: stable;
}

.lp-hero#top,
.lp-section[id] {
  scroll-margin-top: var(--lp-nav-height);
}

.lp-mono {
  font-family: var(--font-jb-mono), ui-monospace, monospace;
}

.lp-wordmark {
  font-family: var(--font-open-sans), system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
}

.lp-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}

/* ── Nav ──────────────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 200;
  width: min(calc(100vw - 32px), var(--lp-nav-max));
  height: var(--lp-nav-height);
  padding: 0 18px 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: none;
  transition:
    top 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: top, height, border-radius, background;
}
.lp-nav--floating {
  top: var(--lp-nav-offset);
  height: var(--lp-nav-visual-height);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow:
    0 10px 28px rgba(17, 17, 17, 0.05),
    0 1px 2px rgba(17, 17, 17, 0.04);
}
.lp-nav-brand {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  margin-left: 2px;
}
.lp-nav-links {
  position: static;
  top: auto;
  left: auto;
  height: 100%;
  transform: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  margin-left: 28px;
  padding-left: 4px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2f2f31;
  white-space: nowrap;
}
.lp-nav-item {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.lp-nav-sequence { display: contents; }
.lp-nav-item:hover,
.lp-nav-item:focus-visible { color: var(--green); }
.lp-nav-links .lp-nav-item.lp-nav-item--active,
.lp-nav-links .lp-nav-item.lp-nav-item--active:hover,
.lp-nav-links .lp-nav-item.lp-nav-item--active:focus-visible {
  color: var(--green);
  font-weight: 600;
}
.lp-nav-links .lp-nav-item.lp-nav-item--active::after { content: none; }
.lp-nav-industries {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.lp-nav-company {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.lp-nav-industries-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.lp-nav-industries-trigger svg {
  transition: transform 0.15s ease;
}
.lp-nav-industries-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.lp-nav-company-popover {
  position: absolute;
  top: calc(var(--lp-nav-height) + var(--lp-nav-dropdown-gap));
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0;
}
.lp-nav--floating .lp-nav-company-popover {
  top: calc(var(--lp-nav-offset) + var(--lp-nav-visual-height) + var(--lp-nav-dropdown-gap));
}

.lp-nav-company-panel {
  display: grid;
  min-width: 180px;
  gap: 2px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 13px;
  background: #fff;
  padding: 10px;
  box-shadow:
    0 20px 48px rgba(17, 17, 17, 0.1),
    0 2px 4px rgba(17, 17, 17, 0.04);
}

.lp-nav-company-link {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--black);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.lp-nav-company-link:hover,
.lp-nav-company-link--active {
  background: var(--off-white);
}

.lp-nav-company-link--active {
  color: var(--green);
}
.lp-nav-industries-popover {
  position: fixed;
  top: calc(var(--lp-nav-height) + var(--lp-nav-dropdown-gap));
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0;
}
.lp-nav--floating .lp-nav-industries-popover {
  top: calc(var(--lp-nav-offset) + var(--lp-nav-visual-height) + var(--lp-nav-dropdown-gap));
}
.lp-nav-industries-grid {
  display: grid;
  width: min(1280px, calc(100vw - 40px));
  max-height: calc(100dvh - var(--lp-nav-height) - var(--lp-nav-dropdown-gap) - 20px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 13px;
  background: #fff;
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow:
    0 20px 48px rgba(17, 17, 17, 0.1),
    0 2px 4px rgba(17, 17, 17, 0.04);
}
.lp-nav-industries-group {
  min-width: 0;
}
.lp-nav-industries-label {
  padding: 6px 8px 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.lp-nav-industries-group-list {
  display: grid;
  gap: 2px;
}
.lp-nav-industry-link {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--black);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.lp-nav-industry-link:hover,
.lp-nav-industry-link--active {
  background: var(--off-white);
}
.lp-nav-industry-link--active {
  color: var(--green);
}
.lp-nav-industry-link--muted {
  color: var(--gray-500);
  font-weight: 500;
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.lp-nav-actions .lp-locale-toggle {
  border: none;
  padding: 5px 6px;
  background: transparent;
  color: #2f2f31;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: none;
  gap: 6px;
}
.lp-nav-actions .lp-locale-toggle:not(:disabled):hover {
  color: var(--black);
  background: transparent;
}
.lp-nav-actions .lp-btn--secondary,
.lp-nav-actions .lp-btn--accent,
.lp-nav-actions .lp-nav-login {
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}
.lp-nav-actions .lp-btn--secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--gray-200);
  box-shadow: none;
}
.lp-nav-actions .lp-btn--secondary:hover {
  border-color: #ccc;
  background: var(--white);
}
.lp-nav-actions .lp-nav-login {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #2f2f31;
  font-weight: 600;
  padding: 0 8px;
  gap: 6px;
}
.lp-nav-actions .lp-nav-login:hover {
  background: transparent;
  color: var(--black);
}
.lp-nav-actions .lp-btn--accent {
  background: var(--green);
  border-color: var(--green);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 2px rgba(22, 163, 74, 0.24);
}
.lp-nav-actions .lp-btn--accent:hover {
  background: #15803d;
  border-color: #15803d;
}

.lp-locale-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  transition: opacity 0.15s ease;
}

.lp-locale-toggle:disabled {
  cursor: default;
  opacity: 0.5;
}

.lp-locale-toggle:not(:disabled):hover {
  border-color: var(--gray-300);
  color: var(--black);
}

.lp-locale-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lp-nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 301;
}
.lp-nav-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-nav-menu-btn--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav-menu-btn--open span:nth-child(2) {
  opacity: 0;
}
.lp-nav-menu-btn--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: opacity 0.15s, background 0.15s;
}
.lp-btn--sm { padding: 6px 12px; font-size: 12px; height: 32px; gap: 6px; }
.lp-btn--md { padding: 10px 16px; font-size: 14px; height: 40px; }
.lp-btn--lg { padding: 14px 22px; font-size: 15px; height: 48px; gap: 10px; }
.lp-btn--primary { background: var(--black); color: var(--white); border-color: var(--black); }
.lp-btn--primary:hover { background: #000; }
.lp-btn--secondary { background: var(--white); color: var(--black); border-color: var(--gray-200); }
.lp-btn--secondary:hover { border-color: #ccc; }
.lp-btn--ghost { background: transparent; color: var(--black); }
.lp-btn--ghost:hover { background: var(--off-white); }
.lp-btn--accent { background: var(--green); color: var(--white); border-color: var(--green); }
.lp-btn--accent:hover { background: #15803d; border-color: #15803d; }

/* ── Chip / Badge ─────────────────────────────────────────────────── */
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp-chip--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}
.lp-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.lp-chip--dark .lp-chip-dot { background: #fff; }
.lp-chip--accent {
  color: var(--accent);
  border-color: rgba(22, 163, 74, 0.2);
}
.lp-chip--accent .lp-chip-dot { background: var(--accent); }

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.lp-badge-dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.lp-badge--green { background: rgba(22, 163, 74, 0.12); color: var(--green); }
.lp-badge--amber { background: var(--amber-100); color: #B45309; }
.lp-badge--red { background: var(--red-100); color: var(--red); }
.lp-badge--blue { background: var(--blue-100); color: var(--blue); }
.lp-badge--neutral { background: var(--gray-100); color: var(--gray-700); }

.lp-dark-tag {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}
.lp-dark-tag--amber { background: rgba(217, 119, 6, 0.18); color: #F0B760; }
.lp-dark-tag--neutral-dark { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.85); }
.lp-dark-tag--green { background: rgba(22, 163, 74, 0.2); color: #5BD482; }

/* ── Sections ─────────────────────────────────────────────────────── */
.lp-section {
  padding: var(--lp-pad-y) var(--lp-pad-x);
  position: relative;
  overflow-x: clip;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.lp-section--surface { background: var(--off-white); }
.lp-section--dark { background: var(--lp-dark); color: #fff; }
.lp-section--pad-lg { padding-top: clamp(64px, 8vw, 96px); padding-bottom: clamp(64px, 8vw, 96px); }
.lp-section-inner {
  max-width: var(--lp-content-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lp-section-headline-gap { margin-top: 24px; }

.mkt-cta-bg,
.mkt-cta-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mkt-cta-bg {
  z-index: 0;
  transform: scale(1.02);
}

.mkt-cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mkt-cta-bg-image .progressive-image__placeholder,
.mkt-cta-bg-image .progressive-image__full {
  object-fit: cover;
}
.mkt-cta-bg-overlay {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(11, 11, 12, 0.88) 0%, rgba(11, 11, 12, 0.76) 48%, rgba(22, 163, 74, 0.34) 100%),
    rgba(0, 0, 0, 0.68);
}

.lp-headline {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  max-width: 880px;
}
.lp-headline--md { font-size: var(--lp-section-title-size); }
/* Side-by-side layouts: copy column ~40–48% — keep two-line headlines */
.lp-ai-before-after-copy .lp-headline--md,
.lp-dashboard-copy .lp-headline--md,
.lp-assistant-main .lp-headline--md,
.lp-autoconfirm-copy-col .lp-headline--md,
.lp-faq-intro .lp-headline--md {
  font-size: var(--lp-section-title-size-narrow);
  line-height: 1.1;
  text-wrap: balance;
}
/* Marketing pages — section titles share home section headline scale */
.lp-about-section-title,
.lp-features-section-title,
.lp-help-section-title,
.lp-stories-section-title,
.lp-stories-results-title,
.lp-case-section-title,
.lp-embed-how-title,
.lp-embed-requirements-title,
.lp-help-faq-intro h2,
.lp-help-contact-title,
.lp-about-studio-title,
.lp-features-plan-title,
.ind-split-headline {
  font-size: var(--lp-section-title-size);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}
.lp-headline--lg { font-size: clamp(28px, 3.5vw, 44px); }
.lp-headline--xl { font-size: clamp(28px, 3.8vw, 46px); }
.lp-headline--dark { color: #fff; }
.lp-headline-italic {
  color: var(--gray-500);
  font-weight: 700;
  font-style: italic;
}
.lp-headline--dark .lp-headline-italic { color: rgba(255, 255, 255, 0.55); }

.lp-subhead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}
.lp-body {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}
.lp-body--callout {
  font-size: 15px;
  line-height: 1.55;
}
.lp-subhead--dark { color: rgba(255, 255, 255, 0.7); }
.lp-subline-muted { color: var(--gray-500); }
.lp-subline-muted--dark { color: rgba(255, 255, 255, 0.55); }
.lp-hero-sub .lp-subline-muted { color: var(--gray-500); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: auto;
  padding-top: var(--lp-chrome-height);
  background: var(--white);
  overflow-x: clip;
}
.lp-hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--arion-dot-bg);
  background-size: var(--arion-dot-bg-size);
}
.lp-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 420px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 35%, #fff 100%);
  pointer-events: none;
  z-index: 0;
}
.lp-hero-radial {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, var(--off-white) 0%, transparent 65%);
  pointer-events: none;
}
.lp-hero-watermark {
  position: absolute;
  right: -80px;
  bottom: -120px;
  opacity: 0.04;
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 5vw, 64px) var(--lp-pad-x) clamp(80px, 10vw, 120px);
  max-width: 1440px;
  margin: 0 auto;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  min-width: 0;
}
.lp-hero-copy {
  min-width: 0;
}
/* Hero motion handled by Framer Motion — keep visible before hydrate */
.lp-hero-copy .lp-hero-pill,
.lp-hero-copy .lp-h1,
.lp-hero-copy .lp-hero-sub {
  opacity: 1;
}
.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lp-hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}
.lp-hero-pill-accent { color: #166534; }
.lp-hero-pill-muted {
  color: var(--gray-700);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.lp-h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  min-width: 0;
}
.lp-h1-line {
  display: block;
  white-space: nowrap;
}
.lp-h1 em { font-style: italic; color: var(--gray-500); font-weight: 700; }
.lp-h1-italic-block {
  display: block;
  margin-top: 0.06em;
}
.lp-h1-italic-lead {
  display: inline;
}
.lp-h1-italic-lead + .lp-h1-em {
  margin-left: 0.18em;
}
.lp-h1-em {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}
.lp-h1-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
}
.lp-hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-700);
  max-width: 540px;
  margin: 24px 0 0;
  line-height: 1.55;
}
.lp-hero-pill-sep {
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.lp-hero-specs {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.lp-hero-specs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
}
.lp-hero-spec-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-hero-trust {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  min-width: 0;
}
.lp-hero-trust-title {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.42;
  color: var(--gray-500);
  margin: 0;
}
.lp-hero-trust-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.lp-hero-trust-track {
  display: flex;
  width: max-content;
  animation: lpHeroTrustMarquee 44s linear infinite;
  will-change: transform;
}
.lp-hero-trust-set {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
  flex: 0 0 auto;
}
.lp-hero-trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-700);
  white-space: nowrap;
  flex: 0 0 auto;
}
.lp-hero-trust-image-wrap {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-hero-trust-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.88;
}
.lp-hero-trust-logo--wide .lp-hero-trust-image-wrap {
  width: 104px;
  height: 32px;
}
.lp-hero-trust-logo--wide .lp-hero-trust-image {
  width: 104px;
  height: 32px;
}
.lp-hero-trust-logo--large .lp-hero-trust-image-wrap {
  width: 132px;
  height: 42px;
}
.lp-hero-trust-logo--large .lp-hero-trust-image {
  width: 132px;
  height: 42px;
}
.lp-hero-trust-name {
  font-size: 19px;
  font-weight: 750;
  line-height: 1;
  word-spacing: -0.08em;
}
@keyframes lpHeroTrustMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero-trust-track {
    animation: none;
    transform: none;
  }
}
.lp-hero-phone-mobile-outer {
  position: relative;
  width: 280px;
  height: 504px;
  margin: 0 auto;
}
.lp-hero-phone-mobile-scale {
  position: absolute;
  top: 0;
  left: 28px;
  width: 320px;
  height: 640px;
  transform: scale(0.7);
  transform-origin: top left;
}
.lp-hero-phone-mobile-rotate {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}
.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.lp-hero-ctas .lp-btn--primary:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.lp-hero-ctas .lp-btn--secondary {
  border-color: var(--green);
}
.lp-hero-ctas .lp-btn--secondary:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.lp-hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}
.lp-hero-avatars { display: flex; align-items: center; }
.lp-hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.lp-hero-avatar:first-child { margin-left: 0; }
.lp-hero-rating { display: flex; flex-direction: column; line-height: 1.3; gap: 2px; }
.lp-hero-stars { font-size: 13px; font-weight: 600; }
.lp-hero-rating-text { font-size: 13px; font-weight: 600; }
.lp-hero-quote { font-size: 12px; color: var(--gray-500); }
.lp-hero-stat-divider { width: 1px; height: 36px; background: var(--gray-200); }
.lp-hero-stat { display: flex; flex-direction: column; line-height: 1.2; }
.lp-hero-stat-num { font-size: 22px; font-weight: 500; }
.lp-hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.lp-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.lp-scroll-line { width: 1px; height: 24px; background: var(--gray-200); }

/* ── Hero phone ───────────────────────────────────────────────────── */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: auto;
}
.lp-hero-visual--mobile { display: none; }
.lp-hero-social--mobile { display: none; }

.lp-hero-visual--image {
  width: 100%;
}
.lp-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.lp-hero-phone-wrap {
  transform: rotate(-4deg);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}
.lp-phone-frame {
  width: min(320px, 90vw);
  height: 640px;
  background: #2C2C2E;
  border-radius: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lp-phone-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 38px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-phone-inner > :not(.lp-phone-statusbar) {
  flex: 1;
  min-height: 0;
}
.lp-phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px 4px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
}
.lp-phone-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #111;
  border-radius: 999px;
}
.lp-phone-battery {
  width: 22px;
  height: 11px;
  border: 1.4px solid #111;
  border-radius: 3px;
  position: relative;
}
.lp-phone-battery::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: #111;
  border-radius: 1px;
}
.lp-phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.lp-phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 8px;
  font-size: 18px;
}
.lp-phone-ref { font-size: 12px; color: var(--gray-700); }
.lp-phone-muted { color: var(--gray-500); }
.lp-phone-content { padding: 12px 18px 0; flex: 1; overflow: hidden; }
.lp-phone-status-pending {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D97706;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.lp-phone-status-dot {
  width: 8px;
  height: 8px;
  background: #D97706;
  border-radius: 999px;
}
.lp-phone-guest-name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.lp-phone-guest-meta { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; }
.lp-phone-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.lp-phone-row {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.lp-phone-row-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-phone-row-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.lp-phone-row-value { font-size: 14px; font-weight: 600; }
.lp-phone-row-value--sm { font-size: 13px; }
.lp-phone-row-sub { font-size: 12px; color: var(--gray-700); }
.lp-phone-row-link {
  padding: 12px 14px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.lp-phone-divider { border-top: 1px solid #F0F0F0; }
.lp-phone-actions {
  display: flex;
  gap: 8px;
  padding: 8px 18px 12px;
}
.lp-phone-btn-confirm { flex: 1; border-radius: 999px !important; }
.lp-phone-btn-decline {
  flex: 1;
  border-radius: 999px !important;
  background: #FDECEC !important;
  border-color: #FDECEC !important;
  color: #DC2626 !important;
}
.lp-phone-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--gray-200);
  padding: 8px 4px 12px;
}
.lp-phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gray-500);
}
.lp-phone-nav-item--active { color: var(--black); }
.lp-phone-nav-label { font-size: 9px; font-weight: 500; letter-spacing: 0.08em; }
.lp-phone-nav-item--active .lp-phone-nav-label { font-weight: 700; }

.lp-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.lp-float--confirm {
  right: 0;
  top: 40px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(280px, 90vw);
  transform: rotate(3deg);
}
.lp-float-check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-float-title { font-size: 13px; font-weight: 600; }
.lp-float-sub { font-size: 12px; color: var(--gray-700); }
.lp-float-time { font-size: 10px; color: var(--gray-700); flex-shrink: 0; }
.lp-float--week {
  left: 0;
  bottom: 60px;
  padding: 18px;
  width: min(220px, 80vw);
  transform: rotate(-3deg);
}
.lp-float-week-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.lp-float-week-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.lp-float-week-num { font-size: 28px; font-weight: 500; line-height: 1; }
.lp-float-sparkline {
  width: 100%;
  height: 36px;
  margin-top: 12px;
  color: var(--black);
}
html[data-lp-hero-motion="ready"] .lp-hero-visual .lp-float--confirm {
  animation: lpHeroConfirmFloat 3.8s ease-in-out infinite;
}
html[data-lp-hero-motion="ready"] .lp-hero-visual .lp-float--week {
  animation: lpHeroWeekFloat 4.2s ease-in-out infinite;
}
@keyframes lpHeroConfirmFloat {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-7px) rotate(3deg); }
}
@keyframes lpHeroWeekFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-5px) rotate(-3deg); }
}
@media (prefers-reduced-motion: reduce) {
  html[data-lp-hero-motion="ready"] .lp-hero-visual .lp-float--confirm,
  html[data-lp-hero-motion="ready"] .lp-hero-visual .lp-float--week {
    animation: none;
  }
}

/* ── Final CTA ─────────────────────────────────────────────────────── */
.lp-final-section {
  overflow: hidden;
  isolation: isolate;
}
.lp-final-section .lp-section-inner {
  position: static;
  z-index: auto;
}
.lp-final-watermark {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}
.lp-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.lp-final-sub { max-width: 620px; text-align: center; }
.lp-final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.lp-final-wa {
  background: transparent;
  border: 0;
  color: #fff;
  padding: 18px 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.lp-final-wa:hover { text-decoration-color: #fff; }
.lp-final-wa--disabled { opacity: 0.5; cursor: default; }
.lp-final-note { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin: 0; }

/* ── Footer ───────────────────────────────────────────────────────── */
.lp-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 80px var(--lp-pad-x) 32px;
}
.lp-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--arion-dot-bg-footer);
  background-size: var(--arion-dot-bg-size);
}
.lp-footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--lp-content-max);
  margin: 0 auto;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.lp-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.lp-footer-tagline {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 340px;
  margin: 0;
}
.lp-footer-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid #F0F0F0;
}
.lp-footer-trust-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.lp-footer-entity {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}
.lp-footer-registry {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}
.lp-footer-registry-line {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--gray-500);
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.lp-footer-registry-line--plain {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray-500);
}
.lp-footer-cols {
  display: contents;
}
.lp-footer-col { display: flex; flex-direction: column; gap: 12px; }
.lp-footer-col-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.lp-footer-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.lp-footer-link:hover { text-decoration: underline; }
.lp-footer-contact { display: flex; flex-direction: column; gap: 0; }
.lp-footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-footer-contact-block--divided {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F0F0F0;
}
.lp-footer-response-note {
  margin: 4px 0 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--gray-500);
}
.lp-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-footer-contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--gray-500);
}
.lp-footer-badges {
  border-top: 1px solid #F0F0F0;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
}
.lp-footer-badge--registry {
  height: 42px;
}
.lp-footer-badge--pse {
  height: 34px;
}
.lp-footer-badge img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.lp-footer-bottom {
  border-top: 1px solid #F0F0F0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
}
.lp-footer-legal-line {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}
.lp-footer-legal { display: flex; gap: 24px; }
.lp-footer-legal a { color: var(--gray-500); text-decoration: none; }
.lp-footer-legal a:hover { color: var(--black); }

/* ── Mobile menu ──────────────────────────────────────────────────── */
.lp-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.lp-mobile-menu--open {
  pointer-events: auto;
}
.lp-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.lp-mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: calc(var(--lp-chrome-height) + 16px) 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  will-change: transform;
  backface-visibility: hidden;
}
.lp-mobile-menu--open .lp-mobile-menu-panel { transform: translate3d(0, 0, 0); }
.lp-mobile-menu-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  min-height: 44px;
  margin-bottom: 12px;
}
.lp-mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -8px -10px 0 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--black);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.lp-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lp-mobile-menu-sequence { display: contents; }
.lp-mobile-menu-link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.15s ease;
}
.lp-mobile-menu-link--active,
.lp-mobile-menu-link--active:hover,
.lp-mobile-menu-link--active:focus-visible {
  color: var(--green);
  font-weight: 600;
}
.lp-mobile-industries {
  border-bottom: 1px solid #F0F0F0;
  padding: 0;
}
.lp-mobile-industries-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border: none;
  background: none;
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.lp-mobile-industries-trigger--active {
  color: var(--green);
  font-weight: 600;
}
.lp-mobile-industries-chevron--open {
  transform: rotate(180deg);
}
.lp-mobile-industries-trigger svg {
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.lp-mobile-industries-list {
  display: grid;
  grid-template-columns: 1fr;
  max-height: min(46vh, 420px);
  gap: 12px;
  overflow-y: auto;
  padding-bottom: 14px;
}
.lp-mobile-company-list {
  display: grid;
  gap: 8px;
  padding: 0 0 16px;
}

.lp-mobile-company-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.lp-mobile-company-link--active {
  border-color: rgba(22, 163, 74, 0.28);
  background: rgba(22, 163, 74, 0.08);
  color: var(--green);
}
.lp-mobile-industries-group {
  min-width: 0;
}
.lp-mobile-industries-label {
  padding: 2px 0 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.lp-mobile-industries-group-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.lp-mobile-industry-link {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 38px;
  border: 1px solid var(--gray-200);
  border-radius: 9px;
  padding: 8px 10px;
  color: var(--black);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.lp-mobile-industry-link--active {
  border-color: rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.08);
  color: var(--green);
}
.lp-mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.lp-mobile-menu-cta { width: 100%; justify-content: center; }

@media (max-width: 420px) {
  .lp-mobile-industries-group-list {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-pain-grid,
  .lp-pillars-grid,
  .lp-how-steps,
  .lp-grow-stats { grid-template-columns: 1fr; }
  .lp-grow-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-how-line { display: none; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-pricing-card--popular { order: -1; }

  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual--desktop { display: none; }
  .lp-hero-visual--mobile { display: block; min-height: auto; }
  .lp-hero-visual--image { max-width: 380px; margin: 0 auto; }

  .lp-nav-links,
  .lp-nav-actions { display: none; }
  .lp-nav-menu-btn {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .lp {
    --lp-pad-x: 24px;
    --lp-pad-y: 72px;
    --lp-chrome-height: 64px;
  }

  .mkt-cta-bg {
    transform: scale(1.04);
  }
  .mkt-cta-bg-overlay {
    background:
      linear-gradient(145deg, rgba(11, 11, 12, 0.94) 0%, rgba(11, 11, 12, 0.86) 58%, rgba(22, 163, 74, 0.28) 100%),
      rgba(0, 0, 0, 0.76);
  }

  /* Unified horizontal inset for all page content */
  .lp-nav,
  .lp-hero-inner,
  .lp-section,
  .lp-footer,
  .lp-mobile-menu-panel {
    padding-left: max(var(--lp-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--lp-pad-x), env(safe-area-inset-right, 0px));
  }

  .lp-section {
    padding-top: var(--lp-pad-y);
    padding-bottom: var(--lp-pad-y);
  }

  .lp-blog-article-section {
    padding-top: 0;
  }

  .lp-section-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lp-problem-grid,
  .lp-sot-content,
  .lp-sot-layout,
  .lp-assistant-grid,
  .lp-autoconfirm-grid,
  .lp-dashboard-grid,
  .lp-pricing-grid,
  .lp-who-grid,
  .lp-final-inner {
    min-width: 0;
    max-width: 100%;
  }

  .lp-problem-visual,
  .lp-sot-visual,
  .lp-assistant-visual,
  .lp-autoconfirm-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lp-nav {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    transform: none;
    z-index: 200;
    width: 100%;
    height: 64px !important;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 8px rgba(17, 17, 17, 0.05);
  }
  .lp-nav-lockup { font-size: 22px; }
  .lp-nav-lockup .lp-wordmark { font-size: 22px !important; }
  .lp-nav-links,
  .lp-nav-actions { display: none; }
  .lp-nav-menu-btn {
    display: flex;
    margin-left: auto;
  }

  /* Menu overlay starts below the fixed navbar, clipped so panel can't bleed upward */
  .lp-mobile-menu {
    top: 64px;
    overflow: hidden;
  }
  .lp-mobile-menu-panel {
    padding-top: 16px;
    padding-bottom: 24px;
    gap: 0;
  }
  .lp-mobile-menu-close { display: none; }
  .lp-mobile-menu-head {
    margin-bottom: 16px;
    min-height: auto;
  }
  .lp-mobile-menu-close { margin: -4px -6px 0 0; }

  /* Hero */
  .lp-hero {
    min-height: auto;
    padding-top: var(--lp-chrome-height);
    background-size: 20px 20px;
  }
  .lp-hero-watermark,
  .lp-hero-radial,
  .lp-scroll-hint { display: none; }
  .lp-hero-fade { top: 320px; }
  .lp-hero-inner {
    padding-top: 28px;
    padding-bottom: 40px;
  }
  .lp-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    width: 100%;
  }
  /* Flatten copy so phone can sit between sub and CTAs on mobile only */
  .lp-hero-copy {
    display: contents;
  }
  .lp-hero-pill {
    order: 1;
    align-self: flex-start;
    margin: 0;
    padding: 8px 12px;
    font-size: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 4px;
    align-items: center;
    border-radius: 12px;
    max-width: 100%;
    line-height: 1.35;
  }
  .lp-hero-pill-dot {
    grid-column: 1;
    grid-row: 1;
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    box-shadow: 0 0 0 2.5px rgba(22, 163, 74, 0.18);
  }
  .lp-hero-pill-accent {
    grid-column: 2;
    grid-row: 1;
  }
  .lp-hero-pill-muted {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .lp-hero-pill-sep { display: none; }
  .lp-h1 { order: 2; margin: 0; width: 100%; }
  .lp-hero-sub { order: 3; width: 100%; }
  .lp-hero-ctas { order: 4; width: 100%; }
  .lp-hero-ctas-wrap { order: 4; width: 100%; }
  .lp-hero-trust-wrap { order: 7; }
  .lp-hero-visual--mobile {
    order: 5;
    margin: 10px 0 0;
    width: 100%;
  }
  .lp-hero-visual--image {
    order: 5;
    margin: 12px auto 4px;
    max-width: 300px;
    width: 100%;
  }
  .lp-hero-image {
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }
  .lp-hero-specs { order: 6; }
  .lp-hero-trust { order: 7; }
  .lp-hero-pill-accent--desktop,
  .lp-hero-pill-muted--desktop { display: none; }
  .lp-hero-pill-accent--mobile,
  .lp-hero-pill-muted--mobile { display: inline; }
  .lp-h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.032em;
  }
  .lp-h1-line {
    display: block;
    white-space: normal;
  }
  .lp-h1-italic-block {
    margin-top: 0.14em;
  }
  .lp-h1-italic-lead {
    display: inline;
    font-size: 1em;
    line-height: 1.14;
  }
  .lp-h1-italic-lead + .lp-h1-em {
    margin-left: 0.18em;
  }
  .lp-h1-em {
    display: inline-block;
    white-space: nowrap;
    font-size: 1em;
    line-height: 1.14;
  }
  .lp-h1-underline {
    bottom: -3px;
    width: 100%;
    height: 10px;
  }
  .lp-h1-underline path {
    stroke-width: 2.75;
  }
  .lp-hero-sub {
    font-size: 15px;
    max-width: none;
    margin: 0;
    line-height: 1.5;
  }
  .lp-hero-ctas {
    flex-direction: column;
    margin: 0;
    gap: 10px;
  }
  .lp-hero-ctas .lp-btn {
    width: 100%;
    height: auto;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 15px;
    justify-content: center;
  }
  .lp-hero-social--desktop { display: none; }
  .lp-hero-visual--desktop { display: none; }
  .lp-hero-visual--mobile {
    display: block;
    min-height: auto;
    width: 100%;
  }
  .lp-hero-phone-mobile-outer {
    width: min(260px, 72vw);
    height: 468px;
    margin: 0 auto;
  }
  .lp-hero-phone-mobile-scale {
    left: 18px;
    transform: scale(0.65);
  }
  .lp-mini-phone-wrap { margin-top: 28px; }
  .lp-hero-social--mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }
  .lp-hero-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lp-hero-social--mobile .lp-hero-avatar {
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin-left: -8px;
  }
  .lp-hero-social--mobile .lp-hero-avatar:first-child { margin-left: 0; }
  .lp-hero-social--mobile .lp-hero-stars { font-size: 12px; font-weight: 600; }
  .lp-hero-social--mobile .lp-hero-quote { font-size: 11px; color: var(--gray-500); }
  .lp-hero-social--mobile .lp-hero-stat-num { font-size: 22px; }
  .lp-hero-social--mobile .lp-hero-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Headlines */
  .lp-headline--md,
  .lp-about-section-title,
  .lp-features-section-title,
  .lp-help-section-title,
  .lp-stories-section-title,
  .lp-stories-results-title,
  .lp-case-section-title,
  .lp-embed-how-title,
  .lp-embed-requirements-title,
  .lp-help-faq-intro h2,
  .lp-help-contact-title,
  .lp-about-studio-title,
  .lp-features-plan-title,
  .ind-split-headline {
    font-size: var(--lp-section-title-size-mobile);
    line-height: 1.1;
  }
  .lp-headline--lg { font-size: 26px; }
  .lp-headline--xl { font-size: 28px; }
  .lp-section-headline-gap { margin-top: 14px; }
  .lp-subhead { font-size: 15px; }

  /* Pain */
  .lp-pain-grid { gap: 12px; margin-top: 36px; }
  .lp-pain-card { padding: 20px; gap: 10px; min-height: auto; }
  .lp-pain-icon { display: none; }
  .lp-pain-num {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
  }
  .lp-pain-title { font-size: 16px; }

  /* Pillars */
  .lp-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 36px;
  }
  .lp-pillar-icon { display: none; }
  .lp-pillar-head { display: block; }
  .lp-pillar-label {
    display: block;
    font-size: 10px;
    margin-bottom: 0;
  }
  .lp-pillar-title { font-size: 18px; }
  .lp-pillar-body { font-size: 14px; }

  /* Grow */
  .lp-grow-mockup { padding: 16px; gap: 10px; border-radius: 16px; }
  .lp-grow-mockup-head .lp-grow-mockup-eyebrow { display: none; }
  .lp-grow-mockup-title { font-size: 16px; }
  .lp-grow-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 10px;
  }
  .lp-grow-row-head {
    gap: 10px;
    align-items: center;
  }
  .lp-grow-avatar { width: 32px; height: 32px; font-size: 11px; }
  .lp-grow-row-meta--desktop { display: none; }
  .lp-grow-row-meta--mobile { display: block; }
  .lp-grow-row-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 100%;
  }
  .lp-grow-stats {
    margin-top: 40px;
    padding-top: 32px;
    gap: 24px;
  }
  .lp-grow-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .lp-grow-stat-num {
    font-size: 28px;
    flex-shrink: 0;
    width: auto;
    min-width: 118px;
  }
  .lp-grow-stat-label {
    margin: 0;
    max-width: none;
    font-size: 13px;
  }

  /* How */
  .lp-how-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
  }
  .lp-how-step {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }
  .lp-how-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 17px;
    flex-shrink: 0;
  }
  .lp-how-step-copy {
    flex: 1;
    gap: 6px;
  }
  .lp-how-title { font-size: 16px; margin: 0; }
  .lp-how-body { font-size: 14px; margin: 0; }

  /* Pricing */
  .lp-pricing-toggle-wrap { margin-top: 28px; }
  .lp-pricing-toggle-btn { padding: 8px 14px; font-size: 13px; gap: 6px; }
  .lp-pricing-toggle-badge { font-size: 10px; padding: 2px 6px; }
  .lp-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
  }
  .lp-pricing-card { padding: 24px; gap: 18px; border-radius: 18px; }
  .lp-pricing-card--popular { order: -1; }
  .lp-pricing-popular { top: -12px; left: 20px; font-size: 9px; padding: 5px 12px; }
  .lp-pricing-price { font-size: 36px; }
  .lp-pricing-features li { font-size: 13px; gap: 8px; }
  .lp-pricing-intro { gap: 14px; }

  /* Testimonial */
  .lp-testimonial { gap: 24px; }
  .lp-testimonial-stars { font-size: 18px; }
  .lp-testimonial-quote { font-size: 20px; line-height: 1.3; }
  .lp-testimonial-avatar { width: 40px; height: 40px; font-size: 13px; }
  .lp-testimonial-name { font-size: 13px; }
  .lp-testimonial-role { font-size: 11px; }
  .lp-testimonial-clients { margin-top: 16px; padding-top: 24px; }
  .lp-testimonial-clients-label { font-size: 10px; margin-bottom: 16px; }
  .lp-testimonial-clients-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lp-testimonial-client { font-size: 12px; padding: 0; }

  /* Final CTA */
  .lp-final-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .lp-final-ctas .lp-btn {
    width: 100%;
    padding: 16px 22px;
    border-radius: 12px;
    justify-content: center;
  }

  /* Footer */
  .lp-footer {
    padding-top: 48px;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 0;
  }
  .lp-footer-tagline { font-size: 13px; }
  .lp-footer-link { font-size: 13px; }
  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 28px;
    padding-top: 16px;
    font-size: 11px;
  }
  .lp-footer-legal { justify-content: center; }

  /* Footer badges: 2-kolom grid, tinggi seragam */
  .lp-footer-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    justify-items: center;
    align-items: center;
  }
  .lp-footer-badge {
    height: 48px;
    width: auto;
  }
}
