:root{
  --bg:#0b0f17;
  --bg2:#0b1224;
  --text:#e9eef7;
  --muted:#a9b5c7;
  --accent:#6ee7ff;
  --accent2:#7c3aed;
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
}
*{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 20% -10%, rgba(110,231,255,0.10), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(124,58,237,0.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.skip-link{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 14px; background:#fff; color:#000; border-radius:12px; z-index:9999}
.noise{
  position:fixed; inset:0; pointer-events:none; opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

.header{
  position:fixed; top:0; left:0; right:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11, 15, 23, .55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  height:74px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
}
.lang{display:flex; align-items:center; gap:10px; justify-self:start}
.lang button{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease);
  font-weight:700;
}
.lang button.active{background: rgba(110,231,255,.18); border-color: rgba(110,231,255,.35)}
.lang button:hover{transform: translateY(-1px)}
.brand{justify-self:center; display:flex; align-items:center; gap:10px}
.brand img{height:26px; width:auto}
.menu{justify-self:end; display:flex; align-items:center; gap:10px}
.icon-btn{
  height:42px; width:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.icon-btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.burger{width:18px; height:12px; position:relative}
.burger span{position:absolute; left:0; right:0; height:2px; border-radius:2px; background: var(--text)}
.burger span:nth-child(1){top:0}
.burger span:nth-child(2){top:5px; opacity:.9}
.burger span:nth-child(3){bottom:0; opacity:.8}

.drawer-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  opacity:0; pointer-events:none;
  transition: opacity .25s var(--ease);
  z-index:60;
}
.drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px, 92vw);
  background: rgba(14, 18, 30, .92);
  border-left:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .35s var(--ease);
  z-index:61;
  padding:18px;
  display:flex; flex-direction:column; gap:16px;
}
.drawer.open{transform: translateX(0)}
.drawer-backdrop.open{opacity:1; pointer-events:auto}
.drawer-top{display:flex; align-items:center; justify-content:space-between}
.drawer-top .title{font-weight:900; letter-spacing:.3px}
.drawer a{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.drawer a:hover{transform: translateY(-1px); background: rgba(255,255,255,.08)}
.drawer small{color:var(--muted)}
.drawer .legal-links{margin-top:auto; display:grid; gap:10px}

main{padding-top:74px}
.hero{min-height: calc(100vh - 74px); display:grid; align-items:stretch}
.hero-media{position:relative; min-height: calc(100vh - 74px); background:#000; overflow:hidden}
.hero-media img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform: scale(1.03); filter:saturate(1.05) contrast(1.05)}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,15,23,0.96) 0%, rgba(11,15,23,0.72) 48%, rgba(11,15,23,0.22) 78%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.70));
}
.hero-content{position:relative; z-index:2; height:100%; display:flex; align-items:center}
.hero-grid{
  width:100%;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding:104px 0 64px; /* more top padding so text never clips */
}
.hero-panel{
  display:inline-block;
  padding:18px 18px 16px;
  border-radius: 22px;
  background: rgba(11,15,23,.44);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.kicker{display:inline-flex; align-items:center; gap:10px; color:rgba(233,238,247,.78); font-weight:700}
.kicker .dot{width:8px; height:8px; border-radius:99px; background: var(--accent); box-shadow:0 0 22px rgba(110,231,255,.55)}
h1{font-size: clamp(38px, 4.8vw, 64px); line-height:1.02; margin:14px 0 12px; letter-spacing:-.8px}
p.lead{font-size: clamp(16px, 1.6vw, 19px); color: rgba(233,238,247,.90); line-height:1.6; margin:0 0 22px}
.hero-content h1, .hero-content .lead, .hero-content .kicker{ text-shadow: 0 10px 28px rgba(0,0,0,.60); }

.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  display:inline-flex; align-items:center; gap:10px;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,231,255,.22), rgba(124,58,237,.20));
  border-color: rgba(110,231,255,.28);
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn.primary:hover{border-color: rgba(110,231,255,.45)}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:rgba(233,238,247,.78);
  font-weight:700;
}
.pill strong{color:var(--text)}
.hero-side{display:grid; gap:14px}
.hero-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.hero-card .t{font-weight:900; margin:0 0 6px}
.hero-card .s{color:var(--muted); margin:0; line-height:1.5}
.hero-card .thumb{border-radius: 16px; overflow:hidden; margin-top:12px; border:1px solid rgba(255,255,255,.10)}
.hero-card .thumb img{height:160px; width:100%; object-fit:cover}

.section{padding:64px 0}
.section h2{font-size: clamp(26px, 3vw, 40px); margin:0 0 10px; letter-spacing:-.5px}
.section p.sub{color:var(--muted); margin:0 0 24px; line-height:1.6; max-width: 70ch}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  overflow:hidden;
  transform: translateY(12px);
  opacity:0;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
}
.card.in{transform:none; opacity:1}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.6}
.card .media{margin-top:14px; border-radius: 16px; border:1px solid rgba(255,255,255,.10); overflow:hidden}
.card .media img{height:180px; width:100%; object-fit:cover}

.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:18px}
.stat{background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding:14px 16px}
.stat .n{font-size:20px; font-weight:900}
.stat .l{color:var(--muted); margin-top:4px}

.banner{
  background: linear-gradient(135deg, rgba(110,231,255,.14), rgba(124,58,237,.12));
  border:1px solid rgba(110,231,255,.18);
  border-radius: 24px;
  padding:22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:center;
}
.banner p{margin:0; color:rgba(233,238,247,.90); line-height:1.55}
.banner .actions{display:flex; justify-content:flex-end; gap:10px; flex-wrap:wrap}

.page-hero{padding:54px 0 24px}
.page-hero h1{margin:0 0 10px}
.page-hero p{margin:0; color:var(--muted); max-width: 90ch; line-height:1.6}

.gallery{margin-top:18px; display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}
.g-item{
  grid-column: span 6;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transform: translateY(12px);
  opacity:0;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
}
.g-item.in{transform:none; opacity:1}
.g-item img{width:100%; height:260px; object-fit:cover}
.g-item .cap{padding:14px 14px 16px; color:var(--muted); line-height:1.5}
.g-item.large{grid-column: span 12}
.g-item.large img{height:320px}

.legal{padding:24px 0 64px}
.legal article{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:22px;
}
.legal h2{margin:16px 0 10px}
.legal p, .legal li{color: rgba(233,238,247,.92); line-height:1.7}
.legal small{color:var(--muted)}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:32px 0;
  background: rgba(0,0,0,.10);
}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px}
.footer .muted{color:var(--muted); line-height:1.6}
.footer .links{display:grid; gap:10px; justify-content:end}
.footer .links a{opacity:.9}
.footer .links a:hover{opacity:1}

.cookie{
  position:fixed; left:18px; right:18px; bottom:18px;
  z-index:80;
  max-width: var(--max);
  margin:0 auto;
  background: rgba(14, 18, 30, .92);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding:16px;
  display:none;
}
.cookie.show{display:block; animation: pop .35s var(--ease)}
@keyframes pop{from{transform: translateY(10px); opacity:0} to{transform:none; opacity:1}}
.cookie .row{display:grid; grid-template-columns: 1.3fr .7fr; gap:12px; align-items:center}
.cookie h3{margin:0 0 6px; font-size:16px}
.cookie p{margin:0; color:var(--muted); line-height:1.5}
.cookie .btns{display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap}

.loader{
  position:fixed; inset:0; z-index:200;
  background:#fff;
  display:grid; place-items:center;
}
.loader .wrap{display:grid; gap:14px; justify-items:center; color:#111}
.loader img{height:34px; width:auto}
.spinner{
  width:26px; height:26px;
  border-radius:50%;
  border:3px solid rgba(0,0,0,.12);
  border-top-color: rgba(0,0,0,.55);
  animation: spin 1s linear infinite;
}
@keyframes spin{to{transform: rotate(360deg)}}
.loader .t{font-weight:700; opacity:.75}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; padding:96px 0 46px}
  .hero-panel{padding:16px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .banner{grid-template-columns:1fr}
  .banner .actions{justify-content:flex-start}
  .footer-grid{grid-template-columns:1fr}
  .footer .links{justify-content:start}
  .g-item{grid-column: span 12}
  .g-item img{height:240px}
}