:root {
  --ink: #080808;
  --charcoal: #151515;
  --panel: #202020;
  --paper: #fff7df;
  --cream: #f7efe0;
  --muted: #cfc4ad;
  --gold: #ffd21a;
  --gold-dark: #c89400;
  --teal: #16d5cf;
  --coral: #f15b43;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body,
input,
select,
textarea,
button {
  font: 1rem/1.5 Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0.9rem;
  left: 50%;
  width: min(calc(100% - 2rem), 74rem);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0.78rem;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-color: rgba(255, 210, 26, 0.32);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  text-decoration: none;
  min-width: 13rem;
  padding: 0.15rem 0.25rem;
}

.brand-lockup img {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: cover;
  border-radius: 50%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-lockup span {
  display: grid;
  gap: 0;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 1rem;
  line-height: 1.08;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.28rem;
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.88;
  transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .nav-cta {
  color: #111;
  background: var(--gold);
  opacity: 1;
  font-weight: 900;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #111;
  background: #ffe36a;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
  padding: 8.5rem 1.4rem 5.5rem;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 28%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.52) 44%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 27rem);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy-block {
  min-width: 0;
}

.kicker,
.section-label {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: 5.2rem;
  line-height: 0.95;
}

.hero-copy {
  max-width: 42rem;
  margin-bottom: 1.8rem;
  color: var(--cream);
  font-size: 1.3rem;
}

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

.hero-prize {
  display: inline-grid;
  gap: 0.08rem;
  margin: 0 0 1.35rem;
  padding: 0.9rem 1.1rem;
  color: #111;
  background:
    linear-gradient(135deg, var(--gold) 0%, #fff06b 48%, #ffb800 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow:
    0 0 0 5px rgba(255, 210, 26, 0.12),
    0 18px 48px rgba(255, 184, 0, 0.28);
}

.hero-prize span,
.hero-prize small {
  font-weight: 900;
  text-transform: uppercase;
}

.hero-prize span {
  font-size: 0.85rem;
}

.hero-prize strong {
  font-size: 2.35rem;
  line-height: 0.95;
}

.hero-prize small {
  font-size: 0.76rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-player {
  align-self: center;
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.player-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.player-heading span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.player-heading strong {
  color: var(--paper);
  font-size: 1.1rem;
}

.hero-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 6px;
  background: #050505;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #111;
  background: var(--gold);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffe36a;
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.section-shell {
  width: min(100% - 2.8rem, 76rem);
  margin: 0 auto;
}

.intro-band {
  padding: 5.25rem 0;
  background: var(--paper);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.intro-grid h2,
.details-section h2,
.submission-section h2,
.winner-section h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
  line-height: 1.08;
}

.intro-body {
  display: grid;
  gap: 1.5rem;
}

.intro-body > p {
  margin-bottom: 0;
  color: #313131;
  font-size: 1.12rem;
}

.overview-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
  border-bottom: 1px solid rgba(8, 8, 8, 0.16);
}

.overview-list div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.42fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.12);
}

.overview-list div:last-child {
  border-bottom: 0;
}

.overview-list strong {
  color: #080808;
}

.overview-list span {
  color: #514735;
}

.details-section {
  padding: 5.5rem 0;
  background: #101010;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.split-heading h2 {
  max-width: 18ch;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
  white-space: nowrap;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}

.step-card {
  min-height: 15.5rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1b1b1b;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.step-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.95rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.35rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step-card a {
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.criteria-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.criteria-strip div {
  min-height: 6.8rem;
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  background: #181818;
  border-right: 1px solid var(--line);
}

.criteria-strip .criteria-prize {
  color: #111;
  background:
    linear-gradient(135deg, var(--gold), #fff06b 56%, #ffb000);
  border-right-color: rgba(0, 0, 0, 0.18);
}

.criteria-strip .criteria-prize strong,
.criteria-strip .criteria-prize span {
  color: #111;
}

.criteria-strip .criteria-prize span {
  font-size: 1.55rem;
  line-height: 1;
}

.criteria-strip div:last-child {
  border-right: 0;
}

.criteria-strip strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.criteria-strip span {
  color: var(--paper);
  font-size: 1.15rem;
  font-weight: 900;
}

.media-band {
  min-height: 13rem;
  background: var(--gold);
}

.media-band img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center;
}

.submission-section {
  padding: 5.7rem 0;
  color: var(--ink);
  background: var(--cream);
}

.submission-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(20rem, 1.22fr);
  gap: 2.6rem;
  align-items: start;
}

.submission-copy {
  position: sticky;
  top: 6rem;
}

.submission-copy p {
  color: #3b3328;
}

.prize-panel {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.6rem;
  padding: 1.2rem;
  color: #111;
  background:
    linear-gradient(135deg, var(--gold), #fff06b 55%, #ffb300);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 44px rgba(255, 184, 0, 0.25);
}

.prize-panel span,
.prize-panel small {
  color: #221900;
  font-weight: 900;
  text-transform: uppercase;
}

.prize-panel strong {
  color: #080808;
  font-size: 3rem;
  line-height: 0.95;
}

.submission-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label,
.consent-row {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.78rem 0.85rem;
  color: #fff;
  background: #0e0e0e;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 210, 26, 0.14);
}

.form-row small {
  justify-self: end;
  color: var(--muted);
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--cream);
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: auto;
  margin-top: 0.22rem;
  accent-color: var(--gold);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-feedback {
  min-height: 1.4rem;
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.winner-section {
  padding: 5.7rem 0;
  background: #070707;
}

.winner-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.05fr) minmax(18rem, 0.95fr);
  gap: 2.6rem;
  align-items: center;
}

.winner-art {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

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

.winner-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.winner-placeholder {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.2rem;
  padding: 1.15rem;
  border-left: 0.35rem solid var(--gold);
  background: #1a1a1a;
}

.winner-placeholder strong {
  color: #fff;
  font-size: 1.3rem;
}

.winner-placeholder span {
  color: var(--muted);
}

.site-footer {
  padding: 3.8rem 0 1.4rem;
  background: #0b0b0b;
  color: var(--paper);
  border-top: 1px solid rgba(255, 210, 26, 0.22);
}

.footer-logos {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-logos img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #0b0b0b;
  background: #050505;
}

.footer-logos img + img {
  margin-left: -0.65rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 1.2fr) minmax(10rem, 0.55fr) minmax(14rem, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 34rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 1.2rem;
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-column h2 {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 0.45rem;
}

.footer-column a {
  width: fit-content;
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0.94)),
    url("assets/yellow-bun-e-sunset.png") center / cover no-repeat;
}

.thanks-shell {
  width: min(100%, 42rem);
  padding: 2rem;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-shell img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  background: #fff;
}

.thanks-shell h1 {
  max-width: none;
  font-size: 2.6rem;
  line-height: 1.05;
}

.thanks-shell p:not(.section-label) {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    width: min(calc(100% - 1.2rem), 42rem);
    top: 0.6rem;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
  }

  .site-nav a {
    flex: 1 0 auto;
  }

  .hero {
    min-height: 78vh;
    padding-top: 9.2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: min(100%, 42rem);
  }

  h1 {
    font-size: 3.7rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-prize strong {
    font-size: 2.05rem;
  }

  .intro-grid,
  .submission-grid,
  .winner-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .submission-copy {
    position: static;
  }

  .steps-grid,
  .criteria-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-layout {
    gap: 1.6rem;
  }

  .criteria-strip div:nth-child(2) {
    border-right: 0;
  }

  .criteria-strip div:nth-child(1),
  .criteria-strip div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.8rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.62rem;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup img {
    width: 2.85rem;
    height: 2.85rem;
  }

  .site-nav {
    gap: 0.18rem;
    font-size: 0.84rem;
  }

  .site-nav a {
    min-height: 2.2rem;
    padding: 0.48rem 0.55rem;
  }

  .hero {
    padding: 9.1rem 1rem 3.4rem;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.44) 36%, rgba(0, 0, 0, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08));
  }

  h1 {
    font-size: 2.85rem;
  }

  .intro-grid h2,
  .details-section h2,
  .submission-section h2,
  .winner-section h2 {
    font-size: 1.9rem;
  }

  .section-shell {
    width: min(100% - 2rem, 72rem);
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-grid,
  .criteria-strip,
  .form-row.two-column,
  .overview-list div {
    grid-template-columns: 1fr;
  }

  .criteria-strip div,
  .criteria-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .criteria-strip div:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-prize {
    width: 100%;
  }

  .hero-prize strong {
    font-size: 1.9rem;
  }

  .hero-player {
    padding: 0.75rem;
  }

  .player-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .media-band img {
    height: 12rem;
  }

  .site-footer {
    padding: 2.5rem 0 1.2rem;
  }

  .footer-brand {
    align-items: flex-start;
    gap: 0.9rem;
  }

  .footer-logos img {
    width: 3.35rem;
    height: 3.35rem;
  }

  .footer-column nav {
    gap: 0.35rem;
  }

  .footer-bottom {
    gap: 0.45rem;
  }

  .thanks-shell {
    padding: 1.4rem;
  }

  .thanks-shell h1 {
    font-size: 2rem;
  }
}
