/* =========================================================
   UptimeBeacon — Landing Page (editorial, animated)
   ========================================================= */

.lp {
  position: relative;
  z-index: 2;
  --lp-fg: oklch(0.96 0.005 250);
  --lp-bg: oklch(0.16 0.02 260);
  --lp-accent: oklch(0.62 0.19 150);
  --lp-display: 'Instrument Serif', 'Times New Roman', serif;
  /* force dark glass tokens regardless of user theme */
  --fg:               oklch(0.96 0.005 250);
  --fg-muted:         oklch(0.72 0.015 250);
  --fg-dim:           oklch(0.55 0.02 260);
  --glass-bg:         oklch(0.26 0.02 260 / 0.45);
  --glass-bg-strong:  oklch(0.28 0.025 260 / 0.65);
  --glass-border:     oklch(1 0 0 / 0.1);
  --glass-border-inner: oklch(1 0 0 / 0.06);
  --divider:          oklch(1 0 0 / 0.07);
  --bg-0:             oklch(0.16 0.02 260);
  color:              var(--fg);
  min-height: 100vh;
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.lp em.lp-italic {
  font-family: var(--lp-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, oklch(0.62 0.2 150) 0%, oklch(0.55 0.22 165) 60%, oklch(0.5 0.22 180) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="dark"] .lp em.lp-italic {
  background: linear-gradient(120deg, oklch(0.85 0.18 145) 0%, oklch(0.78 0.2 160) 60%, oklch(0.7 0.22 180) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.lp-eyebrow.muted { color: var(--fg-dim); }

.lp-pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  position: relative;
  flex-shrink: 0;
}
.lp-pulse-dot::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: lp-ping 1.8s ease-out infinite;
}
.lp-pulse-dot.small { width: 6px; height: 6px; }
.lp-pulse-dot.tiny  { width: 5px; height: 5px; }
@keyframes lp-ping {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(3); opacity: 0; }
}

/* Reveal */
.lp-3am,
.lp-numbers,
.lp-how-step,
.lp-voice,
.lp-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.22,1,0.36,1), transform 800ms cubic-bezier(0.22,1,0.36,1);
}
.lp-3am.is-visible,
.lp-numbers.is-visible,
.lp-how-step.is-visible,
.lp-voice.is-visible,
.lp-section.is-visible {
  opacity: 1;
  transform: none;
}
.lp-voice:nth-child(2) { transform: translateY(60px); }

.lp-section-h {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 18px 0 0;
}

/* ---------- Cursor spotlight ---------- */
.lp-cursor {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.45;
  mix-blend-mode: screen;
  filter: blur(20px);
  will-change: transform;
}
[data-theme="light"] .lp-cursor {
  opacity: 0.5;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, oklch(0.78 0.18 150 / 0.35) 0%, transparent 65%);
}
@media (max-width: 900px) { .lp-cursor { display: none; } }

/* ---------- Nav ---------- */
.lp-nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.5) inset, 0 8px 30px rgba(0,0,0,0.08);
  transition: top 280ms var(--ease), padding 280ms var(--ease);
}
.lp-nav.compact { padding: 6px 10px 6px 14px; }

.lp-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 4px;
  font-size: 14px;
  font-weight: 600;
  background: none !important;
  border: none !important;
  cursor: pointer;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.lp-nav-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 13px;
  color: var(--fg-dim);
}
.lp-nav-links a {
  cursor: pointer;
  transition: color 150ms var(--ease);
  position: relative;
  text-decoration: none;
}
.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  transition: left 200ms var(--ease), right 200ms var(--ease);
  border-radius: 2px;
}
.lp-nav-links a:hover { color: var(--fg); }
.lp-nav-links a:hover::after { left: 0; right: 0; }
.lp-nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lp-link {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--fg-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 150ms var(--ease);
  text-decoration: none;
}
.lp-link:hover { color: var(--fg); }

/* ---------- Hamburger (mobile-only, hidden on desktop) ---------- */
.lp-hamburger {
  display: none;
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-inner);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 150ms;
}
.lp-hamburger:hover { background: var(--glass-bg-strong); }
.lp-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 180ms;
}
.lp-hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lp-hamburger.is-active span:nth-child(2) { opacity: 0; }
.lp-hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile menu overlay ---------- */
.lp-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}
.lp-mobile-menu.is-open { display: block; opacity: 1; }
.lp-mobile-menu-inner {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 16px 16px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-10px);
  transition: transform 240ms var(--ease);
}
.lp-mobile-menu.is-open .lp-mobile-menu-inner { transform: translateY(0); }
.lp-mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--glass-border-inner);
}
.lp-mobile-close {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-inner);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}
.lp-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}
.lp-mobile-menu-links a {
  display: block;
  padding: 14px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  border-radius: 12px;
  transition: background 120ms;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.lp-mobile-menu-links a:hover,
.lp-mobile-menu-links a.active {
  background: var(--glass-bg);
  color: var(--fg);
}
.lp-mobile-menu-links a.active::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
}
.lp-mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border-inner);
}

/* ---------- Responsive breakpoints ---------- */
/* Tablet — hide center links, show hamburger */
@media (max-width: 900px) {
  .lp-nav { grid-template-columns: auto 1fr auto; gap: 12px; }
  .lp-nav-links { display: none; }
}

/* Phone — collapse CTA + Sign in into hamburger menu */
@media (max-width: 640px) {
  .lp-nav {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px 8px 8px 14px;
  }
  .lp-nav-cta-btn,
  .lp-nav-signin { display: none; }
  .lp-hamburger { display: flex; }
  .lp-nav-brand { font-size: 14px; padding: 0; }
  .lp-nav-brand-text { font-size: 14px; }
}

/* Very small phones — hide brand text, keep logo only */
@media (max-width: 360px) {
  .lp-nav-brand-text { display: none; }
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), box-shadow 200ms var(--ease);
  font-family: inherit;
  will-change: transform;
  text-decoration: none;
  color: inherit;
}
.lp-btn-lg  { padding: 14px 24px; font-size: 14px; }
.lp-btn-xl  { padding: 18px 32px; font-size: 16px; }
.lp-btn-pri {
  background: linear-gradient(180deg, oklch(0.72 0.17 150), oklch(0.6 0.2 155));
  color: white !important;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.3) inset,
    0 0 0 1px oklch(0 0 0 / 0.1),
    0 10px 30px -10px oklch(0.62 0.2 150 / 0.7),
    0 4px 12px -2px oklch(0.5 0.2 155 / 0.3);
}
.lp-btn-pri:hover {
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.4) inset,
    0 0 0 1px oklch(0 0 0 / 0.15),
    0 18px 40px -8px oklch(0.62 0.2 150 / 0.8),
    0 6px 16px -2px oklch(0.5 0.2 155 / 0.4);
}
.lp-btn-gho {
  background: var(--glass-bg);
  color: var(--fg) !important;
  border: 1px solid var(--glass-border-inner);
  backdrop-filter: blur(10px);
}
.lp-btn-gho:hover { background: var(--glass-bg-strong); }
.lp-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  margin-right: 2px;
  padding-left: 2px;
}

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-hero-wave {
  position: absolute;
  left: 0; right: 0;
  top: 40%;
  width: 100%;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.lp-hero-wave-path {
  animation: lp-wave 8s ease-in-out infinite;
}
@keyframes lp-wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.lp-hero-inner { position: relative; z-index: 2; }
.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 32px;
  animation: lp-fadeUp 800ms var(--ease) both;
}
.lp-hero-title {
  font-size: clamp(56px, 9vw, 124px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 32px;
  color: var(--fg);
}
.lp-title-line {
  display: block;
  animation: lp-fadeUp 1s var(--ease) both;
}
.lp-title-line-2 { animation-delay: 0.1s; }
.lp-title-line-3 { animation-delay: 0.2s; padding-left: 80px; }
@media (max-width: 700px) { .lp-title-line-3 { padding-left: 0; } }
@keyframes lp-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.lp-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 0 40px;
  animation: lp-fadeUp 1s var(--ease) 0.35s both;
}
.lp-hero-sub strong { color: var(--fg); font-weight: 600; }
.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: lp-fadeUp 1s var(--ease) 0.45s both;
}
.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-dim);
  animation: lp-fadeUp 1s var(--ease) 0.55s both;
  flex-wrap: wrap;
}
.lp-hero-trust strong { color: var(--fg); font-weight: 600; font-family: var(--font-mono); }
.lp-hero-trust-sep { color: var(--fg-dim); opacity: 0.5; }
.lp-hero-trust-dot { transform: translateY(1px); }

/* Hero card */
.lp-hero-card {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.5) inset,
    0 30px 80px -30px rgba(0,0,0,0.3),
    0 0 0 1px oklch(0.4 0.02 260 / 0.06);
  overflow: hidden;
  animation: lp-cardFloat 1.2s var(--ease) 0.4s both;
}
@keyframes lp-cardFloat {
  from { opacity: 0; transform: translateY(40px) rotate(-1deg); }
  to   { opacity: 1; transform: none; }
}
.lp-hero-card-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass-bg);
}
.lp-hero-card-bar > span:not(.lp-hero-card-title) {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--divider);
}
.lp-hero-card-bar > span:nth-child(1) { background: oklch(0.7 0.15 25); }
.lp-hero-card-bar > span:nth-child(2) { background: oklch(0.78 0.13 80); }
.lp-hero-card-bar > span:nth-child(3) { background: oklch(0.72 0.15 150); }
.lp-hero-card-title { margin-left: auto; color: var(--fg-dim); font-size: 11px; }
.lp-hero-card-body { padding: 18px 20px; }
.lp-hero-card-monitor-list { display: flex; flex-direction: column; gap: 0; }
.lp-hero-card-monitor {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--divider);
}
.lp-hero-card-monitor:last-child { border-bottom: none; }
.lp-hero-card-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
  color: var(--fg-dim);
}

/* Scroll hint */
.lp-hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--fg-dim);
  animation: lp-fadeUp 1.2s var(--ease) 1s both;
}
.lp-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: lp-scrollLine 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes lp-scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.4) translateY(20px); opacity: 1; }
}

@media (max-width: 1000px) {
  .lp-hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 120px 24px 60px;
    min-height: auto;
  }
  .lp-hero-card { max-width: 540px; }
}

/* ---------- 3am ---------- */
.lp-3am {
  position: relative;
  padding: 180px 32px 140px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.lp-3am-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 16px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
  color: var(--fg);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.2);
}
.lp-3am-h, .lp-3am-m { font-size: 56px; font-variant-numeric: tabular-nums; }
.lp-3am-c {
  font-size: 56px;
  color: var(--accent);
  animation: lp-blink 1.4s steps(2, end) infinite;
}
.lp-3am-ampm {
  font-size: 14px;
  margin-left: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.12em;
}
@keyframes lp-blink { 50% { opacity: 0.15; } }

.lp-3am-quote {
  font-family: var(--lp-display);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 50px;
  color: var(--fg);
}
.lp-3am-body {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 60px;
}
.lp-3am-body strong { color: var(--fg); font-weight: 600; }

/* ECG */
.lp-ecg-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: lp-ecg 4s linear infinite;
}
@keyframes lp-ecg {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: -600; }
}

/* ---------- Numbers ---------- */
.lp-numbers {
  position: relative;
  padding: 140px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.lp-numbers-head { margin-bottom: 80px; max-width: 680px; }
.lp-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.lp-number {
  padding: 40px 24px;
  border-right: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-number:last-child { border-right: none; }
.lp-number-val {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.lp-unit { font-size: 0.5em; color: var(--fg-dim); margin-left: 2px; }
.lp-number-label { font-size: 13px; color: var(--fg-muted); line-height: 1.4; max-width: 200px; }
.lp-number-mini { margin-top: auto; }

.lp-globe-dots { display: flex; gap: 4px; }
.lp-globe-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  animation: lp-globePulse 1.4s ease-in-out infinite;
}
@keyframes lp-globePulse {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50%       { opacity: 1;    transform: scale(1.1); }
}
.lp-progress-mini {
  position: relative;
  height: 4px;
  background: var(--divider);
  border-radius: 99px;
  width: 120px;
}
.lp-progress-mini-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent), oklch(0.78 0.18 150));
  border-radius: 99px;
  transition: width 1.8s var(--ease);
}
.lp-progress-mini-mark {
  position: absolute;
  right: -2px; top: -3px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px oklch(1 0 0 / 0.8), 0 0 10px var(--accent-glow);
}
@media (max-width: 900px) {
  .lp-numbers-grid { grid-template-columns: 1fr 1fr; }
  .lp-number:nth-child(2) { border-right: none; }
  .lp-number:nth-child(1), .lp-number:nth-child(2) { border-bottom: 1px solid var(--divider); }
}

/* ---------- How it works ---------- */
.lp-how {
  position: relative;
  padding: 140px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.lp-how-head { max-width: 680px; margin-bottom: 100px; }
.lp-how-list { display: flex; flex-direction: column; gap: 80px; }
.lp-how-step {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  transform: translateY(60px);
}
.lp-how-step:nth-child(even) { direction: rtl; }
.lp-how-step:nth-child(even) > * { direction: ltr; }
.lp-how-step.is-visible { opacity: 1; transform: none; }

.lp-how-n {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.lp-how-h {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 480px;
}
.lp-how-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0;
}
.lp-how-card { padding: 28px; border-radius: 20px; }

/* URL card */
.lp-how-url-bar {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 20px;
}
.lp-how-url-input {
  display: flex; align-items: baseline;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  margin-bottom: 16px;
}
.lp-typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: lp-typing 2.5s steps(22, end) infinite;
}
@keyframes lp-typing {
  0% { width: 0; }
  60%, 100% { width: 180px; }
}
.lp-cursor-blink {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--accent);
  margin-left: 2px;
  animation: lp-blink 1s steps(2, end) infinite;
  vertical-align: -2px;
}
.lp-how-url-types {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.lp-chip {
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-inner);
  color: var(--fg-dim);
}
.lp-chip.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.lp-how-url-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 500;
}

/* Alerts card */
.lp-how-alerts-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.lp-how-alerts-list { display: flex; flex-direction: column; gap: 8px; }
.lp-how-alert-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-inner);
  animation: lp-alertIn 600ms var(--ease) both;
}
@keyframes lp-alertIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

/* Sleep card */
.lp-how-sleep {
  display: flex; flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 40px 28px;
  background: linear-gradient(180deg, oklch(0.2 0.04 270 / 0.9), oklch(0.12 0.03 260 / 0.95));
  border: 1px solid oklch(1 0 0 / 0.1);
  color: white;
}
.lp-how-sleep-moon { position: relative; color: oklch(0.85 0.08 80); }
.lp-zz {
  position: absolute;
  top: -10px;
  font-family: var(--lp-display);
  font-style: italic;
  font-size: 24px;
  color: oklch(0.85 0.08 80 / 0.6);
  animation: lp-zz 2.4s ease-in-out infinite;
}
@keyframes lp-zz {
  0%   { opacity: 0; transform: translate(0,0) scale(0.8); }
  20%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate(20px,-40px) scale(1.1); }
}
.lp-how-sleep-pulse { width: 100%; opacity: 0.6; }
.lp-how-sleep-status {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.1);
}
@media (max-width: 900px) {
  .lp-how-step { grid-template-columns: 1fr; gap: 40px; }
  .lp-how-step:nth-child(even) { direction: ltr; }
}

/* ---------- Trusted marquee ---------- */
.lp-trusted {
  padding: 80px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
}
.lp-trusted-label { text-align: center; margin-bottom: 40px; }
.lp-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.lp-marquee-track {
  display: flex;
  gap: 80px;
  animation: lp-marquee 30s linear infinite;
  width: max-content;
}
.lp-marquee-item {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  white-space: nowrap;
  transition: color 200ms var(--ease);
}
.lp-marquee-item:hover { color: var(--accent-strong); }
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 40px)); }
}

/* ---------- Voices ---------- */
.lp-voices {
  padding: 140px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.lp-voices-head { max-width: 680px; margin-bottom: 80px; }
.lp-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-voice {
  position: relative;
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
.lp-voice-mark {
  position: absolute;
  top: 12px; left: 24px;
  font-family: var(--lp-display);
  font-size: 88px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  font-style: italic;
}
.lp-voice blockquote {
  margin: 0;
  padding-top: 32px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.lp-voice figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}
.lp-voice-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 900px) { .lp-voices-grid { grid-template-columns: 1fr; } }

/* ---------- Plans preview ---------- */
.lp-plans-preview {
  padding: 140px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.lp-plans-preview-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-plans-preview-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 24px 0 36px;
  max-width: 440px;
}
.lp-plans-preview-cards { display: flex; flex-direction: column; gap: 12px; }
.lp-plan-mini {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.lp-plan-mini:hover { transform: translateX(-6px); border-color: var(--accent); }
.lp-plan-mini.highlight {
  background: linear-gradient(180deg, oklch(0.72 0.17 150 / 0.08), oklch(0.62 0.2 155 / 0.04));
  border-color: var(--accent);
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.lp-plan-mini-name  { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.lp-plan-mini-price { font-size: 36px; font-weight: 600; letter-spacing: -0.02em; text-align: center; }
.lp-plan-mini-price span:first-child { font-size: 16px; color: var(--fg-dim); margin-right: 2px; }
.lp-plan-mini-suf   { font-size: 13px; color: var(--fg-dim); font-family: var(--font-sans); font-weight: 400; margin-left: 2px; }
.lp-plan-mini-line  { font-size: 13px; color: var(--fg-muted); text-align: right; }
@media (max-width: 900px) { .lp-plans-preview-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Final CTA ---------- */
.lp-final {
  position: relative;
  padding: 160px 32px 80px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-final-title {
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: -20px 0 60px;
  color: var(--fg);
}
.lp-final-actions { display: flex; justify-content: center; margin-bottom: 32px; }
.lp-final-fine {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  font-family: var(--lp-display);
  font-style: italic;
}

/* ---------- Footer ---------- */
.lp-footer {
  border-top: 1px solid var(--divider);
  padding: 60px 32px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.lp-footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: start;
}
.lp-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.lp-footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-h {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.lp-footer-cols a {
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 150ms var(--ease);
  text-decoration: none;
}
.lp-footer-cols a:hover { color: var(--fg); }
.lp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer-status { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 800px) {
  .lp-footer-top { grid-template-columns: 1fr; gap: 40px; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   PLANS / PRICING PAGE  (pp-*)
   ========================================================= */

.pp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  padding: 160px 32px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.pp-hero-inner { position: relative; z-index: 2; }
.pp-display {
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 28px 0 32px;
  color: var(--fg);
}
.pp-display-line { display: block; animation: lp-fadeUp 1s var(--ease) both; }
.pp-display-line:nth-child(2) { animation-delay: 0.1s; padding-left: 60px; }
.pp-display-line:nth-child(3) { animation-delay: 0.2s; padding-left: 30px; }
.pp-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 0 36px;
  animation: lp-fadeUp 1s var(--ease) 0.3s both;
}
.pp-hero-aside { animation: lp-cardFloat 1.2s var(--ease) 0.4s both; }
.pp-quote {
  position: relative;
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.5) inset, 0 20px 60px -20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pp-quote-mark {
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--lp-display);
  font-size: 76px;
  font-style: italic;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}
.pp-quote p { margin: 0; padding-top: 24px; font-size: 17px; line-height: 1.5; font-weight: 500; letter-spacing: -0.005em; color: var(--fg); }
.pp-quote-by { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--divider); }
@media (max-width: 1000px) {
  .pp-hero { grid-template-columns: 1fr; }
  .pp-display-line { padding-left: 0 !important; }
}

/* Billing toggle */
.pp-toggle {
  position: relative;
  display: inline-flex;
  padding: 4px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  isolation: isolate;
  animation: lp-fadeUp 1s var(--ease) 0.4s both;
}
.pp-toggle button {
  position: relative; z-index: 2;
  padding: 9px 22px; border: none;
  background: transparent; font: inherit; font-size: 13px; font-weight: 500;
  color: var(--fg-dim); cursor: pointer; border-radius: 999px;
  transition: color 200ms var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.pp-toggle button.is-on { color: white; }
.pp-toggle-slider {
  position: absolute; z-index: 1;
  top: 4px; left: 4px;
  width: calc(50% - 4px); height: calc(100% - 8px);
  background: linear-gradient(180deg, var(--accent), oklch(0.55 0.2 155));
  border-radius: 999px;
  box-shadow: 0 4px 12px var(--accent-glow);
  transition: transform 280ms cubic-bezier(0.34,1.56,0.64,1);
}
.pp-toggle-save {
  font-size: 10px; padding: 1px 6px; border-radius: 4px;
  background: oklch(1 0 0 / 0.2); font-family: var(--font-mono); letter-spacing: 0.04em;
}
.pp-toggle button:not(.is-on) .pp-toggle-save { background: var(--accent-soft); color: var(--accent-strong); }

/* Plans section */
.pp-plans-section { position: relative; padding: 40px 32px 80px; max-width: 1400px; margin: 0 auto; }
.pp-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 40px;
}
@media (max-width: 1100px) { .pp-plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pp-plans-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

.pp-plan {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  animation: lp-fadeUp 0.9s var(--ease) both;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease);
}
.pp-plan:hover { transform: translateY(-4px); }
.pp-plan.is-popular {
  background: linear-gradient(180deg, oklch(0.72 0.17 150 / 0.06), var(--glass-bg-strong));
  border-color: var(--accent);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.6) inset, 0 0 0 1px var(--accent), 0 24px 80px -24px var(--accent-glow);
  transform: scale(1.02);
}
.pp-plan.is-popular:hover { transform: scale(1.02) translateY(-4px); }
@media (max-width: 640px) {
  .pp-plan.is-popular { transform: none; }
  .pp-plan.is-popular:hover { transform: translateY(-4px); }
}
.pp-plan-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), oklch(0.55 0.2 155));
  color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  box-shadow: 0 6px 20px var(--accent-glow);
  white-space: nowrap;
}
.pp-plan-head { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--divider); }
.pp-plan-name h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin: 0; color: var(--fg); }
.pp-plan-name p { margin: 6px 0 20px; font-size: 13px; line-height: 1.45; color: var(--fg-muted); }
.pp-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; line-height: 1; }
.pp-plan-currency { font-size: 20px; color: var(--fg-dim); align-self: flex-start; margin-top: 8px; }
.pp-plan-amount { font-size: clamp(48px, 5vw, 66px); font-weight: 600; letter-spacing: -0.04em; color: var(--fg); }
.pp-plan-period { font-size: 13px; color: var(--fg-dim); margin-left: 4px; }
.pp-plan-billed { font-size: 11px; color: var(--fg-dim); margin-bottom: 20px; font-family: var(--font-mono); min-height: 16px; }
.pp-plan-cta {
  display: inline-flex; width: 100%; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: inherit; border: 1px solid var(--glass-border);
  background: var(--glass-bg); color: var(--fg); text-decoration: none;
  transition: background 180ms var(--ease), transform 150ms var(--ease);
}
.pp-plan-cta:hover { background: var(--glass-bg-strong); transform: translateY(-1px); }
.pp-plan-cta.is-pri {
  background: linear-gradient(180deg, var(--accent), oklch(0.55 0.2 155));
  color: white; border-color: transparent;
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.3) inset, 0 8px 20px -6px var(--accent-glow);
}
.pp-plan-cta.is-pri:hover { box-shadow: 0 1px 0 oklch(1 0 0 / 0.4) inset, 0 14px 32px -6px var(--accent-glow); }
.pp-plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pp-plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--fg); }
.pp-plan-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* Every plan includes */
.pp-everyone {
  padding: 36px 32px; border-radius: 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(20px);
}
.pp-everyone-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent-strong); margin-bottom: 24px; }
.pp-everyone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 28px; }
.pp-everyone-item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--fg); }
@media (max-width: 800px) { .pp-everyone-grid { grid-template-columns: 1fr 1fr; } }

/* Compare table */
.pp-compare { padding: 100px 32px 80px; max-width: 1400px; margin: 0 auto; }
.pp-compare-head { max-width: 680px; margin-bottom: 60px; }
.pp-compare-table-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(20px); overflow-x: auto; }
.pp-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.pp-compare-table th, .pp-compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--divider); }
.pp-compare-table tr:last-child th, .pp-compare-table tr:last-child td { border-bottom: none; }
.pp-compare-table th { font-size: 13px; font-weight: 600; color: var(--fg); background: var(--glass-bg-strong); letter-spacing: -0.01em; }
.pp-compare-table th.is-pop { color: var(--accent-strong); background: var(--accent-soft); position: relative; }
.pp-compare-table th.is-pop::after { content: ''; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--accent); }
.pp-compare-feat { color: var(--fg-muted); font-weight: 500; }
.pp-compare-table td.is-pop { background: oklch(0.72 0.17 150 / 0.04); color: var(--fg); font-weight: 500; }
.pp-compare-table td.is-check svg { color: var(--accent); }
.pp-compare-table td.is-none { color: var(--fg-dim); }

/* FAQ */
.pp-faq-section { padding: 80px 32px; max-width: 1000px; margin: 0 auto; }
.pp-faq-head { max-width: 680px; margin-bottom: 60px; }
.pp-faq-list { display: flex; flex-direction: column; gap: 8px; }
.pp-faq-item {
  border-radius: 14px; border: 1px solid var(--glass-border);
  background: var(--glass-bg); backdrop-filter: blur(20px); overflow: hidden;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.pp-faq-item.is-open { border-color: var(--accent); background: var(--glass-bg-strong); }
.pp-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  width: 100%; padding: 20px 24px; text-align: left;
  border: none; background: transparent; font: inherit; font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--fg); cursor: pointer;
}
.pp-faq-icon {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--glass-bg); color: var(--accent-strong); flex-shrink: 0;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.pp-faq-item.is-open .pp-faq-icon { background: var(--accent); color: white; }
.pp-faq-a { max-height: 0; overflow: hidden; transition: max-height 350ms var(--ease); }
.pp-faq-a p { margin: 0 24px 20px; font-size: 15px; line-height: 1.65; color: var(--fg-muted); }

/* =========================================================
   DOCS PAGE  (docs-*)
   ========================================================= */

.docs-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  --fg:               oklch(0.96 0.005 250);
  --fg-muted:         oklch(0.72 0.015 250);
  --fg-dim:           oklch(0.55 0.02 260);
  --glass-bg:         oklch(0.26 0.02 260 / 0.45);
  --glass-bg-strong:  oklch(0.28 0.025 260 / 0.65);
  --glass-border:     oklch(1 0 0 / 0.1);
  --glass-border-inner: oklch(1 0 0 / 0.06);
  --divider:          oklch(1 0 0 / 0.07);
  --bg-0:             oklch(0.16 0.02 260);
  color: var(--fg);
}
.docs-header {
  position: sticky; top: 0; z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(160%);
}
.docs-search {
  max-width: 520px; width: 100%; justify-self: center;
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px; height: 36px; border-radius: 10px;
  border: 1px solid var(--glass-border); background: var(--glass-bg); color: var(--fg-dim);
}
.docs-search input {
  flex: 1; background: transparent; border: none; outline: none;
  font: inherit; font-size: 13px; color: var(--fg);
}
.docs-search input::placeholder { color: var(--fg-dim); }
.docs-topnav-link { padding: 0 10px; font-size: 13px; color: var(--fg-dim); cursor: pointer; transition: color 120ms; text-decoration: none; }
.docs-topnav-link:hover { color: var(--fg); }

.docs-body {
  flex: 1; display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 240px;
  gap: 40px; max-width: 1400px; margin: 0 auto;
  padding: 32px 32px 80px; width: 100%;
}

.docs-sidebar {
  position: sticky; top: 72px; height: fit-content;
  max-height: calc(100vh - 96px); overflow-y: auto; padding-right: 8px;
}
.docs-sidebar::-webkit-scrollbar { width: 6px; }
.docs-sidebar::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }
.docs-nav-group { margin-bottom: 20px; }
.docs-nav-title { font-size: 11px; font-weight: 600; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.06em; padding: 0 12px; margin-bottom: 6px; }
.docs-nav-item {
  display: block; width: 100%; text-align: left;
  padding: 7px 12px; border-radius: 7px; background: transparent; border: none;
  font-size: 13.5px; color: var(--fg-dim); cursor: pointer;
  transition: all 120ms var(--ease); font-family: inherit; text-decoration: none;
}
.docs-nav-item:hover { color: var(--fg); background: var(--glass-bg); }
.docs-nav-item.active { color: var(--accent-strong); background: var(--accent-soft); font-weight: 500; position: relative; }
.docs-nav-item.active::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--accent); border-radius: 2px; }

.docs-main { min-width: 0; max-width: 760px; }
.docs-breadcrumb { margin-bottom: 20px; font-size: 12px; }

.docs-article { color: var(--fg); }
.docs-article .eyebrow { font-size: 11px; font-weight: 600; color: var(--accent-strong); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.docs-article h1 { font-size: 36px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.docs-article h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 40px 0 12px; scroll-margin-top: 100px; }
.docs-lead { font-size: 17px; line-height: 1.55; color: var(--fg-dim); margin: 0 0 20px; max-width: 640px; }
.docs-article p { font-size: 15px; line-height: 1.7; color: var(--fg); margin: 0 0 14px; }
.docs-article ul, .docs-article ol { font-size: 15px; line-height: 1.75; padding-left: 22px; margin: 0 0 16px; }
.docs-article li { margin-bottom: 6px; }
.docs-article a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.docs-article a:hover { text-decoration-color: var(--accent); }
.docs-article code { font-family: var(--font-mono); font-size: 13px; padding: 1.5px 6px; border-radius: 5px; background: var(--glass-bg-strong); border: 1px solid var(--glass-border); color: var(--accent-strong); }
.docs-article strong { font-weight: 600; color: var(--fg); }

.docs-meta { display: flex; gap: 18px; padding: 10px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); font-size: 12px; color: var(--fg-dim); margin-bottom: 28px; }
.docs-meta span { display: inline-flex; align-items: center; gap: 6px; }

.docs-code { margin: 18px 0 24px; border-radius: 12px; overflow: hidden; border: 1px solid var(--glass-border); background: #0f1724; }
.docs-code-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.docs-code-lang { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }
.docs-code-copy { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); font-size: 11px; font-family: inherit; cursor: pointer; transition: all 120ms; }
.docs-code-copy:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.docs-code pre { margin: 0; padding: 16px 18px; overflow-x: auto; font-family: var(--font-mono); font-size: 13px; line-height: 1.65; color: #d4e2f2; }
.docs-code pre code { background: transparent; border: none; padding: 0; color: inherit; font-size: inherit; }

.docs-callout { display: flex; gap: 12px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--glass-border); background: var(--glass-bg); margin: 20px 0; }
.docs-callout.info { border-color: var(--accent-soft-border, var(--accent)); background: var(--accent-soft); }
.docs-callout.warn { border-color: rgba(230,152,53,0.3); background: rgba(230,152,53,0.08); }
.docs-callout-icon { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--glass-bg-strong); color: var(--accent-strong); }
.docs-callout.warn .docs-callout-icon { color: #c77823; background: rgba(230,152,53,0.15); }

.docs-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0 24px; }
.docs-type-card { padding: 14px; border-radius: 11px; border: 1px solid var(--glass-border); background: var(--glass-bg); }
.docs-type-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent-strong); margin-bottom: 10px; }

.docs-endpoint { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--glass-border); background: var(--glass-bg); margin-bottom: 8px; font-family: var(--font-mono); font-size: 13px; }
.docs-endpoint code { background: transparent; border: none; padding: 0; color: var(--fg); }
.docs-endpoint .method { padding: 2px 8px; border-radius: 5px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; }
.method.get  { background: rgba(45,158,101,0.15); color: #1f7a4a; }
.method.post { background: rgba(59,130,246,0.15); color: #1d4ed8; }
.method.patch { background: rgba(230,152,53,0.15); color: #c77823; }
.method.del  { background: rgba(220,68,85,0.15); color: #b52b3c; }
[data-theme="dark"] .method.get   { color: #4dd493; }
[data-theme="dark"] .method.post  { color: #7ba9ff; }
[data-theme="dark"] .method.patch { color: #f2b15a; }
[data-theme="dark"] .method.del   { color: #ff7084; }

.docs-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--glass-border); }
.docs-pager-btn { padding: 14px 16px; border-radius: 12px; border: 1px solid var(--glass-border); background: var(--glass-bg); text-align: left; cursor: pointer; transition: all 150ms var(--ease); color: var(--fg); font-family: inherit; }
.docs-pager-btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.docs-pager-btn.right { text-align: right; }

.docs-toc { position: sticky; top: 72px; height: fit-content; max-height: calc(100vh - 96px); overflow-y: auto; }
.docs-toc .docs-nav-title { padding: 0; }
.docs-toc-list { list-style: none; padding: 0; margin: 10px 0 0; font-size: 13px; }
.docs-toc-list li { padding: 5px 0 5px 12px; border-left: 2px solid transparent; color: var(--fg-dim); cursor: pointer; line-height: 1.45; }
.docs-toc-list li:hover { color: var(--fg); }
.docs-toc-list li.active { border-left-color: var(--accent); color: var(--accent-strong); }
.docs-help { margin-top: 32px; padding: 16px; border-radius: 12px; border: 1px solid var(--glass-border); background: var(--glass-bg); }

/* =========================================================
   PUBLIC STATUS PAGE  (ps-*)
   ========================================================= */

.ps {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  /* force dark glass tokens regardless of user theme */
  --fg:               oklch(0.96 0.005 250);
  --fg-muted:         oklch(0.72 0.015 250);
  --fg-dim:           oklch(0.55 0.02 260);
  --glass-bg:         oklch(0.26 0.02 260 / 0.45);
  --glass-bg-strong:  oklch(0.28 0.025 260 / 0.65);
  --glass-border:     oklch(1 0 0 / 0.1);
  --glass-border-inner: oklch(1 0 0 / 0.06);
  --divider:          oklch(1 0 0 / 0.07);
  --bg-0:             oklch(0.16 0.02 260);
  color:              var(--fg);
}
.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  margin-bottom: 60px;
}
.ps-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 0;
  color: var(--fg);
  text-decoration: none;
}

.ps-hero {
  position: relative;
  padding: 60px 0 40px;
  text-align: left;
  margin-bottom: 60px;
}
.ps-hero-pulse {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.ps-hero-up .ps-hero-pulse   { box-shadow: 0 0 0 8px oklch(0.72 0.17 150 / 0.06), 0 20px 40px -20px var(--accent-glow); }
.ps-hero-warn .ps-hero-pulse { box-shadow: 0 0 0 8px oklch(0.82 0.15 85 / 0.06); }
.ps-hero-down .ps-hero-pulse { box-shadow: 0 0 0 8px oklch(0.7 0.22 25 / 0.06); }

.ps-title {
  font-size: clamp(60px, 9vw, 128px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 40px;
  color: var(--fg);
}
.ps-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ps-meta-item { display: flex; flex-direction: column; gap: 4px; }
.ps-meta-val { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--fg); }
.ps-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-dim); font-weight: 500; }
.ps-meta-divider { width: 1px; height: 36px; background: var(--divider); }

.ps-services { margin-bottom: 80px; }
.ps-services-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.ps-section-h { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 0; color: var(--fg); }
.ps-services-list {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.ps-service {
  position: relative;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--divider);
  transition: background 200ms var(--ease);
}
.ps-service:last-child { border-bottom: none; }
.ps-service:hover { background: var(--glass-bg-strong); }
.ps-service-head { display: flex; justify-content: space-between; align-items: center; }
.ps-service-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ps-service-badge.is-up   { background: oklch(0.72 0.17 150 / 0.12); color: var(--accent-strong); }
.ps-service-badge.is-warn { background: oklch(0.82 0.15 85 / 0.15);  color: oklch(0.55 0.18 85); }
.ps-service-badge.is-down { background: oklch(0.7 0.22 25 / 0.15);   color: var(--down); }

/* Heartstrip bars */
.ps-strip-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 36px;
  overflow: hidden;
}
.ps-bar {
  flex: 1 1 0;
  max-width: 12px;
  border-radius: 2px;
  cursor: default;
  transition: transform 100ms ease, filter 100ms ease;
  height: 100%;
}
.ps-bar:hover { transform: scaleY(1.2); filter: brightness(1.3); }
.ps-bar-up       { background: var(--up);   opacity: 0.8; }
.ps-bar-degraded { background: var(--warn); opacity: 0.8; }
.ps-bar-down     { background: var(--down); opacity: 0.9; }
.ps-bar-unknown  { background: rgba(255,255,255,0.08); }
.ps-service-strip { position: relative; }

/* Incidents */
.ps-incidents { margin-bottom: 60px; }
.ps-section-eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}
.ps-incidents-list { display: flex; flex-direction: column; }
.ps-incident {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--divider);
}
.ps-incident:last-child { border-bottom: none; }
.ps-incident-time { text-align: right; padding-top: 2px; }
.ps-incident-body {
  border-left: 2px solid var(--divider);
  padding-left: 24px;
  position: relative;
}
.ps-incident-body::before {
  content: "";
  position: absolute;
  left: -7px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg-0);
}
.ps-incident-up .ps-incident-body::before   { background: var(--accent); box-shadow: 0 0 0 3px oklch(0.72 0.17 150 / 0.2); }
.ps-incident-warn .ps-incident-body::before { background: var(--warn);   box-shadow: 0 0 0 3px oklch(0.82 0.15 85 / 0.2); }
.ps-incident-down .ps-incident-body::before { background: var(--down);   box-shadow: 0 0 0 3px oklch(0.7 0.22 25 / 0.2); }
.ps-incident-badge {
  padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; font-family: var(--font-mono);
}
.ps-incident-badge.is-up   { background: oklch(0.72 0.17 150 / 0.12); color: var(--accent-strong); }
.ps-incident-badge.is-warn { background: oklch(0.82 0.15 85 / 0.18);  color: oklch(0.5 0.18 85); }
.ps-incident-badge.is-down { background: oklch(0.7 0.22 25 / 0.18);   color: var(--down); }
.ps-incident-cause { margin: 0 0 6px; font-size: 15px; line-height: 1.5; color: var(--fg); }

/* Footer */
.ps-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--divider);
}
.ps-footer-left { display: flex; align-items: center; gap: 8px; }
.ps-footer-brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--fg); text-decoration: none;
}

/* Subscribe overlay */
.ps-sub-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: oklch(0.2 0.02 260 / 0.45);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.ps-sub-card {
  width: 100%; max-width: 420px;
  padding: 28px; border-radius: 20px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.3);
}

@media (max-width: 700px) {
  .ps-meta-divider { display: none; }
  .ps-incident { grid-template-columns: 1fr; gap: 8px; }
  .ps-incident-time { text-align: left; }
  .ps-incident-body { border-left: none; padding-left: 0; }
  .ps-incident-body::before { display: none; }
}

/* =========================================================
   MOBILE — all landing pages
   ========================================================= */

/* ── Index / Landing mobile (≤640px = phones) ── */
@media (max-width: 640px) {
  /* Body never scrolls horizontally on phones */
  html, body { overflow-x: hidden; }

  /* Hero — tighter padding, bigger tap targets */
  .lp-hero { padding: 100px 18px 50px; min-height: auto; }
  .lp-hero-inner { gap: 20px; }
  .lp-hero-title { font-size: clamp(40px, 11vw, 64px); line-height: 1.04; }
  .lp-hero-sub { font-size: 16px; line-height: 1.6; }
  .lp-hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .lp-hero-trust { font-size: 11px; gap: 6px; flex-wrap: wrap; justify-content: center; }
  .lp-hero-trust-sep { display: none; }

  /* Hero CTAs become full-width stacked buttons (easier to thumb-tap) */
  .lp-hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .lp-hero-actions .lp-btn,
  .lp-hero-actions .lp-btn-lg {
    width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px;
  }

  /* Hero card — never overflow */
  .lp-hero-card { width: 100%; max-width: none; }
  .lp-hero-card-body { padding: 14px; }
  .lp-hero-card-monitor { gap: 8px; padding: 8px; }
  .lp-hero-card-monitor .fw-500 { font-size: 12px; }
  .lp-hero-card-monitor .mono { font-size: 10px; }
  .heartstrip .bar { min-width: 2px; }

  /* 3AM section — tighter */
  .lp-3am { padding: 70px 20px; }
  .lp-3am-clock { font-size: clamp(48px, 16vw, 80px); }
  .lp-3am-quote { font-size: clamp(28px, 8vw, 44px); }
  .lp-3am-body { font-size: 15px; }

  /* Numbers grid — 2 columns on phones not 4 */
  .lp-numbers { padding: 60px 18px; }
  .lp-numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lp-number { padding: 18px 14px; }
  .lp-number-val { font-size: clamp(28px, 8vw, 40px); }
  .lp-number-label { font-size: 11px; }

  /* How-it-works — stack vertically */
  .lp-how { padding: 60px 18px; }
  .lp-how-step { grid-template-columns: 1fr !important; gap: 24px; }
  .lp-how-card { width: 100%; }
  .lp-how-h { font-size: 24px; }

  /* Features grid */
  .land-features { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .land-feature { padding: 18px 14px; }
  .land-feature .text-sm { font-size: 12px; }

  /* Voices grid full width */
  .lp-voices { padding: 60px 18px; }
  .lp-voice { padding: 22px; }
  .lp-voice blockquote { font-size: 15px; }

  /* Plans preview mobile */
  .lp-plans-preview { padding: 60px 18px; }
  .lp-plans-preview-cards { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .lp-plan-mini { padding: 14px 10px; }
  .lp-plan-mini-name { font-size: 12px; }
  .lp-plan-mini-price { font-size: 22px; }

  /* Final CTA */
  .lp-final { padding: 80px 18px 60px; }
  .lp-final-title { font-size: clamp(42px, 11vw, 70px); }
  .lp-final .lp-btn-xl { width: 100%; justify-content: center; }

  /* Footer */
  .lp-footer { padding: 40px 18px 28px; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Nav rules live in the main nav section above */

  /* Pricing toggle stays scrollable */
  .pp-hero { padding: 100px 18px 30px; grid-template-columns: 1fr; }
  .pp-display { font-size: clamp(36px, 10vw, 56px); }
  .pp-toggle { width: 100%; max-width: 280px; }
  .pp-trust-row { font-size: 11px !important; gap: 8px !important; justify-content: center; }

  /* Comparison table scrolls horizontally on tiny screens */
  .pp-compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -18px; padding: 0 18px; }
  .pp-compare-table { min-width: 560px; font-size: 12px; }
  .pp-compare-table td, .pp-compare-table th { padding: 10px 8px; }

  /* FAQ better tap targets */
  .pp-faq-q { padding: 18px 16px; font-size: 14px; min-height: 56px; }

  /* All buttons get min 44px touch target on mobile */
  .lp-btn { min-height: 44px; }
}

/* Tiny phones (≤380px) — extra compression */
@media (max-width: 380px) {
  .lp-hero-title { font-size: clamp(34px, 10vw, 48px); }
  .lp-plans-preview-cards { grid-template-columns: 1fr; }
  .lp-numbers-grid { grid-template-columns: 1fr; }
  .land-features { grid-template-columns: 1fr !important; }
}

/* Respect prefers-reduced-motion across landing */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .lp-cursor, .lp-hero-wave-path, .lp-ecg-path { display: none !important; }
}

/* ── Status page mobile ── */
@media (max-width: 600px) {
  .ps { padding: 16px; }
  .ps-header {
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .ps-header .row.gap-2 { width: 100%; justify-content: stretch; }
  .ps-header .row.gap-2 a,
  .ps-header .row.gap-2 button { flex: 1; justify-content: center; }
  .ps-hero { padding: 32px 0 24px; margin-bottom: 40px; }
  .ps-title { font-size: clamp(48px, 14vw, 80px); margin-bottom: 28px; }
  .ps-meta { gap: 20px; padding: 16px 0; margin-bottom: 24px; }
  .ps-meta-val { font-size: 22px; }
  .ps-services { margin-bottom: 48px; }
  .ps-services-head { margin-bottom: 16px; }
  .ps-section-h { font-size: 20px; }
  .ps-service { padding: 16px 18px; gap: 12px; }
  .ps-service-head { flex-wrap: wrap; gap: 8px; }
  .ps-service-badge { align-self: flex-start; }
  .ps-strip-bars { height: 28px; }
  .ps-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Pricing page mobile ── */
@media (max-width: 600px) {
  .pp-hero { padding: 100px 20px 48px; gap: 36px; }
  .pp-display { font-size: clamp(52px, 13vw, 80px); }
  .pp-lede { font-size: 16px; }
  .pp-plans-section { padding: 24px 20px 48px; }
  .pp-everyone { padding: 24px 20px; }
  .pp-everyone-grid { grid-template-columns: 1fr; gap: 12px; }
  .pp-compare { padding: 48px 20px 40px; }
  .pp-faq-section { padding: 40px 20px; }
}

/* ── Docs mobile ── */
@media (max-width: 640px) {
  .docs-shell { overflow-x: hidden; }
  .docs-header { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }
  .docs-search { display: none; }
  .docs-header .row.gap-2 { margin-left: auto; }
  .docs-body { padding: 16px; }
  .docs-breadcrumb { display: none; }
  .docs-article h1 { font-size: 28px; }
  .docs-article h2 { font-size: 18px; }
  .docs-pager { flex-direction: column; gap: 8px; }
  .docs-pager-btn { text-align: left !important; }
}

/* ── Landing hero mobile ── */
@media (max-width: 600px) {
  .lp-hero { padding: 100px 20px 48px; }
  .lp-hero-inner { max-width: 100%; }
  .lp-hero-title { font-size: clamp(52px, 14vw, 76px); }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-actions a { justify-content: center; }
  .lp-hero-card { display: none; }
  .lp-section { padding-left: 20px; padding-right: 20px; }
  .lp-final-actions { flex-direction: column; align-items: stretch; }
  .lp-final-actions a { justify-content: center; }
  .lp-footer-inner { padding: 48px 20px 32px; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .lp-footer-bottom { flex-direction: column; gap: 16px; }
  .lp-numbers-grid { grid-template-columns: 1fr 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-voices-grid { grid-template-columns: 1fr; }
  .pp-everyone-item span { font-size: 13px; }
}

/* ── Mobile performance: kill backdrop-filter on the landing page too ──────
   Same reasoning as app.css — live backdrop blur on every .lp surface is the
   main cause of mobile sluggishness. Use near-opaque glass tokens instead. */
@media (max-width: 768px) {
  .lp {
    --glass-bg:        oklch(0.20 0.02 260 / 0.95) !important;
    --glass-bg-strong: oklch(0.22 0.025 260 / 0.98) !important;
  }
  .lp, .lp * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
