:root {
  --bg: #05060a;
  --bg-soft: #0c0e15;
  --panel: #11141d;
  --panel-soft: rgba(17, 20, 29, 0.76);
  --text: #f7f8fb;
  --muted: #a6adbe;
  --line: rgba(255, 255, 255, 0.15);
  --accent: #ff5f2a;
  --accent-soft: #6ce7d3;
  --shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -5%, rgba(255, 95, 42, 0.18), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(108, 231, 211, 0.14), transparent 28%),
    linear-gradient(180deg, #030407 0%, var(--bg) 30%, #05070d 100%);
  line-height: 1.6;
}

.texture {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  width: min(var(--max), 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.topbar {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), 94vw);
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar.is-scrolled {
  background: rgba(9, 11, 16, 0.78);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.brand {
  font-family: "Archivo Black", "Impact", sans-serif;
  letter-spacing: 0.13em;
  font-size: 1rem;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  color: rgba(247, 248, 251, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 170ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--accent);
}

.social-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-mini a {
  width: 1.95rem;
  height: 1.95rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(247, 248, 251, 0.95);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.social-mini a svg {
  width: 0.98rem;
  height: 0.98rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-mini a svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-mini a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 95, 42, 0.15);
}

.menu-toggle {
  display: none;
  width: 2.2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  margin-block: 6px;
  background: #eef0f7;
  transition: transform 230ms ease, opacity 230ms ease;
}

.hero.section {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin-inline: 0;
  padding-bottom: 2.8rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/malusy-cover.jpg");
  background-size: cover;
  background-position: center 34%;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.08);
  transition: transform 160ms ease-out;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.35) 0%, rgba(3, 5, 8, 0.6) 35%, rgba(3, 5, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 8, 13, 0.92) 0%, rgba(6, 8, 13, 0.4) 45%, rgba(6, 8, 13, 0.75) 100%);
}

.hero__inner {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  min-height: 100vh;
  padding: 8.3rem 0 5.5rem;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2rem;
  align-items: end;
  position: relative;
  z-index: 3;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(14, 17, 25, 0.58);
  padding: 0.36rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.8rem;
}

.hero h1 span:first-child {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(3.5rem, 11vw, 9.4rem);
  letter-spacing: 0.05em;
  line-height: 0.93;
}

.hero h1 span:last-child {
  max-width: 12ch;
  font-size: clamp(1.2rem, 2.25vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(247, 248, 251, 0.94);
}

.hero__copy {
  margin-top: 1.15rem;
  max-width: 57ch;
  color: rgba(247, 248, 251, 0.84);
}

.hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: #160901;
  box-shadow: 0 12px 24px rgba(255, 95, 42, 0.42);
}

.btn--ghost {
  background: rgba(9, 11, 17, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero__card {
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.release-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero__card-body {
  padding: 1rem 1rem 1.1rem;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  border: 1px solid rgba(108, 231, 211, 0.45);
  color: var(--accent-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__card h2 {
  margin-top: 0.65rem;
  font-size: 1.3rem;
}

.release-date {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.ghost-btn {
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.72rem 0.8rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.stream-chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.stream-chips a {
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.62rem;
  color: rgba(247, 248, 251, 0.92);
  transition: border-color 160ms ease, color 160ms ease;
}

.stream-chips a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__marquee {
  position: absolute;
  bottom: 0.45rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 2.8rem;
  overflow: hidden;
  opacity: 0.16;
  white-space: nowrap;
}

.hero__marquee span {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: 0.2em;
  animation: marquee 14s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.about,
.music,
.socials,
.contact {
  margin-top: 4.4rem;
}

.section-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.about h2,
.music h2,
.socials h2,
.contact h2 {
  margin-top: 0.7rem;
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.06;
  max-width: 18ch;
}

.about p {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--muted);
}

.about__stats {
  display: grid;
  gap: 0.8rem;
}

.about__stats article {
  background: linear-gradient(165deg, rgba(255, 95, 42, 0.16), rgba(17, 20, 29, 0.82));
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem;
}

.stat-number {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.stat-copy {
  margin-top: 0.35rem;
  color: rgba(247, 248, 251, 0.88);
}

.track-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.track-card {
  grid-column: span 4;
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(17, 20, 29, 0.84));
  padding: 1.1rem;
  transition: transform 170ms ease, border-color 170ms ease;
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 42, 0.58);
}

.track-number {
  font-family: "Archivo Black", "Impact", sans-serif;
  color: var(--accent);
  font-size: 1.3rem;
}

.track-card h3 {
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.track-card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.mini-link {
  margin-top: 0.7rem;
  display: inline-flex;
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 0.86rem;
}

.mini-link:hover {
  color: var(--accent);
}

.social-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.social-card {
  grid-column: span 3;
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.04), rgba(17, 20, 29, 0.9));
  padding: 0.95rem;
  min-height: 7.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 170ms ease, transform 170ms ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 231, 211, 0.58);
}

.social-tag {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
}

.social-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact {
  margin-bottom: 4rem;
  padding: 1.3rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(108, 231, 211, 0.13), rgba(17, 20, 29, 0.95));
}

.contact p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.mail-link {
  margin-top: 0.85rem;
  display: inline-flex;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 2px solid rgba(255, 95, 42, 0.58);
  transition: color 170ms ease, border-color 170ms ease;
}

.mail-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(247, 248, 251, 0.55);
  font-size: 0.84rem;
  padding: 2.8rem 1rem 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 7.8rem;
    gap: 1.2rem;
  }

  .hero__card {
    max-width: 420px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    grid-column: span 6;
  }

  .social-card {
    grid-column: span 6;
  }
}

@media (max-width: 780px) {
  .topbar {
    border-radius: 1.1rem;
    width: min(var(--max), 95vw);
    grid-template-columns: auto auto;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .social-mini {
    display: none;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    justify-items: start;
    gap: 0.3rem;
    transition: max-height 260ms ease;
  }

  .nav.nav--open {
    max-height: 220px;
    padding-top: 0.65rem;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 span:first-child {
    font-size: clamp(2.6rem, 15vw, 4.5rem);
  }

  .hero h1 span:last-child {
    max-width: 100%;
    font-size: clamp(1.05rem, 5.8vw, 1.5rem);
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .track-card,
  .social-card {
    grid-column: span 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}
