/* Reset & base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0a0f14;
  background: #ffffff; /* pristine white */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0 0 0.5rem; letter-spacing: 0.06em; }
p { margin: 0 0 1rem; }

/* Hero */
.hero {
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stage {
  position: relative;
  width: min(76vmin, 540px);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.25s ease-out;
  will-change: transform;
  animation: awaken 1.6s ease-out both;
}

.crest {
  width: 74%;
  max-width: 420px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.06));
  transform: translateZ(30px) scale(1.02);
  animation: float 7s ease-in-out infinite;
}

/* Halo ring */
.halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(6px) drop-shadow(0 10px 40px rgba(0,0,0,0.08));
  animation: spin 18s linear infinite, breathe 6s ease-in-out infinite;
}

/* Mixed gradient aura: gold + emerald */
.aura-mix {
  background:
    radial-gradient(closest-side, rgba(0,0,0,0.02), rgba(0,0,0,0) 60%),
    conic-gradient(
      from 0deg,
      #c8a550 0deg, #e0c168 60deg, #0a7f4f 180deg, #46b37a 240deg, #c8a550 360deg
    );
  -webkit-mask: radial-gradient(closest-side, transparent 64%, black 66%, black 70%, transparent 72%);
          mask: radial-gradient(closest-side, transparent 64%, black 66%, black 70%, transparent 72%);
  opacity: 0.85;
}

/* Title & tagline */
.titleblock { margin-top: 1.25rem; }
.titleblock h1 {
  font-weight: 800;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
}
.tagline {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: #203040;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.cta {
  margin-top: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(12,18,24,0.12);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  display: inline-block;
  color: #0a0f14;
  transition: all .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,15,20,0.06); }

/* About */
.about {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem 0.5rem;
  text-align: center;
  color: #233041;
}

/* Sides (tracklist style) */
.sides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 1rem auto 4rem;
  padding: 0 1.25rem;
}
.side {
  border: 1px solid rgba(12,18,24,0.08);
  padding: 1.25rem 1.25rem 1rem;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  background: #ffffff;
}
.side h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1f2a37;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.side ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #344255;
}
.side li { margin: 0.25rem 0; }

.footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  color: #5b6777;
  font-size: 0.9rem;
  border-top: 1px solid rgba(12,18,24,0.06);
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateZ(30px) translateY(0px) scale(1.02); }
  50% { transform: translateZ(30px) translateY(-8px) scale(1.02); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.82; filter: blur(6px) drop-shadow(0 10px 40px rgba(0,0,0,0.08)); }
  50% { opacity: 0.95; filter: blur(8px) drop-shadow(0 16px 56px rgba(0,0,0,0.10)); }
}
@keyframes awaken {
  0% { opacity: 0; transform: translateY(10px) scale(0.96); }
  60% { opacity: 1; transform: translateY(0) scale(1.0); }
  100% { opacity: 1; }
}

/* Subtle focus styles */
:focus-visible {
  outline: 2px solid #0a7f4f;
  outline-offset: 2px;
}
