:root{
  --bg:#071a3a;
  --bg2:#0b2b63;
  --card:#0b1733;
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.72);
  --line:rgba(234,241,255,.12);
  --blue:#1e66ff;
  --blue2:#1fb6ff;
  --red:#ff2e2e;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 22px;
  --radius2: 28px;
  --container: 1140px;
  --font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 15% 10%, rgba(31,182,255,.18), transparent 55%),
              radial-gradient(900px 600px at 80% 30%, rgba(30,102,255,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), #050c1e 70%);
  color:var(--text);
}

a{color:inherit}
img{max-width:100%; height:auto; display:block}

.container{width:min(var(--container), calc(100% - 40px)); margin-inline:auto}
.section{padding:72px 0}
.section.alt{background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); border-top:1px solid var(--line)}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:22px}
.sectionHead h2{margin:0; font-size: clamp(26px, 3vw, 38px); letter-spacing:-.02em}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.w100{width:100%}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:18px; top:12px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:12px; z-index:99}

.header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(5,12,30,.55);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:10px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{
  width:46px; height:46px; border-radius:14px; object-fit:cover;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
}
.brand span{line-height:1.05; font-size:14px}
.brand strong{font-weight:800}

.menu{display:flex; align-items:center; gap:18px}
.menu a{opacity:.9; text-decoration:none; font-weight:600; font-size:14px}
.menu a:hover{opacity:1}
.pill{
  padding:10px 14px; border-radius:999px; border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.menuBtn{
  display:none; width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.menuBtn span{display:block; height:2px; width:18px; background:#fff; margin:5px auto; border-radius:2px}

.hero{
  position:relative;
  padding:86px 0 46px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,12,30,.85) 0%, rgba(5,12,30,.45) 55%, rgba(5,12,30,.88) 100%),
    var(--hero) center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.heroGlow{
  position:absolute; inset:-120px -80px auto auto;
  width:520px; height:520px;
  background: radial-gradient(circle at 30% 30%, rgba(255,46,46,.26), transparent 55%),
              radial-gradient(circle at 60% 60%, rgba(31,182,255,.22), transparent 60%);
  filter: blur(0px);
  pointer-events:none;
}
.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  font-weight:700;
  letter-spacing:.02em;
  font-size:12px;
}
.heroCopy h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.03em;
}
.heroCopy p{margin:0; max-width:58ch; font-size:16px; color:rgba(234,241,255,.88); line-height:1.7}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.26)}
.btn.primary{
  border-color: rgba(31,182,255,.55);
  background: linear-gradient(135deg, rgba(31,182,255,.95), rgba(30,102,255,.95));
}
.btn.dark{
  border-color: rgba(0,0,0,.18);
  background: linear-gradient(135deg, rgba(18,26,56,.92), rgba(9,20,46,.92));
}
.btn.light{
  background: rgba(255,255,255,.10);
}
.btn.ghost{
  background: rgba(255,255,255,.06);
}
.heroCard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.heroCard h3{margin:0 0 6px; font-size:18px}
.heroActions{display:flex; gap:10px; margin:14px 0 10px; flex-wrap:wrap}
.contactPills{display:flex; gap:8px; flex-wrap:wrap; font-size:12px; color:rgba(234,241,255,.9)}
.contactPills span{
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
.notice{
  margin-top:12px;
  font-size:12px;
  color:rgba(234,241,255,.8);
  padding:10px 12px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border:1px dashed rgba(255,255,255,.18);
}

.mini{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:18px}
.miniCard{
  padding:12px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.miniCard strong{display:block; font-size:14px}
.miniCard span{display:block; font-size:12px; color:rgba(234,241,255,.74); margin-top:4px}

.cards3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 10px; color:rgba(234,241,255,.84); line-height:1.6}
.card ul{margin:0; padding-left:18px; color:rgba(234,241,255,.82)}
.card li{margin:6px 0}

.strip{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  padding:16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,46,46,.14), rgba(31,182,255,.12));
  border:1px solid rgba(255,255,255,.14);
}

.videoWrap{
  aspect-ratio: 16/9;
  width:100%;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background:#000;
}
.videoWrap iframe{width:100%; height:100%}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.gItem{
  border:0; padding:0; cursor:pointer;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
}
.gItem img{width:100%; height:100%; object-fit:cover; transition: transform .25s ease}
.gItem:hover img{transform: scale(1.03)}
.gallery .gItem:nth-child(1){grid-column: span 6; aspect-ratio: 16/10}
.gallery .gItem:nth-child(2){grid-column: span 6; aspect-ratio: 16/10}
.gallery .gItem:nth-child(3){grid-column: span 4; aspect-ratio: 1/1}
.gallery .gItem:nth-child(4){grid-column: span 4; aspect-ratio: 1/1}
.gallery .gItem:nth-child(5){grid-column: span 4; aspect-ratio: 1/1}
.gallery .gItem:nth-child(6){grid-column: span 6; aspect-ratio: 16/10}
.gallery .gItem:nth-child(7){grid-column: span 6; aspect-ratio: 16/10}

.socialGrid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px}
.socialCard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding:16px;
}
.socialCard h3{margin:0 0 12px}
.embed{
  min-height: 520px;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:12px;
  padding:10px;
}
.embed.ig{min-height: 180px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start}
.igLink{font-weight:900; font-size:18px; text-decoration:none; margin-top:6px}

.contactGrid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.form{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.form label{display:block; font-weight:700; font-size:13px; margin:10px 0}
.form input, .form select, .form textarea{
  width:100%;
  margin-top:7px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(5,12,30,.45);
  color: var(--text);
  outline:none;
}
.form input:focus, .form select:focus, .form textarea:focus{border-color: rgba(31,182,255,.7)}
.fRow{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.contactAside{display:grid; gap:12px}
.asideCard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding:16px;
}
.asideCard h3{margin:0 0 10px}
.asideCard a{color: #bfe7ff}

.footer{
  padding:34px 0 20px;
  border-top:1px solid var(--line);
  background: rgba(5,12,30,.65);
}
.footGrid{display:grid; grid-template-columns: 1fr auto auto; gap:16px; align-items:center}
.footBrand{display:flex; gap:12px; align-items:center}
.footBrand img{
  width:44px; height:44px; border-radius:14px; object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
}
.footLinks{display:flex; gap:14px; flex-wrap:wrap}
.footLinks a{opacity:.85; text-decoration:none; font-weight:700; font-size:13px}
.footLinks a:hover{opacity:1}
.footCtas{display:flex; gap:10px; flex-wrap:wrap}
.legal{margin-top:14px; opacity:.9}
.legal p{margin:0}

.fab{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:56px; height:56px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,211,102,.95), rgba(17,140,126,.95));
  display:grid; place-items:center;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
}
.fab svg{width:28px; height:28px; fill:#fff}

.lightbox{
  position:fixed; inset:0; z-index:80;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}
.lightbox.open{display:grid}
.lbImg{
  width:min(1100px, calc(100% - 46px));
  max-height: calc(100vh - 110px);
  object-fit: contain;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  background: rgba(255,255,255,.04);
}
.lbClose{
  position:fixed; top:18px; right:18px;
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.lbNav{
  position:fixed; top:50%; transform: translateY(-50%);
  width:52px; height:52px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:34px;
  cursor:pointer;
}
.lbNav.prev{left:18px}
.lbNav.next{right:18px}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr; gap:14px}
  .cards3{grid-template-columns:1fr}
  .socialGrid{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .footGrid{grid-template-columns:1fr; align-items:start}
  .menuBtn{display:block}
  .menu{
    position:fixed; left:18px; right:18px; top:70px;
    display:none; flex-direction:column; gap:10px;
    padding:14px;
    border-radius: 22px;
    background: rgba(5,12,30,.92);
    border:1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
  }
  .menu.open{display:flex}
  .menu a{padding:10px 10px}
  .mini{grid-template-columns:1fr}
  .fRow{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(6, 1fr)}
  .gallery .gItem:nth-child(1),
  .gallery .gItem:nth-child(2),
  .gallery .gItem:nth-child(6),
  .gallery .gItem:nth-child(7){grid-column: span 6}
  .gallery .gItem:nth-child(3),
  .gallery .gItem:nth-child(4),
  .gallery .gItem:nth-child(5){grid-column: span 3}
}
