@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("fonts/Switzer-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lenia Mono";
  src: url("fonts/LeniaMono-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Lenia Mono";
  src: url("fonts/LeniaMono-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f3f1eb;
  --paper-pure: #fdfdfd;
  --ink: #101114;
  --ink-deep: #0c0d10;
  --cream: #efede6;
  --blue: #276ff8;
  --red: #fb3b3e;
  --yellow: #fbcb10;
  --warm-700: #3c3a34;
  --warm-500: #6b675c;
  --hairline: rgba(16, 17, 20, 0.16);
  --dark-line: rgba(239, 237, 230, 0.18);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --page-pad: clamp(18px, 4vw, 56px);
  --section-space: clamp(84px, 10vw, 148px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink-deep);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
ol,
ul,
fieldset {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

::selection {
  background: var(--blue);
  color: var(--paper-pure);
}

#about,
#schedule,
#who,
#prizes,
#apply {
  scroll-margin-top: 64px;
}

.container {
  width: min(100%, 1392px);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.mono,
.eyebrow {
  font-family: "Lenia Mono";
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mono {
  font-size: 11px;
  line-height: 1.5;
}

.muted {
  color: var(--warm-500);
}

.accent-blue {
  color: var(--yellow);
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper-pure);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.dark-grid {
  background-color: var(--ink-deep);
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 240px 240px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 64px;
  padding-left: var(--page-pad);
  border-bottom: 1px solid rgba(239, 237, 230, 0.28);
  background: rgba(11, 12, 14, 0.84);
  color: var(--cream);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 180ms ease;
}

.site-nav.is-scrolled {
  background: rgba(11, 12, 14, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand img {
  width: 108px;
  height: auto;
}

.brand span {
  overflow: hidden;
  font-family: "Lenia Mono";
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  height: 100%;
}

.nav-links a,
.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding-inline: 20px;
  border-left: 1px solid rgba(239, 237, 230, 0.28);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}

.nav-links a:active,
.nav-cta:active,
.button:active {
  transform: scale(0.98);
}

.nav-cta {
  justify-self: end;
  gap: 16px;
  min-width: 166px;
  background: var(--paper-pure);
  color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    background: var(--blue);
    color: white;
  }

  .nav-links a:nth-child(2):hover {
    background: var(--red);
  }

  .nav-links a:nth-child(3):hover {
    background: var(--yellow);
    color: var(--ink);
  }

  .nav-cta:hover {
    background: var(--yellow);
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--ink-deep);
  background-image: none;
  color: var(--cream);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 16, 0.34) 0%, rgba(12, 13, 16, 0.2) 44%, transparent 74%),
    rgba(12, 13, 16, 0.5);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 3;
  inset: 64px 0 auto;
  height: 1px;
  background: var(--dark-line);
  content: "";
}

dither-orbit {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

dither-orbit canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: clamp(132px, 16vw, 210px);
  padding-bottom: clamp(92px, 11vw, 140px);
}

.hero-copy {
  width: min(780px, 76%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(239, 237, 230, 0.66);
  font-size: 11px;
  line-height: 1.4;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--yellow);
  content: "";
}

.eyebrow-dark {
  color: var(--warm-500);
}

.eyebrow-dark::before {
  background: var(--blue);
}

.hero h1 {
  max-width: 900px;
  margin-top: 26px;
  font-size: clamp(50px, 7.8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-sub {
  max-width: 590px;
  margin-top: 36px;
  color: rgba(239, 237, 230, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-meta {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(239, 237, 230, 0.66);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, transform 120ms var(--ease-out);
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-pure);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
  text-underline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .button-light:hover {
    border-color: var(--yellow);
    background: var(--yellow);
  }

  .button-dark:hover {
    border-color: var(--blue);
    background: var(--blue);
  }

  .text-link:hover {
    color: var(--yellow);
  }
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--dark-line);
}

.hero-facts > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px var(--page-pad);
  border-left: 1px solid var(--dark-line);
}

.hero-facts > div:first-child {
  border-left: 0;
}

.hero-facts .mono {
  color: rgba(239, 237, 230, 0.55);
}

.hero-facts strong {
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.section {
  padding-bottom: var(--section-space);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-ink {
  background: var(--ink);
  color: var(--cream);
}

.section-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--hairline);
}

.section-band-dark {
  border-color: var(--dark-line);
  color: rgba(239, 237, 230, 0.68);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(56px, 9vw, 140px);
  padding-top: clamp(76px, 9vw, 128px);
}

.editorial-grid h2,
.schedule-head h2,
.who-grid h2,
.prizes-head h2,
.application-intro h2 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.02;
  text-wrap: balance;
}

.body-copy {
  padding-top: 28px;
  color: var(--warm-700);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.65;
}

.body-copy p + p {
  margin-top: 25px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(70px, 9vw, 126px);
  border: 1px solid var(--ink);
}

.process-grid article {
  min-width: 0;
  min-height: 270px;
  padding: clamp(26px, 3.5vw, 48px);
  border-left: 1px solid var(--ink);
}

.process-grid article:first-child {
  border-left: 0;
}

.step-no {
  color: var(--warm-500);
}

.process-grid h3 {
  max-width: 300px;
  margin-top: 76px;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.process-grid p {
  max-width: 370px;
  margin-top: 14px;
  color: var(--warm-700);
}

.dither-band {
  position: relative;
  height: 116px;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--ink-deep);
}

.dither-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dither-band p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 18px);
  padding: 12px 18px;
  color: var(--paper-pure);
  font-family: "Lenia Mono";
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  text-shadow: 0 1px 0 var(--ink), 1px 0 0 var(--ink), 0 -1px 0 var(--ink), -1px 0 0 var(--ink);
  text-transform: uppercase;
}

.schedule {
  padding-bottom: 0;
}

.schedule-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: end;
  padding-top: clamp(76px, 9vw, 128px);
  padding-bottom: clamp(66px, 8vw, 112px);
}

.schedule-head > p {
  color: var(--warm-700);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.schedule-list {
  border-top: 1px solid var(--ink);
}

.schedule-list li {
  display: grid;
  grid-template-columns: 86px 110px minmax(230px, 0.9fr) minmax(320px, 1fr);
  align-items: baseline;
  gap: 20px;
  padding-block: 26px;
  border-bottom: 1px solid var(--hairline);
}

.schedule-list time {
  font-family: "Lenia Mono";
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.time-end {
  color: var(--warm-500);
  font-family: "Lenia Mono";
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-list h3 {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.schedule-list p {
  color: var(--warm-700);
}

.schedule-list .schedule-focus {
  position: relative;
  background: rgba(39, 111, 248, 0.045);
  box-shadow: inset 0 2px 0 var(--blue), inset 0 -2px 0 var(--blue);
}

.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(56px, 9vw, 140px);
  padding-top: clamp(76px, 9vw, 128px);
}

.who-copy {
  padding-top: 32px;
}

.who-copy > p {
  color: rgba(239, 237, 230, 0.76);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.65;
}

.role-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.role-list li {
  min-height: 66px;
  padding: 20px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  font-weight: 600;
}

.prizes {
  padding-bottom: 0;
  border-top: 1px solid var(--dark-line);
}

.prizes-head {
  padding-top: clamp(76px, 9vw, 128px);
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(54px, 7vw, 90px);
  border: 1px solid var(--dark-line);
}

.prize-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 48px);
  overflow: hidden;
  border-left: 1px solid var(--dark-line);
}

.prize-card:first-child {
  border-left: 0;
}

.prize-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--yellow);
  content: "";
}

.prize-card.second::before {
  background: var(--blue);
}

.prize-card.third::before {
  background: var(--red);
}

.prize-card .mono {
  color: rgba(239, 237, 230, 0.64);
}

.prize-card strong {
  display: block;
  margin-top: 95px;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  white-space: nowrap;
}

.prize-card p {
  margin-top: 14px;
  color: rgba(239, 237, 230, 0.66);
}

.conference-perk {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 170px;
  margin-top: -1px;
  padding-block: 28px;
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.conference-perk h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.conference-perk > p:not(.mono) {
  color: var(--warm-700);
}

.conference-perk a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.application {
  padding-bottom: clamp(90px, 12vw, 160px);
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(50px, 8vw, 124px);
  align-items: start;
  padding-top: clamp(76px, 9vw, 128px);
}

.application-intro {
  position: sticky;
  top: 100px;
}

.application-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 28px;
  color: var(--warm-700);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.application-note {
  max-width: 470px;
  margin-top: 52px;
  padding: 24px;
  border: 1px solid var(--ink);
}

.application-note p {
  margin-top: 14px;
  color: var(--warm-700);
}

.form-shell {
  border: 1px solid var(--ink);
  background: var(--paper-pure);
}

#application-form {
  padding: clamp(24px, 4.2vw, 58px);
}

.form-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}

.form-section-heading > span:last-child {
  color: var(--warm-500);
  font-size: 13px;
}

.form-section-break {
  margin-top: 54px;
}

.field-grid {
  display: grid;
  gap: 28px 24px;
  margin-top: 30px;
}

.two-up {
  grid-template-columns: 1fr 1fr;
}

.field {
  min-width: 0;
  margin-top: 28px;
}

.field-grid .field {
  margin-top: 0;
}

.field label,
.radio-fieldset legend {
  display: block;
  margin-bottom: 10px;
  color: var(--warm-700);
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.optional {
  color: var(--warm-500);
  font-family: "Switzer";
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 17, 20, 0.48);
  border-radius: 0;
  background: var(--paper-pure);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a867c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

.field [aria-invalid="true"] {
  border-color: var(--red);
  background: rgba(251, 59, 62, 0.035);
}

.field-hint,
.field-error,
.field-meta,
.privacy-note,
.form-status {
  font-size: 12px;
  line-height: 1.5;
}

.field-hint,
.privacy-note {
  color: var(--warm-500);
}

.field > .field-hint {
  margin-top: 7px;
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #bd1f25;
  font-weight: 500;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 7px;
}

.char-count {
  flex: 0 0 auto;
  color: var(--warm-500);
  font-family: "Lenia Mono";
  font-size: 10px;
  letter-spacing: 0.05em;
}

.radio-fieldset {
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(16, 17, 20, 0.48);
}

.choice-grid label {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 17px;
  border-left: 1px solid rgba(16, 17, 20, 0.48);
  color: var(--ink);
  cursor: pointer;
  font-family: "Switzer";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.choice-grid label:first-child {
  border-left: 0;
}

.choice-grid label:has(input:checked) {
  background: var(--ink);
  color: var(--paper-pure);
}

.choice-grid input,
.check-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.choice-grid:has(input[aria-invalid="true"]) {
  border-color: var(--red);
}

.checks {
  display: grid;
  gap: 8px;
  margin-top: 44px;
}

.check-field label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--hairline);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.check-field label > span {
  min-width: 0;
}

.no-wrap {
  display: inline-block;
  white-space: nowrap;
}

.check-field label:has(input:checked) {
  border-color: var(--ink);
  background: var(--paper);
}

.check-field label:has(input[aria-invalid="true"]) {
  border-color: var(--red);
}

.check-field .field-error {
  margin-left: 16px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-note {
  max-width: 600px;
  margin-top: 22px;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  max-width: 330px;
  color: #bd1f25;
}

.form-success {
  min-height: 560px;
  padding: clamp(42px, 7vw, 88px);
  background: var(--ink);
  color: var(--cream);
}

.form-success .mono {
  color: rgba(239, 237, 230, 0.62);
}

.form-success h3 {
  max-width: 560px;
  margin-top: 72px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.form-success p {
  max-width: 570px;
  margin-top: 26px;
  color: rgba(239, 237, 230, 0.75);
  font-size: 18px;
}

.form-success a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 48px;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.site-footer {
  padding-top: 0;
  background: var(--ink-deep);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.footer-grid > div {
  min-height: 320px;
  padding: clamp(48px, 5vw, 78px) var(--page-pad);
  border-left: 1px solid var(--dark-line);
}

.footer-grid > div:first-child {
  border-left: 0;
}

.footer-grid img {
  width: 140px;
}

.footer-grid > div:first-child p {
  margin-top: 24px;
}

.footer-grid .mono {
  display: block;
  margin-bottom: 18px;
  color: rgba(239, 237, 230, 0.55);
}

.footer-grid p,
.footer-grid a {
  color: rgba(239, 237, 230, 0.76);
  font-size: 14px;
  line-height: 1.8;
}

.footer-grid a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
  padding: 24px var(--page-pad);
  color: rgba(239, 237, 230, 0.48);
}

.footer-bottom span:last-child {
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    width: min(780px, 86%);
  }

  .schedule-list li {
    grid-template-columns: 78px 95px minmax(220px, 0.85fr) minmax(240px, 1fr);
  }

  .conference-perk {
    grid-template-columns: 0.7fr 1.4fr 1fr;
  }

  .conference-perk a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .brand span {
    display: none;
  }

  .nav-cta {
    min-width: 140px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 11vw, 84px);
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts > div:nth-child(3) {
    border-left: 0;
  }

  .hero-facts > div:nth-child(n + 3) {
    border-top: 1px solid var(--dark-line);
  }

  .editorial-grid,
  .schedule-head,
  .who-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .body-copy,
  .who-copy {
    padding-top: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .process-grid h3 {
    margin-top: 44px;
  }

  .schedule-list li {
    grid-template-columns: 86px 1fr;
    gap: 8px 20px;
  }

  .schedule-list h3,
  .schedule-list p {
    grid-column: 2;
  }

  .schedule-list h3 {
    margin-top: 12px;
  }

  .schedule-list p {
    margin-top: 4px;
  }

  .prize-grid {
    grid-template-columns: 1fr;
  }

  .prize-card {
    min-height: 260px;
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .prize-card:first-child {
    border-top: 0;
  }

  .prize-card strong {
    margin-top: 68px;
  }

  .conference-perk {
    grid-template-columns: 1fr 1.3fr;
  }

  .conference-perk > p:not(.mono) {
    grid-column: 2;
  }

  .conference-perk a {
    grid-column: 2;
  }

  .application-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div {
    min-height: 260px;
  }

  .footer-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .footer-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--dark-line);
  }
}

@media (max-width: 620px) {
  .site-nav {
    height: 58px;
  }

  .brand img {
    width: 92px;
  }

  .nav-cta {
    min-width: 116px;
    padding-inline: 16px;
  }

  .hero::after {
    top: 58px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 13, 16, 0.3) 0%, rgba(12, 13, 16, 0.12) 72%, transparent 100%),
      rgba(12, 13, 16, 0.58);
  }

  dither-orbit {
    opacity: 0.82;
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 142px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 70px);
    line-height: 0.98;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-facts > div {
    min-height: 96px;
    padding: 16px var(--page-pad);
  }

  .section-band {
    min-height: 64px;
  }

  .section-band span:last-child {
    display: none;
  }

  .editorial-grid h2,
  .schedule-head h2,
  .who-grid h2,
  .prizes-head h2,
  .application-intro h2 {
    font-size: clamp(38px, 11.5vw, 56px);
  }

  .schedule-list li {
    grid-template-columns: 72px 1fr;
    padding-block: 22px;
  }

  .schedule-list time {
    font-size: 18px;
  }

  .role-list {
    grid-template-columns: 1fr;
  }

  .conference-perk {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 36px;
  }

  .conference-perk > p:not(.mono),
  .conference-perk a {
    grid-column: 1;
  }

  .two-up,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid label {
    min-height: 58px;
    border-top: 1px solid rgba(16, 17, 20, 0.48);
    border-left: 0;
  }

  .choice-grid label:first-child {
    border-top: 0;
  }

  .field-meta,
  .form-section-heading,
  .submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    min-height: auto;
    padding: 36px var(--page-pad);
    border-left: 0;
    border-top: 1px solid var(--dark-line);
  }

  .footer-grid > div:first-child {
    border-top: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .nav-cta {
    min-width: 104px;
    gap: 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-facts strong {
    font-size: 19px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
