:root{
  --bg:#08090b;
  --panel:#101216;
  --text:#f4f5f7;
  --muted:#969ba5;
  --line:rgba(255,255,255,.09);
  --soft:rgba(255,255,255,.045);
  --accent:#0050fd;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:Inter,Arial,sans-serif;line-height:1.5;
  overflow-x:hidden;
}
body:before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:-2;
  background:
    radial-gradient(circle at 72% 20%,rgba(184,255,90,.07),transparent 27%),
    radial-gradient(circle at 15% 80%,rgba(95,105,255,.08),transparent 30%);
}
.glow{position:fixed;z-index:-1;filter:blur(90px);border-radius:50%;pointer-events:none}
.glow-a{width:280px;height:280px;background:rgba(184,255,90,.07);right:7%;top:12%}
.glow-b{width:250px;height:250px;background:rgba(88,105,255,.06);left:-100px;bottom:8%}

header{
  width:min(1280px,calc(100% - 56px));margin:auto;
  height:92px;display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:13px;text-decoration:none;color:#fff;font-size:14px;font-weight:800;letter-spacing:.08em}
.brand-logo{
  width:42px;height:42px;border-radius:13px;background:#fff;color:#111;
  display:grid;place-items:center;font-size:8px;font-weight:800;
}
.contact-link{
  color:#b7bac1;text-decoration:none;font-size:13px;font-weight:600;
  transition:.2s;
}
.contact-link:hover{color:#fff}
.contact-link span,.final-side a span{margin-left:7px;color:var(--accent)}

main{width:min(1280px,calc(100% - 56px));margin:auto}
.hero{
  min-height:680px;display:grid;grid-template-columns:1.15fr .85fr;
  align-items:center;gap:50px;padding:60px 0 100px;
}
.tag,.overline{
  font-size:10px;letter-spacing:.18em;font-weight:800;color:#858a94;
}
.tag{display:flex;align-items:center;gap:9px;margin-bottom:27px}
.tag i{width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 18px var(--accent)}
h1{
  font-size:clamp(56px,7.4vw,104px);line-height:.96;letter-spacing:-.07em;
  margin:0;max-width:850px;
}
h1 em{font-style:normal;color:#7d818a}
.hero-copy p{
  max-width:570px;color:var(--muted);font-size:17px;line-height:1.7;margin:30px 0;
}
.scroll{
  display:inline-flex;align-items:center;gap:14px;color:#fff;text-decoration:none;
  font-size:13px;font-weight:700;border-bottom:1px solid rgba(255,255,255,.25);
  padding-bottom:9px;
}
.scroll b{font-size:18px;color:var(--accent);font-weight:400}

.hero-mark{display:flex;justify-content:center;align-items:center}
.orb{
  width:min(420px,80vw);aspect-ratio:1;border-radius:50%;
  background:
    radial-gradient(circle at 36% 30%,rgba(255,255,255,.18),transparent 8%),
    radial-gradient(circle at 50% 45%,#242831 0,#11141a 44%,#0b0c0f 70%);
  box-shadow:
    inset -30px -35px 70px rgba(0,0,0,.75),
    inset 10px 12px 35px rgba(255,255,255,.05),
    0 0 100px rgba(184,255,90,.06);
  display:grid;place-items:center;position:relative;
}
.orb:before{
  content:"";position:absolute;inset:14%;border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
}
.orb-logo{
  width:130px;height:130px;border-radius:35px;background:rgba(255,255,255,.96);
  color:#111;display:grid;place-items:center;text-align:center;
  font-size:13px;font-weight:900;line-height:1.1;letter-spacing:.06em;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}
.orb-logo small{font-size:7px;letter-spacing:.14em;margin-top:-38px}

.distribution{
  padding:45px 0 50px;border-top:1px solid var(--line);
}
.section-top{
  display:flex;justify-content:space-between;align-items:end;gap:50px;margin-bottom:42px;
}
h2{font-size:clamp(40px,5vw,68px);line-height:1;letter-spacing:-.06em;margin:12px 0 0}
.section-top p{max-width:390px;color:var(--muted);font-size:14px;margin:0;line-height:1.7}
.providers{
  display:grid;grid-template-columns:repeat(4,1fr);gap:100px; 
}
.provider{ 
  min-height:15px;border:1px solid var(--line);
  border-radius:10px;padding:10px;display:flex;flex-direction:column;
  justify-content:space-between;transition:.25s;
} 
.provider:hover{
  background:rgba(255,255,255,.075);border-color:rgba(255,255,255,.17);
  transform:translateY(-3px);
}
.fake-logo{ 
  width:150px;height:80px;dashed rgba(255,255,255,.18);
  
}
.provider strong{font-size:11px;letter-spacing:.1em;color:#b6bac2}

.final{
  border-top:1px solid var(--line);padding:100px 0;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;
}
.final-side{max-width:470px;align-self:end}
.final-side p{color:var(--muted);font-size:15px;line-height:1.8;margin:0 0 22px}
.final-side a{font-size:14px;color:#fff;text-decoration:none;font-weight:600}

footer{
  width:min(1280px,calc(100% - 56px));margin:auto;
  border-top:1px solid var(--line);padding:26px 0 32px;
  display:flex;justify-content:space-between;color:#5e636d;font-size:10px;
  letter-spacing:.08em;text-transform:uppercase;
}

@media(max-width:850px){
  header,main,footer{width:calc(100% - 36px)}
  header{height:76px}
  .hero{grid-template-columns:1fr;padding:65px 0 80px;min-height:auto}
  .hero-mark{order:-1;justify-content:flex-start}
  .orb{width:210px}
  .orb-logo{width:78px;height:78px;border-radius:22px;font-size:8px}
  .orb-logo small{font-size:5px;margin-top:-24px}
  .section-top{display:block}
  .section-top p{margin-top:20px}
  .providers{grid-template-columns:repeat(2,1fr)}
  .provider{min-height:130px;border-radius:17px;padding:18px}
  .final{grid-template-columns:1fr;gap:50px;padding:80px 0}
  footer{display:block;line-height:2}
  footer span{display:block}
}
@media(max-width:480px){
  h1{font-size:54px}
  .providers{grid-template-columns:1fr 1fr}
  .provider strong{font-size:9px}
}

