:root{
  --bg:#0f2e3a;
  --bg2:#123847;
  --card:#0f2a34;
  --text:#eaf2f5;
  --muted:rgba(234,242,245,.75);
  --brand:#3dd6f5;
  --brand2:#86e7ff;
  --line:rgba(255,255,255,.12);
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:20px;
  --max:1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(61,214,245,.25), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(134,231,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), #081c23 75%);
}
a{color:inherit}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(15,46,58,.68);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand .mark{
  width:42px; height:42px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.brand .title{
  line-height:1.1;
}
.brand .title strong{display:block; letter-spacing:.06em}
.brand .title span{display:block; font-size:12px; color:var(--muted); letter-spacing:.18em}

.menu{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.menu a{
  text-decoration:none;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.ctaRow{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  box-shadow: 0 12px 40px 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,.18)}
.btn.primary{
  background: linear-gradient(135deg, rgba(61,214,245,.26), rgba(134,231,255,.16));
  border-color: rgba(61,214,245,.35);
}
.btn.primary:hover{border-color: rgba(134,231,255,.55)}
.icon{
  width:18px; height:18px; display:inline-block; flex:0 0 auto;
}

.hero{
  padding:44px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
}
.heroCard .pad{padding:26px}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.15);
}
.h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.lead{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:var(--muted);
  max-width:52ch;
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.heroPhoto{
  position:relative;
  height:100%;
  min-height:340px;
}
.heroPhoto::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 260px at 30% 20%, rgba(61,214,245,.25), transparent 60%),
              linear-gradient(180deg, rgba(15,46,58,.05), rgba(15,46,58,.55));
}
.heroPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: contrast(1.02) saturate(1.05);
}

.section{padding:34px 0}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:16px;
}
.sectionHead h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.01em;
}
.sectionHead p{
  margin:0;
  color:var(--muted);
  max-width:62ch;
  line-height:1.6;
  font-size:14px;
}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.pill{
  font-size:12px;
  color:rgba(234,242,245,.9);
  border:1px solid var(--line);
  background: rgba(0,0,0,.15);
  border-radius:999px;
  padding:6px 10px;
}

.mediaCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.mediaCard .meta{padding:14px 16px}
.mediaCard .meta h3{margin:0 0 6px; font-size:16px}
.mediaCard .meta p{margin:0; color:var(--muted); line-height:1.5; font-size:13px}
.mediaCard img{width:100%; height:260px; object-fit:cover}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.gItem{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  position:relative;
}
.gItem img{width:100%; height:100%; object-fit:cover; transition: transform .25s ease}
.gItem:hover img{transform: scale(1.03)}
.g1{grid-column: span 5; height:250px}
.g2{grid-column: span 7; height:250px}
.g3{grid-column: span 6; height:260px}
.g4{grid-column: span 6; height:260px}

.embed{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(0,0,0,.2);
  box-shadow: var(--shadow);
}
.embed iframe{width:100%; height:360px; border:0}

.form{
  display:grid; gap:10px;
}
.field{
  display:grid; gap:6px;
}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(61,214,245,.55)}
.small{font-size:12px; color:var(--muted); line-height:1.5}

.footer{
  padding:28px 0 34px;
  border-top:1px solid var(--line);
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
}
.footer .footGrid{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
}
.footer a{color:rgba(234,242,245,.88)}
.footer a:hover{color:var(--text)}

.fab{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; flex-direction:column; gap:10px;
}
.fab a{
  width:54px; height:54px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  background: rgba(15,46,58,.78);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.fab a:hover{transform: translateY(-1px)}
.fab .hint{
  position:absolute;
  right:68px;
  background: rgba(0,0,0,.55);
  border:1px solid var(--line);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  font-size:12px;
  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .15s ease, transform .15s ease;
  white-space:nowrap;
}
.fab a:hover .hint{opacity:1; transform: translateY(0)}

.modal{
  position:fixed; inset:0; z-index:80;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.72);
  padding:18px;
}
.modal.open{display:flex}
.modalInner{
  max-width:min(980px, 100%);
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(10,24,30,.95);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.modalTop{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 12px;
  border-bottom:1px solid var(--line);
}
.modalTop button{
  appearance:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.modalTop button:hover{background: rgba(255,255,255,.09)}
.modalBody img{width:100%; height:auto}

@media (max-width: 920px){
  .heroGrid{grid-template-columns: 1fr}
  .h1{font-size:36px}
  .heroPhoto{min-height:280px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .g1,.g2,.g3,.g4{grid-column: span 12; height:240px}
  .embed iframe{height:320px}
}
@media (max-width: 520px){
  .menu{display:none}
  .h1{font-size:32px}
  .btn{width:100%}
  .ctaRow{width:100%}
  .brand .title span{display:none}
}