/* ─── 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-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 6px var(--accent), 0 0 12px rgba(52,211,153,0.3);
  animation: lp-pulse 2.5s ease-in-out infinite;
  vertical-align: middle;
}
.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; }
  .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;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  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 60% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
}
:root[data-theme="light"] .lp-hero-grid { opacity: 0.4; }

.lp-hero-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: lp-fadeUp 0.8s ease both;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.15);
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
:root[data-theme="light"] .lp-hero-badge {
  background: rgba(5,150,105,0.06);
  border-color: rgba(5,150,105,0.15);
}
.lp-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: lp-pulse 2s infinite;
}

.lp-hero h1 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text-tertiary);
}
.lp-hero-tagline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.lp-accent { color: var(--accent); }

.lp-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* 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;
}
.lp-hero-search-full {
  max-width: 520px;
  width: 100%;
}
.lp-hero-search-full .search-box {
  border-radius: 14px 0 0 14px;
  padding: 4px 0;
}
.lp-search-icon {
  margin-left: 16px;
  color: var(--text-tertiary);
  flex-shrink: 0;
}
.lp-hero-search-full .search-input {
  font-size: 15px;
  padding: 14px 16px;
}
.lp-hero-search-full .search-btn {
  border-radius: 0 14px 14px 0;
  padding: 14px 20px;
}
.lp-btn-pricing {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.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;
  position: relative;
}
.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%;
}
.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: 10;
  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 chips */
.lp-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lp-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 4px 10px;
  border-radius: 16px;
  background: var(--tint-4);
  border: 1px solid var(--border);
}
.lp-trust-chip svg { color: var(--accent); }

/* 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;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.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: 72px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 64px;
}
.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;
}
.lp-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.lp-dot-green { background: var(--green); }
.lp-dot-red { background: var(--red); }
.lp-dot-blue { background: var(--blue); }
.lp-dot-amber { background: var(--amber); }
.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;
}
.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);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-how {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.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: 80px 0 100px; }
.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 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); }

/* Disclaimer strip */
.lp-footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--tint-4);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.lp-footer-disclaimer svg {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 1px;
}
.lp-footer-disclaimer p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-tertiary);
}
.lp-footer-disclaimer strong {
  color: var(--text-secondary);
}

/* Bottom bar */
.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-tertiary);
}
.lp-footer-india {
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   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-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: auto;
    padding-top: calc(64px + 24px);
    padding-bottom: 40px;
  }
  .lp-hero h1 { font-size: clamp(0.9rem, 2.5vw, 1.2rem); line-height: 1.3; }
  .lp-hero-tagline { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.15; }
  .lp-hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
  .lp-hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .lp-hero-ctas .lp-btn-primary { justify-content: center; padding: 14px 24px; }
  .lp-hero-search { max-width: 100%; }
  .lp-hero-trust { gap: 6px; }
  .lp-trust-chip { font-size: 11px; padding: 3px 8px; }
  .lp-hero-scroll-hint { display: none; }

  .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: 56px 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: 48px 0; }
  .lp-how-step { padding: 20px; }
  .lp-how-step h3 { font-size: 15px; }

  .lp-cta { padding: 48px 0 64px; }
  .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-footer-disclaimer { padding: 12px 14px; }

  .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; }
}

@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; }
}
