/* ─── Landing Page — EquiSense ────────────────────────────────────────────── */

/* ─── Design tokens ───────────────────────────────────────────────────────── */
:root, :root[data-theme="dark"] {
  --bg: #0c0e14;
  --bg-elevated: #11141b;
  --card-bg: #161923;
  --border: rgba(255,255,255,0.08);
  --text-primary: #e6e8ed;
  --text-secondary: #b0b5c0;
  --text-tertiary: #8b95a5;
  --accent: #34d399;
  --green: #34d399;
  --red: #f87171;
  --amber: #fbbf24;
  --blue: #60a5fa;
  --on-accent: #000;
  --tint-4: rgba(255,255,255,0.04);
  --tint-5: rgba(255,255,255,0.05);
  --tint-6: rgba(255,255,255,0.06);
  --tint-8: rgba(255,255,255,0.08);
  --tint-12: rgba(255,255,255,0.12);
  --overlay-bg: rgba(0,0,0,0.6);
  --shadow-modal: 0 24px 80px rgba(0,0,0,0.5);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
}
:root[data-theme="light"] {
  --bg: #f8f9fb;
  --bg-elevated: #ffffff;
  --card-bg: #ffffff;
  --border: rgba(0,0,0,0.08);
  --text-primary: #1a1d26;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  --accent: #059669;
  --green: #059669;
  --red: #dc2626;
  --amber: #d97706;
  --blue: #2563eb;
  --on-accent: #fff;
  --tint-4: rgba(0,0,0,0.03);
  --tint-5: rgba(0,0,0,0.04);
  --tint-6: rgba(0,0,0,0.05);
  --tint-8: rgba(0,0,0,0.06);
  --tint-12: rgba(0,0,0,0.08);
  --overlay-bg: rgba(0,0,0,0.4);
  --shadow-modal: 0 24px 80px rgba(0,0,0,0.15);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

/* ─── Fonts ───────────────────────────────────────────────────────────────── */
/* Google Fonts loaded via <link> in HTML <head> to avoid render-blocking @import waterfall */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body.lp-body {
  font-family: 'Lexend', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent); color: var(--on-accent); }

/* ─── Animations ──────────────────────────────────────────────────────────── */
@keyframes lp-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes lp-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(52,211,153,0.15); }
  50% { box-shadow: 0 0 40px rgba(52,211,153,0.15), 0 0 80px rgba(52,211,153,0.05); }
}
@keyframes lp-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.lp-anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-anim-up.lp-vis {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Container ───────────────────────────────────────────────────────────── */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.lp-header.lp-header-scrolled {
  background: rgba(248,250,249,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
:root[data-theme="dark"] .lp-header.lp-header-scrolled {
  background: rgba(6,8,12,0.92);
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-header-logo { border-radius: 6px; }
.lp-header-brand-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'DM Serif Display', Georgia, serif;
}
.lp-brand-accent { color: var(--accent); }
.lp-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-header-link {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: none;
  border-radius: 7px;
  transition: all 0.2s;
  font-family: 'Lexend', sans-serif;
  position: relative;
}
.lp-header-link:hover {
  color: var(--text-secondary);
  background: var(--tint-4);
}
.lp-header-link.active {
  color: var(--accent);
  font-weight: 700;
  background: rgba(52,211,153,0.08);
}
:root[data-theme="light"] .lp-header-link.active {
  background: rgba(5,150,105,0.06);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-header-theme-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--tint-4);
  color: var(--text-tertiary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lp-header-theme-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lp-header-pricing-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.2s;
}
.lp-header-pricing-link:hover {
  color: var(--text-secondary);
  background: var(--tint-4);
}
.lp-header-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.lp-header-login-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52,211,153,0.2);
}
:root[data-theme="light"] .lp-header-login-btn:hover {
  box-shadow: 0 4px 12px rgba(5,150,105,0.2);
}

.lp-header-mobile-toggle { display: none; }
.lp-header-mobile-menu { display: none; }

@media (max-width: 768px) {
  .lp-header-nav { display: none; }
  .lp-header-pricing-link { display: none; }
  /* Mobile: keep Login visible OUTSIDE the hamburger so users don't have to
     open a menu just to log in (drops conversion on the highest-intent action). */
  .lp-header-login-btn {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 8px;
  }
  .lp-header-login-btn span { display: none; }  /* drop arrow to keep button tight */
  .lp-header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
  }
  .lp-header-mobile-menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 12px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  :root[data-theme="light"] .lp-header-mobile-menu {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .lp-header-mobile-menu.open { display: flex; }
  .lp-header-mobile-menu a {
    padding: 11px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s;
  }
  .lp-header-mobile-menu a:hover { background: var(--tint-4); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 24px;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp-hero-orb-1 {
  position: absolute;
  top: 10%; left: 10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.03), transparent 70%);
  filter: blur(80px);
  animation: lp-float 8s ease-in-out infinite;
}
.lp-hero-orb-2 {
  position: absolute;
  bottom: 5%; right: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.03), transparent 70%);
  filter: blur(60px);
  animation: lp-float 10s ease-in-out infinite 2s;
}
:root[data-theme="light"] .lp-hero-orb-1 {
  background: radial-gradient(circle, rgba(5,150,105,0.05), transparent 70%);
}
:root[data-theme="light"] .lp-hero-orb-2 {
  background: radial-gradient(circle, rgba(37,99,235,0.04), transparent 70%);
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 50% 45% at 50% 35%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 50% 45% at 50% 35%, black, transparent);
}
:root[data-theme="light"] .lp-hero-grid { opacity: 0.4; }

.lp-hero > .lp-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lp-hero-center {
  text-align: center;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: lp-fadeUp 0.8s ease both;
}

.lp-hero-tagline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.lp-accent { color: var(--accent); }

/* Live-filing ticker — typewriter effect above the search box. Shows one  */
/* filing at a time from /api/v1/landing/live-feed. Fixed min-height so    */
/* typing/deleting doesn't reflow the hero. Pulse-coloured dot + blinking  */
/* caret sell the "live" feel.                                             */
.lp-hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-secondary);
  background: var(--tint-4);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px 6px 12px;
  margin: 0 auto 24px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: -0.01em;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lp-hero-ticker-icon {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.2);
  animation: lp-ticker-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-ticker-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.lp-hero-ticker-text {
  display: inline-block;
}
.lp-hero-ticker-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: lp-caret-blink 1s steps(2) infinite;
}
@keyframes lp-caret-blink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero-ticker-icon { animation: none; }
  .lp-hero-ticker-caret { animation: none; opacity: 0.5; }
}

/* Hero CTAs */
.lp-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.lp-hero-ctas .lp-btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}
.lp-hero-search {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 320px;
  position: relative;
  z-index: 10;
}
.lp-hero-search-full {
  max-width: 680px;
  width: 100%;
}
.lp-hero-search-full .search-box {
  border-radius: 18px 0 0 18px;
  padding: 6px 0;
}
.lp-search-icon {
  margin-left: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.lp-hero-search-full .search-input {
  font-size: 17px;
  padding: 20px 18px;
}
.lp-hero-search-full .search-btn {
  border-radius: 0 18px 18px 0;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: filter 0.2s, background 0.2s;
}
.lp-hero-search-full .search-btn:hover {
  filter: brightness(0.94);
}
.lp-btn-pricing {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.lp-btn-pricing:hover {
  background: var(--accent);
  color: var(--on-accent);
}
.lp-hero-search .search-container {
  max-width: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-hero-search .search-box {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px 0 0 10px;
  border-right: none;
}
.lp-hero-search .search-btn {
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  flex-shrink: 0;
  min-width: auto;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: filter 0.2s;
}
.lp-hero-search .search-btn:hover { filter: brightness(1.1); }
.lp-hero-search .search-input {
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  padding: 11px 14px;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  width: 100%;
  text-align: center;
}
.lp-hero-search .search-input:focus { text-align: left; }
.lp-hero-search .search-input::placeholder { color: var(--text-tertiary); }
.lp-hero-search .suggestions-list {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  z-index: 20;
  display: none;
  max-height: 280px;
  overflow-y: auto;
}
.lp-hero-search .suggestions-list.show { display: block; }
.suggestion-item {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.suggestion-item:hover { background: var(--tint-5); }
.suggestion-company {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.suggestion-symbol {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* Trust ticker — chips scroll horizontally on a single line. Track holds two */
/* identical sets so the animation loop is seamless: translateX(-50%) lands  */
/* the second set's first chip exactly where the first set's first chip was. */
.lp-hero-trust {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}
.lp-trust-track {
  display: flex;
  width: max-content;
  animation: lp-trust-scroll 32s linear infinite;
  will-change: transform;
}
.lp-trust-track:hover { animation-play-state: paused; }
.lp-trust-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
@keyframes lp-trust-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-trust-track { animation: none; }
}
.lp-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  padding: 0 16px;
  flex-shrink: 0;
  white-space: nowrap;
}
.lp-trust-chip svg { flex-shrink: 0; }
.lp-trust-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.2);
  animation: lp-ticker-pulse 1.6s ease-in-out infinite;
}
:root[data-theme="light"] .lp-trust-dot {
  box-shadow: 0 0 0 3px rgba(5,150,105,0.2);
}
@media (prefers-reduced-motion: reduce) {
  .lp-trust-dot { animation: none; }
}

/* Live-users pill — sits at top of the hero. Synthetic count, time-banded:   */
/*   30–90 between 9am–9pm IST, 3–28 otherwise. Shape mirrors lp-trust-chip.  */
.lp-live-users {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
:root[data-theme="light"] .lp-live-users {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.22);
}
.lp-live-users-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
  animation: lp-ticker-pulse 1.6s ease-in-out infinite;
}
:root[data-theme="light"] .lp-live-users-dot {
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.22);
}
.lp-live-users strong {
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.lp-live-users-label {
  color: var(--text-secondary, var(--accent));
  opacity: 0.85;
}
@media (max-width: 480px) {
  .lp-live-users {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-live-users-dot { animation: none; }
}

/* Mobile-only signal carousels — horizontal scroll-snap strip showing sample */
/* WhatsApp delivery cards. Hidden on desktop. Track full-bleeds the hero     */
/* container so cards can peek off-screen on either side, hinting "swipe →".   */
.lp-carousels { display: none; }

/* Scroll hint */
.lp-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  opacity: 0.5;
  animation: lp-bob 2s ease-in-out infinite;
}

/* Hero stats — merged into trust chips row */

/* Disclaimer — pinned to bottom of hero viewport */
.lp-hero-disclaimer {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 1;
  animation: lp-fadeUp 1s ease 0.5s both;
}
.lp-hero-disclaimer p {
  font-size: 11px;
  color: var(--text-tertiary);
  opacity: 0.5;
  text-align: center;
}
.lp-hero-disclaimer a {
  color: var(--text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-hero-disclaimer a:hover { opacity: 0.8; }

/* Legacy stats strip class (kept for backward compat) */
.lp-stats {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.lp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.lp-stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(52,211,153,0.15);
}
.lp-stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.lp-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-product {
  padding: 96px 0;
  scroll-margin-top: 20px;
}
.lp-product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 590px;
}
.lp-product--reverse .lp-product-split {
  direction: rtl;
}
.lp-product--reverse .lp-product-split > * {
  direction: ltr;
}

/* Section badge */
.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 16px;
  background: rgba(52,211,153,0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
:root[data-theme="light"] .lp-section-badge {
  background: rgba(5,150,105,0.06);
}
.lp-section-badge svg { flex-shrink: 0; }
.lp-section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.lp-section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.lp-section-heading p {
  font-size: 15px;
  color: var(--text-tertiary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Product text */
.lp-product-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.lp-product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}
.lp-product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.lp-product-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
/* Bullet marker for feature lists. One neutral colour across all four     */
/* product sections — the dots punctuate, they don't encode meaning, so    */
/* rotating four accent colours was decorative noise. Legacy .lp-dot-*     */
/* classes still appear in markup; kept as no-ops so the HTML needn't      */
/* change.                                                                 */
.lp-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
  background: var(--text-tertiary);
  opacity: 0.6;
}
.lp-dot-green,
.lp-dot-red,
.lp-dot-blue,
.lp-dot-amber { background: var(--text-tertiary); }
.lp-product-features strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}
.lp-product-features span {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOCKUP SHARED
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-product-visual {
  perspective: 1000px;
  filter: drop-shadow(0 0 40px rgba(52,211,153,0.03));
}
.lp-color-green { color: var(--green); }
.lp-color-red { color: var(--red); }

/* ── Alerts Mockup ────────────────────────────────────────────────────────── */
.lp-mockup-alerts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Phone mockup — used in the landing "Alerts" product section.         */
/* Replaces the earlier 3-card screener. Thematically tighter: the product */
/* IS WhatsApp notifications, so the visual is a phone. Live cards are     */
/* populated from /api/v1/landing/live-feed and duplicated at runtime for  */
/* a seamless vertical marquee. Pause-on-hover and reduced-motion fallback.*/
.lp-phone {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 34px;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
}
.lp-phone-notch {
  width: 80px;
  height: 22px;
  background: var(--bg);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.lp-phone-screen {
  background: var(--bg);
  border-radius: 24px;
  padding: 14px 12px;
}
.lp-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.lp-phone-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-phone-header-text { flex: 1; }
.lp-phone-header-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}
.lp-phone-header-status {
  font-size: 0.66rem;
  color: var(--accent);
}
.lp-phone-msg-list {
  position: relative;
  max-height: 360px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 0%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 86%, transparent 100%);
}
.lp-phone-msg-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: lp-phone-scroll 54s linear infinite;
  /* will-change omitted deliberately — forcing a permanent GPU           */
  /* compositor layer on an infinite animation causes iOS Safari to      */
  /* white-screen the element when it's scrolled off and back on-view.   */
  /* JS pauses the animation off-screen via IntersectionObserver, which  */
  /* is the bigger win for battery + repaint correctness.                */
}
.lp-phone-msg-list:hover .lp-phone-msg-track,
.lp-phone-msg-list:focus-within .lp-phone-msg-track {
  animation-play-state: paused;
}
/* Off-screen pause — set/removed by the IntersectionObserver in         */
/* initAlertsFeed(). Prevents iOS from accumulating a stale composited   */
/* layer while the phone is not visible.                                 */
.lp-phone-msg-track.lp-phone-paused {
  animation-play-state: paused;
}
@keyframes lp-phone-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-phone-msg-track { animation: none; }
  .lp-phone-msg-list { mask-image: none; -webkit-mask-image: none; }
}

/* WhatsApp-style message bubbles (inside the phone screen) */
.lp-msg {
  background: var(--card-bg);
  border-radius: 10px 10px 10px 4px;
  padding: 9px 11px;
  position: relative;
}
.lp-msg-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.lp-msg-tag-green { background: rgba(52,211,153,0.15); color: var(--accent); }
.lp-msg-tag-red   { background: rgba(248,113,113,0.15); color: var(--red); }
.lp-msg-tag-blue  { background: rgba(96,165,250,0.15); color: var(--blue); }
:root[data-theme="light"] .lp-msg-tag-green { background: rgba(5,150,105,0.12); color: #059669; }
:root[data-theme="light"] .lp-msg-tag-red   { background: rgba(220,38,38,0.1);  color: #dc2626; }
:root[data-theme="light"] .lp-msg-tag-blue  { background: rgba(37,99,235,0.1);  color: #2563eb; }
.lp-msg-stock {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.lp-msg-stock-period {
  font-size: 0.66rem;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-left: 4px;
}
.lp-msg-body {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.lp-msg-time {
  font-size: 0.58rem;
  color: var(--text-tertiary);
  text-align: right;
  margin-top: 4px;
}
.lp-msg-check {
  color: #53bdeb;
  margin-left: 4px;
}
.lp-mock-alert {
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-mock-alert:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.lp-mock-alert { transition: transform 0.5s ease, box-shadow 0.3s, opacity 0.6s ease; }
.lp-mock-alert-1 { transform: rotate(-0.5deg); transition-delay: 0s; }
.lp-mock-alert-2 { transform: rotate(0.3deg); transition-delay: 0.15s; }
.lp-mock-alert-3 { transform: rotate(-0.2deg); transition-delay: 0.3s; }

.lp-mock-alert-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lp-mock-alert-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-icon-green { background: rgba(52,211,153,0.12); color: var(--green); }
.lp-mock-icon-red { background: rgba(248,113,113,0.12); color: var(--red); }
.lp-mock-icon-blue { background: rgba(96,165,250,0.12); color: var(--blue); }
:root[data-theme="light"] .lp-mock-icon-green { background: rgba(5,150,105,0.1); }
:root[data-theme="light"] .lp-mock-icon-red { background: rgba(220,38,38,0.1); }
:root[data-theme="light"] .lp-mock-icon-blue { background: rgba(37,99,235,0.1); }

.lp-mock-alert-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lp-badge-green { background: rgba(52,211,153,0.1); color: var(--green); }
.lp-badge-red { background: rgba(248,113,113,0.1); color: var(--red); }
.lp-badge-blue { background: rgba(96,165,250,0.1); color: var(--blue); }
:root[data-theme="light"] .lp-badge-green { background: rgba(5,150,105,0.08); }
:root[data-theme="light"] .lp-badge-red { background: rgba(220,38,38,0.08); }
:root[data-theme="light"] .lp-badge-blue { background: rgba(37,99,235,0.08); }

.lp-mock-alert-time {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-tertiary);
}
.lp-mock-alert-stock {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lp-mock-alert-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-mock-alert-price {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.lp-mock-alert-price span { font-size: 11px; }
.lp-mock-alert-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.lp-mock-metric-label {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.lp-mock-metric-val {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.lp-mock-metric-val span { font-size: 11px; }
.lp-mock-alert-verdict {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.5;
}
.lp-mock-verdict-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.lp-mock-verdict-label-red { color: var(--red); }
.lp-mock-alert-verdict-red { border-left: 2px solid var(--red); padding-left: 12px; }

/* ── Discover Mockup ──────────────────────────────────────────────────────── */
.lp-mockup-discover {
  padding: 24px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.lp-mock-disc-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.lp-mock-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.lp-mock-pick {
  padding: 16px 14px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.lp-mock-pick:hover {
  transform: translateY(-2px);
  border-color: var(--tint-12);
}
.lp-mock-pick-sym {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lp-mock-pick-score {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.lp-mock-score-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: conic-gradient(
    var(--ring-color, var(--accent)) calc(var(--score, 0) * 1%),
    var(--border) calc(var(--score, 0) * 1%)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lp-mock-score-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg);
}
.lp-mock-score-ring span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: var(--accent);
}
.lp-mock-pick-price {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.lp-mock-pick-price span { font-size: 10px; }
.lp-mock-pick-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(52,211,153,0.1);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-mock-tag-blue {
  background: rgba(96,165,250,0.1);
  color: var(--blue);
}
:root[data-theme="light"] .lp-mock-pick-tag { background: rgba(5,150,105,0.08); }
:root[data-theme="light"] .lp-mock-tag-blue { background: rgba(37,99,235,0.08); }

/* Theme card */
.lp-mock-theme {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.lp-mock-theme-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.lp-mock-theme-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(251,191,36,0.12);
  color: var(--amber);
  text-transform: uppercase;
}
:root[data-theme="light"] .lp-mock-theme-badge { background: rgba(217,119,6,0.1); }
.lp-mock-theme-name {
  font-size: 13px;
  font-weight: 700;
}
.lp-mock-theme-stocks {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  flex-wrap: wrap;
}
.lp-mock-theme-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-tertiary);
  flex-shrink: 0;
}

/* ── Research Mockup ──────────────────────────────────────────────────────── */
.lp-mockup-research {
  padding: 24px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-mock-chat-user, .lp-mock-chat-ai {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lp-mock-chat-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'DM Serif Display', serif;
}
.lp-mock-avatar-user {
  background: var(--tint-8);
  color: var(--text-secondary);
}
.lp-mock-avatar-ai {
  background: var(--accent);
  color: var(--on-accent);
}
.lp-mock-chat-bubble {
  flex: 1;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
}
.lp-mock-bubble-user {
  background: var(--tint-5);
  color: var(--text-primary);
  font-weight: 600;
}
.lp-mock-bubble-ai {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.lp-mock-bubble-ai p { margin-bottom: 10px; }
.lp-mock-bubble-ai p:last-child { margin-bottom: 0; }
.lp-mock-bubble-ai ul {
  padding-left: 16px;
  margin: 8px 0;
}
.lp-mock-bubble-ai li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.lp-mock-bubble-ai li strong {
  color: var(--text-primary);
}
.lp-mock-chat-source {
  font-size: 10px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.lp-mock-chat-followups {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-left: 38px;
}
.lp-mock-chat-followups button {
  padding: 5px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.lp-mock-chat-followups button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Deep Dive Mockup ─────────────────────────────────────────────────────── */
.lp-mockup-deepdive {
  padding: 24px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.lp-mock-dd-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.lp-mock-dd-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.lp-mock-dd-fullname {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.lp-mock-dd-price-block { text-align: right; }
.lp-mock-dd-price {
  font-size: 20px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.lp-mock-dd-change {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.lp-mock-dd-body {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.lp-mock-dd-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.lp-mock-dd-score-ring {
  position: relative;
  width: 80px; height: 80px;
}
.lp-mock-dd-score-ring svg { width: 80px; height: 80px; }
@keyframes lp-score-fill { from { stroke-dashoffset: 213.6; } }
.lp-vis .lp-mock-dd-score-ring circle:nth-child(2) {
  animation: lp-score-fill 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lp-mock-dd-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: var(--accent);
}
.lp-mock-dd-score-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-mock-dd-metrics {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-mock-dd-metric {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.lp-mock-dd-metric-label {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.lp-mock-dd-metric-value {
  font-size: 15px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

/* Kavach + Management */
.lp-mock-dd-bottom {
  display: flex;
  gap: 12px;
}
.lp-mock-dd-kavach {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.lp-mock-dd-kavach-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lp-mock-kavach-safe {
  background: rgba(52,211,153,0.12);
  color: var(--green);
}
:root[data-theme="light"] .lp-mock-kavach-safe { background: rgba(5,150,105,0.1); }
.lp-mock-dd-kavach-score {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}
.lp-mock-dd-mgmt {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.lp-mock-dd-mgmt-label {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.lp-mock-dd-mgmt-track {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.lp-mock-dd-dot {
  width: 14px; height: 14px;
  border-radius: 3px;
}
.lp-mock-dd-dot-green { background: rgba(52,211,153,0.3); }
.lp-mock-dd-dot-red { background: rgba(248,113,113,0.3); }
.lp-mock-dd-dot-amber { background: rgba(251,191,36,0.3); }
:root[data-theme="light"] .lp-mock-dd-dot-green { background: rgba(5,150,105,0.25); }
:root[data-theme="light"] .lp-mock-dd-dot-red { background: rgba(220,38,38,0.25); }
:root[data-theme="light"] .lp-mock-dd-dot-amber { background: rgba(217,119,6,0.25); }
.lp-mock-dd-mgmt-verdict {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Glance Mockup ─────────────────────────────────────────────────────────
   Scanner-style: filter chips at top, rows of sentiment-tagged results,
   foot summary line. One row = one company's quarterly result. */
.lp-mockup-glance {
  padding: 20px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-mock-gl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-mock-gl-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}
.lp-mock-gl-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-mock-gl-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.lp-mock-gl-chip-active {
  background: rgba(52,211,153,0.12);
  border-color: rgba(52,211,153,0.3);
  color: var(--accent);
}
:root[data-theme="light"] .lp-mock-gl-chip-active {
  background: rgba(5,150,105,0.1);
  border-color: rgba(5,150,105,0.25);
}
.lp-mock-gl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-mock-gl-dot-green { background: var(--green); }
.lp-mock-gl-dot-amber { background: var(--amber); }
.lp-mock-gl-dot-red { background: var(--red); }

.lp-mock-gl-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.lp-mock-gl-row {
  display: grid;
  grid-template-columns: 4px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  background: var(--bg);
  min-height: 56px;
}
.lp-mock-gl-sentiment {
  width: 4px;
  height: 36px;
  border-radius: 2px;
  flex-shrink: 0;
}
.lp-mock-gl-sent-green { background: var(--green); }
.lp-mock-gl-sent-amber { background: var(--amber); }
.lp-mock-gl-sent-red { background: var(--red); }
.lp-mock-gl-sent-upcoming { background: var(--text-tertiary); opacity: 0.5; }

.lp-mock-gl-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-mock-gl-sym {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mock-gl-quarter {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-mock-gl-summary {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.lp-mock-gl-summary-pending {
  color: var(--text-tertiary);
  font-style: italic;
}

.lp-mock-gl-nums {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.lp-mock-gl-num {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 38px;
}
.lp-mock-gl-num-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lp-mock-gl-num-val {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.lp-mock-gl-pending {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: 6px;
}

.lp-mock-gl-foot {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  padding-top: 4px;
  font-family: 'Inter', sans-serif;
}
.lp-mock-gl-count {
  letter-spacing: -0.005em;
}

@media (max-width: 640px) {
  .lp-mock-gl-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-mock-gl-row {
    grid-template-columns: 4px 1fr;
    grid-template-rows: auto auto;
  }
  .lp-mock-gl-nums {
    grid-column: 2;
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-how {
  padding: 96px 0;
}
.lp-testimonials {
  padding: 96px 0;
}
.lp-how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: flex-start;
}
.lp-how-step {
  padding: 32px 28px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.lp-how-num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.lp-how-step h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.lp-how-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-tertiary);
}
.lp-how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  color: var(--text-tertiary);
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-cta { padding: 96px 0; }
.lp-cta-card {
  text-align: center;
  padding: 64px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(52,211,153,0.06), rgba(96,165,250,0.04));
  border: 1px solid var(--border);
}
:root[data-theme="light"] .lp-cta-card {
  background: linear-gradient(135deg, rgba(5,150,105,0.04), rgba(37,99,235,0.03));
}
.lp-cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.lp-cta-card p {
  font-size: 15px;
  color: var(--text-tertiary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.lp-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,211,153,0.15);
}
:root[data-theme="light"] .lp-btn-primary:hover {
  box-shadow: 0 8px 24px rgba(5,150,105,0.15);
}
.lp-btn-primary.lp-glow {
  animation: lp-glow 3s ease-in-out infinite;
}
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  text-decoration: none;
}
.lp-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(52,211,153,0.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.lp-footer-brand { max-width: 320px; }
.lp-footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}
.lp-footer-logo-img { border-radius: 5px; }
.lp-footer-brand-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'DM Serif Display', Georgia, serif;
}
.lp-footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin-top: 12px;
}
.lp-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.lp-footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.lp-footer-col a:hover { color: var(--accent); }

/* Bottom bar — one centered line, everything inline with middot separators */
.lp-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-tertiary);
}
.lp-footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.lp-footer-meta a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-meta a:hover { color: var(--text-secondary); }
.lp-footer-icon { display: inline-flex; }
.lp-footer-sep {
  color: var(--text-tertiary);
  opacity: 0.4;
  user-select: none;
}
.lp-footer-india {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOGIN MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-login-overlay {
  position: fixed; inset: 0;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.lp-login-overlay.open { display: flex; }
.lp-login-dialog {
  width: 420px;
  max-width: calc(100vw - 32px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-modal);
  position: relative;
  animation: lp-fadeUp 0.3s ease both;
}
.lp-login-dismiss {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-tertiary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lp-login-dismiss:hover { background: var(--tint-5); color: var(--text-primary); }
.lp-login-content { padding: 40px 36px 36px; }
.lp-login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.lp-login-logo img {
  border-radius: 10px;
  margin-bottom: 14px;
}
.lp-login-logo h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'DM Serif Display', Georgia, serif;
}
.lp-login-logo p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 6px;
}
.lp-login-form { display: flex; flex-direction: column; gap: 12px; }
.lp-login-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: border-color 0.2s;
}
.lp-login-field:focus-within { border-color: var(--accent); }
.lp-login-field svg { color: var(--text-tertiary); flex-shrink: 0; }
.lp-login-field .lp-login-prefix {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  padding-right: 8px; border-right: 1px solid var(--border);
}
.lp-login-field input {
  flex: 1; border: none; background: transparent; outline: none;
  color: var(--text-primary); font-size: 14px; font-family: inherit;
}
.lp-login-field input::placeholder { color: var(--text-tertiary); }
.lp-login-field input:-webkit-autofill,
.lp-login-field input:-webkit-autofill:hover,
.lp-login-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-primary);
  -webkit-box-shadow: 0 0 0 1000px var(--card-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.lp-login-submit {
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  margin-top: 4px;
}
.lp-login-submit:hover { filter: brightness(1.1); transform: translateY(-1px); }
.lp-login-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lp-login-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 16px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (1024px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-product-split {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  .lp-product--reverse .lp-product-split {
    direction: ltr;
  }
  .lp-how-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-how-arrow { display: none; }
  .lp-stats-inner { flex-wrap: wrap; gap: 16px; }
  .lp-stat-sep { display: none; }
  .lp-stat { flex: 0 0 calc(50% - 8px); padding: 12px 0; }
  .lp-trust-chip { font-size: 11px; padding: 0 10px; gap: 6px; }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .lp-footer-brand { grid-column: 1 / -1; max-width: none; }
  .lp-mock-dd-body { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (720px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .lp-container { padding: 0 20px; }
  .lp-header-inner { padding: 0 16px; }
  .lp-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .lp-hero > .lp-container {
    justify-content: flex-start;
    padding-top: 9vh;
  }
  .lp-hero-tagline { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.15; margin-bottom: 18px; }
  .lp-hero-ticker { margin-bottom: 18px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 22px; }
  .lp-hero-ctas .lp-btn-primary { justify-content: center; padding: 14px 24px; }
  .lp-hero-search { max-width: 100%; }
  .lp-trust-chip { font-size: 11.5px; padding: 0 10px; gap: 6px; line-height: 1.3; }
  .lp-hero-scroll-hint { display: none; }
  .lp-hero-disclaimer { bottom: 16px; }
  .lp-hero-disclaimer p { font-size: 10.5px; padding: 0 16px; }

  .lp-hero-search-full .search-input { font-size: 15px; padding: 14px 14px; }
  .lp-hero-search-full .search-btn { padding: 0 20px; font-size: 14px; }
  .lp-search-icon { width: 18px; height: 18px; margin-left: 14px; }

  .lp-stats { padding: 28px 0; }
  .lp-stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .lp-stat-value { font-size: 22px; }
  .lp-stat-label { font-size: 11px; }

  .lp-product { padding: 72px 0; }
  .lp-product-text h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .lp-product-desc { font-size: 14px; }
  .lp-product-features strong { font-size: 13px; }
  .lp-product-features span { font-size: 12px; }

  .lp-mock-picks { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lp-mock-pick { padding: 12px 8px; }
  .lp-mock-pick-sym { font-size: 11px; }
  .lp-mock-score-ring { width: 40px; height: 40px; }
  .lp-mock-score-ring span { font-size: 12px; }
  .lp-mock-pick-price { font-size: 10px; }
  .lp-mock-pick-tag { font-size: 8px; }

  .lp-mock-dd-bottom { flex-direction: column; }
  .lp-mock-dd-header { flex-direction: column; gap: 8px; }
  .lp-mock-dd-price-block { text-align: left; }

  .lp-section-heading { margin-bottom: 32px; }
  .lp-section-heading h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  .lp-how { padding: 72px 0; }
  .lp-testimonials { padding: 72px 0; }
  .lp-how-step { padding: 20px; }
  .lp-how-step h3 { font-size: 15px; }

  .lp-cta { padding: 72px 0; }
  .lp-cta-card { padding: 36px 20px; border-radius: 16px; }
  .lp-cta-card h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .lp-cta-card p { font-size: 13px; }
  .lp-cta-buttons { flex-direction: column; align-items: stretch; }
  .lp-btn-primary, .lp-btn-ghost { padding: 14px 24px; font-size: 14px; justify-content: center; }

  .lp-footer { padding: 40px 0 0; }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .lp-footer-brand { grid-column: 1 / -1; }

  .lp-login-content { padding: 32px 24px 28px; }
  .lp-login-logo h2 { font-size: 18px; }
  .lp-hero-orb-1 { width: 250px; height: 250px; }
  .lp-hero-orb-2 { width: 200px; height: 200px; }

  .lp-mock-chat-followups { padding-left: 0; }

  /* Mobile WhatsApp preview — single static Result card, centred. */
  .lp-carousels {
    display: block;
    margin-top: 40px;
    width: 100%;
  }
  .lp-carousels-track {
    display: flex;
    justify-content: center;
    padding: 6px 0;
  }
  /* iPhone-style card: dark bezel, dynamic island, rounded inner screen.    */
  /* Inner screen renders a real WhatsApp-styled message; theme via tokens. */
  /* Sized as a whisper, not a billboard — see-it-and-believe-it scale.     */
  .lp-carousel-card {
    flex: 0 0 40vw;
    max-width: 168px;
    aspect-ratio: 9 / 18;
    border-radius: 22px;
    padding: 3px;
    background: linear-gradient(160deg, #1a1a1d 0%, #0a0a0c 100%);
    box-shadow: 0 10px 22px rgba(0,0,0,0.32), 0 1px 4px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
  }
  :root[data-theme="light"] .lp-carousel-card {
    box-shadow: 0 10px 22px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.04);
  }
  .lp-iphone-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 10px;
    background: #000;
    border-radius: 999px;
    z-index: 2;
    box-shadow: inset 0 0 0 1px #1d1d1d;
  }
  .lp-iphone-screen {
    --wa-bg: #0B141A;
    --wa-text: #E9EDEF;
    --wa-meta: #8696A0;
    --wa-link: #53BDEB;
    --wa-sender: #25D366;
    width: 100%;
    height: 100%;
    border-radius: 19px;
    overflow: hidden;
    background: var(--wa-bg);
    color: var(--wa-text);
    position: relative;
  }
  :root[data-theme="light"] .lp-iphone-screen {
    --wa-bg: #ffffff;
    --wa-text: #111B21;
    --wa-meta: #667781;
    --wa-link: #027EB5;
    --wa-sender: #008069;
  }
  .lp-wa-chat {
    padding: 22px 7px 0;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 7.5px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
  }
  .lp-wa-sender {
    display: block;
    color: var(--wa-sender);
    font-weight: 600;
    font-size: 8px;
    margin-bottom: 3px;
  }
  .lp-wa-chat p {
    margin: 0 0 5px 0;
  }
  .lp-wa-chat strong { font-weight: 700; }
  .lp-wa-link {
    color: var(--wa-link);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
  }
  .lp-wa-meta {
    color: var(--wa-meta);
    font-size: 7px;
    margin-top: 5px !important;
  }
}

@media (max-width: 420px) {
  .lp-mock-picks { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .lp-mock-pick { padding: 10px 6px; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-footer-brand { grid-column: auto; }
}

/* ─── Toasts (shared across landing + OTP) ───────────────────────────────── */
.toast-container {
  position: fixed; top: 16px; right: 16px; z-index: 10000;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; max-width: 400px; width: calc(100% - 32px);
}
.toast {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  pointer-events: auto; cursor: default;
  opacity: 0; transform: translateX(80px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
  font-family: 'Lexend', sans-serif;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.toast.show { opacity: 1; transform: translateX(0) scale(1); }
.toast.hide { opacity: 0; transform: translateX(80px) scale(0.95); pointer-events: none; }
.toast-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toast-icon svg { width: 18px; height: 18px; }
.toast-body { flex: 1; min-width: 0; padding-top: 2px; }
.toast-title { font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--text-primary); margin-bottom: 2px; }
.toast-msg { font-size: 12px; font-weight: 400; line-height: 1.4; color: var(--text-secondary); }
.toast-close {
  background: none; border: none; cursor: pointer; padding: 2px;
  color: var(--text-secondary); flex-shrink: 0;
  opacity: 0; transition: opacity 0.15s, color 0.15s; margin-top: 1px;
}
.toast:hover .toast-close { opacity: 1; }
.toast-close:hover { color: var(--text-primary); }
.toast-close svg { width: 14px; height: 14px; }
.toast-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  border-radius: 0 0 14px 14px;
  animation: toast-shrink var(--toast-duration, 3s) linear forwards;
}
@keyframes toast-shrink { from { width: 100%; } to { width: 0%; } }
.toast-success .toast-icon { background: rgba(52,211,153,0.12); color: var(--green); }
.toast-success .toast-progress { background: var(--green); }
.toast-success { border-color: rgba(52,211,153,0.15); }
.toast-error .toast-icon { background: rgba(248,113,113,0.12); color: var(--red); }
.toast-error .toast-progress { background: var(--red); }
.toast-error { border-color: rgba(248,113,113,0.15); }
.toast-warning .toast-icon { background: rgba(251,191,36,0.12); color: #fbbf24; }
.toast-warning .toast-progress { background: #fbbf24; }
.toast-warning { border-color: rgba(251,191,36,0.15); }
.toast-info .toast-icon { background: rgba(52,211,153,0.12); color: var(--accent); }
.toast-info .toast-progress { background: var(--accent); }
.toast-info { border-color: rgba(52,211,153,0.15); }
:root[data-theme="light"] .toast {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
}
@media (max-width: 480px) {
  .toast-container { top: 8px; right: 8px; width: calc(100% - 16px); }
  .toast { padding: 12px 14px; gap: 10px; border-radius: 12px; }
}
