/* tokens.css */
:root {
  /* Primary - Navy */
  --color-primary-900: #091620;
  --color-primary-700: #132f45;
  --color-primary-600: #1a425f;
  --color-primary-400: #546571;
  --color-primary-300: #97aab9;
  --color-primary-50: #f6f9fc;
  --color-mist: #e9eff4;

  /* Accent - Purple */
  --color-accent-900: #3833d7;
  --color-accent-700: #6f39e5;
  --color-accent-500: #a139f8;
  --color-accent-400: #a73afb;
  --color-accent-300: rgba(111, 57, 229, 0.33);

  /* Logomark - Reserved */
  --color-tangerine: #ff661f;
  --color-orange: #f98128;
  --color-sun: #f8b44f;

  /* Status */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Neutrals */
  --color-neutral-900: #1a1b1f;
  --color-neutral-700: #333333;
  --color-neutral-600: #546571;
  --color-neutral-300: #dddddd;
  --color-neutral-50: #ffffff;

  /* Canvas */
  --canvas-polished: linear-gradient(180deg, #eef1f5, #f8f9fb);
  --canvas-bright: #f6f9fc;

  /* Gradients */
  --gradient-primary: linear-gradient(90deg, #3833d7, #6f39e5 50%, #a73afb);
  --gradient-dark: linear-gradient(180deg, #091620, #132f45 53%, #1a425f);
  --gradient-text: linear-gradient(90deg, #3e34d9, #a13af8);
  --gradient-logomark: linear-gradient(120deg, #ff661f, #f98128 50%, #f8b44f);
  --gradient-card-warm: linear-gradient(165deg, #ffffff 0%, rgba(232, 231, 249, 0.55) 100%);
  --gradient-glow: radial-gradient(ellipse at 70% 30%, rgba(167, 58, 251, 0.18), transparent 60%);

  /* Radius */
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 20px;
  --r-3xl: 28px;
  --r-full: 99px;

  /* Spacing & rhythm — the vertical section system (proven on the landing page) */
  --space-rhythm: 15px;            /* eyebrow->heading & heading->subhead (tight title zone) */
  --space-section-head: 60px;      /* section heading zone -> content (the 60 of 15/15/60) */
  --space-section-head-sm: 48px;   /* <= tablet */
  --space-section: 96px;           /* section top/bottom padding (desktop) */
  --space-section-sm: 72px;        /* <= tablet */
  --space-section-lg: 112px;       /* closing section (final CTA) — a touch more room */
  --space-section-lg-sm: 88px;     /* <= tablet */
  --space-hero-top: 48px;          /* hero top inset (bottom = --space-section) */

  /* Shadow */
  --shadow-sm: rgba(84, 101, 113, 0.13) 0 10px 40px 0;
  --shadow-md: rgba(19, 47, 69, 0.13) 0 10px 40px 0;
  --shadow-lg: rgba(19, 47, 69, 0.16) 0 18px 50px 0;
  --shadow-soft: rgba(84, 101, 113, 0.18) 0 4px 20px -2px;
  --shadow-purple: 0 30px 60px -25px rgba(111, 57, 229, 0.35);

  /* Easing */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-brand: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Hairline */
  --hairline: 1px solid rgba(151, 170, 185, 0.25);
  --hairline-strong: 1px solid rgba(151, 170, 185, 0.4);

  /* Data viz - categorical (canon: data-visualization/color-palettes.md) */
  --viz-cat-1: #6f39e5;
  --viz-cat-2: #132f45;
  --viz-cat-3: #22c55e;
  --viz-cat-4: #f59e0b;
  --viz-cat-5: #a73afb;
  --viz-cat-6: #1a425f;
  --viz-cat-7: #97aab9;

  /* Data viz - sequential purple */
  --viz-seq-purple-1: #f4eefc;
  --viz-seq-purple-2: #d9c2f7;
  --viz-seq-purple-3: #b789ee;
  --viz-seq-purple-4: #8b4fe8;
  --viz-seq-purple-5: #3833d7;

  /* Data viz - sequential navy */
  --viz-seq-navy-1: #e9eff4;
  --viz-seq-navy-2: #b6c4ce;
  --viz-seq-navy-3: #7c8fa1;
  --viz-seq-navy-4: #3f5567;
  --viz-seq-navy-5: #091620;

  /* Data viz - diverging */
  --viz-div-1: #091620;
  --viz-div-2: #7c8fa1;
  --viz-div-3: #f1f5f9;
  --viz-div-4: #b789ee;
  --viz-div-5: #3833d7;
}


/* kits/landing-page.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  color: var(--color-primary-700);
  background: var(--color-neutral-50);
  font-family: "Work Sans";
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.lp-body :focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(111, 57, 229, 0.18);
}

.lp-body a:not(.lp-button) {
  color: inherit;
}

.lp-shell {
  min-height: 100vh;
  overflow-x: clip;
  background: var(--color-primary-50);
}

.lp-wrap {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--color-neutral-50) 88%, transparent);
  border-bottom: var(--hairline);
  backdrop-filter: blur(18px);
}

.lp-nav {
  min-height: 80px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 32px;
}

/* Conversion nav (canon for landing pages): logo + one CTA, no section menu.
   With the menu gone, lay out brand-left / CTA-right so the CTA doesn't stretch. */
.lp-nav:not(:has(.lp-nav-links)) {
  grid-template-columns: 1fr max-content;
}

.lp-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary-700);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* Real WorkEasy brand logo (assets/). Use the blue/default mark on light surfaces,
   the white mark on dark. Replaces the monogram + wordmark placeholder. */
.lp-brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.lp-brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  color: var(--color-neutral-50);
  background: var(--color-accent-700);
  box-shadow: 0 18px 40px -28px rgba(111, 57, 229, 0.8);
  font-size: 15px;
  font-weight: 600;
}

.lp-nav-links {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.lp-nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--r-md);
  color: var(--color-primary-400);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition-property: color, background-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.lp-nav-links a:hover {
  color: var(--color-primary-700);
  background: var(--color-primary-50);
}

.lp-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  background-clip: padding-box;
  transition-property: transform, box-shadow, background-color, color, border-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.lp-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-button:active {
  transform: scale(0.97);
}

.lp-button-primary {
  color: var(--color-neutral-50);
  background: var(--gradient-primary);
  background-clip: padding-box;
  border-color: color-mix(in srgb, var(--color-neutral-50) 18%, transparent);
  box-shadow: var(--shadow-purple);
}

.lp-button-primary:hover {
  box-shadow:
    0 26px 58px -30px rgba(111, 57, 229, 0.72),
    0 12px 28px -22px rgba(151, 170, 185, 0.6);
}

.lp-button-secondary {
  color: var(--color-primary-700);
  background: var(--color-neutral-50);
  border-color: color-mix(in srgb, var(--color-primary-300) 42%, transparent);
  box-shadow: 0 8px 24px -18px rgba(19, 47, 69, 0.42);
}

.lp-button-secondary:hover {
  border-color: color-mix(in srgb, var(--color-accent-700) 32%, var(--color-primary-300));
  box-shadow: 0 16px 34px -28px rgba(19, 47, 69, 0.55);
}

.lp-button:focus-visible {
  box-shadow:
    0 0 0 4px rgba(111, 57, 229, 0.18),
    var(--shadow-purple);
}

.lp-hero {
  padding: var(--space-hero-top) 0 var(--space-section);
}

.lp-hero-grid {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  align-items: center;
  gap: 80px;
  padding: 72px 80px;
  overflow: hidden;
  border-radius: var(--r-2xl);
  color: var(--color-neutral-50);
  background:
    radial-gradient(circle at 18% 16%, rgba(111, 57, 229, 0.34), transparent 32%),
    radial-gradient(circle at 84% 76%, rgba(151, 170, 185, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--color-primary-900);
  background-size: auto, auto, 88px 88px, 88px 88px, auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 72px -54px rgba(19, 47, 69, 0.72),
    0 48px 130px -72px rgba(111, 57, 229, 0.62),
    0 48px 120px -86px rgba(151, 170, 185, 0.48);
}

.lp-hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(111, 57, 229, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(151, 170, 185, 0.12), transparent 38%);
  opacity: 0.78;
}

.lp-hero-grid > * {
  position: relative;
  z-index: 1;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--color-accent-700);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.lp-h1,
.lp-h2,
.lp-h3,
.lp-copy {
  margin-top: 0;
}

.lp-h1 {
  max-width: 720px;
  margin-bottom: 15px;
  color: var(--color-primary-700);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-hero .lp-h1 {
  color: var(--color-neutral-50);
}

.lp-h2 {
  max-width: 820px;
  margin-bottom: 15px;
  color: var(--color-primary-700);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-h3 {
  margin-bottom: 12px;
  color: var(--color-primary-700);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-h1 em,
.lp-h2 em {
  display: inline-block;
  padding: 0.06em 0.14em 0.18em 0.04em;
  color: transparent;
  background: var(--gradient-text);
  background-clip: text;
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-lede {
  max-width: 620px;
  margin: 0 0 40px;
  color: var(--color-primary-400);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  text-wrap: pretty;
}

.lp-hero .lp-lede {
  color: rgba(255, 255, 255, 0.74);
}

.lp-actions,
.lp-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-actions {
  margin-bottom: 32px;
}

.lp-meta-row {
  color: var(--color-primary-400);
  font-size: 13px;
}

.lp-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: var(--hairline);
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--color-neutral-50) 74%, transparent);
  font-weight: 500;
  white-space: nowrap;
}

.lp-hero .lp-pill {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.lp-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
}

/* Hero guarantee — one reassurance line. Canon: heroes lead with a guarantee,
   not a row of feature pills. Works on light and dark heroes. */
.lp-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-400);
  font-size: 14px;
  font-weight: 500;
}

.lp-guarantee svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-success);
}

.lp-hero .lp-guarantee {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Split hero (overlay) ────────────────────────────────────────────────────
   The dark band stays FULL-WIDTH, end-to-end (unchanged from the standard hero).
   The intake form sits ON TOP of the band's right side and, being taller than the
   band, OVERHANGS the bottom — and that overhang frees the bottom-left white space
   for an integrations strip. Add `lp-hero-split` on the .lp-hero section.
   Grid: band = row 1 full width; form = col 2 spanning rows 1-2 (overlap + overhang,
   on top via z-index); integrations = row 2 col 1 (bottom-left).                 */
.lp-hero-split .lp-hero-overlay {
  display: grid;
  /* col 3 (32px) + the 56px column-gap = an 88px right gutter, so the intake form
     sits INSET from the right edge by default (Chris's S120 direction: don't hug the
     margin). This inset is a sensible DEFAULT, NOT canon — the overlay is meant to FLEX
     per request (form size, section, operator need); accommodate, don't hardcode. The
     band still spans 1 / -1 (full width). */
  grid-template-columns: minmax(0, 1fr) 452px 32px;
  grid-template-rows: auto auto;
  column-gap: 56px;
  row-gap: 32px;
  align-items: start;
}

.lp-hero-band {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
  min-height: 480px;
  padding: 64px 80px;
  padding-right: 540px;
  border-radius: var(--r-2xl);
  color: var(--color-neutral-50);
  background:
    radial-gradient(circle at 16% 18%, rgba(111, 57, 229, 0.34), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(151, 170, 185, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--color-primary-900);
  background-size: auto, auto, 88px 88px, 88px 88px, auto;
}

.lp-hero-band .lp-h1 {
  color: var(--color-neutral-50);
}

.lp-hero-band .lp-lede {
  color: rgba(255, 255, 255, 0.74);
}

.lp-hero-band .lp-guarantee {
  color: rgba(255, 255, 255, 0.8);
}

.lp-hero-integrations {
  grid-column: 1;
  grid-row: 2;
  padding: 0 8px;
}

.lp-integrations-label {
  margin: 0 0 18px;
  color: var(--color-primary-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.lp-integration-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.lp-integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border: var(--hairline);
  border-radius: var(--r-md);
  background: var(--color-neutral-50);
  box-shadow: var(--shadow-soft);
  color: var(--color-primary-700);
  font-size: 14px;
  font-weight: 600;
}

.lp-integration-chip .lp-chip-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--color-primary-50);
  color: var(--color-accent-700);
  font-size: 11px;
  font-weight: 700;
}

.lp-integration-more {
  color: var(--color-accent-900);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.lp-integration-more:hover {
  color: var(--color-accent-700);
}

.lp-hero-split .lp-hero-form {
  grid-column: 2;
  grid-row: 1 / 3;
  z-index: 2;
  align-self: start;
  margin-top: 48px;
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.22),
    0 30px 80px -60px rgba(9, 22, 32, 0.5),
    0 40px 110px -82px rgba(111, 57, 229, 0.4);
}

@media (max-width: 1080px) {
  .lp-hero-split .lp-hero-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 28px;
  }
  .lp-hero-band {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding: 40px 28px;
  }
  .lp-hero-split .lp-hero-form {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }
  .lp-hero-integrations {
    grid-column: 1;
    grid-row: auto;
  }
}

.lp-hero-form {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--r-2xl);
  background: color-mix(in srgb, var(--color-neutral-50) 94%, transparent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 30px 88px -62px rgba(9, 22, 32, 0.9),
    0 44px 118px -82px rgba(111, 57, 229, 0.72);
}

.lp-hero-form-head {
  display: grid;
  gap: 10px;
}

.lp-hero-form-kicker {
  color: var(--color-accent-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.7px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-hero-form h2 {
  margin: 0;
  color: var(--color-primary-700);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}

.lp-hero-form p {
  margin: 0;
  color: var(--color-primary-400);
  font-size: 15px;
  line-height: 1.55;
}

.lp-hero-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-hero-form .lp-button {
  width: 100%;
}

.lp-click-flow {
  display: grid;
  gap: 14px;
}

.lp-choice-group {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lp-choice-group legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  color: var(--color-primary-700);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.lp-choice-group legend span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--r-full);
  color: var(--color-accent-700);
  background: color-mix(in srgb, var(--color-accent-700) 9%, var(--color-neutral-50));
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.lp-choice-row,
.lp-choice-stack {
  display: grid;
  gap: 8px;
}

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

.lp-choice-row-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-choice-card {
  position: relative;
  min-width: 0;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(151, 170, 185, 0.36);
  border-radius: var(--r-md);
  color: var(--color-primary-400);
  background: color-mix(in srgb, var(--color-neutral-50) 82%, var(--color-primary-50));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 12px 28px -24px rgba(19, 47, 69, 0.42);
  cursor: pointer;
  transition-property: transform, box-shadow, background-color, color, border-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.lp-choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.lp-choice-card span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
  text-wrap: balance;
}

.lp-choice-card:hover {
  transform: translateY(-1px);
  color: var(--color-primary-700);
  border-color: color-mix(in srgb, var(--color-accent-700) 26%, var(--color-primary-300));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 16px 34px -28px rgba(19, 47, 69, 0.48);
}

.lp-choice-card:has(input:focus-visible) {
  box-shadow:
    0 0 0 4px rgba(111, 57, 229, 0.18),
    0 16px 34px -28px rgba(19, 47, 69, 0.48);
}

.lp-choice-card:has(input:checked) {
  color: var(--color-primary-700);
  border-color: color-mix(in srgb, var(--color-accent-700) 48%, var(--color-primary-300));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent-700) 10%, var(--color-neutral-50)), var(--color-neutral-50));
  box-shadow:
    inset 0 0 0 1px rgba(111, 57, 229, 0.1),
    0 18px 38px -30px rgba(111, 57, 229, 0.42);
}

.lp-choice-card:active {
  transform: scale(0.97);
}

.lp-choice-card-rich {
  min-height: 58px;
  justify-items: start;
  place-items: initial;
  align-items: center;
  padding: 13px 14px;
}

.lp-choice-card-rich span {
  text-align: left;
}

.lp-click-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--color-primary-50) 82%, var(--color-neutral-50));
  box-shadow: inset 0 0 0 1px rgba(151, 170, 185, 0.18);
}

.lp-click-summary span,
.lp-click-summary strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: var(--r-full);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.lp-click-summary span {
  color: var(--color-primary-400);
  background: rgba(255, 255, 255, 0.52);
}

.lp-click-summary strong {
  grid-column: 1 / -1;
  color: var(--color-accent-700);
  background: color-mix(in srgb, var(--color-accent-700) 9%, var(--color-neutral-50));
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.lp-email-capture {
  margin-top: 2px;
}

.lp-product-stage {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--color-neutral-50) 94%, transparent);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.22),
    0 30px 80px -54px rgba(19, 47, 69, 0.55);
}

.lp-product-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 8px 10px;
  border-bottom: var(--hairline);
}

.lp-product-title {
  display: grid;
  gap: 4px;
}

.lp-product-title strong {
  color: var(--color-primary-700);
  font-size: 15px;
  line-height: 1.2;
}

.lp-product-title span {
  color: var(--color-primary-400);
  font-size: 12px;
  line-height: 1.35;
}

.lp-status-badge {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: var(--r-full);
  color: var(--color-success);
  background: rgba(34, 197, 94, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 224px;
  gap: 16px;
}

/* Showcase split — framed product visual on one side, copy on the other.
   Layout only (no colors). Generalizes the device-spotlight pattern. */
.lp-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 64px;
  align-items: center;
}

@media (max-width: 1080px) {
  .lp-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lp-conversation {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: var(--r-md);
  background: var(--color-primary-50);
}

.lp-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 1px 0 rgba(151, 170, 185, 0.22);
}

.lp-message-prospect {
  color: var(--color-primary-700);
  background: var(--color-neutral-50);
}

.lp-message-lucia {
  justify-self: end;
  color: var(--color-neutral-50);
  background: var(--color-accent-700);
  box-shadow: 0 16px 32px -24px rgba(111, 57, 229, 0.72);
}

.lp-handoff {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--r-md);
  color: var(--color-neutral-50);
  background: var(--color-primary-900);
}

.lp-handoff .lp-h3 {
  color: var(--color-neutral-50);
  margin-bottom: 0;
}

.lp-handoff-item {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-handoff-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-handoff-item strong {
  color: var(--color-neutral-50);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.lp-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.lp-proof-item {
  min-height: 112px;
  display: grid;
  align-content: start;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--color-primary-50);
}

.lp-proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary-700);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.14;
  font-variant-numeric: tabular-nums;
}

.lp-proof-item span {
  color: var(--color-primary-400);
  font-size: 12px;
  line-height: 1.45;
}

.lp-section {
  padding: var(--space-section) 0;
}

.lp-section-soft {
  background: var(--color-primary-50);
}

.lp-section-dark {
  color: var(--color-neutral-50);
  background: var(--color-primary-900);
}

.lp-section-head {
  max-width: 780px;
  margin-bottom: var(--space-section-head);
}

.lp-section-head-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lp-section-head-center .lp-eyebrow {
  justify-content: center;
}

.lp-section-head .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.lp-trust-band {
  padding: 24px 0 40px;
  background: var(--color-primary-50);
}

.lp-trust-band-pad {
  padding-top: 80px;
  padding-bottom: 80px;
}

.lp-trust-band .lp-wrap {
  display: grid;
  gap: 22px;
}

.lp-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
  color: var(--color-primary-400);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.lp-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.lp-trust-line span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--color-accent-700) 58%, var(--color-mist));
}

.lp-logo-cloud {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.lp-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: lp-logo-marquee 55s linear infinite;
}

.lp-logo-track .lp-logo-mark { margin: 0 26px; flex: 0 0 auto; }

.lp-logo-cloud:hover .lp-logo-track { animation-play-state: paused; }

@keyframes lp-logo-marquee {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-logo-track { animation: none; }
}

/* ===== Mobile carousels (<=760px): one item per view + arrows & dots ===== */
.xn-cnav { display: none; }
@media (max-width: 760px) {
  /* scroll-snap track (subscription cards) */
  .xn-track {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
    max-width: none !important;
    padding-bottom: 2px;
  }
  .xn-track::-webkit-scrollbar { display: none; }
  .xn-track > * {
    flex: 0 0 84% !important;
    width: 84% !important;
    max-width: 84% !important;
    scroll-snap-align: center;
    margin: 0 !important;
  }
  /* arrows + dots nav row */
  .xn-cnav {
    display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px;
  }
  .xn-arrow {
    flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 999px; border: 1px solid rgba(151, 170, 185, 0.4);
    background: var(--color-neutral-50); color: var(--color-primary-700);
    cursor: pointer; box-shadow: var(--shadow-soft);
    -webkit-tap-highlight-color: transparent;
  }
  .xn-arrow svg { width: 18px; height: 18px; }
  .xn-dots { display: flex; align-items: center; gap: 8px; }
  .xn-dot {
    width: 8px; height: 8px; border-radius: 999px; padding: 0; border: none;
    background: rgba(19, 47, 69, 0.22); cursor: pointer;
    transition: width 0.22s var(--ease-out), background 0.22s var(--ease-out);
  }
  .xn-dot.is-active { width: 22px; background: var(--color-primary-700); }
}

.lp-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--color-primary-400) 64%, var(--color-mist));
  opacity: 0.95;
}

.lp-logo-mark svg {
  width: 54px;
  height: 22px;
  fill: currentColor;
}

.lp-logo-mark img {
  height: 62px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) brightness(0.62);
}

.lp-logo-mark span {
  color: currentColor;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.lp-section-dark .lp-eyebrow,
.lp-section-dark .lp-h2,
.lp-section-dark .lp-copy {
  color: var(--color-neutral-50);
}

.lp-section-dark .lp-copy {
  color: rgba(255, 255, 255, 0.76);
}

.lp-card-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.lp-feature-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 32px;
  grid-column: span 6;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background: color-mix(in srgb, var(--color-primary-50) 72%, var(--color-neutral-50));
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.2),
    0 18px 42px -36px rgba(19, 47, 69, 0.34),
    0 42px 96px -82px rgba(111, 57, 229, 0.42);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.24),
    0 22px 52px -38px rgba(19, 47, 69, 0.42),
    0 50px 108px -78px rgba(111, 57, 229, 0.48);
}

.lp-feature-card-tall {
  min-height: 584px;
  grid-column: span 5;
}

.lp-feature-card-broad {
  min-height: 584px;
  grid-column: span 7;
}

.lp-feature-card-tall,
.lp-feature-card-broad {
  height: 100%;
}

.lp-feature-card-wide {
  min-height: 420px;
  grid-column: span 8;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-content: center;
  align-items: center;
  gap: 56px;
  padding: 36px;
}

.lp-feature-card-compact {
  min-height: 420px;
  grid-column: span 4;
  padding: 32px;
}

.lp-feature-card .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.lp-card-visual {
  min-height: 240px;
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  border: var(--hairline);
  border-radius: var(--r-2xl);
  background: color-mix(in srgb, var(--color-neutral-50) 64%, var(--color-primary-50));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 26px 68px -60px rgba(19, 47, 69, 0.36);
}

.lp-visual-chat {
  min-height: 336px;
}

.lp-ui-line {
  width: 44%;
  height: 10px;
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--color-primary-300) 36%, transparent);
}

.lp-ui-message {
  width: 64%;
  min-height: 48px;
  border: var(--hairline);
  border-radius: var(--r-lg);
  background: var(--color-neutral-50);
  box-shadow: 0 14px 34px -28px rgba(19, 47, 69, 0.46);
}

.lp-ui-message-wide {
  width: 84%;
}

.lp-ui-message-accent {
  justify-self: end;
  border-color: rgba(111, 57, 229, 0.28);
  background: color-mix(in srgb, var(--color-accent-700) 10%, var(--color-neutral-50));
}

.lp-visual-route {
  min-height: 260px;
  place-items: center;
}

.lp-orbit-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.24),
    0 16px 38px -30px rgba(19, 47, 69, 0.54);
}

.lp-orbit-dot:nth-child(1) {
  top: 34px;
  left: 38px;
}

.lp-orbit-dot:nth-child(2) {
  right: 46px;
  top: 74px;
}

.lp-orbit-dot:nth-child(3) {
  left: 50%;
  bottom: 34px;
}

.lp-ui-mini-card {
  width: min(220px, 78%);
  min-height: 112px;
  border: var(--hairline-strong);
  border-radius: var(--r-xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 24px 56px -34px rgba(19, 47, 69, 0.5),
    0 34px 70px -54px rgba(111, 57, 229, 0.38);
}

.lp-card-stack {
  display: grid;
  gap: 16px;
}

.lp-stack-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 40px 1fr max-content;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: var(--hairline);
  border-radius: var(--r-xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 18px 42px -34px rgba(19, 47, 69, 0.5),
    0 28px 62px -54px rgba(111, 57, 229, 0.34);
}

.lp-stack-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-lg);
  background: var(--color-accent-700);
}

.lp-stack-line {
  min-width: 0;
  height: 10px;
  border-radius: var(--r-full);
  background: var(--color-mist);
}

.lp-stack-card strong {
  color: var(--color-primary-700);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.lp-stack-button {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 18px;
  border-radius: var(--r-lg);
  color: var(--color-neutral-50);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-purple);
  font-size: 14px;
  font-weight: 600;
}

.lp-visual-proof {
  min-height: 250px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.lp-visual-proof span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: var(--hairline);
  border-radius: var(--r-xl);
  color: var(--color-primary-700);
  background: var(--color-neutral-50);
  font-size: 30px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 16px 36px -30px rgba(19, 47, 69, 0.45);
}

.lp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 96px;
  row-gap: 84px;
}

.lp-value-item {
  min-height: 220px;
  display: grid;
  align-content: start;
}

.lp-value-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: var(--r-md);
  color: var(--color-accent-700);
  background: rgba(255, 255, 255, 0.08);
}

.lp-value-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.5;
}

.lp-value-item .lp-h3 {
  color: var(--color-neutral-50);
  font-size: 30px;
  line-height: 1.08;
}

.lp-value-item .lp-copy {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.5;
}

.lp-section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
}

.lp-scroll-showcase {
  display: grid;
  gap: 28px;
}

.lp-scroll-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.lp-scroll-card {
  min-height: 440px;
  display: grid;
  align-items: center;
  padding: 36px;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background: color-mix(in srgb, var(--color-primary-50) 74%, var(--color-neutral-50));
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.2),
    0 28px 80px -68px rgba(19, 47, 69, 0.4);
}

.lp-scroll-visual {
  min-height: 320px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-2xl);
  background:
    linear-gradient(90deg, rgba(151, 170, 185, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(151, 170, 185, 0.12) 1px, transparent 1px),
    color-mix(in srgb, var(--color-neutral-50) 76%, var(--color-primary-50));
  background-size: 76px 76px;
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lp-transaction-card,
.lp-qualification-card,
.lp-handoff-preview {
  position: relative;
  z-index: 1;
  width: min(420px, 78%);
  display: grid;
  gap: 12px;
  padding: 28px;
  border: var(--hairline);
  border-radius: var(--r-2xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 18px 44px -34px rgba(19, 47, 69, 0.48),
    0 34px 78px -58px rgba(111, 57, 229, 0.34);
}

.lp-transaction-card span,
.lp-qualification-card span,
.lp-handoff-preview span,
.lp-mini-eyebrow {
  color: var(--color-primary-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-transaction-card strong,
.lp-qualification-card strong,
.lp-handoff-preview strong {
  color: var(--color-primary-700);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
}

.lp-progress-line {
  width: 86%;
  height: 10px;
  border-radius: var(--r-full);
  background: var(--color-mist);
}

.lp-progress-line-accent {
  width: 62%;
  background: color-mix(in srgb, var(--color-accent-700) 74%, var(--color-mist));
}

.lp-brand-bubble {
  position: absolute;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: var(--hairline);
  border-radius: var(--r-full);
  color: var(--color-accent-700);
  background: var(--color-neutral-50);
  box-shadow: 0 18px 40px -32px rgba(19, 47, 69, 0.42);
  font-weight: 600;
}

.lp-brand-bubble:nth-of-type(1) {
  left: 12%;
  top: 28%;
}

.lp-brand-bubble:nth-of-type(2) {
  right: 10%;
  top: 38%;
}

.lp-brand-bubble:nth-of-type(3) {
  right: 18%;
  bottom: 20%;
}

.lp-qualification-card {
  margin-top: -48px;
}

.lp-qualification-card p {
  margin: 0;
  color: var(--color-primary-400);
  line-height: 1.5;
}

.lp-qualification-card-offset {
  width: min(360px, 68%);
  margin-top: -10px;
  margin-left: auto;
}

.lp-handoff-preview ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-handoff-preview li {
  color: var(--color-primary-400);
  font-size: 14px;
  line-height: 1.45;
}

.lp-scroll-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  padding: 40px 0 40px 84px;
}

.lp-scroll-copy::before,
.lp-scroll-copy::after {
  content: "";
  position: absolute;
  left: 21px;
  pointer-events: none;
}

.lp-scroll-copy::before {
  top: 104px;
  bottom: -92px;
  width: 1px;
  background: color-mix(in srgb, var(--color-primary-300) 42%, transparent);
}

.lp-scroll-copy::after {
  bottom: -100px;
  width: 12px;
  height: 12px;
  border-right: 1px solid color-mix(in srgb, var(--color-primary-300) 54%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary-300) 54%, transparent);
  transform: translateX(-6px) rotate(45deg);
}

.lp-scroll-step:last-child .lp-scroll-copy::before,
.lp-scroll-step:last-child .lp-scroll-copy::after {
  display: none;
}

.lp-icon-heading,
.lp-line-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-accent-700);
}

.lp-scroll-copy .lp-icon-heading {
  position: absolute;
  left: 0;
  top: 42px;
  z-index: 1;
  border-radius: var(--r-lg);
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.22),
    0 16px 34px -30px rgba(19, 47, 69, 0.42);
}

.lp-icon-heading svg,
.lp-line-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.lp-scroll-copy .lp-eyebrow {
  margin-bottom: 0;
}

.lp-scroll-copy .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  line-height: 1.6;
}

.lp-route-list-light li {
  color: var(--color-primary-400);
}

.lp-support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: var(--hairline);
  border-left: var(--hairline);
}

.lp-support-item {
  min-height: 300px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 48px;
  text-align: center;
  border-right: var(--hairline);
}

.lp-support-item:last-child {
  border-right: 0;
}

.lp-support-item .lp-h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.lp-support-item .lp-copy {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 17px;
  line-height: 1.55;
}

.lp-media-story {
  display: grid;
  justify-items: center;
}

.lp-media-backdrop {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background:
    linear-gradient(90deg, rgba(151, 170, 185, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(151, 170, 185, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, rgba(111, 57, 229, 0.09), rgba(151, 170, 185, 0.06) 44%, rgba(151, 170, 185, 0.1));
  background-size: 112px 112px, 112px 112px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.18),
    0 34px 100px -80px rgba(19, 47, 69, 0.42);
}

.lp-room-label {
  position: absolute;
  color: rgba(19, 47, 69, 0.36);
  font-size: 18px;
  font-weight: 500;
}

.lp-room-label-left {
  left: 10%;
  top: 34%;
}

.lp-room-label-right {
  right: 11%;
  top: 26%;
}

.lp-video-frame {
  width: min(760px, 82%);
  min-height: 400px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 10px;
  padding: 12px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--r-2xl);
  background: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 22px 58px -36px rgba(19, 47, 69, 0.56),
    0 36px 92px -62px rgba(111, 57, 229, 0.42);
}

.lp-video-main {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 28px;
  border-radius: var(--r-xl);
  color: var(--color-neutral-50);
  background:
    linear-gradient(135deg, rgba(9, 22, 32, 0.9), rgba(19, 47, 69, 0.66)),
    var(--color-primary-900);
}

.lp-video-main span,
.lp-video-main strong {
  position: relative;
  z-index: 1;
}

.lp-video-main span {
  font-size: 14px;
  font-weight: 600;
}

.lp-video-main strong {
  max-width: 360px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.02;
}

.lp-video-side {
  display: grid;
  gap: 10px;
}

.lp-video-side span {
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(233, 239, 244, 0.58)),
    var(--color-primary-50);
  box-shadow: inset 0 0 0 1px rgba(151, 170, 185, 0.28);
}

.lp-video-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.lp-video-controls span {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.lp-media-lede {
  max-width: 760px;
  margin: 42px 0 58px;
  color: color-mix(in srgb, var(--color-primary-700) 74%, var(--color-accent-700));
  font-size: 32px;
  font-weight: 300;
  line-height: 1.34;
  text-align: center;
  text-wrap: balance;
}

.lp-media-feature-grid {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.lp-media-feature {
  display: grid;
  align-content: start;
  gap: 14px;
}

.lp-gradient-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, var(--color-accent-700), var(--color-accent-500));
  box-shadow: 0 18px 40px -28px rgba(111, 57, 229, 0.72);
}

.lp-media-feature .lp-h3 {
  margin-bottom: 0;
}

.lp-media-feature .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  line-height: 1.55;
}

.lp-sync-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background:
    linear-gradient(135deg, rgba(111, 57, 229, 0.1), rgba(151, 170, 185, 0.08)),
    var(--color-neutral-50);
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.18),
    0 32px 96px -78px rgba(19, 47, 69, 0.42);
}

.lp-sync-window {
  width: min(760px, 82%);
  min-height: 250px;
  padding: 56px 32px 32px;
  border: var(--hairline);
  border-radius: var(--r-2xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 20px 58px -36px rgba(19, 47, 69, 0.45),
    0 40px 92px -64px rgba(111, 57, 229, 0.4);
}

.lp-window-dot {
  position: relative;
  top: -28px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  border-radius: var(--r-full);
  background: var(--color-mist);
}

.lp-sync-code {
  display: grid;
  gap: 18px;
  color: var(--color-primary-700);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}

.lp-sync-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-sync-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border-radius: var(--r-2xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.2),
    0 20px 54px -46px rgba(19, 47, 69, 0.42);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.lp-sync-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.24),
    0 28px 68px -48px rgba(19, 47, 69, 0.5);
}

.lp-sync-card .lp-h3,
.lp-sync-card .lp-copy {
  margin-bottom: 0;
}

.lp-sync-card .lp-copy {
  color: var(--color-primary-400);
  line-height: 1.55;
}

.lp-thin-card-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--color-primary-700) 72%, var(--color-accent-700));
}

.lp-thin-card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.35;
}

.lp-setup-demo {
  display: grid;
  justify-items: center;
}

.lp-tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--color-primary-50) 82%, var(--color-neutral-50));
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.18),
    0 18px 46px -38px rgba(19, 47, 69, 0.45);
}

.lp-tab-label {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: var(--r-full);
  color: var(--color-primary-400);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition-property: transform, background-color, color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.lp-tab-label:hover {
  transform: translateY(-1px);
  color: var(--color-primary-700);
}

.lp-setup-stage {
  position: relative;
  width: min(880px, 100%);
  min-height: 520px;
  display: grid;
  place-items: center;
  margin-top: 48px;
  overflow: hidden;
  border-radius: var(--r-3xl);
  background:
    linear-gradient(165deg, rgba(111, 57, 229, 0.13), rgba(151, 170, 185, 0.08) 62%, rgba(151, 170, 185, 0.1)),
    var(--color-primary-50);
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.16),
    0 36px 100px -78px rgba(111, 57, 229, 0.42);
}

.lp-setup-panel {
  width: min(720px, calc(100% - 64px));
  display: none;
  gap: 18px;
  padding: 30px;
  border-radius: var(--r-2xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 24px 64px -40px rgba(19, 47, 69, 0.48),
    0 42px 96px -62px rgba(111, 57, 229, 0.34);
}

.lp-setup-panel pre {
  margin: 0;
  padding: 24px;
  overflow: auto;
  border-radius: var(--r-xl);
  color: var(--color-primary-700);
  background: var(--color-primary-50);
  font: inherit;
  font-size: 18px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.lp-setup-panel code {
  font: inherit;
}

#setup-path-page:checked ~ .lp-tab-list label[for="setup-path-page"],
#setup-path-lucia:checked ~ .lp-tab-list label[for="setup-path-lucia"],
#setup-path-crm:checked ~ .lp-tab-list label[for="setup-path-crm"],
#setup-path-report:checked ~ .lp-tab-list label[for="setup-path-report"] {
  color: var(--color-primary-700);
  background: var(--color-neutral-50);
  box-shadow: 0 14px 34px -28px rgba(19, 47, 69, 0.46);
}

#setup-path-page:checked ~ .lp-setup-stage .lp-setup-panel-page,
#setup-path-lucia:checked ~ .lp-setup-stage .lp-setup-panel-lucia,
#setup-path-crm:checked ~ .lp-setup-stage .lp-setup-panel-crm,
#setup-path-report:checked ~ .lp-setup-stage .lp-setup-panel-report {
  display: grid;
}

.lp-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.lp-compare-panel {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 32px;
  border-radius: var(--r-md);
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.24),
    0 18px 46px -38px rgba(19, 47, 69, 0.48);
}

.lp-compare-panel-strong {
  color: var(--color-neutral-50);
  background: var(--color-primary-900);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 24px 60px -44px rgba(19, 47, 69, 0.75);
}

.lp-compare-panel-strong .lp-h3 {
  color: var(--color-neutral-50);
}

.lp-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  color: var(--color-primary-400);
  font-size: 15px;
  line-height: 1.5;
}

.lp-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--color-warning);
}

.lp-compare-panel-strong .lp-list li {
  color: rgba(255, 255, 255, 0.78);
}

.lp-compare-panel-strong .lp-list li::before {
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

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

.lp-step {
  min-height: 288px;
  display: grid;
  align-content: start;
  padding: 32px;
  border-radius: var(--r-md);
  background: var(--color-neutral-50);
  box-shadow: 0 0 0 1px rgba(151, 170, 185, 0.24);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.lp-step:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.28),
    0 20px 56px -44px rgba(19, 47, 69, 0.52);
}

.lp-step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: var(--r-md);
  color: var(--color-neutral-50);
  background: var(--color-accent-700);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.lp-step .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.lp-final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-section-lg) 0;
  color: var(--color-neutral-50);
  background:
    radial-gradient(circle at 18% 18%, rgba(111, 57, 229, 0.34), transparent 32%),
    radial-gradient(circle at 84% 70%, rgba(151, 170, 185, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--color-primary-900);
  background-size: auto, auto, auto, 88px 88px, 88px 88px, auto;
}

.lp-final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 80px;
  align-items: center;
}

.lp-final-cta-copy {
  max-width: 720px;
}

.lp-final-cta .lp-eyebrow,
.lp-final-cta .lp-h2 {
  color: var(--color-neutral-50);
}

.lp-final-cta .lp-copy {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.62;
}

.lp-final-cta .lp-h2 em {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
}

.lp-cta-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.lp-cta-proof-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--r-full);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 500;
}

.lp-final-form {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: var(--r-2xl);
  background: color-mix(in srgb, var(--color-neutral-50) 94%, transparent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 34px 90px -62px rgba(9, 22, 32, 0.72),
    0 46px 120px -86px rgba(111, 57, 229, 0.62);
}

.lp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lp-field {
  display: grid;
  gap: 8px;
}

.lp-field-full {
  grid-column: 1 / -1;
}

.lp-field label {
  color: var(--color-primary-700);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* Floating labels on select fields (Industry / Country / Employee count) — matches v=a/v=b look */
.lp-field { position: relative; }
.lp-field > label {
  position: absolute; left: 11px; top: -7px; z-index: 2; margin: 0;
  padding: 0 6px; background: var(--color-neutral-50);
  font-size: 12px; font-weight: 500; line-height: 1; letter-spacing: .01em;
  color: var(--color-primary-400);
}

.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(151, 170, 185, 0.45);
  border-radius: var(--r-md);
  color: var(--color-primary-700);
  background: var(--color-neutral-50);
  font: inherit;
  font-size: 15px;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.lp-field input:hover,
.lp-field select:hover,
.lp-field textarea:hover {
  border-color: rgba(111, 57, 229, 0.35);
}

.lp-field textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.lp-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: var(--hairline);
}

.lp-form-actions .lp-copy {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 13px;
  line-height: 1.45;
}

.lp-routing-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  color: var(--color-neutral-50);
  background: var(--color-primary-900);
}

.lp-routing-panel .lp-eyebrow,
.lp-routing-panel .lp-h3 {
  color: var(--color-neutral-50);
}

.lp-routing-panel .lp-eyebrow {
  margin-bottom: 0;
}

.lp-routing-panel .lp-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.lp-route-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-route-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.lp-route-dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--color-accent-700);
  box-shadow: 0 0 0 4px rgba(111, 57, 229, 0.16);
}

.lp-scroll-copy .lp-route-list-light li {
  color: var(--color-primary-400);
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-faq {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border-radius: var(--r-md);
  background: var(--color-neutral-50);
  box-shadow: 0 0 0 1px rgba(151, 170, 185, 0.24);
}

.lp-faq .lp-thin-card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
}

.lp-faq .lp-thin-card-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.3;
}

.lp-faq .lp-h3 {
  margin-bottom: 0;
}

.lp-faq .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 15px;
  line-height: 1.55;
}

.lp-faq-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, var(--color-primary-50) 0%, transparent 14%, transparent 86%, var(--color-primary-50) 100%),
    linear-gradient(90deg, rgba(151, 170, 185, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(151, 170, 185, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(111, 57, 229, 0.12), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(151, 170, 185, 0.1), transparent 30%),
    color-mix(in srgb, var(--color-primary-50) 78%, var(--color-neutral-50));
  background-size: auto, 96px 96px, 96px 96px, auto, auto, auto;
}

.lp-faq-section::before {
  content: "";
  position: absolute;
  inset: 48px max(32px, calc((100% - 1280px) / 2)) 48px;
  pointer-events: none;
  border-radius: var(--r-3xl);
  background: color-mix(in srgb, var(--color-neutral-50) 58%, transparent);
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.2),
    0 30px 90px -78px rgba(19, 47, 69, 0.45),
    0 42px 110px -88px rgba(111, 57, 229, 0.42);
}



.lp-faq-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  min-height: 640px;
  padding: 64px 72px;
}

.lp-faq-shell .lp-section-head {
  margin-bottom: 0;
}

.lp-faq-list {
  display: grid;
  align-self: center;
  min-height: 640px;
  align-content: start;
  padding: 10px 28px;
  border-radius: var(--r-2xl);
  background: color-mix(in srgb, var(--color-neutral-50) 62%, transparent);
  border-top: var(--hairline);
  box-shadow:
    inset 0 0 0 1px rgba(151, 170, 185, 0.16),
    0 24px 68px -58px rgba(19, 47, 69, 0.34);
}

.lp-faq-item {
  border-bottom: var(--hairline);
}

.lp-faq-item summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  color: var(--color-primary-700);
  cursor: pointer;
  list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary span {
  font-family: "Work Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-faq-item summary svg {
  width: 28px;
  height: 28px;
  justify-self: end;
  color: var(--color-accent-700);
  stroke-width: 1.4;
  transition-property: transform, color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease-out);
}

.lp-faq-item summary:hover svg {
  color: var(--color-primary-700);
}

.lp-faq-item[open] summary svg {
  transform: rotate(180deg);
}

.lp-faq-item p {
  max-width: 760px;
  margin: -4px 64px 24px 0;
  color: var(--color-primary-400);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.68;
}

.lp-footer {
  padding: 40px 0;
  background: var(--color-primary-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.lp-footer .lp-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.lp-footer-brand { display: inline-flex; align-items: center; }

.lp-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}

.lp-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s var(--ease-out);
}

.lp-footer-links a:hover { color: var(--color-neutral-50); }

.lp-footer-copy { color: rgba(255, 255, 255, 0.6); font-size: 15px; white-space: nowrap; }

@media (max-width: 1080px) {
  .lp-hero-grid,
  .lp-product-grid,
  .lp-scroll-step,
  .lp-faq-shell,
  .lp-final-cta-grid {
    grid-template-columns: 1fr;
  }

  .lp-faq-shell {
    gap: 40px;
    min-height: auto;
    padding: 48px;
  }

  .lp-scroll-copy {
    min-height: auto;
    padding: 8px 0 64px 76px;
  }

  .lp-scroll-copy .lp-icon-heading {
    top: 8px;
  }

  .lp-scroll-copy::before {
    top: 68px;
    bottom: 10px;
  }

  .lp-scroll-copy::after {
    bottom: 2px;
  }

  .lp-feature-card,
  .lp-feature-card-tall,
  .lp-feature-card-broad,
  .lp-feature-card-wide,
  .lp-feature-card-compact {
    grid-column: span 12;
  }

  .lp-feature-card-wide {
    grid-template-columns: 1fr;
  }

  .lp-proof-grid,
  .lp-compare,
  .lp-steps,
  .lp-faq-grid,
  .lp-value-grid,
  .lp-support-strip,
  .lp-media-feature-grid,
  .lp-sync-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-value-grid {
    column-gap: 56px;
    row-gap: 64px;
  }
}

@media (max-width: 760px) {
  .lp-wrap {
    width: min(100% - 32px, 1184px);
  }

  .lp-nav {
    min-height: 72px;
    grid-template-columns: 1fr max-content;
  }

  .lp-nav-links {
    display: none;
  }

  .lp-hero {
    padding: 32px 0 48px;
  }

  .lp-hero-grid {
    gap: 32px;
    min-height: auto;
    padding: 48px 32px;
  }

  .lp-hero-form {
    padding: 24px;
  }

  .lp-hero .lp-actions {
    margin-bottom: 0;
  }

  .lp-hero-form-grid {
    grid-template-columns: 1fr;
  }

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

  .lp-h1 {
    font-size: 48px;
  }

  .lp-h2 {
    font-size: 32px;
  }

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

  .lp-section {
    padding: var(--space-section-sm) 0;
  }

  .lp-section-head {
    margin-bottom: var(--space-section-head-sm);
  }

  .lp-faq-section::before {
    inset: 24px 16px;
    border-radius: var(--r-2xl);
  }

  .lp-faq-shell {
    gap: 28px;
    min-height: auto;
    padding: 32px 24px;
  }

  .lp-faq-list {
    height: auto;
    padding: 6px 14px;
    border-radius: var(--r-xl);
  }

  .lp-proof-grid,
  .lp-card-mosaic,
  .lp-value-grid,
  .lp-compare,
  .lp-steps,
  .lp-final-cta-grid,
  .lp-faq-grid,
  .lp-form-grid,
  .lp-support-strip,
  .lp-media-feature-grid,
  .lp-sync-grid {
    grid-template-columns: 1fr;
  }

  .lp-trust-band {
    padding: 20px 0 32px;
  }

  .lp-trust-band .lp-wrap {
    gap: 18px;
  }

  .lp-trust-line {
    row-gap: 6px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .lp-trust-line span {
    gap: 12px;
  }

  .lp-trust-line span:not(:last-child)::after {
    display: none;
  }

  .lp-logo-cloud {
    column-gap: 18px;
    row-gap: 12px;
  }

  .lp-logo-mark {
    gap: 7px;
  }

  .lp-logo-mark svg {
    width: 42px;
    height: 18px;
  }

  .lp-logo-mark span {
    font-size: 15px;
  }

  .lp-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 16px;
    min-height: 80px;
    padding: 22px 0;
  }

  .lp-faq-item summary span {
    font-size: 19px;
  }

  .lp-faq-item p {
    margin-right: 0;
    font-size: 16px;
  }

  .lp-final-cta {
    padding: var(--space-section-lg-sm) 0;
  }

  .lp-final-cta-grid {
    gap: 40px;
  }

  .lp-final-form {
    padding: 24px;
  }

  .lp-scroll-showcase {
    gap: 28px;
  }

  .lp-scroll-step {
    gap: 24px;
  }

  .lp-scroll-card {
    min-height: auto;
    padding: 24px;
  }

  .lp-scroll-visual,
  .lp-media-backdrop,
  .lp-setup-stage {
    min-height: 420px;
  }

  .lp-support-strip {
    border-right: 0;
    border-left: 0;
  }

  .lp-support-item {
    min-height: auto;
    padding: 40px 24px;
    border-right: 0;
    border-bottom: var(--hairline);
  }

  .lp-support-item:last-child {
    border-bottom: 0;
  }

  .lp-video-frame {
    width: calc(100% - 48px);
    min-height: 340px;
    grid-template-columns: 1fr;
  }

  .lp-media-lede {
    font-size: 26px;
    line-height: 1.36;
  }

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

  .lp-room-label {
    display: none;
  }

  .lp-media-feature-grid {
    gap: 32px;
  }

  .lp-feature-card,
  .lp-feature-card-tall,
  .lp-feature-card-broad,
  .lp-feature-card-wide,
  .lp-feature-card-compact {
    min-height: auto;
  }

  .lp-product-stage,
  .lp-conversation,
  .lp-handoff,
  .lp-feature-card,
  .lp-sync-card,
  .lp-compare-panel,
  .lp-step,
  .lp-form-panel,
  .lp-routing-panel,
  .lp-faq {
    padding: 24px;
  }

  .lp-conversation {
    min-height: auto;
  }

  .lp-card-visual,
  .lp-visual-chat,
  .lp-visual-route,
  .lp-visual-proof,
  .lp-scroll-visual {
    min-height: 220px;
  }

  .lp-value-item {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .lp-h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .lp-hero-grid {
    gap: 28px;
    padding: 36px 24px;
  }

  .lp-hero-form {
    padding: 16px;
    border-radius: var(--r-xl);
    gap: 14px;
  }

  .lp-hero-form-head {
    gap: 8px;
  }

  .lp-hero-form h2 {
    font-size: 24px;
  }

  .lp-hero-form p {
    font-size: 14px;
    line-height: 1.4;
  }

  .lp-click-flow {
    gap: 12px;
  }

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

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

  .lp-choice-card {
    min-height: 44px;
    padding: 9px 10px;
  }

  .lp-choice-card-rich {
    min-height: 56px;
    padding: 11px 12px;
  }

  .lp-lede {
    margin-bottom: 28px;
  }

  .lp-actions .lp-button {
    width: 100%;
  }

  .lp-brand span:last-child {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lp-actions .lp-button,
  .lp-form-actions .lp-button {
    width: 100%;
  }

  .lp-pill {
    white-space: normal;
  }

  .lp-message {
    max-width: 100%;
  }

  .lp-section-actions .lp-button {
    width: 100%;
  }

  .lp-transaction-card,
  .lp-qualification-card,
  .lp-handoff-preview {
    width: min(100%, 320px);
    padding: 22px;
  }

  .lp-brand-bubble {
    width: 44px;
    height: 44px;
  }

  .lp-tab-list {
    width: 100%;
    border-radius: var(--r-2xl);
  }

  .lp-tab-label {
    flex: 1 1 44%;
    min-width: 0;
    padding: 0 16px;
  }

  .lp-setup-panel {
    width: calc(100% - 32px);
    padding: 20px;
  }

  .lp-setup-panel pre {
    padding: 18px;
    font-size: 14px;
  }

  .lp-visual-proof {
    grid-template-columns: 1fr;
  }

  .lp-stack-card {
    grid-template-columns: 36px 1fr;
  }

  .lp-stack-card strong {
    grid-column: 1 / -1;
  }
}

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

/* ── Pricing / plans (17-pricing) ─────────────────────────────────────────────
   Three-up plan grid. White cards echo the lp-compare-panel ring + radius; the
   featured plan echoes lp-compare-panel-strong's emphasis with a subtle accent
   tint + accent ring (NOT a full dark band, NOT orange). Big price reuses the
   lp-proof-item strong number weight (600, tabular). */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.lp-plan-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 32px;
  border-radius: var(--r-2xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.24),
    0 18px 46px -38px rgba(19, 47, 69, 0.48);
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}

.lp-plan-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.28),
    0 24px 60px -42px rgba(19, 47, 69, 0.55);
}

.lp-plan-card .lp-h3 {
  margin-bottom: 0;
}

.lp-plan-card .lp-copy {
  margin-bottom: 0;
  color: var(--color-primary-400);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.lp-plan-card .lp-button {
  width: 100%;
}

.lp-plan-card-strong {
  background: color-mix(in srgb, var(--color-accent-700) 5%, var(--color-neutral-50));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-accent-700) 38%, transparent),
    0 24px 60px -40px rgba(111, 57, 229, 0.5);
}

.lp-plan-card-strong:hover {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-accent-700) 46%, transparent),
    0 30px 72px -42px rgba(111, 57, 229, 0.55);
}

.lp-plan-badge {
  justify-self: start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--r-full);
  color: var(--color-accent-700);
  background: color-mix(in srgb, var(--color-accent-700) 10%, var(--color-neutral-50));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.lp-plan-price strong {
  color: var(--color-primary-700);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lp-plan-price span {
  color: var(--color-primary-400);
  font-size: 14px;
  font-weight: 500;
}

/* Plan feature dots read positive (accent), not the amber lp-list default. */
.lp-plan-card .lp-list li::before {
  background: var(--color-accent-700);
}

/* ── Testimonials / quotes (18-testimonials) ──────────────────────────────────
   Row of white quote cards. Same ring/radius/shadow language as the plan cards.
   Decorative quotation glyph uses Caveat (brand script) in purple. */
.lp-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.lp-quote-card {
  display: grid;
  align-content: start;
  gap: 18px;
  margin: 0;
  padding: 32px;
  border-radius: var(--r-2xl);
  background: var(--color-neutral-50);
  box-shadow:
    0 0 0 1px rgba(151, 170, 185, 0.24),
    0 18px 46px -38px rgba(19, 47, 69, 0.48);
}

.lp-quote-mark {
  display: block;
  height: 30px;
  color: var(--color-accent-700);
  font-family: "Caveat";
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
}

.lp-quote-text {
  margin: 0;
  color: var(--color-primary-700);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.lp-quote-author {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 2px;
  padding-top: 20px;
  border-top: var(--hairline);
}

.lp-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--color-accent-700) 12%, var(--color-primary-50));
  box-shadow: inset 0 0 0 1px rgba(151, 170, 185, 0.3);
}

.lp-quote-author-meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.lp-quote-author-meta strong {
  color: var(--color-primary-700);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.lp-quote-author-meta span {
  color: var(--color-primary-400);
  font-size: 12px;
  line-height: 1.3;
}

/* ── Slim CTA banner (19-cta-banner) ──────────────────────────────────────────
   A single tactical dark band (gradient-dark + atmospheric orbs) — distinct from
   the big final-CTA form. Copy left, one gradient marketing CTA right; stacks on
   narrow. */
.lp-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 48px 56px;
  overflow: hidden;
  border-radius: var(--r-3xl);
  color: var(--color-neutral-50);
  background:
    radial-gradient(circle at 16% 20%, rgba(111, 57, 229, 0.32), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(151, 170, 185, 0.16), transparent 36%),
    var(--gradient-dark);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 72px -54px rgba(19, 47, 69, 0.72),
    0 48px 120px -86px rgba(111, 57, 229, 0.5);
}

.lp-cta-banner-copy {
  max-width: 640px;
  display: grid;
  gap: 12px;
}

.lp-cta-banner .lp-h2 {
  margin-bottom: 0;
  color: var(--color-neutral-50);
  font-size: 34px;
}

.lp-cta-banner .lp-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.55;
}

.lp-cta-banner .lp-button {
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .lp-pricing-grid,
  .lp-quote-grid {
    grid-template-columns: 1fr;
  }

  .lp-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 32px;
  }

  .lp-cta-banner .lp-button {
    width: 100%;
  }
}

/* Hero quote form — a two-column hero: a dark gradient band tops the left
       column (eyebrow / white headline / benefit checklist / video-preview
       carousel), with a validating multi-field quote form on the right. A
       scroll-aware sticky header sits transparent over the band and crossfades
       to a white bar. Ported from the Claude Design "Hero Quote Form.dc.html";
       the React DCLogic (band sizing, header IO, reveal-on-scroll, carousel,
       form validation, touch-swipe) is reimplemented in vanilla JS and scoped
       to .hq-*. The kit already supplies .lp-header/.lp-nav/.lp-brand,
       .lp-hero-form* and .lp-field*; every token used exists in the kit's
       tokens.css and stays as var(). The source's picsum.photos previews are
       swapped for self-contained on-brand SVG posters (form, not final art). */
    .hq-section {
      position: relative; width: 100%; overflow: hidden;
      padding: 112px 0 104px; background: var(--color-primary-50);
    }
    .hq-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
    .hq-band {
      position: absolute; top: 0; left: 0; right: 0; height: 600px; z-index: 0; overflow: hidden;
      background:
        radial-gradient(circle at 16% 14%, rgba(111, 57, 229, 0.34), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(151, 170, 185, 0.16), transparent 32%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        var(--color-primary-900);
      background-size: auto, auto, 88px 88px, 88px 88px, auto;
    }
    .hq-band::after {
      content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.78;
      background:
        linear-gradient(135deg, rgba(111, 57, 229, 0.16), transparent 46%),
        linear-gradient(315deg, rgba(151, 170, 185, 0.12), transparent 40%);
    }

    /* Sticky header — transparent over the band, white bar once scrolled. */
    .hq-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background: transparent; border-bottom: 1px solid transparent;
      -webkit-backdrop-filter: none; backdrop-filter: none;
      transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out),
                  -webkit-backdrop-filter 220ms var(--ease-out), backdrop-filter 220ms var(--ease-out);
    }
    .hq-header.is-scrolled {
      background: color-mix(in srgb, var(--color-neutral-50) 88%, transparent);
      border-bottom-color: rgba(151, 170, 185, 0.25);
      -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    }
    .hq-brand { position: relative; display: inline-block; height: 30px; line-height: 0; }
    .hq-brand img { height: 30px; width: auto; display: block; }
    .hq-brand .hq-logo-color { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 220ms var(--ease-out); }
    .hq-brand .hq-logo-white { transition: opacity 220ms var(--ease-out); }
    .hq-header.is-scrolled .hq-logo-white { opacity: 0; }
    .hq-header.is-scrolled .hq-logo-color { opacity: 1; }

    .hq-grid {
      position: relative; z-index: 1; margin-top: 40px;
      display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
      gap: 64px; align-items: stretch;
    }
    .hq-left {
      display: flex; flex-direction: column;
      opacity: 0; transform: translateY(22px);
      transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
    }
    .hq-left.is-in, .hq-form.is-in { opacity: 1; transform: none; }
    .hq-left .lp-eyebrow { color: var(--color-primary-50); }
    .hq-h1 { color: var(--color-neutral-50); font-size: 56px; line-height: 1.02; margin-bottom: 15px; max-width: 100%; }
    .hq-lede { color: rgba(255, 255, 255, 0.74); font-size: 19px; margin-bottom: 28px; max-width: 560px; }

    .hq-checklist { list-style: none; margin: 0 0 40px; padding: 0; display: grid; gap: 14px; }
    .hq-checklist li {
      display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
      color: rgba(255, 255, 255, 0.9); font-size: 16px; line-height: 1.5; font-weight: 400;
    }
    .hq-check {
      display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px;
      border-radius: var(--r-full); background: rgba(34, 197, 94, 0.16);
    }

    /* Video-preview carousel */
    .hq-carousel { margin-top: auto; }
    .hq-preview {
      position: relative; border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 16 / 9;
      background: var(--color-primary-700);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 80px -50px rgba(9, 22, 32, 0.9),
                  0 40px 110px -70px rgba(111, 57, 229, 0.55);
    }
    .hq-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 500ms var(--ease-out); }
    .hq-vid.is-active { opacity: 1; }
    .hq-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 14px; }
    .hq-thumb {
      position: relative; padding: 0; border: none; cursor: pointer; aspect-ratio: 16 / 10;
      border-radius: var(--r-md); overflow: hidden; opacity: 0.55; box-shadow: 0 0 0 1px rgba(151, 170, 185, 0.35);
      transition: opacity 160ms var(--ease-out), box-shadow 160ms var(--ease-out), transform 160ms var(--ease-out);
    }
    .hq-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
    .hq-thumb.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--color-accent-700), 0 0 0 5px rgba(111, 57, 229, 0.18); }
    .hq-captions { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 14px; }
    .hq-caption {
      justify-self: center; white-space: nowrap; color: var(--color-primary-400);
      font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
    }

    /* Form column — kit .lp-hero-form, with the DC's opaque white surface. */
    .hq-form {
      /* space-between so the card fills its full (stretched) height evenly —
         no empty gap at the bottom regardless of viewport. Extra top padding
         for breathing room above the heading. */
      height: 100%; align-content: space-between; gap: 18px; padding: 46px 32px 32px; background: var(--color-neutral-50);
      opacity: 0; transform: translateY(22px);
      transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
    }
    .hq-form .lp-field.is-invalid input,
    .hq-form .lp-field.is-invalid select {
      border-color: var(--color-error); box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
    }
    .hq-note { margin: 0; text-align: center; color: var(--color-primary-400); font-size: 12.5px; line-height: 1.45; }
    .hq-error { margin: 0; color: var(--color-error); font-size: 13px; font-weight: 500; }
    .hq-error[hidden], .hq-success[hidden] { display: none; }
    .hq-steps { margin-top: 10px; padding: 20px; border-radius: var(--r-lg); background: var(--color-mist); display: grid; gap: 14px; }
    .hq-steps-title { margin: 0; color: var(--color-primary-700); font-size: 15px; font-weight: 600; }
    .hq-step { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: center; }
    .hq-step-num {
      width: 26px; height: 26px; border-radius: var(--r-full); background: var(--color-accent-300);
      color: var(--color-accent-900); display: grid; place-items: center; font-size: 13px; font-weight: 600;
    }
    .hq-step span:last-child { color: var(--color-primary-700); font-size: 14px; line-height: 1.4; }
    .hq-privacy {
      margin: 0; display: flex; align-items: center; justify-content: center; gap: 8px;
      color: var(--color-primary-400); font-size: 12.5px; line-height: 1.45;
    }

    @keyframes hq-fade-slide { from { opacity: 0; transform: translateX(22px) scale(1.01); } to { opacity: 1; transform: none; } }

    @media (max-width: 1080px) {
      .hq-grid { grid-template-columns: 1fr; gap: 40px; }
      .hq-form { order: 2; }
    }
    @media (max-width: 640px) {
      .hq-form .lp-hero-form-grid { grid-template-columns: 1fr; }
      .hq-h1 { font-size: 40px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hq-left, .hq-form, .hq-vid, .hq-thumb { transition: none; animation: none; }
    }

/* Comparison cards — two feature cards (placeholder visual + title + a
       checklist of points) that 3D-flip out/in when switching a bottom tab
       strip with a sliding gradient indicator. Ported from the Claude Design
       "Comparison Cards Component.dc.html"; scoped to .cc-*. The kit already
       supplies the .lp-card-mosaic grid, .lp-feature-card, .lp-tab-list and
       .lp-tab-label shells; here we add the flip transforms and the tab
       indicator, and replace the DCLogic state machine with a vanilla
       controller (same 220/30/380ms + 55ms-stagger timings). All tokens used
       (--r-2xl/-full, --gradient-primary, --ease-out, --color-primary-*) exist
       in the kit's tokens.css and stay as var(). */
    .cc-card {
      min-height: auto;
      gap: 24px;
      transform-style: preserve-3d;
      backface-visibility: hidden;
      will-change: transform, opacity;
      transform-origin: 50% 50%;
      transition: transform 300ms var(--ease-out), opacity 190ms var(--ease-out);
    }
    .cc-card-b { transition-delay: 55ms; }

    .cc-figure {
      position: relative;
      height: 300px;
      display: grid;
      place-items: center;
      border-radius: var(--r-2xl);
      overflow: hidden;
      background: var(--color-neutral-50);
      box-shadow: inset 0 0 0 1px rgba(151, 170, 185, 0.2),
                  0 24px 60px -46px rgba(19, 47, 69, 0.4);
    }
    .cc-figure-inner { display: grid; gap: 10px; justify-items: center; }
    .cc-figure-icon { width: 34px; height: 34px; color: var(--color-primary-300); }
    .cc-figure-label {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-primary-400);
    }

    .cc-body { display: grid; gap: 20px; }
    .cc-card-title { margin: 0; }
    .cc-points { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
    .cc-point { display: flex; gap: 14px; align-items: flex-start; }
    .cc-check {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      margin-top: 1px;
      display: grid;
      place-items: center;
      border-radius: var(--r-full);
      background: var(--gradient-primary);
      box-shadow: 0 6px 14px -6px rgba(111, 57, 229, 0.6);
    }
    .cc-check svg { width: 13px; height: 13px; }
    .cc-point-text { color: var(--color-primary-400); font-size: 16px; line-height: 1.5; }
    .cc-point-text strong { color: var(--color-primary-700); font-weight: 600; }

    /* Tab strip — override the kit's wrap/inline-flex to a fixed-width nowrap
       track that hosts the sliding indicator. */
    .cc-tabs {
      position: relative;
      display: flex;
      flex-wrap: nowrap;
      gap: 0;
      width: min(440px, 100%);
      box-shadow: inset 0 0 0 1px rgba(111, 57, 229, 0.16),
                  0 18px 46px -38px rgba(19, 47, 69, 0.45);
    }
    .cc-tab {
      flex: 1 1 0;
      min-width: 0;
      padding: 0 18px;
      border: none;
      position: relative;
      z-index: 1;
      background: transparent;
      color: var(--color-primary-400);
      transition: color 260ms var(--ease-out);
    }
    .cc-tab.is-active { color: var(--color-neutral-50); }
    .cc-tab-ind {
      position: absolute;
      top: 6px;
      left: 6px;
      height: calc(100% - 12px);
      width: calc((100% - 12px) / 3);
      background: var(--gradient-primary);
      border-radius: var(--r-full);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2),
                  0 0 0 1px rgba(111, 57, 229, 0.35),
                  0 16px 32px -16px rgba(111, 57, 229, 0.55);
      transition: transform 440ms var(--ease-out);
      will-change: transform;
      z-index: 0;
      pointer-events: none;
    }
    @media (prefers-reduced-motion: reduce) {
      .cc-card, .cc-tab-ind, .cc-tab { transition: none; }
    }

/* Device stack showcase — a light-canvas section with a parallax dot-grid +
       orb backdrop, a centered gradient headline, a fanned 3D deck of device
       cards that autoplays, and an infinite-loop module tab strip that
       auto-centers the active tab. Ported from the Claude Design "Device Stack
       Showcase Section.dc.html"; the React DCLogic (card geometry, tiling click
       bands, looping tabs, parallax, autoplay) is reimplemented in vanilla JS
       and scoped to .ds-*. The source's uploads/Xenio-*.png device photos are
       not in the repo, so each card substitutes a self-contained SVG device
       illustration carrying that module's icon (form, not final art). DC tokens
       the kit doesn't define (--font-sans, --text-strong, --weight-light,
       --surface-card, etc.) are inlined to the kit's scale; existing tokens
       (--canvas-bright, --gradient-text/-primary, --shadow-purple, --r-3xl,
       --ease-*, --color-*) stay as var(). */
    .ds-section {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      background: var(--canvas-bright);
      font-family: "Work Sans";
      color: #132f45;
    }
    .ds-bg {
      position: absolute; inset: -8%; z-index: 0; pointer-events: none;
      background-image: radial-gradient(rgba(151, 170, 185, 0.16) 1.4px, transparent 1.4px);
      background-size: 30px 30px; opacity: 0.6; will-change: transform;
    }
    .ds-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; will-change: transform; }
    .ds-orb-a {
      position: absolute; top: 6%; left: 50%; width: 760px; height: 760px; margin-left: -380px;
      border-radius: 50%; background: radial-gradient(circle, rgba(111, 57, 229, 0.12), transparent 64%); filter: blur(26px);
    }
    .ds-orb-b {
      position: absolute; bottom: -18%; right: 6%; width: 520px; height: 520px;
      border-radius: 50%; background: radial-gradient(circle, rgba(58, 51, 215, 0.08), transparent 62%); filter: blur(24px);
    }
    .ds-fg { position: relative; z-index: 2; }

    .ds-head { max-width: 1160px; margin: 0 auto; padding: 88px 40px 0; text-align: center; }
    .ds-head .lp-eyebrow { margin: 0 0 22px; }
    .ds-h1 {
      font-size: clamp(34px, 4.8vw, 58px); font-weight: 300; line-height: 1.1;
      letter-spacing: -1.5px; text-wrap: balance; margin: 0; color: #132f45;
    }
    .ds-h1 em {
      font-style: normal; font-weight: 600;
      background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .ds-lede {
      max-width: 600px; margin: 22px auto 0; font-size: 20px; font-weight: 300; line-height: 1.6;
      color: #546571; text-wrap: pretty;
    }

    /* 3D device deck */
    .ds-stagewrap { max-width: 1180px; margin: -25px auto 0; padding: 0 24px; perspective: 2000px; }
    .ds-stage { position: relative; width: 100%; aspect-ratio: 16 / 8.6; transform-style: preserve-3d; }
    .ds-card {
      position: absolute; top: 50%; left: 50%; width: 25%; transform-origin: center center;
      transition: transform 0.62s var(--ease-in-out), opacity 0.5s var(--ease-in-out), visibility 0.62s;
      will-change: transform, opacity;
    }
    .ds-float { position: absolute; inset: 0; }
    .ds-panel {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      border-radius: var(--r-3xl); overflow: hidden;
      transition: box-shadow 0.5s var(--ease-out), background 0.5s var(--ease-out);
    }
    .ds-panel svg { max-width: 100%; max-height: 100%; width: auto; height: auto; }
    .ds-zone { position: absolute; top: 0; bottom: 0; z-index: 90; }

    /* Tab strip — infinite loop, active tab auto-centers under a soft mask */
    .ds-tabs {
      position: relative; margin: 20px auto 0; width: 100%; max-width: 1000px; overflow: hidden; padding-bottom: 96px;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    }
    .ds-tabs:focus-visible { outline: 2px solid var(--color-accent-700); outline-offset: 4px; border-radius: 12px; }
    .ds-track {
      display: flex; flex-wrap: nowrap; align-items: center; gap: 14px; width: max-content;
      transition: transform 0.62s var(--ease-in-out); will-change: transform;
    }
    .ds-tab {
      position: relative; flex: 0 0 auto; display: flex; align-items: center; gap: 10px;
      padding: 12px 22px 16px; border: none; background: transparent; cursor: pointer;
      font-family: inherit; font-size: 15px; font-weight: 400; color: var(--color-primary-300);
      border-radius: 12px; transform: scale(1); transform-origin: center bottom; outline-offset: 3px; white-space: nowrap;
      transition: color 0.3s var(--ease-out), transform 0.5s var(--ease-in-out);
    }
    .ds-tab-ico { display: flex; width: 22px; height: 22px; color: currentColor; transition: color 0.3s var(--ease-out); }
    .ds-tab-ico svg { width: 100%; height: 100%; }
    .ds-tab-lbl { text-align: left; line-height: 1.15; white-space: nowrap; }
    .ds-tab-underline {
      position: absolute; left: 22px; right: 22px; bottom: 6px; height: 3px; border-radius: 99px;
      background: var(--gradient-primary); transform-origin: center; transform: scaleX(0); opacity: 0;
      transition: transform 0.6s var(--ease-in-out), opacity 0.5s var(--ease-in-out);
    }
    .ds-tab:hover { color: var(--color-primary-400); }
    .ds-tab.is-active { color: var(--color-primary-700); font-weight: 600; transform: scale(1.09); }
    .ds-tab.is-active .ds-tab-ico { color: var(--color-accent-700); }
    .ds-tab.is-active .ds-tab-underline { transform: scaleX(1); opacity: 1; }

    @keyframes ds-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

    @media (max-width: 720px) {
      .ds-head { padding-left: 24px; padding-right: 24px; padding-top: 64px; }
      .ds-h1 { white-space: normal; }
    }
    @media (prefers-reduced-motion: reduce) {
      .ds-card, .ds-track, .ds-tab { transition: none; }
      .ds-card.is-active .ds-float { animation: none; }
    }

/* Split feature layout — a vertical stack of alternating image/copy rows.
       Each row places a framed visual on one side and eyebrow/heading/copy/CTA
       on the other, flipping sides every block. Ported from the Claude Design
       "Split Feature Layout.dc.html" component; scoped to .sf-* and driven by
       the kit's .lp-showcase / .lp-scroll-copy shell. The source's DC tokens
       the kit doesn't define (--font-sans, --text-body) are inlined to the
       kit's own scale; existing tokens (--color-mist, --r-3xl, --hairline,
       --ease-out, --color-primary-400) stay as var(). The DC reveal.js runtime
       is replaced by a vanilla IntersectionObserver. */
    .sf-section {
      /* White up top (matches the section above) fading to #f6f9fc at the
         bottom so it blends into the statistics section with no hard edge. */
      background: linear-gradient(180deg, var(--color-neutral-50) 0%, var(--color-neutral-50) 84%, var(--color-primary-50) 100%);
      font-family: "Work Sans";
      color: #132f45;
    }
    .sf-stack {
      display: grid;
      gap: clamp(104px, 13vw, 184px);
    }
    /* .lp-showcase supplies the two-column split; direction flips which side
       the image lands on. Inner blocks reset to ltr so text stays left-to-right. */
    .sf-row { direction: ltr; }
    .sf-row-alt { direction: rtl; }

    .sf-reveal {
      opacity: 0;
      transform: translateY(30px) scale(0.99);
      transition: opacity 0.75s var(--ease-out), transform 0.9s var(--ease-out);
      will-change: opacity, transform;
    }
    .sf-reveal-copy { transition-delay: 0.08s; }
    .sf-reveal.is-in {
      opacity: 1;
      transform: none;
    }

    .sf-frame {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      border: var(--hairline);
      border-radius: var(--r-3xl);
      background: var(--color-mist);
      box-shadow: 0 30px 70px -46px rgba(19, 47, 69, 0.5),
                  0 46px 96px -60px rgba(111, 57, 229, 0.34);
    }
    .sf-frame svg {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sf-copy {
      display: grid;
      gap: 22px;
      max-width: 500px;
    }
    .sf-copy .lp-h2 { margin-bottom: 0; }
    .sf-copy .lp-copy {
      margin-bottom: 0;
      color: var(--color-primary-400);
    }
    .sf-cta { margin-top: 8px; }
    .sf-cta .lp-button svg { width: 16px; height: 16px; }

    @media (prefers-reduced-motion: reduce) {
      .sf-reveal { transition: none; opacity: 1; transform: none; }
    }

/* Industries showcase — a dense bento grid of photographic industry cards.
       Each card reveals its eyebrow/title/copy/CTA on hover (and shows them at
       rest on touch devices). Ported from the Claude Design "Industries
       Showcase.dc.html" component; scoped to .fx-* and driven by tokens where
       the kit defines them. The source's DC typography/spacing tokens
       (--text-eyebrow, --space-2, etc.) are inlined to the kit's own scale. */
    .fx-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: clamp(190px, 15vw, 224px);
      grid-auto-flow: dense;
      gap: 16px;
    }
    .fx-card.size-lg   { grid-column: span 2; grid-row: span 2; }
    .fx-card.size-wide { grid-column: span 2; grid-row: span 1; }
    .fx-card.size-tall { grid-column: span 1; grid-row: span 2; }
    .fx-card.size-sm   { grid-column: span 1; grid-row: span 1; }

    .fx-card {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: var(--r-3xl);
      text-decoration: none;
      isolation: isolate;
      background: var(--color-mist);
      box-shadow: 0 0 0 1px rgba(151, 170, 185, 0.2), var(--shadow-md);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .fx-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 0 1px rgba(151, 170, 185, 0.2), var(--shadow-lg);
    }
    .fx-card:focus-visible {
      outline: none;
      transform: translateY(-4px);
      box-shadow: 0 0 0 4px rgba(111, 57, 229, 0.28), var(--shadow-lg);
    }

    .fx-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.001);
      transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
    }
    .fx-card:hover .fx-img,
    .fx-card:focus-within .fx-img {
      transform: scale(1.05);
      filter: saturate(1.06) brightness(0.82);
    }

    .fx-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(120% 90% at 78% 8%, rgba(111, 57, 229, 0.26), transparent 62%),
        linear-gradient(180deg, rgba(9, 22, 32, 0.55) 0%, rgba(9, 22, 32, 0.72) 45%, rgba(9, 22, 32, 0.9) 78%, rgba(9, 22, 32, 0.97) 100%);
      opacity: 0;
      transition: opacity 0.45s var(--ease-out);
    }
    .fx-card:hover .fx-scrim,
    .fx-card:focus-within .fx-scrim { opacity: 1; }

    .fx-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 10px;
      padding: 28px;
    }
    .fx-card.size-sm .fx-content { padding: 22px; gap: 7px; }

    .fx-content > * {
      margin: 0;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-out);
    }
    .fx-card:hover .fx-content > *,
    .fx-card:focus-within .fx-content > * {
      opacity: 1;
      transform: none;
    }
    .fx-content > *:nth-child(1) { transition-delay: 0.02s; }
    .fx-content > *:nth-child(2) { transition-delay: 0.06s; }
    .fx-content > *:nth-child(3) { transition-delay: 0.1s; }
    .fx-content > *:nth-child(4) { transition-delay: 0.14s; }

    .fx-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--color-accent-400);
    }
    .fx-title {
      font-size: 22px;
      font-weight: 600;
      line-height: 1.25;
      color: var(--color-neutral-50);
      text-wrap: balance;
    }
    .fx-card.size-lg .fx-title { font-size: 30px; }
    .fx-desc {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.82);
      max-width: 46ch;
      text-wrap: pretty;
    }
    .fx-card.size-sm .fx-desc { display: none; }
    .fx-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 4px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--color-neutral-50);
    }
    .fx-cta svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s var(--ease-out);
    }
    .fx-card:hover .fx-cta svg { transform: translateX(4px); }

    /* Tablet — 2 columns */
    @media (max-width: 1080px) {
      .fx-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(170px, 26vw, 220px); }
      .fx-card.size-lg   { grid-column: span 2; grid-row: span 2; }
      .fx-card.size-wide { grid-column: span 2; grid-row: span 1; }
      .fx-card.size-tall { grid-column: span 1; grid-row: span 2; }
      .fx-card.size-sm   { grid-column: span 1; grid-row: span 1; }
      .fx-content { padding: 24px; }
      .fx-card.size-lg .fx-title { font-size: 22px; }
    }

    /* Phone — single column, every card equal */
    @media (max-width: 600px) {
      .fx-grid { grid-template-columns: 1fr; grid-auto-rows: clamp(210px, 64vw, 300px); gap: 12px; }
      .fx-card.size-lg,
      .fx-card.size-wide,
      .fx-card.size-tall,
      .fx-card.size-sm { grid-column: 1 / -1 !important; grid-row: span 1 !important; }
      .fx-content { padding: 22px; }
    }

    /* Touch / no-hover devices (any width): there is no hover, so keep the
       overlay legible at rest instead of hiding the text behind the image. */
    @media (hover: none) {
      .fx-scrim { opacity: 1; }
      .fx-content > * { opacity: 1; transform: none; }
      .fx-img { filter: brightness(0.86); }
      .fx-card:active { transform: translateY(-2px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .fx-card,
      .fx-img,
      .fx-scrim,
      .fx-content > *,
      .fx-cta svg { transition-duration: 0.001ms !important; }
      .fx-card:hover .fx-img,
      .fx-card:focus-within .fx-img { transform: none; }
      .fx-card:hover,
      .fx-card:focus-visible { transform: none; }
    }

/* Statistics band — gradient card with scroll-triggered count-up.
       New pattern (not yet in the kit); scoped to .lp-statband, tokens only. */
    .lp-statband {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 72px clamp(28px, 6vw, 80px);
      box-sizing: border-box;
      text-align: center;
      background: var(--gradient-primary);
      border-radius: var(--r-3xl);
      box-shadow: var(--shadow-purple);
      color: #fff;
    }
    .lp-statband-title {
      margin: 0;
      font-weight: 600;
      font-size: clamp(32px, 4.4vw, 52px);
      line-height: 1.2;
      text-wrap: balance;
    }
    .lp-statband-copy {
      margin: 20px auto 0;
      max-width: 780px;
      font-weight: 400;
      font-size: clamp(16px, 1.4vw, 20px);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.88);
      text-wrap: pretty;
    }
    .lp-statband-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: start;
      margin-top: 56px;
    }
    .lp-statband-cell {
      text-align: left;
      padding-left: clamp(20px, 3vw, 40px);
      border-left: 1px solid rgba(255, 255, 255, 0.28);
    }
    .lp-statband-value {
      font-weight: 600;
      font-size: clamp(44px, 5.6vw, 68px);
      line-height: 1;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
    }
    .lp-statband-label {
      margin-top: 16px;
      font-weight: 400;
      font-size: clamp(15px, 1.3vw, 18px);
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.9);
    }
    .lp-statband-foot {
      text-align: center;
      margin: 48px auto 0;
      max-width: 520px;
    }
    @media (max-width: 860px) {
      .lp-statband-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 44px;
        column-gap: 24px;
      }
      .lp-statband-cell {
        border-left: none;
        padding-left: 0;
      }
    }
    @media (max-width: 520px) {
      .lp-statband { padding: 48px 24px; }
      .lp-statband-grid {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 40px;
      }
      .lp-statband-cell { text-align: center; }
    }

.lp-sr-only {
      position: absolute;
      width: 1px; height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

/* Guarantee cards — 3-up grid of dark gradient cards with an icon, title
       and copy. Ported from the Claude Design "Guarantee Cards.dc.html"
       component; scoped to .gc-* and driven by tokens. The source's typography
       tokens (--text-h3, --text-body-lg, etc.) resolve to the kit's own scale. */
    .gc-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      max-width: 1160px;
      margin: 0 auto;
    }
    .gc-card {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
      gap: 22px;
      min-height: 300px;
      padding: 44px 38px;
      border-radius: var(--r-3xl);
      background: var(--gradient-dark);
      box-shadow: 0 18px 50px -28px rgba(19, 47, 69, 0.55), inset 0 0 0 1px rgba(151, 170, 185, 0.1);
      transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), filter 180ms var(--ease-out);
    }
    .gc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 60px -28px rgba(19, 47, 69, 0.7), inset 0 0 0 1px rgba(151, 170, 185, 0.18);
      filter: brightness(1.06);
    }
    .gc-card:focus-within {
      outline: none;
      box-shadow: 0 0 0 4px rgba(111, 57, 229, 0.18), 0 18px 50px -28px rgba(19, 47, 69, 0.55);
    }
    .gc-card-head {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 18px;
    }
    .gc-icon {
      flex: none;
      display: grid;
      place-items: center;
      color: var(--color-neutral-50);
    }
    .gc-icon svg { height: 52px; width: auto; }
    .gc-card-title {
      margin: 0;
      max-width: 9em;
      color: var(--color-neutral-50);
      font-size: 22px;
      font-weight: 600;
      line-height: 1.25;
      text-wrap: balance;
    }
    .gc-card-copy {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 17px;
      font-weight: 400;
      line-height: 1.6;
      text-wrap: pretty;
    }
    @media (max-width: 900px) {
      .gc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    }
    @media (max-width: 620px) {
      .gc-grid { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      .gc-card { transition: none; }
      .gc-card:hover { transform: none; }
    }

/* spacing normalization — give the device-stack section the standard
   symmetric section rhythm. Source has min-height:100vh and padding-top:0
   (its top space came from .ds-head's 88px), which made the gap above it
   half of every other seam. Cap height + set top/bottom to --space-section
   and zero .ds-head's top so every inter-section gap is a uniform 192px. */
.ds-section { min-height: 0; padding-top: var(--space-section); padding-bottom: var(--space-section); }
.ds-head { padding-top: 0 !important; }
@media (max-width: 900px) {
  .ds-section { padding-top: var(--space-section-sm); padding-bottom: var(--space-section-sm); }
}

/* Hardware showcase — interactive tab list + crossfading media stage.
       Scoped to .hw-* and driven by tokens. Each tab loops a real product
       .mp4; the "Play Demo" button opens the device's Vimeo clip in a modal. */
    .hw-grid {
      display: grid;
      gap: 24px;
      align-items: stretch;
      grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    }
    .hw-tablist {
      display: flex;
      flex-direction: column;
      gap: 6px;
      justify-content: center;
    }
    .hw-tab {
      position: relative;
      text-align: left;
      width: 100%;
      cursor: pointer;
      padding: 18px 22px 18px 24px;
      border-radius: var(--r-xl);
      font: inherit;
      background: transparent;
      border: 1px solid transparent;
      box-shadow: none;
      transition-property: transform, box-shadow, background-color, border-color;
      transition-duration: 180ms;
      transition-timing-function: var(--ease-out);
    }
    .hw-tab:hover:not([aria-selected="true"]) {
      transform: translateY(-2px);
      background: var(--color-primary-50);
      box-shadow: var(--shadow-soft);
    }
    .hw-tab[aria-selected="true"] {
      background: var(--color-neutral-50);
      border-color: rgba(151, 170, 185, 0.25);
      box-shadow: var(--shadow-lg);
    }
    .hw-tab:focus-visible {
      outline: none;
      box-shadow: 0 0 0 4px rgba(111, 57, 229, 0.18);
    }
    .hw-tab-indicator {
      position: absolute;
      left: 0;
      top: 18px;
      bottom: 18px;
      width: 3px;
      border-radius: var(--r-full);
      background: var(--color-accent-700);
      opacity: 0;
      transition: opacity 180ms var(--ease-out);
    }
    .hw-tab[aria-selected="true"] .hw-tab-indicator { opacity: 1; }
    .hw-tab-title {
      display: block;
      color: var(--color-primary-700);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
    }
    .hw-tab-subtitle {
      display: block;
      margin-top: 4px;
      color: var(--color-primary-400);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.4;
      white-space: nowrap;
    }

    .hw-media {
      position: relative;
      order: 1;
      overflow: hidden;
      width: 100%;
      border-radius: var(--r-xl);
      aspect-ratio: 16 / 9;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(151, 170, 185, 0.2);
      background: var(--color-mist);
    }
    .hw-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0;
      transition: opacity 600ms var(--ease-out);
      z-index: 0;
    }
    .hw-video[data-active="true"] { opacity: 1; z-index: 1; }
    .hw-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(9, 22, 32, 0.28));
      pointer-events: none;
      z-index: 2;
    }
    .hw-media-bar {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 24px;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 20px;
    }
    .hw-media-learn {
      background: transparent;
      border-color: transparent;
      box-shadow: none;
      color: var(--color-neutral-50);
      font-weight: 600;
      padding: 0 4px;
    }
    .hw-media-learn:hover { transform: translateY(-2px); }

    .hw-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 16px;
      margin-bottom: 60px;
    }
    .hw-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 18px 28px;
      background: var(--color-neutral-50);
      border: 1px solid rgba(151, 170, 185, 0.28);
      border-radius: 14px;
      box-shadow: 0 1px 2px rgba(19, 47, 69, 0.04);
    }
    .hw-badge img {
      width: 34px;
      height: 28px;
      flex: 0 0 auto;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .hw-badge span {
      color: var(--color-primary-700);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.22;
      max-width: 96px;
    }

    .hw-lead {
      margin-bottom: 0;
      color: var(--color-primary-400);
      font-size: 20px;
      font-weight: 300;
      line-height: 1.6;
    }

    /* Modal */
    .hw-modal {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(9, 22, 32, 0.78);
      backdrop-filter: blur(8px);
      animation: hwOverlayIn 200ms var(--ease-out);
    }
    .hw-modal[hidden] { display: none; }
    .hw-modal-frame {
      position: relative;
      width: min(1040px, 100%);
      aspect-ratio: 16 / 9;
      border-radius: var(--r-xl);
      overflow: hidden;
      background: #000;
      box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.8);
      animation: hwModalIn 260ms var(--ease-out);
    }
    .hw-modal-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .hw-modal-close {
      position: absolute;
      top: -48px;
      right: 0;
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border: none;
      border-radius: var(--r-full);
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      cursor: pointer;
      z-index: 2;
    }
    .hw-modal-close svg { width: 20px; height: 20px; }

    @keyframes hwOverlayIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes hwModalIn {
      from { opacity: 0; transform: translateY(16px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @media (max-width: 900px) {
      .hw-grid { grid-template-columns: 1fr; }
      .hw-tablist {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
      }
      .hw-tab { flex: 0 0 auto; min-width: 220px; }
      .hw-tab-subtitle { white-space: normal; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hw-tab, .hw-video { transition: none; }
    }
    .hw-mhead { display: none; }
    @media (max-width: 760px) {
      .hw-badges { display: none !important; }
      .hw-tablist { display: none !important; }
      .hw-grid { grid-template-columns: 1fr !important; }
      .hw-mhead { display: block; text-align: center; margin-bottom: 22px; }
      .hw-mhead-title { display: block; color: var(--color-primary-700); font-size: 22px; font-weight: 600; line-height: 1.25; }
      .hw-mhead-sub { display: block; margin-top: 4px; color: var(--color-primary-400); font-size: 14px; }
    }

/* Mobile feature list — centered head over a two-column body: crossfading
       image placeholders on the left, a hoverable/autoplaying feature list on
       the right. Scoped to .ms-*; driven by kit tokens. */
    .ms-section {
      /* Edges match the neighbors (top = #f6f9fc above, bottom = #fff below) so
         the section blends seamlessly; glows stay in the upper-middle so the
         bottom edge fades to clean white with no visible seam. */
      background:
        radial-gradient(72% 44% at 50% 46%, rgba(111, 57, 229, 0.09), transparent 70%),
        radial-gradient(42% 40% at 85% 52%, rgba(161, 57, 248, 0.07), transparent 66%),
        radial-gradient(42% 42% at 12% 50%, rgba(56, 51, 215, 0.06), transparent 68%),
        linear-gradient(180deg, #f6f9fc 0%, #edf0f7 40%, #eff1f8 62%, #ffffff 100%);
      padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 40px);
      font-family: "Work Sans";
    }
    .ms-inner { max-width: 1200px; margin: 0 auto; }
    .ms-head { margin-bottom: 60px; }

    .ms-grid {
      display: flex; flex-wrap: wrap;
      gap: clamp(32px, 5vw, 64px); align-items: center;
    }

    /* LEFT — crossfading product images (taller than the list, so the list
       centers vertically against it) */
    .ms-media { position: relative; flex: 1 1 340px; height: clamp(560px, 48vw, 700px); }
    .ms-frame {
      position: absolute; inset: 0; border-radius: 18px; background: transparent;
      display: grid; place-items: center; color: var(--color-primary-300);
      opacity: 0; z-index: 1; transition: opacity 0.55s var(--ease-out);
    }
    .ms-frame img { width: 100%; height: 100%; object-fit: contain; }
    .ms-frame.is-active { opacity: 1; z-index: 2; }

    /* RIGHT — hoverable feature list, stretched to match the image height */
    .ms-list { position: relative; flex: 1 1 340px; display: flex; flex-direction: column; justify-content: center; gap: 20px; transform: translateY(30px); }
    .ms-line {
      position: absolute; left: 25px; top: 48px; bottom: 68px; width: 2px; z-index: 0;
      background: linear-gradient(180deg, var(--color-mist), rgba(233, 239, 244, 0.4));
    }
    .ms-row {
      display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: start;
      padding: 16px 18px 16px 0; border-radius: 16px; background: transparent; cursor: pointer;
      position: relative; z-index: 1; transition: background 0.3s var(--ease-out);
    }
    .ms-row.is-active { background: transparent; }
    .ms-tile {
      width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
      background: #ffffff; color: var(--color-primary-700);
      box-shadow: inset 0 0 0 1px rgba(151, 170, 185, 0.25), 0 6px 18px -10px rgba(19, 47, 69, 0.25);
      transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), color 0.3s var(--ease-out);
    }
    .ms-row.is-active .ms-tile {
      background: var(--gradient-primary); color: #ffffff; box-shadow: var(--shadow-purple);
    }
    .ms-row h3 { margin: 0 0 10px; color: var(--color-primary-700); font-size: 22px; font-weight: 600; line-height: 1.25; }
    .ms-row p { margin: 0; color: var(--color-primary-400); font-size: 15px; line-height: 1.55; max-width: 380px; text-wrap: pretty; }

    @media (prefers-reduced-motion: reduce) {
      .ms-frame, .ms-row, .ms-tile { transition: none; }
    }
    @media (max-width: 760px) {
      .ms-media { height: auto; aspect-ratio: 565 / 783; }
      .ms-head { margin-bottom: 26px; }
      .ms-grid { gap: 14px; }
      .ms-list { min-height: 0; transform: none !important; }
      .ms-line { display: none; }
      .ms-row:not(.is-active) { display: none; }
      .ms-row.is-active { background: transparent; }
    }

/* Tilt feature cards — a centered head over a 3-up grid of cards that tilt
       in 3D toward the cursor, lift with a purple shadow, and track a soft
       radial glare. Ported from the design-system "33-tilt-feature-cards"
       section; cards are static HTML here (LP-serialization friendly) and the
       tilt math is attached in vanilla JS scoped to .tc-*. Background matches
       the split section it replaces: white up top (blends into the section
       above), fading to --color-primary-50 at the bottom (into statistics). */
    .tc-section {
      background: linear-gradient(180deg, var(--color-neutral-50) 0%, var(--color-neutral-50) 84%, var(--color-primary-50) 100%);
      padding: var(--space-section) 0;
    }
    .tc-inner { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
    .tc-head { max-width: 720px; margin: 0 auto var(--space-section-head); }
    .tc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(20px, 3vw, 28px);
    }
    .tc-persp { perspective: 1400px; }
    .tc-card {
      position: relative;
      transform-style: preserve-3d;
      transition: transform 400ms var(--ease-out), box-shadow 300ms var(--ease-out);
      background: #fff; /* --surface-card */
      border-radius: var(--r-3xl);
      box-shadow: 0 0 0 1px rgba(151, 170, 185, .2), var(--shadow-md);
      overflow: hidden;
      will-change: transform;
    }
    .tc-media-wrap { position: relative; transform: translateZ(50px); transform-style: preserve-3d; }
    .tc-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
    .tc-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .tc-body { padding: 28px 28px 32px; transform: translateZ(38px); transform-style: preserve-3d; }
    .tc-title { font-size: 22px; font-weight: 600; line-height: 1.25; color: var(--color-primary-700); margin: 0 0 10px; }
    .tc-copy { font-size: 15px; line-height: 1.6; color: var(--color-primary-400); margin: 0; }
    .tc-glare {
      position: absolute; inset: 0;
      border-radius: var(--r-3xl);
      pointer-events: none;
      opacity: var(--glare-opacity, 0);
      transition: opacity 300ms var(--ease-out);
      background: radial-gradient(300px circle at var(--gx, 50%) var(--gy, 50%), rgba(111, 57, 229, .14), transparent 60%);
    }
    @media (max-width: 900px) {
      .tc-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 760px) {
      .tc-section { padding: var(--space-section-sm) 0; }
      .tc-head { margin-bottom: var(--space-section-head-sm); }
    }
    @media (max-width: 640px) {
      .tc-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
      .tc-body { padding: 24px 22px 26px; }
      .tc-title { font-size: 20px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .tc-card { transition: none; }
    }

/* Keep this long heading on ONE line: widen the head, drop the 42px cap and
       scale the font to the available width so it never wraps on desktop.
       Below 820px it falls back to normal wrapping. */
    #system-head { max-width: none; }
    #system-head .lp-copy { max-width: 640px; margin-left: auto; margin-right: auto; }
    #system-title {
      max-width: none;
      white-space: nowrap;
      font-size: clamp(20px, calc((100vw - 64px) * 0.025), 33px);
    }
    @media (max-width: 820px) {
      #system-title { white-space: normal; font-size: clamp(26px, 6vw, 34px); }
    }

/* In-the-news marquee — ported from "In The News.dc.html".
       Infinite horizontal ribbon of press cards; pauses on hover; edge fades. */
    .itn-section {
      /* Blend the top seam into the FAQ section above (which ends on
         --color-primary-50): hold that exact color for the first slice so the
         boundary is invisible, then ease into the polished canvas. Soft purple
         blooms — center + both sides — give the band a vibrant, seamless mix. */
      background:
        radial-gradient(58% 60% at 0% 52%, rgba(111, 57, 229, 0.06), rgba(111, 57, 229, 0) 72%),
        radial-gradient(58% 60% at 100% 52%, rgba(111, 57, 229, 0.06), rgba(111, 57, 229, 0) 72%),
        radial-gradient(120% 78% at 50% 48%, rgba(111, 57, 229, 0.05), rgba(111, 57, 229, 0) 62%),
        linear-gradient(180deg, var(--color-primary-50) 0%, var(--color-primary-50) 16%, #eef1f5 62%, #f8f9fb 100%);
      padding: var(--space-section) 0;
      overflow: hidden;
    }
    .itn-head {
      max-width: 760px;
      margin: 0 auto var(--space-section-head);
    }
    .itn-viewport {
      position: relative;
      max-width: 1240px;
      margin: 0 auto;
      overflow: hidden;
      /* Fade the marquee CONTENT to transparent at both edges so the section
         background shows through continuously — no colored overlay to mismatch. */
      -webkit-mask-image: linear-gradient(to right, transparent 0, #000 13%, #000 87%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, #000 13%, #000 87%, transparent 100%);
    }
    .itn-track {
      display: flex;
      gap: 32px;
      width: max-content;
      padding: 28px 0;
      animation: itn-marquee 45s linear infinite;
      will-change: transform;
    }
    .itn-viewport:hover .itn-track {
      animation-play-state: paused;
    }
    .itn-group {
      display: flex;
      gap: 32px;
    }
    .itn-card {
      flex: 0 0 300px;
      box-sizing: border-box;
      background: #fff; /* --surface-card */
      border-radius: var(--r-3xl);
      box-shadow: 0 0 0 1px rgba(151, 170, 185, .2), var(--shadow-md);
      padding: 44px 34px;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 26px;
      text-align: center;
      transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
    }
    .itn-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 0 1px rgba(151, 170, 185, .25), var(--shadow-lg);
    }
    .itn-logo {
      width: 168px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .itn-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 8px;
    }
    .itn-name {
      margin: 0;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #132f45; /* --text-strong */
      line-height: 1.15;
    }
    .itn-copy {
      margin: 0;
      font-size: 15px;
      line-height: 1.65;
      color: #546571; /* --text-body */
      text-wrap: pretty;
    }
    @keyframes itn-marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .itn-track { animation: none !important; }
    }
    @media (max-width: 720px) {
      .itn-section { padding: var(--space-section-sm) 0; }
      .itn-head { margin-bottom: var(--space-section-head-sm); }
    }
    @media (max-width: 560px) {
      .itn-fade { width: 72px; }
    }
/* ============================================================================
   Change #1 (Xenio quote form): phone/ext row, message field, tightened spacing.
   Floating select labels (.lp-field > label) already defined above.
   Appended last so these win over the base .hq-form rules.
   ============================================================================ */
/* NOTE: do NOT override the base .hq-form here — the base (height:100%; align-content:space-between;
   gap:18px; padding:46px 32px 32px) is the intended spacious layout, matching the local file. */
.hq-form .lp-hero-form-head { gap: 4px; margin-bottom: 0; }
.hq-form .lp-hero-form-grid { gap: 18px; }                 /* space between fields */
.hq-form .lp-field input, .hq-form .lp-field select { min-height: 46px; }
/* Phone number + Ext. row (phone wide, ext narrow) with +1 country-code prefix */
.hq-form .hq-phonerow { display: grid; grid-template-columns: 1fr 96px; gap: 16px; align-items: end; }
.hq-form .hq-phone { display: flex; gap: 6px; }
.hq-form .hq-phone .hq-cc { width: 74px; flex: 0 0 auto; padding: 0 8px; }
.hq-form .hq-phone input { flex: 1; min-width: 0; }
.hq-form textarea[name="message"] { min-height: 84px; padding-top: 12px; padding-bottom: 12px; resize: vertical; }
/* tight bottom cluster: note / CTA / steps / privacy */
.hq-form .hq-note { margin: -1px 0; }
.hq-form .lp-button[type="submit"] { margin-top: 0; }
.hq-form .hq-steps { margin-top: 0; padding: 13px 16px; }
.hq-form .hq-privacy { margin-top: -1px; }
