:root{
  --bg:#070a12;
  --card:#0b1230;
  --muted:rgba(255,255,255,.72);
  --text:#ffffff;
  --primary:#1f6dff;
  --primary-2:#6a80ff;
  --accent:#00d1ff;
  --ring:rgba(31,109,255,.35);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-2: 26px;
  --max: 1160px;
  --header-h: 74px;
  --grid-gap: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 5%, rgba(31,109,255,.20), transparent 55%),
    radial-gradient(1000px 600px at 85% 0%, rgba(0,209,255,.15), transparent 55%),
    radial-gradient(1000px 700px at 50% 90%, rgba(106,128,255,.12), transparent 55%),
    linear-gradient(180deg, #070a12 0%, #050814 60%, #040614 100%);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(var(--max), calc(100% - 36px)); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:#0b1230; border:1px solid rgba(255,255,255,.16); border-radius:12px; z-index:9999;
}

header{
  position:sticky; top:0; z-index:80;
  height:var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.58);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav{
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 210px;
}
.brand img{
  width:44px; height:44px; object-fit:contain;
  filter: drop-shadow(0 10px 30px rgba(31,109,255,.45));
}
.brand .name{font-weight:800; letter-spacing:.14em; font-size:14px}
.brand .sub{font-size:12px; letter-spacing:.24em; opacity:.7}

.nav-links{
  display:flex; align-items:center; gap:18px;
}
.nav-links a{
  font-size:14px; opacity:.86;
  padding:10px 10px; border-radius:12px;
  transition: .2s ease;
}
.nav-links a:hover{opacity:1; background: rgba(255,255,255,.08)}

.cta-row{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-color: rgba(255,255,255,.18);
}
.btn.primary:hover{background: linear-gradient(135deg, #2b7bff 0%, #768bff 100%)}
.btn .icon{width:18px; height:18px; display:inline-block}

.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:#fff;
}

.hero{
  padding: calc(34px + 10px) 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.kicker{
  display:inline-flex;
  gap:10px; align-items:center;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  width: fit-content;
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size:13px;
}
.kicker span.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,209,255,.14);
}
h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: -0.02em;
}
.lead{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top: 18px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow);
}

.hero-media{
  overflow:hidden;
  position:relative;
  min-height: 340px;
}
.hero-media .cover{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 380px at 20% 10%, rgba(31,109,255,.22), transparent 65%),
    radial-gradient(700px 420px at 95% 30%, rgba(0,209,255,.12), transparent 65%);
}
.hero-media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:.95;
  transform: scale(1.02);
}
.hero-media .overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,18,.62), rgba(7,10,18,.10) 60%, rgba(7,10,18,.52)),
    linear-gradient(180deg, rgba(7,10,18,.24), rgba(7,10,18,.78));
}
.hero-media .badge{
  position:absolute; left:18px; bottom:18px;
  right:18px;
  padding:14px 14px;
  border-radius: 18px;
  background: rgba(7,10,18,.55);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.badge .b-title{font-weight:800; letter-spacing:.04em}
.badge .b-sub{color: rgba(255,255,255,.72); margin-top:4px; font-size:13px; line-height:1.4}

.section{
  padding: 52px 0;
}
.section h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}
.section p.sub{
  margin:0 0 22px;
  color: var(--muted);
  line-height:1.7;
  max-width: 78ch;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

.feature{
  grid-column: span 4;
  padding: 18px;
}
.feature h3{margin:10px 0 6px; font-size:18px}
.feature p{margin:0; color: var(--muted); line-height:1.65}
.feature .chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(31,109,255,.16);
  border:1px solid rgba(31,109,255,.26);
  width: fit-content;
  font-weight:800; font-size:12px;
}

.posts{
  grid-column: span 5;
  padding: 18px;
}
.posts .list{
  display:grid; gap:12px;
}
.post{
  display:grid;
  grid-template-columns: 96px 1fr;
  gap:12px;
  align-items:center;
  padding: 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.post img{
  width:96px; height:72px; object-fit:cover;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
}
.post .t{font-weight:800; line-height:1.25}
.post .m{color: rgba(255,255,255,.72); font-size:13px; margin-top:4px; line-height:1.4}

.embed{
  grid-column: span 7;
  padding: 18px;
}
.embed .embed-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.embed .box{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow:hidden;
  min-height: 260px;
}
.embed iframe{
  width:100%;
  height: 260px;
  border:0;
}
.embed .box .fallback{
  padding: 18px;
}
.embed .box .fallback h4{margin:0 0 8px}
.embed .box .fallback p{margin:0 0 12px; color: var(--muted); line-height:1.6}
.embed .box .fallback a{display:inline-flex}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.g-item{
  grid-column: span 3;
  border-radius: 20px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor: zoom-in;
}
.g-item img{
  width:100%; height: 220px; object-fit:cover;
  transition: transform .35s ease;
}
.g-item:hover img{transform: scale(1.06)}
.g-item .g-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,10,18,.65));
  opacity:.85;
}
.g-item .g-label{
  position:absolute; left:12px; right:12px; bottom:12px;
  font-weight:800; font-size:13px;
  display:flex; align-items:center; justify-content:space-between;
  letter-spacing:.02em;
}

.video{
  grid-column: span 7;
  overflow:hidden;
}
.video .ratio{
  position:relative;
  width:100%;
  padding-top: 56.25%;
}
.video iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

.contact{
  grid-column: span 5;
  padding: 18px;
}
.contact .meta{
  display:grid; gap:10px;
  margin-bottom: 12px;
}
.meta .row{
  display:grid; gap:4px;
  padding: 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.meta .row .k{opacity:.7; font-size:12px; letter-spacing:.16em; text-transform:uppercase}
.meta .row .v{font-weight:800}

form{
  display:grid;
  gap:10px;
  margin-top: 12px;
}
input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,10,18,.45);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{border-color: rgba(31,109,255,.55); box-shadow: 0 0 0 6px var(--ring)}
textarea{min-height: 110px; resize: vertical}

footer{
  padding: 26px 0 56px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.footer-grid{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px; flex-wrap: wrap;
}
.small{color: rgba(255,255,255,.72); font-size: 13px; line-height:1.6}

.float-whats{
  position:fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
}
.float-whats a{
  width:56px; height:56px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #2cff8a, #00d16a);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
}
.float-whats svg{width:26px; height:26px; fill:#061b10}

#lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  place-items:center;
  z-index: 120;
  padding: 18px;
}
#lightbox.active{display:grid}
#lightbox .panel{
  width:min(1100px, 100%);
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,14,30,.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
#lightbox .panel img{
  width:100%;
  height:auto;
  max-height: 82vh;
  object-fit: contain;
  background:#070a12;
}
#lightbox .bar{
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
}
#lightbox .bar .title{font-weight:800}
#lightbox .bar button{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:#fff;
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
}
#lightbox .bar button:hover{background: rgba(255,255,255,.10)}
.fade{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade.in{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .posts{grid-column: span 12}
  .embed{grid-column: span 12}
  .video{grid-column: span 12}
  .contact{grid-column: span 12}
  .g-item{grid-column: span 6}
  .nav-links{display:none}
  .burger{display:inline-flex; align-items:center; justify-content:center}
  .brand{min-width:auto}
}
@media (max-width: 560px){
  .g-item{grid-column: span 12}
  .btn{width:100%}
  .cta-row{width:100%; justify-content:flex-end}
  .hero-actions .btn{width:auto}
}
