:root {
  --bg: #0a0b0e;
  --surface: #11141b;
  --surface-2: #0e1117;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f4f8;
  --muted: #aeb4c2;
  --accent: #e7ebf6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(1000px 700px at 10% -10%, rgba(255, 255, 255, 0.08), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
              var(--bg);
  min-height: 100vh;
}

.bg-glow {
  position: fixed;
  inset: 0;
  background: url("assets/images/fusionlogo1.png") no-repeat center 18%;
  background-size: 520px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin: 16px auto 0;
  padding: 10px 16px;
  max-width: 1100px;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.nav a {
  text-decoration: none;
  color: var(--text);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 32px auto 80px;
  padding: 0 24px;
  display: grid;
  gap: 32px;
}

.two-col {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.two-col .section {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
}

.two-col .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 20, 27, 0.95), rgba(12, 14, 19, 0.9));
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(460px, 78vw);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.6));
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 10px 0 12px;
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(17, 20, 27, 0.6);
  margin-top: 14px;
  color: var(--text);
  font-size: 0.85rem;
}

.strip-label {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-decoration: none;
}

.btn.primary {
  background: var(--accent);
  color: #111319;
}

.btn.ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}

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

.section-title {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--muted);
}

.card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px;
}

.track-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.track-btn {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.64rem;
  cursor: pointer;
}

.track-btn.is-active {
  background: var(--accent);
  color: #111319;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.socials a {
  text-decoration: none;
  color: var(--text);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact a {
  text-decoration: none;
  color: var(--text);
}

.player {
  display: grid;
  gap: 12px;
}

.player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.player-title {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--muted);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.player-button svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
}

.player-time {
  font-size: 0.82rem;
  color: var(--muted);
}

.player-volume input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.player-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
}

.player-progress {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.player-wave {
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
  align-items: end;
  height: 30px;
  width: 100%;
}

.player-wave span {
  width: 5px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.3;
  transform-origin: bottom;
  transform: none;
}

.player.is-playing .player-wave span {
  animation: wave 1.2s ease-in-out infinite;
  opacity: 0.6;
}

.player-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.player-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.player-wave span:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.player-wave span:nth-child(4) { height: 20px; animation-delay: 0.05s; }
.player-wave span:nth-child(5) { height: 12px; animation-delay: 0.18s; }
.player-wave span:nth-child(6) { height: 22px; animation-delay: 0.12s; }
.player-wave span:nth-child(7) { height: 14px; animation-delay: 0.22s; }
.player-wave span:nth-child(8) { height: 18px; animation-delay: 0.08s; }
.player-wave span:nth-child(9) { height: 10px; animation-delay: 0.16s; }
.player-wave span:nth-child(10) { height: 20px; animation-delay: 0.04s; }
.player-wave span:nth-child(11) { height: 12px; animation-delay: 0.2s; }
.player-wave span:nth-child(12) { height: 18px; animation-delay: 0.11s; }
.player-wave span:nth-child(13) { height: 10px; animation-delay: 0.17s; }
.player-wave span:nth-child(14) { height: 16px; animation-delay: 0.07s; }
.player-wave span:nth-child(15) { height: 9px; animation-delay: 0.14s; }
.player-wave span:nth-child(16) { height: 20px; animation-delay: 0.09s; }

.footer {
  margin: 40px auto 60px;
  text-align: center;
  color: var(--muted);
}

.footer-logo svg {
  width: 110px;
  height: 28px;
}

.footer-logo text {
  fill: #9aa2b2;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.3em;
  font-size: 20px;
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1.2); }
}

.player-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.player-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.player-wave span:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.player-wave span:nth-child(4) { height: 20px; animation-delay: 0.05s; }
.player-wave span:nth-child(5) { height: 12px; animation-delay: 0.18s; }
.player-wave span:nth-child(6) { height: 22px; animation-delay: 0.12s; }
.player-wave span:nth-child(7) { height: 14px; animation-delay: 0.22s; }
.player-wave span:nth-child(8) { height: 18px; animation-delay: 0.08s; }
.player-wave span:nth-child(9) { height: 10px; animation-delay: 0.16s; }
.player-wave span:nth-child(10) { height: 20px; animation-delay: 0.04s; }
.player-wave span:nth-child(11) { height: 12px; animation-delay: 0.2s; }
.player-wave span:nth-child(12) { height: 18px; animation-delay: 0.11s; }
.player-wave span:nth-child(13) { height: 10px; animation-delay: 0.17s; }
.player-wave span:nth-child(14) { height: 16px; animation-delay: 0.07s; }
.player-wave span:nth-child(15) { height: 9px; animation-delay: 0.14s; }
.player-wave span:nth-child(16) { height: 20px; animation-delay: 0.09s; }

@media (max-width: 720px) {
  .nav { gap: 10px; font-size: 0.62rem; }
  .hero { padding: 22px; }
  .hero-logo { display: none; }
}
