/* ============================================================
   MOOCH PARTNER PORTAL — Main Stylesheet
   First-Names Films LLC
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --black:       #000000;
  --dark:        #363636;
  --blue:        #508BAE;
  --teal:        #68AAA2;
  --green:       #597356;
  --muted:       #A7A9AA;
  --light-fill:  #D6E8F4;
  --white:       #FFFFFF;

  --font-display: 'Roboto', Arial, sans-serif;
  --font-body:    Palatino, 'Palatino Linotype', 'Book Antiqua', Georgia, serif;

  --max-width:    1140px;
  --gutter:       24px;
  --hdr-height:   68px;
  --section-v:    96px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Visibility helpers ───────────────────────────────────── */
.hidden { display: none !important; }

/* ================================================================
   LOGIN GATE
   ================================================================ */
.login-gate {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--gutter);
}

.login-gate__inner {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.login-gate__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.login-gate__logo .mark { color: var(--blue); font-size: 11px; }

.login-gate__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 18vw, 100px);
  color: var(--white);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 10px;
}

.login-gate__film {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

.login-gate__divider {
  width: 36px;
  height: 2px;
  background: var(--blue);
  margin: 0 auto 48px;
}

.login-gate__btn {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.login-gate__btn:hover:not(:disabled) { background: #3d7095; }
.login-gate__btn:disabled { opacity: 0.6; cursor: wait; }

.login-gate__note {
  color: rgba(255,255,255,0.22);
  font-size: 11px;
  font-family: var(--font-display);
  line-height: 1.7;
  margin-top: 24px;
  letter-spacing: 0.03em;
}

/* ── Gate form (password + identify steps) ─────────────────────── */
.gate-form {
  text-align: left;
  margin-bottom: 12px;
}
.gate-form.hidden { display: none; }

.gate-welcome {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.gate-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 8px;
}
.gate-label:first-child { margin-top: 0; }

.gate-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.gate-input:focus {
  border-color: var(--blue);
  background: rgba(80,139,174,0.08);
}
.gate-input::placeholder { color: rgba(255,255,255,0.25); }

#input-password {
  letter-spacing: 0.4em;
  font-size: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.gate-error {
  min-height: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #e07b7b;
  margin: 10px 0 14px;
  text-align: center;
}
.gate-error:empty { min-height: 0; margin: 0 0 14px; }

.gate-note {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin: 18px 0 22px;
  letter-spacing: 0.03em;
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr-height);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 900;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  margin-right: 8px;
}
.logo__mark {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10px;
  line-height: 1;
  position: relative;
  top: 1px;
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--white);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--blue); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 24px;
}
.header__user-name {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-logout {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-logout:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--hdr-height) 0 0 0;
  background: rgba(0,0,0,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 850;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile .nav__link {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
}
.nav-mobile .nav__link:hover { color: var(--blue); }

/* ================================================================
   SECTION BASE
   ================================================================ */
.section {
  padding: var(--section-v) 0;
}
.section--dark   { background: var(--black); }
.section--medium { background: var(--dark); }

.section__header {
  margin-bottom: 56px;
}
.section__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.section__subhead {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}
.section__rule {
  width: 40px;
  height: 2px;
  background: var(--blue);
  margin-top: 16px;
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  background-image: url('../images/mooch-keyart-16x9.png');
  background-size: cover;
  background-position: center 20%;
  padding-top: var(--hdr-height);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 0;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 148px);
  color: var(--white);
  letter-spacing: 0.14em;
  line-height: 0.92;
  margin-bottom: 28px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}

.hero__tag {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__note {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}

.btn--hero {
  display: inline-block;
  padding: 16px 40px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn--hero:hover { background: #3d7095; }

/* ================================================================
   OVERVIEW
   ================================================================ */
#overview {
  background: var(--dark);
}

.overview__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.overview__body {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.75;
}
.overview__body p { margin-bottom: 20px; }
.overview__body a {
  color: var(--teal);
  border-bottom: 1px solid rgba(104,170,162,0.3);
  transition: border-color 0.2s;
}
.overview__body a:hover { border-color: var(--teal); }

.overview__body .meta-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
}
.overview__body .meta-label {
  color: var(--muted);
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 120px;
  padding-top: 2px;
}

/* Stats card */
.stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
}
.stats-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.stats-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
}
.stats-card__row:last-child { border-bottom: none; }
.stats-card__key {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.stats-card__val {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-align: right;
}
.stats-card__val--pass {
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

/* ================================================================
   RELEASE
   ================================================================ */
#release {
  background: var(--black);
}
.release__body {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 56px;
}
.release__body p { margin-bottom: 18px; }
.release__body p:last-child { margin-bottom: 0; }
.release__body strong { color: rgba(255,255,255,0.95); font-weight: 700; }

.release__platforms-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.platform-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(80,139,174,0.15);
  border: 1px solid rgba(80,139,174,0.35);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
}
.platform-badge::after {
  content: ' — COMING SOON';
  font-size: 9px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}

.release__pricing {
  margin-bottom: 64px;
}
.release__pricing-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.release__pricing-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 640px;
}
.pricing-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px 20px;
  text-align: center;
}
.pricing-item__type {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-item__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
}

.release__trailer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.trailer-wrapper {
  position: relative;
  max-width: 720px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-placeholder {
  text-align: center;
}
.trailer-placeholder__icon {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 14px;
  opacity: 0.6;
}
.trailer-placeholder__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.trailer-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================================
   THEATRICAL
   ================================================================ */
.theatrical__body {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 48px;
}

.cities-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 880px;
}

.city-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 22px 22px;
}

.city-item__date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.city-item--confirmed .city-item__date {
  color: var(--teal);
}
.city-item--confirmed {
  background: rgba(104,170,162,0.07);
  border-color: rgba(104,170,162,0.25);
}

.city-item__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.city-item:not(.city-item--confirmed) .city-item__name {
  color: rgba(255,255,255,0.65);
}

/* ================================================================
   SOUNDTRACK
   ================================================================ */
#soundtrack {
  background: var(--dark);
}

.soundtrack__intro {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 56px;
}
.soundtrack__intro p { margin-bottom: 16px; }

.tracklist-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.tracklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 820px;
  margin-bottom: 64px;
  border: 1px solid rgba(255,255,255,0.08);
}
.track {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.track:hover { background: rgba(255,255,255,0.03); }
/* Odd tracks get a right border to act as the column divider */
.track:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
/* Remove bottom border from last two tracks */
.track:nth-last-child(-n+2) { border-bottom: none; }
/* With 11 tracks the last one is alone in the final row — kill its orphan right border */
.track:last-child:nth-child(odd) { border-right: none; }

.track__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--muted);
  min-width: 20px;
  flex-shrink: 0;
}
.track__info { flex: 1; }
.track__title {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2px;
}
.track__artist {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.track--bonus .track__title {
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.artists-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.artists-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.artist-chip {
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

/* ================================================================
   MILESTONES
   ================================================================ */
#milestones {
  background: var(--black);
}

.timeline {
  position: relative;
  max-width: 760px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.milestone {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 0 0 44px 0;
}
.milestone:last-child { padding-bottom: 0; }

.milestone__dot {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.milestone__dot--complete {
  background: rgba(104,170,162,0.15);
  border: 2px solid var(--teal);
  color: var(--teal);
}
.milestone__dot--pending {
  background: rgba(167,169,170,0.1);
  border: 2px solid rgba(167,169,170,0.3);
  color: rgba(167,169,170,0.5);
}

.milestone__content { flex: 1; }
.milestone__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.milestone__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.milestone--pending .milestone__name { color: rgba(255,255,255,0.5); }
.milestone__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ================================================================
   DOCUMENTS
   ================================================================ */
#documents {
  background: var(--dark);
}

.documents__note {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.65;
}
.documents__note strong {
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.1);
}
.doc-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
}
.doc-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
}
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:hover td { background: rgba(255,255,255,0.02); }

.doc-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.doc-name__icon {
  color: var(--muted);
  opacity: 0.5;
  font-size: 14px;
  flex-shrink: 0;
}
.doc-name__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.doc-type {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.doc-date {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-download:hover { background: #3d7095; }
.btn-download:disabled {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  cursor: not-allowed;
}
.btn-download .icon { font-size: 13px; }

/* ================================================================
   CONTACT
   ================================================================ */
#contact {
  background: var(--black);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__body {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact__website {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.contact__website a {
  color: var(--teal);
  border-bottom: 1px solid rgba(104,170,162,0.3);
  transition: border-color 0.2s;
}
.contact__website a:hover { border-color: var(--teal); }

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px;
}
.contact-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-card__title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.contact-card__co {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.contact-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.contact-card__row:last-child { margin-bottom: 0; }
.contact-card__row a {
  color: var(--teal);
  border-bottom: 1px solid rgba(104,170,162,0.3);
  transition: border-color 0.2s;
}
.contact-card__row a:hover { border-color: var(--teal); }
.contact-card__row .icon {
  color: var(--muted);
  font-size: 14px;
  opacity: 0.6;
  flex-shrink: 0;
  width: 16px;
}

.confidential-note {
  background: rgba(80,139,174,0.08);
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__logo .mark { color: rgba(80,139,174,0.5); }
.footer__text {
  text-align: right;
}
.footer__copy {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer__conf {
  font-family: var(--font-display);
  font-size: 10px;
  color: rgba(255,255,255,0.13);
  letter-spacing: 0.04em;
}

/* ================================================================
   RESPONSIVE — DESKTOP NAV (tighten gap as items grew to 7)
   ================================================================ */
@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .nav__link { font-size: 10px; }
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 960px) {
  .overview__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-card { max-width: 500px; }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__cards { max-width: 500px; }

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

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

/* ================================================================
   RESPONSIVE — MOBILE (< 768px)
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --section-v: 64px;
    --gutter: 20px;
  }

  /* Header — hide nav, show hamburger */
  .nav,
  .header__actions { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero__content { padding: 40px 0; }
  .hero__title { font-size: clamp(64px, 20vw, 96px); }

  /* Tracklist — single column */
  .tracklist {
    grid-template-columns: 1fr;
  }
  .track:nth-child(odd) { border-right: none; }
  .track:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .track:last-child { border-bottom: none; }

  /* Pricing — stack */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  /* Cities — single column on mobile */
  .cities-grid {
    grid-template-columns: 1fr;
  }

  /* Doc table — hide type/date cols on mobile */
  .doc-table .col-type,
  .doc-table .col-date { display: none; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__text { text-align: center; }

  /* Login gate */
  .login-gate__title { font-size: clamp(60px, 22vw, 80px); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 72px; }
  .artists-grid { gap: 8px; }
  .artist-chip { font-size: 11px; padding: 8px 14px; }
  .platform-badges { gap: 8px; }
  .platform-badge { font-size: 10px; padding: 7px 14px; }
}
