:root {
  --bg-primary: #050a12;
  --bg-secondary: #081c2a;
  --accent: #4ca9c6;
  --accent-soft: rgba(76, 169, 198, 0.18);
  --text-primary: #d8dde3;
  --text-muted: rgba(216, 221, 227, 0.72);
  --text-subtle: rgba(216, 221, 227, 0.54);
  --panel-bg: rgba(8, 28, 42, 0.46);
  --panel-border: rgba(216, 221, 227, 0.12);
  --shadow-strong: 0 32px 120px rgba(2, 10, 22, 0.64);
  --shadow-soft: 0 20px 48px rgba(0, 0, 0, 0.24);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --content-width: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(76, 169, 198, 0.16), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(76, 169, 198, 0.1), transparent 22%),
    linear-gradient(180deg, #071019 0%, var(--bg-primary) 28%, var(--bg-secondary) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  opacity: 0.28;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.94);
  color: var(--text-primary);
  z-index: 100;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: 100%;
  overflow: clip;
}

.site-header,
.section-grid,
.final-cta {
  width: var(--content-width);
  margin: 0 auto;
}

.hero-visual-standalone {
  width: var(--content-width);
  margin: 0.95rem auto 0;
}

.site-header {
  position: sticky;
  top: 0.55rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 221, 227, 0.14);
  background: rgba(6, 17, 29, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand-block {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.9rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(76, 169, 198, 0.14), 0 12px 32px rgba(76, 169, 198, 0.18);
}

.brand-name,
.brand-tagline,
.eyebrow,
.hero-subtitle,
.hero-text,
.section-subtitle,
.platform-card__meta,
.track-meta,
.track-empty__text {
  margin: 0;
}

.brand-name {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-tagline {
  margin-top: 0.2rem;
  color: var(--text-subtle);
  font-size: 0.78rem;
}

.site-nav {
  display: none;
}

.site-nav a,
.site-nav-mobile a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-mobile a:hover,
.site-nav-mobile a:focus-visible,
.nav-link.is-active {
  color: var(--text-primary);
}

.nav-link.is-active {
  text-shadow: 0 0 22px rgba(76, 169, 198, 0.3);
}

.nav-toggle {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-grid;
  place-items: center;
  gap: 0.28rem;
  padding: 0;
  border: 1px solid rgba(216, 221, 227, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  top: 4.8rem;
  left: 1rem;
  right: 1rem;
  width: auto;
  margin: 0;
  padding: 0.6rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(216, 221, 227, 0.12);
  background: rgba(8, 23, 36, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  z-index: 55;
}

.site-nav-mobile {
  display: grid;
  gap: 0.28rem;
}

.site-nav-mobile a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 0.82rem;
}

.site-nav-mobile a:hover,
.site-nav-mobile a:focus-visible,
.site-nav-mobile .nav-link.is-active {
  background: rgba(255, 255, 255, 0.05);
}

.section-grid {
  padding: 3.8rem 0;
}

#hero,
#historia,
#tracklist,
#plataformas,
#artista {
  scroll-margin-top: 7rem;
}

.hero {
  display: block;
  padding-top: 1.8rem;
}

.hero.section-grid {
  padding: 2rem 0 2.4rem;
}

.hero-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-width: 0;
  justify-items: center;
  text-align: center;
  width: 100%;
  max-width: 46rem;
}

.hero-copy-card {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 221, 227, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, rgba(6, 18, 30, 0.42) 100%),
    radial-gradient(circle at 14% 12%, rgba(76, 169, 198, 0.2), transparent 52%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 56px rgba(2, 10, 22, 0.44);
}

.hero-copy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.12));
}

.hero-copy-card > * {
  position: relative;
  z-index: 1;
}

.hero-copy-card h1 {
  margin-top: 0.35rem;
  padding-inline: 0.22rem;
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: 1.03;
  max-width: 10ch;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(3.5rem, 14vw, 7rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(2.3rem, 7vw, 4rem);
}

.hero-subtitle,
.section-subtitle {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 5vw, 2rem);
  color: rgba(216, 221, 227, 0.88);
}

.hero-text,
.prose-block p,
.final-cta__content p:last-child {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-text {
  margin-top: 0.8rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, rgba(100, 193, 220, 0.98), rgba(56, 144, 171, 0.96));
  color: #031018;
  box-shadow: 0 12px 32px rgba(76, 169, 198, 0.26);
}

.button-secondary {
  border-color: rgba(216, 221, 227, 0.16);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0.35rem 0 0;
  list-style: none;
}

.hero-highlights li,
.track-meta,
.platform-card__meta {
  color: var(--text-subtle);
  font-size: 0.9rem;
}

.hero-highlights li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: stretch;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.orb-a {
  inset: 0 auto auto 0;
  width: 10rem;
  height: 10rem;
  background: rgba(76, 169, 198, 0.26);
}

.orb-b {
  inset: auto 0 1.5rem auto;
  width: 12rem;
  height: 12rem;
  background: rgba(76, 169, 198, 0.16);
}

.album-card,
.glass-card,
.section-panel,
.track-item,
.platform-card {
  position: relative;
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero-brand-image {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(216, 221, 227, 0.18);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(145deg, rgba(7, 21, 32, 0.96), rgba(12, 36, 55, 0.72));
}

.hero-brand-image img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 16.5rem;
  max-height: 28rem;
  object-fit: cover;
  object-position: right center;
}

.album-card {
  width: min(100%, 17rem);
  margin: 0;
  justify-self: center;
  padding: 0.65rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 16, 28, 0.88), rgba(7, 18, 31, 0.9)),
    radial-gradient(circle at 50% 14%, rgba(76, 169, 198, 0.28), transparent 56%);
}

.album-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 0.45rem);
  transition: opacity 420ms ease, transform 420ms ease;
}

.album-card::before,
.section-panel::before,
.platform-card::before,
.track-item::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.14), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.album-card__info {
  position: absolute;
  inset: 0.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.38rem;
  text-align: center;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 0.45rem);
  background:
    linear-gradient(180deg, rgba(5, 12, 20, 0.94), rgba(7, 18, 31, 0.9)),
    radial-gradient(circle at center, rgba(76, 169, 198, 0.17), transparent 58%);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.album-kicker {
  margin: 0 0 0.2rem;
  color: rgba(216, 221, 227, 0.8);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.album-card__info h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
}

.album-card__info p {
  margin: 0;
}

.album-card__info p:nth-child(3) {
  color: rgba(216, 221, 227, 0.88);
}

.album-info-note {
  margin-top: 0.35rem;
  color: rgba(216, 221, 227, 0.68);
  font-size: 0.82rem;
}

.album-card__hint {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  margin: 0;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(216, 221, 227, 0.82);
  border: 1px solid rgba(216, 221, 227, 0.16);
  background: rgba(6, 16, 27, 0.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 320ms ease;
}

.album-card.is-info-visible .album-card__image,
.album-card:hover .album-card__image,
.album-card:focus-within .album-card__image {
  opacity: 0.2;
  transform: scale(1.03);
}

.album-card.is-info-visible .album-card__info,
.album-card:hover .album-card__info,
.album-card:focus-within .album-card__info {
  opacity: 1;
  transform: none;
}

.album-card.is-info-visible .album-card__hint,
.album-card:hover .album-card__hint,
.album-card:focus-within .album-card__hint {
  opacity: 0.1;
}

.section-panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(4, 12, 22, 0.3));
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  margin-top: 0.55rem;
}

.story,
.tracklist,
.platforms,
.artist,
.final-cta {
  display: grid;
  gap: 2rem;
}

.story-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.story-copy {
  max-width: 66ch;
}

.story-copy-card {
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 2.3vw, 1.4rem);
  border-radius: 1.15rem;
  border: 1px solid color-mix(in srgb, var(--color-line) 76%, transparent);
  background:
    radial-gradient(
      circle at 100% 0%,
      color-mix(in srgb, var(--color-accent-strong) 15%, transparent),
      transparent 56%
    ),
    color-mix(in srgb, var(--color-bg-soft) 92%, transparent);
  box-shadow:
    0 24px 52px -40px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.story-visual {
  margin: 0;
  width: min(100%, 24rem);
  justify-self: center;
  padding: 0.95rem;
  border-radius: var(--radius-md);
}

.story-visual img {
  width: 100%;
  border-radius: calc(var(--radius-md) - 0.45rem);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.story-visual figcaption {
  margin-top: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.6;
  font-size: 0.9rem;
}

.prose-block p + p {
  margin-top: 1rem;
}

.tracklist-list,
.platforms-grid,
.artist-layout {
  display: grid;
  gap: 1rem;
}

.track-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(11, 28, 42, 0.7), rgba(8, 18, 28, 0.5));
}

.track-item__index {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(76, 169, 198, 0.08);
  border: 1px solid rgba(76, 169, 198, 0.18);
  font-weight: 700;
}

.track-item h3,
.platform-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.track-title-group {
  display: grid;
  gap: 0.25rem;
}

.track-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.track-empty {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(216, 221, 227, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.track-empty__text {
  margin-top: 0.45rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.platforms-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.15rem;
}

.platform-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.platform-card:hover,
.platform-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(76, 169, 198, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 26px 56px rgba(2, 10, 22, 0.56), 0 0 30px rgba(76, 169, 198, 0.2);
}

.platform-card:hover::after,
.platform-card:focus-within::after {
  opacity: 1;
}

.platform-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.platform-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(76, 169, 198, 0.1);
  border: 1px solid rgba(76, 169, 198, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 20px rgba(2, 10, 22, 0.32);
  transition: transform 320ms ease, background-color 320ms ease, color 320ms ease, box-shadow 320ms ease;
}

.platform-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.platform-card:hover .platform-icon,
.platform-card:focus-within .platform-icon {
  transform: scale(1.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(76, 169, 198, 0.26);
  color: #eaf6fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 26px rgba(76, 169, 198, 0.28);
}

.platform-card h3 {
  position: relative;
  z-index: 1;
}

.platform-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(216, 221, 227, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(76, 169, 198, 0.45);
  background: rgba(76, 169, 198, 0.14);
  box-shadow: 0 14px 30px rgba(76, 169, 198, 0.22);
}

.artist-layout {
  align-items: start;
}

.artist-card,
.artist-quote {
  padding: 1.45rem;
  border-radius: var(--radius-md);
}

.artist-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  line-height: 1.3;
  color: rgba(216, 221, 227, 0.94);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 0.4rem;
}

.social-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.social-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.16), transparent 34%, transparent 70%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.social-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.social-chip:hover,
.social-chip:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(76, 169, 198, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 26px 56px rgba(2, 10, 22, 0.56), 0 0 30px rgba(76, 169, 198, 0.24);
}

.social-chip:hover::after,
.social-chip:focus-visible::after {
  opacity: 1;
}

.social-chip__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(76, 169, 198, 0.1);
  border: 1px solid rgba(76, 169, 198, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 20px rgba(2, 10, 22, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 320ms ease, background-color 320ms ease, color 320ms ease, box-shadow 320ms ease;
}

.social-chip__icon svg {
  position: relative;
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.social-chip:hover .social-chip__icon,
.social-chip:focus-visible .social-chip__icon {
  transform: scale(1.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(76, 169, 198, 0.26);
  color: #eaf6fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 26px rgba(76, 169, 198, 0.28);
}

.social-chip__label {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.social-grid .reveal:nth-child(2) {
  transition-delay: 60ms;
}

.social-grid .reveal:nth-child(3) {
  transition-delay: 120ms;
}

.social-grid .reveal:nth-child(4) {
  transition-delay: 180ms;
}

.social-grid .reveal:nth-child(5) {
  transition-delay: 240ms;
}

.social-grid .reveal:nth-child(6) {
  transition-delay: 300ms;
}

.site-footer {
  width: var(--content-width);
  margin: 2rem auto 2.4rem;
}

.footer-inner {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 1.6rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  object-fit: cover;
}

.footer-brand__name {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.footer-copyright {
  margin: 0.25rem 0 0;
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.footer-share-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, color 220ms ease;
}

.footer-share-link:hover,
.footer-share-link:focus-visible {
  color: #eaf6fb;
  border-bottom-color: rgba(76, 169, 198, 0.5);
}

.footer-groups {
  display: grid;
  gap: 1.4rem;
}

.footer-group__title {
  margin: 0 0 0.7rem;
  color: var(--text-subtle);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-icon-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  color: var(--accent);
  border: 1px solid rgba(76, 169, 198, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(76, 169, 198, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 20px rgba(2, 10, 22, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 280ms ease, background-color 280ms ease, box-shadow 280ms ease, color 280ms ease, border-color 280ms ease;
}

.footer-icon-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer-icon-link:hover,
.footer-icon-link:focus-visible {
  transform: translateY(-3px) scale(1.08);
  border-color: rgba(76, 169, 198, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(76, 169, 198, 0.26);
  color: #eaf6fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 30px rgba(76, 169, 198, 0.28);
}

.final-cta {
  margin-bottom: 4rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.final-cta__content {
  max-width: 46rem;
}

.final-cta__content p:last-child {
  margin-top: 1rem;
}

.final-cta__actions {
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(10px);
  transition:
    opacity 760ms ease,
    transform 760ms ease,
    filter 760ms ease;
}

.reveal-blur {
  transform: translate3d(0, 16px, 0) scale(0.985);
}

.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.glow-pulse {
  animation: glowPulse 5.8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 18px 70px rgba(1, 11, 22, 0.56), 0 0 0 1px rgba(76, 169, 198, 0.16);
  }

  50% {
    box-shadow: 0 20px 84px rgba(1, 11, 22, 0.6), 0 0 28px rgba(76, 169, 198, 0.18);
  }
}

.button:focus-visible,
.site-nav a:focus-visible,
.platform-link:focus-visible,
.nav-toggle:focus-visible,
.site-nav-mobile a:focus-visible,
.social-chip:focus-visible,
.footer-icon-link:focus-visible {
  outline: 2px solid rgba(76, 169, 198, 0.9);
  outline-offset: 3px;
}

@media (min-width: 48rem) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .site-nav-desktop {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
  }

  .nav-toggle,
  .mobile-nav-panel {
    display: none;
  }

  .artist-layout,
  .final-cta {
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  }

  .story {
    gap: clamp(1.6rem, 2.4vw, 2.2rem);
  }

  .story-layout {
    grid-template-columns: minmax(0, 58fr) minmax(18rem, 42fr);
    gap: clamp(1rem, 2vw, 1.45rem);
    align-items: start;
  }

  .hero-brand-image img {
    min-height: 20rem;
    object-position: right center;
  }

  .album-card {
    width: min(100%, 18.6rem);
  }

  .hero-copy-card {
    padding: 1.75rem 1.55rem 1.55rem;
  }

  .hero-actions,
  .final-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: center;
  }

  .footer-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }

  .footer-icons {
    gap: 1rem;
  }
}

@media (min-width: 64rem) {
  .section-grid {
    padding: 5.5rem 0;
  }

  .hero.section-grid {
    padding: 2.2rem 0 2.8rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 62fr) minmax(20rem, 38fr);
    gap: 1.5rem;
    justify-items: stretch;
  }

  .hero-copy-card {
    margin-inline: 0;
  }

  .story-layout {
    grid-template-columns: minmax(0, 61fr) minmax(20rem, 39fr);
    gap: clamp(1.2rem, 2vw, 1.75rem);
  }

  .story-copy-card {
    align-self: stretch;
  }

  .story-visual {
    width: 100%;
    max-width: 24.2rem;
    justify-self: end;
    align-self: start;
  }

  .hero-brand-image img {
    min-height: 22rem;
    max-height: 30rem;
    object-fit: cover;
    object-position: right center;
  }

  .album-card {
    width: 100%;
    max-width: 23.5rem;
    margin-top: 0;
    justify-self: stretch;
    align-self: center;
  }

  .section-panel,
  .final-cta {
    padding: 2rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .social-chip {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.4rem 1rem;
  }
}

@media (max-width: 47.99rem) {
  .site-header {
    top: 0.3rem;
  }

  .brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .brand-tagline {
    font-size: 0.72rem;
  }

  .story-layout {
    gap: 1.05rem;
  }

  .story-copy-card {
    padding: 0.95rem;
    border-radius: 1rem;
  }

  .story-visual {
    width: min(100%, 18.5rem);
  }

  .hero {
    padding-top: 1rem;
  }

  .hero.section-grid {
    padding: 1.8rem 0 2.3rem;
  }

  .hero-copy {
    gap: 0.82rem;
    max-width: 100%;
  }

  .hero-copy-card {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .hero-copy-card h1 {
    font-size: clamp(2.55rem, 12.2vw, 4rem);
    line-height: 1.04;
  }

  .album-card {
    width: min(100%, 16rem);
  }

  .hero-visual-standalone {
    margin-top: 0.65rem;
  }

  .hero-brand-image img {
    object-position: right center;
  }
}

@media (max-width: 410px) {
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .social-chip {
    justify-content: center;
    padding: 0.7rem;
    min-height: 44px;
  }

  .social-chip__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .social-chip:hover,
  .social-chip:focus-visible,
  .social-chip:hover .social-chip__icon,
  .social-chip:focus-visible .social-chip__icon,
  .footer-icon-link:hover,
  .footer-icon-link:focus-visible,
  .platform-card:hover,
  .platform-card:focus-within,
  .platform-card:hover .platform-icon,
  .platform-card:focus-within .platform-icon,
  .platform-link:hover,
  .platform-link:focus-visible {
    transform: none;
  }
}