/* ============================================================
   Axis Landing — v10 (warm coral / sage / cream palette)
   ============================================================ */

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

/* Skip to main content (WCAG 2.1 AA — 2.4.1). Hidden off-screen until
   focused, so it only appears for keyboard / screen-reader users. */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0f172a;
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }
.lp-content[tabindex="-1"]:focus { outline: none; }

:root {
  --ink:           #4F091D;
  --ink-soft:      #6B1D32;
  --body:          #5C3D4A;
  --muted:         #8B6B7A;
  --muted-2:       #A89098;
  --soft:          #C4B0B8;
  --bg:            #FFFDF9;
  --bg-alt:        #FAF6ED;
  --bg-warm:       #F5EEDC;
  --line:          #E8DFD0;
  --line-soft:     #F0EAE0;
  --line-faint:    #F5F0E8;
  --accent:        #DD4A48;
  --accent-hover:  #C43A38;
  --accent-soft:   #FDE8E8;
  --green:         #047857;
  --green-bg:      #FDE8E8;
  --amber:         #b45309;
  --amber-bg:      #fef3c7;
  --red:           #dc2626;
  --red-bg:        #fef2f2;
  --info:          #5C3D4A;
  --info-bg:       #F0EAE0;
  --neutral:       #8B6B7A;
  --neutral-bg:    #F0EAE0;
  --sage:          #97BFB4;
  --sage-soft:     #D4E8E2;
  --sage-dark:     #7BA89D;
  --app-bg:        #FAF6ED;
  --app-surface:   #FFFDF9;
  --app-border:    #E8DFD0;
  --app-text:      #4F091D;
  --app-text-2:    #8B6B7A;
  --app-text-3:    #A89098;
  --card-radius:   12px;
  --radius-lg:     16px;
  --shadow-sm:     0 1px 2px rgba(79,9,29,0.04);
  --shadow-md:     0 4px 16px rgba(79,9,29,0.06), 0 1px 3px rgba(79,9,29,0.04);
  --shadow-lg:     0 12px 32px -8px rgba(79,9,29,0.10), 0 4px 12px -4px rgba(79,9,29,0.05);
  --shadow-xl:     0 24px 60px -12px rgba(79,9,29,0.14), 0 8px 16px -8px rgba(79,9,29,0.06);
  --shadow-soft:   0 4px 24px -4px rgba(79,9,29,0.06);
  --shadow-hover:  0 8px 32px -8px rgba(79,9,29,0.10);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02","cv03","cv04","cv11";
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { margin: 0; color: var(--body); }

img { max-width: 100%; display: block; }

.lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transition: opacity 700ms ease;
}
.fade-in.is-visible { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.revealed,
  .fade-in, .fade-in.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,249,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.lp-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,253,249,0.97);
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.lp-brand { display: flex; align-items: center; }

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
}
.lp-nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 150ms ease;
}
.lp-nav-links a:hover { color: var(--ink); }

.lp-nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 160ms ease, transform 80ms ease, box-shadow 160ms ease;
  box-shadow: 0 1px 2px rgba(79,9,29,0.12);
}
.lp-nav-cta:hover {
  background: var(--ink-soft);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(79,9,29,0.18);
}
.lp-nav-cta:active { transform: scale(0.97); }

.lp-nav-demo {
  color: var(--accent) !important;
  font-weight: 500;
  transition: color 150ms ease;
}
.lp-nav-demo:hover { color: var(--accent-hover) !important; }

/* Nav dropdown */
.lp-nav-dropdown { position: relative; }
.lp-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-weight: 500;
  transition: color 150ms ease;
  cursor: pointer;
}
.lp-nav-dropdown-trigger:hover { color: var(--ink); }
.lp-nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 200ms ease;
}
.lp-nav-dropdown:hover .lp-nav-dropdown-trigger svg { transform: rotate(180deg); }
.lp-nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 110;
}
.lp-nav-dropdown:hover .lp-nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
}
.lp-nav-dropdown-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(79,9,29,0.10), 0 0 0 1px rgba(79,9,29,0.04);
  padding: 6px;
  min-width: 240px;
}
.lp-nav-dropdown-card a {
  display: block;
  padding: 12px 14px;
  border-radius: 7px;
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  transition: background 150ms ease;
}
.lp-nav-dropdown-card a:hover { background: var(--bg-alt); }
.lp-nav-dd-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

/* Burger + mobile menu */
.lp-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.lp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.lp-nav.menu-open .lp-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav.menu-open .lp-burger span:nth-child(2) { opacity: 0; }
.lp-nav.menu-open .lp-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.lp-mobile-menu a {
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.lp-mobile-menu a:last-child { border-bottom: 0; }
.lp-mobile-cta {
  background: var(--ink);
  color: #fff !important;
  text-align: center;
  padding: 12px 16px !important;
  border-radius: 8px;
  margin-top: 8px;
  border: 0 !important;
}

@media (max-width: 820px) {
  .lp-nav-links { display: none; }
  .lp-burger { display: flex; }
  .lp-nav.menu-open .lp-mobile-menu { display: flex; }
  .lp-nav-inner { height: 64px; }
}

/* ════════════════════════════════════════════════════════════
   SHARED TYPOGRAPHY
   ════════════════════════════════════════════════════════════ */
.lp-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.lp-section-h {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}

.lp-section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SHARED BUTTONS
   ════════════════════════════════════════════════════════════ */
.lp-btn-primary {
  background: var(--accent);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 80ms ease, box-shadow 160ms ease;
  box-shadow: 0 1px 2px rgba(221,74,72,0.2), 0 0 0 1px rgba(221,74,72,0.06);
}
.lp-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(221,74,72,0.35), 0 0 0 1px rgba(221,74,72,0.06);
}
.lp-btn-primary:active { transform: scale(0.97); }

.lp-btn-ghost {
  background: var(--bg);
  color: var(--ink) !important;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, border-color 160ms ease, transform 80ms ease;
}
.lp-btn-ghost:hover { background: var(--bg-alt); border-color: var(--soft); }
.lp-btn-ghost:active { transform: scale(0.97); }

.lp-btn-block {
  display: block;
  text-align: center;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ════════════════════════════════════════════════════════════
   §1 — HERO (sage → cream gradient)
   ════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #D4E8E2 0%, #F5EEDC 100%);
  overflow: hidden;
}

.lp-hero-h {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 auto 24px;
  max-width: 900px;
  color: var(--ink);
}
.lp-hero-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.lp-hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.lp-btn-hero {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.lp-hero-note {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0;
}

@media (max-width: 720px) {
  .lp-hero { padding: 80px 0 64px; }
  .lp-hero-h {
    font-size: clamp(2rem, 8vw, 2.5rem);
    letter-spacing: -0.02em;
  }
  .lp-btn-hero { padding: 14px 28px; font-size: 15px; }
}

/* ════════════════════════════════════════════════════════════
   INTERACTIVE DEMO — real app UI with macOS window chrome
   ════════════════════════════════════════════════════════════ */
.lp-demo-wrap {
  max-width: 1120px;
  margin: 64px auto 0;
  padding: 0 24px;
}

.lp-app {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,0.5);
  display: grid;
  grid-template-rows: 38px 1fr;
  min-height: 640px;
}

.lp-app-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  background: linear-gradient(180deg, #F5F0E8 0%, #EDE6DA 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.lp-app-dots { display: flex; align-items: center; gap: 8px; }
.lp-app-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.12);
}
.lp-app-dot.red    { background: #ff5f57; }
.lp-app-dot.yellow { background: #febc2e; }
.lp-app-dot.green  { background: #28c840; }
.lp-app-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  margin: 0 80px 0 0;
  max-width: 360px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.lp-app-url-lock { margin-right: 6px; font-size: 10px; color: var(--muted-2); }
.lp-app-tab-actions { display: flex; gap: 6px; flex-shrink: 0; }
.lp-app-tab-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(79,9,29,0.08);
}

.lp-app-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 0;
}

/* ── App sidebar ── */
.lp-sidebar {
  background: var(--app-surface);
  border-right: 1px solid var(--app-border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.lp-sidebar-brand {
  font-size: 18px;
  font-weight: 600;
  color: var(--app-text);
  padding: 4px 20px 16px;
  letter-spacing: -0.01em;
}
.lp-modules {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.lp-mod {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  margin: 1px 0;
  color: var(--app-text-2);
  background: transparent;
  border-left: 2px solid transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 120ms ease;
}
.lp-mod:hover { color: var(--app-text); }
.lp-mod.active {
  color: var(--app-text);
  font-weight: 600;
  border-left-color: var(--ink-soft);
}
.lp-mod-glyph {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  opacity: 0.9;
  flex-shrink: 0;
}
.lp-mod-glyph svg { width: 16px; height: 16px; display: block; }
.lp-mod.active .lp-mod-glyph { opacity: 1; }

.lp-sidebar-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--app-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  font-size: 13px;
  color: var(--app-text-2);
  cursor: pointer;
  border-radius: 4px;
}
.lp-side-link:hover { color: var(--app-text); }
.lp-side-link kbd {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--app-bg);
  border: 1px solid var(--app-border);
  color: var(--app-text-2);
}

/* ── App content area ── */
.lp-content {
  background: var(--app-bg);
  padding: 24px 32px 32px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.lp-view {
  display: none;
  animation: lp-view-in 320ms cubic-bezier(0.16,1,0.3,1);
}
.lp-view.active { display: block; }

@keyframes lp-view-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Greeting row ── */
.lp-greeting-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lp-greeting-h {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--app-text);
}
.lp-greeting-sep { color: var(--app-text-3); font-size: 13px; }
.lp-greeting-date { color: var(--app-text-2); font-size: 13px; }

/* ── Page header ── */
.lp-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.lp-page-h {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--app-text);
}
.lp-page-sub {
  font-size: 13px;
  color: var(--app-text-2);
  line-height: 1.5;
}
.lp-page-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.lp-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.lp-btn-new:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.lp-btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--app-surface);
  color: var(--app-text);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.lp-btn-ghost-sm:hover { background: var(--app-bg); border-color: var(--app-text-2); }

/* ── Breadcrumb ── */
.lp-crumb {
  font-size: 12px;
  color: var(--app-text-2);
  margin-bottom: 8px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.lp-crumb a { color: var(--app-text-2); text-decoration: none; }
.lp-crumb a:hover { color: var(--app-text); }
.lp-crumb b { color: var(--app-text); font-weight: 500; }
.lp-crumb-sep { color: var(--app-text-3); }
.lp-crumb span { color: var(--app-text-3); padding: 0 2px; }

/* ── Tiles row ── */
.lp-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.lp-tile {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  padding: 16px;
  transition: border-color 120ms ease;
}
.lp-tile:hover { border-color: var(--app-text-2); }
.lp-tile-value {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--app-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.lp-tile-label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--app-text-2);
}
.lp-tile-alert .lp-tile-value { color: var(--red); }
.lp-tile-warn  .lp-tile-value { color: var(--amber); }

/* ── Section title ── */
.lp-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--app-text);
  margin: 0;
}

/* ── Home agenda buckets ── */
.lp-home-section { padding: 16px 20px; }
.lp-card-link {
  font-size: 12px;
  color: var(--app-text-2);
  text-decoration: none;
  cursor: pointer;
}
.lp-card-link:hover { color: var(--app-text); text-decoration: underline; }

.lp-bucket { margin-top: 4px; }
.lp-bucket + .lp-bucket { margin-top: 14px; }
.lp-bucket-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0 4px;
  border-bottom: 1px solid var(--app-border);
  margin-bottom: 2px;
}
.lp-bucket-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--app-text);
}
.lp-bucket-label.lp-bucket-overdue { color: var(--red); }
.lp-bucket-count { font-size: 12px; color: var(--app-text-2); font-weight: 500; }

/* ── Task rows ── */
.lp-task-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.lp-task-row:last-child { border-bottom: 0; }
.lp-cb {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--app-text-3);
  border-radius: 50%;
  background: var(--app-surface);
  flex-shrink: 0;
}
.lp-task-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--app-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-task-row .lp-task-meta {
  font-size: 12px;
  color: var(--app-text-2);
  font-weight: 400;
  margin-left: auto;
  margin-right: 12px;
}
.lp-task-date {
  font-size: 12px;
  color: var(--app-text-2);
  min-width: 44px;
  text-align: right;
  flex-shrink: 0;
}
.lp-task-row .lp-task-date-overdue { color: var(--red); font-weight: 600; }

/* ── Toolbar ── */
.lp-toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 12px;
  background: var(--app-bg);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  margin-bottom: 16px;
}
.lp-search-input {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 10px;
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--app-text-3);
  min-width: 220px;
  flex: 1;
}
.lp-search-input svg { color: var(--app-text-3); }
.lp-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--app-text-2);
  cursor: pointer;
}
.lp-filter-pill em {
  font-style: normal;
  font-size: 11px;
  color: var(--app-text-3);
  font-weight: 500;
}
.lp-filter-pill.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.lp-filter-pill.active em { color: rgba(255,255,255,0.7); }

/* ── Tabs ── */
.lp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--app-border);
  margin-bottom: 16px;
  background: transparent;
}
.lp-tab {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--app-text-2);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
}
.lp-tab:hover { color: var(--app-text); }
.lp-tab.active {
  color: var(--app-text);
  border-bottom-color: var(--ink);
}

/* ── Table wrap ── */
.lp-table-wrap {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 8px;
  overflow: hidden;
}
.lp-table-wrap .lp-items-table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* ── Status badges ── */
.lp-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--neutral-bg);
  color: var(--neutral);
  border-radius: 4px;
  line-height: 1.3;
  white-space: nowrap;
}
.lp-badge.is-ok, .lp-badge.is-approved, .lp-badge.is-released,
.lp-badge.is-active { background: var(--green-bg); color: var(--green); }
.lp-badge.is-warn, .lp-badge.is-review,
.lp-badge.is-onhold { background: var(--amber-bg); color: var(--amber); }
.lp-badge.is-danger, .lp-badge.is-overdue,
.lp-badge.is-blocked { background: var(--red-bg); color: var(--red); }
.lp-badge.is-info, .lp-badge.is-progress,
.lp-badge.is-running { background: var(--info-bg); color: var(--info); }
.lp-badge.is-draft, .lp-badge.is-pending { background: var(--neutral-bg); color: var(--neutral); }

/* ── Folder cards ── */
.lp-folders-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 10px;
}
.lp-folders-head-sub { font-size: 12px; color: var(--app-text-2); }

.lp-folders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-folder-card {
  position: relative;
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease;
  overflow: hidden;
}
.lp-folder-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--fc, var(--app-text-2));
  border-radius: 8px 8px 0 0;
}
.lp-folder-card:hover {
  border-color: var(--app-text-2);
  box-shadow: 0 4px 12px rgba(79,9,29,0.06);
}
.lp-folder-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lp-folder-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--app-text);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-folder-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
  padding: 0 8px;
  border-radius: 10px;
  background: var(--app-bg);
  color: var(--app-text-2);
  border: 1px solid var(--app-border);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.lp-folder-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--app-text-2);
  flex-wrap: wrap;
}
.lp-folder-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-variant-numeric: tabular-nums;
}
.lp-folder-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--soft); }
.lp-folder-dot.ok   { background: var(--sage-dark); }
.lp-folder-dot.low  { background: #d97706; }
.lp-folder-dot.crit { background: var(--red); }
.lp-folder-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--soft); }

/* ── Cards ── */
.lp-card {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}
.lp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.lp-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--app-text);
}

/* ── Items table ── */
.lp-items-table {
  width: 100%;
  background: var(--app-surface);
  border-collapse: collapse;
  font-size: 13px;
}
.lp-items-table thead th {
  text-align: left;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  border-bottom: 1px solid var(--app-border);
  white-space: nowrap;
}
.lp-items-table thead th.num { text-align: right; }
.lp-items-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--app-text);
  vertical-align: middle;
  height: 44px;
}
.lp-items-table tbody tr:last-child td { border-bottom: 0; }
.lp-items-table tbody tr:hover td { background: var(--bg-alt); }
.lp-items-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.lp-part {
  font-weight: 600;
  color: var(--app-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}
.lp-desc {
  margin-top: 2px;
  color: var(--app-text-2);
  font-size: 11.5px;
  line-height: 1.4;
}
.lp-stock-qoh   { color: var(--app-text); font-weight: 600; }
.lp-stock-alloc { color: var(--amber); font-weight: 500; }
.lp-stock-avail { font-weight: 600; }
.lp-stock-avail.ok  { color: var(--green); }
.lp-stock-avail.low { color: var(--amber); }
.lp-stock-avail.out { color: var(--red); }

/* ── Work order stepper ── */
.lp-wo-stepper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 8px 0 4px;
}
.lp-wo-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.lp-wo-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.lp-wo-step.done:not(:last-child)::after { background: var(--accent); }
.lp-wo-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.lp-wo-step.done .lp-wo-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.lp-wo-step.current .lp-wo-circle {
  border-color: var(--accent);
  color: var(--accent);
}
.lp-wo-label {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.lp-wo-step.done .lp-wo-label,
.lp-wo-step.current .lp-wo-label { color: var(--ink); font-weight: 600; }

.lp-wo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
}
.lp-progress-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.lp-progress-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  font-family: ui-monospace, monospace;
  letter-spacing: -0.02em;
  margin: 6px 0 10px;
}
.lp-progress-sep, .lp-progress-target { color: var(--soft); font-weight: 400; }
.lp-progress-bar {
  height: 6px;
  background: var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.lp-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 600ms ease;
}
.lp-progress-pct { font-size: 12px; color: var(--muted); }

.lp-mat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.lp-mat-table th {
  text-align: left;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.lp-mat-table th.num { text-align: right; }
.lp-mat-table td {
  padding: 9px 8px 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.lp-mat-table td.num {
  text-align: right;
  font-family: ui-monospace, monospace;
}
.lp-mat-table tr:last-child td { border-bottom: 0; }

/* ── Build plan operations ── */
.lp-op-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.lp-op-row:last-child { border-bottom: 0; }
.lp-op-num {
  width: 32px;
  height: 32px;
  background: var(--bg-alt);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.lp-op-body { flex: 1; }
.lp-op-title { font-size: 13px; font-weight: 500; color: var(--ink); }
.lp-op-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── Cursor ── */
.lp-cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: left 900ms cubic-bezier(0.4, 0, 0.2, 1),
              top 900ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 300ms ease;
  transform: translate(-2px, -2px);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.lp-click-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: 49;
  opacity: 0;
}
.lp-click-ring.go {
  animation: lp-ring 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lp-ring {
  0%   { opacity: 0.9; transform: scale(0.4); }
  100% { opacity: 0;   transform: scale(2.4); }
}

/* Responsive demo */
@media (max-width: 880px) {
  .lp-folders-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .lp-app { grid-template-rows: 32px 1fr; min-height: auto; }
  .lp-app-chrome { padding: 0 12px; }
  .lp-app-url { display: none; }
  .lp-app-body { grid-template-columns: 1fr; }
  .lp-sidebar { display: none; }
  .lp-content { padding: 20px 18px 24px; }
  .lp-wo-grid { grid-template-columns: 1fr; }
  .lp-folders-grid { grid-template-columns: 1fr; }
  .lp-items-table { font-size: 11px; }
  .lp-cursor, .lp-click-ring { display: none; }
  .lp-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   §2 — FEATURES — Tabbed showcase (light cream)
   ════════════════════════════════════════════════════════════ */
.lp-showcase {
  padding: 100px 0 80px;
  background: #FAF6ED;
  text-align: center;
}

.lp-showcase-tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 36px;
}
.lp-showcase-tab {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  font-family: inherit;
}
.lp-showcase-tab:hover { color: var(--ink); }
.lp-showcase-tab.active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--accent);
}
.lp-showcase-panel { display: none; }
.lp-showcase-panel.active { display: block; }

.lp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}
.lp-fcard {
  background: linear-gradient(135deg, #FFFDF9 0%, #FAF6ED 100%);
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 22px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.lp-fcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.lp-fcard.active {
  border-left-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(221,74,72,0.15), var(--shadow-hover);
}
.lp-fcard-icon { display: none; }
.lp-fcard h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.lp-fcard p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.lp-fcard-included {
  border-left-color: var(--accent);
  background: linear-gradient(135deg, #FDE8E8 0%, #FDF0F0 100%);
}

.lp-fcard-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 0 24px;
  text-align: left;
}
.lp-fcard-detail.open {
  max-height: 200px;
  padding: 20px 24px;
  margin-top: 16px;
  border: 1px solid var(--line);
}
.lp-fcard-detail p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .lp-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-showcase-tab-bar { overflow-x: auto; }
  .lp-showcase-tab { white-space: nowrap; font-size: 14px; padding: 12px 20px; }
}
@media (max-width: 520px) {
  .lp-showcase-grid { grid-template-columns: 1fr; }
  .lp-showcase { padding: 72px 0 56px; }
}

/* ════════════════════════════════════════════════════════════
   §3 — HOW IT WORKS — Connection diagram (cream → sage → cream)
   ════════════════════════════════════════════════════════════ */
.lp-connected {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAF6ED 0%, #D4E8E2 50%, #FAF6ED 100%);
}

.conn-flow { max-width: 800px; margin: 0 auto; position: relative; }
.conn-row { display: flex; align-items: center; justify-content: center; }
.conn-main { gap: 0; }
.conn-node { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.conn-icon {
  width: 64px; height: 64px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(221,74,72,0.1);
  transition: transform 200ms, box-shadow 200ms;
}
.conn-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(221,74,72,0.2);
}
.conn-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.conn-label {
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.conn-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0 8px;
}
.conn-line {
  width: 48px; height: 2px;
  background: var(--soft);
  position: relative;
}
.conn-line::after {
  content: '';
  position: absolute; right: -4px; top: -3px;
  border: solid var(--soft);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(-45deg);
}
.conn-arrow-label {
  font-size: 10px; color: var(--muted-2);
  white-space: nowrap;
}

.conn-verticals {
  display: flex; justify-content: space-around;
  padding: 0 32px;
  margin: 8px 0;
}
.conn-vert {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.conn-vert-line {
  width: 2px; height: 32px;
  background: var(--soft);
  position: relative;
}
.conn-vert-line::after {
  content: '';
  position: absolute; bottom: -4px; left: -3px;
  border: solid var(--soft);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
}
.conn-vert-label {
  font-size: 10px; color: var(--muted-2);
  white-space: nowrap;
}

.conn-secondary {
  margin-top: 8px;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .lp-connected { padding: 64px 0; }
  .conn-main { flex-wrap: wrap; gap: 16px; }
  .conn-arrow { display: none; }
  .conn-verticals { display: none; }
  .conn-secondary { margin-top: 24px; gap: 24px; }
  .conn-icon { width: 52px; height: 52px; }
  .conn-icon svg { width: 22px; height: 22px; }
  .conn-label { font-size: 11px; }
}

/* ════════════════════════════════════════════════════════════
   §4 — WHO IT'S FOR + SECURITY (light cream)
   ════════════════════════════════════════════════════════════ */
.lp-who {
  padding: 100px 0 80px;
  background: #FAF6ED;
  text-align: center;
}
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 48px auto 0;
}
.lp-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
  cursor: default;
}
.lp-chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.lp-security-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.lp-sec-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.lp-sec-sep {
  font-size: 16px;
  color: var(--soft);
}

@media (max-width: 720px) {
  .lp-who { padding: 64px 0; }
  .lp-security-row { gap: 8px; }
  .lp-sec-sep { display: none; }
  .lp-sec-pill {
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 12px;
  }
}

/* ════════════════════════════════════════════════════════════
   §5 — PRICING (light cream → cream)
   ════════════════════════════════════════════════════════════ */
.lp-pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAF6ED 0%, #F5EEDC 100%);
  text-align: center;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
  text-align: left;
}
.lp-price-card {
  position: relative;
  background: linear-gradient(180deg, #FFFDF9 0%, #FAF6ED 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.lp-price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--soft);
}
.lp-price-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.lp-price-amount {
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.lp-price-amount span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 4px;
}
.lp-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 14px;
  color: var(--body);
  flex: 1;
}
.lp-price-list li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  line-height: 1.5;
}
.lp-price-list li:last-child { border-bottom: 0; }
.lp-price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.lp-price-featured {
  border-color: rgba(221,74,72,0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(221,74,72,0.025) 0%, rgba(255,253,249,1) 80px),
    var(--bg);
  box-shadow:
    0 12px 32px -8px rgba(221,74,72,0.12),
    0 4px 12px -4px rgba(79,9,29,0.04);
}
.lp-price-featured::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #C43A38);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lp-price-featured:hover {
  box-shadow:
    0 24px 60px -12px rgba(221,74,72,0.22),
    0 8px 20px -8px rgba(79,9,29,0.08);
}
.lp-price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px -2px rgba(221,74,72,0.4);
}

.lp-price-featured .lp-btn-primary {
  background: var(--accent);
  box-shadow: 0 1px 2px rgba(221,74,72,0.2), 0 0 0 1px rgba(221,74,72,0.06);
}
.lp-price-featured .lp-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px -4px rgba(221,74,72,0.4), 0 0 0 1px rgba(221,74,72,0.06);
}

/* Compare table */
.lp-compare {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: left;
}
.lp-compare-h {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  text-align: center;
}
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.lp-compare-table thead th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.lp-compare-plan { text-align: center !important; width: 100px; }
.lp-compare-pro { color: var(--accent) !important; }
.lp-compare-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.lp-compare-table tbody tr:last-child td { border-bottom: 0; }
.lp-compare-check {
  text-align: center;
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
}
.lp-compare-dash {
  text-align: center;
  color: var(--muted-2);
  font-size: 18px;
}
.lp-compare-table tbody tr:hover td { background: var(--bg-alt); }

@media (max-width: 720px) {
  .lp-pricing { padding: 72px 0; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   §6 — FAQ (warm white)
   ════════════════════════════════════════════════════════════ */
.lp-faq {
  padding: 80px 0;
  background: #FFFDF9;
}
.lp-faq-container { max-width: 800px; }
.lp-faq .lp-section-h { text-align: center; margin-bottom: 48px; }

.lp-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: border-color 200ms ease;
}
.lp-faq-item[open] { border-color: var(--accent); }
.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 200ms ease;
}
.lp-faq-item summary:hover { color: var(--accent); }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--muted-2);
  font-weight: 300;
  line-height: 1;
  transition: transform 200ms ease, color 200ms ease;
  flex-shrink: 0;
}
.lp-faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.lp-faq-item p {
  padding-top: 14px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  max-width: 680px;
}

@media (max-width: 720px) {
  .lp-faq { padding: 56px 0; }
  .lp-faq-item summary { font-size: 16px; }
}

/* ════════════════════════════════════════════════════════════
   §7 — CTA + CONTACT (cream → sage)
   ════════════════════════════════════════════════════════════ */
.lp-cta-contact {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5EEDC 0%, #D4E8E2 100%);
  text-align: center;
}

.lp-email-capture {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--bg);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.lp-email-capture:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(221,74,72,0.12);
}
.lp-email-input {
  flex: 1;
  border: 0;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  outline: none;
  min-width: 0;
}
.lp-email-input::placeholder { color: var(--muted-2); }
.lp-email-btn {
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 160ms ease;
}
.lp-email-btn:hover { background: var(--accent-hover); }

.lp-email-capture-cta {
  max-width: 480px;
  margin-bottom: 16px;
}

.lp-cta-note {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 32px;
}

.lp-cta-links p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.lp-cta-links a {
  color: var(--accent);
  font-weight: 500;
  transition: color 150ms ease;
}
.lp-cta-links a:hover { color: var(--accent-hover); }

@media (max-width: 520px) {
  .lp-email-capture {
    flex-direction: column;
    border-radius: 10px;
  }
  .lp-email-btn {
    border-top: 1px solid var(--line);
    border-radius: 0;
  }
  .lp-cta-contact { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER (deep burgundy)
   ════════════════════════════════════════════════════════════ */
.lp-footer {
  background: #4F091D;
  padding: 64px 0 32px;
}
.lp-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.lp-footer-brand-col img { display: block; }
.lp-footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #F5EEDC;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.lp-footer-tag {
  font-size: 14px;
  color: #E8DFD0;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}
.lp-footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #D4E8E2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
.lp-footer-col a {
  display: block;
  font-size: 14px;
  color: #E8DFD0;
  padding: 5px 0;
  transition: color 150ms ease;
}
.lp-footer-col a:hover { color: #D4E8E2; }

.lp-footer-bar {
  border-top: 1px solid #6B1D32;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #C4B0B8;
}
.lp-footer-bar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-footer-bar-links a {
  color: #C4B0B8;
  transition: color 150ms ease;
}
.lp-footer-bar-links a:hover { color: #D4E8E2; }
.lp-footer-bar-sep { color: #6B1D32; }

@media (max-width: 880px) {
  .lp-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .lp-footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-footer-bar { flex-direction: column; align-items: flex-start; }
}

/* ============================== LEGAL PAGES (terms, privacy) ============================== */
.legal-content { max-width:800px; margin:120px auto 60px; padding:0 24px; font-size:15px; line-height:1.75; color:#334155; }
.legal-content h1 { font-size:32px; font-weight:800; color:#0f172a; margin-bottom:8px; }
.legal-content .effective-date { font-size:13px; color:#64748b; margin-bottom:40px; }
.legal-content h2 { font-size:20px; font-weight:700; color:#0f172a; margin-top:40px; margin-bottom:12px; }
.legal-content h3 { font-size:16px; font-weight:600; color:#0f172a; margin-top:24px; margin-bottom:8px; }
.legal-content p, .legal-content li { margin-bottom:12px; }
.legal-content ul { padding-left:24px; margin-bottom:16px; }
.legal-content a { color:#DD4A48; }

/* ════════════════════════════════════════════════════════════
   v11 ADDITIONS — hero trust, problem/solution, product tour,
   CTA band, why-switch, quotes, industries, trust badges,
   pricing polish, footer social
   ════════════════════════════════════════════════════════════ */

/* ── Hero additions ── */
.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255,253,249,0.72);
  border: 1px solid rgba(79,9,29,0.10);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.lp-hero-diff {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: -24px auto 36px;
  max-width: 620px;
}
.lp-hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 4px;
}
.lp-hero-trust-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.lp-hero-trust-item::before {
  content: '';
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translateY(-1px);
  flex-shrink: 0;
}
.lp-demo-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}
@media (max-width: 720px) {
  .lp-hero-diff { margin: -16px auto 28px; font-size: 14px; }
  .lp-hero-trust { gap: 6px 16px; }
}

/* ── §1b Problem / solution ── */
.lp-problem {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.lp-ba-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 980px;
  margin: 48px auto 0;
  text-align: left;
}
.lp-ba-col {
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  border: 1px solid var(--line);
}
.lp-ba-before {
  background: var(--bg-alt);
}
.lp-ba-after {
  background: linear-gradient(180deg, #FFFDF9 0%, #FDF4F0 100%);
  border-color: rgba(221,74,72,0.28);
  box-shadow: 0 12px 32px -12px rgba(221,74,72,0.16);
}
.lp-ba-head { margin-bottom: 18px; }
.lp-ba-head h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.lp-ba-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}
.lp-ba-tag-after {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.lp-ba-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-ba-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
  border-bottom: 1px solid var(--line-soft);
}
.lp-ba-list li:last-child { border-bottom: 0; }
.lp-ba-list li b { color: var(--ink); font-weight: 600; }
.lp-ba-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 17px;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(45deg, transparent 44%, var(--muted-2) 44%, var(--muted-2) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--muted-2) 44%, var(--muted-2) 56%, transparent 56%);
}
.lp-ba-list-after li::before {
  width: 13px;
  height: 8px;
  top: 16px;
  background: none;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.lp-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
@media (max-width: 880px) {
  .lp-problem { padding: 64px 0; }
  .lp-ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-ba-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ── §2b Product tour deep dive ── */
.lp-deep {
  padding: 100px 0 60px;
  background: var(--bg);
}
.lp-deep-head { text-align: center; margin-bottom: 24px; }
.lp-dd-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-soft);
}
.lp-dd-copy, .lp-dd-visual { min-width: 0; }
.lp-dd-row:last-child { border-bottom: 0; }
.lp-dd-row.flip .lp-dd-copy { order: 2; }
.lp-dd-row.flip .lp-dd-visual { order: 1; }
.lp-dd-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.lp-dd-copy h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lp-dd-copy > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 18px;
}
.lp-dd-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-dd-points li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.lp-dd-points li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 13px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* dd mockup windows */
.dd-window {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 18px 20px 20px;
  font-size: 13px;
}
.dd-win-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.dd-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
}
.dd-name {
  flex: 1;
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dd-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--neutral-bg);
  color: var(--neutral);
  white-space: nowrap;
}
.dd-chip.is-released, .dd-chip.is-done { background: #E5F3EC; color: var(--green); }
.dd-chip.is-progress { background: var(--info-bg); color: var(--info); }
.dd-chip.is-warn { background: var(--amber-bg); color: var(--amber); }

.dd-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.dd-step {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-2);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.dd-step.done {
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-color: var(--line);
}
.dd-step.current {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.dd-op {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 8px;
}
.dd-op + .dd-op { margin-top: 2px; }
.dd-op.is-active {
  background: var(--bg-alt);
  box-shadow: inset 0 0 0 1px var(--line);
}
.dd-op-num {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.dd-op-main { flex: 1; min-width: 0; }
.dd-op-main b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dd-op-main i {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 1px;
}

.dd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dd-stat {
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 14px 12px 12px;
  text-align: center;
}
.dd-stat-n {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.dd-stat-n.amber { color: var(--amber); }
.dd-stat-n.green { color: var(--green); }
.dd-stat-l {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 5px;
}
.dd-segbar {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--line-soft);
  margin-bottom: 12px;
}
.dd-seg-alloc { width: 62%; background: #E4A33E; }
.dd-seg-avail { width: 38%; background: var(--sage-dark); }
.reveal .dd-seg-alloc, .reveal .dd-seg-avail,
.reveal .dd-bar-fill { transform-origin: left; transform: scaleX(0); }
.reveal.revealed .dd-seg-alloc, .reveal.revealed .dd-seg-avail {
  transform: scaleX(1);
  transition: transform 800ms cubic-bezier(0.16,1,0.3,1) 250ms;
}
.dd-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.dd-legend span { display: inline-flex; align-items: center; gap: 7px; }
.dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft);
  flex-shrink: 0;
}
.dd-dot.amber { background: #E4A33E; }
.dd-dot.green { background: var(--sage-dark); }

.dd-progress { margin-bottom: 14px; }
.dd-progress-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.dd-progress-n {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.dd-progress-n em { font-style: normal; font-weight: 400; color: var(--soft); font-size: 18px; }
.dd-progress-pct { font-size: 12px; color: var(--muted); font-weight: 500; }
.dd-bar {
  height: 8px;
  background: var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}
.dd-bar-fill {
  display: block;
  height: 100%;
  width: 64%;
  background: var(--accent);
  border-radius: 4px;
}
.reveal.revealed .dd-bar-fill {
  transform: scaleX(1);
  transition: transform 800ms cubic-bezier(0.16,1,0.3,1) 250ms;
}
.dd-mat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
}
.dd-mat:last-child { border-bottom: 0; }
.dd-mat-part {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.dd-mat-need { color: var(--muted); font-variant-numeric: tabular-nums; }

.dd-bom-head, .dd-bom-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.6fr) minmax(0, 0.9fr);
  gap: 8px;
  align-items: center;
  padding: 8px 4px;
}
.dd-bom-head {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.dd-bom-row {
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.dd-bom-row:last-child { border-bottom: 0; }
.dd-bom-row .dd-chip { justify-self: start; }

.dd-cal {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.dd-cal-day {
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 8px 7px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dd-cal-d {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2px;
}
.dd-ev {
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.3;
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--ink);
}
.dd-ev.ev-wo   { background: var(--accent-soft); color: var(--accent-hover); }
.dd-ev.ev-task { background: var(--sage-soft); color: #3F6B5F; }
.dd-ev.ev-po   { background: var(--amber-bg); color: var(--amber); }
.dd-ev.ev-ship { background: #4F091D; color: #F5EEDC; }

.dd-comp {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dd-gauge {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(var(--accent) 0deg, var(--accent) 310deg, var(--line-soft) 310deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dd-gauge::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--bg);
}
.dd-gauge-n {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dd-gaps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dd-gap {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--body);
}

@media (max-width: 880px) {
  .lp-deep { padding: 64px 0 32px; }
  .lp-dd-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 36px 0;
  }
  .lp-dd-row.flip .lp-dd-copy { order: 1; }
  .lp-dd-row.flip .lp-dd-visual { order: 2; }
  .dd-cal { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 5px; }
  .dd-cal-day { padding: 6px 4px; min-height: 84px; }
  .dd-ev { font-size: 9.5px; padding: 3px 5px; }
  .dd-comp { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── §2c CTA band ── */
.lp-band {
  background: linear-gradient(135deg, #4F091D 0%, #6B1D32 100%);
  padding: 64px 0;
}
.lp-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-band-h {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #F5EEDC;
  margin-bottom: 8px;
}
.lp-band-sub {
  font-size: 15px;
  color: #D9C3B8;
  max-width: 520px;
  line-height: 1.6;
}
.lp-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.lp-btn-band-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #F5EEDC !important;
  border: 1px solid rgba(245,238,220,0.4);
  transition: background 160ms ease, border-color 160ms ease;
}
.lp-btn-band-ghost:hover {
  background: rgba(245,238,220,0.08);
  border-color: rgba(245,238,220,0.7);
}
@media (max-width: 720px) {
  .lp-band { padding: 48px 0; }
  .lp-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ── §3b Why switch ── */
.lp-why {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 0;
  text-align: left;
}
.lp-why-card {
  background: linear-gradient(180deg, #FFFDF9 0%, #FAF6ED 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.lp-why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.lp-why-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.lp-why-lede {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.lp-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-why-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
}
.lp-why-list li::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 12px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.lp-diff-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.lp-diff-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-diff-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 6px;
}
.lp-diff-item b {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.lp-diff-item > span:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .lp-why { padding: 64px 0; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-diff-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lp-diff-strip { grid-template-columns: 1fr; }
}

/* ── §3c Quotes ── */
.lp-quotes {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAF6ED 0%, #F5EEDC 100%);
  text-align: center;
}
.lp-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 0;
  text-align: left;
}
.lp-quote {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-quote::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 22px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-soft);
  font-family: Georgia, serif;
}
.lp-quote blockquote {
  margin: 18px 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  position: relative;
}
.lp-quote figcaption {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.lp-quote figcaption b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.lp-quote figcaption span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.lp-quotes-note {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted-2);
}
@media (max-width: 880px) {
  .lp-quotes { padding: 64px 0; }
  .lp-quotes-grid { grid-template-columns: 1fr; }
}

/* ── §4 Industries grid + trust badges ── */
.lp-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0 0;
  text-align: left;
}
.lp-ind-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.lp-ind-card:hover {
  transform: translateY(-2px);
  border-color: rgba(221,74,72,0.35);
  box-shadow: var(--shadow-hover);
}
.lp-ind-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.lp-ind-card:hover h3 { color: var(--accent); }
.lp-ind-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.lp-tbadges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 56px auto 0;
}
.lp-tbadge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 20px 14px 16px;
}
.lp-tbadge-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: #3F6B5F;
  margin-bottom: 8px;
}
.lp-tbadge b {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.lp-tbadge > span:last-child {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 880px) {
  .lp-ind-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-tbadges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lp-ind-grid { grid-template-columns: 1fr; }
}

/* ── §5 Pricing polish ── */
.lp-price-for {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: -6px 0 16px;
  min-height: 42px;
}
.lp-price-list li.no { color: var(--muted-2); }
.lp-price-list li.no::before {
  border: 0;
  width: 12px;
  height: 12px;
  top: 15px;
  transform: none;
  background:
    linear-gradient(45deg, transparent 44%, var(--soft) 44%, var(--soft) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--soft) 44%, var(--soft) 56%, transparent 56%);
}
.lp-price-hint {
  margin: 36px auto 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
}
.lp-price-hint b { color: var(--ink); }

/* ── Footer social + placeholders ── */
.lp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.lp-social-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245,238,220,0.08);
  border: 1px solid rgba(245,238,220,0.16);
  color: #D9C3B8;
  cursor: default;
  transition: background 150ms ease, color 150ms ease;
}
.lp-social-ic:hover { background: rgba(245,238,220,0.14); color: #F5EEDC; }
.lp-footer-soon {
  display: block;
  font-size: 14px;
  color: #9A7280;
  padding: 5px 0;
  cursor: default;
}

/* ── Staggered reveals for card grids ── */
.lp-why-grid .reveal:nth-child(2),
.lp-quotes-grid .reveal:nth-child(2),
.lp-ind-grid .reveal:nth-child(2),
.lp-ind-grid .reveal:nth-child(6) { transition-delay: 90ms; }
.lp-why-grid .reveal:nth-child(3),
.lp-quotes-grid .reveal:nth-child(3),
.lp-ind-grid .reveal:nth-child(3),
.lp-ind-grid .reveal:nth-child(7) { transition-delay: 180ms; }
.lp-ind-grid .reveal:nth-child(4),
.lp-ind-grid .reveal:nth-child(8) { transition-delay: 270ms; }
