:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --line:rgba(255,255,255,.10);
  --brand1:#0B5FFF;
  --brand2:#00D4FF;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(11,95,255,.22), transparent 55%),
    radial-gradient(900px 450px at 90% 10%, rgba(0,212,255,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2) 55%, var(--bg));
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:1120px; padding:0 18px; margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.65);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 16px;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:12px; min-width:200px}
.logo{filter: drop-shadow(0 10px 25px rgba(0,0,0,.35))}
.brandText{display:flex; flex-direction:column; line-height:1.1}
.brandName{font-weight:850; letter-spacing:.5px}
.brandTag{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.nav a{color:var(--muted); font-size:14px; padding:8px 10px; border-radius:999px}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.nav a.active{color:var(--text); background: rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.10)}

.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  white-space:nowrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(11,95,255,.95), rgba(0,212,255,.85));
  box-shadow: var(--shadow);
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btnSmall{padding:10px 12px; font-size:14px}
.btnGhost{
  background: rgba(255,255,255,.06);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.12);
}
.btnGhost:hover{background: rgba(255,255,255,.09)}

.pageHero{position:relative; padding:54px 0 18px}
.pageHeroBg{
  position:absolute; inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(7,10,18,.35), rgba(7,10,18,.88)),
    url("https://images.unsplash.com/photo-1531297484001-80022131f5a1?fm=jpg&ixlib=rb-4.1.0&q=70&w=2000") center/cover no-repeat;
  filter:saturate(1.05);
}
.pageHeroInner{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding:20px;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
h1{font-size:40px; margin:14px 0 10px; letter-spacing:-.5px}
.lead{font-size:16px; color:var(--muted); max-width:72ch; line-height:1.6; margin:0}
.heroRow{display:flex; gap:12px; margin-top:16px; flex-wrap:wrap}

.section{padding:42px 0}
.sectionAlt{
  background:
    radial-gradient(900px 340px at 10% 20%, rgba(11,95,255,.12), transparent 55%),
    radial-gradient(900px 340px at 90% 40%, rgba(0,212,255,.10), transparent 55%),
    rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap}
.sectionHead h2{margin:0; font-size:28px}
.sectionHead p{margin:0; color:var(--muted); max-width:70ch}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:16px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px}
.grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:16px}

.card{
  padding:16px;
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid var(--line);
  transition: transform .15s ease, background .15s ease;
}
.card:hover{transform: translateY(-2px); background: var(--card2)}
.cardIcon{font-size:22px}
.card h3{margin:10px 0 6px}
.card p{margin:0; color:var(--muted); line-height:1.6}
.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.mediaShot{
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background-size:cover;
  background-position:center;
  min-height:220px;
}

.kpi{
  display:flex; flex-direction:column; gap:6px;
  padding:14px; border-radius: var(--radius);
  border:1px solid var(--line); background: rgba(255,255,255,.05);
}
.kpi b{font-size:16px}
.kpi span{color:var(--muted); font-size:13px; line-height:1.5}

.timeline{margin-top:18px; display:grid; gap:12px}
.tItem{display:grid; grid-template-columns: 18px 1fr; gap:10px; align-items:start}
.tDot{
  width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  margin-top:14px;
}
.tCard{
  padding:14px;
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid var(--line);
}
.tTitle{font-weight:850}
.tText{color:var(--muted); margin-top:6px; line-height:1.6}

.form{
  padding:14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
}
label{display:block; margin-bottom:12px}
label span{display:block; font-size:13px; color:var(--muted); margin-bottom:6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(0,212,255,.30)}
.formHint{margin:10px 0 0; color:var(--muted)}

.footer{
  padding:18px 0;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.footerRow{display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap}
.footLeft{display:flex; align-items:center; gap:10px}
.footLogo{font-weight:900; letter-spacing:.6px}
.dot{opacity:.5; margin:0 8px}

@media (max-width: 980px){
  h1{font-size:34px}
  .grid4{grid-template-columns:repeat(2,1fr)}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .nav{display:none}
}
@media (max-width: 520px){
  h1{font-size:30px}
  .grid4{grid-template-columns:1fr}
}
