/* Dark, modern, minimal. */
:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0c121a;
  --text:#e8eef6;
  --muted:#a8b4c4;
  --line:rgba(255,255,255,.08);
  --accent:#7c5cff;
  --accent2:#24d1ff;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:24px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%; overflow-x:hidden;}
/* Keep the scroll-gutter dark so it doesn't look like the page background ends early. */
html{background:var(--bg); scrollbar-color: rgba(255,255,255,.16) var(--bg);}
*::-webkit-scrollbar{width:12px}
*::-webkit-scrollbar-track{background:var(--bg)}
*::-webkit-scrollbar-thumb{background:rgba(255,255,255,.14); border-radius:999px; border:3px solid var(--bg)}
*::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.20)}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background: radial-gradient(1200px 700px at 10% 10%, rgba(124,92,255,.12), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(36,209,255,.10), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip{
  position:absolute; left:-999px; top:0;
  padding:10px 14px; background:var(--panel);
  border:1px solid var(--line); border-radius:12px;
}
.skip:focus{left:14px; top:14px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid var(--line);
  transition: transform .18s ease;
}
.header.header--hidden{
  transform: translateY(-110%);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  width:40px; height:40px;
  border-radius:14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.brand__logo--small{width:34px;height:34px;border-radius:12px}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

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

.nav__toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--text);
}
.nav__toggle span{
  display:block; width:18px; height:2px; margin:4px auto;
  background:var(--text); border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:700;
  font-size:14px;
  gap:10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(36,209,255,.75));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(124,92,255,.22);
}
.btn--primary:hover{box-shadow: 0 16px 50px rgba(124,92,255,.28)}
.btn--soft{
  background: rgba(255,255,255,.05);
}
.btn--ghost{
  background: rgba(255,255,255,.02);
}
.btn--full{width:100%}

.hero{
  overflow:hidden;
  position:relative;
  padding:72px 0 48px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.hero__copy, .hero__card{min-width:0}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:700;
  font-size:12px;
  margin:0 0 14px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 54ch;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px}
.trust{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.proof{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:14px;
}
.proof__item{
  padding:12px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  min-width: 168px;
}
.proof__label{display:block; font-size:12px; color:var(--muted); font-weight:700}
.proof__value{display:block; font-weight:800; margin-top:2px}

.hero__card{
  display:block;
  border-radius: var(--radius2);
}
.hero__card .card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.hero__card:hover .card{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}
.card__top{
  display:flex; align-items:center; gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.dots{display:flex; gap:6px}
.dots span{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,.10)}
.card__title{font-weight:800; color:var(--text)}
.card__content{padding:16px}
.checklist{list-style:none; padding:0; margin:0 0 14px}
.checklist li{
  padding-left:26px;
  position:relative;
  margin:10px 0;
  color:var(--muted);
  font-weight:600;
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:20px; height:20px;
  display:grid; place-items:center;
  border-radius:6px;
  background: rgba(124,92,255,.18);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight:900;
  font-size:12px;
}
.mini{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
.mini__row{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px;
  background: rgba(255,255,255,.02);
}
.mini__row + .mini__row{border-top:1px solid var(--line)}
.mini__k{color:var(--muted); font-weight:800; font-size:12px}
.mini__v{font-weight:700; font-size:12px}

.link{
  display:inline-block;
  margin-top:12px;
  color: var(--text);
  font-weight:800;
}
.link:hover{text-decoration:underline}

.glow{
  position:absolute;
  inset:-120px -120px auto -120px;
  height:380px;
  background: radial-gradient(closest-side, rgba(124,92,255,.18), transparent 70%);
  filter: blur(10px);
  pointer-events:none;
  opacity:.9;
}

.section{padding:64px 0}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  margin-bottom:22px;
}
.section__head h2{
  margin:0;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing:-.3px;
}
.muted{color:var(--muted)}
.micro{font-size:12px}

.grid{display:grid; gap:16px}
.grid--4{grid-template-columns:repeat(4, 1fr)}
.grid--3{grid-template-columns:repeat(3, 1fr)}
.grid--2{grid-template-columns:repeat(2, 1fr)}

.tile{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.tile h3{margin:8px 0 8px}
.tile p{margin:0 0 12px; color:var(--muted)}
.tile ul{margin:0; padding-left:18px; color:var(--muted)}
.tile li{margin:6px 0}
.tile strong{color:var(--text)}
.icon{
  width:42px;height:42px;border-radius:16px;
  display:grid; place-items:center;
  background: rgba(124,92,255,.14);
  border:1px solid rgba(255,255,255,.10);
}

.tile--compact{padding:16px}
.tile--compact p{margin:0}

.callout{
  margin: 10px 0 18px;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(36,209,255,.06));
  display:flex;
  justify-content:space-between;
  align-items: stretch;
  gap:14px;
  flex-wrap: nowrap;
}

.callout > div{flex:1;min-width:240px;}
.callout .btn{align-self:flex-end;margin-top:14px;}
.callout h3{margin:0 0 6px;font-size:18px;}
.callout p{margin:0;color:var(--muted);}

@media (max-width: 900px){
  .callout{flex-direction:column;align-items:flex-start;}
  .callout .btn{align-self:flex-start;margin-top:10px;}
}

.steps{
  display:grid; gap:16px;
  grid-template-columns: repeat(3, 1fr);
}
.step{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.step__num{
  width:34px;height:34px;border-radius:12px;
  display:grid; place-items:center;
  background: rgba(36,209,255,.12);
  border:1px solid rgba(255,255,255,.10);
  font-weight:900;
}
.step h3{margin:10px 0 8px}
.step p{margin:0; color:var(--muted)}

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

.section--cta{
  border-top:1px solid var(--line);
}
.ctaBox{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:20px;
  box-shadow: var(--shadow);
}
.ctaBox h2{margin:0 0 8px}
.ctaBox p{margin:0}

.form{
  display:grid; gap:10px;
}
.form label{display:grid; gap:6px; font-weight:700; font-size:12px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(124,92,255,.55);
  box-shadow: 0 0 0 4px rgba(124,92,255,.15);
}

/* Better-looking selects on dark theme */
select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  color-scheme: dark;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(232,238,246,.85) 50%),
    linear-gradient(135deg, rgba(232,238,246,.85) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
select option{
  background: #0b0f14;
  color: #e8eef6;
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.footer{
  padding:24px 0 40px;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer__right{display:flex; gap:10px; align-items:center; color:var(--muted); font-weight:700; font-size:13px}
.footer__right .dot{opacity:.4}


/* Clean scroll-in animations (safe, lightweight) */
@media (prefers-reduced-motion: no-preference){
  .reveal{
    opacity:0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
    will-change: opacity, transform;
  }
  .reveal.is-visible{
    opacity:1;
    transform:none;
  }
}
@media (max-width: 980px){
  .grid--4{grid-template-columns:repeat(2, 1fr)}
  .hero__inner{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .ctaBox{grid-template-columns:1fr}
.hero__inner{gap:22px}

}
@media (max-width: 720px){
  .nav{
    position:fixed;
    inset:70px 16px auto 16px;
    background: rgba(11,15,20,.96);
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .nav.open{display:flex}
  .nav a{padding:10px 12px; border-radius:14px; background: rgba(255,255,255,.02)}
  .nav__toggle{display:inline-grid}
  .header__inner{padding:12px 0}
  .proof__item{min-width: 150px}
  .form__row{grid-template-columns:1fr}
/* Mobile polish */
  .hero{padding:64px 0 40px}
  .section{padding:56px 0}
  .nav{max-height: calc(100vh - 92px); overflow:auto}
  .proof__item{flex: 1 1 160px; min-width: 0}
  .proof{gap:10px}

}
