:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.09);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,.72);
  --border: rgba(255,255,255,.12);

  --accent: #7c5cff;
  --accent-2: #35d0ff;

  --btn-bg: linear-gradient(135deg, var(--accent), var(--accent-2));
  --btn-text: #071022;

  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --max: 1120px;
}

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

/* Background blobs */
.bg-blobs{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  filter: blur(60px);
  opacity:.55;
}
.blob{
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.95), transparent 60%);
  mix-blend-mode: screen;
}
.blob.b2{
  width:560px; height:560px;
  right:-140px; top:60px;
  background: radial-gradient(circle at 30% 30%, rgba(53,208,255,.85), transparent 60%);
}
.blob.b1{ left:-180px; top:-120px; }
.grain{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.12;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

/* Header / Nav */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(6,10,20,.6);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
}
.logo{
  width:34px; height:34px;
  border-radius:12px;
  overflow:hidden;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(53,208,255,1));
  box-shadow: 0 10px 24px rgba(124,92,255,.25);
  display:grid;
  place-items:center;
}
.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.navlinks{
  display:flex;
  gap:16px;
  align-items:center;
}
.navlinks a{
  padding:8px 10px;
  border-radius:12px;
  color: var(--muted);
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
}
.navlinks a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
  border-color: var(--border);
}
.navlinks a.active{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(124,92,255,.35);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  border:none;
  background: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: 0 14px 34px rgba(124,92,255,.25);
}

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
}

/* Mobile drawer */
.drawer{
  display:none;
  position:fixed;
  top:64px;
  left:0; right:0;
  background: rgba(6,10,20,.92);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(14px);
  padding:12px 0 16px;
  z-index:49;
}
.drawer a{
  display:block;
  padding:12px 0;
  color: var(--muted);
  font-weight:700;
}
.drawer a:hover{ color: var(--text); }

/* Sections */
section{ padding: 78px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:22px;
}
h1,h2,h3{ margin:0; }
h2{
  font-size: clamp(24px, 4vw, 36px);
  line-height:1.12;
  letter-spacing:-.3px;
}
p{ margin:0; color: var(--muted); line-height:1.6; }

.card{
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero */
.hero{ padding: 74px 0 64px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy{ padding: 26px; }
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
  margin-bottom:14px;
  width:fit-content;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(53,208,255,1);
  box-shadow: 0 0 0 5px rgba(53,208,255,.16);
}
.hero h1{
  font-size: clamp(32px, 5vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
  margin-bottom:12px;
}
.hero-lead{
  font-size: 16px;
  margin-bottom:18px;
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}

.hero-media{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.portrait{
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  position:relative;
  min-height: 280px;
}
.hero-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  text-align:center;
}
.stat b{
  display:block;
  font-size:18px;
  letter-spacing:-.3px;
}
.stat small{ color: var(--muted); font-weight:700; }

/* Grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{ padding:18px; }
.feature h3{ font-size:16px; margin-bottom:6px; }
.tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(124,92,255,.12);
  border:1px solid rgba(124,92,255,.25);
  color: rgba(234,240,255,.92);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
  width:fit-content;
}

/* Video */
.video-wrap{ padding: 16px; }
.video{
  width:100%;
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
}
.video video{ width:100%; height:auto; display:block; }
.video-hint{ margin-top:12px; }

/* Pricing */
.price-card{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.price{ font-size:28px; font-weight:900; letter-spacing:-.6px; }
.price-card ul{
  margin:0;
  padding:0 0 0 18px;
  color: var(--muted);
  line-height:1.7;
}
.price-card .btn{ width:100%; }
.price-card.popular{ outline:1px solid rgba(124,92,255,.35); }

/* Reviews */
.quote{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.quote b{ font-size:14px; }
.quote em{ font-style:normal; color:var(--muted); }

/* FAQ */
details{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.05);
  padding: 12px 14px;
}
details + details{ margin-top:10px; }
summary{
  cursor:pointer;
  font-weight:800;
  color: var(--text);
  outline:none;
}
details p{ margin-top:10px; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.contact-card{ padding:18px; }
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}
label{
  font-weight:800;
  color: var(--muted);
  font-size:12px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font: inherit;
  outline:none;
}
textarea{ min-height:110px; resize:vertical; }
.hint{
  font-size:12px;
  color: var(--muted);
  margin-top:10px;
}

.mb10{ margin-bottom:10px; }
.mt10{ margin-top:10px; }
.contact-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
footer{
  padding: 28px 0 40px;
  color: var(--muted);
  border-top:1px solid var(--border);
  background: rgba(6,10,20,.35);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Theme panel */
.theme-panel{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:60;
  width: min(360px, calc(100vw - 28px));
  display:none;
}
.theme-panel.open{ display:block; }
.theme-panel .card{ padding:14px; }
.panel-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.panel-head b{ font-size:14px; }
.panel-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.control{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.control label{
  font-size:12px;
  color: var(--muted);
  font-weight:800;
}
.control input[type="color"]{
  height:42px;
  padding:0;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.panel-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  section{ padding: 64px 0; }
  .navlinks{ display:none; }
  .burger{ display:inline-flex; }
  .stats{ grid-template-columns: repeat(3, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
}