/* ── Landing page styles ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0a0518;
  --surface: #12063a;
  --text:    #f3f4f6;
  --muted:   rgba(196,181,253,.65);
  --primary: #7c3aed;
  --accent:  #06b6d4;
  --pink:    #ec4899;
  --border:  rgba(255,255,255,.1);
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.lp-btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #6d28d9, #7c3aed 40%, #0891b2);
  color: #fff; font-weight: 700; font-size: .95rem;
  padding: .72rem 1.5rem; border-radius: 12px;
  box-shadow: 0 4px 24px rgba(124,58,237,.45);
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.lp-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(124,58,237,.6); }
.lp-btn-lg { font-size: 1.05rem; padding: .9rem 2rem; }

.lp-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(192,132,252,.4);
  color: rgba(196,181,253,.9); font-weight: 600; font-size: .9rem;
  padding: .6rem 1.2rem; border-radius: 10px;
  transition: all .2s;
}
.lp-btn-outline:hover { border-color: rgba(192,132,252,.8); color: #c084fc; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,5,24,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
}
.lp-header-inner { display: flex; align-items: center; gap: 1.5rem; }
.lp-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.1rem; white-space: nowrap; }
.lp-logo span { font-size: 1.4rem; }
.lp-nav { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; }
.lp-nav a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.lp-nav a:hover { color: #e9d5ff; }
.lp-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; margin-left: auto; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.lp-hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(124,58,237,.45) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 75%, rgba(8,145,178,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 5%, rgba(236,72,153,.25) 0%, transparent 40%),
    linear-gradient(160deg, #0a0518 0%, #100336 45%, #040f1e 100%);
  padding: 5rem 0 4rem;
}
.lp-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; animation: lp-drift ease-in-out infinite; }
.lp-orb-1 { width: 500px; height: 500px; background: rgba(124,58,237,.22); top: -120px; left: -120px; animation-duration: 14s; }
.lp-orb-2 { width: 380px; height: 380px; background: rgba(8,145,178,.18); bottom: -60px; right: -80px; animation-duration: 18s; animation-delay: -6s; }
.lp-orb-3 { width: 250px; height: 250px; background: rgba(236,72,153,.15); top: 40%; left: 55%; animation-duration: 22s; animation-delay: -10s; }
@keyframes lp-drift {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(30px,-25px); }
}
.lp-particle {
  position: absolute; pointer-events: none; font-size: 1.4rem;
  animation: lp-float linear infinite; opacity: 0;
  filter: drop-shadow(0 0 6px currentColor);
}
.lp-particle:nth-child(4)  { left: 8%;  animation-duration: 14s; animation-delay: 0s; }
.lp-particle:nth-child(5)  { left: 22%; animation-duration: 18s; animation-delay: -4s; }
.lp-particle:nth-child(6)  { left: 70%; animation-duration: 12s; animation-delay: -8s; }
.lp-particle:nth-child(7)  { left: 85%; animation-duration: 16s; animation-delay: -2s; }
.lp-particle:nth-child(8)  { left: 50%; animation-duration: 20s; animation-delay: -6s; }
.lp-particle:nth-child(9)  { left: 92%; animation-duration: 13s; animation-delay: -3s; }
@keyframes lp-float {
  0%   { transform: translateY(110vh); opacity: 0; }
  6%   { opacity: .65; }
  85%  { opacity: .4; }
  100% { transform: translateY(-100px); opacity: 0; }
}

.lp-hero-content { position: relative; z-index: 2; text-align: center; }

.lp-badge {
  display: inline-block;
  background: rgba(124,58,237,.2); border: 1px solid rgba(192,132,252,.3);
  color: #c084fc; font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}

.lp-hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem;
}
.lp-gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #67e8f9 50%, #6ee7b7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.lp-hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin: 0 auto 2rem; }

.lp-hero-actions { display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-bottom: 2.5rem; }
.lp-hero-note { font-size: .8rem; color: rgba(196,181,253,.5); }

.lp-hero-stats { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.lp-stat { display: flex; flex-direction: column; align-items: center; }
.lp-stat strong { font-size: 1.6rem; font-weight: 800; color: #c084fc; }
.lp-stat span { font-size: .75rem; color: var(--muted); }
.lp-stat-sep { color: rgba(196,181,253,.3); font-size: 1.2rem; }

/* ── Sections ────────────────────────────────────────────────────────────── */
.lp-section { padding: 5rem 0; }
.lp-section-alt {
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,.08) 0%, transparent 70%);
}

.lp-section-head { text-align: center; margin-bottom: 3.5rem; }
.lp-section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-top: 1rem; }

/* ── Features grid ───────────────────────────────────────────────────────── */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lp-feature-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.75rem;
  transition: transform .25s, box-shadow .25s;
}
.lp-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(124,58,237,.2); }
.lp-feature-icon { font-size: 2rem; margin-bottom: .85rem; }
.lp-feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.lp-feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.lp-steps { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.lp-step { text-align: center; max-width: 240px; }
.lp-step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #0891b2);
  box-shadow: 0 8px 24px rgba(124,58,237,.4);
}
.lp-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.lp-step p { font-size: .86rem; color: var(--muted); }
.lp-step-arrow { font-size: 1.5rem; color: rgba(192,132,252,.4); }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.lp-cta-section {
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,.12) 0%, transparent 70%);
}
.lp-orb-cta { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(100px); background: rgba(124,58,237,.12); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.lp-cta-content { position: relative; z-index: 1; }
.lp-cta-content h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.lp-cta-content > p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.lp-cta-note { margin-top: 1.25rem; font-size: .85rem; color: var(--muted); }
.lp-cta-note a { color: #c084fc; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.lp-footer {
  padding: 2rem 0; text-align: center;
  border-top: 1px solid var(--border);
}
.lp-footer-logo { font-size: 1rem; margin-bottom: .4rem; }
.lp-footer p { font-size: .8rem; color: var(--muted); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-nav { display: none; flex-direction: column; position: absolute; top: 100%; right: 0; left: 0; background: rgba(10,5,24,.97); border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; gap: .75rem; }
  .lp-nav.open { display: flex; }
  .lp-nav a { font-size: 1rem; }
  .lp-menu-btn { display: block; }
  .lp-header-inner { position: relative; }
  .lp-features { grid-template-columns: 1fr 1fr; }
  .lp-steps { flex-direction: column; }
  .lp-step-arrow { transform: rotate(90deg); }
}
@media (max-width: 480px) {
  .lp-features { grid-template-columns: 1fr; }
}
