:root{
  --bg:#0b0f14;
  --panel:#0f1720;
  --muted:#98a0ad;
  --accent:#6ee7b7;
  --accent-2:#7c93ff;
  --glass: rgba(255,255,255,0.03);
  --card-shadow: 0 8px 24px rgba(2,6,23,0.6);
  --radius:12px;
  --max-w:1100px;
  --gap:18px;
  --ff: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,var(--bg),#061018 120%);
  color:skyblue;
  font-family:var(--ff);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.55;
  padding-bottom:60px;
}

/* header / nav */
.header{
  width:100%;
  background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-bottom:1px solid rgba(255,255,255,0.03);
  position:sticky;
  top:0;
  z-index:50;
}
.container{
  max-width:var(--max-w);
  margin:0 auto;
  padding:18px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.logo{
  width:44px;
  height:44px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--accent-2),var(--accent));
  display:grid;
  place-items:center;
  font-weight:700;
  color:yellow;
  box-shadow:0 6px 18px rgba(124,147,255,0.12);
}
.site-title{
  font-weight:700;
  font-size:18px;
  color:#e4e8ec;
}
.nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.nav a{
  color:#e4e8ec;
  text-decoration:none;
  font-weight:600;
  padding:8px 12px;
  border-radius:10px;
  transition:all .18s ease;
}
.nav a:hover{color:#e4e8ec; background:var(--glass)}

/* hero */
.hero{
  max-width:var(--max-w);
  margin:28px auto;
  padding:36px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(15,23,32,0.6), rgba(6,10,18,0.6));
  box-shadow:var(--card-shadow);
  display:grid;
  gap:10px;
}
.hero .kicker{color:#e4e8ec; font-weight:700; letter-spacing:0.6px; font-size:13px}
.hero h1{font-size:28px; margin:6px 0}
.hero p{color:#e4e8ec; margin:0 0 10px 0; max-width:820px}

/* layout for sections */
.section{
  max-width:var(--max-w);
  margin:22px auto;
  padding:22px;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  box-shadow:0 6px 18px rgba(2,6,23,0.45);
}

/* grid cards */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:var(--gap);
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .18s ease, box-shadow .18s ease;
  box-shadow:0 6px 18px rgba(2,6,23,0.35);
}
.card:hover{transform:translateY(-6px); box-shadow:0 18px 40px rgba(2,6,23,0.55)}
.card h3{margin:0 0 8px 0; font-size:16px}
.card p{margin:0; color:#d0d4d9; /*slightly darker text*/ font-size:15px}

/* process list */
.process{list-style:none; padding-left:0; margin:0; display:grid; gap:10px}
.process li{
  padding:12px;
  border-radius:10px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.02);
  color:#e4e8ec;
  font-weight:600;
}

/* CTA button */
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:9px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#e4e8ec;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(124,147,255,0.12);
}

/* small helpers */
.meta{color:#e4e8ec; font-size:14px}
.badge{display:inline-block; padding:6px 10px; border-radius:999px; background:rgba(255,255,255,0.02); color:#e4e8ec; font-weight:700}

/* footer */
.footer{
  max-width:var(--max-w);
  margin:28px auto 80px;
  padding:16px;
  color:var(--muted);
  text-align:center;
  font-size:14px;
}

/* responsive adjustments */
@media (max-width:720px){
  .container{padding:12px}
  .hero{padding:20px}
  .section{padding:16px}
  .site-title{display:none}
}
