*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  color-scheme: dark;
  font-family: 'Inter', Arial, sans-serif;
  background: #020107;
  color: #f3f3ff;
}

body{
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(12, 12, 38, 1) 0%, #020107 44%, #020105 100%);
}

body::before{
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 12% 16%, rgba(137, 112, 255, 0.16), transparent 18%),
              radial-gradient(circle at 88% 12%, rgba(255, 110, 190, 0.1), transparent 14%),
              linear-gradient(180deg, rgba(255,255,255,0.06), transparent 36%);
  pointer-events: none;
}

body::after{
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 24%, rgba(97, 84, 255, 0.12), transparent 18%),
              radial-gradient(circle at 75% 22%, rgba(255, 104, 172, 0.08), transparent 14%);
  filter: blur(44px);
}

#three-container{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-frame{
  position: relative;
  width: min(100%, 920px);
  padding: 2.5rem 2rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(11, 10, 22, 0.95), rgba(5, 5, 14, 0.78));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 56px 170px rgba(0,0,0,0.38);
  backdrop-filter: blur(28px);
  overflow: hidden;
}

.hero-frame::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(103, 88, 255, 0.22), rgba(255, 118, 187, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-frame::after{
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 56%);
  pointer-events: none;
}

h1{
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
  color: transparent;
  background: linear-gradient(105deg, #eef2ff 0%, #d2b7ff 45%, #ffb7dc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 32px 96px rgba(103, 69, 255, 0.22);
}

@media (max-width: 720px) {
  .hero-frame{
    padding: 2rem 1.5rem;
  }

  h1{
    font-size: clamp(2.4rem, 10vw, 3.6rem);
