:root {
  --yellow: #f2c300;
  --yellow-bright: #ffd21c;
  --purple: #5b2bbf;
  --purple-dark: #33116f;
  --ink: #0b0b0d;
  --paper: #fffdf4;
  --white: #ffffff;
  --muted: #5f5b50;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

a { color: inherit; }

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(11, 11, 13, .96);
  border-bottom: 4px solid var(--yellow);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.brand span { color: var(--yellow); }

nav { display: flex; gap: .35rem; }

nav a {
  padding: .65rem .85rem;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  border-radius: 2px;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

nav .nav-signup {
  margin-left: .3rem;
  color: var(--ink);
  background: var(--yellow);
}

nav .nav-signup:hover,
nav .nav-signup:focus-visible {
  background: var(--white);
}

.clapper-stripe {
  height: 32px;
  background: repeating-linear-gradient(125deg, var(--ink) 0 50px, var(--white) 50px 92px);
  border-bottom: 6px solid var(--ink);
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(108deg, transparent 0 62%, rgba(91, 43, 191, .98) 62% 100%),
    var(--yellow);
}

.hero-grid {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 660px;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 .6rem;
  padding: .35rem .75rem;
  color: var(--white);
  background: var(--purple);
  font-weight: 900;
  font-style: italic;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: skew(-8deg);
}

h1, h2, h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: .015em;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.2rem, 10.6vw, 9.5rem);
}

h1 .purple { color: var(--purple); }

.hero-lede {
  max-width: 620px;
  margin: 1.4rem 0 1.8rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .75rem 1.15rem;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-dark { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }

.button-signup {
  min-height: 60px;
  padding: .95rem 1.55rem;
  color: var(--white);
  background: var(--purple);
  font-size: 1.1rem;
}

.event-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--white);
  background: var(--ink);
  border: 4px solid var(--white);
  box-shadow: 14px 14px 0 var(--purple-dark);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.event-card h2 {
  margin: 0 0 1.3rem;
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.event-detail { padding: 1.05rem 0; border-top: 1px solid #57575d; }
.event-detail:first-of-type { border-top: 0; }
.event-detail strong { display: block; font-size: 1.15rem; text-transform: uppercase; }
.event-detail span { display: block; margin-top: .18rem; font-size: 1.05rem; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-yellow { background: var(--yellow); }

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.section-kicker {
  margin: 0 0 .7rem;
  color: var(--purple);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-dark .section-kicker { color: var(--yellow); }

.section-title {
  max-width: 860px;
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.intro-copy { max-width: 760px; margin: 0; font-size: 1.18rem; }

.prompt-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.prompt-card {
  min-height: 220px;
  padding: 1.25rem;
  display: grid;
  align-content: space-between;
  border: 4px solid var(--purple);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--purple);
}

.prompt-card h3 { margin: 0; font-size: 1.7rem; }
.prompt-icon {
  width: 162px;
  height: 162px;
  justify-self: end;
}

.steps {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.6rem;
  color: var(--ink);
  background: var(--white);
  border-top: 9px solid var(--purple);
}

.step-number {
  color: var(--purple);
  font-family: Impact, sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.step h3 { margin: .5rem 0; font-size: 1.6rem; }
.step p { margin: 0; }

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.campaign-art {
  overflow: hidden;
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--purple);
}

.campaign-art img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.quick-list { margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.quick-list li { padding: .75rem 0; border-bottom: 2px solid rgba(11, 11, 13, .18); }
.quick-list strong { display: inline-block; min-width: 145px; }

.archive-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.archive-card { padding: 1.4rem; color: var(--ink); background: var(--white); border-left: 9px solid var(--purple); }
.archive-card h3 { margin: 0 0 .8rem; font-size: 2rem; }
.archive-card dl { display: grid; grid-template-columns: auto 1fr; gap: .25rem .75rem; margin: 0; }
.archive-card dt { font-weight: 900; }
.archive-card dd { margin: 0; }

.archive-action { margin-top: 2rem; }

.film-year + .film-year { margin-top: 5rem; }

.year-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 7px solid var(--yellow);
}

.year-heading h2 { margin: 0; font-size: clamp(3rem, 7vw, 6rem); }

.prompt-summary {
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.prompt-chip {
  padding: .5rem .75rem;
  color: var(--white);
  background: var(--purple);
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--purple);
}

.video-wrap { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  font-size: 1.6rem;
}

.cta-band { padding: 3rem 0; color: var(--white); background: var(--purple); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin: 0; font-size: clamp(2rem, 4.5vw, 4.4rem); }

.page-hero { padding: 4rem 0 3.5rem; color: var(--white); background: var(--purple); }
.page-hero h1 { color: var(--white); font-size: clamp(3.8rem, 9vw, 8rem); }
.page-hero p { max-width: 720px; margin: 1rem 0 0; font-size: 1.2rem; }

.rules-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.rules-nav {
  position: sticky;
  top: 100px;
  padding: 1.2rem;
  color: var(--white);
  background: var(--ink);
  border-top: 8px solid var(--yellow);
}

.rules-nav strong { display: block; margin-bottom: .6rem; text-transform: uppercase; }
.rules-nav a { display: block; padding: .4rem 0; color: var(--white); }

.rules-content section { scroll-margin-top: 105px; margin-bottom: 4rem; }
.rules-content h2 { margin: 0 0 1.2rem; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.rules-content h3 { margin: 2rem 0 .5rem; font-size: 1.5rem; line-height: 1.1; }
.rules-content p { margin: .5rem 0; }
.rules-content ul { padding-left: 1.3rem; }
.rules-content li + li { margin-top: .55rem; }

.rule-callout {
  margin: 1.4rem 0;
  padding: 1.2rem 1.3rem;
  background: #fff3b4;
  border-left: 8px solid var(--yellow);
}

.rule-callout.danger { color: var(--white); background: var(--purple-dark); border-color: var(--yellow); }

.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.criterion { padding: 1rem; font-weight: 900; background: #eee9ff; border-left: 6px solid var(--purple); }

.site-footer { padding: 2.5rem 0; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; }
.site-footer h2 { margin: 0 0 .7rem; color: var(--yellow); font-size: 1.8rem; }
.site-footer p { margin: .3rem 0; }
.fine-print { margin-top: 2rem !important; color: #c9c9cc; font-size: .83rem; }
.ai-credit { margin-top: 1rem !important; color: #a9a9ae; font-size: .78rem; }

:focus-visible { outline: 4px solid #1f7aff; outline-offset: 3px; }

@media (max-width: 900px) {
  .hero { background: var(--yellow); }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .event-card { max-width: 660px; }
  .prompt-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .archive-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .rules-layout { grid-template-columns: 1fr; }
  .rules-nav { position: static; }
}

@media (max-width: 620px) {
  .nav-wrap { min-height: 62px; }
  .brand { max-width: 185px; line-height: 1; }
  nav { gap: 0; }
  nav a { padding: .52rem .38rem; font-size: .72rem; }
  nav .nav-signup { margin-left: .1rem; }
  .clapper-stripe { height: 22px; background-size: auto; }
  h1 { font-size: clamp(3.5rem, 21vw, 6.4rem); }
  .hero-grid { padding: 3rem 0 4rem; }
  .prompt-grid { grid-template-columns: 1fr 1fr; }
  .prompt-card { min-height: 165px; }
  .prompt-icon { width: 70px; height: 70px; }
  .cta-band .container { display: block; }
  .cta-band .button { margin-top: 1.2rem; }
  .footer-grid, .criteria-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
