:root{
  --brand-blue:#2721f7;
  --brand-red:#ff2a0d;
  --brand-yellow:#ffd100;
  --brand-black:#040327;
  --white:#ffffff;
  --text:#12121a;
  --muted:#5b5b6a;
  --card:#0b0a1f;
  --card2:#111039;
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 55px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{padding:0;margin:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Montserrat,Arial,sans-serif;
  color:var(--white);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(39,33,247,.35), transparent 55%),
    radial-gradient(1000px 700px at 80% 20%, rgba(255,42,13,.25), transparent 55%),
    radial-gradient(900px 600px at 55% 100%, rgba(255,209,0,.18), transparent 55%),
    linear-gradient(180deg, #050418 0%, #050418 38%, #07061f 100%);
  overflow-x:hidden;
}

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

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border:1px solid var(--border);
  border-radius:999px;background:rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;border:1px solid var(--border);
  background:rgba(255,255,255,.07);
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  font-weight:650;
  font-family:inherit;
  color:inherit;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.22)}
.btn.primary{
  background:linear-gradient(135deg, rgba(39,33,247,.95), rgba(255,42,13,.9));
  border-color:rgba(255,255,255,.22);
  box-shadow: 0 12px 40px rgba(39,33,247,.20), 0 12px 40px rgba(255,42,13,.12);
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(39,33,247,1), rgba(255,42,13,.95))}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(5,4,24,.60);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:12px;min-width:220px;
}
.brand img{width:44px;height:44px;object-fit:cover;border-radius:12px;background:rgba(255,255,255,.08);padding:6px}
.brand .name{line-height:1.05}
.brand .name strong{display:block;font-size:14px;letter-spacing:.2px}
.brand .name span{display:block;font-size:12px;color:rgba(255,255,255,.70)}

.navlinks{
  display:flex;gap:18px;align-items:center;
}
.navlinks a{color:rgba(255,255,255,.80);font-weight:600;font-size:14px}
.navlinks a:hover{color:rgba(255,255,255,.95)}
.navright{display:flex;align-items:center;gap:10px}
.lang{
  display:inline-flex;gap:8px;align-items:center;
  border:1px solid var(--border); border-radius:14px;
  padding:6px;background:rgba(255,255,255,.06);
}
.lang button{
  appearance:none;border:0;background:transparent;color:rgba(255,255,255,.80);
  padding:8px 10px;border-radius:10px;font-weight:750;cursor:pointer;
}
.lang button[aria-pressed="true"]{background:rgba(255,255,255,.12); color:rgba(255,255,255,.98)}

.hero{
  padding:64px 0 30px;
}
.heroGrid{
  display:grid;grid-template-columns: 1.35fr .9fr; gap:28px; align-items:stretch;
}
.kicker{color:rgba(255,255,255,.78); font-weight:700; letter-spacing:.2px}
.h1{
  font-size:clamp(34px, 4.4vw, 56px);
  line-height:1.02;
  margin:14px 0 12px;
  letter-spacing:-.8px;
}
.h1 strong{
  background:linear-gradient(90deg, var(--brand-yellow), rgba(255,255,255,.95));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lead{color:rgba(255,255,255,.78); font-size:16px; line-height:1.6; max-width:62ch}
.heroCtas{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.heroCard{
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.heroCard .media{
  aspect-ratio: 4 / 3;
  background:rgba(0,0,0,.20);
  position:relative;
}
.heroCard .media img{
  width:100%;height:100%;object-fit:cover;
  filter:saturate(1.12) contrast(1.02);
}
.heroCard .media::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 45%, rgba(5,4,24,.75));
}
.heroCard .body{padding:16px}
.heroCard .body .title{font-weight:850; letter-spacing:.2px}
.heroCard .body .sub{color:rgba(255,255,255,.75); margin-top:6px; line-height:1.45}

.section{padding:56px 0}
.sectionTitle{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;margin-bottom:16px}
.sectionTitle h2{margin:0;font-size:26px;letter-spacing:-.4px}
.sectionTitle p{margin:0;color:rgba(255,255,255,.72);max-width:70ch;line-height:1.5}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(17,16,57,.66), rgba(11,10,31,.55));
  padding:16px;
}
.card h3{margin:0 0 8px;font-size:16px}
.card p{margin:0;color:rgba(255,255,255,.74);line-height:1.55}
.tagRow{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.tag{
  display:inline-flex;align-items:center;
  font-size:12px;font-weight:750;
  padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.86);
}
.tag.yellow{background:rgba(255,209,0,.12); border-color:rgba(255,209,0,.25)}
.tag.red{background:rgba(255,42,13,.11); border-color:rgba(255,42,13,.24)}
.tag.blue{background:rgba(39,33,247,.12); border-color:rgba(39,33,247,.25)}

.split{
  display:grid;grid-template-columns: 1fr 1fr; gap:18px; align-items:stretch;
}
.panel{
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  padding:18px;
}
.panel h3{margin:0 0 8px}
.panel ul{margin:10px 0 0; padding-left:18px; color:rgba(255,255,255,.78); line-height:1.7}
.panel li{margin:6px 0}

.gallery{
  display:grid;grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.shot{
  border-radius:16px; overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.shot img{width:100%;height:100%;object-fit:cover}
.shot.s1{grid-column:1 / span 5; aspect-ratio: 4/3}
.shot.s2{grid-column:6 / span 7; aspect-ratio: 16/9}
.shot.s3{grid-column:1 / span 7; aspect-ratio: 16/9}
.shot.s4{grid-column:8 / span 5; aspect-ratio: 4/3}

.footer{
  padding:34px 0 48px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(5,4,24,.50);
}
.footerGrid{display:grid;grid-template-columns: 1.2fr .8fr .8fr; gap:16px}
.footTitle{display:flex;align-items:center;gap:12px}
.footTitle img{width:38px;height:38px;object-fit:cover;border-radius:12px;background:rgba(255,255,255,.08);padding:6px}
.small{color:rgba(255,255,255,.68);line-height:1.6;font-size:13px}
.footLinks a{display:block;color:rgba(255,255,255,.76);margin:10px 0;font-weight:650}
.footLinks a:hover{color:rgba(255,255,255,.95)}
.copyright{margin-top:16px;color:rgba(255,255,255,.55);font-size:12px}

.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,209,0,.22);
  background:rgba(255,209,0,.07);
  color:rgba(255,255,255,.80);
  line-height:1.5;
  font-size:13px;
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr; }
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .navlinks{display:none}
  .shot.s1,.shot.s2,.shot.s3,.shot.s4{grid-column:1 / -1}
}

