:root{
  --bg0:#070a14;
  --bg1:#0b1020;
  --ink:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --line:rgba(234,240,255,.12);
  --glass:rgba(10,14,28,.55);
  --glow0:#7c5cff;
  --glow1:#00d6ff;
  --glow2:#21ff9a;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:28px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:radial-gradient(1200px 800px at 20% 10%, rgba(124,92,255,.18), transparent 55%),
             radial-gradient(900px 700px at 80% 20%, rgba(0,214,255,.14), transparent 55%),
             radial-gradient(1200px 800px at 40% 90%, rgba(33,255,154,.10), transparent 55%),
             linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

#bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-3;
}

.noise{
  position:fixed;
  inset:-20%;
  z-index:-2;
  pointer-events:none;
  opacity:.12;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  transform:translateZ(0);
  animation:noiseMove 26s steps(2,end) infinite;
}
@keyframes noiseMove{
  0%{transform:translate3d(0,0,0)}
  25%{transform:translate3d(-2%,1%,0)}
  50%{transform:translate3d(1%,-2%,0)}
  75%{transform:translate3d(2%,2%,0)}
  100%{transform:translate3d(0,0,0)}
}

.vignette{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 900px at 50% 40%, transparent 55%, rgba(0,0,0,.55) 100%);
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  background:linear-gradient(180deg, rgba(7,10,20,.72), rgba(7,10,20,.24));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__mark{
  width:28px;
  height:28px;
  border-radius:10px;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.35), transparent 65%),
    linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,214,255,.75), rgba(33,255,154,.70));
  box-shadow:0 8px 28px rgba(124,92,255,.22), 0 10px 40px rgba(0,214,255,.10);
}
.brand__text{
  font-weight:700;
  letter-spacing:-0.02em;
}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav__link{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(234,240,255,.82);
  border:1px solid transparent;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
  color:var(--ink);
}

.langSwitch{
  display:flex;
  align-items:center;
  gap:6px;
}
.langSwitch__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  padding:0;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(234,240,255,.75);
  font-size:11px;
  cursor:pointer;
}
.langSwitch__btn.is-active{
  border-color:rgba(0,214,255,.6);
  background:rgba(0,214,255,.08);
  color:rgba(234,240,255,.95);
}
.langSwitch__flag{
  font-size:14px;
}

.hero{
  padding:56px 0 44px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.hero__copy{min-width:0}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.86);
}
.badge__dot{
  width:9px;
  height:9px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--glow0), var(--glow1), var(--glow2));
  box-shadow:0 0 0 5px rgba(124,92,255,.12), 0 0 34px rgba(0,214,255,.22);
}

.hero__title{
  margin:14px 0 10px;
  font-size:clamp(34px, 4.2vw, 54px);
  line-height:1.06;
  letter-spacing:-0.04em;
}
.gradient{
  background:linear-gradient(135deg, rgba(124,92,255,1), rgba(0,214,255,1), rgba(33,255,154,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}

.typewrap{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(10,14,28,.38);
  border:1px solid rgba(255,255,255,.10);
  width:fit-content;
}
.typewrap__label{
  color:rgba(234,240,255,.72);
  font-weight:600;
}
.type{
  font-weight:700;
  letter-spacing:-0.02em;
  white-space:nowrap;
}
.cursor{
  width:10px;
  height:18px;
  border-radius:2px;
  background:rgba(234,240,255,.85);
  box-shadow:0 0 18px rgba(0,214,255,.16);
  animation:blink 1.6s steps(2,end) infinite;
}
@keyframes blink{50%{opacity:.12}}

.hero__cta{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--ink);
  font-weight:700;
  letter-spacing:-0.01em;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.18);
}
.btn--primary{
  border-color:rgba(0,214,255,.25);
  background:linear-gradient(135deg, rgba(124,92,255,.92), rgba(0,214,255,.52));
  box-shadow:0 14px 40px rgba(124,92,255,.18), 0 16px 70px rgba(0,214,255,.10);
}
.btn--primary:hover{
  box-shadow:0 18px 55px rgba(124,92,255,.24), 0 18px 90px rgba(0,214,255,.14);
}
.btn--ghost{
  background:rgba(10,14,28,.25);
}

.kpis{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.kpi{
  padding:14px 14px 12px;
  border-radius:16px;
  background:rgba(10,14,28,.38);
  border:1px solid rgba(255,255,255,.10);
}
.kpi__top{
  display:flex;
  align-items:center;
  gap:10px;
}
.kpi__icon{
  width:28px;
  height:28px;
  display:inline-grid;
  place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.kpi__title{font-weight:700}
.kpi__desc{
  margin-top:8px;
  color:rgba(234,240,255,.72);
  font-size:13px;
  line-height:1.45;
}

.hero__visual{
  position:relative;
  min-height:420px;
}
.card{
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(10,14,28,.64), rgba(10,14,28,.34));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:translateZ(0);
}
.card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.dots{display:flex; gap:7px}
.dot{width:10px; height:10px; border-radius:99px; opacity:.95}
.dot--r{background:#ff5c7a}
.dot--y{background:#ffce5c}
.dot--g{background:#3cff8f}
.card__path{
  font-size:12px;
  color:rgba(234,240,255,.62);
}
.code{
  margin:0;
  padding:16px 16px 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size:13px;
  line-height:1.55;
  color:rgba(234,240,255,.88);
  overflow:auto;
  max-height:360px;
}
.code .kw{color:#88b8ff}
.code .fn{color:#a4ffd6}
.code .key{color:#ffd28b}
.code .str{color:#b2ff75}
.code .cmt{color:rgba(234,240,255,.46)}

.floaters{
  position:absolute;
  inset:-20px -10px auto -10px;
  height:520px;
  pointer-events:none;
  z-index:2;
}
.floater{
  position:absolute;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size:12px;
  backdrop-filter: blur(10px);
  box-shadow:0 12px 45px rgba(0,0,0,.35);
  transform:translate3d(0,0,0);
  animation:floatUp var(--dur) ease-in-out infinite;
}
@keyframes floatUp{
  0%{transform:translate3d(0,0,0); opacity:.0}
  20%{opacity:1}
  55%{transform:translate3d(0, -18px, 0)}
  90%{opacity:1}
  100%{transform:translate3d(0, -34px, 0); opacity:.0}
}

.strip{
  padding:28px 0 54px;
}
.strip__inner{
  border-radius:var(--radius2);
  padding:18px 18px;
  background:rgba(10,14,28,.32);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
}
.strip__title{
  margin:0 0 6px;
  letter-spacing:-0.03em;
}
.strip__text{
  margin:0;
  color:rgba(234,240,255,.72);
  line-height:1.6;
}
.chips{display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end}
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:rgba(234,240,255,.78);
  font-weight:600;
  font-size:13px;
}

.footer{
  padding:22px 0 60px;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:18px;
}
.footer__note{color:rgba(234,240,255,.7); margin-left:0; display:block; margin-top:4px; font-size:13px}
.footer__brand{
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1 1 auto;
}
.footer__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  color:rgba(234,240,255,.78);
  font-size:13px;
}
.footer__metaItem a{
  color:rgba(0,214,255,.92);
}

.services{
  padding:10px 0 52px;
}
.sectionHead{
  border-radius:var(--radius2);
  padding:18px 18px;
  background:rgba(10,14,28,.26);
  border:1px solid rgba(255,255,255,.10);
}
.sectionHead__title{
  margin:0 0 8px;
  letter-spacing:-0.03em;
}
.sectionHead__text{
  margin:0;
  color:rgba(234,240,255,.72);
  line-height:1.65;
  max-width:100ch;
}

.techStrip{
  margin-top:12px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  flex-wrap:wrap;
}
.techStrip__label{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(0,214,255,.35);
  background:rgba(0,214,255,.08);
  color:rgba(234,240,255,.9);
  font-weight:600;
  font-size:13px;
}
.techStrip__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.serviceGrid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px 22px;
}
.serviceCard{
  position:relative;
  padding:14px 0 16px;
  border-radius:0;
  border-bottom:1px solid rgba(255,255,255,.10);
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px 14px;
  align-items:flex-start;
}
.serviceCard > *{position:relative}
.serviceCard__icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.92);
  box-shadow:0 10px 26px rgba(0,0,0,.32);
}
.serviceCard__icon svg{
  width:20px;
  height:20px;
}
.serviceCard__title{
  margin:0 0 4px;
  letter-spacing:-0.02em;
  line-height:1.2;
  font-size:14.5px;
}
.serviceCard__text{
  margin:0;
  color:rgba(234,240,255,.70);
  line-height:1.65;
  font-size:13.3px;
  grid-column:2 / -1;
}

.serviceCard:hover{
  border-bottom-color:rgba(0,214,255,.65);
  transform:translateY(-1px);
  transition:border-bottom-color .18s ease, transform .18s ease;
}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero__visual{min-height:360px}
  .kpis{grid-template-columns:1fr}
  .strip__inner{flex-direction:column; align-items:flex-start}
  .chips{justify-content:flex-start}
  .serviceGrid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  .noise, .cursor, .floater{animation:none !important}
}
