/* =====================
   TIGERBEATZ — Styles
   ===================== */

@font-face {
  font-family: 'Road Rage';
  src: url('assets/Road_Rage.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --black-2: #000000;
  --black-3: #0a0a0a;
  --red: #e60023;
  --red-hot: #ff1f3d;
  --red-deep: #a80018;
  --white: #f5f5f5;
  --muted: #8a8a8a;

  --font-brand: 'Road Rage', 'Inter', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max: 1280px;
  --radius: 14px;
}

/* Brand name uses the custom Road Rage font — applied ONLY to the Tigerbeatz name */
.brand {
  font-family: var(--font-brand);
  letter-spacing: 0;
  text-transform: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.red { color: var(--red); }

/* Noise overlay */
.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  z-index: 100;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  letter-spacing: 0;
}

.nav__logo img {
  width: 36px; height: 36px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { width: 100%; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  margin-left: 8px;
}
.lang-switch button {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--muted);
  border-radius: 100px;
  transition: .2s;
}
.lang-switch button:hover { color: var(--white); }
.lang-switch button.active {
  background: var(--red);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: .3s;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 32px 60px;
  background: var(--black);
}

.hero__bg {
  position: absolute; inset: 0;
  background: var(--black);
  z-index: 0;
}

.stripe { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(230,0,35,.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,0,35,.7); }
  70% { box-shadow: 0 0 0 14px rgba(230,0,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,0,35,0); }
}

.hero__title {
  font-family: var(--font-brand);
  font-size: clamp(64px, 13vw, 200px);
  line-height: .95;
  letter-spacing: 0;
  margin-bottom: 28px;
  color: var(--red);
  text-transform: none;
  word-break: break-word;
}

.hero__sub {
  font-size: clamp(18px, 2vw, 24px);
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  transition: transform .2s, background .2s, color .2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
}
.btn--full { width: 100%; }

/* Marquee */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: -32px;
  right: -32px;
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  will-change: transform;
}
.marquee__group {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__head h2,
.about h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section__head p { color: var(--muted); font-size: 18px; }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
}

/* ===== CREDITS ===== */
.credits {
  background: var(--black);
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}
.credits > .section__head,
.credits > .credits__grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.credits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

/* ===== Work card (visual-only, no audio) ===== */
.work-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.work-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(230,0,35,0.15), transparent 60%),
    linear-gradient(135deg, #171717 0%, #050505 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card__cover::before {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px;
  pointer-events: none;
}
.work-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.work-card:hover .work-card__cover img { transform: scale(1.04); }

.work-card__cert {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Overlay */
.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
  pointer-events: none;
}
.work-card:hover .work-card__overlay,
.work-card.is-active .work-card__overlay {
  opacity: 1;
  pointer-events: auto;
}

.work-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  transform: translateY(8px);
  transition: transform .25s ease, background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.work-card:hover .work-card__btn,
.work-card.is-active .work-card__btn {
  transform: translateY(0);
}
.work-card__btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.work-card__btn svg { width: 20px; height: 20px; }

.work-card__meta {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
}

.work-card__artist {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.work-card__role {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  align-self: flex-start;
  line-height: 1.2;
}

/* Certification badges */
.cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cert::before {
  font-size: 13px;
  line-height: 1;
}

.cert--gold {
  background: rgba(255,196,0,0.12);
  color: #ffc400;
  border: 1px solid rgba(255,196,0,0.3);
}
.cert--gold::before { content: '🥇'; }

.cert--plat {
  background: rgba(180,180,180,0.1);
  color: #d4d4d4;
  border: 1px solid rgba(200,200,200,0.25);
}
.cert--plat::before { content: '💿'; }

.cert--2xplat {
  background: rgba(230,0,35,0.12);
  color: #ff4d67;
  border: 1px solid rgba(230,0,35,0.35);
}
.cert--2xplat::before { content: '💿'; }

.cert--album {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
}
.cert--album::before { content: '♫'; color: var(--red); }

/* Bio cert row */
.bio__certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  margin-top: 8px;
}

/* ===== SERVICES ===== */
.services {
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}
.services > .section__head,
.services > .services__list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.services__list {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.services__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left .25s ease, color .25s ease;
}
.services__item:hover { padding-left: 14px; }
.services__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.services__rule {
  height: 1px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}
.services__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 1px;
  color: var(--red);
  line-height: 1;
}

/* ===== ABOUT ===== */
.about {
  background: var(--black);
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 16px;
  max-width: 560px;
  line-height: 1.75;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}
.stat span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 6px;
}

.about__visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  filter: grayscale(100%);
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
  padding-bottom: 80px;
}
.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}
.contact p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.contact__form {
  text-align: left;
  margin-bottom: 60px;
}
.contact__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  width: 100%;
  padding: 16px 20px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--red);
}
.contact__form textarea {
  margin-bottom: 20px;
  resize: vertical;
  font-family: var(--font-body);
}
.select-wrap {
  position: relative;
  margin-bottom: 16px;
}
.contact__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;
  cursor: pointer;
}
.select-wrap::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.contact__select option {
  background: var(--black);
  color: var(--white);
}
.contact__select:invalid { color: var(--muted); }
.sent {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: var(--red);
  font-weight: 600;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-weight: 600;
  transition: .2s;
}
.socials a svg {
  width: 20px; height: 20px;
}
.socials a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 40px 32px 20px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  padding-bottom: 30px;
}
.footer__logo {
  font-family: var(--font-brand);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0;
}
.footer__giant {
  font-family: var(--font-brand);
  font-size: clamp(80px, 20vw, 260px);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  text-align: center;
  letter-spacing: 0;
  margin-bottom: -10px;
  user-select: none;
}
.footer__credit {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.55;
  margin-top: 24px;
  letter-spacing: 0.5px;
}
.footer__credit a {
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color .2s, border-color .2s;
}
.footer__credit a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .nav {
    padding: 14px 20px;
    background: var(--black);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__logo {
    font-size: 22px;
    position: relative;
    z-index: 101;
  }
  .nav__logo img { width: 32px; height: 32px; }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    padding-top: 68px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
    z-index: 99;
  }
  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links a {
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 16px;
  }
  .lang-switch {
    margin: 20px 24px;
    align-self: flex-start;
  }
  body.nav-open { overflow: hidden; }
  .nav__toggle { display: flex; position: relative; z-index: 101; }

  .hero { padding: 100px 20px 40px; }
  .hero__title {
    font-size: min(13vw, 72px);
    white-space: nowrap;
    word-break: normal;
  }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .section { padding: 80px 20px; }
  .credits { padding-left: 20px; padding-right: 20px; }
  .credits__grid { grid-template-columns: 1fr; }
  .about { padding-left: 20px; padding-right: 20px; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__visual { max-width: 360px; margin: 0 auto; }

  .contact__form .row { grid-template-columns: 1fr; }

  .footer { padding: 30px 20px 0; }
  .footer__top {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .stats { gap: 24px; }
  .stat strong { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero__tag { font-size: 11px; padding: 6px 12px; }
  .marquee__track { font-size: 18px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
