:root {
  --bg: #090d1a;
  --bg-soft: #11172b;
  --card: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.11);
  --text: #edf2ff;
  --muted: #adb8dd;
  --brand: #4e7dff;
  --brand-2: #7fa2ff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 500px at 70% -20%, #1a2c67 0%, transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.55;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(9,13,26,.7);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.brand { color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: .4px; }
.nav-links { display: flex; gap: 1rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.hero { padding: 5.5rem 0 2.2rem; }
.eyebrow { color: var(--brand-2); font-weight: 700; letter-spacing: .3px; margin: 0 0 .5rem; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; margin: .2rem 0 1rem; max-width: 16ch; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 72ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0 1.1rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .6rem; }
.hero-proof span {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: .45rem .75rem;
  color: var(--muted);
  font-size: .92rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff; background: linear-gradient(130deg, var(--brand), #3966e3);
  border: 0; border-radius: .72rem; padding: .78rem 1rem; font-weight: 700;
}
.btn:hover { filter: brightness(1.05); }
.btn-sm { padding: .6rem .85rem; font-size: .92rem; }
.btn-ghost { background: transparent; border: 1px solid #3553a5; color: var(--text); }

.section { padding: 2.1rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head h2 { margin: .2rem 0 1.1rem; font-size: clamp(1.5rem, 3.3vw, 2.2rem); }
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .9rem; margin: .8rem auto 1.6rem;
}
.trust article, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1rem;
}
.trust h2 { font-size: 1.07rem; margin: 0 0 .4rem; }
.trust p { margin: 0; color: var(--muted); }

.cards { display: grid; gap: .9rem; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card h3 { margin-top: 0; margin-bottom: .45rem; font-size: 1.12rem; }
.card p { margin-top: 0; color: var(--muted); }
.card ul { margin: .7rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.card li + li { margin-top: .3rem; }
.metric { font-size: 2rem; line-height: 1; font-weight: 800; margin-bottom: .55rem; color: #dce6ff; }

.timeline {
  margin: .3rem 0 0; padding: 0; list-style: none;
  display: grid; gap: .75rem;
}
.timeline li {
  border: 1px solid var(--line); border-radius: .85rem; padding: .9rem;
  background: rgba(255,255,255,.02);
  display: grid; gap: .3rem;
}
.timeline span { color: var(--muted); }

.faq-list { display: grid; gap: .65rem; }
details {
  border: 1px solid var(--line); border-radius: .75rem; padding: .8rem .9rem;
  background: rgba(255,255,255,.02);
}
summary { cursor: pointer; font-weight: 650; }
details p { margin: .65rem 0 0; color: var(--muted); }

.cta {
  margin: 1rem auto 2.3rem;
  border: 1px solid #2f4e9a;
  border-radius: 1rem;
  padding: 1.3rem;
  background: linear-gradient(140deg, rgba(78,125,255,.22), rgba(78,125,255,.06));
}
.cta h2 { margin-top: 0; margin-bottom: .4rem; }
.cta p { color: #d7e1ff; }

.footer { border-top: 1px solid var(--line); padding: 1rem 0 1.6rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: .8rem; color: var(--muted); font-size: .95rem; }
.footer a { color: var(--muted); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .cards-3, .cards-2, .trust { grid-template-columns: 1fr; }
  .hero { padding-top: 4.4rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}


.link{color:#cfe0ff;text-decoration:none;font-weight:700}.link:hover{text-decoration:underline}
