/* ===== Oculuss Landing — Apple-style — scoped under .lp-page ===== */

.lp-page {
  /* Re-establish key tokens here so landing is self-contained */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-full: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-1: 0 1px 2px rgba(0,0,0,0.04), 0 1px 1px rgba(0,0,0,0.04);
  --shadow-2: 0 4px 14px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-3: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-popover: 0 24px 80px rgba(0,0,0,0.24), 0 8px 24px rgba(0,0,0,0.12);
}

/* Light mode — clean Apple */
.lp-page {
  --bg: #ffffff;
  --bg-2: #fafafa;
  --bg-3: #f5f5f7;
  --bg-section: #f5f5f7;
  --surface: rgba(255,255,255,0.78);
  --surface-solid: #ffffff;
  --hover: rgba(0,0,0,0.04);
  --pressed: rgba(0,0,0,0.08);
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --divider: rgba(0,0,0,0.06);
  --text: #1d1d1f;
  --text-secondary: #515154;
  --text-tertiary: #86868b;
  --text-quaternary: #a1a1a6;
  --accent: #0066D6;
  --accent-hover: #0052B0;
  --accent-soft: rgba(0,102,214,0.10);
  --accent-strong: #007AFF;
  --nav-bg: rgba(251,251,253,0.82);
  --gradient-hero:
    radial-gradient(ellipse at 20% 0%, rgba(10,132,255,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(94,92,230,0.08) 0%, transparent 55%);
  --price-card-bg: #ffffff;
  --price-recommended-bg: #1d1d1f;
  --price-recommended-text: #ffffff;
}

/* Dark mode — rich */
[data-theme="dark"] .lp-page {
  --bg: #000000;
  --bg-2: #0a0a0c;
  --bg-3: #131316;
  --bg-section: #0a0a0c;
  --surface: rgba(28, 28, 30, 0.72);
  --surface-solid: #1c1c1e;
  --hover: rgba(255,255,255,0.06);
  --pressed: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --divider: rgba(255,255,255,0.06);
  --text: #f5f5f7;
  --text-secondary: #c7c7cc;
  --text-tertiary: #8e8e93;
  --text-quaternary: #636366;
  --accent: #0A84FF;
  --accent-hover: #2898FF;
  --accent-soft: rgba(10,132,255,0.18);
  --accent-strong: #0A84FF;
  --nav-bg: rgba(10,10,12,0.72);
  --gradient-hero:
    radial-gradient(ellipse at 20% 0%, rgba(10,132,255,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(94,92,230,0.18) 0%, transparent 55%);
  --price-card-bg: #1c1c1e;
  --price-recommended-bg: #ffffff;
  --price-recommended-text: #1d1d1f;
}

:where(.lp-page), :where(.lp-page) *, :where(.lp-page) *::before, :where(.lp-page) *::after { box-sizing: border-box; }
.lp-page {
  position: fixed;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  scroll-behavior: smooth;
}
/* Resets con :where() → especificidad 0, no pisan las clases .lp-* */
:where(.lp-page) button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; padding: 0; }
:where(.lp-page) a { color: inherit; text-decoration: none; cursor: pointer; }
:where(.lp-page) input, :where(.lp-page) textarea { font: inherit; color: inherit; }

/* ===== Navigation ===== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-nav-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-nav-brand-name {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.lp-nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lp-nav-link {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--r-full);
  transition: all 120ms var(--ease-out);
}
.lp-nav-link:hover { color: var(--text); background: var(--hover); }
.lp-nav-cta {
  padding: 8px 16px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  transition: all 160ms var(--ease-out);
}
.lp-nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
/* Modo oscuro: pastilla gris oscura (no blanca). Modo claro: negra. */
[data-theme="dark"] .lp-page .lp-nav-cta { background: #2c2c2e; color: #fff; }
[data-theme="dark"] .lp-page .lp-nav-cta:hover { background: #3a3a3c; }
.lp-theme-toggle {
  display: inline-flex; align-items: center;
  width: 38px; height: 22px;
  background: var(--hover);
  border-radius: var(--r-full);
  padding: 2px;
  cursor: pointer;
  position: relative;
  margin-left: 4px;
}
.lp-theme-toggle .knob {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg-2);
  box-shadow: var(--shadow-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: transform 240ms var(--ease-out);
}
[data-theme="dark"] .lp-theme-toggle .knob { transform: translateX(16px); }

/* ===== Section frame ===== */
.lp-section {
  width: 100%;
  padding: 100px 32px 80px;
  position: relative;
}
.lp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: var(--r-full);
}
.lp-h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 18px;
  text-wrap: balance;
}
.lp-h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
  text-wrap: balance;
}
.lp-h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.lp-lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 32px;
  max-width: 640px;
  text-wrap: pretty;
}
.lp-gradient-text {
  background: linear-gradient(135deg, #0A84FF 0%, #5E5CE6 50%, #BF5AF2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Hero ===== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.lp-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(128,128,128,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,128,128,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.lp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 960px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.lp-hero-badge .new {
  padding: 2px 7px;
  background: var(--accent);
  color: white;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-hero-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 500;
  transition: all 160ms var(--ease-out);
  white-space: nowrap;
}
.lp-btn.primary {
  background: var(--accent);
  color: white;
}
.lp-btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10,132,255,0.3);
}
.lp-btn.ghost {
  background: var(--surface-solid);
  color: var(--text);
  border: 1px solid var(--border);
}
.lp-btn.ghost:hover {
  background: var(--hover);
  border-color: var(--border-strong);
}
.lp-btn.dark {
  background: var(--text);
  color: var(--bg);
}
.lp-btn.dark:hover { transform: translateY(-1px); }

.lp-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}
.lp-hero-stat {
  display: flex;
  flex-direction: column;
}
.lp-hero-stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Hero login card */
.lp-login-card {
  position: relative;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-3);
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}
@media (max-width: 960px) {
  .lp-login-card { margin: 0 auto; }
}
.lp-login-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(10,132,255,0.4), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.lp-login-head {
  margin-bottom: 22px;
}
.lp-login-head h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.lp-login-head p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.lp-field { margin-bottom: 14px; }
.lp-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 5px;
}
.lp-field-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 11px 14px;
  transition: all 120ms var(--ease-out);
}
.lp-field-input:focus-within {
  background: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.lp-field-input svg { color: var(--text-tertiary); flex: 0 0 14px; }
.lp-field-input input {
  flex: 1;
  border: 0; outline: 0;
  background: transparent;
  font-size: 14px;
  min-width: 0;
}
.lp-link {
  font-size: 12px;
  color: var(--accent-strong);
  font-weight: 500;
}
.lp-link:hover { text-decoration: underline; }

.lp-check {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 8px 0 18px;
  cursor: pointer;
  user-select: none;
}
.lp-check-box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  flex: 0 0 18px;
  transition: all 120ms var(--ease-out);
}
.lp-check-box.on { background: var(--accent); border-color: var(--accent); }

.lp-submit {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: white;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 160ms var(--ease-out);
}
.lp-submit:hover { background: var(--accent-hover); box-shadow: 0 6px 16px var(--accent-soft); }

.lp-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0;
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-divider::before, .lp-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--divider);
}

.lp-sso { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-sso-btn {
  padding: 9px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 120ms var(--ease-out);
}
.lp-sso-btn:hover { background: var(--hover); }

.lp-login-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== Showcase (animated app preview) ===== */
.lp-showcase {
  padding-top: 60px;
  padding-bottom: 100px;
}
.lp-window {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    0 12px 24px rgba(0,0,0,0.08),
    0 0 0 1px var(--border);
  overflow: hidden;
}
.lp-window-chrome {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 14px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.lp-window-traffic { display: flex; gap: 8px; }
.lp-window-traffic span {
  width: 12px; height: 12px; border-radius: 50%; display: block;
}
.lp-window-traffic span:nth-child(1) { background: #FF5F57; }
.lp-window-traffic span:nth-child(2) { background: #FEBC2E; }
.lp-window-traffic span:nth-child(3) { background: #28C840; }
.lp-window-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}
.lp-window-body {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  height: 540px;
  background: var(--bg);
}
.lp-window-sidebar {
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-2);
}
.lp-window-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 12px;
  color: var(--text-secondary);
  transition: background 120ms;
}
.lp-window-sidebar-item.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
}
.lp-window-sidebar-item .avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600;
  color: var(--text-tertiary);
}
.lp-window-sidebar-item.active .avatar { background: var(--accent); color: white; }
.lp-window-canvas {
  position: relative;
  background: radial-gradient(ellipse at center, #1a1a1c 0%, #060608 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lp-window-canvas svg {
  max-width: 80%;
  max-height: 80%;
  filter: drop-shadow(0 0 24px rgba(10,132,255,0.2));
}
.lp-window-canvas-overlay {
  position: absolute;
  top: 50%; left: 60%;
  width: 80px; height: 70px;
  border: 1.5px solid #0A84FF;
  border-radius: 4px;
  background: rgba(10,132,255,0.08);
  animation: pulseBox 2s ease-in-out infinite;
}
@keyframes pulseBox {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10,132,255,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(10,132,255,0); }
}
.lp-window-canvas-label {
  position: absolute;
  top: 50%; left: 60%;
  transform: translateY(calc(-100% - 8px));
  background: #0A84FF;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}
.lp-window-canvas-corner {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.lp-window-canvas-corner.tr { left: auto; right: 12px; text-align: right; }
.lp-window-chat {
  border-left: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
}
.lp-window-chat-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.lp-window-chat-orb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #0A84FF, #BF5AF2, #FF375F, #FF9F0A, #30D158, #64D2FF, #0A84FF);
  filter: blur(0.3px);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lp-window-chat-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.lp-chat-msg {
  padding: 8px 12px;
  background: var(--bg-3);
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 88%;
  border: 1px solid var(--border);
}
.lp-chat-msg.user {
  align-self: flex-end;
  background: var(--accent);
  color: white;
  border-color: transparent;
}
.lp-chat-msg .finding {
  background: rgba(255,159,10,0.18);
  color: #FF9F0A;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* ===== Audiences section ===== */
.lp-audiences {
  background: var(--bg-section);
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.lp-tab-row {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}
.lp-tab-row::-webkit-scrollbar { display: none; }
.lp-tab {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: all 200ms var(--ease-out);
  position: relative;
  z-index: 1;
}
.lp-tab.active {
  color: white;
}
.lp-tab-pill {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background: var(--accent);
  border-radius: var(--r-full);
  transition: left 320ms var(--ease-out), width 320ms var(--ease-out), background 320ms var(--ease-out);
  z-index: 0;
}

.lp-audience-card {
  position: relative;
  background: #0a0a0c;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 480px;
  transition: background 320ms var(--ease-out);
}
@media (max-width: 880px) {
  .lp-audience-card { grid-template-columns: 1fr; min-height: 0; }
}
.lp-audience-side {
  padding: 48px 48px 48px;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-audience-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--audience-gradient, linear-gradient(135deg, #0A84FF, #5E5CE6));
  z-index: 0;
}
.lp-audience-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.25) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0,0,0,0.25) 0%, transparent 40%);
  z-index: 0;
}
.lp-audience-side > * { position: relative; z-index: 1; }
.lp-audience-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.lp-audience-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: white;
  text-wrap: balance;
}
.lp-audience-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
  max-width: 380px;
}
.lp-audience-cta {
  margin-top: 28px;
}
.lp-audience-cta .lp-btn {
  background: white;
  color: #1d1d1f;
}
.lp-audience-cta .lp-btn:hover { background: #f5f5f7; }

.lp-audience-features {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #0a0a0c;
  color: white;
  justify-content: center;
}
[data-theme="light"] .lp-audience-features { background: #18181a; }
.lp-audience-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-audience-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--audience-color, #0A84FF);
  flex: 0 0 24px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.lp-audience-feature-text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
.lp-audience-feature-text strong { color: white; font-weight: 600; }

/* ===== Features grid ===== */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.lp-feature {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 200ms var(--ease-out);
}
.lp-feature:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-2);
}
.lp-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--accent-soft);
  color: var(--accent);
}
.lp-feature h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.lp-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ===== Pricing ===== */
.lp-pricing {
  background: var(--bg-section);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 40px auto 0;
}
@media (max-width: 720px) {
  .lp-price-grid { grid-template-columns: 1fr; }
}
.lp-price-card {
  padding: 32px;
  background: var(--price-card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  transition: all 200ms var(--ease-out);
}
.lp-price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.lp-price-card.featured {
  position: relative;
  background: var(--price-recommended-bg);
  color: var(--price-recommended-text);
  border-color: var(--price-recommended-bg);
}
.lp-price-card.featured .lp-price-name { color: var(--price-recommended-text); }
.lp-price-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--accent);
  color: white;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  align-self: flex-start;
}
.lp-price-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.lp-price-card.featured .lp-price-name { color: rgba(255,255,255,0.55); }
[data-theme="light"] .lp-price-card.featured .lp-price-name { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .lp-price-card.featured .lp-price-name { color: rgba(0,0,0,0.55); }

.lp-price-amount {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 14px;
}
.lp-price-num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.lp-price-period {
  font-size: 14px;
  color: var(--text-tertiary);
}
.lp-price-card.featured .lp-price-period { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .lp-price-card.featured .lp-price-period { color: rgba(0,0,0,0.5); }
.lp-price-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 24px;
}
.lp-price-card.featured .lp-price-desc { color: rgba(255,255,255,0.78); }
[data-theme="dark"] .lp-price-card.featured .lp-price-desc { color: rgba(0,0,0,0.7); }

.lp-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-price-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
}
.lp-price-feature svg {
  flex: 0 0 16px;
  color: var(--accent);
  margin-top: 2px;
}
.lp-price-card.featured .lp-price-feature svg { color: var(--accent-strong); }

.lp-price-cta {
  margin-top: auto;
}
.lp-price-cta .lp-btn { width: 100%; justify-content: center; }
.lp-price-card.featured .lp-btn.primary { background: var(--accent); }

/* Tokens visual */
.lp-tokens {
  margin: 32px auto 0;
  max-width: 880px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.lp-tokens h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
}
.lp-tokens > p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.lp-token-bar {
  margin: 10px 0;
}
.lp-token-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.lp-token-bar-label strong { color: var(--text); font-weight: 600; }
.lp-token-bar-track {
  height: 6px;
  background: var(--hover);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.lp-token-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 800ms var(--ease-out);
}
.lp-token-bar-fill.free { background: linear-gradient(90deg, #8e8e93, #BF5AF2); width: 2%; }
.lp-token-bar-fill.pro  { background: linear-gradient(90deg, #0A84FF, #BF5AF2, #FF375F); width: 100%; }

/* ===== Checkout modal ===== */
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 200ms var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lp-modal {
  width: 100%;
  max-width: 480px;
  background: var(--surface-solid);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-popover);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: modalIn 320ms var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--divider);
}
.lp-modal-head-info { display: flex; align-items: center; gap: 12px; }
.lp-modal-head-back {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: background 120ms;
}
.lp-modal-head-back:hover { background: var(--pressed); }
.lp-modal-head-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lp-modal-head-sub {
  font-size: 12px;
  color: var(--text-tertiary);
}
.lp-modal-head-secure {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

.lp-modal-body {
  padding: 22px;
}
.lp-modal-body > p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.lp-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.lp-pay-option {
  padding: 18px;
  background: var(--bg-3);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: all 160ms var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lp-pay-option:hover { background: var(--hover); }
.lp-pay-option.selected {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.lp-pay-logo {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
}
.lp-pay-logo.card { background: linear-gradient(135deg, #0A84FF, #5E5CE6); }
.lp-pay-logo.nequi { background: #A0298C; }
.lp-pay-logo.daviplata { background: #E1251B; }
.lp-pay-logo.banco { background: #FFD500; color: #1d1d1f; }
.lp-pay-option-label { font-size: 13px; font-weight: 500; }
.lp-pay-option.selected .lp-pay-option-label { color: var(--accent); font-weight: 600; }

.lp-pay-summary {
  background: var(--bg-3);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-pay-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}
.lp-pay-summary-row.total {
  padding-top: 8px;
  border-top: 1px solid var(--divider);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.lp-pay-summary-row.total strong { font-weight: 700; }

.lp-pay-foot-note {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  margin: 14px 0 0;
}

.lp-card-row {
  display: grid; gap: 12px;
  margin-bottom: 14px;
}
.lp-card-row.two { grid-template-columns: 1fr 1fr; }
.lp-card-brands {
  display: flex; gap: 4px;
  margin-left: auto;
}
.lp-card-brand {
  padding: 2px 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
}

.lp-modal-footer-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 12px 22px 18px;
  border-top: 1px solid var(--divider);
  background: var(--bg-3);
  font-size: 10px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Footer ===== */
.lp-footer {
  padding: 56px 32px 32px;
  border-top: 1px solid var(--divider);
  background: var(--bg);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
}
.lp-footer-grid {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  text-align: left;
}
@media (max-width: 720px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
.lp-footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
}
.lp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lp-footer-col a { color: var(--text-secondary); transition: color 120ms; font-size: 13px; }
.lp-footer-col a:hover { color: var(--accent); }
.lp-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

/* Scroll reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.lp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .lp-reveal { opacity: 1; transform: none; }
}

/* ===== Glass modal (login + demo) ===== */
.lp-glass-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: glassIn 280ms var(--ease-out);
}
[data-theme="light"] .lp-glass-overlay { background: rgba(20,20,30,0.35); }
@keyframes glassIn { from { opacity: 0; } to { opacity: 1; } }

.lp-glass-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 36px 36px 28px;
  border-radius: 24px;
  background: var(--glass-bg, rgba(28, 28, 30, 0.55));
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.10);
  color: var(--text);
  animation: glassModalIn 380ms var(--ease-out);
}
[data-theme="light"] .lp-glass-modal {
  background: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.5);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,1);
}
@keyframes glassModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-glass-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hover);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 120ms;
  z-index: 2;
}
.lp-glass-close:hover {
  background: var(--pressed);
  color: var(--text);
}

.lp-glass-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider);
}

/* Demo modal — wider */
.lp-demo-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding: 32px;
  border-radius: 24px;
  background: var(--glass-bg, rgba(20, 20, 22, 0.65));
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.10);
  color: var(--text);
  animation: glassModalIn 380ms var(--ease-out);
}
[data-theme="light"] .lp-demo-modal {
  background: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.5);
}

.lp-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-demo-head { margin-bottom: 20px; }

.lp-demo-stage {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  margin-bottom: 18px;
}

.lp-demo-canvas {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.lp-demo-canvas.viewer {
  background: radial-gradient(ellipse at center, #1a1a1c 0%, #060608 100%);
  align-items: center;
  justify-content: center;
}

.lp-demo-sidebar {
  width: 200px;
  padding: 16px 8px;
  border-right: 1px solid var(--border);
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.lp-demo-content {
  flex: 1;
  padding: 24px 28px;
  overflow-y: auto;
}

.lp-demo-toolbar {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(28,28,30,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  z-index: 2;
}
.lp-demo-tool {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.78);
}
.lp-demo-tool.active {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(10,132,255,0.4);
}

.lp-demo-img {
  width: min(380px, 70%);
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-demo-corner {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.lp-demo-corner.tr { left: auto; right: 14px; text-align: right; }

.lp-demo-viewer-small {
  width: 240px;
  height: 100%;
  background: radial-gradient(ellipse at center, #1a1a1c 0%, #060608 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.lp-demo-viewer-small svg { max-width: 90%; max-height: 90%; }

.lp-demo-chat {
  flex: 1;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lp-demo-chat-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.lp-demo-paper {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  flex: 1;
  margin: 12px;
  overflow-y: auto;
}

.lp-demo-foot {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-demo-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 160ms var(--ease-out);
}
.lp-demo-arrow:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: scale(1.05);
}
.lp-demo-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lp-demo-progress {
  flex: 1;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.lp-demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hover);
  border: 0;
  cursor: pointer;
  transition: all 240ms var(--ease-out);
  padding: 0;
}
.lp-demo-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 999px;
}

/* ====== LaniakeaBlock — acceso a LaniakeaCare dentro de tarjeta de plan ====== */
.lp-laniakea-block {
  margin: 16px 0 18px;
  padding: 14px 15px;
  border-radius: var(--r-lg);
  background: rgba(10,132,255,0.07);
  border: 1px solid rgba(10,132,255,0.22);
}
.lp-laniakea-header {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
}
.lp-laniakea-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 1px;
  background: linear-gradient(135deg, #0A84FF, #5E5CE6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-laniakea-title {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0A84FF;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  line-height: 1.2;
}
.lp-laniakea-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: rgba(10,132,255,0.10);
  color: #0A84FF;
  border: 1px solid rgba(10,132,255,0.28);
}
.lp-laniakea-items {
  margin: 0; padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-laniakea-items li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.lp-laniakea-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0A84FF;
  margin-top: 5.5px;
}

/* Featured en LIGHT theme → fondo oscuro → texto blanco */
.lp-price-card.featured .lp-laniakea-block {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.lp-price-card.featured .lp-laniakea-title { color: rgba(255,255,255,0.96); }
.lp-price-card.featured .lp-laniakea-badge {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.24);
}
.lp-price-card.featured .lp-laniakea-items li { color: rgba(255,255,255,0.74); }
.lp-price-card.featured .lp-laniakea-dot { background: rgba(255,255,255,0.50); }

/* Featured en DARK theme → fondo blanco → texto oscuro */
[data-theme="dark"] .lp-price-card.featured .lp-laniakea-block {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.13);
}
[data-theme="dark"] .lp-price-card.featured .lp-laniakea-title { color: rgba(0,0,0,0.82); }
[data-theme="dark"] .lp-price-card.featured .lp-laniakea-badge {
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.72);
  border-color: rgba(0,0,0,0.18);
}
[data-theme="dark"] .lp-price-card.featured .lp-laniakea-items li { color: rgba(0,0,0,0.62); }
[data-theme="dark"] .lp-price-card.featured .lp-laniakea-dot { background: rgba(0,0,0,0.36); }
