/* =============================================
   TaxLane Landing Page — Light Premium Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --brand-primary: #2563eb;
  --brand-primary-hover: #1d4ed8;
  --brand-primary-dark: #1e3a8a;
  --brand-accent: #0ea5e9;
  --brand-sky: #38bdf8;
  --brand-indigo: #4f46e5;

  /* Surfaces (light) */
  --bg-base: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;

  /* Borders */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-strong: #94a3b8;

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;

  /* Status */
  --green: #10b981;
  --green-soft: #d1fae5;
  --amber: #f59e0b;
  --red: #ef4444;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
  --gradient-brand-text: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
  --gradient-soft: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  --gradient-hero: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
                   radial-gradient(ellipse 80% 60% at 20% 100%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
                   #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.10), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-2xl: 0 40px 80px rgba(15, 23, 42, 0.12), 0 16px 32px rgba(15, 23, 42, 0.08);
  --shadow-brand: 0 16px 40px rgba(37, 99, 235, 0.18);
  --shadow-brand-lg: 0 24px 64px rgba(37, 99, 235, 0.24);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Font */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: auto; }
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-muted); }
::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Selection */
::selection { background: rgba(37, 99, 235, 0.15); color: var(--text-primary); }

/* ============================================
   NAVIGATION
   ============================================ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(1.8);
  -webkit-backdrop-filter: blur(12px) saturate(1.8);
  border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 20px rgba(15, 23, 42, 0.06);
}
.lp-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-logo-img {
  height: 65px;
  width: auto;
  display: block;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.lp-nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
}
.lp-nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-muted);
}
.lp-nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: inherit;
}
.lp-btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  border-color: var(--border-medium);
}
.lp-btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-soft);
  border-color: var(--border-strong);
}
.lp-btn-primary {
  color: #ffffff;
  background: var(--brand-primary);
  box-shadow: var(--shadow-brand);
}
.lp-btn-primary:hover {
  background: var(--brand-primary-hover);
  box-shadow: var(--shadow-brand-lg);
  transform: translateY(-1px);
}
.lp-btn-outline {
  color: var(--text-primary);
  background: var(--bg-base);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}
.lp-btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.lp-btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}
.lp-btn-arrow {
  transition: transform 0.2s ease;
}
.lp-btn:hover .lp-btn-arrow {
  transform: translateX(3px);
}

/* ============================================
   HERO
   ============================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.lp-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #93c5fd 0%, transparent 70%);
  top: -200px; left: -150px;
}
.lp-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #bae6fd 0%, transparent 70%);
  top: -100px; right: -150px;
}
.lp-orb-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #c7d2fe 0%, transparent 70%);
  bottom: -200px; left: 40%;
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black, transparent);
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.lp-hero-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.10);
  backdrop-filter: blur(10px) saturate(1.6);
  -webkit-backdrop-filter: blur(10px) saturate(1.6);
  margin: 0 auto 18px;
  max-width: 100%;
}
.lp-hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(14, 165, 233, 0.14));
  border: 1px solid rgba(16, 185, 129, 0.32);
  color: #065f46;
  font-weight: 900;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.lp-hero-promo-spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #34d399 0%, #10b981 50%, rgba(16, 185, 129, 0.2) 100%);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.10);
}
.lp-hero-promo-sub {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}
.lp-hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text-primary);
  opacity: 0;
}
.gradient-text {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
}
.lp-hero-trustline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -18px auto 34px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(10px) saturate(1.6);
  -webkit-backdrop-filter: blur(10px) saturate(1.6);
}
.lp-hero-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: var(--brand-primary-dark);
  font-weight: 900;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.lp-hero-trust-text {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--text-secondary);
}
.lp-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
}
.lp-play-icon {
  width: 20px; height: 20px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-play-icon::after {
  content: '';
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}

/* Hero mockup */
.lp-hero-mockup {
  position: relative;
  margin-top: 72px;
  width: 100%;
  max-width: 1080px;
  opacity: 0;
}
.lp-mockup-glow {
  position: absolute;
  inset: -60px -40px 0 -40px;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.lp-mockup-browser {
  width: 100%;
  border-radius: var(--radius-2xl);
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  position: relative;
}
.lp-browser-bar {
  height: 44px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}
.lp-browser-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.lp-browser-dot:nth-child(1) { background: #ef4444; }
.lp-browser-dot:nth-child(2) { background: #f59e0b; }
.lp-browser-dot:nth-child(3) { background: #10b981; }
.lp-browser-url {
  margin-left: 16px;
  flex: 1;
  max-width: 360px;
  height: 28px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-tertiary);
}
.lp-mockup-screen {
  padding: 20px;
  min-height: 380px;
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
}
.lp-mock-sidebar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-mock-nav-item {
  height: 32px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  font-size: 0.72rem;
  color: var(--text-tertiary);
  font-weight: 500;
}
.lp-mock-nav-item.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-primary);
  font-weight: 600;
}
.lp-mock-nav-icon {
  width: 14px; height: 14px;
  background: currentColor;
  border-radius: 3px;
  opacity: 0.65;
}
.lp-mock-main { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.lp-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.lp-mock-stat {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
}
.lp-mock-stat-label {
  height: 7px;
  background: var(--bg-muted);
  border-radius: 4px;
  width: 65%;
  margin-bottom: 8px;
}
.lp-mock-stat-value {
  height: 16px;
  background: var(--text-muted);
  border-radius: 4px;
  width: 50%;
}
.lp-mock-stat:nth-child(1) .lp-mock-stat-value { background: var(--brand-primary); }
.lp-mock-stat:nth-child(2) .lp-mock-stat-value { background: var(--brand-accent); }
.lp-mock-stat:nth-child(3) .lp-mock-stat-value { background: var(--green); }
.lp-mock-stat:nth-child(4) .lp-mock-stat-value { background: var(--amber); }
.lp-mock-chart {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-mock-chart-label {
  height: 7px;
  background: var(--bg-muted);
  border-radius: 4px;
  width: 35%;
}
.lp-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
  min-height: 100px;
}
.lp-mock-bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-primary), var(--brand-sky));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

/* ============================================
   STATS BAR
   ============================================ */
.lp-stats-bar {
  padding: 24px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lp-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.lp-stat-item strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
}
.lp-stat-sep {
  width: 4px; height: 4px;
  background: var(--border-strong);
  border-radius: 50%;
}

/* ============================================
   MARQUEE
   ============================================ */
.lp-marquee-section {
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-light);
}
.lp-marquee-viewport {
  overflow: hidden;
  width: 100%;
}
.lp-marquee-scroll {
  display: flex;
  width: max-content;
  animation: lp-marquee-scroll 40s linear infinite;
}
.lp-marquee-scroll:hover {
  animation-play-state: paused;
}
@keyframes lp-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lp-marquee-track {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 12px;
}
.lp-marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.2s;
}
.lp-marquee-pill:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}
.lp-marquee-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
}

/* ============================================
   SECTIONS — COMMON
   ============================================ */
.lp-section {
  padding: 120px 48px;
  max-width: 1240px;
  margin: 0 auto;
}
.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.lp-section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.lp-section-header { margin-bottom: 64px; }
.lp-section-header.center { text-align: center; }
.lp-section-header.center .lp-section-sub { margin: 0 auto; }

/* Promo badge (e.g. "6 months free") */
.lp-promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(14, 165, 233, 0.14));
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.08);
}

/* ============================================
   FEATURES — BENTO GRID
   ============================================ */
.lp-features-section { background: var(--bg-base); }

.lp-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(260px, auto);
}

.lp-bento-card {
  position: relative;
  padding: 32px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.lp-bento-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Bento sizing */
.lp-bento-lg { grid-column: span 4; grid-row: span 2; flex-direction: row; gap: 32px; align-items: stretch; }
.lp-bento-md { grid-column: span 3; }
.lp-bento-sm { grid-column: span 2; }

.lp-bento-lg .lp-bento-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 420px;
}
.lp-bento-lg .lp-bento-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* Feature icon */
.lp-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.lp-feature-icon-bg-1 { background: rgba(37, 99, 235, 0.10); color: var(--brand-primary); }
.lp-feature-icon-bg-2 { background: rgba(16, 185, 129, 0.10); color: var(--green); }
.lp-feature-icon-bg-3 { background: rgba(14, 165, 233, 0.10); color: var(--brand-accent); }
.lp-feature-icon-bg-4 { background: rgba(245, 158, 11, 0.10); color: var(--amber); }
.lp-feature-icon-bg-5 { background: rgba(139, 92, 246, 0.10); color: #8b5cf6; }
.lp-feature-icon-bg-6 { background: rgba(239, 68, 68, 0.10); color: var(--red); }

.lp-bento-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.lp-bento-lg .lp-bento-title {
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.lp-bento-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: auto;
}

/* Pill tags inside cards */
.lp-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.lp-pill-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

/* ── Visual: AI PDF → Fields ──────────────── */
.lp-visual-ai {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}
.lp-ai-pdf {
  flex: 0 0 130px;
  height: 168px;
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lp-ai-pdf::before {
  content: 'PDF';
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  background: var(--bg-base);
  padding: 2px 6px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.lp-ai-pdf-line {
  height: 7px;
  background: var(--bg-muted);
  border-radius: 4px;
}
.lp-ai-arrow {
  color: var(--brand-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.lp-ai-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.lp-ai-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.78rem;
}
.lp-ai-field:last-child { border-bottom: none; }
.lp-ai-field-label {
  color: var(--text-tertiary);
  font-weight: 500;
}
.lp-ai-field-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}
.lp-ai-mono { font-family: var(--font-mono); font-size: 0.72rem; }

/* ── Visual: Tenant stack ─────────────────── */
.lp-tenant-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.lp-tenant-chip {
  padding: 8px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-tenant-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.lp-tenant-chip.lp-tenant-more {
  background: transparent;
  color: var(--text-tertiary);
  font-weight: 500;
  border-style: dashed;
}
.lp-tenant-chip.lp-tenant-more::before { background: var(--border-strong); }

/* ── Visual: Export rows ──────────────────── */
.lp-export-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.lp-export-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.lp-export-logo {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-xs);
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}
.lp-export-logo-c { background: var(--amber); }
.lp-export-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.lp-export-check {
  color: var(--green);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ── Visual: Mini chart ───────────────────── */
.lp-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 18px;
}
.lp-mini-bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-primary), var(--brand-sky));
  border-radius: 3px 3px 0 0;
  opacity: 0.9;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.lp-how-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 120px 48px;
}
.lp-how-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.lp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.lp-how-step {
  opacity: 0;
  transform: translateY(40px);
  padding: 32px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}
.lp-how-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--brand-primary);
}
.lp-how-step-num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-sans);
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.lp-how-step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.lp-how-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.lp-how-step-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   DASHBOARD PREVIEW
   ============================================ */
.lp-preview-section {
  background: var(--bg-base);
  padding: 120px 48px;
  overflow: hidden;
}
.lp-preview-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.lp-preview-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-preview-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.lp-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.lp-preview-mockup-wrap {
  position: relative;
}
.lp-preview-frame {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  background: #ffffff;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.lp-preview-frame:hover {
  transform: perspective(1400px) rotateY(0) rotateX(0);
}

/* ============================================
   METRICS / COUNTERS
   ============================================ */
.lp-metrics-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.lp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-base);
  box-shadow: var(--shadow-md);
}
.lp-metric-card {
  padding: 48px 32px;
  background: var(--bg-base);
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.lp-metric-card:last-child { border-right: none; }
.lp-metric-value {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.lp-metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   PRICING / PLANS
   ============================================ */
.lp-pricing-section { background: var(--bg-base); }
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lp-pricing-card {
  padding: 36px 32px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.lp-pricing-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.lp-pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid var(--brand-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(30px) scale(1);
}
.lp-pricing-card.featured:hover {
  box-shadow: var(--shadow-brand-lg);
}
.lp-pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.lp-pricing-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(14, 165, 233, 0.14));
  border: 1px solid rgba(16, 185, 129, 0.34);
  color: #065f46;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.10);
}
.lp-pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.lp-pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 44px;
  line-height: 1.5;
}
.lp-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.lp-price-contact {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
}
.lp-pricing-note {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #065f46;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(14, 165, 233, 0.10));
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: var(--radius-full);
  padding: 8px 12px;
  width: fit-content;
}
.lp-pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}
.lp-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.lp-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.lp-pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-pricing-cta {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
}

/* ============================================
   COMPARE (TaxBill-inspired)
   ============================================ */
.lp-compare-section { background: var(--bg-soft); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.lp-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.lp-compare-card {
  padding: 32px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-compare-card-featured {
  border: 2px solid var(--brand-primary);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: var(--shadow-brand);
}
.lp-compare-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.lp-compare-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.lp-compare-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.lp-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}
.lp-compare-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.lp-compare-list li::before {
  content: '•';
  color: var(--border-strong);
  font-weight: 900;
  line-height: 1.2;
  margin-top: 2px;
}
.lp-compare-card-featured .lp-compare-list li::before { color: var(--brand-primary); }
.lp-compare-cta { width: 100%; padding: 13px; font-size: 0.95rem; }

/* ============================================
   FAQ (TaxBill-inspired)
   ============================================ */
.lp-faq-section { background: var(--bg-base); }
.lp-faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--bg-base);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}
.lp-faq-q:hover { background: var(--bg-soft); }
.lp-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-base);
  position: relative;
  flex-shrink: 0;
}
.lp-faq-icon::before,
.lp-faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--text-tertiary);
  transform: translate(-50%, -50%);
}
.lp-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.2s ease; }
.lp-faq-q[aria-expanded="true"] .lp-faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.lp-faq-a {
  padding: 0 18px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT US
   ============================================ */
.lp-contact-section { background: var(--bg-base); }
.lp-contact-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 36px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(30px);
}
.lp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.lp-form-field input,
.lp-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.lp-form-field input:focus,
.lp-form-field textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.lp-form-field input.lp-input-error,
.lp-form-field textarea.lp-input-error {
  border-color: #dc2626;
}
.lp-field-error {
  font-size: 0.8rem;
  color: #dc2626;
}
.lp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.lp-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.lp-contact-status {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.lp-contact-status.is-success { color: var(--green); }
.lp-contact-status.is-error { color: #dc2626; }

/* ============================================
   FINAL CTA
   ============================================ */
.lp-cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  text-align: center;
  background: var(--gradient-brand);
  color: #ffffff;
}
.lp-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.lp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.lp-cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.1;
}
.lp-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}
.lp-cta-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-btn-cta-primary {
  color: var(--brand-primary);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.lp-btn-cta-primary:hover {
  background: #ffffff;
  color: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.lp-btn-cta-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.lp-btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
  padding: 56px 48px 40px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
}
.lp-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.lp-footer-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.lp-footer-links a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.lp-footer-links a:hover { color: var(--brand-primary); }
.lp-footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .lp-nav { padding: 0 24px; }
  .lp-nav-links { display: none; }
  .lp-section { padding: 80px 24px; }
  .lp-how-section, .lp-preview-section { padding: 80px 24px; }
  .lp-bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .lp-bento-lg, .lp-bento-md, .lp-bento-sm { grid-column: span 2; grid-row: auto; }
  .lp-bento-lg { flex-direction: column; gap: 24px; }
  .lp-bento-lg .lp-bento-content { max-width: none; }
  .lp-how-steps { grid-template-columns: 1fr; gap: 24px; }
  .lp-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-metric-card:nth-child(2) { border-right: none; }
  .lp-metric-card:nth-child(1), .lp-metric-card:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .lp-compare-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-contact-card { padding: 32px 24px; }
  .lp-footer { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .lp-nav { padding: 0 16px; height: 64px; }
  .lp-hero { padding: 110px 16px 60px; }
  .lp-hero-promo { gap: 10px; padding: 10px 12px; }
  .lp-hero-promo-sub { display: none; }
  .lp-hero-trustline { padding: 10px 12px; }
  .lp-bento-grid { grid-template-columns: 1fr; }
  .lp-bento-lg, .lp-bento-md, .lp-bento-sm { grid-column: span 1; }
  .lp-visual-ai { flex-direction: column; gap: 12px; }
  .lp-ai-pdf, .lp-ai-fields { width: 100%; flex: none; }
  .lp-ai-arrow { transform: rotate(90deg); }
  .lp-metrics-grid { grid-template-columns: 1fr 1fr; }
  .lp-stats-bar { gap: 20px; padding: 20px 16px; }
  .lp-footer-inner { flex-direction: column; text-align: center; }
  .lp-cta-section { padding: 80px 24px; }
  .lp-mockup-screen { grid-template-columns: 1fr; min-height: 320px; }
  .lp-mock-sidebar { display: none; }
  .lp-mock-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-section-headline br { display: none; }
}

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
