:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.16);
  --brand: #7C5CFF;
  --brand2:#00D4FF;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(124,92,255,0.35), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(0,212,255,0.25), transparent 60%),
              var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{
  width:min(1160px, calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky; top:0; z-index:1000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0; font-size:13px; color:var(--muted);
}
.topbar__link{
  color: #fff; font-weight:600;
  padding:6px 10px; border:1px solid rgba(255,255,255,0.14);
  border-radius:999px;
}

.header{
  position:sticky; top:41px; z-index:999;
  background: rgba(7,10,18,0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,0.9), rgba(0,212,255,0.8));
  box-shadow: 0 10px 30px rgba(124,92,255,0.25);
}
.brand__name{font-weight:700; letter-spacing:0.2px}
.nav{display:flex; gap:18px; color:var(--muted); font-weight:500}
.nav a:hover{color:#fff}
.header__cta{display:none}

.menuBtn{
  display:none;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:#fff;
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
}

.mobileNav{
  display:none;
  padding:14px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobileNav a{display:block; padding:10px 0; color:var(--muted)}
.mobileNav a:hover{color:#fff}
.mobileNav.open{display:block}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 16px;
  font-weight:700;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:#fff;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22)}
.btn--primary{
  border-color: rgba(124,92,255,0.40);
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(0,212,255,0.55));
  box-shadow: 0 18px 50px rgba(124,92,255,0.18);
}
.btn--ghost{background: rgba(255,255,255,0.03)}
.btn--full{width:100%}

.hero{
  position:relative;
  min-height: calc(100vh - 110px);
  display:grid; align-items:center;
  padding: 48px 0 70px;
}
.hero__bg{
  position:absolute; inset:-2px;
  background:
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.03);
  opacity: 0.55;
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 30% 20%, rgba(124,92,255,0.35), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(0,212,255,0.22), transparent 60%),
    linear-gradient(to bottom, rgba(7,10,18,0.30), rgba(7,10,18,0.92));
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items:center;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  width:max-content;
  margin-bottom:14px;
}
.badge .dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(124,92,255,0.15);
}
.hero h1{
  margin:0;
  font-size: clamp(34px, 5vw, 58px);
  line-height:1.05;
  letter-spacing:-0.6px;
}
.hero p{
  margin:14px 0 18px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.hero__trust{
  margin-top:18px;
  display:flex; gap:16px; flex-wrap:wrap;
}
.trustItem{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.trustNum{font-size:18px; font-weight:800}
.trustTxt{font-size:12px; color:var(--muted); margin-top:2px}

.heroCard{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__top{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.heroCard__title{font-weight:800}
.heroCard__pill{
  font-size:12px; font-weight:800;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(124,92,255,0.15);
}
.heroCard__body{padding:16px}
.formRow{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
label{font-size:12px; color:var(--muted); font-weight:600}
input, select, textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color:#fff;
  padding:12px 12px;
  outline:none;
}
textarea{resize:vertical}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,0.45)}
.formGrid{display:grid; grid-template-columns:1fr 1fr; gap:10px}

.tiny{font-size:12px; color:rgba(255,255,255,0.58); margin-top:10px}

.scrollHint{
  position:absolute;
  left:50%; bottom:18px;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color: rgba(255,255,255,0.75);
  font-size:12px;
}
.mouse{
  width:22px; height:34px;
  border:1px solid rgba(255,255,255,0.35);
  border-radius:999px;
  position:relative;
}
.mouse::after{
  content:"";
  position:absolute; left:50%; top:8px;
  width:4px; height:4px; border-radius:50%;
  background:#fff;
  transform:translateX(-50%);
  animation: wheel 1.2s infinite;
}
@keyframes wheel{
  0%{opacity:0; transform:translate(-50%, -2px)}
  20%{opacity:1}
  100%{opacity:0; transform:translate(-50%, 12px)}
}

.sectionHead{
  padding: 26px 0 16px;
}
.sectionHead h2{
  margin:0;
  font-size: clamp(22px, 3.2vw, 34px);
}
.sectionHead p{
  margin:10px 0 0;
  color: var(--muted);
  max-width: 70ch;
  line-height:1.7;
}

.journey{padding: 34px 0 18px}
.timeline{
  position:relative;
  padding: 22px 0 34px;
}
.timelineLine{
  position:absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width:2px;
  background: linear-gradient(to bottom, rgba(124,92,255,0.0), rgba(124,92,255,0.55), rgba(0,212,255,0.55), rgba(0,212,255,0.0));
  filter: blur(0.2px);
}

.chapter{
  position:relative;
  display:grid;
  grid-template-columns: 70px 1fr 0.9fr;
  gap:16px;
  padding: 20px 0;
  align-items:center;
}
.chapter__marker{display:flex; justify-content:center}
.chapter__num{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius:16px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.16);
  font-weight:900;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.glass{
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.chapter__card{padding:18px 18px 16px}
.chapter__meta{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.chip{
  font-size:12px; font-weight:800;
  padding:6px 10px; border-radius:999px;
  background: rgba(124,92,255,0.20);
  border:1px solid rgba(124,92,255,0.25);
}
.chip--soft{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color: var(--muted);
}
.chapter h3{margin:0 0 8px; font-size:20px}
.chapter p{margin:0 0 12px; color:var(--muted); line-height:1.75}
.chapter__bullets{
  display:grid; grid-template-columns:1fr; gap:8px;
  color: rgba(255,255,255,0.86);
  font-weight:600;
}
.bullet{padding:10px 12px; border-radius:16px; background: rgba(0,0,0,0.18); border:1px solid rgba(255,255,255,0.10)}

.chapter__visual{
  height: 240px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.chapter__visual::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(7,10,18,0.65), rgba(7,10,18,0.10));
}

.v1{background:url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat}
.v2{background:url("https://images.unsplash.com/photo-1502920514313-52581002a659?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat}
.v3{background:url("https://images.unsplash.com/photo-1526779259212-939e64788e3c?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat}
.v4{background:url("https://images.unsplash.com/photo-1500835556837-99ac94a94552?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat}

.packages{padding: 24px 0 24px}
.cardsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.packCard{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  padding: 18px;
}
.packCard--featured{
  border-color: rgba(124,92,255,0.45);
  background: linear-gradient(180deg, rgba(124,92,255,0.20), rgba(255,255,255,0.06));
}
.packBadge{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  margin-bottom:10px;
}
.packTop h3{margin:0 0 6px}
.packTop p{margin:0 0 14px; color:var(--muted); line-height:1.7}
.packList{display:grid; gap:10px; color:rgba(255,255,255,0.86); margin-bottom:14px; font-weight:600}

.stories{padding: 18px 0 24px}
.testGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testCard{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  padding: 18px;
}
.testStars{letter-spacing:2px}
.testCard p{color:var(--muted); line-height:1.75; margin:12px 0 14px}
.testPerson{display:flex; align-items:center; gap:10px}
.avatar{
  width:42px;height:42px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(124,92,255,0.85), rgba(0,212,255,0.55));
}
.name{font-weight:900}
.role{font-size:12px; color:var(--muted)}

.ctaBand{
  margin-top: 14px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(0,212,255,0.10));
  padding: 18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  box-shadow: var(--shadow);
}
.ctaBand h3{margin:0 0 6px}
.ctaBand p{margin:0; color:var(--muted); line-height:1.7}

.contact{padding: 10px 0 70px}
.contactWrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items:start;
}
.contactLeft h2{margin:0 0 8px}
.contactLeft p{margin:0 0 16px; color:var(--muted); line-height:1.75}
.contactInfo{display:grid; gap:12px}
.infoRow{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 12px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.infoIcon{font-size:18px}
.infoLabel{font-size:12px; color:var(--muted); font-weight:700}
.infoValue{font-weight:800}

.contactForm{
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 18px;
}

.stickyCta{
  position:fixed;
  left:0; right:0; bottom:0;
  padding: 10px 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.10);
  z-index: 1000;
}
.stickyCta__inner{display:flex; align-items:center; justify-content:space-between; gap:10px}
.stickyText{color: rgba(255,255,255,0.78)}

.footer{
  padding: 22px 0 90px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; color:var(--muted); font-size:14px}
.footerLinks{display:flex; gap:14px}
.footerLinks a:hover{color:#fff}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr; gap:18px}
  .cardsGrid{grid-template-columns:1fr}
  .testGrid{grid-template-columns:1fr}
  .contactWrap{grid-template-columns:1fr}
  .chapter{grid-template-columns:70px 1fr}
  .chapter__visual{grid-column: 2 / -1; height: 220px}
  .timelineLine{left: 22px}
  .header__cta{display:none}
  .nav{display:none}
  .menuBtn{display:inline-flex}
}
@media (max-width: 520px){
  .formGrid{grid-template-columns:1fr}
  .topbar__inner{flex-direction:column; align-items:flex-start}
  .ctaBand{flex-direction:column; align-items:flex-start}
}
