:root {
  --bg: #09090b;
  --surface: rgba(21, 21, 24, 0.82);
  --surface-strong: #151518;
  --text: #f5f3f1;
  --muted: #a7a2a0;
  --red: #e31b23;
  --red-dark: #8f1017;
  --line: rgba(255,255,255,.09);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Estedad", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 5%, rgba(227,27,35,.14), transparent 26rem),
    linear-gradient(180deg, #0b0b0d 0%, #080809 100%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea, audio { font: inherit; }
button { color: inherit; }

.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { background: var(--red); top: -10rem; right: -10rem; }
.ambient-two { background: #ffffff; bottom: -18rem; left: -14rem; opacity: .045; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.brand { display: flex; align-items: center; gap: 13px; direction: ltr; }
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.75);
  box-shadow: 0 0 0 5px rgba(255,255,255,.06);
}
.brand span { display: grid; gap: 3px; }
.brand strong { font-size: 1.04rem; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-size: .72rem; }

nav { display: flex; align-items: center; gap: 26px; font-size: .9rem; color: #d7d3d1; }
nav a { transition: color .2s ease, transform .2s ease; }
nav a:hover { color: #fff; transform: translateY(-1px); }
.outline-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 17px;
  background: rgba(255,255,255,.025);
}

main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  padding: 68px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,8,.98) 5%, rgba(8,8,10,.84) 51%, rgba(8,8,10,.45));
  z-index: -1;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  filter: saturate(.8);
  transform: scale(1.04);
  z-index: -2;
}
.hero-content { max-width: 650px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #e2dedc;
  font-size: .7rem;
  letter-spacing: .22em;
  font-weight: 700;
  direction: ltr;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.35rem);
  line-height: .98;
  margin: 28px 0 24px;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p { color: #c9c3c0; max-width: 620px; line-height: 2; font-size: 1.03rem; }
.hero-actions { display: flex; align-items: center; gap: 23px; margin-top: 32px; }
.primary-button {
  min-width: 158px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(227,27,35,.28);
  transition: transform .2s ease, background .2s ease;
}
.primary-button:hover { transform: translateY(-2px); background: #f1252d; }
.text-button { color: #d6d0cd; direction: ltr; font-size: .9rem; }

.hero-art {
  justify-self: end;
  width: min(430px, 100%);
  direction: ltr;
  position: relative;
}
.record-ring {
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 20px;
  background:
    repeating-radial-gradient(circle, #202024 0 2px, #111114 3px 8px);
  box-shadow: 0 40px 100px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.08);
  animation: slow-spin 35s linear infinite;
}
.record-ring img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
@keyframes slow-spin { to { transform: rotate(360deg); } }
.now-playing {
  position: absolute;
  left: -34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 10px;
  min-width: 270px;
  padding: 17px 19px;
  background: rgba(13,13,15,.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.4);
}
.now-playing .pulse { grid-row: 1 / 3; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px rgba(227,27,35,.12); }
.now-playing span:not(.pulse) { color: var(--muted); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
.now-playing strong { font-size: .9rem; }

.music-section { padding: 118px 0 90px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 34px; }
.section-heading h2, .about-copy h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); margin: 12px 0 0; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); margin: 0 0 8px; }

.track-list { display: grid; gap: 22px; }
.track-card {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(26,26,29,.96), rgba(15,15,17,.97));
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
  transition: transform .25s ease, border-color .25s ease;
}
.track-card:hover { transform: translateY(-3px); border-color: rgba(227,27,35,.32); }
.track-cover-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.track-cover { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.track-card:hover .track-cover { transform: scale(1.035); }
.track-cover-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55)); }
.cover-play {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #111;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.34);
  transition: transform .2s ease;
}
.cover-play:hover { transform: scale(1.06); }
.track-main { padding: 28px 30px 26px; min-width: 0; }
.track-title-row { display: flex; justify-content: space-between; align-items: start; gap: 24px; }
.track-number { color: var(--red); font-size: .73rem; font-weight: 700; letter-spacing: .12em; direction: ltr; }
.track-title { font-size: clamp(1.55rem, 3vw, 2.5rem); margin: 6px 0 5px; letter-spacing: -.04em; direction: ltr; text-align: right; }
.track-subtitle { color: var(--muted); margin: 0; }
.track-tag { direction: ltr; color: #bbb4b1; font-size: .72rem; border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; white-space: nowrap; }
.audio-player { width: 100%; margin: 26px 0 22px; accent-color: var(--red); }
.track-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 19px; border-top: 1px solid var(--line); }
.track-credit { color: var(--muted); font-size: .78rem; line-height: 1.8; }
.track-actions { display: flex; align-items: center; gap: 10px; }
.share-button, .download-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 17px;
  cursor: pointer;
  background: rgba(255,255,255,.025);
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.share-button:hover { background: rgba(255,255,255,.07); }
.download-button { border-color: rgba(227,27,35,.36); background: rgba(227,27,35,.13); color: #fff; }
.download-button:hover { background: var(--red); transform: translateY(-1px); }
.download-button span { margin-right: 5px; }

.about-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 72px;
  padding: 76px;
  margin-bottom: 100px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(28,28,31,.72), rgba(15,15,17,.86));
  overflow: hidden;
  position: relative;
}
.about-section::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(227,27,35,.13); filter: blur(95px); right: -120px; bottom: -140px; }
.about-photo { position: relative; z-index: 1; }
.about-photo img { width: 100%; max-width: 350px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 24px 65px rgba(0,0,0,.42); }
.about-copy { position: relative; z-index: 1; }
.about-copy p { color: #bdb7b4; line-height: 2.1; font-size: 1rem; max-width: 650px; }
.about-copy a { display: inline-block; margin-top: 14px; color: #fff; border-bottom: 1px solid var(--red); padding-bottom: 6px; }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  direction: ltr;
  font-size: .8rem;
}
footer strong { color: #e8e4e2; letter-spacing: .11em; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: #f5f3f1;
  color: #111;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 15px 45px rgba(0,0,0,.38);
  transition: opacity .25s ease, transform .25s ease;
  font-size: .85rem;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 940px) {
  nav a:not(.outline-link) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 52px 38px 46px; gap: 54px; }
  .hero::after { background: linear-gradient(180deg, rgba(7,7,8,.96) 5%, rgba(8,8,10,.78)); }
  .hero-art { justify-self: center; width: min(390px, 85%); }
  .track-card { grid-template-columns: 200px 1fr; }
  .about-section { padding: 52px; gap: 42px; }
}

@media (max-width: 700px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .site-header { padding: 15px 0; }
  .brand small { display: none; }
  .brand img { width: 46px; height: 46px; }
  nav { gap: 8px; }
  .outline-link { padding: 9px 12px; font-size: .78rem; }
  .hero { min-height: auto; border-radius: 27px; padding: 42px 23px 36px; }
  .hero h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); margin-top: 22px; }
  .hero p { font-size: .92rem; }
  .hero-actions { flex-wrap: wrap; }
  .hero-art { width: min(310px, 88%); }
  .now-playing { left: -8px; bottom: 8px; min-width: 235px; }
  .music-section { padding: 82px 0 70px; }
  .section-heading { align-items: start; }
  .section-heading p { font-size: .78rem; }
  .track-card { grid-template-columns: 1fr; }
  .track-cover-wrap { aspect-ratio: 1.1; }
  .track-main { padding: 25px 20px 22px; }
  .track-title-row { display: block; }
  .track-tag { display: inline-block; margin-top: 14px; }
  .track-meta { align-items: stretch; flex-direction: column; }
  .track-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .share-button, .download-button { text-align: center; padding-inline: 12px; }
  .about-section { grid-template-columns: 1fr; padding: 38px 25px; margin-bottom: 72px; border-radius: 28px; text-align: center; }
  .about-photo img { max-width: 245px; }
  .about-photo { display: flex; justify-content: center; }
  .about-copy .eyebrow { justify-content: center; }
  footer { align-items: center; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
