/* ============================================
   LabSync Solutions — Premium Landing
   Scoped under .lsl-root.
   ============================================ */

.lsl-root {
  /* Warm off-white palette */
  --bg:           #FAFAF9;
  --bg-tint:      #F5F5F4;
  --surface:      #FFFFFF;
  --surface-2:    #F8FAFC;
  --surface-dark: #0A0A0F;

  --ink:          #0A0A0A;
  --ink-2:        #18181B;
  --text:         #3F3F46;
  --muted:        #71717A;
  --muted-2:      #A1A1AA;

  --border:       rgba(24, 24, 27, 0.08);
  --border-2:     rgba(24, 24, 27, 0.14);
  --border-hi:    rgba(24, 24, 27, 0.22);

  /* Premium gradient accent: indigo → violet */
  --brand:        #6366F1;
  --brand-2:      #8B5CF6;
  --brand-deep:   #4338CA;
  --brand-tint:   #EEF2FF;

  /* Elevation */
  --shadow-xs:    0 1px 1px rgba(10,10,10,0.04);
  --shadow-sm:    0 1px 2px rgba(10,10,10,0.05), 0 1px 3px rgba(10,10,10,0.04);
  --shadow-md:    0 4px 16px -4px rgba(10,10,10,0.10), 0 2px 4px -2px rgba(10,10,10,0.04);
  --shadow-lg:    0 24px 48px -12px rgba(15,23,42,0.18), 0 8px 16px -8px rgba(15,23,42,0.08);
  --shadow-glow:  0 40px 80px -20px rgba(99,102,241,0.35), 0 16px 40px -12px rgba(139,92,246,0.25);

  --radius-xs:    6px;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    28px;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:   'Instrument Serif', 'Georgia', serif;

  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

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

.lsl-root h1, .lsl-root h2, .lsl-root h3, .lsl-root h4, .lsl-root h5,
.lsl-root p, .lsl-root ul, .lsl-root ol {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
.lsl-root a { color: inherit; text-decoration: none; }
.lsl-root img { max-width: 100%; display: block; }
.lsl-root button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.lsl-root .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.lsl-root h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.lsl-root h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.lsl-root h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.lsl-root h4 {
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.lsl-root .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.lsl-root .grad-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lsl-root p { color: var(--text); }
.lsl-root .lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

/* Eyebrow pill — premium glass */
.lsl-root .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.002em;
  padding: 6px 12px 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,0.8);
}
.lsl-root .eyebrow::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), transparent 40%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* ============================================
   BUTTONS
   ============================================ */

.lsl-root .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 180ms cubic-bezier(.2,.8,.2,1);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}
.lsl-root .btn-lg {
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 10px;
}
.lsl-root .btn-primary {
  background: linear-gradient(180deg, #7C7FF5 0%, var(--brand) 40%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    0 1px 2px rgba(10,10,10,0.1),
    0 6px 14px -4px rgba(99,102,241,0.45);
}
.lsl-root .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    0 1px 2px rgba(10,10,10,0.1),
    0 10px 20px -4px rgba(99,102,241,0.55);
}
.lsl-root .btn-primary:active { transform: translateY(0); }

.lsl-root .btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-2);
  box-shadow: var(--shadow-xs);
}
.lsl-root .btn-secondary:hover {
  background: var(--surface);
  border-color: var(--border-hi);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.lsl-root .btn-ghost {
  background: transparent;
  color: var(--ink);
}
.lsl-root .btn-ghost:hover { background: var(--bg-tint); }
.lsl-root .btn .arrow {
  display: inline-block;
  transition: transform 180ms cubic-bezier(.2,.8,.2,1);
}
.lsl-root .btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   NAV — glass morph
   ============================================ */

.lsl-root .nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.lsl-root .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 32px;
}
.lsl-root .nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.lsl-root .nav-brand .logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.lsl-root .nav-mid {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lsl-root .nav-mid a {
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: all 150ms;
}
.lsl-root .nav-mid a:hover { color: var(--ink); background: rgba(24,24,27,0.04); }
.lsl-root .nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lsl-root .nav-cta .sign-in {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 150ms;
}
.lsl-root .nav-cta .sign-in:hover { color: var(--ink); }

/* ============================================
   HERO — mesh aurora + glowing product mock
   ============================================ */

.lsl-root .hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}
/* Aurora mesh behind hero */
.lsl-root .hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 1400px;
  height: 800px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(244, 114, 182, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 90%, rgba(14, 165, 233, 0.10) 0%, transparent 40%);
  filter: blur(40px);
  opacity: 0.8;
  pointer-events: none;
}
/* Fine dot grid */
.lsl-root .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10,10,10,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
.lsl-root .hero-inner {
  position: relative;
  z-index: 1;
}
.lsl-root .hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  padding: 4px 4px 4px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 180ms;
}
.lsl-root .hero-announcement:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.8);
}
.lsl-root .hero-announcement .tag {
  font-weight: 600;
  color: var(--ink);
}
.lsl-root .hero-announcement .sep {
  width: 1px; height: 14px; background: var(--border-2); margin: 0 10px;
}
.lsl-root .hero-announcement .link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px 3px 0;
  color: var(--brand);
  font-weight: 500;
}
.lsl-root .hero-announcement .link svg {
  transition: transform 150ms;
}
.lsl-root .hero-announcement:hover .link svg { transform: translateX(2px); }

.lsl-root .hero h1 {
  max-width: 15ch;
  margin: 0 auto 16px;
}
.lsl-root .hero h1 .serif { color: var(--ink); }
.lsl-root .hero .lead {
  max-width: 56ch;
  margin: 0 auto 24px;
  font-size: 16.5px;
}
.lsl-root .hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lsl-root .hero-foot {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 44px;
}
.lsl-root .hero-foot .divider { width: 1px; height: 14px; background: var(--border-2); }
.lsl-root .hero-foot span { display: inline-flex; align-items: center; gap: 6px; }
.lsl-root .hero-foot svg { color: var(--brand); }

/* Product card with color glow */
.lsl-root .hero-mock-wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 48px;
  perspective: 1800px;
}
.lsl-root .hero-mock-wrap::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(99,102,241,0.45) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(139,92,246,0.35) 0%, transparent 55%);
  filter: blur(80px);
  opacity: 0.75;
  z-index: 0;
}
.lsl-root .hero-mock {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border-2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6) inset,
    var(--shadow-lg),
    0 50px 100px -30px rgba(99,102,241,0.35);
  overflow: hidden;
  transform: rotateX(2deg);
}
.lsl-root .hm-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FCFCFB 0%, #F4F4F3 100%);
}
.lsl-root .hm-chrome .dots { display: flex; gap: 6px; }
.lsl-root .hm-chrome .dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border-hi);
}
.lsl-root .hm-chrome .dots span:nth-child(1) { background: #FF605C; }
.lsl-root .hm-chrome .dots span:nth-child(2) { background: #FFBD44; }
.lsl-root .hm-chrome .dots span:nth-child(3) { background: #00CA4E; }
.lsl-root .hm-chrome .url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  max-width: 320px;
  margin: 0 auto;
  font-feature-settings: "tnum";
}
.lsl-root .hm-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}
.lsl-root .hm-side {
  padding: 18px 14px;
  background: #FAFAF9;
  border-right: 1px solid var(--border);
}
.lsl-root .hm-logo {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.lsl-root .hm-logo .logo-img {
  width: 22px; height: 22px;
  object-fit: contain;
  display: block;
}
.lsl-root .hm-nav {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px;
}
.lsl-root .hm-nav .item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 500;
}
.lsl-root .hm-nav .item svg { opacity: 0.6; flex-shrink: 0; }
.lsl-root .hm-nav .item.active {
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.lsl-root .hm-nav .item.active svg { opacity: 1; color: var(--brand); }

.lsl-root .hm-main { padding: 18px 22px; }
.lsl-root .hm-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.lsl-root .hm-head .title {
  font-size: 17px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.lsl-root .hm-head .sub {
  font-size: 12.5px; color: var(--muted);
}
.lsl-root .hm-head .right {
  display: flex; gap: 8px;
}
.lsl-root .hm-head .chip {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg-tint);
  color: var(--muted);
  border: 1px solid var(--border);
}
.lsl-root .hm-head .chip.on {
  background: var(--brand-tint);
  color: var(--brand-deep);
  border-color: transparent;
}
.lsl-root .hm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.lsl-root .hm-stat {
  padding: 11px 13px;
  background: linear-gradient(180deg, #FCFCFB 0%, #F8F8F7 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.lsl-root .hm-stat .k {
  font-size: 11px; color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.lsl-root .hm-stat .v {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.lsl-root .hm-stat .v .unit {
  font-size: 12px; color: var(--muted); font-weight: 500;
  margin-left: 3px; letter-spacing: 0;
}
.lsl-root .hm-rows {
  display: flex; flex-direction: column;
}
.lsl-root .hm-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
}
.lsl-root .hm-row:last-child { border-bottom: none; }
.lsl-root .hm-row .av {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #E0E7FF 0%, #EDE9FE 100%);
  color: var(--brand-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600;
  border: 1px solid rgba(99,102,241,0.15);
}
.lsl-root .hm-row .name {
  font-weight: 600; color: var(--ink); font-size: 13px;
  margin-bottom: 1px;
}
.lsl-root .hm-row .meta { font-size: 11.5px; color: var(--muted); }
.lsl-root .hm-row .pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  font-feature-settings: "tnum";
}
.lsl-root .pill-ok   { background: #ECFDF5; color: #047857; border-color: #D1FAE5; }
.lsl-root .pill-flag { background: #FFFBEB; color: #B45309; border-color: #FEF3C7; }
.lsl-root .pill-proc { background: var(--brand-tint); color: var(--brand-deep); border-color: #E0E7FF; }

/* ============================================
   TRUST BAR
   ============================================ */

.lsl-root .trust {
  padding: 24px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.lsl-root .trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.lsl-root .trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lsl-root .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border-2);
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lsl-root .trust-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}

/* ============================================
   SECTION LAYOUT
   ============================================ */

.lsl-root section.section {
  padding: 72px 0;
  position: relative;
}
.lsl-root section.section.alt {
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lsl-root .section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.lsl-root .section-head .eyebrow { margin-bottom: 14px; }
.lsl-root .section-head h2 { margin-bottom: 12px; }
.lsl-root .section-head .lead { margin: 0 auto; }

/* ============================================
   PROBLEM — premium cards
   ============================================ */

.lsl-root .problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lsl-root .problem-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all 260ms cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.lsl-root .problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(99,102,241,0.04) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 260ms;
  pointer-events: none;
}
.lsl-root .problem-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.lsl-root .problem-card:hover::before { opacity: 1; }
.lsl-root .problem-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
  color: #C2410C;
  display: grid; place-items: center;
  margin-bottom: 14px;
  border: 1px solid #FED7AA;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
}
.lsl-root .problem-card h3 { margin-bottom: 8px; }
.lsl-root .problem-card p {
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--text);
  position: relative;
}
.lsl-root .problem-card .symptom {
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px dashed var(--border-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  position: relative;
  font-weight: 500;
}
.lsl-root .problem-card .symptom::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F59E0B;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

/* ============================================
   SOLUTION / STEPS
   ============================================ */

.lsl-root .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.lsl-root .steps-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border-hi) 15%,
    var(--border-hi) 85%,
    transparent 100%);
  z-index: 0;
}
.lsl-root .step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lsl-root .step-num {
  width: 44px; height: 44px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border-2);
  color: var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  margin: 0 auto 14px;
  letter-spacing: -0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    var(--shadow-sm);
  position: relative;
}
.lsl-root .step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.25));
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 260ms;
}
.lsl-root .step:hover .step-num::after { opacity: 1; }
.lsl-root .step h4 { margin-bottom: 6px; }
.lsl-root .step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 26ch;
  margin: 0 auto;
}

/* ============================================
   METRICS — midnight band with glow
   ============================================ */

.lsl-root .metrics-shell {
  padding: 24px 24px;
}
.lsl-root .metrics {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(99,102,241,0.18) 0%, transparent 50%),
    radial-gradient(120% 80% at 50% 100%, rgba(139,92,246,0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0E0E18 0%, #050510 100%);
  color: #fff;
  padding: 64px 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px -20px rgba(10,10,20,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.lsl-root .metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.lsl-root .metrics::after {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  width: 700px; height: 500px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(139,92,246,0.28) 0%, transparent 50%);
  filter: blur(60px);
  pointer-events: none;
}
.lsl-root .metrics-inner {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  z-index: 1;
}
.lsl-root .metrics-head { text-align: center; margin-bottom: 44px; }
.lsl-root .metrics-head .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255,255,255,0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.lsl-root .metrics-head h2 { color: #fff; margin-bottom: 16px; }
.lsl-root .metrics-head h2 .serif {
  color: transparent;
  background: linear-gradient(135deg, #C7D2FE 0%, #DDD6FE 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lsl-root .metrics-head .lead { color: rgba(255,255,255,0.6); margin: 0 auto; }
.lsl-root .metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lsl-root .metric {
  text-align: left;
  padding: 22px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.lsl-root .metric::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.lsl-root .metric .big {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #A5B4FC 140%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "tnum";
}
.lsl-root .metric h4 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.lsl-root .metric p {
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ============================================
   PORTALS — premium tabbed with frosted device
   ============================================ */

.lsl-root .portal-tabs-wrap { text-align: center; margin-bottom: 36px; }
.lsl-root .portal-tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,0.8);
}
.lsl-root .portal-tabs button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 7px;
  transition: all 180ms;
  letter-spacing: -0.005em;
}
.lsl-root .portal-tabs button.active {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
}

.lsl-root .portal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lsl-root .portal-text h2 { margin-top: 14px; margin-bottom: 14px; }
.lsl-root .portal-text .lead { margin-bottom: 20px; }
.lsl-root .portal-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.lsl-root .portal-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.lsl-root .portal-feature .check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  margin-top: 2px;
  box-shadow: 0 2px 6px -1px rgba(16,185,129,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.lsl-root .portal-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.lsl-root .portal-feature span.d {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.lsl-root .portal-device-wrap {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}
.lsl-root .portal-device-wrap::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%; right: -10%; bottom: 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(99,102,241,0.35), transparent 55%);
  filter: blur(60px);
  z-index: 0;
}
.lsl-root .portal-device {
  position: relative; z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}
.lsl-root .portal-device-chrome {
  padding: 12px 16px;
  background: linear-gradient(180deg, #FCFCFB 0%, #F5F5F4 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lsl-root .portal-device-chrome .dots { display: flex; gap: 5px; }
.lsl-root .portal-device-chrome .dots span {
  width: 9px; height: 9px; border-radius: 50%;
}
.lsl-root .portal-device-chrome .dots span:nth-child(1){ background: #FF605C; }
.lsl-root .portal-device-chrome .dots span:nth-child(2){ background: #FFBD44; }
.lsl-root .portal-device-chrome .dots span:nth-child(3){ background: #00CA4E; }
.lsl-root .portal-device-chrome .label {
  font-size: 11px; color: var(--muted); font-weight: 500;
}
.lsl-root .portal-device-head {
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.lsl-root .portal-device-head .u {
  display: flex; gap: 12px; align-items: center;
}
.lsl-root .portal-device-head .u-ring {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 2px 8px -2px rgba(99,102,241,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.lsl-root .portal-device-head .u-name {
  font-weight: 600; color: var(--ink); font-size: 14px;
  letter-spacing: -0.01em;
}
.lsl-root .portal-device-head .u-sub {
  font-size: 11.5px; color: var(--muted);
}
.lsl-root .portal-device-head .date {
  font-size: 11px; color: var(--muted); text-align: right; font-weight: 500;
}
.lsl-root .portal-device-body { padding: 16px 20px; }
.lsl-root .portal-device-heading {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.lsl-root .portal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.lsl-root .portal-row:last-child { border-bottom: none; }
.lsl-root .portal-row .n {
  font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.lsl-root .portal-row .d {
  font-size: 12px; color: var(--muted); margin-top: 2px;
}

/* ============================================
   FEATURES — bento grid
   ============================================ */

.lsl-root .feature-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}
.lsl-root .feature-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all 260ms cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}
.lsl-root .feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
}
/* Wider "hero" cards in bento */
.lsl-root .feature-card.wide { grid-column: span 3; }
.lsl-root .feature-card.full { grid-column: span 6; }
.lsl-root .feature-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.25), transparent);
  opacity: 0;
  transition: opacity 260ms;
}
.lsl-root .feature-card:hover::before { opacity: 1; }
.lsl-root .feature-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(180deg, #F5F3FF 0%, #EDE9FE 100%);
  color: var(--brand-deep);
  display: grid; place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(99,102,241,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.lsl-root .feature-card h4 { margin-bottom: 6px; }
.lsl-root .feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
}

/* ============================================
   COMPLIANCE
   ============================================ */

.lsl-root .compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lsl-root .compliance-left h2 { margin: 14px 0 14px; }
.lsl-root .compliance-left .lead { margin-bottom: 14px; }
.lsl-root .compliance-left .body { margin-bottom: 22px; color: var(--text); line-height: 1.55; font-size: 14px; }

.lsl-root .compliance-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.lsl-root .compliance-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.15), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.lsl-root .compliance-head {
  padding: 14px 18px;
  background: linear-gradient(180deg, #FCFCFB 0%, #F8F8F7 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lsl-root .compliance-head h4 { font-size: 15px; }
.lsl-root .compliance-head .tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px -2px rgba(16,185,129,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.lsl-root .compliance-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 13px;
  color: var(--text);
  transition: background 180ms;
}
.lsl-root .compliance-row:hover { background: rgba(99,102,241,0.02); }
.lsl-root .compliance-row:last-child { border-bottom: none; }
.lsl-root .compliance-row .check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  box-shadow: 0 2px 6px -2px rgba(16,185,129,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.lsl-root .compliance-row .check.pending {
  background: var(--bg-tint);
  color: var(--muted);
  border: 1px dashed var(--border-hi);
  box-shadow: none;
}
.lsl-root .compliance-row .status {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  font-feature-settings: "tnum";
}
.lsl-root .status-auto    { background: var(--brand-tint); color: var(--brand-deep); border: 1px solid #E0E7FF; }
.lsl-root .status-live    { background: #ECFDF5; color: #047857; border: 1px solid #D1FAE5; }
.lsl-root .status-roadmap { background: var(--bg-tint); color: var(--muted); border: 1px solid var(--border); }

/* ============================================
   TESTIMONIAL / WHY US
   ============================================ */

.lsl-root .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.lsl-root .why-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: all 260ms cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.lsl-root .why-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
}
.lsl-root .why-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--brand-tint);
  border-radius: 999px;
}
.lsl-root .why-kicker::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}
.lsl-root .why-card h3 { margin-bottom: 2px; }
.lsl-root .why-card p {
  color: var(--text);
  line-height: 1.55;
  font-size: 13.5px;
}

/* ============================================
   FINAL CTA — dark premium with aurora
   ============================================ */

.lsl-root .final-wrap { padding: 64px 24px; }
.lsl-root .final {
  position: relative;
  padding: 72px 24px;
  background:
    radial-gradient(100% 100% at 50% 0%, rgba(99,102,241,0.35) 0%, transparent 55%),
    radial-gradient(80% 80% at 80% 100%, rgba(139,92,246,0.30) 0%, transparent 55%),
    linear-gradient(180deg, #0E0E18 0%, #050510 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px -20px rgba(10,10,20,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.lsl-root .final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lsl-root .final-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  z-index: 1;
}
.lsl-root .final-inner .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.lsl-root .final-inner h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(26px, 3.6vw, 42px);
}
.lsl-root .final-inner h2 .serif {
  color: transparent;
  background: linear-gradient(135deg, #C7D2FE 0%, #DDD6FE 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lsl-root .final-inner .lead {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 24px;
  font-size: 16px;
  max-width: 56ch;
}
.lsl-root .final-ctas {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lsl-root .final-ctas .btn-primary {
  background: linear-gradient(180deg, #FFFFFF 0%, #E4E4E7 100%);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 10px 24px -6px rgba(255,255,255,0.25);
}
.lsl-root .final-ctas .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 16px 32px -8px rgba(255,255,255,0.35);
}
.lsl-root .final-ctas .btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.lsl-root .final-ctas .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.lsl-root .final-assurance {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
}
.lsl-root .final-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lsl-root .final-assurance span::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), transparent 50%),
    linear-gradient(135deg, #34D399, #10B981);
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.lsl-root footer.lsl-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 44px 0 22px;
  color: var(--muted);
}
.lsl-root .foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.lsl-root .foot-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.lsl-root .foot-brand .logo-img {
  width: 26px; height: 26px;
  object-fit: contain;
  display: block;
}
.lsl-root .foot-brand-col p {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.55;
}
.lsl-root .foot-col h5 {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lsl-root .foot-col a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  color: var(--muted);
  transition: color 150ms;
}
.lsl-root .foot-col a:hover { color: var(--ink); }
.lsl-root .foot-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 16px;
}
.lsl-root .foot-bottom .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}
.lsl-root .foot-bottom .status::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

/* ============================================
   RESPONSIVE — premium mobile
   ============================================ */

/* Tablet */
@media (max-width: 1000px) {
  .lsl-root .nav-mid { display: none; }
  .lsl-root .hero { padding: 64px 0 0; }
  .lsl-root .hero-mock-wrap { padding-bottom: 40px; }
  .lsl-root .hm-body { grid-template-columns: 1fr; }
  .lsl-root .hm-side { display: none; }
  .lsl-root section.section { padding: 72px 0; }
  .lsl-root .problem-grid { grid-template-columns: 1fr; }
  .lsl-root .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .lsl-root .steps-grid::before { display: none; }
  .lsl-root .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .lsl-root .portal-split { grid-template-columns: 1fr; gap: 40px; }
  .lsl-root .portal-device-wrap { margin: 0 auto; max-width: 520px; }
  .lsl-root .feature-bento { grid-template-columns: 1fr; }
  .lsl-root .feature-card,
  .lsl-root .feature-card.wide,
  .lsl-root .feature-card.full { grid-column: span 1; }
  .lsl-root .compliance-grid { grid-template-columns: 1fr; gap: 40px; }
  .lsl-root .why-grid { grid-template-columns: 1fr; }
  .lsl-root .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lsl-root .foot-brand-col { grid-column: span 2; }
}

/* Mobile — the premium pass */
@media (max-width: 768px) {
  .lsl-root .container { padding: 0 20px; }

  /* Nav: compact, collapse sign-in to icon-free subtle link */
  .lsl-root .nav { height: 54px; }
  .lsl-root .nav-brand { font-size: 14.5px; gap: 8px; }
  .lsl-root .nav-brand .logo-img { width: 26px; height: 26px; }
  .lsl-root .nav-cta { gap: 10px; }
  .lsl-root .nav-cta .sign-in { font-size: 13px; padding: 6px 2px; }
  .lsl-root .nav-cta .btn { padding: 8px 14px; font-size: 13px; }
  .lsl-root .nav-cta .btn .arrow { display: none; }

  /* Hero — tighter, more focused */
  .lsl-root .hero { padding: 48px 0 0; }
  .lsl-root .hero-inner { text-align: left; }
  .lsl-root .hero-announcement {
    font-size: 12px;
    padding: 5px 10px 5px 5px;
    gap: 8px;
  }
  .lsl-root .hero-announcement .sep { display: none; }
  .lsl-root .hero h1 {
    font-size: clamp(32px, 8.5vw, 44px);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
  .lsl-root .hero .lead { font-size: 15px; margin-bottom: 22px; line-height: 1.55; }

  /* Hero CTAs — stack full-width, premium feel */
  .lsl-root .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
  }
  .lsl-root .hero-ctas .btn { width: 100%; justify-content: center; }
  .lsl-root .hero-ctas .btn-lg { padding: 13px 22px; font-size: 14.5px; }

  /* Hero trust line — wrap gracefully */
  .lsl-root .hero-foot {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12.5px;
    padding-bottom: 36px;
  }
  .lsl-root .hero-foot .divider { display: none; }

  /* Hero mock — readable on small screens */
  .lsl-root .hero-mock-wrap { padding: 0 4px 32px; }
  .lsl-root .hero-mock { border-radius: 14px; }
  .lsl-root .hm-chrome { padding: 10px 14px; }
  .lsl-root .hm-chrome .url { font-size: 11px; }
  .lsl-root .hm-body { min-height: 0; }
  .lsl-root .hm-main { padding: 16px 18px; }
  .lsl-root .hm-head { margin-bottom: 14px; }
  .lsl-root .hm-head .title { font-size: 15.5px; }
  .lsl-root .hm-head .sub { font-size: 11.5px; }
  .lsl-root .hm-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
  .lsl-root .hm-stat { padding: 10px 11px; }
  .lsl-root .hm-stat .k { font-size: 10.5px; }
  .lsl-root .hm-stat .v { font-size: 17px; }
  .lsl-root .hm-stat .unit { font-size: 10px; }
  .lsl-root .hm-rows .hm-row {
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    padding: 9px 10px;
  }
  .lsl-root .hm-row .av { width: 32px; height: 32px; font-size: 10.5px; }
  .lsl-root .hm-row .name { font-size: 13px; }
  .lsl-root .hm-row .meta { font-size: 11px; }
  .lsl-root .hm-row .pill { font-size: 9.5px; padding: 3px 7px; }

  /* Trust bar */
  .lsl-root .trust { padding: 22px 0 34px; }
  .lsl-root .trust-label { font-size: 11px; margin-bottom: 14px; }
  .lsl-root .trust-items { gap: 8px; }
  .lsl-root .trust-item { font-size: 12px; padding: 5px 11px; }

  /* Section spacing — tighter on mobile */
  .lsl-root section.section { padding: 56px 0; }
  .lsl-root .section-head { margin-bottom: 36px; }
  .lsl-root .section-head .eyebrow { font-size: 12.5px; margin-bottom: 10px; }
  .lsl-root h2 { font-size: clamp(24px, 6.5vw, 32px); letter-spacing: -0.025em; }
  .lsl-root .lead { font-size: 15px; line-height: 1.55; }

  /* Problem cards */
  .lsl-root .problem-grid { gap: 16px; }
  .lsl-root .problem-card { padding: 20px; }
  .lsl-root .problem-card h3 { font-size: 17px; margin-bottom: 8px; }
  .lsl-root .problem-card p { font-size: 13.5px; }
  .lsl-root .problem-card .symptom { font-size: 11.5px; margin-top: 14px; padding-top: 14px; }

  /* Steps — 1 column, clean */
  .lsl-root .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .lsl-root .step { text-align: left; padding-left: 64px; position: relative; }
  .lsl-root .step-num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 44px;
    height: 44px;
  }
  .lsl-root .step h4 { font-size: 16px; margin-bottom: 6px; }
  .lsl-root .step p { font-size: 13.5px; }

  /* Metrics shell */
  .lsl-root .metrics-shell { padding: 0 16px; }
  .lsl-root .metrics { border-radius: 20px; padding: 20px; }
  .lsl-root .metrics-inner { padding: 40px 18px; }
  .lsl-root .metrics-head { margin-bottom: 32px; }
  .lsl-root .metric-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lsl-root .metric { padding: 18px 16px; }
  .lsl-root .metric .big { font-size: clamp(28px, 7vw, 36px); margin-bottom: 8px; }
  .lsl-root .metric h4 { font-size: 13px; margin-bottom: 4px; }
  .lsl-root .metric p { font-size: 11.5px; line-height: 1.45; }

  /* Portal */
  .lsl-root .portal-tabs-wrap { margin-bottom: 28px; }
  .lsl-root .portal-tabs { padding: 4px; border-radius: 12px; gap: 2px; }
  .lsl-root .portal-tabs button { padding: 8px 12px; font-size: 12.5px; }
  .lsl-root .portal-split { gap: 36px; }
  .lsl-root .portal-text .eyebrow { font-size: 12px; margin-bottom: 10px; }
  .lsl-root .portal-text h2 { font-size: clamp(22px, 6vw, 28px); margin-bottom: 14px; }
  .lsl-root .portal-text .lead { font-size: 14.5px; margin-bottom: 22px; }
  .lsl-root .portal-features { gap: 12px; }
  .lsl-root .portal-feature strong { font-size: 13.5px; }
  .lsl-root .portal-feature .d { font-size: 12.5px; }
  .lsl-root .portal-device { border-radius: 14px; }
  .lsl-root .portal-device-body { padding: 14px; }
  .lsl-root .portal-row { padding: 10px 12px; }

  /* Feature bento */
  .lsl-root .feature-bento { gap: 12px; grid-auto-rows: auto; }
  .lsl-root .feature-card { padding: 20px; }
  .lsl-root .feature-card h4 { font-size: 15.5px; margin-bottom: 6px; }
  .lsl-root .feature-card p { font-size: 13px; line-height: 1.5; }
  .lsl-root .feature-icon { width: 34px; height: 34px; margin-bottom: 14px; }

  /* Compliance */
  .lsl-root .compliance-grid { gap: 32px; }
  .lsl-root .compliance-left h2 { font-size: clamp(22px, 6vw, 30px); }
  .lsl-root .compliance-left .lead { font-size: 14.5px; }
  .lsl-root .compliance-left .body { font-size: 13.5px; }
  .lsl-root .compliance-card { padding: 20px 18px; }
  .lsl-root .compliance-head { margin-bottom: 6px; padding-bottom: 12px; }
  .lsl-root .compliance-head h4 { font-size: 14px; }
  .lsl-root .compliance-row {
    grid-template-columns: 18px 1fr;
    gap: 10px;
    padding: 10px 0;
    font-size: 13px;
  }
  .lsl-root .compliance-row .status {
    grid-column: 2;
    justify-self: start;
    font-size: 10px;
    padding: 3px 7px;
    margin-top: 2px;
  }

  /* Why cards */
  .lsl-root .why-grid { gap: 12px; }
  .lsl-root .why-card { padding: 20px; }
  .lsl-root .why-card h3 { font-size: 16.5px; }
  .lsl-root .why-card p { font-size: 13px; }
  .lsl-root .why-kicker { font-size: 11px; }

  /* Final CTA */
  .lsl-root .final-wrap { padding: 56px 16px; }
  .lsl-root .final { border-radius: 20px; }
  .lsl-root .final-inner { padding: 48px 22px; }
  .lsl-root .final-inner h2 { font-size: clamp(24px, 7vw, 34px); }
  .lsl-root .final-inner .lead { font-size: 14.5px; margin-bottom: 22px; }
  .lsl-root .final-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }
  .lsl-root .final-ctas .btn { width: 100%; justify-content: center; }
  .lsl-root .final-assurance {
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    font-size: 12px;
  }

  /* Footer */
  .lsl-root .lsl-footer { padding: 40px 0 20px; }
  .lsl-root .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 24px; }
  .lsl-root .foot-brand-col { grid-column: span 2; }
  .lsl-root .foot-brand { font-size: 14.5px; }
  .lsl-root .foot-brand-col p { font-size: 12.5px; }
  .lsl-root .foot-col h5 { font-size: 11px; }
  .lsl-root .foot-col a { font-size: 12.5px; }
  .lsl-root .foot-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 11.5px;
    padding-top: 16px;
    text-align: center;
    align-items: center;
  }
}

/* Small mobile — narrow phones */
@media (max-width: 480px) {
  .lsl-root .container { padding: 0 16px; }

  .lsl-root .nav-brand span { font-size: 13.5px; }

  .lsl-root .hero h1 { font-size: clamp(28px, 9vw, 36px); }
  .lsl-root .hm-stats { grid-template-columns: 1fr 1fr; }
  .lsl-root .hm-stats .hm-stat:nth-child(3) { grid-column: span 2; }
  .lsl-root .hm-chrome .url { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .lsl-root .trust-items { flex-direction: column; gap: 6px; align-items: center; }

  .lsl-root .metric-grid { grid-template-columns: 1fr; gap: 10px; }
  .lsl-root .metric { padding: 20px 18px; }
  .lsl-root .metric .big { font-size: 32px; }
  .lsl-root .metric h4 { font-size: 14px; }
  .lsl-root .metric p { font-size: 12.5px; }

  .lsl-root .portal-tabs { flex-direction: column; }
  .lsl-root .portal-tabs button { width: 100%; }

  .lsl-root .foot-grid { grid-template-columns: 1fr; }
  .lsl-root .foot-brand-col { grid-column: span 1; }
}
