:root{
  --bg: #0b1220;
  --panel: #0f1a2f;
  --panel2: #0c162a;
  --text: #e9eefc;
  --muted: #b9c3df;
  --soft: #7f8bb3;
  --line: rgba(255,255,255,.10);
  --accent: #2ea8ff;
  --accent2:#26d0a8;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: radial-gradient(1200px 600px at 20% -10%, rgba(46,168,255,.25), transparent 60%),
radial-gradient(900px 500px at 90% 0%, rgba(38,208,168,.18), transparent 55%),
var(--bg); color: var(--text); }

a{ color: inherit; text-decoration:none; }
.container{ width:min(1100px, calc(100% - 40px)); margin:0 auto; }

.header{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:grid; place-items:center; font-weight:800; color:#061022;
}
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-tag{ font-size:12px; color: var(--muted); margin-top:2px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid transparent; font-weight:700;
  cursor:pointer; user-select:none;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#061022;
  box-shadow: 0 10px 22px rgba(46,168,255,.18);
}
.btn-ghost{
  border-color: var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }

.hero{ padding: 46px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:7px 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1{ font-size: clamp(30px, 4vw, 46px); line-height:1.05; margin:0 0 12px; }
.subhead{ font-size: 17px; color: var(--muted); line-height:1.45; margin:0 0 18px; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 16px;
}
.trust-item{
  padding: 12px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
}
.trust-kicker{ font-size: 12px; color: var(--soft); }
.trust-value{ font-weight: 750; margin-top: 4px; }

.cta-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.cta-title{ font-weight: 850; font-size: 16px; }
.cta-desc{ color: var(--muted); margin: 6px 0 12px; font-size: 14px; line-height:1.4; }

.form-embed{ margin-top: 6px; }
.placeholder-form{
  display:flex; gap:10px; flex-wrap:wrap;
}
.placeholder-form input{
  flex: 1 1 220px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline: none;
}
.placeholder-form input::placeholder{ color: rgba(185,195,223,.7); }

.fineprint{ margin: 10px 0 0; font-size: 12px; color: var(--soft); }

.microcopy{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.check{ color: var(--accent2); font-weight:900; }
.dot{ margin: 0 8px; color: var(--soft); }

.hero-box{ display:flex; flex-direction:column; gap: 12px; }
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.card.subtle{ background: rgba(255,255,255,.02); box-shadow:none; }
.card-title{ font-weight: 850; margin-bottom: 10px; }
.list{ margin:0; padding-left: 18px; color: var(--muted); line-height:1.55; }
.divider{ height:1px; background: var(--line); margin: 14px 0; }
.small-note{ color: var(--soft); font-size: 12px; line-height:1.4; }

.section{ padding: 44px 0; }
.section.alt{ background: rgba(255,255,255,.02); border-top: 1px solid var(--line); border-bottom:1px solid var(--line); }
.section h2{ margin:0 0 10px; font-size: 26px; }
.section-sub{ margin:0 0 18px; color: var(--muted); line-height:1.5; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px;
}
.feature-title{ font-weight: 850; margin-bottom: 6px; }
.feature p{ margin:0; color: var(--muted); line-height:1.5; }

.about{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.about-card{
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(46,168,255,.12), rgba(38,208,168,.10));
  border-radius: 18px;
  padding: 16px;
}
.about-kicker{ font-size:12px; color: var(--muted); }
.about-title{ font-weight:900; font-size:16px; margin-top:6px; }
.about-desc{ color: var(--muted); line-height:1.45; margin:10px 0 12px; }

.chips{ display:flex; flex-wrap:wrap; gap: 8px; }
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
}

.faq details{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight: 800;
}
.faq p{ margin: 10px 0 0; color: var(--muted); line-height:1.5; }

.cta-bottom{ padding-bottom: 54px; }
.cta-bottom-inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 18px;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--soft);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  font-size: 13px;
}
.footer-links a{ color: var(--soft); margin-left: 14px; }
.footer-links a:hover{ color: var(--text); }

.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: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .cta-bottom-inner{ flex-direction: column; align-items: stretch; }
}
