/* PintarBudget landing page styles — supplements kit.css for marketing surfaces. */

.lp-wrap {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  padding: 0 24px 80px;
}
.lp-nav {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
}
.lp-nav-links {
  display: flex; gap: 4px; flex: 1; justify-content: center;
}
.lp-nav-links a {
  padding: 8px 14px; border-radius: 999px;
  color: var(--text-tertiary); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: all .2s;
}
.lp-nav-links a:hover { color: var(--text-primary); background: rgba(16,185,129,0.08); }

.lp-hero {
  text-align: center;
  padding: 60px 0 80px;
  max-width: 820px; margin: 0 auto;
}
.lp-hero .eyebrow { display: block; margin-bottom: 18px; }
.lp-hero-h {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lp-hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.lp-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.lp-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--text-tertiary);
}
.lp-trust span { display: inline-flex; align-items: center; gap: 6px; }
.lp-trust i { color: var(--brand-primary-2); }

.lp-features, .lp-pricing, .lp-eco {
  padding: 60px 0;
}
.lp-sec-h {
  text-align: center;
  font-size: var(--fs-3xl);
  margin-bottom: 36px;
}

.lp-eco-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.lp-eco-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid;
  background: rgba(0,0,0,0.20);
  font-size: 13px; font-weight: 700;
}

/* Auth wrap (login screen) */
.lp-auth-wrap {
  position: relative; z-index: 1;
  min-height: calc(100vh - 64px);
  display: grid; place-items: center;
  padding: 40px 24px;
}
.lp-auth-wrap > * {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 480px) {
  .lp-auth-wrap { padding: 24px 16px; }
  .lp-auth-wrap > .pb-card { padding: 24px !important; }
}
@media (max-width: 360px) {
  .lp-auth-wrap { padding: 16px 8px; }
  .lp-auth-wrap > .pb-card { padding: 18px !important; }
}

/* ============================================================
   Landing animations — reveal-on-scroll, hero entrance, CTA glow.
   Mirrors the Pintar family landing.css pattern.
   ============================================================ */

/* Orb float */
.lp-wrap .orb,
body > .orbs > .orb {
  animation: orbFloat 14s ease-in-out infinite alternate;
  will-change: transform;
}
.orb-2 { animation-delay: 5s; }
.orb-3 { animation-delay: 9s; }
@keyframes orbFloat {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-60px) scale(1.08); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity .7s var(--ease-bounce), transform .7s var(--ease-bounce);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: .15s; }
.stagger-3 { transition-delay: .30s; }
.stagger-4 { transition-delay: .45s; }
.stagger-5 { transition-delay: .60s; }
.stagger-6 { transition-delay: .75s; }

/* Hero entrance (each block animates in) */
@keyframes animIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-hero .eyebrow      { animation: animIn .7s var(--ease-bounce) .35s both; }
.lp-hero .lp-hero-h    { animation: animIn .8s var(--ease-bounce) .55s both; }
.lp-hero .lp-hero-sub  { animation: animIn .8s var(--ease-bounce) .75s both; }
.lp-hero .lp-cta-row   { animation: animIn .8s var(--ease-bounce) .95s both; }
.lp-hero .lp-trust     { animation: animIn .7s var(--ease-bounce) 1.15s both; }

/* Brand bar entrance */
.lp-nav { animation: animIn .7s var(--ease-bounce) .2s both; }

/* CTA glow pulsing — applied on hero CTA after entrance */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 30px rgba(16, 185, 129, 0.30); }
  50%      { box-shadow: 0 6px 40px rgba(16, 185, 129, 0.55), 0 0 80px rgba(16, 185, 129, 0.15); }
}
.lp-hero .pb-btn-primary.pb-btn-lg {
  animation: animIn .8s var(--ease-bounce) .95s both, ctaGlow 2.8s ease-in-out 2s infinite;
}

/* Section title underline grow when visible */
.lp-sec-h {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.lp-sec-wrap { text-align: center; margin-bottom: 36px; }
.lp-sec-h::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  height: 3px; width: 0;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 1s var(--ease-bounce);
}
.lp-sec-wrap.visible .lp-sec-h::after { width: 100%; }

/* Card hover lift (reveal cards) */
.lp-features .pb-card,
.lp-pricing .pb-card {
  transition: transform .25s var(--ease-bounce), box-shadow .25s, border-color .25s;
}
.lp-features .pb-card:hover,
.lp-pricing .pb-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
}
@media (hover: none) {
  .lp-features .pb-card:hover,
  .lp-pricing .pb-card:hover { transform: none; box-shadow: var(--shadow-card); }
}

/* Eco pill — logo + text */
.lp-eco-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  transition: transform .2s var(--ease-bounce), box-shadow .2s;
  cursor: pointer;
}
.lp-eco-pill:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.lp-eco-pill img,
.lp-eco-pill .lp-eco-dot {
  width: 18px; height: 18px;
  border-radius: 5px;
  flex-shrink: 0;
  object-fit: cover;
}
.lp-eco-pill .lp-eco-dot {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
  background: var(--gradient-logo);
  border-radius: 5px;
}

/* Floating CTA (mobile-style bottom bar on scroll) */
.lp-float-cta {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 90;
  opacity: 0;
  transition: opacity .4s, transform .4s var(--ease-bounce);
}
.lp-float-cta.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.lp-float-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 14px; font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.35);
  animation: ctaGlow 2.8s ease-in-out infinite;
}
.lp-float-cta a:hover { color: #fff; text-decoration: none; }

/* Scroll-to-top */
.lp-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 89;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-amber);
  color: #1a1440;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.lp-scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lp-scroll-top:hover { color: #1a1440; }

/* FAQ details — chevron rotate */
.lp-faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq {
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.lp-faq:hover { border-color: rgba(16, 185, 129, 0.30); }
.lp-faq summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-tertiary);
  transition: transform .2s, color .2s;
  line-height: 1;
}
.lp-faq[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand-primary-2);
}
.lp-faq p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* Mobile float CTA full-width */
@media (max-width: 700px) {
  .lp-float-cta {
    bottom: 0; left: 0; right: 0;
    transform: translateX(0) translateY(120px);
    padding: 12px 16px;
    background: rgba(13, 13, 31, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(16, 185, 129, 0.18);
  }
  .lp-float-cta.show { transform: translateX(0) translateY(0); }
  .lp-float-cta a { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; border-radius: 14px; }
  .lp-scroll-top { bottom: 80px; right: 16px; width: 40px; height: 40px; font-size: 14px; }
  .pb-footer { padding-bottom: 100px; }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 700px) {
    .lp-float-cta { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
    .pb-footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  }
}

/* ============================================================
   Hero — receipt-as-hero with auto-parse animation (v2.32.0)
   ============================================================ */
.lp-hero-split { padding: 32px 0 56px; text-align: left; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.lp-hero-copy { min-width: 0; }
.lp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: rgba(251,191,36,0.10);
  border: 1px solid rgba(251,191,36,0.28);
  color: var(--brand-amber);
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 18px;
}
.lp-hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-amber, var(--brand-amber));
  box-shadow: 0 0 10px rgba(251,191,36,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
.lp-hero-split .lp-hero-h {
  font-size: clamp(38px, 6.4vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.lp-hero-split .lp-hero-sub { max-width: 520px; margin: 0 0 22px; }
.lp-hero-split .lp-cta-row { justify-content: flex-start; margin-bottom: 22px; }
.lp-trust-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--text-tertiary);
}
.lp-trust-list li { display: inline-flex; align-items: center; gap: 8px; }
.lp-trust-list i { color: var(--brand-primary-2); width: 14px; font-size: 12px; }

/* Hero stage (receipt + chips + scan + lines) */
.lp-hero-stage { display: flex; justify-content: center; }
.lp-stage {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 1 / 1.05;
  perspective: 1400px;
}

/* Receipt */
.lp-receipt {
  position: absolute;
  left: 4%; top: 4%;
  width: 56%;
  background: linear-gradient(180deg, #faf9f4 0%, #ece9dd 100%);
  color: #1a1440;
  border-radius: 4px 4px 0 0;
  padding: 18px 18px 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  box-shadow:
    0 30px 60px -10px rgba(0,0,0,0.55),
    0 18px 30px -8px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  transform: rotate(-4.5deg);
  transition: transform .8s var(--ease-bounce);
  z-index: 3;
}
.lp-stage.is-parsed .lp-receipt { transform: rotate(-3deg) translateX(-4%) scale(0.97); }
.lp-receipt::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -14px;
  height: 16px;
  background: inherit;
  clip-path: polygon(
    0 0, 100% 0,
    100% 60%, 96% 100%, 92% 60%, 88% 100%, 84% 60%, 80% 100%,
    76% 60%, 72% 100%, 68% 60%, 64% 100%, 60% 60%, 56% 100%,
    52% 60%, 48% 100%, 44% 60%, 40% 100%, 36% 60%, 32% 100%,
    28% 60%, 24% 100%, 20% 60%, 16% 100%, 12% 60%, 8% 100%, 4% 60%, 0 100%
  );
  filter: drop-shadow(0 8px 8px rgba(0,0,0,0.20));
}
.lp-rc-head { text-align: center; padding-bottom: 8px; border-bottom: 1px dashed rgba(0,0,0,0.25); }
.lp-rc-merchant { font-weight: 800; font-size: 13px; letter-spacing: 0.5px; }
.lp-rc-addr { font-size: 8.5px; color: rgba(0,0,0,0.6); margin-top: 2px; line-height: 1.4; }
.lp-rc-rows { padding: 8px 0; display: flex; flex-direction: column; gap: 5px; font-size: 9.5px; }
.lp-rc-row { display: flex; justify-content: space-between; gap: 6px; }
.lp-rc-row .qty { color: rgba(0,0,0,0.55); width: 16px; flex-shrink: 0; }
.lp-rc-row .name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-rc-row .price { font-variant-numeric: tabular-nums; }
.lp-rc-tot {
  display: flex; justify-content: space-between;
  border-top: 1px dashed rgba(0,0,0,0.25);
  padding: 6px 0 4px;
  font-weight: 800; font-size: 12px;
}
.lp-rc-foot { padding: 6px 0 12px; text-align: center; font-size: 7.5px; color: rgba(0,0,0,0.55); letter-spacing: 0.4px; }

/* Scan line overlay */
.lp-scan {
  position: absolute; inset: 4% 38% 8% 4%;
  pointer-events: none; z-index: 4;
  border-radius: 4px; overflow: hidden;
  opacity: 0; transition: opacity .25s;
}
.lp-stage.is-scanning .lp-scan { opacity: 1; }
.lp-scan::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -10%;
  height: 22%;
  background: linear-gradient(180deg,
    rgba(52,211,153,0) 0%,
    rgba(52,211,153,0.10) 30%,
    rgba(52,211,153,0.55) 50%,
    rgba(52,211,153,0.10) 70%,
    rgba(52,211,153,0) 100%);
  filter: blur(2px);
  animation: lpScanY 1.6s linear infinite;
}
@keyframes lpScanY { 0% { transform: translateY(0); } 100% { transform: translateY(440%); } }

/* OCR badge ribbon */
.lp-ocr-badge {
  position: absolute;
  left: 4%; top: 0;
  transform: translateY(-30%);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(13,13,31,0.92);
  border: 1px solid rgba(52,211,153,0.45);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4), 0 0 24px rgba(16,185,129,0.25);
  font-size: 10px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--brand-primary-2);
  z-index: 6;
  opacity: 0;
  transition: opacity .35s, transform .35s var(--ease-bounce);
}
.lp-stage.is-scanning .lp-ocr-badge,
.lp-stage.is-parsed .lp-ocr-badge { opacity: 1; transform: translateY(-50%); }
.lp-ocr-badge i { font-size: 10px; color: var(--brand-amber); }

/* Parsed chips (right column inside stage) */
.lp-parsed {
  position: absolute;
  right: 0; top: 6%;
  width: 50%;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 5;
}
.lp-pchip {
  background: rgba(22,16,58,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 12px;
  padding: 9px 11px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 9px;
  opacity: 0;
  transform: translateX(20px) scale(0.92);
  transition: opacity .55s var(--ease-bounce), transform .55s var(--ease-bounce);
}
.lp-stage.is-parsed .lp-pchip { opacity: 1; transform: translateX(0) scale(1); }
.lp-stage.is-parsed .lp-pchip:nth-child(1) { transition-delay: .05s; }
.lp-stage.is-parsed .lp-pchip:nth-child(2) { transition-delay: .20s; }
.lp-stage.is-parsed .lp-pchip:nth-child(3) { transition-delay: .35s; }
.lp-stage.is-parsed .lp-pchip:nth-child(4) { transition-delay: .50s; }
.lp-pchip-dot {
  width: 9px; height: 9px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}
.lp-pchip-body { flex: 1; min-width: 0; }
.lp-pchip-cat {
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.9px; text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
}
.lp-pchip-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; font-weight: 700; color: #fff;
  font-variant-numeric: tabular-nums;
  margin-top: 1px; white-space: nowrap;
}
.lp-pchip[data-cat="medical"] { border-color: rgba(52,211,153,0.45); }
.lp-pchip[data-cat="medical"] .lp-pchip-dot { background: #34d399; color: #34d399; }
.lp-pchip[data-cat="lifestyle"] { border-color: rgba(167,139,250,0.45); }
.lp-pchip[data-cat="lifestyle"] .lp-pchip-dot { background: #a78bfa; color: #a78bfa; }
.lp-pchip[data-cat="none"] { border-color: rgba(255,255,255,0.10); }
.lp-pchip[data-cat="none"] .lp-pchip-dot { background: rgba(255,255,255,0.30); color: rgba(255,255,255,0.30); }

/* Connecting dashed lines */
.lp-stage svg.lp-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}
.lp-stage svg.lp-lines path {
  fill: none;
  stroke: var(--brand-primary-2);
  stroke-width: 1.4;
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity .5s;
}
.lp-stage.is-parsed svg.lp-lines path { opacity: 0.55; animation: lpDashFlow 1.2s linear infinite; }
@keyframes lpDashFlow { to { stroke-dashoffset: -20; } }

/* Replay button */
.lp-stage-replay {
  position: absolute;
  bottom: -42px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.lp-stage-replay:hover { background: rgba(16,185,129,0.10); color: var(--brand-primary-2); border-color: rgba(16,185,129,0.30); }
.lp-stage-replay i { font-size: 10px; }

/* Hero responsive */
@media (max-width: 940px) {
  .lp-hero-split { padding: 28px 0 48px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-hero-copy { text-align: center; }
  .lp-hero-eyebrow { margin-left: auto; margin-right: auto; }
  .lp-hero-split .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-split .lp-cta-row { justify-content: center; }
  .lp-trust-list { align-items: flex-start; max-width: 360px; margin: 0 auto; }
  .lp-stage { max-width: 380px; }
}
@media (max-width: 600px) {
  .lp-stage { max-width: 340px; aspect-ratio: 1 / 1.1; }
  .lp-receipt { padding: 14px 14px 0; }
  .lp-rc-merchant { font-size: 11.5px; }
  .lp-rc-addr { font-size: 7.5px; }
  .lp-rc-rows { font-size: 8.5px; padding: 6px 0; }
  .lp-rc-tot { font-size: 11px; }
  .lp-pchip { padding: 8px 10px; }
  .lp-pchip-cat { font-size: 8px; }
  .lp-pchip-val { font-size: 11px; }
  .lp-stage-replay { bottom: -36px; }
}

/* ============================================================
   Tax savings calculator section (v2.32.0)
   ============================================================ */
.lp-calc-sec { padding: 48px 0; }
.lp-calc-wrap {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  padding: 28px;
  align-items: stretch;
}
.lp-calc-controls { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.lp-calc-row { display: flex; flex-direction: column; gap: 10px; }
.lp-calc-row-h {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13px; color: var(--text-secondary);
}
.lp-calc-row-h label { font-weight: 700; color: var(--text-primary); }
.lp-calc-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700; color: var(--brand-primary-2);
  font-variant-numeric: tabular-nums;
}
.lp-calc-hint { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* Slider — emerald progress fill */
.lp-calc-slider {
  --p: 0%;
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(to right,
    var(--brand-primary-2) 0%, var(--brand-primary-2) var(--p),
    rgba(255,255,255,0.10) var(--p), rgba(255,255,255,0.10) 100%);
  outline: none; cursor: pointer;
}
.lp-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-primary-2);
  box-shadow: 0 4px 12px rgba(16,185,129,0.40);
  cursor: pointer; transition: transform .15s;
}
.lp-calc-slider::-webkit-slider-thumb:active { transform: scale(1.15); }
.lp-calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-primary-2);
  box-shadow: 0 4px 12px rgba(16,185,129,0.40);
  cursor: pointer; border: none; outline: none;
}

/* Category toggle pills */
.lp-calc-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-calc-cat {
  --c: var(--brand-primary-2);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-tertiary);
  font-family: inherit; font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: all .18s;
}
.lp-calc-cat::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c); opacity: 0.55; transition: opacity .18s;
}
.lp-calc-cat:hover { border-color: rgba(255,255,255,0.20); color: var(--text-primary); }
.lp-calc-cat.is-on {
  background: linear-gradient(135deg, var(--c) 0%, color-mix(in srgb, var(--c) 70%, #fff 30%) 100%);
  border-color: var(--c);
  color: #0d0d1f;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--c) 35%, transparent);
}
.lp-calc-cat.is-on::before { background: #0d0d1f; opacity: 1; }

/* Result card */
.lp-calc-result {
  background: linear-gradient(160deg, rgba(16,185,129,0.10) 0%, rgba(251,191,36,0.06) 100%);
  border: 1px solid rgba(16,185,129,0.28);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.lp-calc-result-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-tertiary);
}
.lp-calc-big {
  font-size: clamp(36px, 7vw, 56px); font-weight: 900; line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-primary-2) 0%, var(--brand-amber) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.lp-calc-big .currency { font-size: 0.55em; margin-right: 6px; }
.lp-calc-foot { font-size: 12px; color: var(--text-tertiary); margin: 0; line-height: 1.55; }
.lp-calc-foot strong { color: var(--text-secondary); }

/* Calculator responsive */
@media (max-width: 720px) {
  .lp-calc-sec { padding: 32px 0; }
  .lp-calc-wrap { grid-template-columns: 1fr; gap: 20px; padding: 18px; }
  .lp-calc-result { order: 2; padding: 18px; }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible {
    opacity: 1; transform: none; transition: none;
  }
  .orb { animation: none; }
  .lp-hero * { animation: none !important; }
  .lp-hero .pb-btn-primary.pb-btn-lg { animation: none; }
  .lp-float-cta a { animation: none; }
  .lp-stage-replay { display: none; }
  .lp-stage .lp-pchip,
  .lp-stage .lp-receipt,
  .lp-stage svg.lp-lines path { transition: none !important; opacity: 1 !important; transform: none !important; }
  .lp-scan::before { animation: none; }
  .lp-stage svg.lp-lines path { animation: none; }
}
