/* ---------- tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-alt: #131313;
  --red: #d40000;
  --red-deep: #7a0000;
  --text: #ededed;
  --muted: #8f8f8f;
  --hairline: #262626;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

/* ---------- language toggle ---------- */
html[data-lang="pt"] .en { display: none; }
html[data-lang="en"] .pt { display: none; }

.lang-toggle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--muted);
  padding: 5px 10px;
  margin-left: 24px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover,
.lang-toggle:focus-visible { border-color: var(--red); color: var(--red); }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

/* ---------- signature drip motif ---------- */
.drip-top {
  height: 10px;
  width: 100%;
  background: var(--red);
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 40%, 95% 100%, 90% 40%, 85% 85%, 80% 40%,
    75% 65%, 70% 40%, 65% 100%, 60% 40%, 55% 55%, 50% 40%, 45% 90%,
    40% 40%, 35% 75%, 30% 40%, 25% 100%, 20% 40%, 15% 65%, 10% 40%,
    5% 100%, 0% 40%
  );
}

.drip-divider {
  height: 12px;
  width: 72px;
  background: var(--red);
  margin: 18px 0 36px;
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 35%, 88% 100%, 76% 35%, 64% 80%, 52% 35%,
    40% 100%, 28% 35%, 16% 70%, 4% 35%, 0% 55%
  );
}

/* ---------- topnav ---------- */
.topnav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 64px) 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.topnav__mark { color: var(--muted); font-weight: 600; }

.topnav__links a {
  text-decoration: none;
  color: var(--muted);
  margin-left: 24px;
  transition: color 0.2s ease;
}
.topnav__links a:hover,
.topnav__links a:focus-visible { color: var(--red); }

@media (max-width: 560px) {
  .topnav { flex-direction: column; align-items: flex-start; gap: 10px; }
  .topnav__links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 18px; }
  .topnav__links a { margin-left: 0; margin-right: 0; }
  .lang-toggle { margin-left: 0; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,0,0,0.10), transparent 60%),
    var(--bg);
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero__logo {
  width: min(560px, 78vw);
  filter: drop-shadow(0 0 40px rgba(212,0,0,0.25));
}

.hero__tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 28px 0 40px;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid var(--hairline);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn--primary:hover,
.btn--primary:focus-visible { background: var(--red-deep); border-color: var(--red-deep); }

.btn--ghost:hover,
.btn--ghost:focus-visible { border-color: var(--red); color: var(--red); }

.btn--disabled {
  opacity: 0.55;
  pointer-events: none;
}

.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.hero__scroll span {
  width: 1px;
  height: 34px;
  background: var(--hairline);
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: drip-fall 2.2s ease-in-out infinite;
}
@keyframes drip-fall {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- sections ---------- */
.section { padding: 96px 20px; }
.section--alt { background: var(--bg-alt); }

.section__inner {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--red);
  margin: 0;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.02em;
  margin: 10px 0 0;
  text-transform: uppercase;
}

.section__lead {
  color: #cfcfcf;
  font-size: 16px;
  max-width: 62ch;
}

/* ---------- player ---------- */
.player-frame {
  border: 1px solid var(--hairline);
  padding: 4px;
  background: var(--bg);
}

/* ---------- members ---------- */
.members {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.member {
  background: var(--bg);
  padding: 20px 22px;
}

.member__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.member__role {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 560px) {
  .members { grid-template-columns: 1fr; }
}

/* ---------- discography ---------- */
.disc-grid {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

.disc-card {
  border-left: 3px solid var(--red);
  background: var(--bg);
  padding: 24px 26px;
}

.disc-card__status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}
.disc-card__status--live { color: var(--red); }
.disc-card__status--next { color: var(--muted); }

.disc-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.disc-card__desc { color: #cfcfcf; margin: 0; font-size: 15px; }

.disc-card__link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--red);
  text-decoration: none;
}
.disc-card__link:hover,
.disc-card__link:focus-visible { color: var(--text); }

/* ---------- store ---------- */
.store-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.store-cta__note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- footer ---------- */
.footer {
  background: #000;
  border-top: 1px solid var(--hairline);
  padding: 72px 20px 40px;
}

.footer__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer__logo {
  width: min(220px, 60vw);
  margin: 0 auto 28px;
  opacity: 0.9;
}

.footer__contact {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--text);
  margin: 0 0 10px;
}

.footer__detail {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.footer__links a {
  text-decoration: none;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 14px;
}
.footer__links a:hover,
.footer__links a:focus-visible { color: var(--text); }

.footer__copy {
  margin-top: 36px;
  color: #555;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
