:root{
  --bg:#0b0d10;
  --panel:#10141a;
  --text:#e9eef5;
  --muted:#a8b3c2;
  --border:rgba(255,255,255,.10);
  --accent:#ffffff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background: linear-gradient(180deg,#07080a 0%, #0b0d10 40%, #0b0d10 100%);
  color:var(--text);
  line-height:1.55;
}

.container{width:min(1080px, 92vw); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:20;
  background: rgba(11,13,16,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-sub{color:var(--muted); font-size:14px; margin-top:2px}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:var(--accent);
  color:#0b0d10;
  text-decoration:none;
  font-weight:650;
  border:1px solid rgba(255,255,255,.15);
}
.btn:hover{opacity:.92}
.btn-secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
}

.hero{padding:38px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.hero h1{font-size: clamp(28px, 3.2vw, 42px); margin:0 0 10px}
.lead{color:var(--muted); font-size:18px; margin:0 0 14px}

.key-points{
  margin:0; padding:0 0 0 18px;
  color:var(--text);
}
.key-points li{margin:8px 0}
.smallprint{color:var(--muted); font-size:14px; margin-top:12px}

.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.hero-media img{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.section{padding:34px 0}
.section h2{margin:0 0 14px; font-size:24px}
.subtle{background: rgba(255,255,255,.03); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted)}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
}
.note{color:var(--muted); margin-top:10px}

.highlight-media img{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid var(--border);
  background:#0b0d10;
}

.contact-box{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  margin:12px 0 0;
}
.contact-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}
.contact-line:last-child{border-bottom:none}
.label{color:var(--muted)}
.value{color:var(--text); text-decoration:none}
.value:hover{text-decoration:underline}

.site-footer{
  padding:18px 0 28px;
  color:var(--muted);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid var(--border);
  padding-top:14px;
}
.footer-links a{color:var(--muted); text-decoration:none}
.footer-links a:hover{text-decoration:underline}

@media (max-width: 860px){
  .hero-grid, .split{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
}
