/* =========================
   ROOT + GLOBAL
========================= */

:root{
  --bg:#06080d;
  --surface:#0f1422;
  --border:rgba(255,255,255,.08);
  --text:#eef1f6;
  --muted:#9aa3b2;
  --accent:#6cf2c2;
  --accent2:#7aa2ff;
  --radius:18px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:'Inter',sans-serif;
}

body{
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

/* =========================
   HERO
========================= */

.hero{
  max-width:1200px;
  margin:auto;
  padding:90px 22px;
}

.hero h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:18px;
}

.hero p{
  color:var(--muted);
  max-width:640px;
}

.hero .cta{
  margin-top:34px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.btn{
  padding:14px 24px;
  border-radius:14px;
  font-size:14px;
  font-weight:600;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#000;
}

.btn.alt{
  background:rgba(255,255,255,.08);
  color:var(--text);
  border:1px solid var(--border);
}

/* =========================
   SECTIONS
========================= */

.section{
  max-width:1200px;
  margin:auto;
  padding:90px 22px;
}

.section h2{
  font-size:34px;
  margin-bottom:12px;
}

.section p{
  color:var(--muted);
  max-width:780px;
}

/* =========================
   CARDS / GRID
========================= */

.grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.card{
  padding:30px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
}

.card h3{
  margin-bottom:8px;
}

.card a{
  display:inline-block;
  margin-top:14px;
  color:var(--accent);
}

/* =========================
   TRUST SECTION
========================= */

.trust-section{
  padding-top:70px;
}

.trust-intro{
  margin-top:12px;
  max-width:820px;
  color:var(--muted);
  font-size:15px;
}

.trust-secondary{
  margin-top:14px;
  max-width:820px;
  color:rgba(255,255,255,.75);
  font-size:14.5px;
}

.trust-seo{
  margin-top:16px;
  max-width:900px;
  font-size:13px;
  color:rgba(255,255,255,.55);
}

.trust{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:26px;
}

.trust div{
  padding:26px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
}
