:root{
  --bg:#0b0f16;
  --bg2:#0a0d13;
  --text:#eef2ff;
  --muted: rgba(238,242,255,.72);
  --line: rgba(238,242,255,.12);
  --card: rgba(255,255,255,.05);
  --accent: #7aa7ff;
  --radius: 16px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
  line-height:1.6;
}

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

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

/* ---------------- HEADER ---------------- */

.site-header{
  position: sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(10,13,19,.55);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }

.mark{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.05);
  font-weight:600;
}

.brand-name{
  letter-spacing:.15em;
  text-transform:uppercase;
  font-size:13px;
  font-weight:600;
}

.brand-sub{
  font-size:12px;
  opacity:.6;
}

.nav{ display:flex; gap:22px; }

.nav a{
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;
  opacity:.8;
}

.nav a:hover{ opacity:1; }

/* ---------------- HERO ---------------- */

.hero{
  position:relative;
  min-height:75vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* Background aligned to container center */
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,8,12,.65), rgba(5,8,12,.85)),
    url("/hero.jpg") center center / cover no-repeat;
}

/* Glow aligned with content container */
.hero::before{
  content:"";
  position:absolute;
  width:1100px; /* same as container max-width */
  left:50%;
  transform:translateX(-50%);
  top:10%;
  height:600px;
  background: radial-gradient(circle at 35% 40%, rgba(122,167,255,.25), transparent 60%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  padding:100px 0 70px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.8;
  margin-bottom:14px;
}

.hero h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  font-size:clamp(40px,5vw,72px);
  line-height:1.05;
}

.lead{
  margin-top:18px;
  max-width:640px;
  font-size:18px;
  color:var(--muted);
}

/* CTA */

.cta{
  margin-top:28px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.05);
  font-size:14px;
  transition:.2s ease;
}

.btn:hover{
  background:rgba(255,255,255,.1);
}

.btn.primary{
  background:linear-gradient(90deg,#7aa7ff,#9ae6ff);
  color:#08101a;
  border:none;
}

.btn.primary:hover{
  opacity:.9;
}

.trust{
  margin-top:28px;
  display:flex;
  gap:14px;
  font-size:13px;
  color:rgba(238,242,255,.75);
}

.trust span{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
}

/* ---------------- SECTIONS ---------------- */

.section{
  padding:80px 0;
  border-top:1px solid var(--line);
}

.section.alt{
  background:rgba(255,255,255,.02);
}

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

.section-lead{
  margin-top:12px;
  max-width:720px;
  color:var(--muted);
}

.grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:var(--card);
}

.card h3{
  margin:0 0 10px;
}

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

.split{
  margin-top:30px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
}

.bullets{
  margin-top:18px;
  color:var(--muted);
}

.bullets li{ margin-bottom:12px; }

.panel{
  padding:24px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

/* ---------------- CONTACT ---------------- */

.contact{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  flex-wrap:wrap;
}

.contact-cards{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.contact-card{
  min-width:260px;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.contact-card .label{
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;
  opacity:.7;
}

.contact-card .value{
  margin-top:8px;
  display:block;
}

/* ---------------- FOOTER ---------------- */

.site-footer{
  padding:25px 0;
  border-top:1px solid var(--line);
  font-size:12px;
  color:rgba(238,242,255,.65);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:900px){
  .grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .nav{ display:none; }
}
