/* ============================================================
   SvrStatus — Landing page
   Builds on styles.css tokens (dark, green accent, Geist)
   ============================================================ */

.lp {
  background:
    radial-gradient(1100px 560px at 78% -8%, rgba(34,197,94,.10), transparent 58%),
    radial-gradient(900px 520px at -8% 8%, rgba(99,102,241,.07), transparent 55%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.lp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.lp-wrap.narrow { max-width: 960px; }

/* ---- Section scaffolding ---- */
.lp-section { padding: 96px 0; position: relative; }
.lp-section.tight { padding: 64px 0; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.lp-eyebrow::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--accent);
  opacity: .6;
}

.lp-section-head { max-width: 660px; margin-bottom: 48px; }
.lp-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-section-head h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 14px;
  text-wrap: balance;
}
.lp-section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  text-wrap: pretty;
}
.lp-section-head.center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   Nav
   ============================================================ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.lp-nav.scrolled { border-bottom-color: var(--border); }
.lp-nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.lp-logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 6px 16px rgba(34,197,94,.32);
  flex-shrink: 0;
}
.lp-logo-mark svg { width: 17px; height: 17px; color: #06210f; }
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.lp-nav-links a {
  padding: 8px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.lp-nav-links a:hover { color: var(--text); background: var(--surface-hover); }
.lp-nav-spacer { flex: 1; }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }

/* Buttons (landing scale) */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: all .15s;
  white-space: nowrap;
}
.lp-btn:hover { background: var(--surface-hover); border-color: var(--border-strong); }
.lp-btn svg { width: 15px; height: 15px; }
.lp-btn.primary {
  background: var(--accent);
  color: #052e14;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(34,197,94,.28), inset 0 1px 0 rgba(255,255,255,.22);
}
.lp-btn.primary:hover { background: var(--accent-strong); color: #fff; }
.lp-btn.ghost { background: transparent; border-color: transparent; }
.lp-btn.ghost:hover { background: var(--surface-hover); }
.lp-btn.lg { height: 46px; padding: 0 24px; font-size: 14.5px; border-radius: 10px; }
.lp-btn.sm { height: 34px; padding: 0 13px; font-size: 12.5px; }

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

/* ============================================================
   Hero
   ============================================================ */
.lp-hero { padding: 72px 0 80px; position: relative; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 56px;
  align-items: center;
}
.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 6px 5px 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.lp-hero-pill .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
}
.lp-hero-pill .tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
.lp-hero-pill .arrow { color: var(--text-faint); margin-right: 6px; }

.lp-hero h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 20px;
  text-wrap: balance;
}
.lp-hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.lp-hero-sub {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 30px;
  max-width: 520px;
  text-wrap: pretty;
}
.lp-hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-hero-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
}
.lp-hero-note .item { display: inline-flex; align-items: center; gap: 6px; }
.lp-hero-note .item svg { width: 14px; height: 14px; color: var(--accent); }

/* ---- Live demo monitor (hero right) ---- */
.lp-demo {
  position: relative;
}
.lp-demo-glow {
  position: absolute;
  inset: -12% -8% -18% -8%;
  background: radial-gradient(closest-side, rgba(34,197,94,.16), transparent 75%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.lp-demo-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.lp-demo-bar-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.lp-demo-dots { display: flex; gap: 6px; }
.lp-demo-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); display: block; }
.lp-demo-bar-top .ttl {
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  margin-left: 6px;
}
.lp-demo-bar-top .live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  color: var(--up);
  padding: 3px 9px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.lp-demo-bar-top .live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); box-shadow: 0 0 6px var(--up); animation: dotPulse 1.6s ease-in-out infinite; }

.lp-demo-body { padding: 18px; }
.lp-monitor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-monitor-fav {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: #fff;
  flex-shrink: 0;
}
.lp-monitor .name { font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 7px; }
.lp-monitor .url { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); margin-top: 1px; }

.lp-demo-statgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.lp-demo-statgrid .cell { background: var(--surface); padding: 12px 13px; }
.lp-demo-statgrid .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); font-weight: 600; }
.lp-demo-statgrid .val { font-size: 19px; font-weight: 600; margin-top: 4px; font-feature-settings: 'tnum'; letter-spacing: -0.01em; }
.lp-demo-statgrid .val.up { color: var(--up); }
.lp-demo-statgrid .val small { font-size: 11px; color: var(--text-faint); font-weight: 500; margin-left: 1px; }

.lp-demo-barsrow .row-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.lp-demo-barsrow .row-head .t { font-size: 11.5px; color: var(--text-dim); font-weight: 500; }
.lp-demo-barsrow .row-head .pct { font-size: 11.5px; color: var(--up); font-weight: 600; font-feature-settings: 'tnum'; }
.lp-demo-uptime {
  display: flex;
  gap: 2.5px;
  align-items: stretch;
  height: 34px;
}
.lp-demo-uptime .b {
  flex: 1;
  border-radius: 2px;
  background: var(--up);
  opacity: .9;
  transition: opacity .2s, background .2s;
}
.lp-demo-uptime .b.warn { background: var(--warn); }
.lp-demo-uptime .b.down { background: var(--down); }
.lp-demo-uptime .b.now { box-shadow: 0 0 0 2px var(--accent-ring); }
.lp-demo-foot {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--text-faint);
  margin-top: 7px; font-feature-settings: 'tnum';
}

.lp-demo-pings {
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-ping {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  opacity: 0;
  transform: translateY(4px);
  animation: pingIn .4s ease forwards;
}
.lp-ping .flag-dot { width: 18px; height: 13px; border-radius: 3px; flex-shrink: 0; border: 1px solid var(--border); }
.lp-ping .region { color: var(--text-dim); font-weight: 500; flex: 1; }
.lp-ping .ms { font-family: var(--font-mono); color: var(--text-faint); font-feature-settings: 'tnum'; }
.lp-ping .ok { color: var(--up); display: inline-flex; }
.lp-ping .ok svg { width: 14px; height: 14px; }
@keyframes pingIn { to { opacity: 1; transform: translateY(0); } }

/* floating alert toast over the demo */
.lp-demo-toast {
  position: absolute;
  right: -14px;
  bottom: 64px;
  z-index: 3;
  width: 244px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 12px 13px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  animation: toastFloat 5s ease-in-out infinite;
}
@keyframes toastFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.lp-demo-toast .ic {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #25D366;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.lp-demo-toast .ic svg { width: 18px; height: 18px; }
.lp-demo-toast .tt { font-size: 12px; font-weight: 600; }
.lp-demo-toast .tx { font-size: 11px; color: var(--text-dim); margin-top: 2px; line-height: 1.4; }
.lp-demo-toast .tm { font-size: 9.5px; color: var(--text-faint); margin-top: 4px; }

/* ============================================================
   Trust / metrics strip
   ============================================================ */
.lp-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elev) 50%, transparent);
}
.lp-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 30px 0;
}
.lp-strip .metric { text-align: center; }
.lp-strip .metric .v {
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
  background: linear-gradient(180deg, var(--text), var(--text-dim));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lp-strip .metric .l { font-size: 12.5px; color: var(--text-faint); margin-top: 4px; }
.lp-strip .metric + .metric { border-left: 1px solid var(--border); }

/* ============================================================
   Feature grid (bento)
   ============================================================ */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.lp-feature:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-feature.span-2 { grid-column: span 2; }
.lp-feat-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
  border: 1px solid var(--accent-ring);
}
.lp-feat-icon svg { width: 21px; height: 21px; }
.lp-feature h3 { margin: 0 0 7px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.lp-feature p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-dim); }
.lp-feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.lp-feat-tag {
  font-size: 11px; font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.lp-feat-tag.mono { font-family: var(--font-mono); }

/* feature accents */
.lp-feature[data-accent="indigo"] .lp-feat-icon { background: rgba(99,102,241,.12); color: #818cf8; border-color: rgba(99,102,241,.25); }
.lp-feature[data-accent="amber"] .lp-feat-icon { background: rgba(245,158,11,.12); color: var(--warn); border-color: rgba(245,158,11,.25); }
.lp-feature[data-accent="red"] .lp-feat-icon { background: rgba(239,68,68,.12); color: var(--down); border-color: rgba(239,68,68,.25); }

/* span-2 feature inner visual (status page strip) */
.lp-feat-vis {
  margin-top: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.lp-feat-vis-row { display: flex; align-items: center; gap: 10px; }
.lp-feat-vis-row + .lp-feat-vis-row { margin-top: 10px; }
.lp-feat-vis-row .nm { font-size: 12px; font-weight: 500; width: 116px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-feat-vis-row .mini-bars { display: flex; gap: 2px; flex: 1; height: 16px; }
.lp-feat-vis-row .mini-bars i { flex: 1; border-radius: 1px; background: var(--up); opacity: .85; }
.lp-feat-vis-row .mini-bars i.d { background: var(--down); }
.lp-feat-vis-row .mini-bars i.w { background: var(--warn); }
.lp-feat-vis-row .p { font-size: 11px; font-family: var(--font-mono); color: var(--up); font-feature-settings: 'tnum'; }

/* ============================================================
   Integrations showcase
   ============================================================ */
.lp-integrations { position: relative; }
.lp-int-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.lp-int-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-channel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s, background .2s;
  position: relative;
}
.lp-channel:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.lp-channel.featured {
  border-color: var(--accent-ring);
  background: linear-gradient(180deg, var(--accent-soft), var(--surface));
}
.lp-channel-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.lp-channel-logo svg { width: 21px; height: 21px; }
.lp-channel .cn { font-size: 13px; font-weight: 600; }
.lp-channel .cd { font-size: 11px; color: var(--text-faint); margin-top: -4px; line-height: 1.35; }
.lp-channel .star {
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--accent-ring);
  padding: 2px 7px; border-radius: 999px;
}

/* phone-style alert preview */
.lp-int-preview {
  background: linear-gradient(180deg, #0b3d2e, #07261d);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.lp-int-preview::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: radial-gradient(600px 120px at 50% -40px, rgba(37,211,102,.25), transparent 70%);
}
.lp-wa-head {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 6px 6px 14px;
}
.lp-wa-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.lp-wa-avatar svg { width: 20px; height: 20px; }
.lp-wa-title { color: #eafff4; font-weight: 600; font-size: 13.5px; }
.lp-wa-sub { color: rgba(234,255,244,.6); font-size: 11px; display: flex; align-items: center; gap: 5px; }
.lp-wa-sub .grp { display: inline-flex; align-items: center; gap: 4px; }
.lp-wa-body {
  position: relative;
  background: rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-wa-bubble {
  background: #075E54;
  background: linear-gradient(180deg, #0c6b5f, #075048);
  border-radius: 4px 12px 12px 12px;
  padding: 11px 13px;
  max-width: 92%;
  box-shadow: var(--shadow-sm);
}
.lp-wa-bubble.alt { align-self: flex-end; border-radius: 12px 4px 12px 12px; background: linear-gradient(180deg, #0a5247, #073c35); }
.lp-wa-bubble .wa-top { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.lp-wa-bubble .wa-status {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 7px; border-radius: 5px;
}
.lp-wa-bubble .wa-status.down { background: rgba(239,68,68,.2); color: #fca5a5; }
.lp-wa-bubble .wa-status.up { background: rgba(34,197,94,.22); color: #86efac; }
.lp-wa-bubble .wa-site { color: #eafff4; font-size: 12.5px; font-weight: 600; }
.lp-wa-bubble .wa-line { color: rgba(234,255,244,.82); font-size: 11.5px; line-height: 1.5; }
.lp-wa-bubble .wa-line b { color: #fff; font-weight: 600; }
.lp-wa-bubble .wa-meta { font-size: 9.5px; color: rgba(234,255,244,.5); text-align: right; margin-top: 5px; font-family: var(--font-mono); }
.lp-wa-bubble .wa-mono { font-family: var(--font-mono); }
.lp-wa-reply {
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
  background: rgba(0,0,0,.25);
  border-radius: 999px;
  padding: 8px 8px 8px 14px;
}
.lp-wa-reply input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: rgba(234,255,244,.7); font-size: 11.5px; font-family: inherit;
}
.lp-wa-reply .send { width: 28px; height: 28px; border-radius: 50%; background: #25D366; display: grid; place-items: center; color: #fff; }
.lp-wa-reply .send svg { width: 15px; height: 15px; }

/* ============================================================
   Status page preview
   ============================================================ */
.lp-statuspage {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.lp-sp-browser {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.lp-sp-browser .dots { display: flex; gap: 6px; }
.lp-sp-browser .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.lp-sp-url {
  flex: 1;
  max-width: 360px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  display: flex; align-items: center; gap: 7px;
}
.lp-sp-url svg { width: 11px; height: 11px; color: var(--up); }
.lp-sp-body { padding: 32px 36px 30px; }
.lp-sp-banner {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border: 1px solid var(--accent-ring);
  border-radius: var(--r-md);
  margin-bottom: 26px;
}
.lp-sp-banner .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--accent); color: #052e14;
  display: grid; place-items: center; flex-shrink: 0;
}
.lp-sp-banner .ic svg { width: 22px; height: 22px; }
.lp-sp-banner .bt { font-size: 17px; font-weight: 600; }
.lp-sp-banner .bs { font-size: 12.5px; color: var(--text-dim); margin-top: 1px; }
.lp-sp-banner .upd { margin-left: auto; font-size: 11px; color: var(--text-faint); text-align: right; }

.lp-sp-list { display: flex; flex-direction: column; }
.lp-sp-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 15px 2px;
  border-bottom: 1px solid var(--border);
}
.lp-sp-item:last-child { border-bottom: 0; }
.lp-sp-item .nm { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 9px; }
.lp-sp-item .nm .fav { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #fff; }
.lp-sp-item .st { font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.lp-sp-item .st.up { color: var(--up); }
.lp-sp-item .st.warn { color: var(--warn); }
.lp-sp-item .st .d { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.lp-sp-item .bars { grid-column: 1 / -1; display: flex; gap: 2px; height: 26px; }
.lp-sp-item .bars i { flex: 1; border-radius: 1.5px; background: var(--up); opacity: .82; }
.lp-sp-item .bars i.w { background: var(--warn); }
.lp-sp-item .bars i.d { background: var(--down); }
.lp-sp-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 11.5px; color: var(--text-faint);
}
.lp-sp-foot .regions { display: flex; align-items: center; gap: 6px; }
.lp-sp-foot .regions .flag-dot { width: 17px; height: 12px; border-radius: 2px; border: 1px solid var(--border); }

/* ============================================================
   How it works
   ============================================================ */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
  position: relative;
}
.lp-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
}
.lp-step-num {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}
.lp-step h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.lp-step p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-dim); }
.lp-step-arrow {
  position: absolute;
  top: 46px; right: -13px;
  z-index: 2;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-faint);
}
.lp-step-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   Cross-region map
   ============================================================ */
.lp-map-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 8px;
}
.lp-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: var(--r-lg);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(34,197,94,.06), transparent 70%),
    var(--bg-elev);
  overflow: hidden;
}
.lp-dotmap { position: absolute; inset: 0; width: 100%; height: 100%; }
.lp-dotmap circle { fill: var(--border-strong); }
.lp-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.lp-pin .ring {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(34,197,94,.22), 0 0 14px rgba(34,197,94,.7);
  position: relative;
}
.lp-pin .ring::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: .5;
  animation: pinPulse 2.4s ease-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes pinPulse {
  0% { transform: scale(.6); opacity: .6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.lp-pin .lbl {
  position: absolute;
  left: 50%; top: -8px;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-md);
}
.lp-pin .lbl .flag-dot { width: 15px; height: 11px; border-radius: 2px; border: 1px solid var(--border); }
.lp-pin .lbl .ms { font-family: var(--font-mono); color: var(--up); font-weight: 600; }
.lp-pin.core .ring { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18), 0 0 18px rgba(255,255,255,.6); width: 15px; height: 15px; }
.lp-pin.core .ring::after { border-color: #fff; }

.lp-map-legend {
  position: absolute;
  left: 18px; bottom: 16px;
  display: flex; align-items: center; gap: 16px;
  font-size: 11.5px; color: var(--text-dim);
  background: color-mix(in srgb, var(--bg-elev) 80%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
}
.lp-map-legend .k { display: inline-flex; align-items: center; gap: 6px; }
.lp-map-legend .k .sw { width: 9px; height: 9px; border-radius: 50%; }

/* ============================================================
   Pricing
   ============================================================ */
.lp-bill-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  margin: 0 auto 40px;
}
.lp-bill-toggle button {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.lp-bill-toggle button.active { background: var(--accent); color: #052e14; }
.lp-bill-toggle .save {
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.lp-bill-toggle button:not(.active) .save { background: var(--accent-soft); color: var(--accent); }

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.lp-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 60%, var(--surface)), var(--surface));
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px rgba(34,197,94,.16);
}
.lp-price-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  background: var(--accent); color: #052e14;
  box-shadow: 0 6px 16px rgba(34,197,94,.35);
}
.lp-price-name { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.lp-price-name .sw { width: 10px; height: 10px; border-radius: 50%; }
.lp-price-desc { font-size: 12.5px; color: var(--text-dim); margin: 6px 0 18px; line-height: 1.5; min-height: 36px; }
.lp-price-amt { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.lp-price-amt .cur { font-size: 22px; font-weight: 600; color: var(--text-dim); align-self: flex-start; margin-top: 6px; }
.lp-price-amt .num { font-size: 46px; font-weight: 700; letter-spacing: -0.03em; font-feature-settings: 'tnum'; line-height: 1; }
.lp-price-amt .per { font-size: 13px; color: var(--text-faint); }
.lp-price-billed { font-size: 11.5px; color: var(--text-faint); min-height: 17px; margin-bottom: 20px; }
.lp-price-billed .strike { text-decoration: line-through; opacity: .6; margin-right: 5px; }
.lp-price-cta { margin-bottom: 22px; }
.lp-price-cta .lp-btn { width: 100%; }
.lp-price-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-price-feats li { font-size: 13px; color: var(--text-dim); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.lp-price-feats li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.lp-price-feats li.muted { color: var(--text-faint); }
.lp-price-feats li.muted svg { color: var(--text-faint); }
.lp-price-feats .grp-lbl {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em; font-weight: 600;
  color: var(--text-faint); margin-top: 6px;
}
.lp-price-feats li b { color: var(--text); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq { max-width: 800px; margin: 0 auto; }
.lp-faq-item {
  border-bottom: 1px solid var(--border);
}
.lp-faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 4px;
  background: none; border: none;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}
.lp-faq-q .q-ico {
  margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: transform .25s, background .2s, color .2s;
  flex-shrink: 0;
}
.lp-faq-q .q-ico svg { width: 14px; height: 14px; }
.lp-faq-item.open .q-ico { transform: rotate(45deg); background: var(--accent); color: #052e14; border-color: transparent; }
.lp-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.lp-faq-a-inner { overflow: hidden; }
.lp-faq-item.open .lp-faq-a { grid-template-rows: 1fr; }
.lp-faq-a p {
  margin: 0;
  padding: 0 44px 24px 4px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ============================================================
   Final CTA
   ============================================================ */
.lp-cta {
  position: relative;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(34,197,94,.16), transparent 65%),
    linear-gradient(180deg, var(--bg-elev), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask: radial-gradient(closest-side at 50% 0%, black, transparent 80%);
  -webkit-mask: radial-gradient(closest-side at 50% 0%, black, transparent 80%);
}
.lp-cta-inner { position: relative; z-index: 1; }
.lp-cta h2 {
  font-size: 42px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 auto 16px; max-width: 580px; text-wrap: balance;
}
.lp-cta p { font-size: 16.5px; color: var(--text-dim); margin: 0 auto 30px; max-width: 460px; }
.lp-cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.lp-cta-sub { margin-top: 18px; font-size: 12.5px; color: var(--text-faint); }

/* ============================================================
   Footer
   ============================================================ */
.lp-footer {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding: 56px 0 36px;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 44px;
}
.lp-footer-brand .lp-brand { margin-bottom: 14px; }
.lp-footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.55; margin: 0 0 18px; max-width: 280px; }
.lp-foot-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-dim);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 12px;
}
.lp-foot-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--up); box-shadow: 0 0 6px var(--up); animation: dotPulse 2s ease-in-out infinite; }
.lp-foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-faint); margin: 0 0 14px; font-weight: 600; }
.lp-foot-col a { display: block; font-size: 13px; color: var(--text-dim); padding: 5px 0; transition: color .15s; }
.lp-foot-col a:hover { color: var(--text); }
.lp-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-faint);
  flex-wrap: wrap; gap: 14px;
}
.lp-footer-bottom .socials { display: flex; gap: 8px; }
.lp-footer-bottom .socials a {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--surface);
  display: grid; place-items: center; color: var(--text-dim);
  transition: all .15s;
}
.lp-footer-bottom .socials a:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-hover); }
.lp-footer-bottom .socials a svg { width: 16px; height: 16px; }

/* ============================================================
   Reveal on scroll — visible by default; JS adds .arm to hide
   below-the-fold elements, then .in to animate them in.
   ============================================================ */
.lp-reveal.arm { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.lp-reveal.arm.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lp-reveal.arm { opacity: 1; transform: none; transition: none; }
  .lp-pin .ring::after, .lp-demo-toast, .lp-ping { animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .lp-hero h1 { font-size: 46px; }
  .lp-bento { grid-template-columns: repeat(2, 1fr); }
  .lp-feature.span-2 { grid-column: span 2; }
  .lp-int-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-int-preview { max-width: 420px; margin: 0 auto; width: 100%; }
}
@media (max-width: 860px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .lp-demo { max-width: 480px; }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step-arrow { display: none; }
  .lp-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 28px; }
  .lp-strip .metric:nth-child(3) { border-left: 0; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .lp-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 940px) {
  .lp-nav-links { display: none; }
  .lp-nav-toggle { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text); }
}
@media (max-width: 680px) {
  .lp-wrap { padding: 0 18px; }
  .lp-section { padding: 64px 0; }
  .lp-nav-toggle { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text); }
  .lp-hero h1 { font-size: 38px; }
  .lp-hero-sub { font-size: 15.5px; }
  .lp-section-head h2 { font-size: 29px; }
  .lp-int-channels { grid-template-columns: repeat(2, 1fr); }
  .lp-bento { grid-template-columns: 1fr; }
  .lp-feature.span-2 { grid-column: span 1; }
  .lp-cta h2 { font-size: 30px; }
  .lp-cta { padding: 44px 22px; }
  .lp-sp-body { padding: 22px 18px; }
  .lp-demo-toast { right: 4px; bottom: 10px; }
  .lp-nav-actions .lp-btn.ghost { display: none; }
}
