:root{
  --bg: #0b1220;
  --bg2:#0f1a30;
  --card:#0f1830;
  --text:#e9eefc;
  --muted:#a8b3d6;
  --line: rgba(255,255,255,.10);
  --primary:#3cf2d5;
  --primary2:#2dd4bf;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:16px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 15% 0%, rgba(60,242,213,.18), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(55,111,255,.15), transparent 55%),
    linear-gradient(180deg, var(--bg), #070b14 75%);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
p{line-height:1.55}
.muted{color:var(--muted)}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:#111a30; border:1px solid var(--line); border-radius:10px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(11,18,32,.72);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; gap:16px;
  min-height:72px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand__mark{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(60,242,213,.20), rgba(55,111,255,.18));
  border:1px solid var(--line);
  font-weight:800;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:18px; margin-left:auto}
.nav__link{color:var(--muted); font-size:14px}
.nav__link:hover{color:var(--text)}

.header__actions{display:flex; align-items:center; gap:12px}
.lang{display:flex; gap:6px; padding:6px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.03)}
.lang__btn{
  border:0; background:transparent; color:var(--muted);
  font-size:12px; padding:6px 10px; border-radius:999px;
  cursor:pointer;
}
.lang__btn[aria-current="true"]{background:rgba(60,242,213,.14); color:var(--text); border:1px solid rgba(60,242,213,.28)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px;
  border:1px solid var(--line);
  font-weight:700; font-size:14px;
  background:rgba(255,255,255,.03);
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg, rgba(60,242,213,.95), rgba(45,212,191,.85));
  color:#061019;
  border-color:rgba(60,242,213,.35);
}
.btn--ghost{background:transparent; color:var(--text)}
.btn--ghost:hover{background:rgba(255,255,255,.04)}

.burger{
  display:none;
  margin-left:auto;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{display:block; height:2px; margin:7px 10px; background:rgba(233,238,252,.85)}

.mobile{
  border-top:1px solid var(--line);
  background:rgba(11,18,32,.92);
}
.mobile__inner{padding:14px 20px; display:grid; gap:10px}
.mobile__link{color:var(--muted); padding:10px 10px; border-radius:12px; border:1px solid var(--line); background:rgba(255,255,255,.03)}
.mobile__lang{display:flex; gap:8px; flex-wrap:wrap}

.hero{padding:64px 0 28px}
.hero__inner{display:grid; grid-template-columns: 1.2fr .9fr; gap:28px; align-items:start}
.eyebrow{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12px;
}
.hero__title{font-size:44px; line-height:1.05; margin:16px 0 12px; letter-spacing:-.6px}
.hero__subtitle{font-size:16px; color:var(--muted); margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 0}
.badge{
  font-size:12px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.note{
  margin-top:18px;
  padding:14px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(60,242,213,.22);
  background:linear-gradient(135deg, rgba(60,242,213,.10), rgba(55,111,255,.06));
  color:var(--text);
}
.note strong{margin-right:6px}

.hero__panel .panel{
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
  padding:18px;
}
.panel__row{display:flex; gap:12px}
.kpi{
  flex:1;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:12px;
}
.kpi__label{font-size:12px; color:var(--muted)}
.kpi__value{font-weight:800; margin-top:6px}
.panel__card{
  margin-top:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:14px;
}
.panel__cardTitle{font-weight:800; margin-bottom:8px}
.panel__foot{margin-top:12px; color:var(--muted); font-size:12px}

.section{padding:54px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.03), transparent)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0; font-size:28px; letter-spacing:-.2px}
.section__head p{margin:8px 0 0}

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

.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.card__meta{margin-top:12px; font-size:12px; color:rgba(60,242,213,.92)}
.card--flat{background:rgba(255,255,255,.02)}

.callout{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.callout h3{margin:0 0 10px}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.fineprint{
  margin-top:16px;
  font-size:12px;
  color:var(--muted);
  opacity:.95;
}

.contact{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px}
.form{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.form__row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.field{display:grid; gap:8px; margin-bottom:12px}
.field span{font-size:12px; color:var(--muted)}
input, textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(6,10,20,.55);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(60,242,213,.45)}
textarea{resize:vertical; min-height:120px}
.form__actions{display:flex; align-items:center; gap:12px; margin-top:8px}
.form__status{font-size:12px; color:var(--muted)}

.aside{display:grid; gap:14px}
.aside__card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.aside__card--dark{
  background:linear-gradient(135deg, rgba(60,242,213,.10), rgba(55,111,255,.06));
  border-color:rgba(60,242,213,.18);
}
.aside__title{font-weight:800; margin-bottom:8px}
.aside__text{color:var(--muted); line-height:1.55}
.aside__pill{
  margin-top:14px;
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  font-size:12px;
}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0 18px;
  background:rgba(0,0,0,.18);
}
.footer__inner{display:flex; gap:18px; align-items:flex-start; justify-content:space-between}
.footer__brand{font-weight:900}
.footer__muted{color:var(--muted); font-size:12px; line-height:1.55; max-width:560px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.footer__link{color:var(--muted); font-size:12px}
.footer__link:hover{color:var(--text)}
.footer__bottom{
  margin-top:10px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .nav{display:none}
  .header__actions{display:none}
  .burger{display:inline-block}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .hero__title{font-size:36px}
}