:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0d141d;
  --text:#eaf0f7;
  --muted:#a9b4c2;
  --line:rgba(255,255,255,.10);

  --accent:#7dd3fc;
  --accent2:#c7d2fe;
  --goldish:#f6d58a;
}

*{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(900px 500px at 20% 10%, rgba(125,211,252,.12), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(199,210,254,.10), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(246,213,138,.08), transparent 60%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}
.muted{color:var(--muted)}
.fine{font-size:12px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(10,14,20,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0;
}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px; border:1px solid var(--line);
  border-radius:999px; font-weight:800; font-size:12px;
  background: rgba(255,255,255,.04);
}
.topbar-text{font-size:13px; color:var(--muted)}
.topbar-text strong{color:var(--text)}
.topbar-link{
  font-weight:800; font-size:13px;
  padding:8px 10px; border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.topbar-link:hover{background: rgba(255,255,255,.08)}

.header{
  position:sticky; top:49px; z-index:40;
  background: rgba(11,15,20,.74);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:12px; align-items:center}
.brand-mark{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(125,211,252,.22), rgba(199,210,254,.14));
  font-weight:900;
}
.brand-name{font-weight:900; letter-spacing:.4px}
.brand-tag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{font-weight:650; font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}
.nav-cta{
  color:var(--text) !important;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background: rgba(255,255,255,.05);
}
.nav-cta:hover{background: rgba(255,255,255,.10)}

.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.menu-btn span{
  display:block; width:18px; height:2px;
  margin:5px auto; background: rgba(255,255,255,.75);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn.open span:nth-child(1){transform: translateY(7px) rotate(45deg)}
.menu-btn.open span:nth-child(2){opacity:0}
.menu-btn.open span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}

.mobile-menu{
  position:sticky; top:109px; z-index:35;
  background: rgba(11,15,20,.92);
  border-bottom: 1px solid var(--line);
}
.mobile-menu-inner{
  display:flex; flex-direction:column;
  padding:14px 0;
  gap:8px;
}
.mobile-menu a{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight:700;
}

.hero{padding:54px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.hero-kicker{
  display:inline-block;
  font-weight:900;
  font-size:12px;
  color: var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
}
h1{
  margin:14px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--goldish));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-sub{
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width: 58ch;
}
.hero-actions{
  display:flex; gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  user-select:none;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(125,211,252,.18), rgba(199,210,254,.12));
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(125,211,252,.26), rgba(199,210,254,.18))}
.btn.ghost{background: rgba(255,255,255,.04)}
.btn.ghost:hover{background: rgba(255,255,255,.08)}
.btn.subtle{background: rgba(255,255,255,.03)}
.btn.subtle:hover{background: rgba(255,255,255,.07)}
.btn.full{width:100%}

.hero-proof{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.proof-item{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.proof-num{font-weight:900; font-size:18px}
.proof-label{color:var(--muted); font-size:12px; margin-top:4px}

.hero-fine{margin-top:14px; font-size:12px}
.trustline{margin-top:12px; display:flex; gap:10px; align-items:center}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(125,211,252,.7);
  box-shadow: 0 0 0 6px rgba(125,211,252,.10);
}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}
.hero-card .card{position:sticky; top:140px}
.card-title{font-weight:900; margin-bottom:12px}
.card-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:var(--muted);
}
.card-row strong{color:var(--text)}
.card-row:last-of-type{border-bottom:none}
.card-cta{display:grid; gap:10px; margin-top:14px}
.card-note{margin-top:12px; color:var(--muted); font-size:12px; line-height:1.45}

.section{padding:54px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{margin-bottom:18px}
.section-head h2{
  margin:0 0 6px;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing:-.01em;
}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:14px}

.feature{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
}
.icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:900;
  margin-bottom:12px;
  color: rgba(255,255,255,.90);
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color:var(--muted); line-height:1.55}

.panel{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
}
.panel h3{margin:0 0 10px}
.panel ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.6}
.panel li{margin:6px 0}

.timeline{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.step{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
}
.step-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:900;
  font-size:12px;
  color: var(--muted);
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.55}

.callout{
  margin-top:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(125,211,252,.20);
  background: linear-gradient(135deg, rgba(125,211,252,.10), rgba(199,210,254,.08));
  color: rgba(255,255,255,.90);
  line-height:1.55;
}

.form-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}
.form label{
  display:block;
  font-weight:800;
  font-size:13px;
  color: rgba(255,255,255,.88);
  margin-bottom:12px;
}
.form input, .form textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}

.sidecard .mini-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:var(--muted);
}
.sidecard .mini-row strong{color:var(--text)}
.divider{height:1px; background: rgba(255,255,255,.08); margin:12px 0}
.mini-list{margin:0; padding-left:18px; color:var(--muted); line-height:1.6}
.mini-list li{margin:6px 0}

.microcards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.micro{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.micro-title{font-weight:900}
.micro-text{margin-top:6px}

.accordion{display:grid; gap:10px}
.qa{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:10px 14px;
}
.qa summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.qa summary::-webkit-details-marker{display:none}
.qa-body{margin-top:10px; line-height:1.6}

.contact-card{padding:18px}
.contact-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
  margin-bottom:12px;
}
.contact-label{font-size:12px; color:var(--muted); font-weight:900}
.contact-value{font-size:14px; font-weight:900}
.contact-value a{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
}
.contact-value a:hover{ text-decoration-color: rgba(125,211,252,.55) }

.footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.10);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-card .card{position:relative; top:auto}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .timeline{grid-template-columns: 1fr}
  .form-grid{grid-template-columns: 1fr}
  .contact-row{grid-template-columns: 1fr}
  .microcards{grid-template-columns: 1fr}
  .nav{display:none}
  .menu-btn{display:inline-block}
  .topbar-inner{flex-wrap:wrap}
  .hero-proof{grid-template-columns: 1fr}
}