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

  --p1:#7C5CFF;
  --p2:#2EE9A6;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{ 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(--text);
  background: var(--bg);
  overflow-x:hidden;
}

.bg{
  position:fixed;
  inset:-80px;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(900px 500px at 10% 8%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(950px 520px at 88% 12%, rgba(46,233,166,.16), transparent 62%),
    radial-gradient(700px 500px at 55% 110%, rgba(124,92,255,.12), transparent 60%);
  filter: blur(12px);
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.56);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar__inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding: 0 12px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  color:#061016;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(46,233,166,.92));
  box-shadow: var(--shadow);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-weight:800; opacity:.95; }

.nav{
  display:flex;
  gap:10px;
  color:var(--muted);
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.topbar__actions{
  margin-left:auto;
  display:flex;
  gap:10px;
}

.btn{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition: transform .12s ease, background .12s ease;
  user-select:none;
}
.btn:hover{ background: rgba(255,255,255,.07); }
.btn:active{ transform: translateY(1px); }

.btn--primary{
  border-color: transparent;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(46,233,166,.85));
  color:#061016;
}

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

.mobile-nav{
  display:none;
  padding:10px 0 14px;
  border-top:1px solid rgba(255,255,255,.06);
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  color:var(--muted);
}
.mobile-nav a:hover{ color:var(--text); }
.mobile-nav.is-open{ display:block; }

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  padding:26px 0 10px;
  align-items:start;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height:1.05;
  letter-spacing:-.6px;
}

.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section{ padding: 16px 0; }
.section__head{
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap:14px;
  margin: 14px 0 12px;
}
.section__head h2{ margin:0; font-size: 22px; letter-spacing:-.2px; }
.section__head p{ margin:0; color: var(--muted); }

.footer{
  padding: 22px 0 34px;
  color: var(--muted);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:16px;
}
.footer__links{ display:flex; gap:12px; }
.footer__links a{ color: var(--muted); }
.footer__links a:hover{ color: var(--text); }

.muted{ color: var(--muted); }

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .nav, .topbar__actions{ display:none; }
  .burger{ display:inline-block; }

}

.timeline{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.tl{
  padding:14px;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.tl__top{ display:flex; justify-content:space-between; gap:10px; align-items:center; }
.tl__tag{
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}
.tl__name{ font-weight:800; }
.tl__desc{ margin-top:10px; color: var(--muted); line-height:1.5; font-size:13px; }
