* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* STATUS BAR */
.status-bar {
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg-2);
  font-size: 0.78rem;
  color: var(--lp-muted);
}
.status-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--lp-text-soft);
}
.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-online);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse-live 2s ease infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: var(--lp-nav-bg);
  border-bottom: 1px solid var(--lp-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-logo,
.brand-mark .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--lp-text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: 0.15s ease;
}
.nav-links a:hover {
  color: var(--lp-text);
  background: var(--lp-brand-soft);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 0;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 24px; font-size: 0.95rem; border-radius: 16px; }
.btn-primary {
  background: var(--lov-grad);
  color: #fff;
  box-shadow: 0 12px 36px var(--lov-glow), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px var(--lov-glow), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  filter: brightness(1.04);
}
.btn-ghost {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}
.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--lov-magenta) 50%, var(--lp-border));
  background: var(--lp-brand-soft);
  color: var(--lp-text);
}

/* HERO — centered */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  background: var(--lp-hero-grad);
  text-align: center;
}
.hero-mesh {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: var(--lp-mesh-opacity);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}
html:not([data-theme="dark"]) .hero-mesh {
  background-image:
    linear-gradient(rgba(28, 28, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 28, 0.04) 1px, transparent 1px);
}
.hero-glow {
  pointer-events: none;
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--lov-glow-purple), transparent 68%);
  filter: blur(8px);
}
.hero-center {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pill-grad {
  background: var(--lov-grad);
  color: #fff;
  box-shadow: 0 8px 24px var(--lov-glow);
}
.pill-grad i { font-size: 0.7rem; opacity: 0.9; }
.pill-outline {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-soft);
}
.pill-outline .dot-live { width: 7px; height: 7px; box-shadow: none; animation: none; }

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.hero-lead {
  margin: 0 auto 32px;
  max-width: 620px;
  color: var(--lp-text-soft);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* hero preview card */
.hero-showcase {
  max-width: 520px;
  margin: 0 auto;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  text-align: left;
}
.showcase-top {
  padding: 12px 16px;
  border-bottom: 1px solid var(--lp-border);
  display: flex;
  gap: 7px;
  align-items: center;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #f87171; }
.dot.y { background: #fbbf24; }
.dot.g { background: #34d399; }
.showcase-body { padding: 18px; }
.showcase-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--lp-muted);
  margin-bottom: 10px;
}
.showcase-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.stat-box {
  background: var(--lp-surface-2);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px;
}
.stat-box small {
  display: block;
  color: var(--lp-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.stat-box strong { display: block; margin-top: 4px; font-size: 1.25rem; }
.mock-key {
  font-family: ui-monospace, Consolas, monospace;
  background: var(--lp-code-bg);
  color: var(--lp-code-text);
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}
.showcase-status {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.showcase-status i { color: #22c55e; }

/* TRUST STRIP */
.trust-strip {
  padding: 0 0 56px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--lp-card-glow);
}
.trust-item strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  background: var(--lov-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--lp-muted);
  font-weight: 600;
}

/* SECTIONS */
section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--lov-grad-soft);
  color: var(--lov-magenta);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}
.section-head p { margin: 0; color: var(--lp-muted); font-size: 1rem; }

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 26px;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--lov-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
}
.feature:hover::before { opacity: 1; }
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--lov-grad-soft);
  color: var(--lov-magenta);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.feature h3 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 700; }
.feature p { margin: 0; color: var(--lp-muted); font-size: 0.9rem; line-height: 1.65; }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.price-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border-color: transparent;
  background: linear-gradient(var(--lp-surface), var(--lp-surface)) padding-box,
    var(--lov-grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 50px var(--lov-glow);
}
.price-card .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lov-grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.price-card .amount {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 18px;
  letter-spacing: -0.03em;
}
.price-card .amount small {
  font-size: 0.88rem;
  color: var(--lp-muted);
  font-weight: 600;
}
.price-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.price-card li {
  padding: 8px 0;
  color: var(--lp-text-soft);
  font-size: 0.88rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card li i {
  color: var(--lov-magenta);
  margin-top: 3px;
  font-size: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 22px;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--lov-grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px var(--lov-glow);
}
.step h3 { margin: 0 0 8px; font-size: 0.98rem; }
.step p { margin: 0; color: var(--lp-muted); font-size: 0.86rem; line-height: 1.6; }

.cta { padding: 64px 0 88px; }
.cta-box {
  position: relative;
  overflow: hidden;
  background: var(--lov-grad);
  color: #fff;
  border-radius: 28px;
  padding: 52px 32px;
  text-align: center;
  box-shadow: 0 28px 70px var(--lov-glow);
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 45%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.cta-box p { margin: 0 0 26px; opacity: 0.94; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-box code {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.82rem;
  word-break: break-all;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-box .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}
.cta-box .btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }
.cta-box .btn-white {
  background: #fff;
  color: #7c3aed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cta-box .btn-white:hover { transform: translateY(-2px); }

footer {
  border-top: 1px solid var(--lp-border);
  padding: 32px 0 40px;
  color: var(--lp-muted);
  font-size: 0.86rem;
  background: var(--lp-bg-2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--lp-text);
}
.footer-brand .brand-mark { width: 32px; height: 32px; border-radius: 9px; }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--lov-magenta); }

/* EXTENSION + TRIAL */
.extension-section { padding-top: 64px; padding-bottom: 64px; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.download-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 26px 22px;
  text-align: center;
  transition: 0.2s ease;
}
.download-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow);
  border-color: color-mix(in srgb, var(--lov-magenta) 30%, var(--lp-border));
}
.download-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--lov-grad-soft);
  color: var(--lov-magenta);
  font-size: 1.3rem;
}
.download-card h3 { margin: 0 0 6px; font-size: 1rem; }
.download-card p { margin: 0 0 16px; color: var(--lp-muted); font-size: 0.86rem; }
.download-card .btn { width: 100%; }
.download-note {
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.84rem;
  margin: 0 0 18px;
}

.trial-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--lov-magenta) 35%, var(--lp-border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--lov-purple) 8%, var(--lp-surface)), var(--lp-surface));
  box-shadow: var(--lp-card-glow);
}
.trial-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--lov-grad);
  box-shadow: 0 12px 28px var(--lov-glow);
  font-size: 1.2rem;
}
.trial-copy { flex: 1 1 auto; min-width: 0; text-align: left; }
.trial-copy h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.trial-copy p { margin: 0; color: var(--lp-muted); font-size: 0.88rem; }
.trial-action { flex: 0 0 auto; }
.trial-action .btn.is-loading { opacity: 0.75; pointer-events: none; }

.trial-active-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface-2);
}
.trial-active-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--lov-grad);
}
.trial-key-row { display: flex; align-items: center; gap: 8px; }
.trial-key-row label {
  display: block;
  width: 100%;
  font-size: 0.72rem;
  color: var(--lp-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.trial-key-value {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg-2);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  overflow-x: auto;
  white-space: nowrap;
}
.trial-copy-btn {
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: 0.15s ease;
}
.trial-copy-btn:hover { border-color: var(--lov-magenta); color: var(--lov-magenta); }
.trial-expires { margin: 8px 0 0; font-size: 0.8rem; color: var(--lp-muted); }
.trial-error { margin: 10px 0 0; color: #ef4444; font-size: 0.82rem; }
.install-guide {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--lov-magenta);
  font-size: 0.88rem;
  font-weight: 600;
}
.install-guide:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features, .pricing, .steps { grid-template-columns: 1fr; }
  .trial-box { flex-direction: column; align-items: stretch; }
  .trial-action { width: 100%; }
  .trial-action .btn { width: 100%; }
  .download-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 56px; }
}

@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
