:root{
  --bg:#070A12;
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);

  --accent: #7C5CFF;
  --accent2:#33D6FF;
  --ok:#2EE59D;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 12px 30px rgba(0,0,0,.35);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(124,92,255,.18), transparent 60%),
              radial-gradient(1000px 700px at 85% 30%, rgba(51,214,255,.14), transparent 55%),
              var(--bg);
}

.bg{position:fixed; inset:0; pointer-events:none; z-index:-1;}
.noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.25;
}
.glow{
  position:absolute; width:560px; height:560px; border-radius:999px;
  filter: blur(60px);
  opacity:.22;
}
.g1{left:-120px; top:120px; background: radial-gradient(circle, var(--accent), transparent 60%);}
.g2{right:-160px; top:40px; background: radial-gradient(circle, var(--accent2), transparent 60%);}

.topbar{
  max-width: 1120px;
  margin: 26px auto 0;
  padding: 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:12px}

.logo{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.06);
}

.brand-text .title{font-size:16px; font-weight:800; letter-spacing:.2px}
.brand-text .subtitle{font-size:12.5px; color: rgba(255,255,255,.74); margin-top:2px}
.muted{color: var(--muted)}

.container{
  max-width:1120px;
  margin: 26px auto 0;
  padding: 0 18px 60px;
  display:grid;
  grid-template-columns: 1.45fr .9fr;
  gap:18px;
}
@media (max-width: 960px){
  .container{grid-template-columns:1fr}
}

.hero h1{
  margin: 6px 0 8px;
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.05;
  letter-spacing: -.6px;
}
.accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  max-width: 720px;
  color: rgba(255,255,255,.76);
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.55;
}

.card{
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.card-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 12px;
}
.card-title{font-weight:900; letter-spacing:.2px}
.card-subtitle{color: rgba(255,255,255,.74); font-size:12.5px; margin-top:3px}
.badge{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.74);
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  white-space:nowrap;
}

.steps{display:flex; flex-direction:column; gap:12px;}
.step{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
}
.step-enter{background: rgba(124,92,255,.08); border-color: rgba(124,92,255,.22);}
.step-left{display:flex; align-items:center; gap:12px;}
.step-num{
  width:30px;height:30px;border-radius:10px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight:900;
  font-size:12px;
  color: rgba(255,255,255,.86);
}
.step-title{font-weight:900}
.step-desc{color: rgba(255,255,255,.76); font-size:12.5px; margin-top:2px}

.divider{height:1px;background:rgba(255,255,255,.12); margin: 4px 2px;}

.btn{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight:900;
  font-size: 13px;
  letter-spacing:.1px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  user-select:none;
}
.btn:hover{border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08);}
.btn:active{transform: translateY(1px);}
.btn[disabled], .btn[aria-disabled="true"]{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
}
.btn.primary{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
}
.btn.glow{
  border-color: rgba(51,214,255,.28);
  background: linear-gradient(90deg, rgba(124,92,255,.38), rgba(51,214,255,.26));
  box-shadow: 0 18px 50px rgba(124,92,255,.20);
}
.ico{
  width:26px;height:26px;border-radius:10px;
  display:grid;place-items:center;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
}
.arrow{opacity:.95}

.side{display:flex; flex-direction:column; gap:14px;}
.panel{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
}
.panel-title{font-weight:950; margin-bottom: 8px;}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.55;
}

.links{display:flex; flex-direction:column; gap:8px;}
.link{
  color: rgba(255,255,255,.84);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 10px 10px;
  border-radius: 14px;
}
.link:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18);}


.icon-link{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:850;
}

.icon{
  width:26px;
  height:26px;
  border-radius:8px;
  display:grid;
  place-items:center;
  font-size:14px;
  font-weight:900;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}

/* Subtle brand hints */
.icon.x{
  background: rgba(255,255,255,.10);
}

.icon.yt{
  background: rgba(255,0,0,.18);
}

.icon.game{
  background: rgba(124,92,255,.22);
}

.icon.web{
  background: rgba(51,214,255,.22);
}



/* Labs */
.labs-block { display:flex; flex-direction:column; gap:8px; }
.labs-tags { display:flex; flex-wrap:wrap; gap:8px; }

.labs-label {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2px;
}

.tag{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .15px;
}

.tag.active{
  border-color: rgba(46,229,157,.38);
  background: rgba(46,229,157,.16);
  color: rgba(255,255,255,.96);
}

.footer{
  max-width: 1120px;
  margin: 18px auto 22px;
  padding: 0 18px;
  color: rgba(255,255,255,.64);
  font-size: 12.5px;
  display:flex;
  gap:10px;
  align-items:center;
}
.dot{opacity:.55}
