/* ============================================================
   SOCIAL GLADIATORS — LANDING PAGE
   ============================================================ */

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 1, 13, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 2px solid #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 64px;
  padding-block: 0.6rem;
}

.nav__logo {
  flex: none;
  line-height: 0;
}

.nav__logo img {
  width: clamp(150px, 22vw, 230px);
  height: auto;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
  text-decoration: none;
  position: relative;
  padding-block: 0.25em;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--magenta);
  transition: right 0.25s var(--ease-out);
}

.nav__links a:hover {
  color: #fff;
}
.nav__links a:hover::after {
  right: 0;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  padding: 0.6rem;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--paper);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem var(--gut) 1.4rem;
  border-top: 1px solid var(--smoke-2);
  background: #08021a;
}

.nav__drawer a:not(.btn) {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--smoke);
}

.nav__drawer .btn { margin-top: 0.9rem; }

@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

@media (min-width: 901px) {
  .nav__drawer { display: none !important; }
}

/* ------------------------------------------------------------
   TICKER
   ------------------------------------------------------------ */
.ticker {
  overflow: hidden;
  background: var(--gold);
  border-block: 3px solid #000;
  padding: 0.4rem 0;
}

.ticker__track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker__track span {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a0d00;
  white-space: nowrap;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.75rem, 4vw, 3.25rem) clamp(2.5rem, 6vw, 4.5rem);
  background: radial-gradient(120% 90% at 70% 0%, #29004d 0%, #0a0119 55%, #05010d 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 92%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.hero__title {
  margin: 0;
  line-height: 0;
}

.hero__title img {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(255, 30, 142, 0.4));
  animation: hero-slam 0.9s var(--ease-slam) both;
}

@keyframes hero-slam {
  from { opacity: 0; transform: scale(1.25) rotate(-2deg); filter: blur(14px); }
}

.hero__lede {
  font-size: clamp(1.02rem, 0.95rem + 0.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--paper-dim);
  max-width: 46ch;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__facts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 3vw, 2.2rem);
  margin-top: 0.15rem;
  padding-top: 1rem;
  border-top: 2px solid var(--smoke-2);
  width: 100%;
}

.hero__facts b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1;
  color: var(--gold);
}

.hero__facts span {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.hero__art {
  position: relative;
}

.hero__zvi {
  width: 100%;
  height: auto;
  border: 4px solid #000;
  border-radius: 8px;
  box-shadow:
    0 0 0 3px var(--gold),
    0 30px 70px rgba(0, 0, 0, 0.7),
    0 0 90px rgba(255, 30, 142, 0.25);
  animation: hero-rise 1s var(--ease-slam) 0.2s both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(40px); }
}

.hero__nameplate {
  position: absolute;
  left: -0.4rem;
  right: 1.2rem;
  bottom: 1.4rem;
  background: var(--magenta);
  border: 3px solid #000;
  padding: 0.5rem 1.1rem;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.55);
  transform: skewX(-8deg);
}

.hero__nameplate b,
.hero__nameplate span {
  display: block;
  transform: skewX(8deg);
}

.hero__nameplate b {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  line-height: 1;
  color: #fff;
}

.hero__nameplate span {
  max-width: 30ch;
  margin-top: 0.15em;
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 0.76rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 880px) {
  /* Stack the hero as one column and interleave the portrait between the
     logo and the pitch. `display: contents` lets the copy block's children
     become direct flex items so they can be ordered around the portrait —
     otherwise the photo lands before anyone knows whose face it is. */
  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0.9rem, 3vw, 1.25rem);
  }
  .hero__copy { display: contents; }
  .hero__inner > .chip { order: 1; }
  .hero__title { order: 2; }
  .hero__art { order: 3; max-width: 340px; width: 100%; }
  .hero__lede { order: 4; text-align: center; }
  .hero__cta { order: 5; justify-content: center; }
  .hero__micro { order: 6; margin-top: 0; }
  .hero__wink { order: 7; text-align: left; }
  .hero__facts { order: 8; justify-content: center; text-align: center; }
}

/* ------------------------------------------------------------
   VSL SECTION
   ------------------------------------------------------------ */
.section--vsl {
  background: linear-gradient(180deg, #05010d, #10032b 50%, #05010d);
  border-block: 3px solid #000;
}

.vsl-holder {
  max-width: 940px;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   SPLIT (copy + art)
   ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}

.split--flip .split__art { order: -1; }

.split__art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__art { order: 0; }
  .split__art { max-width: 480px; margin-inline: auto; }
}

.pullquote {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 5px solid var(--magenta);
  padding-left: 1rem;
  text-wrap: balance;
}

/* ------------------------------------------------------------
   OPPONENTS
   ------------------------------------------------------------ */
.opponents {
  margin-top: clamp(3rem, 8vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.opponents__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0.8rem, 3vw, 2rem);
  align-items: stretch;
  width: 100%;
}

.opponent {
  padding: clamp(1.1rem, 3vw, 2rem);
  background: linear-gradient(160deg, #22062f, #0d0219);
  border: 3px solid #000;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 59, 48, 0.3), 0 16px 40px rgba(0, 0, 0, 0.5);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.opponent h3 {
  color: #fff;
  text-shadow: 0 0 30px var(--red);
}

.opponent p {
  color: var(--paper-dim);
  font-size: 1rem;
}

.opponent__counter {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 2px solid var(--smoke-2);
  font-size: 0.92rem !important;
  color: var(--paper-faint) !important;
}

.opponents__vs {
  align-self: center;
  font-family: var(--f-mega);
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--gold);
}

.opponents__note {
  max-width: 56ch;
  color: var(--paper-dim);
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .opponents__grid { grid-template-columns: 1fr; }
  .opponents__vs { padding-block: 0.3rem; }
}

/* ------------------------------------------------------------
   METHOD / BEATS
   ------------------------------------------------------------ */
.section--method {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(0, 229, 255, 0.09), transparent 65%),
    #05010d;
  border-block: 3px solid #000;
}

.beats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0.8rem, 3vw, 2rem);
  align-items: stretch;
}

.beat {
  position: relative;
  padding: clamp(1.2rem, 3.2vw, 2.2rem);
  border: 3px solid #000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.beat--plan {
  background: linear-gradient(165deg, #052b33, #010f14);
  box-shadow: inset 0 0 0 2px rgba(0, 229, 255, 0.35), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.beat--act {
  background: linear-gradient(165deg, #33230a, #140d01);
  box-shadow: inset 0 0 0 2px rgba(255, 199, 10, 0.35), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.beat__tag {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.beat__name {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0;
}

.beat--plan .beat__name { color: var(--cyan); text-shadow: 0 0 40px rgba(0, 229, 255, 0.5); }
.beat--act .beat__name { color: var(--gold); text-shadow: 0 0 40px rgba(255, 199, 10, 0.5); }

.beat__when {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.beat p { color: var(--paper-dim); }

.beat__foot {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 2px solid var(--smoke-2);
  font-size: 0.9rem !important;
  color: var(--paper-faint) !important;
  font-style: italic;
}

.beat__demo { display: flex; flex-direction: column; gap: 0.5rem; }

.demo {
  font-style: italic;
  font-size: 0.95rem !important;
  padding: 0.45em 0.8em;
  border-left: 4px solid;
}

.demo--bad { border-color: var(--red); color: #ffb3af !important; text-decoration: line-through; opacity: 0.8; }
.demo--good { border-color: var(--lime); color: #d8ffcf !important; }

.beats__swing {
  align-self: center;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  color: var(--magenta-hot);
  animation: swing 1.6s ease-in-out infinite;
}

@media (max-width: 820px) {
  .beats { grid-template-columns: 1fr; }
  .beats__swing { transform: rotate(90deg); padding-block: 0.4rem; }
}

.protocol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.protocol li {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  border: 2px solid var(--smoke-2);
  border-radius: 999px;
  color: var(--paper-dim);
}

.protocol li.is-count { color: var(--cyan); border-color: var(--cyan); }

.protocol li.is-send {
  color: #10021f;
  background: var(--gold);
  border-color: #000;
  box-shadow: 0 0 24px rgba(255, 199, 10, 0.55);
}

.method__rule {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: rgba(255, 30, 142, 0.08);
  border: 2px dashed var(--magenta);
  border-radius: 6px;
  text-align: center;
  color: var(--paper-dim);
  text-wrap: pretty;
}

.method__rule span {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.4rem;
}

.method__rule em { color: var(--gold); font-style: italic; }

/* Week list */
.week {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.week__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  width: 100%;
  counter-reset: none;
}

.week__list li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--smoke-2);
  border-top: 4px solid var(--cyan);
  border-radius: 4px;
}

.week__list li:nth-child(2) { border-top-color: var(--cyan); }
.week__list li:nth-child(3) { border-top-color: var(--gold); }
.week__list li:nth-child(4) { border-top-color: var(--magenta); }
.week__list li:nth-child(5) { border-top-color: var(--lime); }

.week__list b {
  font-family: var(--f-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #fff;
}

.week__list span {
  font-size: 0.92rem;
  color: var(--paper-faint);
  line-height: 1.4;
}

.week__ceiling {
  max-width: 62ch;
  text-align: center;
  color: var(--paper-dim);
  padding: 1rem 1.2rem;
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 199, 10, 0.07);
}

.week__ceiling b { color: var(--gold); }
.week__ceiling em { color: #fff; font-style: normal; font-weight: 700; }

/* ------------------------------------------------------------
   SEASON CARDS
   ------------------------------------------------------------ */
.section--season {
  background: linear-gradient(180deg, #05010d, #14022f 40%, #05010d);
  border-block: 3px solid #000;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(0.8rem, 2.2vw, 1.4rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: 3px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(170deg, #1d0740, #0a0219);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    0 18px 44px rgba(0, 0, 0, 0.6);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  cursor: pointer;
  color: inherit;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow:
    inset 0 0 0 2px var(--gold),
    0 26px 60px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 30, 142, 0.3);
}

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

.card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.card:hover .card__art img { transform: scale(1.06); }

.card__wk {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1;
  color: #10021f;
  background: var(--gold);
  padding: 0.35em 0.6em 0.3em;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}

.card__body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.card__name {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.card__sub {
  font-size: 0.9rem;
  color: var(--paper-faint);
  line-height: 1.35;
}

.card__more {
  margin-top: auto;
  padding-top: 0.7rem;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Event dialog */
.ev {
  width: min(94vw, 640px);
  padding: 0;
  border: 3px solid #000;
  border-radius: 10px;
  background: linear-gradient(170deg, #1c0640, #08021a);
  color: var(--paper);
  box-shadow: 0 0 0 3px var(--gold), 0 40px 90px rgba(0, 0, 0, 0.8);
}

.ev::backdrop {
  background: rgba(3, 0, 10, 0.82);
  backdrop-filter: blur(4px);
}

.ev__close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  z-index: 3;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}

.ev__body { padding: 0; }

.ev__hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ev__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.ev__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #10022b 4%, transparent 60%);
}

.ev__head {
  position: absolute;
  left: 1.2rem;
  bottom: 0.8rem;
  z-index: 2;
}

.ev__wk {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.ev__name {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.ev__content {
  padding: 1.2rem clamp(1.1rem, 4vw, 1.8rem) 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ev__tag {
  font-style: italic;
  color: var(--cyan);
}

.ev__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.8rem;
  border-top: 2px solid var(--smoke-2);
}

.ev__row b {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.ev__row p { color: var(--paper-dim); font-size: 0.98rem; }

.season__extras {
  margin-top: clamp(1.5rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.xcard {
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed var(--smoke-2);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.xcard__wk {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--magenta-hot);
}

.xcard h3 { margin: 0; color: #fff; }
.xcard p { color: var(--paper-dim); font-size: 0.98rem; }

.xcard__q {
  font-style: italic;
  color: var(--gold) !important;
  border-left: 3px solid var(--gold);
  padding-left: 0.8rem;
}

/* ------------------------------------------------------------
   SCOREBOARD
   ------------------------------------------------------------ */
.section--score {
  background: #05010d;
  border-block: 3px solid #000;
}

.score {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.7rem, 2vw, 1.2rem);
}

.score__cell {
  padding: clamp(1.1rem, 3vw, 1.8rem);
  background: #0b0221;
  border: 3px solid #000;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(255, 199, 10, 0.2);
  position: relative;
  overflow: hidden;
}

.score__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 199, 10, 0.14) 1px, transparent 1.4px);
  background-size: 7px 7px;
  opacity: 0.5;
  pointer-events: none;
}

.score__cell b {
  position: relative;
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255, 199, 10, 0.5);
}

.score__cell span {
  position: relative;
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--paper-dim);
}

.score__identity {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 64ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
  color: var(--paper-dim);
  text-wrap: pretty;
}

/* ------------------------------------------------------------
   CREED
   ------------------------------------------------------------ */
.section--creed {
  background: linear-gradient(180deg, #05010d, #1a0330 55%, #05010d);
  border-block: 3px solid #000;
}

.creed {
  list-style: none;
  padding: 0;
  counter-reset: creed;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 0.7rem;
}

.creed li {
  counter-increment: creed;
  position: relative;
  padding: 1rem 1.1rem 1rem 3.4rem;
  background: rgba(255, 255, 255, 0.035);
  border: 2px solid var(--smoke-2);
  border-radius: 5px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}

.creed li:hover {
  border-color: var(--gold);
  background: rgba(255, 199, 10, 0.07);
  transform: translateX(4px);
}

.creed li::before {
  content: counter(creed, decimal-leading-zero);
  position: absolute;
  left: 0.9rem;
  top: 0.95rem;
  font-family: var(--f-display);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--magenta-hot);
}

.creed b {
  display: block;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25rem;
}

.creed span {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--paper-faint);
}

/* ------------------------------------------------------------
   MOAT / STATBAR
   ------------------------------------------------------------ */
.section--moat { background: #05010d; border-block: 3px solid #000; }

.statbar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--smoke-2);
  border-radius: 6px;
}

.statbar__row {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.statbar__label {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.statbar__bar {
  height: 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #000;
  border-radius: 3px;
  overflow: hidden;
}

.statbar__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lime), #3ddc84);
  box-shadow: 0 0 18px rgba(123, 255, 90, 0.6);
  transition: width 1.2s var(--ease-out);
}

.statbar__bar i[data-dim] {
  background: linear-gradient(90deg, var(--red), #a3231b);
  box-shadow: none;
}

.is-in .statbar__bar i { width: var(--pct); }

.statbar__row b {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--lime);
  min-width: 4ch;
  text-align: right;
}

.statbar__row--dim b { color: var(--red); }

.statbar__cap {
  font-size: 0.8rem;
  color: var(--paper-faint);
  font-style: italic;
}

.moat-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.moat-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--paper-dim);
  font-size: 0.98rem;
  line-height: 1.45;
}

.moat-list li::before {
  content: "\26A1";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--gold);
}

.moat-list b { color: #fff; }
.moat-list em { color: var(--gold); font-style: italic; }

/* ------------------------------------------------------------
   GATE
   ------------------------------------------------------------ */
.section--gate {
  background: linear-gradient(180deg, #05010d, #150124 50%, #05010d);
  border-block: 3px solid #000;
}

.gate {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
}

.gate__col {
  padding: clamp(1.2rem, 3.2vw, 2rem);
  border: 3px solid #000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gate__col--in {
  background: linear-gradient(165deg, #0a2b17, #03110a);
  box-shadow: inset 0 0 0 2px rgba(123, 255, 90, 0.3);
}

.gate__col--out {
  background: linear-gradient(165deg, #2b0a0a, #110303);
  box-shadow: inset 0 0 0 2px rgba(255, 59, 48, 0.3);
}

.gate__h {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

.gate__col--in .gate__h { color: var(--lime); }
.gate__col--out .gate__h { color: #ff8078; }

.gate__col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gate__col li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--paper-dim);
  line-height: 1.45;
}

.gate__col--in li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

.gate__col--out li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.gate__col b { color: #fff; }
.gate__col em { font-style: italic; color: var(--gold); }

.gate__side {
  margin-top: auto;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  border-left: 4px solid var(--gold);
  font-size: 0.94rem;
  color: var(--paper-dim);
  line-height: 1.45;
}

.gate__side b { color: var(--gold); }
.gate__side--warn { border-left-color: var(--red); }
.gate__side--warn b { color: #ff8078; }

/* ------------------------------------------------------------
   COACH
   ------------------------------------------------------------ */
.section--coach { background: #05010d; border-block: 3px solid #000; }

.coach {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}

.coach__card {
  position: relative;
  border: 4px solid #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--magenta), 0 30px 70px rgba(0, 0, 0, 0.7);
}

.coach__card img { width: 100%; height: auto; }

.coach__plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(5, 1, 13, 0.96), transparent);
}

.coach__plate b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1;
  color: #fff;
}

.coach__plate span {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.tape {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 2px solid var(--smoke-2);
  padding-top: 1rem;
}

.tape li {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--smoke);
}

.tape b {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.tape span { font-size: 0.94rem; color: var(--paper-faint); line-height: 1.4; }

@media (max-width: 820px) {
  .coach { grid-template-columns: 1fr; }
  .coach__card { max-width: 380px; margin-inline: auto; }
  .tape li { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ------------------------------------------------------------
   PRICE
   ------------------------------------------------------------ */
.section--price {
  background: radial-gradient(80% 60% at 50% 0%, rgba(255, 199, 10, 0.12), transparent 60%), #05010d;
  border-block: 3px solid #000;
}

.price { text-align: center; display: flex; flex-direction: column; gap: 0.9rem; }

.price__kick {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.price__fig {
  font-family: var(--f-display);
  font-size: clamp(4rem, 15vw, 8rem);
  line-height: 0.85;
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 199, 10, 0.5), 0 5px 0 #000;
}

.price__sub {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.price__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  margin-block: 0.8rem;
}

.price__list li {
  padding-left: 1.7rem;
  position: relative;
  color: var(--paper-dim);
  line-height: 1.45;
}

.price__list li::before {
  content: "\26A1";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.price__fine {
  font-size: 0.88rem;
  color: var(--paper-faint);
  max-width: 48ch;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.section--faq { background: #05010d; border-block: 3px solid #000; }

.faq { display: flex; flex-direction: column; gap: 0.6rem; }

.faq__item {
  border: 2px solid var(--smoke-2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq__item[open] { border-color: var(--gold); }

.faq__q {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.15rem);
  letter-spacing: 0.03em;
  color: #fff;
  list-style: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: "+";
  margin-left: auto;
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.2s var(--ease-out);
}

.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__a {
  padding: 0 1.2rem 1.2rem;
  color: var(--paper-dim);
  line-height: 1.55;
  text-wrap: pretty;
}

.faq__a strong { color: var(--gold); }

/* ------------------------------------------------------------
   CASTING FORM
   ------------------------------------------------------------ */
.section--casting {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #05010d, #23003f 55%, #05010d);
  border-top: 3px solid #000;
}

.casting__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%);
}

.section--casting .wrap { position: relative; z-index: 2; }

.cast { display: flex; flex-direction: column; gap: 1.2rem; }

.cast__progress { display: flex; gap: 0.4rem; }

.cast__progress span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.3s;
}

.cast__progress span.is-on {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 14px rgba(255, 199, 10, 0.5);
}

.cast__step {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  animation: beat-in 0.4s var(--ease-out) both;
}

.cast__step legend {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  margin-bottom: 0.2rem;
}

.cast__num {
  font-family: var(--f-mega);
  font-size: 0.85rem;
  color: #10021f;
  background: var(--gold);
  padding: 0.35em 0.55em;
  border: 2px solid #000;
}

.field { display: flex; flex-direction: column; gap: 0.35rem; }

.field label:not(.check):not(.radios label),
.field__legend {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}

.field__hint {
  font-size: 0.88rem;
  color: var(--paper-faint);
  line-height: 1.4;
  font-style: italic;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--smoke-2);
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input::placeholder,
.field textarea::placeholder { color: #6b6273; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 199, 10, 0.2);
}

.field textarea { resize: vertical; min-height: 5.5rem; font-family: var(--f-body); }

.field.is-bad input,
.field.is-bad textarea { border-color: var(--red); }

.field__err {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8078;
  min-height: 0;
}

.field__err:empty { display: none; }

.field__note {
  font-size: 0.9rem;
  color: var(--gold);
  background: rgba(255, 199, 10, 0.09);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 0.8rem;
  line-height: 1.4;
}

.radios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 0.45rem;
}

.radios label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--smoke-2);
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper-dim);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.radios label:hover { border-color: var(--cyan); color: #fff; }

.radios input {
  appearance: none;
  width: 1.1em;
  height: 1.1em;
  border: 2px solid var(--paper-faint);
  border-radius: 50%;
  flex: none;
  display: grid;
  place-content: center;
}

.radios input::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.12s var(--ease-slam);
}

.radios input:checked::before { transform: scale(1); }

.radios label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(255, 199, 10, 0.12);
  color: #fff;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-family: var(--f-body) !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--paper-dim) !important;
}

.check input {
  appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  flex: none;
  border: 2px solid var(--paper-faint);
  border-radius: 4px;
  display: grid;
  place-content: center;
}

.check input::before {
  content: "\2713";
  color: #10021f;
  font-weight: 700;
  transform: scale(0);
  transition: transform 0.14s var(--ease-slam);
}

.check input:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.check input:checked::before { transform: scale(1); }
.check b { color: var(--gold); font-family: var(--f-display); letter-spacing: 0.08em; }

.contract {
  padding: 1.1rem 1.3rem;
  background: rgba(0, 0, 0, 0.45);
  border: 2px dashed var(--gold);
  border-radius: 6px;
}

.contract__head {
  font-family: var(--f-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contract ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contract li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--paper-dim);
  line-height: 1.4;
}

.contract li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.cast__combine {
  padding: 0.8rem 1rem;
  background: rgba(123, 45, 255, 0.12);
  border-left: 4px solid var(--purple);
  font-size: 0.92rem;
  color: var(--paper-dim);
  line-height: 1.45;
}

.cast__combine b { color: var(--gold); }

.cast__nav {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.4rem;
  border-top: 2px solid var(--smoke-2);
}

.cast__nav [data-next],
.cast__nav [data-submit] { margin-left: auto; }

.cast__status {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--paper-faint);
  min-height: 1.2em;
}

.cast__status.is-bad { color: #ff8078; }
.cast__status.is-busy { color: var(--cyan); }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cast__done {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: beat-in 0.5s var(--ease-slam) both;
}

.cast__done-art { width: min(100%, 420px); height: auto; }
.cast__done h3 { color: var(--gold); margin: 0; }
.cast__done p { color: var(--paper-dim); max-width: 50ch; }
.cast__done-fine { font-size: 0.86rem; color: var(--paper-faint) !important; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.foot {
  background: #03000a;
  border-top: 3px solid #000;
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
}

.foot__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--smoke-2);
}

.foot__brand { display: flex; align-items: center; gap: 1rem; }
.foot__brand img { width: 76px; height: auto; }

.foot__tag {
  font-family: var(--f-display);
  font-size: 1.1rem;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.foot__tag b { color: var(--gold); }

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  justify-content: center;
}

.foot__links a {
  font-family: var(--f-cond);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
  text-decoration: none;
}

.foot__links a:hover { color: var(--gold); }

.foot__meta {
  font-size: 0.88rem;
  color: var(--paper-faint);
  line-height: 1.5;
  text-align: right;
}

.foot__legal {
  padding-top: 1.4rem;
  font-size: 0.78rem;
  color: #5f5766;
  line-height: 1.6;
  text-align: center;
  max-width: 78ch;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .foot__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .foot__meta { text-align: center; }
}

/* ------------------------------------------------------------
   HERO WINK — the one line that lets a serious buyer relax.
   The visual identity is deliberately absurd; saying so out loud
   is what separates "confident joke" from "amateur hour".
   ------------------------------------------------------------ */
.hero__wink {
  max-width: 52ch;
  padding: 0.7rem 1rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 199, 10, 0.08);
  font-size: clamp(0.92rem, 0.88rem + 0.25vw, 1.05rem);
  line-height: 1.5;
  color: var(--paper-dim);
  text-wrap: pretty;
}

.hero__wink b {
  color: var(--gold);
  display: block;
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 1.08em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15em;
}

.hero__nameplate span i {
  font-style: italic;
}

@media (max-width: 880px) {
  .hero__wink { text-align: left; }
}

/* ------------------------------------------------------------
   VSL — link out to the other cuts
   ------------------------------------------------------------ */
.vsl-alt {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--paper-faint);
  max-width: 60ch;
  margin-inline: auto;
}

.vsl-alt a {
  color: var(--gold);
}

/* ------------------------------------------------------------
   STRAIGHT TALK — announcer voice off, on purpose
   ------------------------------------------------------------ */
.section--straight {
  background: #05010d;
  border-block: 3px solid #000;
}

.straight {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.straight__row {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 0.4rem 1.6rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.035);
  border: 2px solid var(--smoke-2);
  border-left: 4px solid var(--cyan);
  border-radius: 5px;
}

.straight__row:nth-child(2) { border-left-color: var(--gold); }
.straight__row:nth-child(3) { border-left-color: var(--magenta); }
.straight__row:nth-child(4) { border-left-color: var(--lime); }
.straight__row:nth-child(5) { border-left-color: var(--purple); }

.straight__row b {
  font-family: var(--f-cond);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.25;
}

.straight__row p {
  color: var(--paper-dim);
  font-size: 0.98rem;
  line-height: 1.5;
  text-wrap: pretty;
}

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

/* ------------------------------------------------------------
   CTA MICROCOPY, DATES, PRIVACY — the small reassurances
   ------------------------------------------------------------ */
.hero__micro {
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--paper-faint);
  max-width: 46ch;
  margin-top: -0.4rem;
}

.price__dates {
  padding: 0.7rem 1rem;
  border: 2px dashed var(--gold);
  border-radius: 5px;
  background: rgba(255, 199, 10, 0.07);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--paper-dim);
}

.price__dates b { color: var(--gold); }

.cast__privacy {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--paper-faint);
  padding-top: 0.4rem;
  border-top: 1px solid var(--smoke);
}
