:root{
  --bg:#070b14;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.55);
  --accent:#7c3aed;
  --accent2:#22c55e;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(124,58,237,.35), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(34,197,94,.22), transparent 55%),
              radial-gradient(900px 600px at 60% 100%, rgba(59,130,246,.18), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{width:min(1120px, calc(100% - 48px)); margin:0 auto}

.bg{position:relative; min-height:100%}
.noise{
  pointer-events:none;
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.25;
}

.header{
  padding:22px 0;
  display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(7,11,20,.75), rgba(7,11,20,.35));
  border-bottom:1px solid rgba(255,255,255,.07);
}

.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand.small{font-weight:800}
.brand-text{font-size:18px}
.logo{color:#e9e2ff}
.badge{
  font-size:12px; font-weight:700;
  padding:4px 8px; border-radius:999px;
  background: rgba(124,58,237,.18);
  border:1px solid rgba(124,58,237,.35);
  color:#e9e2ff;
}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.header-cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  border-radius:12px;
  padding:10px 14px;
  font-weight:700;
  border:1px solid transparent;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn-wide{width:100%}
.btn-primary{
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(59,130,246,1));
  box-shadow: 0 10px 25px rgba(124,58,237,.22);
}
.btn-primary:hover{opacity:.95}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(255,255,255,.08)}
.arrow{font-weight:900}

.hero{
  padding:56px 0 36px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}
h1{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.8px;
}
.sub{
  margin:0 0 18px;
  color: var(--muted);
  font-size:16px;
  line-height:1.6;
}

.audit-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.audit-form{
  display:grid;
  grid-template-columns: 1fr 180px;
  gap:10px;
  align-items:center;
}
.input-wrap{
  position:relative;
  display:flex;
  align-items:center;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,11,20,.45);
  overflow:hidden;
}
.input-icon{
  padding: 12px 10px 12px 12px;
  color: rgba(255,255,255,.45);
  font-weight:800;
  font-size:13px;
}
input[type="url"]{
  width:100%;
  padding: 12px 12px 12px 0;
  border:0;
  outline:0;
  background: transparent;
  color: var(--text);
  font-weight:700;
  font-size:14px;
}
input::placeholder{color: rgba(255,255,255,.38); font-weight:700}
.audit-hint{
  margin-top:10px;
  display:flex; align-items:center; gap:10px;
  color: var(--muted2);
  font-weight:600;
  font-size:13px;
}
.dot{
  width:9px; height:9px; border-radius:50%;
  background: rgba(34,197,94,.9);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.trust{margin-top:18px}
.trust-title{color:var(--muted2); font-weight:700; font-size:13px; margin-bottom:10px}
.trust-logos{display:flex; gap:10px; flex-wrap:wrap}
.trust-logos span{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-weight:700;
  font-size:12px;
}

.stats{margin-top:18px; display:flex; gap:14px; flex-wrap:wrap}
.stat{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:10px 12px;
  min-width: 140px;
}
.stat-num{font-weight:900; font-size:20px}
.stat-label{color:var(--muted2); font-weight:700; font-size:12px}

.hero-right{position:relative}
.mock{
  position:relative;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock-top{display:flex; gap:8px; margin-bottom:12px; flex-wrap:wrap}
.pill{
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background: rgba(124,58,237,.18);
  border:1px solid rgba(124,58,237,.35);
  color: #efeaff;
}
.pill-ghost{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
}
.score{display:grid; grid-template-columns: 160px 1fr; gap:14px; align-items:center}
.ring{
  width:150px; height:150px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: conic-gradient(from 180deg, rgba(34,197,94,1) 0 78%, rgba(255,255,255,.10) 78% 100%);
  padding:10px;
}
.ring-inner{
  width:100%; height:100%;
  border-radius:50%;
  background: rgba(7,11,20,.75);
  border:1px solid rgba(255,255,255,.10);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.score-num{font-size:40px; font-weight:900; letter-spacing:-.6px}
.score-sub{color:var(--muted2); font-weight:800; font-size:12px}
.score-meta{display:flex; flex-direction:column; gap:8px}
.meta-row{display:flex; justify-content:space-between; color:rgba(255,255,255,.86); font-weight:800; font-size:13px}
.meta-k{color:rgba(255,255,255,.70); font-weight:800}
.meta-v{color:#dffbe9}

.issues{margin-top:14px}
.issues-title{font-weight:900; margin-bottom:10px}
.issue{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size:13px;
  margin-bottom:10px;
}
.chip{
  display:inline-flex;
  padding:3px 8px;
  border-radius:999px;
  font-weight:900;
  font-size:11px;
  margin-right:8px;
  background: rgba(239,68,68,.16);
  border:1px solid rgba(239,68,68,.35);
  color:#ffd0d0;
}
.chip-mid{
  background: rgba(245,158,11,.16);
  border-color: rgba(245,158,11,.35);
  color:#ffe7c2;
}
.chip-low{
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.32);
  color:#d7ffe6;
}
.mock-bottom{margin-top:12px}
.mini-note{color:var(--muted2); font-weight:700; font-size:12px}

.glow{
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,.22), transparent 55%);
  filter: blur(30px);
  z-index:-1;
}

.section{padding:44px 0}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:30px; letter-spacing:-.4px}
.section-head p{margin:0; color:var(--muted); font-weight:600; line-height:1.6}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:16px;
}
.step-num{
  width:34px; height:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: rgba(124,58,237,.18);
  border:1px solid rgba(124,58,237,.35);
  color:#efeaff;
}
.step h3{margin:12px 0 6px; font-size:16px}
.step p{margin:0; color:var(--muted); font-weight:600; line-height:1.6; font-size:14px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-weight:600; line-height:1.6; font-size:14px}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  align-items:stretch;
}
.price-card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:16px;
  display:flex; flex-direction:column; gap:12px;
}
.price-card.featured{
  background: linear-gradient(180deg, rgba(124,58,237,.18), rgba(255,255,255,.04));
  border-color: rgba(124,58,237,.35);
}
.price-top{display:flex; flex-direction:column; gap:6px}
.price-name{font-weight:900; font-size:16px}
.price-val{font-weight:900; font-size:28px; letter-spacing:-.4px}
.price-val span{font-size:14px; color:var(--muted); margin-left:4px}
.price-note{color:var(--muted); font-weight:700; font-size:13px}
.list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.list li{color:rgba(255,255,255,.86); font-weight:700; font-size:13px}
.note-box{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-weight:700;
}
.note-box a{color:#e9e2ff; text-decoration:underline}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:18px;
  background: linear-gradient(135deg, rgba(59,130,246,.16), rgba(124,58,237,.16));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.cta h2{margin:0 0 6px; font-size:22px}
.cta p{margin:0; color:var(--muted); font-weight:650; line-height:1.6}
.cta-right{display:flex; gap:10px; flex-wrap:wrap}

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
details{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:14px 14px;
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{
  margin:10px 0 0;
  color:var(--muted);
  font-weight:650;
  line-height:1.6;
  font-size:14px;
}

.footer{
  padding:28px 0 38px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  border-top:1px solid rgba(255,255,255,.07);
  color:var(--muted);
}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted); font-weight:700; font-size:13px}
.footer-links a:hover{color:var(--text)}
.muted{color:var(--muted2); font-weight:700; font-size:13px}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* responsive */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr; padding-top:34px}
  h1{font-size:38px}
  .audit-form{grid-template-columns:1fr}
  .steps,.grid,.pricing{grid-template-columns:1fr}
  .faq{grid-template-columns:1fr}
  .header{position:relative}
  .nav{display:none}
}