/* ============================================================
   BLAZE — Main Stylesheet
   Style: Luxury Minimal Dark Gold
   ============================================================ */

/* 1. Reset & Base
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* 2. CSS Custom Properties
   ============================================================ */
:root {
  --bg-primary:   #141414;
  --bg-secondary: #0E0E0E;
  --bg-card:      #1C1C1C;
  --bg-card-hover:#222222;

  --pink-light:   #F5C6D0;
  --pink-mid:     #E8A0B4;
  --pink-dark:    #C47A94;
  --silver-light: #D4D4D8;
  --silver-mid:   #A8A8B0;
  --accent-light: #F5C6D0;
  --accent-mid:   #E8A0B4;
  --accent-dark:  #C47A94;
  --accent-gradient: linear-gradient(135deg, #E8A0B4 0%, #F5C6D0 100%);
  --accent-gradient-bg: linear-gradient(135deg, #E8A0B4 0%, #C47A94 100%);
  --accent-border: 1px solid rgba(232, 160, 180, 0.35);
  /* Legacy aliases for quick migration */
  --gold-light:   var(--pink-light);
  --gold-mid:     var(--pink-mid);
  --gold-dark:    var(--pink-dark);
  --gold-gradient: var(--accent-gradient);
  --gold-gradient-bg: var(--accent-gradient-bg);
  --gold-border:  var(--accent-border);

  --white:      #FFFFFF;
  --grey-light: #E8E8E8;
  --grey-mid:   #A0A0A0;
  --grey-dark:  #555555;
  --divider:    rgba(255,255,255,0.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --max-width: 1280px;
  --section-pad: 120px;
  --nav-h: 80px;
}

/* 3. Typography
   ============================================================ */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 4. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark { background: var(--bg-secondary); }

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
}

.section__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1rem;
  color: var(--grey-mid);
  max-width: 560px;
}

.section__sub--center { margin: 0 auto; }

/* Gold line separator */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  opacity: 0.4;
}

/* 5. Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(14, 14, 14, 0.97);
  box-shadow: 0 1px 0 rgba(232, 160, 180, 0.2);
  backdrop-filter: blur(12px);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.4);
}

.nav.scrolled .nav__logo-img {
  height: 60px;
}

/* Footer logo */
.footer__logo-wrap {
  display: inline-block;
}

.footer__logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.4);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-mid);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--grey-dark);
}

.lang-btn {
  color: var(--grey-dark);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  transition: color var(--transition);
  padding: 2px 0;
}

.lang-btn:hover,
.lang-btn.active { color: var(--gold-mid); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-secondary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}

.nav__mobile.open { display: flex; }

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav__mobile ul a {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav__mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.5rem;
  color: var(--grey-mid);
  background: none;
  border: none;
  cursor: pointer;
}

.nav__mobile .lang-switcher { margin-top: 8px; }

/* 6. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient-bg);
  color: #0A0A0A;
  font-weight: 600;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #F5D78E 0%, #C9A84C 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 160, 180, 0.25);
}

.btn--outline {
  border: 1px solid rgba(232, 160, 180, 0.5);
  color: var(--gold-light);
}

.btn--outline:hover {
  border-color: var(--gold-mid);
  background: rgba(232, 160, 180, 0.06);
}

.btn--dark {
  background: #0A0A0A;
  color: var(--white);
  border: 1px solid var(--divider);
}

.btn--dark:hover { border-color: var(--grey-dark); }

/* 7. Hero Section
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #141414 40%, #1A1208 100%);
  z-index: 0;
}

/* Animated cinematic background (placeholder until real video is added) */
.hero__video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,160,180,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,160,180,0.04) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero__video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,14,14,0.92) 0%,
    rgba(14,14,14,0.7) 50%,
    rgba(14,14,14,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: var(--nav-h);
}

.hero__text { max-width: 600px; }

.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Stats */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
}

.hero__stat {
  padding: 28px 0;
  border-top: var(--gold-border);
}

.hero__stat:last-child { border-bottom: var(--gold-border); }

.hero__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.hero__stat-number .stat-highlight {
  font-size: 4.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  line-height: 1.4;
}

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold-mid));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
}

/* 8. About Brief
   ============================================================ */
.about-brief__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-brief__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about-brief__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-brief__img:hover img { transform: scale(1.03); }

.about-brief__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-brief__body p {
  font-size: 1.05rem;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-brief__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.about-brief__link:hover { gap: 14px; }

/* 9. Talent Preview
   ============================================================ */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.talent-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}

.talent-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.talent-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #222222);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.talent-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  transition: opacity var(--transition);
}

.talent-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}

.talent-card:hover .talent-card__hover { opacity: 1; }
.talent-card:hover .talent-card__img { transform: scale(1.05); }

.talent-card__fans {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.talent-card__handle {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
}

.talent-card__tiktok-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(232,160,180,0.4);
  padding: 8px 20px;
  transition: all var(--transition);
}

.talent-card__tiktok-link:hover {
  background: rgba(232,160,180,0.1);
  border-color: var(--gold-mid);
}

.talent-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 1;
}

.talent-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.talent-card__followers {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.talent-card__tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.talent-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.talent-card:hover .talent-card__avatar { transform: scale(1.05); }

.talent-preview__footer { text-align: center; }

/* 10. Awards Section
   ============================================================ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}

.award-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.award-card:hover { background: var(--bg-card-hover); border-color: rgba(232,160,180,0.15); }
.award-card:hover::before { opacity: 1; }

.award-card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.award-card__rank {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.award-card__rank-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.award-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
}

.award-card__meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
  text-transform: uppercase;
}

.award-card__year {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

/* Logo scroll strip */
.logos-strip {
  border-top: var(--gold-border);
  padding-top: 48px;
  overflow: hidden;
  position: relative;
}

.logos-strip::before,
.logos-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
}
.logos-strip::before { left: 0; background: linear-gradient(to right, var(--bg-secondary), transparent); }
.logos-strip::after { right: 0; background: linear-gradient(to left, var(--bg-secondary), transparent); }

.logos-strip__label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 32px;
}

.logos-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}

.logos-track:hover { animation-play-state: paused; }

.logo-item {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey-dark);
  white-space: nowrap;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-item:hover { color: var(--gold-mid); }

/* 11. Join CTA
   ============================================================ */
.join-cta {
  background: var(--gold-gradient-bg);
  padding: var(--section-pad) 0;
}

.join-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.join-cta .eyebrow { color: rgba(10,10,10,0.6); }

.join-cta__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #0A0A0A;
  margin: 12px 0 16px;
}

.join-cta__sub {
  font-size: 1rem;
  color: rgba(10,10,10,0.65);
  margin-bottom: 48px;
}

.join-cta__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 48px;
}

.join-cta__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(10,10,10,0.75);
}

.join-cta__benefit::before {
  content: '◆';
  font-size: 0.5rem;
  color: rgba(10,10,10,0.5);
}

.join-cta .btn--dark {
  border-color: rgba(10,10,10,0.2);
  background: #0A0A0A;
  color: var(--gold-light);
  font-size: 0.82rem;
  padding: 16px 48px;
}

.join-cta .btn--dark:hover {
  background: #1a1a1a;
}

/* 12. Footer
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: var(--gold-border);
  padding: 64px 0 32px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--grey-dark);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border: var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--grey-mid);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 20px;
}

.footer__nav li {
  margin-bottom: 12px;
}

.footer__nav a {
  font-size: 0.88rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer__contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.footer__contact-value {
  font-size: 0.88rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

a .footer__contact-value:hover { color: var(--gold-mid); }

.footer__bottom {
  border-top: var(--divider) solid 1px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--grey-dark);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.72rem;
  color: var(--grey-dark);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--grey-mid); }

/* 13. Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Page header (inner pages) */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(232,160,180,0.06) 0%, transparent 70%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

/* 14. Talent Page
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 48px;
}

.filter-tab {
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color var(--transition);
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.filter-tab:hover { color: var(--white); }

.filter-tab.active {
  color: var(--white);
  border-bottom-color: var(--gold-mid);
}

.talent-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

/* 15. Join Page (Form)
   ============================================================ */
.join-page { background: var(--bg-primary); }

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 48px;
}

.form-card {
  background: var(--bg-card);
  border: var(--gold-border);
  padding: 56px;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.step-indicator__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.step-indicator__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 60%;
  right: -60%;
  height: 1px;
  background: var(--divider);
}

.step-indicator__item.active:not(:last-child)::after,
.step-indicator__item.done:not(:last-child)::after {
  background: var(--gold-mid);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--grey-dark);
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-indicator__item.active .step-dot {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  background: rgba(232,160,180,0.08);
}

.step-indicator__item.done .step-dot {
  border-color: var(--gold-mid);
  background: var(--gold-gradient-bg);
  color: #0A0A0A;
}

.step-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
  white-space: nowrap;
}

.step-indicator__item.active .step-label { color: var(--gold-mid); }

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; }

.form-step__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-step__sub {
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-bottom: 36px;
}

/* Form Fields */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  color: var(--white);
  padding: 14px 16px;
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(232,160,180,0.5); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-dark); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option { background: var(--bg-secondary); }

.form-textarea { resize: vertical; min-height: 100px; }

/* Radio / Checkbox Options */
.radio-group,
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option,
.check-option {
  position: relative;
}

.radio-option input,
.check-option input { position: absolute; opacity: 0; }

.radio-label,
.check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--divider);
  font-size: 0.82rem;
  color: var(--grey-mid);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.radio-option input:checked + .radio-label,
.check-option input:checked + .check-label {
  border-color: var(--gold-mid);
  color: var(--gold-light);
  background: rgba(232,160,180,0.06);
}

.radio-label:hover,
.check-label:hover { border-color: var(--grey-dark); color: var(--white); }

/* Form navigation */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}

.form-actions--end { justify-content: flex-end; }

/* Conditional fields */
.conditional-field { display: none; }
.conditional-field.visible { display: block; }

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success.visible { display: block; }

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success__sub {
  color: var(--grey-mid);
  margin-bottom: 32px;
}

/* Photo Upload */
.photo-upload {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.photo-preview {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.photo-thumb {
  width: 100px;
  height: 100px;
  position: relative;
  border: 1px solid var(--divider);
  overflow: hidden;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-thumb__remove {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,0.7);
  color: var(--grey-mid);
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.photo-thumb__remove:hover { color: #ff5050; }

/* Date Multi-Select Tags */
.date-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.date-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  padding: 6px 12px;
  font-size: 0.82rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-tag__remove {
  cursor: pointer;
  color: var(--grey-mid);
  font-size: 0.72rem;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  transition: color var(--transition);
}

.date-tag__remove:hover { color: #ff5050; }

/* Small button variant */
.btn--small {
  padding: 10px 18px;
  font-size: 0.72rem;
}

/* Step indicator skipped state */
.step-indicator__item.skipped .step-dot {
  border-color: var(--gold-mid);
  background: var(--gold-gradient-bg);
  color: #0A0A0A;
}

.step-indicator__item.skipped:not(:last-child)::after {
  background: var(--gold-mid);
}

/* 16. About Page
   ============================================================ */
.about-story__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.1rem;
  color: var(--grey-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.about-stat {
  background: var(--bg-card);
  padding: 40px 28px;
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  line-height: 1.4;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.about-value {
  background: var(--bg-card);
  padding: 40px 28px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.about-value:hover { border-top-color: var(--gold-mid); }

.about-value__icon { font-size: 1.5rem; margin-bottom: 16px; }

.about-value__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.about-value__text {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.facility-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  overflow: hidden;
}

.facility-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover img { transform: scale(1.04); }

.facility-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

.facility-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 17. Contact Page
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 36px;
}

.contact-info__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 8px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--white);
  transition: color var(--transition);
}

.contact-info__value a:hover { color: var(--gold-mid); }

.contact-form { background: var(--bg-card); padding: 48px; border: var(--gold-border); }

.contact-form .form-group { margin-bottom: 20px; }

/* 18. Animations (Keyframes)
   ============================================================ */
@keyframes heroGlow {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 19. Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .talent-full-grid { grid-template-columns: repeat(4, 1fr); }
  .talent-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-values { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; --nav-h: 70px; }
  .container { padding: 0 28px; }
  .nav__container { padding: 0 20px; }

  .nav__links,
  .nav__right .lang-switcher,
  .nav__right .btn { display: none; }

  .nav__hamburger { display: flex; }
  .nav__logo-img { height: 40px; }
  .nav.scrolled .nav__logo-img { height: 36px; }

  .hero { min-height: 100vh; height: auto; padding: 120px 0 60px; }
  .hero__content { flex-direction: column; gap: 40px; padding-top: 0; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero__subtitle { font-size: 0.92rem; }
  .hero__stats { flex-direction: row; justify-content: space-around; width: 100%; }
  .hero__stat { padding: 16px 12px; }
  .hero__stat-number { font-size: 2rem; }
  .stat-highlight { font-size: 3rem !important; }
  .hero__buttons { justify-content: center; }
  .hero__scroll { display: none; }

  .page-hero { height: auto; min-height: 280px; padding: 120px 0 48px; }

  .about-brief__inner { grid-template-columns: 1fr; gap: 40px; }
  .talent-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .award-card__rank-num { font-size: 3rem; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px; }
  .form-wrapper { padding: 40px 0; }

  .section__title { font-size: clamp(1.8rem, 5vw, 2.8rem); }

  .join-cta__title { font-size: clamp(1.8rem, 5vw, 3rem); }
  .join-cta__benefits { gap: 8px 16px; }
  .join-cta__benefit { font-size: 0.75rem; }
}

@media (max-width: 600px) {
  :root { --section-pad: 48px; --nav-h: 64px; }
  .container { padding: 0 16px; }
  .nav__container { padding: 0 16px; }
  .nav__logo-img { height: 36px; }

  .hero { padding: 100px 0 48px; }
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero__subtitle { font-size: 0.85rem; max-width: 100%; }
  .hero__eyebrow { font-size: 0.55rem; letter-spacing: 0.15em; }
  .hero__buttons { flex-direction: column; width: 100%; }
  .hero__buttons .btn { width: 100%; text-align: center; }
  .hero__stats { flex-direction: column; gap: 0; }
  .hero__stat { padding: 16px 0; border-top: var(--accent-border); }
  .hero__stat-number { font-size: 1.8rem; }
  .stat-highlight { font-size: 2.5rem !important; }
  .hero__stat-label { font-size: 0.62rem; }

  .page-hero { min-height: 220px; padding: 100px 0 36px; }
  .page-hero .section__title { font-size: clamp(1.6rem, 7vw, 2.5rem); }

  .eyebrow { font-size: 0.6rem; }
  .section__title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .section__sub { font-size: 0.88rem; }

  .talent-grid { grid-template-columns: repeat(2, 1fr); }
  .talent-full-grid { grid-template-columns: repeat(2, 1fr); }
  .talent-card__name { font-size: 0.9rem; }
  .talent-card__followers { font-size: 1rem; }
  .talent-card__tag { font-size: 0.55rem; }
  .talent-card__info { padding: 16px 12px; }

  .awards-grid { grid-template-columns: 1fr; }
  .award-card { padding: 28px 24px; }
  .award-card__rank { font-size: 0.9rem; }
  .award-card__rank-num { font-size: 2.8rem; }

  .about-stats { grid-template-columns: 1fr !important; }
  .about-values { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .join-cta { padding: 60px 0; }
  .join-cta__title { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .join-cta__benefits { flex-direction: column; align-items: flex-start; }
  .join-cta__benefit { font-size: 0.72rem; }
  .join-cta .btn--dark { width: 100%; }

  .form-card { padding: 20px; }
  .form-wrapper { padding: 20px 0; }
  .step-label { display: none; }
  .step-dot { width: 28px; height: 28px; font-size: 0.7rem; }
  .form-step__title { font-size: 1.2rem; }
  .radio-label, .check-label { font-size: 0.78rem; padding: 8px 14px; }
  .btn { padding: 12px 24px; font-size: 0.72rem; }

  .logos-track { gap: 32px; }
  .logo-item { font-size: 0.9rem; }

  .about-brief__body p { font-size: 0.92rem; }
  .about-story p { font-size: 0.95rem; }

  .filter-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .filter-tab { padding: 10px 16px; font-size: 0.68rem; white-space: nowrap; }

  /* Contact page mobile overrides */
  .contact-inner,
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
