:root {
  color-scheme: dark;
  --bg: #040404;
  --bg-soft: #0a0909;
  --panel: rgba(14, 13, 13, 0.78);
  --panel-strong: rgba(18, 16, 16, 0.94);
  --text: #f9f2df;
  --muted: #b8afa3;
  --soft: rgba(249, 242, 223, 0.72);
  --line: rgba(249, 242, 223, 0.14);
  --gold: #e7bd58;
  --gold-soft: #ffe8a3;
  --pink: #ff2f91;
  --pink-soft: #ff7bc0;
  --smoke: #756d68;
  --shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 47, 145, 0.18), transparent 25rem),
    radial-gradient(circle at 8% 24%, rgba(231, 189, 88, 0.12), transparent 24rem),
    linear-gradient(180deg, #030303, #080707 42%, #030303);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 24px, 1180px);
  min-height: 56px;
  margin: 12px auto 0;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(4, 4, 4, 0.74);
  backdrop-filter: blur(18px);
}

.site-header > a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(231, 189, 88, 0.5);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 900;
}

.site-header nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.site-header nav a {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header nav a:focus-visible,
.site-header nav a:hover {
  background: rgba(249, 242, 223, 0.1);
  color: var(--text);
  outline: 0;
}

.hero {
  position: relative;
  min-height: 64svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero picture,
.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero picture {
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 42%, color-mix(in srgb, var(--energy-secondary) 18%, transparent), transparent 18rem),
    radial-gradient(circle at 48% 50%, color-mix(in srgb, var(--energy-primary) 15%, transparent), transparent 24rem),
    linear-gradient(90deg, rgba(4, 4, 4, 0.86), rgba(4, 4, 4, 0.44) 42%, rgba(4, 4, 4, 0.1) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.2) 58%, #040404 100%);
}

.action-strip {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 16px 0 0;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(2.75rem, 16vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  width: fit-content;
  max-width: 100%;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 900;
}

.button--primary {
  border-color: rgba(231, 189, 88, 0.72);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 54%, #9a6a19);
  color: #090604;
  box-shadow: 0 16px 42px rgba(231, 189, 88, 0.2);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
}

.button[aria-disabled="true"],
.social-link[aria-disabled="true"] {
  cursor: default;
  opacity: 0.62;
}

.home-actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.home-action {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(249, 242, 223, 0.16);
  border-radius: 8px;
  background: rgba(7, 6, 6, 0.72);
  color: var(--text);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.home-action__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(249, 242, 223, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
}

.home-action__text {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.16;
}

.home-action--primary {
  border-color: rgba(231, 189, 88, 0.62);
  background:
    linear-gradient(135deg, rgba(231, 189, 88, 0.2), rgba(255, 47, 145, 0.12)),
    rgba(8, 7, 7, 0.82);
}

.home-action--secondary {
  border-color: rgba(255, 47, 145, 0.42);
}

.home-action--support {
  border-color: rgba(231, 189, 88, 0.46);
}

.home-action--support .home-action__text span:first-child {
  color: var(--gold-soft);
}

.home-action--quiet {
  color: var(--soft);
}

.home-action[aria-disabled="true"] {
  cursor: default;
  opacity: 0.56;
}

.home-action:not([aria-disabled="true"]):focus-visible,
.home-action:not([aria-disabled="true"]):hover {
  border-color: rgba(255, 47, 145, 0.72);
  outline: 0;
  transform: translateY(-1px);
}

.section {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 58px 0 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.85rem, 9vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.section--release {
  position: relative;
  width: min(100% - 20px, 1180px);
  padding-top: 28px;
}

.section--release::before {
  position: absolute;
  inset: 18px -10px auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(231, 189, 88, 0.54), transparent);
}

.premiere {
  display: grid;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(231, 189, 88, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 47, 145, 0.18), transparent 34rem),
    linear-gradient(135deg, rgba(231, 189, 88, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.48);
}

.release-panel,
.release-card,
.empty-state,
.premiere__heading,
.premiere__video,
.listen-panel,
.chapter-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.premiere__heading {
  padding: 18px;
  border-color: rgba(231, 189, 88, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 47, 145, 0.12), transparent 48%),
    var(--panel-strong);
}

.premiere__heading h2 {
  margin: 8px 0 8px;
  font-size: clamp(2.4rem, 14vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.chapter-number {
  width: fit-content;
  margin: 12px 0 0;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--release-accent) 58%, transparent);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.premiere__heading p:not(.eyebrow) {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.premiere__video {
  overflow: hidden;
  border-color: rgba(231, 189, 88, 0.28);
  background: #000;
}

.premiere__video .release-actions {
  padding: 12px;
  background: rgba(5, 5, 5, 0.9);
}

.listen-label {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #000;
}

.listen-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-color: rgba(255, 47, 145, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 47, 145, 0.12), transparent 52%),
    var(--panel-strong);
}

.video-frame--pending {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 800;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.pending-note {
  margin: 0;
  color: rgba(249, 242, 223, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.platform-grid,
.mini-platforms,
.social-grid {
  display: grid;
  gap: 8px;
}

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

.platform-link,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.platform-link--primary {
  border-color: rgba(231, 189, 88, 0.72);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 54%, #a46d12);
  color: #090604;
}

.platform-link:not([aria-disabled="true"]):focus-visible,
.platform-link:not([aria-disabled="true"]):hover,
.social-link:not([aria-disabled="true"]):focus-visible,
.social-link:not([aria-disabled="true"]):hover,
.button:not([aria-disabled="true"]):focus-visible,
.button:not([aria-disabled="true"]):hover {
  border-color: rgba(255, 47, 145, 0.7);
  outline: 0;
  transform: translateY(-1px);
}

.release-list {
  display: grid;
  gap: 10px;
}

.chapter-list {
  display: grid;
  gap: 10px;
}

.chapter-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-color: color-mix(in srgb, var(--release-accent) 28%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--release-accent) 13%, transparent), transparent 50%),
    var(--panel);
}

.chapter-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--release-accent);
}

.chapter-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.55rem, 7vw, 3rem);
  line-height: 0.96;
}

.chapter-card p:not(.kicker) {
  max-width: 48rem;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.52;
}

.chapter-card p:last-child {
  margin-bottom: 0;
}

.chapter-card--current {
  border-color: color-mix(in srgb, var(--release-accent) 54%, var(--line));
}

.release-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.release-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.release-card > div {
  padding: 0 16px 16px;
}

.release-card h3 {
  margin: 6px 0 8px;
  font-size: 1.38rem;
  line-height: 1.08;
}

.release-card p:not(.kicker) {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.48;
}

.release-card--catalog-latest {
  box-shadow: none;
}

.release-card--catalog-latest img {
  aspect-ratio: 21 / 9;
}

.release-card--catalog-latest .kicker::after {
  content: " · Último estreno";
}

.release-card--independent {
  border-color: rgba(117, 109, 104, 0.42);
  background:
    linear-gradient(135deg, rgba(117, 109, 104, 0.14), transparent 52%),
    var(--panel);
}

.release-card--independent .kicker {
  color: var(--smoke);
}

.mini-platforms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-link--small {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 0.78rem;
}

.release-video-link {
  margin-bottom: 8px;
}

.empty-state {
  padding: 22px;
  color: var(--muted);
}

.empty-state p {
  margin-bottom: 0;
}

.section--quiet {
  color: var(--soft);
}

.social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section--coming {
  padding-bottom: 38px;
}

.coming-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.coming-list li {
  min-height: 54px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 900;
}

.site-footer {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 30px 0 max(34px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer p:not(.eyebrow) {
  color: var(--text);
  font-size: clamp(1.8rem, 9vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.site-footer a,
.site-footer span {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (min-width: 720px) {
  .site-header {
    width: min(100% - 48px, 1180px);
  }

  .site-header nav a {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 70svh;
  }

  h1 {
    max-width: none;
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 82% 48%, color-mix(in srgb, var(--energy-secondary) 16%, transparent), transparent 22rem),
      radial-gradient(circle at 48% 50%, color-mix(in srgb, var(--energy-primary) 14%, transparent), transparent 26rem),
      linear-gradient(90deg, rgba(4, 4, 4, 0.82), rgba(4, 4, 4, 0.34) 46%, rgba(4, 4, 4, 0.08) 78%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16) 58%, #040404 100%);
  }

  .home-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-action {
    min-height: 70px;
    padding: 14px 16px;
  }

  .premiere {
    gap: 16px;
    padding: 16px;
  }

  .premiere__heading {
    padding: 26px 30px;
  }

  .listen-panel {
    padding: 20px;
  }

  .platform-grid,
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chapter-list {
    gap: 12px;
  }

  .release-card {
    grid-template-columns: 220px 1fr;
    align-items: stretch;
  }

  .release-card--catalog-latest {
    grid-template-columns: 160px 1fr;
  }

  .release-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .release-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 22px 20px 0;
  }

  .mini-platforms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coming-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .section {
    padding-top: 104px;
  }

  .section--release {
    padding-top: 42px;
  }

  .hero {
    min-height: 76svh;
  }

  .action-strip {
    padding-top: 20px;
  }

  .premiere__video {
    box-shadow: 0 34px 110px rgba(255, 47, 145, 0.16);
  }

  .section--split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
    align-items: start;
  }

  .section--split .section-heading {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
