:root {
  --bg: #020617;
  --bg-alt: #02091c;
  --surface: #020818;
  --surface-soft: #040b1f;
  --surface-elevated: #050f25;
  --border-subtle: rgba(148, 163, 184, 0.25);

  --accent: #fbbf24; /* warm gold */
  --accent-soft: rgba(251, 191, 36, 0.15);
  --accent-strong: #facc15;

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --danger: #f97373;
  --success: #22c55e;
  --warning: #eab308;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.7);

  --container-width: 1120px;

  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

/* ===== RESET / BASE ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.lp-body {
  min-height: 100vh;
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, #0b1120 0, transparent 55%),
    radial-gradient(circle at top right, #111827 0, transparent 60%),
    linear-gradient(to bottom, #020617, #020617 60%, #020617);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

/* ===== LAYOUT ===== */

.lp-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TOPBAR ===== */

.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.85));
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.lp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
}

.lp-brand-text {
  color: #e5e7eb;
}

.lp-dot {
  width: 22px;
  height: 22px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #facc15 0, #f97316 40%, #7c2d12 100%);
  box-shadow: 0 0 22px rgba(251, 191, 36, 0.7);
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lp-nav a {
  position: relative;
  padding-bottom: 2px;
}

.lp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #fbbf24, #f97316);
  border-radius: 999px;
  transition: width 0.18s ease-out;
}

.lp-nav a:hover {
  color: #e5e7eb;
}

.lp-nav a:hover::after {
  width: 100%;
}

.lp-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lp-link {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lp-link:hover {
  color: #e5e7eb;
}

/* Buttons */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111827;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.35);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s;
}

.lp-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 40px rgba(251, 191, 36, 0.5);
}

.lp-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

.lp-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: none;
}

.lp-btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.9);
}

.lp-btn-full {
  width: 100%;
}

/* Burger */

.lp-burger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 26px;
  position: relative;
  cursor: pointer;
}

.lp-burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.lp-burger span:first-child {
  top: 6px;
}

.lp-burger span:last-child {
  top: 18px;
}

.lp-burger.open span:first-child {
  top: 12px;
  transform: rotate(45deg);
}

.lp-burger.open span:last-child {
  top: 12px;
  transform: rotate(-45deg);
}

/* Mobile menu */

.lp-mobile-menu {
  display: none;
}

/* ===== HERO ===== */

.lp-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.lp-hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.25) 0, transparent 55%),
    radial-gradient(circle at center left, rgba(59, 130, 246, 0.25) 0, transparent 60%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 1) 0, rgba(2, 6, 23, 1) 55%);
  opacity: 0.9;
  z-index: -1;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.18rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.lp-hero-left h1 {
  font-size: clamp(2.2rem, 3.2vw + 1.6rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  letter-spacing: -0.03em;
}

.lp-hero-text {
  font-size: 1.02rem;
  max-width: 34rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.lp-ghost-btn {
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.52rem 1.1rem;
  color: var(--text-main);
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.lp-ghost-btn:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.lp-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.7);
}

.lp-hero-trust p {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Hero right card */

.lp-hero-right {
  position: relative;
}

.lp-hero-card {
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(30, 64, 175, 0.55), transparent 55%),
    linear-gradient(145deg, #020617, #020824, #020617);
  border: 1px solid rgba(30, 64, 175, 0.8);
  padding: 1.4rem 1.5rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.lp-hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.lp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(74, 222, 128, 0.7);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lp-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.3);
}

.lp-pill-muted {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* hero split */

.lp-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.1rem;
}

.lp-hero-column {
  padding: 0.9rem 0.9rem 0.75rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.7);
}

.lp-hero-column-dark {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.4), transparent 55%),
    linear-gradient(to bottom right, #020617, #020617, #02081c);
}

.lp-hero-column-title {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  color: #e5e7eb;
}

/* table list */

.lp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-list-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.lp-list-title {
  font-size: 0.87rem;
}

.lp-list-sub {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem 0.55rem;
  font-size: 0.7rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  color: #e5e7eb;
}

.lp-tag-green {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

.lp-tag-yellow {
  background: rgba(234, 179, 8, 0.25);
  color: #fef9c3;
}

.lp-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  color: var(--text-soft);
}

.lp-metric-value {
  font-weight: 600;
  color: #e5e7eb;
}

.lp-chart-placeholder {
  margin-top: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

.lp-hero-card-footer {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.lp-total-pill {
  padding: 0.23rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  background: rgba(15, 23, 42, 0.95);
}

/* ===== STRIP ===== */

.lp-strip {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(15, 23, 42, 1);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.35), transparent 52%),
    linear-gradient(to right, #020617, #020617);
}

.lp-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.lp-strip-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== SECTIONS ===== */

.lp-section {
  padding: 4rem 0 4.5rem;
}

.lp-section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), transparent 55%),
    linear-gradient(to bottom, #020617, #020617);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.lp-section-title {
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
}

.lp-section-sub {
  margin: 0 0 2.1rem;
  max-width: 34rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Features grid */

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.lp-feature {
  padding: 1.1rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), transparent 70%),
    linear-gradient(to bottom right, #020617, #020617);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: var(--shadow-subtle);
}

.lp-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--accent-soft);
  margin-bottom: 0.7rem;
}

.lp-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.lp-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Feature media */

.lp-feature-media {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.lp-feature-media img {
  flex: 1 1 260px;
  border-radius: 18px;
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: var(--shadow-soft);
}

/* ===== HOW IT WORKS ===== */

.lp-how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.lp-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(to bottom right, #020617, #02091f);
  border: 1px solid rgba(30, 64, 175, 0.8);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.lp-how-card {
  position: sticky;
  top: 88px;
}

.lp-card-title {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
}

.lp-card-text {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lp-card-text.small {
  font-size: 0.82rem;
}

.lp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lp-checklist li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-size: 0.85rem;
}

/* Steps */

.lp-steps {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lp-steps li {
  margin-bottom: 0.7rem;
}

/* ===== PRICING ===== */

.lp-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: stretch;
}

.lp-pricing-copy .lp-pricing-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lp-pricing-copy .lp-pricing-list li + li {
  margin-top: 0.45rem;
}

.lp-pricing-card {
  padding-top: 1.6rem;
}

.lp-price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.lp-price-plan {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.lp-price-tag {
  font-size: 0.75rem;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: #fef9c3;
  border: 1px solid rgba(250, 204, 21, 0.6);
}

.lp-price-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.lp-price-amount {
  font-size: 2.1rem;
  font-weight: 600;
}

.lp-price-period {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.lp-paypal-wrapper {
  margin-top: 1.1rem;
  margin-bottom: 0.6rem;
}

.lp-pay-note {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ===== FAQ ===== */

.lp-faq {
  border-radius: var(--radius-lg);
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 2.5rem;
  margin-top: 1.8rem;
}

.lp-faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.lp-faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */

.lp-footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 1.5rem 0 1.8rem;
  background: #020617;
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.lp-footer-inner a {
  color: var(--text-muted);
}

.lp-footer-inner a:hover {
  color: #e5e7eb;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-hero-right {
    order: -1;
  }

  .lp-hero {
    padding-top: 4rem;
  }

  .lp-how-grid,
  .lp-pricing-grid,
  .lp-features-grid,
  .lp-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-how-card {
    position: static;
  }

  .lp-strip-inner {
    gap: 0.7rem 1.2rem;
  }

  .lp-topbar-inner {
    height: 60px;
  }
}

@media (max-width: 780px) {
  .lp-nav {
    display: none;
  }

  .lp-actions {
    display: none;
  }

  .lp-burger {
    display: inline-flex;
  }

  .lp-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem 1.1rem;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 1);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .lp-mobile-menu.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .lp-mobile-menu a {
    font-size: 0.92rem;
    padding: 0.25rem 0;
    color: var(--text-muted);
  }

  .lp-mobile-menu .lp-btn {
    margin-top: 0.4rem;
  }

  .lp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

@media (max-width: 520px) {
  .lp-hero-card {
    padding: 1.1rem 1.1rem 0.9rem;
  }

  .lp-hero-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-feature-media {
    margin-top: 2rem;
  }
}
