/* ==========================================================================
   THE BIG BREAK — site stylesheet
   Palette pulled from the show logo: deep navy #0A0F1F, gold gradient,
   magenta edge accent. Display type = Montserrat (matches the wordmark's
   geometric bold sans). Body = Lato.
   ========================================================================== */

/* --------------------------------------------------------------------------
   SELF-HOSTED FONTS
   Fonts are served from this domain, not from Google. The Privacy Notice
   states that this site makes no third-party calls, and a Google Fonts link
   would send every visitor's IP address to Google. Drop the five .woff2 files
   into assets/fonts/ and these rules pick them up. Until then the system
   fallbacks in --display and --sans below carry the design.
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Montserrat Bold"), url("assets/fonts/montserrat-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local("Montserrat ExtraBold"), url("assets/fonts/montserrat-800.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Lato Regular"), url("assets/fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lato Bold"), url("assets/fonts/lato-700.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Lato Italic"), url("assets/fonts/lato-italic.woff2") format("woff2");
}

:root {
  --navy:      #0A0F1F;   /* exact background of the logo file */
  --navy-2:    #101728;
  --navy-3:    #1A2237;
  --gold:      #D4AF62;
  --gold-lt:   #F0DCAB;
  --gold-dk:   #A87F2A;
  --magenta:   #A0439B;
  --paper:     #F6F3EB;
  --paper-2:   #ECE7DB;
  --muted:     #7E879C;
  --muted-lt:  #A8B0C2;
  --ink:       #12172A;

  --line-dk:   rgba(240,220,171,0.14);
  --line-lt:   rgba(18,23,42,0.12);

  --display: "Montserrat", "Futura", "Century Gothic", sans-serif;
  --sans:    "Lato", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1160px;
  --gut: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 78px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--paper);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- type ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.kicker {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.sect-title {
  font-size: clamp(29px, 4.3vw, 47px);
  max-width: 19ch;
  text-transform: uppercase;
}

.lede {
  font-size: clamp(17.5px, 2.1vw, 20px);
  line-height: 1.62;
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted-lt);
}

.gold { color: var(--gold); }

.rule { height: 3px; background: var(--gold); border: 0; margin: 0 0 40px; width: 62px; }
.rule.on-light { background: var(--ink); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(240,220,171,0.45); }
.btn--ghost:hover { background: var(--paper); border-color: var(--paper); color: var(--navy); }

.btn--on-light { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--on-light:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; }

.btn--ghost-light { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost-light:hover { background: var(--ink); color: var(--paper); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10,15,31,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dk);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__mark { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__mark img { height: 34px; width: auto; }
.nav__mark span {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-lt);
  text-decoration: none;
  transition: color .18s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a.nav__cta { border: 1.5px solid var(--gold); color: var(--gold); padding: 10px 18px; }
.nav__links a.nav__cta:hover { background: var(--gold); color: var(--navy); }

.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  background: var(--navy);
  padding: clamp(64px, 9vw, 110px) 0 clamp(72px, 10vw, 124px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; left: 50%; top: -18%;
  width: min(1000px, 130%); height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(212,175,98,0.16), transparent 64%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; right: -12%; bottom: -30%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(160,67,155,0.14), transparent 66%);
  pointer-events: none;
}
.hero__in { position: relative; z-index: 2; }
.hero__h1 { margin: 0; padding: 0; font-size: 0; line-height: 0; }
.hero__logo { width: min(520px, 84%); margin: 0 auto 6px; }

.hero__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
  margin-top: 16px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--line-dk);
  border-radius: 999px;
  color: var(--muted-lt);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.social svg { flex: none; }
.social:hover { color: var(--gold-lt); border-color: var(--gold); transform: translateY(-1px); }
.hero__sub {
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--muted-lt);
  max-width: 44ch;
  margin: 26px auto 0;
  line-height: 1.55;
}
.hero__sub b { color: var(--gold-lt); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; justify-content: center; }

/* kept for when the teaser is ready: wrap an iframe in .hero__video > .embed */
.hero__video {
  margin-top: clamp(46px, 6vw, 74px);
  border: 1px solid var(--line-dk);
  background: var(--navy-2);
}
.embed { position: relative; width: 100%; padding-top: 56.25%; }
.embed iframe, .embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- gold strip ---------- */

.strip {
  background: linear-gradient(90deg, var(--gold-dk), var(--gold) 40%, var(--gold-lt) 70%, var(--gold));
  color: var(--navy);
  padding: 15px 0;
}
.strip__in {
  display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: center;
  font-family: var(--display);
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
}
.strip__in span { white-space: nowrap; }

/* ---------- sections ---------- */

.sect { padding: clamp(62px, 9vw, 112px) 0; }
.sect--light { background: var(--paper); color: var(--ink); }
.sect--light .lede { color: #3E4356; }
.sect--alt { background: var(--navy-2); }
.sect__head { margin-bottom: clamp(38px, 5vw, 64px); }

/* discipline cards */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.disc {
  background: var(--navy-2);
  border: 1px solid var(--line-dk);
  border-top: 3px solid var(--gold);
  padding: 36px 30px 40px;
}
.disc__n {
  font-family: var(--display); font-size: 12px; font-weight: 800; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 16px;
}
.disc h3 { font-size: 27px; margin-bottom: 12px; text-transform: uppercase; }
.disc p { margin: 0; color: var(--muted-lt); font-size: 16px; }

/* anchors */

.anchors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.anchor { background: var(--navy-2); border: 1px solid var(--line-dk); display: flex; flex-direction: column; }
.anchor__img { aspect-ratio: 5 / 4; overflow: hidden; background: var(--navy-3); }
.anchor__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  transition: filter .35s ease, transform .5s ease;
}
.anchor:hover .anchor__img img { filter: none; transform: scale(1.03); }
.anchor__body { padding: 24px 24px 30px; }
.anchor__role {
  font-family: var(--display);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.anchor h3 { font-size: 24px; margin-bottom: 10px; text-transform: uppercase; }
.anchor p { margin: 0; font-size: 15.5px; color: var(--muted-lt); line-height: 1.6; }
.anchor--tbd .anchor__img {
  display: grid; place-items: center;
  border-bottom: 1px dashed rgba(240,220,171,0.2);
}
.anchor--tbd .anchor__img div {
  font-family: var(--display); font-weight: 800; font-size: 17px; line-height: 1.4;
  color: var(--muted); text-align: center; padding: 20px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------- steps ---------- */

.steps { display: flex; flex-direction: column; gap: clamp(46px, 6vw, 80px); }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.step:nth-child(even) .step__shot { order: -1; }
.step__n {
  font-family: var(--display); font-size: 58px; font-weight: 800; line-height: 1;
  color: var(--gold-dk); margin-bottom: 12px;
}
.step h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; text-transform: uppercase; }
.step p { margin: 0 0 14px; color: #3E4356; font-size: 16.5px; }
.step p:last-child { margin-bottom: 0; }
.step ul { margin: 14px 0 0; padding-left: 20px; color: #3E4356; font-size: 16px; }
.step ul li { margin-bottom: 7px; }
.step ul li::marker { color: var(--gold-dk); }

.shot { position: relative; border: 1px solid var(--line-lt); background: #fff; box-shadow: 0 18px 44px rgba(10,15,31,0.13); }
.shot img { width: 100%; height: auto; }
.shot__ph {
  aspect-ratio: 9 / 16;
  max-height: 520px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 28px;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(18,23,42,0.03) 12px, rgba(18,23,42,0.03) 24px);
  border: 1px dashed rgba(18,23,42,0.26);
  color: #6B7286;
}
.shot__ph strong {
  display: block; font-family: var(--display); font-weight: 800; font-size: 17px;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em;
}
.shot__ph small {
  font-family: var(--display);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.shot__cap { font-size: 13px; color: #6B7286; padding: 12px 16px; border-top: 1px solid var(--line-lt); text-align: center; }

.audition-foot {
  margin-top: clamp(46px, 6vw, 72px);
  padding-top: 34px;
  border-top: 3px solid var(--ink);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
}
.audition-foot p { margin: 0; max-width: 54ch; font-size: 16px; color: #3E4356; }
.audition-foot a.tc { color: var(--ink); font-weight: 700; }

/* ---------- phases ---------- */

.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.phase {
  border: 1px solid var(--line-dk);
  background: var(--navy-2);
  padding: 32px 28px 34px;
  display: flex; flex-direction: column;
}
.phase__tag {
  font-family: var(--display);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.phase h3 { font-size: 25px; margin-bottom: 6px; text-transform: uppercase; }
.phase__when { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; letter-spacing: 0.04em; }
.phase p { color: var(--muted-lt); font-size: 15.5px; margin: 0 0 18px; }
.phase dl { margin: auto 0 0; padding-top: 18px; border-top: 1px solid var(--line-dk); }
.phase dt {
  font-family: var(--display);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-lt); margin-top: 15px;
}
.phase dt:first-child { margin-top: 0; }
.phase dd { margin: 4px 0 0; font-size: 14.5px; color: var(--muted-lt); line-height: 1.5; }

/* ---------- edge list ---------- */

.edges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.edge { background: var(--navy); border: 1px solid var(--line-dk); border-left: 3px solid var(--magenta); padding: 32px 30px 36px; }
.edge h3 { font-size: 21px; margin-bottom: 12px; text-transform: uppercase; }
.edge p { margin: 0; font-size: 16px; color: var(--muted-lt); }

/* ---------- partner ---------- */

.partner-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 68px); align-items: start; }
.pitch { margin: 0; padding: 0; list-style: none; }
.pitch li { padding: 22px 0; border-top: 1px solid var(--line-dk); }
.pitch li:last-child { border-bottom: 1px solid var(--line-dk); }
.pitch strong {
  display: block; font-family: var(--display); font-size: 19px; font-weight: 800;
  color: var(--gold-lt); margin-bottom: 6px; text-transform: uppercase; letter-spacing: -0.005em;
}
.pitch span { color: var(--muted-lt); font-size: 16px; }

.deckbox {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 40px);
  position: sticky;
  top: 96px;
  border-top: 4px solid var(--gold);
}
.deckbox h3 { font-size: 26px; margin-bottom: 12px; text-transform: uppercase; }
.deckbox > p { margin: 0 0 24px; font-size: 15.5px; color: #3E4356; }

.field { margin-bottom: 15px; }
.field label {
  display: block; font-family: var(--display); font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: #6B7286; margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18,23,42,0.22);
  padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold-dk); box-shadow: 0 0 0 3px rgba(212,175,98,0.28);
}
.consent {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 13.5px; color: #3E4356; line-height: 1.5; margin: 18px 0 22px;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold-dk); flex: none; }
.deckbox .btn { width: 100%; justify-content: center; }
.formnote { font-size: 12.5px; color: #6B7286; margin: 15px 0 0; text-align: center; }
.formmsg {
  display: none; margin-top: 18px; padding: 14px 16px;
  font-size: 15px; border-left: 3px solid var(--gold-dk); background: rgba(212,175,98,0.16);
}
.formmsg.is-shown { display: block; }
.formmsg.is-error { border-color: #B4442C; background: rgba(180,68,44,0.1); }

/* ---------- footer ---------- */

.foot { background: var(--navy-2); color: var(--muted-lt); padding: 60px 0 38px; border-top: 1px solid var(--line-dk); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }
.foot__logo { width: 172px; margin-bottom: 16px; }
.foot p { margin: 0 0 10px; font-size: 15px; }
.foot h4 {
  font-family: var(--display); font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot ul li { margin-bottom: 10px; }
.foot ul a { font-size: 15px; text-decoration: none; transition: color .18s ease; }
.foot ul a:hover { color: var(--gold); }
.foot__bar {
  border-top: 1px solid var(--line-dk); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.foot__bar a { color: var(--muted); text-decoration: none; }
.foot__bar a:hover { color: var(--gold); }

/* ---------- legal pages ---------- */

.legal { background: var(--paper); color: var(--ink); padding: clamp(52px, 8vw, 90px) 0 clamp(60px, 9vw, 104px); }
.legal__in { max-width: 760px; }
.legal h1 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 14px; text-transform: uppercase; }
.legal .updated {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #6B7286; font-weight: 800;
}
.legal h2 { font-size: 23px; margin: 44px 0 12px; text-transform: uppercase; }
.legal h3 { font-size: 18px; margin: 26px 0 8px; }
.legal p, .legal li { font-size: 16.5px; color: #3E4356; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold-dk); }

.placeholder-note {
  border-left: 3px solid var(--gold-dk);
  background: rgba(212,175,98,0.16);
  padding: 20px 22px;
  margin: 28px 0 38px;
  font-size: 15.5px;
}
.placeholder-note strong {
  display: block; margin-bottom: 6px; font-family: var(--display);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #8A6516; font-weight: 800;
}

/* ---------- reveal ---------- */

.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .grid-3, .anchors, .phases { grid-template-columns: 1fr 1fr; }
  .anchor--tbd { grid-column: span 2; }
  .anchor--tbd .anchor__img { aspect-ratio: 16 / 6; }
  .partner-grid { grid-template-columns: 1fr; }
  .deckbox { position: static; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__toggle { display: block; }
  .nav__mark span { display: none; }
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 24px 22px;
    border-bottom: 1px solid var(--line-dk);
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: 15px 0; border-bottom: 1px solid var(--line-dk); }
  .nav__links a.nav__cta { text-align: center; justify-content: center; margin-top: 16px; }

  .grid-3, .anchors, .phases, .edges { grid-template-columns: 1fr; }
  .anchor--tbd { grid-column: auto; }
  .anchor--tbd .anchor__img { aspect-ratio: 16 / 7; }
  .step { grid-template-columns: 1fr; gap: 26px; }
  .step:nth-child(even) .step__shot { order: 0; }
  .shot__ph { max-height: 420px; }
  .foot__grid { grid-template-columns: 1fr; gap: 30px; }
  .audition-foot { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* ==========================================================================
   SUB-PAGE HEADER — used by Terms, Privacy, FAQ and Apply
   ========================================================================== */

.pagehead {
  background: var(--navy);
  border-bottom: 1px solid var(--line-dk);
  padding: clamp(46px, 6vw, 76px) 0 clamp(38px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute; left: 50%; top: -60%;
  width: min(900px, 130%); height: 150%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(212,175,98,0.13), transparent 65%);
  pointer-events: none;
}
.pagehead__in { position: relative; z-index: 2; }
.pagehead h1 { font-size: clamp(31px, 5vw, 52px); text-transform: uppercase; margin-bottom: 16px; }
.pagehead .lede { margin-top: 16px; }
.pagehead .updated {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 800; margin: 22px 0 0;
}
.pagehead__meta {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  margin: 26px 0 0; padding-top: 22px;
  border-top: 1px solid var(--line-dk);
  font-size: 14px; color: var(--muted-lt);
}
.pagehead__meta b {
  font-family: var(--display); font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lt);
  display: block; margin-bottom: 2px;
}

/* ==========================================================================
   LEGAL PAGES — table of contents, tables, callouts
   ========================================================================== */

.legal__in.legal__in--wide { max-width: 900px; }

.legal__toc {
  border: 1px solid var(--line-lt);
  border-top: 3px solid var(--gold-dk);
  background: rgba(255,255,255,0.6);
  padding: 26px 28px 28px;
  margin: 0 0 48px;
}
.legal__toc h2 {
  font-size: 12px; letter-spacing: 0.18em; margin: 0 0 16px;
  color: #6B7286; text-transform: uppercase;
}
.legal__toc ol { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 34px; }
.legal__toc li { margin: 0 0 9px; font-size: 15px; break-inside: avoid; }
.legal__toc a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(18,23,42,0.18); }
.legal__toc a:hover { color: var(--gold-dk); border-color: var(--gold-dk); }

.legal h2 { scroll-margin-top: 90px; }
.legal h3 { scroll-margin-top: 90px; }
.legal h2 .cl {
  display: inline-block; min-width: 1.6em;
  color: var(--gold-dk);
}

.legal__note {
  border-left: 3px solid var(--magenta);
  background: rgba(160,67,155,0.08);
  padding: 18px 22px;
  margin: 26px 0;
  font-size: 15.5px;
}
.legal__note strong {
  display: block; margin-bottom: 5px; font-family: var(--display);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #7A2F76; font-weight: 800;
}

/* boxed statements lifted from the source documents */
.callout {
  border: 1px solid rgba(18,23,42,0.16);
  border-left: 3px solid var(--ink);
  background: rgba(18,23,42,0.035);
  padding: 22px 24px;
  margin: 28px 0;
}
.callout > strong:first-child {
  display: block; margin-bottom: 10px;
  font-family: var(--display); font-size: 15px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.005em;
}
.callout p { margin: 0 0 10px; font-size: 15.5px; }
.callout p:last-child { margin-bottom: 0; }
.callout--gold { border-left-color: var(--gold-dk); background: rgba(212,175,98,0.14); border-color: rgba(212,175,98,0.4); }
.callout--warn { border-left-color: #B4442C; background: rgba(180,68,44,0.07); border-color: rgba(180,68,44,0.25); }
.callout--warn > strong:first-child { color: #8E2F1C; }

/* Spam-trap field on the partnership form. People never see it; bots fill it. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Visually hidden, still read by screen readers & crawlers. Used for table
   captions on the legal pages and for the H1 text inside the hero lockup. */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* tables inside legal pages */
.tablewrap { overflow-x: auto; margin: 26px 0; -webkit-overflow-scrolling: touch; }
.legal table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 15.5px;
}
.legal table th,
.legal table td {
  border: 1px solid rgba(18,23,42,0.16);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: #3E4356;
}
.legal table th {
  background: rgba(18,23,42,0.055);
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.legal table tbody th {
  font-family: var(--sans);
  font-size: 15.5px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  background: rgba(18,23,42,0.02);
  white-space: nowrap;
}
.legal table.table--stack tbody th { white-space: normal; width: 34%; }

.backtotop {
  display: inline-block;
  margin-top: 46px;
  font-family: var(--display);
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dk); text-decoration: none;
  border-bottom: 1px solid var(--gold-dk);
}
.backtotop:hover { color: var(--ink); border-color: var(--ink); }

/* ==========================================================================
   FAQ — accordion
   ========================================================================== */

.faq { background: var(--paper); color: var(--ink); padding: clamp(48px, 7vw, 84px) 0 clamp(60px, 9vw, 104px); }
.faq__in { max-width: 860px; }

.faq__jump {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 48px;
}
.faq__jump a {
  font-family: var(--display);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border: 1px solid rgba(18,23,42,0.22);
  padding: 11px 16px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.faq__jump a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.faq-group { margin-bottom: 46px; scroll-margin-top: 90px; }
.faq-group > h2 {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dk); margin: 0 0 6px;
}
.faq-group > .rule { margin-bottom: 22px; background: var(--gold-dk); }

.faq-item { border-bottom: 1px solid rgba(18,23,42,0.16); scroll-margin-top: 90px; }
.faq-item:first-of-type { border-top: 1px solid rgba(18,23,42,0.16); }

.faq-q {
  display: flex; align-items: flex-start; gap: 16px;
  width: 100%;
  margin: 0;
  padding: 21px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--gold-dk); }
.faq-q:focus-visible { outline: 2px solid var(--gold-dk); outline-offset: 3px; }
.faq-q__n {
  flex: none;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--gold-dk);
  min-width: 26px;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.faq-q__t { flex: 1 1 auto; }
.faq-q__i {
  flex: none;
  position: relative;
  width: 15px; height: 15px;
  margin-top: 5px;
}
.faq-q__i::before,
.faq-q__i::after {
  content: "";
  position: absolute;
  background: var(--gold-dk);
  transition: transform .22s ease, opacity .22s ease;
}
.faq-q__i::before { left: 0; top: 6.5px; width: 15px; height: 2px; }
.faq-q__i::after  { top: 0; left: 6.5px; width: 2px; height: 15px; }
.faq-q[aria-expanded="true"] .faq-q__i::after { transform: scaleY(0); opacity: 0; }

.faq-a {
  display: none;
  padding: 0 0 26px 42px;
}
.faq-a.is-open { display: block; }
.faq-a p { margin: 0 0 13px; font-size: 16.5px; color: #3E4356; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 0 0 13px; padding-left: 20px; color: #3E4356; font-size: 16.5px; }
.faq-a li { margin-bottom: 7px; }
.faq-a li::marker { color: var(--gold-dk); }
.faq-a a { color: var(--gold-dk); }
.faq-a strong.disc-label {
  display: block;
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin: 18px 0 5px;
}
.faq-a .note {
  border-left: 3px solid var(--gold-dk);
  background: rgba(212,175,98,0.16);
  padding: 13px 16px;
  margin: 14px 0 0;
  font-size: 15.5px;
}

.faq__foot {
  margin-top: 54px; padding-top: 30px;
  border-top: 3px solid var(--ink);
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between;
}
.faq__foot p { margin: 0; max-width: 52ch; font-size: 16px; color: #3E4356; }

/* ==========================================================================
   APPLICATION FORM
   ========================================================================== */

.applybox {
  background: var(--paper);
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-top: 4px solid var(--gold);
}
.applybox h2 { font-size: clamp(23px, 3vw, 30px); text-transform: uppercase; margin-bottom: 12px; }
.applybox > p.intro { margin: 0 0 30px; font-size: 16px; color: #3E4356; }

.fieldset {
  border: 0; margin: 0 0 34px; padding: 0;
}
.fieldset legend {
  font-family: var(--display);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dk);
  padding: 0 0 14px;
  margin: 0;
  width: 100%;
  border-bottom: 1px solid rgba(18,23,42,0.16);
}
.fieldset > .field:first-of-type { margin-top: 20px; }

.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field .hint { display: block; margin-top: 6px; font-size: 13px; color: #6B7286; line-height: 1.45; }
.field .req { color: #B4442C; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #B4442C; box-shadow: 0 0 0 3px rgba(180,68,44,0.14); }
.field .err {
  display: none; margin-top: 6px; font-size: 13.5px; color: #8E2F1C; font-weight: 700;
}
.field .err.is-shown { display: block; }

.radioset { display: flex; flex-wrap: wrap; gap: 10px; }
.radioset label {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(18,23,42,0.22);
  padding: 12px 17px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15.5px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  transition: border-color .18s ease, background .18s ease;
}
.radioset label:hover { border-color: var(--gold-dk); }
.radioset input { width: 17px; height: 17px; accent-color: var(--gold-dk); margin: 0; flex: none; }
.radioset input:checked + span { font-weight: 700; }
.radioset label:has(input:checked) { border-color: var(--gold-dk); background: rgba(212,175,98,0.16); }

.agebar {
  border: 1px solid rgba(212,175,98,0.5);
  background: rgba(212,175,98,0.16);
  border-left: 3px solid var(--gold-dk);
  padding: 16px 20px;
  margin: 0 0 30px;
  font-size: 15.5px;
  color: #3E4356;
}
.agebar strong {
  display: block; font-family: var(--display); font-size: 15px; font-weight: 800;
  color: var(--ink); margin-bottom: 4px;
}

.applybox .btn { width: 100%; justify-content: center; margin-top: 6px; }

@media (max-width: 620px) {
  .legal__toc ol { columns: 1; }
  .field--half { grid-template-columns: 1fr; }
  .faq-a { padding-left: 0; }
  .faq__foot { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
    — banner + preferences panel
 
   ========================================================================== */

.sitebar-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--navy-2);
  border-top: 1px solid var(--line-dk);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
  padding: 22px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.sitebar-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility 0s linear 0s;
}

.sitebar-banner__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}
.sitebar-banner__text { flex: 1 1 420px; max-width: 640px; }
.sitebar-banner__text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-lt);
}
.sitebar-banner__text a { color: var(--gold); text-decoration: underline; }

.sitebar-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}
.sitebar-banner__actions .btn {
  padding: 13px 20px;
  font-size: 11.5px;
}

/* ---------- overlay + preferences panel (modal) ---------- */

.sitebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,15,31,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sitebar-overlay.is-visible { display: flex; }

.sitebar-panel {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 560px;
  max-height: 86vh;
  overflow-y: auto;
  border-top: 4px solid var(--gold);
  padding: clamp(26px, 4vw, 38px);
}
.sitebar-panel__head { margin-bottom: 22px; }
.sitebar-panel__head h2 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sitebar-panel__head p {
  margin: 0;
  font-size: 14.5px;
  color: #3E4356;
  line-height: 1.55;
}

.sitebar-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(18,23,42,0.14);
}
.sitebar-row:first-of-type { border-top: 1px solid rgba(18,23,42,0.14); margin-top: 4px; }

.sitebar-row__text h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.sitebar-row__text p {
  margin: 0;
  font-size: 14px;
  color: #6B7286;
  line-height: 1.5;
  max-width: 38ch;
}

.sitebar-row__always {
  flex: none;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  padding-top: 3px;
  white-space: nowrap;
}

/* toggle switch */
.sitebar-switch {
  flex: none;
  position: relative;
  width: 44px;
  height: 25px;
  margin-top: 2px;
}
.sitebar-switch input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.sitebar-switch__track {
  position: absolute; inset: 0;
  background: rgba(18,23,42,0.22);
  border-radius: 999px;
  transition: background .18s ease;
}
.sitebar-switch__track::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: transform .18s ease;
}
.sitebar-switch input:checked + .sitebar-switch__track { background: var(--gold-dk); }
.sitebar-switch input:checked + .sitebar-switch__track::before { transform: translateX(19px); }
.sitebar-switch input:focus-visible + .sitebar-switch__track { outline: 2px solid var(--gold-dk); outline-offset: 2px; }

.sitebar-panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(18,23,42,0.14);
}
.sitebar-panel__foot .btn { flex: 1 1 auto; justify-content: center; }

@media (max-width: 620px) {
  .sitebar-banner__actions { width: 100%; }
  .sitebar-banner__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* format page padding */
.format{
  padding: clamp(48px, 7vw, 84px) 0;
}

/* ------ solo mentor profile (image left, text right, centered) ----------*/

.mentor-solo {
  display: flex;
  flex-direction: row;
  gap: 44px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.mentor-solo__img {
  width: 420px;
  /*flex: 0 0 320px;*/
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--navy-3);
  border: 1px solid var(--line-dk);
}

.mentor-solo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.mentor-solo__body {
  flex: 1;
}

.mentor-solo__body h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.mentor-solo__body p {
  margin: 0;
  font-size: 17px;
  color: var(--muted-lt);
  line-height: 1.62;
}

@media (max-width: 760px) {
  .mentor-solo {
    flex-direction: column;
    text-align: center;
  }

  .mentor-solo__img {
    max-width: 100%;
    flex: none;
    margin: 0 auto;
  }
}


/* mukesh - bosco saperate page image */
.mentor-solo--mukesh,
.mentor-solo--bosco {
  max-width: none;
  margin: 0 calc(var(--gut) * -1);
}

.mentor-solo--mukesh .mentor-solo__img,
.mentor-solo--bosco .mentor-solo__img {
  width: 420px;
  flex: 0 0 420px;
}

.mentor-solo--mukesh .mentor-solo__img img,
.mentor-solo--bosco .mentor-solo__img img {
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  transition: filter .35s ease, transform .5s ease;
}
.mentor-solo--mukesh:hover .mentor-solo__img img,
.mentor-solo--bosco:hover .mentor-solo__img img {
  filter: none;
  transform: scale(1.03);
}

@media (max-width: 760px) {
  .mentor-solo--mukesh,
  .mentor-solo--bosco {
    margin: 0;
  }
  .mentor-solo--mukesh .mentor-solo__img,
  .mentor-solo--bosco .mentor-solo__img {
    width: 420px;
    max-width: 100%;
    flex: none;
  }
}

/* muskesh - bosco bottom instagram button section*/

.audition-foot--onlight {
  background: #FFFFFF;
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
  
}

.audition-foot--onlight .audition-foot__in {
  padding-top: 34px;
  border-top: 3px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.audition-foot--onlight p {
  margin: 0;
  max-width: 54ch;
  font-size: 16px;
  color: #3E4356;
}

.audition-foot--onlight a.tc {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 760px) {
  .audition-foot--onlight .audition-foot__in {
    flex-direction: column;
    align-items: flex-start;
  }
}

