:root {
  --bg: #0b0b12;
  --bg-soft: rgba(255,255,255,0.06);
  --card: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --text: #f5f7ff;
  --muted: #b7bdd1;
  --accent: #b388ff;
  --accent-2: #6ee7ff;
  --pink: #ff8bd6;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(179,136,255,0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(110,231,255,0.13), transparent 25%),
    linear-gradient(180deg, #090910 0%, #0d1020 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(#fff 0.5px, transparent 0.5px);
  background-size: 14px 14px;
}

header {
  padding: 90px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.45;
}

.glow.one {
  background: var(--accent);
  top: -60px;
  left: 12%;
}

.glow.two {
  background: var(--pink);
  top: 20px;
  right: 12%;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
}

.gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  transition: 0.25s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.09);
}

.btn.primary {
  background: linear-gradient(90deg, rgba(179,136,255,0.3), rgba(110,231,255,0.2));
}

main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: 0.25s ease, opacity 0.6s ease, transform 0.6s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

.stat {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.section {
  margin: 70px 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 700px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
}

.music-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.music-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(179,136,255,0.12);
  border: 1px solid rgba(179,136,255,0.24);
  color: #e6d8ff;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.music-tags span:hover {
  transform: scale(1.05);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 18px;
  border-left: 2px solid rgba(179,136,255,0.6);
  background: rgba(255,255,255,0.04);
  border-radius: 0 18px 18px 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 30px 20px 60px;
}

@media (max-width: 850px) {
  .about {
    grid-template-columns: 1fr;
  }
}
