:root{
  --bg0:#05040d;
  --bg1:#140a2f;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --stroke:rgba(255,255,255,.14);
}

*{
  box-sizing:border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html,body{
  height:100%;
  position: fixed;
  overflow: hidden;
  width: 100%;
}

body{
  margin:0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);

  background:
    radial-gradient(900px 650px at 18% 20%, rgba(178,107,255,.22) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(900px 650px at 82% 25%, rgba(74,163,255,.16) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(900px 650px at 50% 90%, rgba(255,79,191,.11) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(1200px 900px at 30% 20%, #1a1240 0%, var(--bg1) 50%, var(--bg0) 100%);
}

canvas{
  position:fixed; inset:0;
  width:100vw; height:100vh;
  display:block;
  z-index:0;
  pointer-events:none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

main{
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.22) rgba(0,0,0,.25);
}
main::-webkit-scrollbar{width:10px}
main::-webkit-scrollbar-track{background:rgba(0,0,0,.25)}
main::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.18);
  border-radius:999px;
  border:2px solid rgba(0,0,0,.25);
}

.hero{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:48px 22px 26px;
}

.heroInner{
  width:min(920px, 100%);
  text-align:center;
  padding:26px 18px;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.logo{
  width:220px; height:220px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.logo img{width:100%;height:100%;object-fit:cover;display:block}

h1{
  margin:0;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing:.3px;
  line-height:1.05;
}

.tag{
  margin:14px 0 0;
  color:var(--muted);
  font-size:22px;
  font-weight:400;
}

.row{
  margin-top:22px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.iconbtn{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:var(--text);
  text-decoration:none;
  font-size:20px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.iconbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
}

.scrollHint{
  margin-top:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.12);
  color: rgba(255,255,255,.88);
  text-decoration:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.scrollHint:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.26);
}

@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(7px); }
}
.scrollHint i{
  animation: bob 1.2s ease-in-out infinite;
  font-size: 20px;
}

.hairline{
  height:1px;
  width:100%;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}

.about{
  padding: 54px 22px 74px;
  display:flex;
  justify-content:center;
  text-align:center;
}

.aboutInner{
  width:min(920px, 100%);
  max-width: 72ch;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.aboutTitle{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(255,255,255,.88);
}

.aboutText{
  margin:0;
  color: rgba(255,255,255,.80);
  font-size: 16px;
  line-height: 1.9;
}
.aboutText p{margin:0 0 16px}

.footer{
  margin-top: 30px;
  color: var(--muted2);
  font-size: 13px;
}
