:root{
  --bg:#070A14;
  --bg2:#0C1022;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.55);
  --brand:#74F7C6;
  --brand2:#6EC8FF;
  --warn:#FFD37A;
  --ok:#7CFFB5;
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --shadow2:0 10px 26px rgba(0,0,0,.25);
  --radius:18px;
  --radius2:14px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(110,200,255,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 12%, rgba(116,247,198,.16), transparent 55%),
    radial-gradient(800px 460px at 35% 92%, rgba(255,211,122,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2) 46%, #070A14 100%);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
p{line-height:1.7; margin:0 0 14px}
small{color:var(--muted2)}
img{max-width:100%; display:block}
ul{margin:0; padding-left:18px}
li{margin:8px 0; color:var(--muted)}
hr{border:none; border-top:1px solid var(--stroke); margin:22px 0}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,20,.62);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand .logo{
  width:34px; height:34px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(116,247,198,.28), rgba(110,200,255,.22));
  border:1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
}
.brand .logo svg{width:22px; height:22px}
.brand span{font-size:15px}
.navlinks{display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:flex-end}
.navlinks a{
  color:var(--muted);
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.18s ease;
}
.navlinks a:hover{color:var(--text); border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.04)}
.navlinks a.active{color:var(--text); border-color:rgba(116,247,198,.35); background:rgba(116,247,198,.08)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  transition:.18s ease;
  box-shadow: var(--shadow2);
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.09)}
.btn.primary{
  background:linear-gradient(135deg, rgba(116,247,198,.22), rgba(110,200,255,.18));
  border-color:rgba(116,247,198,.35);
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(116,247,198,.30), rgba(110,200,255,.22))}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-size:12px;
}

.hero{
  padding:56px 0 26px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:center;
}
.kicker{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
  margin-bottom:14px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 5px rgba(116,247,198,.14);
}
h1{font-size:44px; line-height:1.08; margin:0 0 14px}
h2{font-size:28px; margin:0 0 10px}
h3{font-size:18px; margin:0 0 8px}
.lead{font-size:16px; color:var(--muted); max-width:56ch}
.cta{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.hero-media{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-collage{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 170px 170px;
  gap:10px;
  padding:12px;
}
.hero-collage img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  filter:saturate(1.05) contrast(1.05);
  transition:transform .25s ease;
}
.hero-collage img:hover{transform:scale(1.02)}
.hero-collage .tall{grid-row: span 2}
.hero-media .overlay{
  position:absolute; inset:auto 12px 12px 12px;
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(7,10,20,.75), rgba(7,10,20,.55));
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.overlay .mini{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color:var(--muted);
  font-size:12px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.pill b{color:var(--text); font-weight:800}

.section{padding:34px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:14px}
.section-head p{margin:0; color:var(--muted); max-width:64ch}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  padding:16px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(420px 240px at 15% 0%, rgba(110,200,255,.16), transparent 60%),
              radial-gradient(420px 240px at 80% 20%, rgba(116,247,198,.14), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.card > *{position:relative}
.icon{
  width:38px; height:38px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  margin-bottom:10px;
}
.icon svg{width:20px; height:20px}
.card p{color:var(--muted)}
.card ul{padding-left:18px}
.card li{color:var(--muted)}
.note{
  color:var(--muted2);
  font-size:12px;
  margin-top:10px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.gallery img{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  height:220px;
  object-fit:cover;
  box-shadow: var(--shadow2);
  transition: transform .25s ease, filter .25s ease;
  filter:saturate(1.04) contrast(1.05);
}
.gallery img:hover{transform:translateY(-2px) scale(1.01); filter:saturate(1.07) contrast(1.06)}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:center;
}
.split .media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.split .media img{height:360px; width:100%; object-fit:cover}
.bullets{display:grid; gap:10px; margin-top:10px}
.bullets .bullet{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.bullets .bullet .k{
  width:28px; height:28px; border-radius:10px;
  background:rgba(116,247,198,.12);
  border:1px solid rgba(116,247,198,.22);
  display:grid; place-items:center;
  flex:0 0 auto;
  margin-top:2px;
}
.bullets .bullet .k svg{width:16px; height:16px}
.bullets .bullet p{margin:0; color:var(--muted)}
.bullets .bullet b{color:var(--text)}

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat{
  border-radius:var(--radius);
  padding:14px 14px 12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.stat .big{
  font-size:24px;
  font-weight:900;
  letter-spacing:.2px;
}
.stat .small{font-size:12px; color:var(--muted)}

.marquee{
  display:flex; overflow:hidden; gap:10px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:10px;
}
.marquee-track{
  display:flex; gap:10px; min-width:100%;
  animation: scroll 18s linear infinite;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.pagehead{
  padding:34px 0 10px;
}
.pagehead h1{font-size:36px}
.pagehead .lead{max-width:70ch}

.banner{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  margin-top:14px;
}
.banner img{
  width:100%;
  height:260px;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}
.banner .cap{
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-size:13px;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  vertical-align:top;
  font-size:13px;
}
.table th{color:var(--muted); text-align:left; background:rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}

.accordion{display:grid; gap:10px}
.accordion .item{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  overflow:hidden;
}
.accordion button{
  width:100%;
  padding:14px 14px;
  background:transparent;
  border:0;
  color:var(--text);
  font-weight:800;
  text-align:left;
  display:flex;
  justify-content:space-between;
  gap:14px;
  cursor:pointer;
}
.accordion button span{color:var(--muted)}
.accordion .panel{
  padding:0 14px 14px;
  color:var(--muted);
  display:none;
}
.accordion .item.open .panel{display:block}
.chev{
  width:18px; height:18px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  flex:0 0 auto;
  background:rgba(255,255,255,.06);
  margin-top:2px;
}
.item.open .chev{transform:rotate(180deg)}
.chev svg{width:12px; height:12px}

.slider{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.slides{
  display:flex;
  transition: transform .45s ease;
}
.slide{
  min-width:100%;
  padding:18px;
  display:grid;
  grid-template-columns: 1fr 220px;
  gap:16px;
  align-items:center;
}
.quote{
  font-size:14px;
  color:var(--muted);
}
.quote b{color:var(--text)}
.avatar{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  height:160px;
  background:rgba(255,255,255,.05);
}
.avatar img{width:100%; height:100%; object-fit:cover}
.dots{display:flex; gap:8px; padding:0 18px 16px}
.dotbtn{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  cursor:pointer;
}
.dotbtn.active{background:rgba(116,247,198,.55); border-color:rgba(116,247,198,.65)}
.footer{
  margin-top:44px;
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(7,10,20,.55);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:flex-start;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.footer .links{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
}
.footer .links a{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04)}
.footer .meta{font-size:12px; color:var(--muted2); margin-top:8px}

.reveal{opacity:0; transform:translateY(14px); transition:.55s ease}
.reveal.show{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none}
  .marquee-track{animation:none}
  .slides{transition:none}
}

@media (max-width: 960px){
  h1{font-size:38px}
  .hero-grid{grid-template-columns: 1fr}
  .hero-collage{grid-template-columns:1fr 1fr; grid-template-rows: 150px 150px}
  .split{grid-template-columns: 1fr}
  .split .media img{height:300px}
  .grid3{grid-template-columns:1fr}
  .stats{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns:1fr}
  .gallery img{height:240px}
  .slide{grid-template-columns:1fr}
  .avatar{height:200px}
  .footer-grid{grid-template-columns:1fr}
  .footer .links{justify-content:flex-start}
}
