:root{
  --bg: #0b0d12;
  --panel: #121622;
  --panel2: #0f1320;
  --text: #eef2ff;
  --muted: #a9b0c4;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 15% 10%, rgba(138,180,255,.18), transparent 60%),
              radial-gradient(1000px 600px at 85% 20%, rgba(208,120,255,.14), transparent 65%),
              var(--bg);
  color: var(--text);
  line-height:1.55;
}

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

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

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px;
  width:auto;height:auto;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:12px;
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  backdrop-filter: blur(14px);
  background: rgba(11,13,18,.65);
  border-bottom: 1px solid var(--border);
  z-index:50;
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand.small .brand-name{ font-size:14px; }
.brand.small .brand-tag{ font-size:12px; }

.logo{
  width:38px;height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}
.brand-name{
  font-weight:700;
  letter-spacing:.2px;
}
.brand-tag{
  font-size:13px;
  color:var(--muted);
}

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

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.mobile-nav{
  display:grid;
  gap:12px;
  padding: 0 0 14px 0;
}
.mobile-nav a{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600;
}
.mobile-nav a:hover{ color:var(--text); text-decoration:none; }

.hero{
  padding: 72px 0 22px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.hero-copy h1{
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.08;
  margin: 0 0 14px 0;
  letter-spacing: -0.8px;
}
.lead{
  font-size: 18px;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 22px 0;
}
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}
.hero-proof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pill{
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:600;
  font-size: 13px;
}

.hero-card .card{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card-title{
  font-weight:800;
  margin-bottom: 10px;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.checklist li{ margin: 7px 0; }
.card-footer{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.section{
  padding: 56px 0;
}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
h2{
  font-size: 28px;
  margin: 0 0 10px 0;
}
h3{
  margin: 0 0 8px 0;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }
.maxw{ max-width: 70ch; }

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top: 18px;
}
.step{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding: 16px;
}
.step-num{
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  font-weight:800;
  margin-bottom: 10px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 18px;
}
.card.soft{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(18,22,34,.75);
  padding: 18px;
}
.bullets{
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 7px 0; }

.cta-band{
  margin-top: 18px;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.faq{
  margin-top: 16px;
  display:grid;
  gap:10px;
}
details{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding: 14px 14px;
}
summary{
  cursor:pointer;
  font-weight:700;
}
details p{
  margin: 10px 0 0 0;
  color: var(--muted);
}

.site-footer{
  padding: 28px 0 44px 0;
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.footer-links{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-links a{ color: var(--muted); font-weight:600; }
.footer-links a:hover{ color: var(--text); text-decoration:none; }

/* Buttons */
.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn:hover{ filter: brightness(1.07); }
.btn-primary{
  background: rgba(255,255,255,.14);
}
.btn-ghost{
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.btn-ghost:hover{ color: var(--text); }
.btn-lg{ padding: 12px 16px; font-size: 14px; }

.icon-btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  width:38px;height:38px;
  border-radius: 14px;
  cursor:pointer;
}
.icon-btn:hover{ filter: brightness(1.08); }

.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;
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  z-index:999;
}
.modal[hidden]{ display:none; }
.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}
.modal-panel{
  position:relative;
  width:min(980px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  overflow:auto;
  border:1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(14,17,26,.92);
  box-shadow: var(--shadow);
}
.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 0 14px;
  gap:10px;
}
.modal-tabs{
  display:flex;
  gap:10px;
  padding: 12px 14px;
}
.tab{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight:800;
  cursor:pointer;
}
.tab.active{
  color: var(--text);
  background: rgba(255,255,255,.10);
}
.modal-body{
  padding: 0 14px 14px 14px;
}
.form{
  display:grid;
  gap:12px;
  margin-top: 10px;
}
label{
  display:grid;
  gap:6px;
  font-weight:700;
}
input, textarea{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
}
textarea{ resize: vertical; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
}
