:root {
  --canvas: #0a0a0d;
  --surface-1: #15151a;
  --surface-2: #1e1e25;
  --hairline: #28282f;
  --ink: #f5f3ee;
  --ink-muted: #9a9488;
  --blue: #3d5bff;
  --blue-deep: #1c2a8f;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max-width: 720px;
  --edge: 1.25rem;

  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus {
  left: var(--edge);
  top: var(--edge);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(0.9rem + env(safe-area-inset-top, 0px)) var(--edge) 0.9rem;
  background: rgba(10, 10, 13, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn--small { padding: 0.65rem 1.1rem; font-size: 0.72rem; }
.btn--large { padding: 1.05rem 1.75rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--blue);
  color: var(--ink);
}
.btn--primary:hover { background: var(--blue-deep); }

.btn--secondary {
  background: var(--surface-2);
  color: var(--ink);
}
.btn--secondary:hover { background: var(--surface-1); }

.btn[disabled] { opacity: 0.6; cursor: default; transform: none; }

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,13,0.1) 0%, rgba(10,10,13,0.6) 58%, rgba(10,10,13,0.97) 92%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem var(--edge) calc(3rem + env(safe-area-inset-bottom, 0px));
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 10vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(61, 91, 255, 0.14);
  border: 1px solid rgba(61, 91, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.status-pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(61, 91, 255, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 91, 255, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 91, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 91, 255, 0); }
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.countdown__unit {
  min-width: 3.6rem;
  padding: 0.6rem 0.25rem;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 0.85rem;
}
.countdown__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

.hero__sub {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--ghost:hover { border-color: var(--blue); background: rgba(61, 91, 255, 0.1); }

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.btn .icon { margin-right: 0.5em; }

/* Sections */

.section {
  padding: 4.5rem var(--edge);
  border-top: 1px solid var(--hairline);
}

.section__inner--narrow {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

.lede { font-size: 1.15rem; color: var(--ink); }

.section p { color: var(--ink-muted); }
.section .lede { color: var(--ink); }

.quote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 2px solid var(--blue);
  background: var(--surface-1);
  border-radius: 0 14px 14px 0;
}
.quote p {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.meta-line { font-size: 0.85rem; color: var(--ink-muted); }

/* Capture form */

.section--capture { background: var(--surface-1); }

.capture-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  color: var(--ink);
}
.field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 91, 255, 0.2);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0.25rem 0;
}
.consent input { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--blue); }

.form-status { min-height: 1.2rem; font-size: 0.9rem; margin: 0; }
.form-status[data-state="success"] { color: var(--blue); }
.form-status[data-state="error"] { color: #ff6b5e; }

/* Turnê / link arrow */

.link-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}
.link-arrow:hover { text-decoration: underline; }

/* Imprensa */

.press-card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.75rem;
  margin-top: 2rem;
}

.press-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 1.75rem 0 0.75rem;
}
.press-card .press-subtitle:first-child { margin-top: 0; }
.collaborators { color: var(--ink); margin: 0; }
.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* História / bios */

.historia-photo {
  margin: 0 0 2.5rem;
  border-radius: 20px;
  overflow: hidden;
}
.historia-photo img { width: 100%; height: auto; }

.bios { display: grid; gap: 1.75rem; margin-top: 2.5rem; }
.bio h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.bio p { margin: 0; }

@media (min-width: 640px) {
  .bios { grid-template-columns: 1fr 1fr; }
}

/* Media-kit note */

.kit-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
}
.kit-note .status-pill__dot { background: var(--ink-muted); animation: none; }

/* Tracks */

.tracks-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.track-card {
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.track-card.is-playing { border-color: var(--blue); }

.track-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
}
.track-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track-card__cover--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--ink-muted);
}
.track-card__cover--placeholder .track-card__ph-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--hairline);
  line-height: 1;
}
.track-card__cover--placeholder .track-card__ph-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.track-play {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.track-play:hover { background: var(--blue-deep); }
.track-play:active { transform: scale(0.94); }
.track-play .icon { width: 1.1rem; height: 1.1rem; }
.track-play .icon-pause { display: none; }
.track-card.is-playing .track-play .icon-play { display: none; }
.track-card.is-playing .track-play .icon-pause { display: block; }

.track-card__body { padding: 1.5rem; }
.track-card__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  margin: 0 0 0.4rem;
}
.track-card__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.tag-explicit {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}
.track-card__blurb { margin: 0 0 0.75rem; }
.track-card__collab {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}

.track-lyrics { margin-top: 1.1rem; }
.track-lyrics summary {
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  list-style: none;
}
.track-lyrics summary::-webkit-details-marker { display: none; }
.track-lyrics summary::after { content: " +"; }
.track-lyrics[open] summary::after { content: " \2212"; }
.lyrics-text {
  white-space: pre-line;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0.9rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--hairline);
}

@media (min-width: 640px) {
  .tracks-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .tracks-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Teaser de vídeo */

.video-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.phone-frame {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface-2);
}
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-caption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
  max-width: 32rem;
}

/* Galeria de imprensa */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}
.gallery-grid a { display: block; }

.en-toggle { margin-top: 1.75rem; }
.en-toggle summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  list-style: none;
}
.en-toggle summary::-webkit-details-marker { display: none; }
.en-toggle summary::after { content: " +"; }
.en-toggle[open] summary::after { content: " \2212"; }
.en-toggle .lede { margin-top: 1rem; font-size: 1rem; }

/* Mini player */

.player {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.9rem;
  background: rgba(21, 21, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  max-width: 640px;
  margin: 0 auto;
}
.player[hidden] { display: none; }

.player__cover {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-2);
  flex-shrink: 0;
}
.player__info { flex: 1; min-width: 0; }
.player__track {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__bar {
  height: 4px;
  border-radius: 999px;
  background: var(--hairline);
  cursor: pointer;
  overflow: hidden;
}
.player__progress {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 999px;
}
.player__btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}
.player__btn:hover { background: var(--hairline); }
.player__btn--play { background: var(--blue); }
.player__btn--play:hover { background: var(--blue-deep); }
.player__btn .icon { width: 1rem; height: 1rem; }
.player__btn .icon-pause { display: none; }
.player.is-playing .player__btn--play .icon-play { display: none; }
.player.is-playing .player__btn--play .icon-pause { display: block; }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

body.player-active { padding-bottom: 5.25rem; }

/* Footer */

.site-footer {
  padding: 3rem var(--edge) calc(2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--hairline);
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.wordmark--footer { font-size: 0.95rem; }
.social-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-links a { text-decoration: none; color: var(--ink-muted); }
.social-links a:hover { color: var(--ink); }
.footer-note { font-size: 0.75rem; color: var(--ink-muted); margin: 0; }

@media (min-width: 860px) {
  .hero__content { padding-bottom: 4.5rem; }
  .section { padding: 6rem var(--edge); }
}
