:root{
  --bg:#040612;
  --bg-soft:#09101f;
  --card:rgba(255,255,255,.045);
  --text:#f6f8ff;
  --muted:#aab7cf;
  --line:rgba(255,255,255,.1);
  --cyan:#42ddff;
  --blue:#4b77ff;
  --violet:#8f58ff;
  --pink:#ff59cf;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 0%,rgba(57,204,255,.16),transparent 28%),
    radial-gradient(circle at 85% 8%,rgba(145,71,255,.18),transparent 30%),
    linear-gradient(180deg,#03050d 0%,#060a16 100%);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1160px,calc(100% - 36px));margin:auto}
.narrow{width:min(900px,calc(100% - 36px))}
.site-header{
  position:sticky;top:0;z-index:30;
  backdrop-filter:blur(16px);
  background:rgba(4,6,18,.78);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  min-height:76px;
  display:flex;align-items:center;justify-content:space-between;gap:24px
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:850;letter-spacing:.14em
}
.brand img{
  width:44px;height:44px;border-radius:50%;object-fit:cover;
  box-shadow:0 0 24px rgba(85,139,255,.28)
}
nav{display:flex;gap:22px;color:var(--muted);font-size:14px}
nav a:hover{color:#fff}
.hero{padding:90px 0 84px}
.hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;
  align-items:center;gap:56px
}
.eyebrow,.section-kicker{
  font-size:12px;font-weight:800;letter-spacing:.22em;
  text-transform:uppercase;color:var(--cyan)
}
h1{
  font-size:clamp(54px,8vw,94px);
  line-height:.95;margin:14px 0 24px;letter-spacing:-.05em
}
h1 span{
  background:linear-gradient(90deg,var(--cyan),#d9e6ff 48%,var(--pink));
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.lead{font-size:19px;color:var(--muted);max-width:650px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.btn{
  display:inline-block;padding:14px 22px;border-radius:14px;
  border:1px solid var(--line);font-weight:750
}
.btn.primary{
  background:linear-gradient(90deg,#1fc7ff,#5368ff 55%,#a84eff);
  box-shadow:0 10px 40px rgba(72,102,255,.25)
}
.btn.ghost{background:rgba(255,255,255,.035)}
.hero-logo-card{
  padding:22px;border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.018));
  border:1px solid rgba(111,156,255,.22);
  box-shadow:0 30px 80px rgba(0,0,0,.38),0 0 46px rgba(84,77,255,.12)
}
.hero-logo-card img{border-radius:22px}
.section{padding:88px 0;border-top:1px solid var(--line)}
.alt{background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.005))}
h2{
  font-size:clamp(34px,5vw,58px);
  line-height:1.05;margin:10px 0 34px;letter-spacing:-.035em
}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card,.step,.contact-box{
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--line);border-radius:22px
}
.card{padding:26px}
.card h3,.legal h3{margin-top:0;color:#fff}
.card p,.legal p,.note,.contact-box p{color:var(--muted)}
.steps{display:grid;gap:14px}
.step{display:flex;align-items:center;gap:20px;padding:19px 22px}
.step span{font-weight:900;color:var(--pink);letter-spacing:.08em}
.step p{margin:0}
.legal .narrow{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  padding:34px;
  box-shadow:0 24px 80px rgba(0,0,0,.26)
}
.legal h3{margin-top:34px;margin-bottom:8px}
.legal a{color:var(--cyan)}
.contact-box{display:flex;justify-content:space-between;align-items:center;padding:34px}
footer{
  border-top:1px solid var(--line);
  padding:26px 0;color:#8995ad;font-size:13px
}
.footer-wrap{display:flex;justify-content:space-between;gap:20px}
@media(max-width:820px){
  nav{display:none}
  .hero{padding-top:54px}
  .hero-grid,.cards{grid-template-columns:1fr}
  .section{padding:68px 0}
  .legal .narrow{padding:22px}
  .contact-box,.footer-wrap{flex-direction:column;align-items:flex-start}
}
