@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Outfit',system-ui,-apple-system,sans-serif;background:linear-gradient(180deg,#ffffff 0%,#f8f5ff 35%,#f3eeff 50%,#f8f5ff 70%,#ffffff 85%);color:#1a1a2e;line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased;min-height:100vh}
::selection{background:rgba(139,92,246,.2);color:#1a1a2e}
a{color:inherit;text-decoration:none}

/* Aurora BG */
.sp-aurora{position:fixed;top:-25%;left:50%;width:1000px;height:600px;transform:translateX(-50%);background:conic-gradient(from 230deg at 50% 55%,rgba(139,92,246,.08) 0deg,rgba(59,130,246,.04) 55deg,rgba(16,185,129,.02) 110deg,rgba(99,102,241,.01) 180deg,rgba(162,0,255,.06) 240deg,rgba(59,130,246,.03) 310deg,rgba(139,92,246,.08) 360deg);filter:blur(90px);pointer-events:none;z-index:0;animation:spAurora 25s ease-in-out infinite}
@keyframes spAurora{0%,100%{transform:translateX(-50%) scale(1)}50%{transform:translateX(-48%) scale(1.04) rotate(2deg)}}

/* Nav */
.sp-nav{display:flex;align-items:center;justify-content:space-between;padding:16px 40px;padding-top:calc(env(safe-area-inset-top,14px) + 8px);position:sticky;top:0;z-index:100;background:rgba(255,255,255,.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid rgba(139,92,246,.06)}
.sp-nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.sp-nav-logo img{width:30px;height:30px;border-radius:7px}
.sp-nav-logo span{font-size:16px;font-weight:700;color:#1a1a2e;letter-spacing:-.3px}
.sp-nav-links{display:flex;align-items:center;gap:8px}
.sp-nav-link{font-size:13px;color:rgba(0,0,0,.4);padding:6px 12px;transition:color .2s;font-weight:500}
.sp-nav-link:hover{color:#1a1a2e}
.sp-nav-cta{font-size:13px;color:#fff;background:linear-gradient(135deg,#8B5CF6,#7C3AED,#6D28D9);border:none;border-radius:8px;padding:9px 22px;cursor:pointer;transition:all .2s;font-weight:600;font-family:inherit;box-shadow:0 2px 12px rgba(139,92,246,.25);text-decoration:none;display:inline-block}
.sp-nav-cta:hover{transform:translateY(-1px);box-shadow:0 4px 20px rgba(139,92,246,.35)}

/* Hero */
.sp-hero{position:relative;z-index:2;text-align:center;padding:100px 40px 80px;max-width:900px;margin:0 auto}
.sp-label{font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:#8B5CF6;margin-bottom:18px}
.sp-hero h1{font-size:56px;font-weight:800;line-height:1.06;letter-spacing:-2.5px;color:#1a1a2e;margin-bottom:20px}
.sp-hero h1 em{font-family:Georgia,'Times New Roman',serif;font-style:italic;font-weight:700;background:linear-gradient(135deg,#8B5CF6,#A78BFA,#C084FC);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.sp-hero h1 span{color:#8B5CF6}
.sp-hero p{font-size:18px;color:rgba(0,0,0,.45);max-width:560px;margin:0 auto;line-height:1.7}

/* Sections */
.sp-section{position:relative;z-index:2;max-width:1100px;margin:0 auto;padding:80px 40px}
.sp-section-div{border-top:1px solid transparent;position:relative}
.sp-section-div::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:min(500px,70%);height:1px;background:linear-gradient(90deg,transparent,rgba(139,92,246,.12) 30%,rgba(139,92,246,.18) 50%,rgba(139,92,246,.12) 70%,transparent)}
.sp-section h2{font-size:38px;font-weight:800;letter-spacing:-1.5px;color:#1a1a2e;margin-bottom:16px;text-align:center}
.sp-section h2 em{font-family:Georgia,'Times New Roman',serif;font-style:italic;font-weight:700}
.sp-section>p{font-size:16px;color:rgba(0,0,0,.45);text-align:center;max-width:540px;margin:0 auto 48px;line-height:1.65}

/* Grid */
.sp-grid{display:grid;gap:20px}
.sp-grid-2{grid-template-columns:repeat(2,1fr)}
.sp-grid-3{grid-template-columns:repeat(3,1fr)}
.sp-grid-4{grid-template-columns:repeat(4,1fr)}

/* Cards */
.sp-card{background:linear-gradient(145deg,#1a0e32 0%,#261445 50%,#1e1038 100%);border:1px solid rgba(139,92,246,.15);border-radius:14px;padding:28px 24px;transition:all .3s cubic-bezier(.4,0,.2,1)}
.sp-card:hover{border-color:rgba(167,139,250,.35);transform:translateY(-3px);box-shadow:0 12px 40px rgba(139,92,246,.12),0 0 20px rgba(139,92,246,.04)}
.sp-card-icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;background:rgba(139,92,246,.15);border:1px solid rgba(139,92,246,.2)}
.sp-card-icon svg{width:20px;height:20px;color:#A78BFA}
.sp-card h3{font-size:17px;font-weight:700;color:#fff;margin-bottom:8px}
.sp-card p{font-size:14px;color:rgba(255,255,255,.45);line-height:1.6}
.sp-card .sp-price{font-size:15px;font-weight:700;color:#22C55E;margin-top:8px}

/* Steps */
.sp-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;counter-reset:step}
.sp-step{background:linear-gradient(145deg,#1a0e32 0%,#261445 50%,#1e1038 100%);border:1px solid rgba(139,92,246,.15);border-radius:14px;padding:32px 24px;counter-increment:step;position:relative}
.sp-step::before{content:counter(step);font-size:48px;font-weight:900;color:rgba(139,92,246,.2);line-height:1;margin-bottom:12px;display:block}
.sp-step h3{font-size:18px;font-weight:700;color:#fff;margin-bottom:8px}
.sp-step p{font-size:14px;color:rgba(255,255,255,.45);line-height:1.6}

/* Feature row */
.sp-feat{display:flex;align-items:center;gap:48px;padding:48px 0}
.sp-feat:nth-child(even){flex-direction:row-reverse}
.sp-feat-text{flex:1}
.sp-feat-text h3{font-size:24px;font-weight:800;color:#1a1a2e;margin-bottom:12px;letter-spacing:-.5px}
.sp-feat-text p{font-size:15px;color:rgba(0,0,0,.45);line-height:1.7}
.sp-feat-visual{flex:1;background:linear-gradient(145deg,#1a0e32 0%,#261445 50%,#1e1038 100%);border:1px solid rgba(139,92,246,.15);border-radius:14px;padding:32px;min-height:200px;display:flex;align-items:center;justify-content:center}
.sp-feat-mock{font-size:13px;color:rgba(255,255,255,.3);text-align:center}

/* Stats */
.sp-stats{display:flex;justify-content:center;gap:48px;padding:32px 0;flex-wrap:wrap}
.sp-stat{text-align:center}
.sp-stat strong{display:block;font-size:36px;font-weight:800;color:#1a1a2e;letter-spacing:-1px}
.sp-stat strong.green{color:#22C55E}
.sp-stat strong.purple{color:#8B5CF6}
.sp-stat span{font-size:13px;color:rgba(0,0,0,.4);text-transform:uppercase;letter-spacing:.5px}

/* Pricing cards */
.sp-price-card{background:linear-gradient(145deg,#1a0e32 0%,#261445 50%,#1e1038 100%);border:1px solid rgba(139,92,246,.12);border-radius:14px;padding:32px 28px;text-align:center}
.sp-price-card.featured{border-color:rgba(139,92,246,.3);box-shadow:0 8px 32px rgba(139,92,246,.12)}
.sp-price-badge{display:inline-block;font-size:9px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:4px 10px;border-radius:6px;background:linear-gradient(135deg,rgba(139,92,246,.2),rgba(167,139,250,.15));color:#A78BFA;margin-bottom:12px}
.sp-price-name{font-size:16px;font-weight:600;color:#fff;margin-bottom:4px}
.sp-price-amt{font-size:40px;font-weight:800;color:#fff;letter-spacing:-1.5px;margin-bottom:4px}
.sp-price-amt small{font-size:14px;font-weight:400;color:rgba(255,255,255,.3)}
.sp-price-desc{font-size:13px;color:rgba(255,255,255,.45);margin-bottom:20px;line-height:1.5}
.sp-price-list{list-style:none;text-align:left;margin-bottom:24px}
.sp-price-list li{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,.55);padding:5px 0}
.sp-price-list li::before{content:'';width:16px;height:16px;flex-shrink:0;background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238B5CF6' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat}

/* Buttons */
.sp-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 36px;border-radius:10px;font-size:15px;font-weight:600;font-family:inherit;border:none;cursor:pointer;transition:all .2s;text-decoration:none}
.sp-btn-pri{background:linear-gradient(135deg,#8B5CF6,#7C3AED,#6D28D9);color:#fff;box-shadow:0 4px 24px rgba(139,92,246,.3)}
.sp-btn-pri:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(139,92,246,.4)}
.sp-btn-sec{background:rgba(139,92,246,.04);color:rgba(0,0,0,.5);border:1px solid rgba(139,92,246,.12)}
.sp-btn-sec:hover{color:#1a1a2e;border-color:rgba(139,92,246,.25);background:rgba(139,92,246,.06)}
.sp-btn-ghost{background:rgba(255,255,255,.06);color:rgba(255,255,255,.7);border:1px solid rgba(139,92,246,.15)}
.sp-btn-ghost:hover{color:#fff;border-color:rgba(139,92,246,.35);background:rgba(255,255,255,.1)}
.sp-btn-full{width:100%}

/* CTA */
.sp-cta{position:relative;z-index:2;text-align:center;padding:60px 40px 80px;max-width:800px;margin:0 auto}
.sp-cta-box{background:linear-gradient(145deg,#1a0e32 0%,#261445 40%,#1e1038 100%);border-radius:32px;padding:80px 48px;border:1px solid rgba(139,92,246,.15)}
.sp-cta h2{font-size:42px;font-weight:800;letter-spacing:-1.5px;color:#fff;margin-bottom:16px}
.sp-cta p{font-size:15px;color:rgba(255,255,255,.4);margin-bottom:36px;line-height:1.65}

/* FAQ */
.sp-faq{max-width:700px;margin:0 auto}
.sp-faq-item{border-bottom:1px solid rgba(139,92,246,.08);padding:20px 0}
.sp-faq-q{font-size:15px;font-weight:600;color:#1a1a2e;cursor:pointer;display:flex;align-items:center;justify-content:space-between}
.sp-faq-q::after{content:'+';font-size:20px;color:rgba(139,92,246,.4);transition:transform .2s}
.sp-faq-item.open .sp-faq-q::after{transform:rotate(45deg)}
.sp-faq-a{font-size:14px;color:rgba(0,0,0,.45);line-height:1.7;max-height:0;overflow:hidden;transition:max-height .3s,padding .3s}
.sp-faq-item.open .sp-faq-a{max-height:200px;padding-top:12px}

/* Footer */
.sp-footer{background:linear-gradient(180deg,#1e1038,#140b28);padding:60px 40px 32px;position:relative;z-index:2}
.sp-foot-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between}
.sp-foot-logo{display:flex;align-items:center;gap:8px}
.sp-foot-logo img{width:24px;height:24px;border-radius:6px}
.sp-foot-logo span{font-size:14px;font-weight:700;color:#fff}
.sp-foot-links{display:flex;gap:20px}
.sp-foot-links a{font-size:12px;color:rgba(255,255,255,.35);transition:color .2s}
.sp-foot-links a:hover{color:rgba(255,255,255,.6)}
.sp-foot-copy{font-size:11px;color:rgba(255,255,255,.2)}

/* Responsive */
@media(max-width:768px){
  .sp-nav{padding:12px 16px}
  .sp-nav-links .sp-nav-link{display:none}
  .sp-hero{padding:60px 20px 50px}
  .sp-hero h1{font-size:34px;letter-spacing:-1.2px}
  .sp-hero p{font-size:16px}
  .sp-section{padding:48px 20px}
  .sp-section h2{font-size:28px;letter-spacing:-.8px}
  .sp-grid-2,.sp-grid-3,.sp-grid-4{grid-template-columns:1fr}
  .sp-steps{grid-template-columns:1fr}
  .sp-feat,.sp-feat:nth-child(even){flex-direction:column;gap:24px}
  .sp-stats{gap:24px}
  .sp-cta{padding:40px 20px 60px}
  .sp-cta-box{padding:48px 24px;border-radius:20px}
  .sp-cta h2{font-size:30px}
  .sp-footer{padding:32px 20px 24px}
  .sp-foot-inner{flex-direction:column;gap:16px;text-align:center}
  .sp-foot-links{flex-wrap:wrap;justify-content:center}
}
