/* ── Landing Page — Visual Layer ──────────────────────────── */

/* ── FOMO Bar ────────────────────────────────────────────── */
.fomo-bar {
  position: sticky;
  top: 76px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(8, 145, 178, 0.12);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  font-size: 13px;
  color: var(--muted);
}
.fomo-viewers { display: flex; align-items: center; gap: 6px; }
.fomo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  animation: fomo-pulse 2s ease-in-out infinite;
}
@keyframes fomo-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34, 211, 238, 0); }
}
.fomo-timer strong { color: #22d3ee; font-variant-numeric: tabular-nums; }
.fomo-viewers strong { color: var(--text); }
.fomo-sep { color: rgba(139, 92, 246, 0.25); }

@media (max-width: 760px) {
  .fomo-bar { top: 0; font-size: 12px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .fomo-sep { display: none; }
}

/* ── Hover micro-interactions ────────────────────────────── */
.lp-pain,
.lp-review,
.lp-content-item,
.lp-bonus,
.lp-for-card,
.lp-faq {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-pain:hover,
.lp-review:hover,
.lp-content-item:hover,
.lp-bonus:hover,
.lp-for-card:hover,
.lp-faq:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(139, 92, 246, 0.25);
}

.lp-pricing-box {
  transition: box-shadow 0.3s ease;
}
.lp-pricing-box:hover {
  box-shadow:
    0 12px 50px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(34, 211, 238, 0.10);
}

/* ── Layout ──────────────────────────────────────────────── */
.lp-section { padding: 56px 0; }
.lp-section + .lp-section { border-top: none; }

/* ── Alternating section backgrounds ─────────────────────── */
.lp-section--alt {
  background: #13112a;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

/* ── Capabilities Section ────────────────────────────────── */
.lp-cap { text-align: center; }
.lp-cap-circle {
  width: 220px;
  height: 220px;
  margin: 32px auto;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg 349deg, #f59e0b 349deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.25), 0 0 100px rgba(139, 92, 246, 0.08);
}
.lp-cap-circle-inner {
  width: 62%;
  height: 62%;
  background: #13112a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}
.lp-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
  text-align: left;
}
.lp-cap-col {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.15);
  background: rgba(12, 12, 24, 0.7);
}
.lp-cap-col h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
}
.lp-cap-col.few h3 { color: #f59e0b; }
.lp-cap-col.full h3 { color: var(--accent); }
.lp-cap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-cap-col li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.lp-cap-col.few li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: #f59e0b;
}
.lp-cap-col.full li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.lp-cap-bottom {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(139, 92, 246, 0.10);
  border: 1px solid rgba(139, 92, 246, 0.20);
  color: var(--accent);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  padding: 56px 0 48px;
  position: relative;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -24px;
  right: -24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 0;
}
.lp-hero .lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}
.lp-hero-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.lp-hero-checks li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.lp-hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.lp-hero-trust { margin-top: 14px; color: var(--muted); font-size: 13px; }

.lp-hero-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: linear-gradient(145deg, #161b3a, #1e2850);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lp-hero-cover img {
  width: auto;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.7);
}

/* ── Pain Points ─────────────────────────────────────────── */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.lp-pain {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 113, 113, 0.15);
  background: rgba(248, 113, 113, 0.04);
  border-left: 3px solid #f87171;
}
.lp-pain h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.lp-pain p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ── World Section ───────────────────────────────────────── */
.lp-world-box {
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 50%), var(--panel);
  border: 1px solid rgba(34, 211, 238, 0.12);
  box-shadow: var(--shadow);
}
.lp-world-box p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 14px; }
.lp-world-box p:first-of-type { margin-top: 0; }
.lp-world-box strong { color: var(--text); }
.lp-world-highlight {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: var(--green);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Reviews ─────────────────────────────────────────────── */
.lp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.lp-review {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  border-top: 2px solid var(--accent);
}
.lp-review .stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; }
.lp-review blockquote {
  margin: 14px 0 0;
  padding: 0;
  border: none;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  font-size: 15px;
}
.lp-review .author { margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--text); }

/* ── What You Get ────────────────────────────────────────── */
.lp-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.lp-content-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.15);
  background: rgba(12, 12, 24, 0.7);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lp-content-item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.lp-content-item h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.lp-content-item p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ── Bonuses ─────────────────────────────────────────────── */
.lp-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.lp-bonus {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  gap: 20px;
  align-items: center;
}
.lp-bonus img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.lp-bonus h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.lp-bonus p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.lp-bonus .value {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.20);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

/* ── For Who ─────────────────────────────────────────────── */
.lp-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.lp-for-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(12, 12, 24, 0.7);
}
.lp-for-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}
.lp-for-card.yes { border-left: 3px solid var(--green); }
.lp-for-card.yes h3 { color: var(--green); }
.lp-for-card.no { border-left: 3px solid #f87171; }
.lp-for-card.no h3 { color: #f87171; }
.lp-for-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-for-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.lp-for-card.yes li::before { content: '\2713'; color: var(--green); font-weight: 800; }
.lp-for-card.no li::before { content: '\2717'; color: #f87171; font-weight: 800; }

/* ── Pricing CTA ─────────────────────────────────────────── */
.lp-pricing { text-align: center; }
.lp-pricing-box {
  max-width: 560px;
  margin: 24px auto 0;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(22, 16, 48, 0.9), rgba(16, 12, 36, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(139, 92, 246, 0.10);
}
.lp-pricing-box h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.lp-value-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-value-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  color: var(--muted);
  font-size: 15px;
}
.lp-value-list li span { color: var(--text); font-weight: 600; }
.lp-price-row {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.lp-price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 22px;
  font-family: var(--serif);
}
.lp-price-now {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.25);
}
.lp-pricing-actions { margin-top: 20px; }
.lp-pricing-trust {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.lp-faq-list {
  max-width: 700px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(12, 12, 24, 0.7);
}
.lp-faq h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.lp-faq p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 10px 0 0; }

/* ── Final CTA + PS ──────────────────────────────────────── */
.lp-final { text-align: center; }
.lp-final h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.lp-final .lead {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.lp-ps {
  max-width: 600px;
  margin: 28px auto 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: var(--green);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Sticky mobile CTA ───────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 12px 16px;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.sticky-cta .button { width: 100%; max-width: 400px; }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 8px;
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block; width: 20px; height: 2px; background: var(--text);
  position: absolute; left: 10px; border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px 20px 20px;
  z-index: 49;
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 12px 16px; font-size: 16px;
  font-weight: 500; color: var(--muted);
  border-radius: 8px; transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-hero-cover { order: -1; }
  .lp-hero-cover img { max-height: 320px; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .sticky-cta { display: block; }

  .lp-pain-grid,
  .lp-content-grid,
  .lp-bonus-grid,
  .lp-for-grid,
  .lp-reviews-grid,
  .lp-cap-grid { grid-template-columns: 1fr; }

  .lp-bonus { flex-direction: column; text-align: center; }
  .lp-section { padding: 36px 0; }
  .lp-section--alt { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
}
