:root {
  /* Default Light Landing Theme */
  --lp-bg: #f4f7ff;
  --lp-surface: rgba(60, 20, 105, 0.03);
  --lp-surface-strong: rgba(60, 20, 105, 0.05);
  --lp-border: rgba(60, 20, 105, 0.08);
  --lp-text: #3c1469;
  --lp-muted: #706385;
  --lp-accent: #ffd066;
  --lp-accent-light: #ffe3a8;
  --lp-accent-soft: rgba(255, 208, 102, 0.12);
  --lp-green: #0856fd;
  --lp-white: #3c1469;
  --lp-radius: 24px;
  --lp-logo-filter: none;
  --lp-header-bg: rgba(244, 247, 255, 0.88);
  --lp-header-border: rgba(60, 20, 105, 0.08);
}

html.dark-theme {
  /* Dark Landing Theme Override */
  --lp-bg: #0B0515;
  --lp-surface: rgba(167, 57, 252, 0.04);
  --lp-surface-strong: rgba(167, 57, 252, 0.08);
  --lp-border: rgba(167, 57, 252, 0.15);
  --lp-text: #FCF5FF;
  --lp-muted: #b3a7c4;
  --lp-accent: #ffd066;
  --lp-accent-light: #ffe3a8;
  --lp-accent-soft: rgba(255, 208, 102, 0.18);
  --lp-green: #0856fd;
  --lp-white: #ffffff;
  --lp-logo-filter: brightness(0) invert(1);
  --lp-header-bg: rgba(11, 5, 21, 0.88);
  --lp-header-border: rgba(167, 57, 252, 0.15);
}

body {
  background: radial-gradient(circle at top left, var(--lp-accent-soft), transparent 26%),
              radial-gradient(circle at 90% 10%, rgba(134, 165, 140, 0.1), transparent 24%),
              linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-bg) 100%);
  color: var(--lp-text);
  font-family: var(--font-body, 'DM Sans', system-ui, sans-serif);
}

.lp-header {
  padding: 24px 20px;
  background: var(--lp-header-bg);
  border-bottom: 1px solid var(--lp-header-border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.lp-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.lp-hero {
  padding: 80px 0 60px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.lp-hero-copy {
  max-width: 680px;
}

.lp-hero h1 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.9rem, 4vw, 4.4rem);
  line-height: 1.03;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.lp-subheadline,
.lp-note,
.lp-tier-note,
.lp-bonus-summary,
.lp-disclaimer {
  color: var(--lp-muted);
}

.lp-highlight {
  color: var(--lp-accent);
}

.lp-hero-bullets,
.lp-problem-list,
.lp-tier-card ul,
.lp-bonus-grid {
  margin: 24px 0 0;
}

.lp-hero-bullets li,
.lp-problem-list li,
.lp-tier-card ul li {
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}

.lp-hero-bullets li::before,
.lp-problem-list li::before,
.lp-tier-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--lp-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.lp-primary-btn,
.lp-primary-btn:link,
.lp-primary-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-light));
  color: #0B0515;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.lp-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 208, 102, 0.35);
  filter: brightness(1.05);
}

.lp-note,
.lp-tier-note,
.lp-disclaimer {
  margin-top: 16px;
  max-width: 680px;
}

.lp-problem,
.lp-value,
.lp-tiers,
.lp-bonuses,
.lp-proof,
.lp-scarcity,
.lp-cta {
  padding: 72px 0;
}

.lp-problem,
.lp-bonuses,
.lp-scarcity {
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-problem h2,
.lp-value h2,
.lp-tiers h2,
.lp-bonuses h2,
.lp-proof h2,
.lp-cta h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin-bottom: 18px;
}

.lp-value-grid,
.lp-tier-grid,
.lp-bonus-grid,
.lp-proof-grid {
  display: grid;
  gap: 24px;
}

.lp-value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-value-card,
.lp-tier-card,
.lp-bonus-card,
.lp-proof-item {
  background: var(--lp-surface-strong);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  box-shadow: 0 18px 60px rgba(18, 11, 31, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
html.dark-theme .lp-value-card,
html.dark-theme .lp-tier-card,
html.dark-theme .lp-bonus-card,
html.dark-theme .lp-proof-item {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.lp-value-card h3,
.lp-tier-card h3,
.lp-bonus-card h3,
.lp-proof-item h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.lp-tier-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-tier-price {
  color: var(--lp-accent);
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.lp-tier-tagline,
.lp-guarantee-box p,
.lp-proof-item p,
.lp-bonus-card p,
.lp-value-card p,
.lp-hero-copy p,
.lp-problem p,
.lp-cta p {
  margin: 0;
  color: var(--lp-muted);
}

.lp-guarantee-box {
  margin: 24px 0;
  border-left: 4px solid var(--lp-accent);
  padding: 20px 22px;
  background: rgba(215, 168, 78, 0.08);
}

.lp-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.lp-form-row {
  display: grid;
  gap: 10px;
}

.lp-form-row label {
  color: var(--lp-white);
  font-size: 0.95rem;
  font-weight: 600;
}

.lp-form-row input,
.lp-form-row select,
.lp-form-row textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-form-row input:focus,
.lp-form-row select:focus,
.lp-form-row textarea:focus {
  border-color: var(--lp-accent);
  background: var(--lp-surface-strong);
}

.lp-form-row select {
  appearance: none;
}

.lp-form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.lp-footer {
  padding: 28px 0 48px;
  text-align: center;
  color: var(--lp-muted);
}

.lp-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .lp-hero-grid,
  .lp-value-grid,
  .lp-tier-grid,
  .lp-bonus-grid,
  .lp-proof-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .lp-header { padding: 18px 16px; }
  .lp-hero h1 { font-size: 2.5rem; }
  .lp-hero-copy { max-width: 100%; }
  .lp-form-row { gap: 8px; }
}

.lp-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 20px;
  background: var(--lp-header-bg);
  border-top: 1px solid var(--lp-header-border);
}

.lp-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--lp-green);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.lp-secondary-btn:hover {
  background: #216eff;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 86, 253, 0.25);
}

body.lp-has-fixed-cta {
  padding-bottom: 96px;
}

.lp-cta-strip {
  margin: 48px 0 0;
  padding: 28px;
  background: rgba(215, 168, 78, 0.12);
  border: 1px solid rgba(215, 168, 78, 0.2);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.lp-cta-strip p {
  margin: 0;
  color: var(--lp-text);
  font-size: 1rem;
}

.lp-cta-strip .lp-primary-btn {
  margin: 0;
}

@media (max-width: 720px) {
  .lp-cta-strip { grid-template-columns: 1fr; }
}

.lp-success {
  padding: 40px 0;
}

.lp-success-card {
  background: var(--lp-surface-strong);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(18, 11, 31, 0.04);
}

.lp-success-card h2 {
  margin-top: 0;
  color: var(--lp-white);
}

.lp-success-card p {
  margin: 14px 0 0;
  color: var(--lp-muted);
}

/* Logo image filter in landing pages */
.lp-logo img {
  filter: var(--lp-logo-filter);
  transition: filter 0.3s ease;
}

/* Theme Toggle Button in Landing Pages Header */
.theme-toggle-btn {
  background: rgba(18, 11, 31, 0.05);
  border: 1px solid rgba(18, 11, 31, 0.1);
  color: var(--lp-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: rgba(18, 11, 31, 0.1);
  border-color: var(--lp-accent);
}

html.dark-theme .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
html.dark-theme .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--lp-accent);
}

/* Icon Toggling inside theme-toggle-btn */
.theme-toggle-btn .theme-icon-sun {
  display: none;
}
.theme-toggle-btn .theme-icon-moon {
  display: block;
}
html.dark-theme .theme-toggle-btn .theme-icon-sun {
  display: block;
}
html.dark-theme .theme-toggle-btn .theme-icon-moon {
  display: none;
}
.theme-toggle-btn svg {
  transition: transform 0.3s ease;
}
.theme-toggle-btn:hover svg {
  transform: rotate(15deg);
}
