:root{
  --bg:#0b0e14;
  --bg2:#06070c;
  --fg:#eef3ff;
  --muted:#b3bed6;
  --muted2:#7f8aa6;
  --ink:#0a0e14;
  --paper:#f7f8fd;
  --line:rgba(255,255,255,.10);
  --line2:rgba(10,14,20,.12);
  --card:rgba(255,255,255,.06);
  --glass:rgba(0,0,0,.24);
  --accent:#76e4ff;
  --accent2:#b8a3ff;
  --accent3:#eef3ff;
  --shadow:0 28px 90px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:26px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--fg);
  background:
    radial-gradient(1200px 700px at 70% -20%, #76e4ff22, transparent 60%),
    radial-gradient(900px 600px at -10% 30%, #b8a3ff18, transparent 60%),
    radial-gradient(1000px 700px at 90% 110%, #eef3ff16, transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.94}
.wrap{max-width:1160px; margin:0 auto; padding:0 22px}
.skip{position:absolute; left:-9999px; top:12px; background:#fff; color:#000; padding:10px 12px; border-radius:12px; z-index:9999}
.skip:focus{left:12px}

.topbar{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter: blur(16px);
  background: rgba(11,14,20,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background: radial-gradient(18px 18px at 30% 30%, #76e4ff22, transparent 60%),
              radial-gradient(20px 20px at 70% 70%, #b8a3ff18, transparent 60%),
              rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 46px rgba(0,0,0,.35);
}
.brand__mark img{width:28px; height:28px}
.brand__domain{font-weight:900; letter-spacing:.2px}
.brand__tag{font-size:12px; color:rgba(238,243,255,.70); margin-top:4px}

.nav{display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  font-size:13px;
  color:rgba(238,243,255,.86);
  padding:10px 12px;
  border-radius:999px;
}
.nav a:hover{background:rgba(255,255,255,.06)}
.pill{
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color:rgba(238,243,255,.90);
  cursor:pointer;
}
.pill:hover{background:rgba(255,255,255,.09)}

.hero{position:relative; padding:78px 0 56px; overflow:hidden}
.hero__bg{
  position:absolute;
  inset:-60px -40px auto -40px;
  opacity:.82;
  pointer-events:none;
  filter: drop-shadow(0 24px 80px rgba(0,0,0,.65));
}
.hero__bg img{width:100%; height:auto; max-width:1200px}
.hero__grid{position:relative; z-index:2; display:grid; grid-template-columns: 1.05fr .95fr; gap:28px; align-items:start}

.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(238,243,255,.88);
}
.badge--ghost{
  background: transparent;
  border:1px dashed rgba(255,255,255,.20);
  color:rgba(238,243,255,.78);
}

.hero h1{
  margin:14px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height:1.02;
  letter-spacing:-.9px;
}
.accent{
  display:block;
  margin-top:10px;
  background: linear-gradient(90deg, var(--accent2), rgba(238,243,255,.92), var(--accent));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  font-family: var(--mono);
  letter-spacing:-.6px;
}
.lead{
  margin:16px 0 0;
  font-size:16px;
  line-height:1.65;
  color:rgba(238,243,255,.84);
  max-width:74ch;
}
.cta{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:rgba(238,243,255,.92);
  font-weight:800;
  font-size:14px;
  letter-spacing:.1px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24)}
.btn--primary{
  background: linear-gradient(135deg, #b8a3ff22, #76e4ff16);
  border-color: rgba(255,255,255,.22);
}
.btn--secondary{background: rgba(0,0,0,.24)}
.btn--ghost{background: transparent; border-style:dashed}
.btn--block{width:100%}

.proof{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  max-width:560px;
}
.proof__item{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius:18px;
  padding:12px 12px;
}
.proof__k{font-size:12px; color:rgba(238,243,255,.70)}
.proof__v{margin-top:6px; font-weight:900; letter-spacing:.2px}

.note{
  margin-top:16px;
  font-size:12px;
  color:rgba(238,243,255,.76);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:14px;
  padding:10px 12px;
  max-width:86ch;
}
.note .muted{color:rgba(238,243,255,.65)}

.panel{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 520px at 10% 0%, #76e4ff18, transparent 62%),
    radial-gradient(900px 520px at 90% 60%, #b8a3ff16, transparent 62%),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel__top{padding:18px 18px 12px; border-bottom:1px solid rgba(255,255,255,.10)}
.panel__label{font-size:12px; color:rgba(238,243,255,.70)}
.panel__title{margin-top:10px; font-weight:900; font-size:18px; letter-spacing:-.2px}
.panel__desc{margin-top:10px; color:rgba(238,243,255,.78); line-height:1.6}

.panel__stats{display:grid; grid-template-columns: 1fr; gap:10px; padding:14px 18px}
.stat{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius:18px;
  padding:12px 12px;
}
.stat__num{font-weight:900}
.stat__label{margin-top:4px; font-size:12px; color:rgba(238,243,255,.70); line-height:1.45}

.panel__actions{padding:14px 18px 18px; border-top:1px solid rgba(255,255,255,.10)}
.tiny{font-size:12px; color:rgba(238,243,255,.74); margin-top:10px; min-height:18px}
.dl{display:inline-block; margin-top:10px; font-size:12px; text-decoration:underline; color:rgba(238,243,255,.82)}

.hero__fade{
  position:absolute; inset:auto 0 0 0;
  height:70px;
  background: linear-gradient(180deg, transparent, rgba(6,7,12,1));
}

.section{padding:76px 0}
.section--light{
  background:
    radial-gradient(900px 520px at 20% 20%, #76e4ff14, transparent 62%),
    radial-gradient(820px 480px at 80% 70%, #b8a3ff12, transparent 62%),
    var(--paper);
  color: var(--ink);
}
.head h2{margin:0; font-size:30px; letter-spacing:-.4px}
.head p{margin:10px 0 0; color: rgba(10,14,20,.72); line-height:1.65; max-width:86ch}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.card{
  border-radius: 22px;
  border:1px solid rgba(10,14,20,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(10,14,20,.08);
  padding:16px 16px;
}
.card h3{margin:0; letter-spacing:-.2px}
.card p{margin:10px 0 0; color: rgba(10,14,20,.74); line-height:1.55}

.callout{
  margin-top:18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10,14,20,.92), rgba(10,14,20,.82));
  color: rgba(255,255,255,.92);
  border:1px solid rgba(10,14,20,.10);
  box-shadow: 0 20px 60px rgba(10,14,20,.18);
  padding:16px 16px;
}
.callout__title{font-weight:900}
.callout__body{margin-top:8px; color: rgba(255,255,255,.82); line-height:1.6}

.two{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:start}
.lead2{margin:10px 0 0; color:rgba(238,243,255,.82); line-height:1.65; max-width:82ch}
.bullets{margin:14px 0 0; padding-left:18px; color:rgba(238,243,255,.80)}
.bullets li{margin:10px 0; line-height:1.5}
.bullets strong{color:rgba(238,243,255,.95)}

.mini{
  margin-top:18px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding:14px 14px;
}
.mini__k{font-size:12px; color:rgba(238,243,255,.72)}
.mini__chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
}

.side__card{
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 520px at 10% 0%, #76e4ff10, transparent 62%),
    radial-gradient(900px 520px at 90% 60%, #b8a3ff10, transparent 62%),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding:18px 18px;
}
.side__label{font-size:12px; color:rgba(238,243,255,.72)}
.side__card h3{margin:10px 0 0; letter-spacing:-.2px}
.side__card p{margin:10px 0 0; color:rgba(238,243,255,.78); line-height:1.6}
.side__actions{margin-top:14px; display:grid; gap:10px}
.fine{margin-top:10px; font-size:12px; color:rgba(238,243,255,.68)}

.faq{margin-top:18px; display:grid; gap:12px}
details{
  border-radius: 18px;
  border:1px solid rgba(10,14,20,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(10,14,20,.08);
  padding:14px 14px;
  color: var(--ink);
}
summary{cursor:pointer; font-weight:900}
.faq__body{margin-top:10px; color: rgba(10,14,20,.74); line-height:1.6}

.footer{
  padding:28px 0 34px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer__domain{font-weight:900}
.footer__muted{margin-top:6px; font-size:12px; color:rgba(238,243,255,.70)}
.footer__muted a{text-decoration:underline}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a, .linkbtn{
  font-size:13px;
  color:rgba(238,243,255,.78);
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}
.footer__links a:hover, .linkbtn:hover{text-decoration:underline}

/* Modal */
.modal{position:fixed; inset:0; z-index:80; display:none}
.modal.show{display:block}
.modal__overlay{position:absolute; inset:0; background: rgba(0,0,0,.62)}
.modal__panel{
  position:relative;
  max-width: 760px;
  margin: 60px auto;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(900px 520px at 10% 0%, #76e4ff12, transparent 62%),
    radial-gradient(900px 520px at 90% 60%, #b8a3ff12, transparent 62%),
    rgba(11,14,20,.94);
  box-shadow: var(--shadow);
  padding:18px 18px;
}
.modal__head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; border-bottom:1px solid rgba(255,255,255,.10); padding-bottom:12px}
.modal__kicker{font-size:12px; color:rgba(238,243,255,.72)}
.modal__title{font-weight:900; letter-spacing:.2px; margin-top:6px}
.modal__x{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:rgba(238,243,255,.92);
  cursor:pointer;
}
.modal__x:hover{background: rgba(255,255,255,.10)}

.form{margin-top:14px}
.form label{display:flex; flex-direction:column; gap:7px; font-size:13px}
.form input, .form textarea, .form select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(238,243,255,.92);
  outline:none;
}
.form input:focus, .form textarea:focus, .form select:focus{border-color: #76e4ff99}
.form__row{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-bottom:10px}
.checks{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:10px}
.chk{display:flex !important; flex-direction:row !important; align-items:flex-start; gap:10px !important}
.chk input{width:auto; margin-top:2px}

.status{margin-top:10px; font-size:13px; min-height:18px; color:rgba(238,243,255,.86)}
.alt{margin-top:10px; font-size:12px; color:rgba(238,243,255,.74)}
.alt a{text-decoration:underline}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .proof{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .two{grid-template-columns: 1fr}
  .modal__panel{margin: 18px; }
  .form__row{grid-template-columns: 1fr}
  .checks{grid-template-columns: 1fr}
}
@media (prefers-reduced-motion: reduce){
  .btn{transition:none}
}