:root{
  --bg:#040813; 
  --panel:#111827;
  --text:#e5e7eb;
  --muted:#a3a3a3;
  --border:rgba(255,255,255,.10);
  --accent:#2EA9E6; 
  --accent2:#DCE3EE; 
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(96,165,250,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(52,211,153,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  opacity:.9;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
}

/* HEADER */

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(4,8,19,.75);
  border-bottom:1px solid var(--border);
  z-index:10;
  padding-top:6px;
  padding-bottom:6px;
}


.brand img{
  height:90px;
  width:auto;
  display:block;
  filter: drop-shadow(0 0 8px rgba(46,169,230,.25));
}




.nav{
  display:flex;
  gap:18px;
  align-items:center;
}


.nav a{
  color:var(--muted);
}

.nav a:hover{
  color:var(--text);
}

/* NAV CTA BUTTON */

.nav-cta{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
}

.nav-cta:hover{
  opacity:1;
  border-color:rgba(255,255,255,.25);
}

/* HERO */

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  padding-top:40px;
  padding-bottom:10px;
}

.hero h1{
  font-size:44px;
  line-height:1.1;
  margin:0 0 14px;
}

.subhead{
  color:var(--muted);
  font-size:18px;
  max-width:62ch;
  margin:0 0 18px;
}

/* CARDS */

.card{
  background: rgba(17,24,39,.75);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.card-title{
  font-weight:800;
  margin-bottom:10px;
}

/* BUTTONS */

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:700;
}

.btn.primary{
  background: linear-gradient(
    135deg,
    rgba(96,165,250,.95),
    rgba(52,211,153,.85)
  );
  color:#06121f;
  border:none;
}

.btn.ghost{
  background: transparent;
}

/* TRUST TAGS */

.trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}

.trust span{
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
}

/* LIST */

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.list li{
  margin:6px 0;
}

/* SECTIONS */

.section{
  padding-top:22px;
  padding-bottom:22px;
}

.section h2{
  font-size:26px;
  margin:0 0 14px;
}

/* GRIDS */

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

.grid3 h3{
  margin:0 0 8px;
}

.grid3 p{
  margin:0;
  color:var(--muted);
}

/* STEP CIRCLES */

.step{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(96,165,250,.12);
  border:1px solid rgba(96,165,250,.25);
  margin-bottom:10px;
  font-weight:900;
}

/* TEXT */

.muted{
  color:var(--muted);
  margin:0;
}

/* CONTACT */

.contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:8px;
  color:var(--muted);
}

.links a{
  border-bottom:1px dotted rgba(255,255,255,.2);
}

.links a:hover{
  color:var(--text);
}

/* FOOTER */

.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  border-top:1px solid var(--border);
  padding-top:16px;
  padding-bottom:26px;
}

.footer-right{
  display:flex;
  gap:12px;
}

/* MOBILE */

@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
  }

  .hero h1{
    font-size:36px;
  }

  .grid3{
    grid-template-columns: 1fr;
  }

  .nav{
    gap:10px;
    font-size:14px;
  }
}
.accordion{
  margin-top:12px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:12px 14px;
  background: rgba(255,255,255,.02);
}

.accordion summary{
  cursor:pointer;
  font-weight:800;
  color: var(--text);
}

.accordion p{
  margin:10px 0 10px;
}

.accordion[open]{
  background: rgba(255,255,255,.03);
}
.accordion summary{
  cursor:pointer;
  font-weight:800;
  color: var(--text);
  list-style: none;
}

.accordion summary::before{
  content: "▶";
  margin-right:8px;
  color: var(--accent);
  font-size:12px;
}

.accordion[open] summary::before{
  content: "▼";
}
@media (max-width: 900px){
  .brand img{
    height:60px;
  }

  .header{
    padding-top:6px;
    padding-bottom:6px;
  }
}
.section:nth-child(even){
  background: rgba(255,255,255,.015);
  border-radius: var(--radius);
}
