:root {
  --bg: #f5f2ea;
  --ink: #3b3900;
  --banner-bg: #3b3900;
  --nav-button: #e4e92b;
  --muted: #68655d;
  --line: #d8d1c1;
  --paper: #fffdf7;
  --green: #243f30;
  --green-soft: #d9e4d8;
  --accent: #c64b31;
  --gold: #b8954b;
  --max: 1280px;
  --page-gutter: max(24px, calc((100% - var(--max)) / 2));
  --manifest-left-col: minmax(320px, 585px);
  --manifest-right-col: minmax(320px, 581px);
  --manifest-col-gap: clamp(48px, 6vw, 115px);
}

@font-face {
  font-family: "Noto Sans SC";
  src: url("public/fonts/NotoSansSC-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans SC", sans-serif;
  line-height: 1.5;
}

body.is-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 76px 0 0;
  z-index: 10;
  background: rgba(228, 233, 43, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: 180px;
  padding: 0 clamp(24px, 7.1vw, 102px);
  color: var(--ink);
  background: #fff;
  border-bottom: 0;
  backdrop-filter: blur(12px);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: 0;
  margin-right: auto;
}

.brand img {
  display: block;
  width: 232px;
  max-width: none;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 20px;
  line-height: 1.4;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 0;
  color: rgba(59, 57, 0, 0.58);
  font-weight: 400;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a.is-active {
  font-weight: 600;
}

.nav-cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.nav-cta {
  flex: 0 0 160px;
  width: 160px;
  margin-left: 52px;
  padding: 0;
  background: var(--nav-button);
  box-shadow: 0 0 0 var(--nav-button);
  color: var(--ink);
  border-color: var(--nav-button);
  font-size: 22px;
  line-height: 1.2;
  transform: translate(0, 0);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 220ms ease-out,
    color 160ms ease,
    transform 220ms ease-out;
}

.nav-cta:hover {
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--nav-button);
  color: var(--nav-button);
  border-color: var(--ink);
  transform: translate(-4px, -4px);
}

@media (min-width: 1800px) {
  .site-header {
    padding: 0 320px;
  }

  .nav-main,
  .site-nav {
    gap: 69px;
  }
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease-out;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 180ms ease-out;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -5px) rotate(0deg);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px) rotate(0deg);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--bg);
}

.hero {
  background: var(--banner-bg);
  padding: 0;
}

.hero picture {
  display: block;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-page {
  background: #fff;
}

.award-page {
  background: #fff;
}

.jury-page {
  background: #fff;
}

.about-hero {
  display: flex;
  justify-content: center;
  height: 722px;
  padding: 0;
  overflow: hidden;
  background: var(--banner-bg);
}

.about-hero img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
}

.award-page-hero {
  display: flex;
  justify-content: center;
  height: 722px;
  padding: 0;
  overflow: hidden;
  background: var(--nav-button);
}

.award-page-hero picture {
  display: block;
  height: 100%;
}

.award-page-hero img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
}

.jury-page-hero {
  display: flex;
  justify-content: center;
  height: 722px;
  padding: 0;
  overflow: hidden;
  background: var(--nav-button);
}

.jury-page-hero img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
}

section {
  padding: clamp(72px, 8vw, 120px) clamp(24px, 8vw, 160px);
}

section[id] {
  scroll-margin-top: 180px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(48px, 8vw, 128px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.about-section-head {
  display: grid;
  gap: 18px;
}

.about-section-head .section-kicker {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 25px;
}

.about-section-head h1,
.about-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 65px;
  line-height: 86px;
  font-weight: 800;
  letter-spacing: 0;
}

.award-page-head {
  display: grid;
  gap: 18px;
}

.award-page-head .section-kicker {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.award-page-head h1,
.award-page-head h2 {
  margin: 0;
  font-size: 65px;
  line-height: 86px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1,
.manifest h2,
.section-head h2,
.awards h2 {
  display: block;
  width: 100%;
  max-width: none;
  font-size: clamp(38px, 4.7vw, 86px);
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: 0;
}

.manifest {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 81px;
  min-height: 740px;
  padding: 100px var(--page-gutter) 80px;
  background: var(--nav-button);
  color: var(--ink);
}

.about-intro {
  display: grid;
  gap: 79px;
  min-height: 825px;
  padding: 115px var(--page-gutter) 142px;
  background: #fff;
}

.award-page-schedule {
  display: grid;
  gap: 62px;
  min-height: 577px;
  padding: 90px var(--page-gutter);
  background: var(--ink);
  color: var(--nav-button);
}

.award-page-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 45px);
  margin: 0;
  padding: 39px 0 0;
  list-style: none;
  border-top: 0;
}

.award-page-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: calc(100% - 4px);
  height: 2px;
  background: var(--nav-button);
}

.award-page-timeline li {
  position: relative;
  padding: 0;
  color: var(--nav-button);
}

.award-page-timeline li::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--nav-button);
}

.award-page-timeline time {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 35px;
  font-weight: 500;
}

.award-page-timeline strong,
.award-page-timeline span {
  font-size: 25px;
  line-height: 35px;
}

.award-page-timeline time,
.award-page-timeline strong,
.award-page-timeline span {
  display: block;
  height: auto;
  min-height: 0;
  max-height: none;
}

.award-page-timeline strong {
  margin-bottom: 3px;
  font-weight: 800;
}

.award-page-timeline span {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
}

html[lang="en"] .award-page-timeline span {
  font-size: 18px;
  line-height: 26px;
}

.award-categories {
  display: grid;
  gap: 100px;
  padding: 89px var(--page-gutter) 111px;
  background: #fff;
}

.category-list {
  display: grid;
  gap: 90px;
}

.category-list article {
  display: grid;
  grid-template-columns: 140px minmax(160px, 180px) minmax(0, 1fr);
  gap: 57px;
  align-items: start;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--ink);
}

.category-list .direction-mark {
  width: 100px;
  height: 100px;
}

.category-list .direction-mark img {
  width: 100px;
  height: 100px;
}

.category-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 37px;
  line-height: 55px;
  font-weight: 800;
}

.category-list p {
  grid-column: 3;
  margin: 0;
  color: var(--ink);
  font-size: 35px;
  line-height: 55px;
  font-weight: 800;
}

.category-list small {
  grid-column: 3;
  display: block;
  margin-top: 44px;
  color: var(--ink);
  font-size: 26px;
  line-height: 50px;
  font-weight: 500;
}

.award-apply-button {
  justify-self: center;
  min-height: 95px;
  padding: 20px 54px;
  color: var(--nav-button);
  background: var(--ink);
  box-shadow: 0 0 0 var(--ink);
  border-color: transparent;
  font-size: 30px;
  line-height: 55px;
  font-weight: 800;
  transform: translate(0, 0);
  transition:
    background-color 180ms ease,
    box-shadow 220ms ease-out,
    color 180ms ease,
    transform 220ms ease-out;
}

.award-apply-button:hover,
.award-apply-button:focus-visible {
  color: var(--ink);
  background: var(--nav-button);
  box-shadow: 14px 14px 0 var(--ink);
  border-color: transparent;
  transform: translate(-6px, -6px);
}

.award-eligibility {
  display: grid;
  gap: 80px;
  min-height: 1200px;
  padding: 110px var(--page-gutter) 130px;
  background: var(--nav-button);
}

.eligibility-list,
.award-level-list,
.fee-table {
  display: grid;
  border-top: 1px solid var(--ink);
}

.eligibility-list article {
  display: grid;
  grid-template-columns: 185px minmax(0, 963px);
  gap: 134px;
  align-items: center;
  min-height: 205px;
  border-bottom: 1px solid var(--ink);
}

.eligibility-list article:last-child {
  grid-template-columns: 222px minmax(0, 963px);
  gap: 97px;
}

.eligibility-list h3,
.award-level-list h3 {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  color: var(--ink);
  font-size: 37px;
  line-height: 55px;
  font-weight: 800;
}

.eligibility-list h3 {
  display: block;
}

.award-level-icon {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.award-level-title-copy {
  display: block;
  min-width: 0;
}

.award-level-title-en {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: 35px;
  line-height: 50px;
  white-space: nowrap;
}

.eligibility-list p,
.award-level-list p {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.award-levels {
  display: grid;
  gap: 87px;
  padding: 110px var(--page-gutter) 130px;
  background: #fff;
}

.award-level-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.award-level-head > div {
  flex: 1 1 auto;
  min-width: 0;
}

.award-level-head img {
  width: 158px;
  height: 158px;
}

.award-level-list article {
  display: grid;
  grid-template-columns: 360px minmax(0, 804px);
  gap: 116px;
  align-items: center;
  min-height: 294px;
  border-bottom: 1px solid var(--ink);
}

.award-level-list article:nth-child(2) {
  grid-template-columns: 360px minmax(0, 804px);
  gap: 116px;
}

.award-level-list article:nth-child(3) {
  grid-template-columns: 360px minmax(0, 804px);
  gap: 116px;
}

.award-level-list article:nth-child(4) {
  grid-template-columns: 360px minmax(0, 804px);
  gap: 116px;
}

.award-fees {
  display: grid;
  gap: 92px;
  padding: 115px var(--page-gutter);
  background: var(--ink);
  color: var(--nav-button);
}

.fee-table {
  border-color: var(--nav-button);
}

.fee-table > div {
  display: grid;
  grid-template-columns: 280px 160px 244px minmax(0, 566px);
  gap: 10px;
  min-height: 123px;
  align-items: center;
  border-bottom: 1px solid var(--nav-button);
}

.fee-table strong,
.fee-table span,
.fee-note {
  color: var(--nav-button);
}

.fee-table strong,
.fee-table span {
  font-size: 26px;
  line-height: 55px;
}

.fee-table strong {
  font-weight: 800;
}

.fee-table span {
  font-weight: 500;
}

.fee-note {
  margin: -59px 0 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

html[lang="en"] .category-list h3 {
  font-size: 34px;
  line-height: 42px;
}

html[lang="en"] .category-list article {
  grid-template-columns: 100px minmax(220px, 280px) minmax(0, 1fr);
  gap: 32px;
}

html[lang="en"] .category-list p {
  margin-left: 0;
  font-size: 28px;
  line-height: 42px;
}

html[lang="en"] .category-list small {
  margin-left: 0;
  font-size: 22px;
  line-height: 38px;
}

html[lang="en"] .criteria-list h3 {
  font-size: 30px;
  line-height: 44px;
}

html[lang="en"] .eligibility-list h3,
html[lang="en"] .award-level-list h3 {
  font-size: 30px;
  line-height: 42px;
}

html[lang="en"] .award-level-title-en {
  font-size: inherit;
  line-height: inherit;
}

html[lang="en"] .eligibility-list p,
html[lang="en"] .award-level-list p {
  font-size: 22px;
  line-height: 34px;
}

html[lang="en"] .fee-table strong,
html[lang="en"] .fee-table span {
  font-size: 21px;
  line-height: 34px;
}

html[lang="en"] .fee-note {
  font-size: 16px;
  line-height: 22px;
}

.about-body {
  max-width: 1279px;
}

.about-body p {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  text-align: justify;
}

.about-body p + p {
  margin-top: 40px;
}

.about-criteria {
  display: grid;
  gap: 69px;
  min-height: 1061px;
  padding: 115px var(--page-gutter) 147px;
  background: #efefef;
}

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

.criteria-list article {
  display: grid;
  grid-template-columns: 315px minmax(0, 818px);
  gap: 148px;
  align-items: center;
  min-height: 218px;
  border-bottom: 1px solid var(--ink);
}

.criteria-list article:nth-child(2) {
  grid-template-columns: 280px minmax(0, 818px);
  gap: 183px;
}

.criteria-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 35px;
  line-height: 55px;
  font-weight: 600;
}

.criteria-list p {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  text-align: justify;
}

.about-founders {
  display: grid;
  gap: 118px;
  min-height: 826px;
  padding: 144px var(--page-gutter);
  background: var(--ink);
  color: #fff;
}

.founder-row {
  display: grid;
  grid-template-columns: minmax(0, 602px) minmax(180px, 276px) 200px;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}

.founder-row blockquote {
  margin: 0;
  max-width: 602px;
  color: #fff;
  font-size: 26px;
  line-height: 55px;
  font-weight: 800;
}

.founder-row p {
  margin: 0;
  max-width: 276px;
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.founder-image {
  width: 200px;
  height: 200px;
  background-color: var(--nav-button);
  background-image: var(--founder-photo);
  background-position: center;
  background-size: cover;
  box-shadow: 14px 14px 0 var(--nav-button);
  transform: translate(-6px, -6px);
}

.about-hosts {
  min-height: 279px;
  padding: 112px var(--page-gutter) 93px;
  background: var(--nav-button);
}

.host-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 53px;
}

.host-logos > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.host-logos .section-kicker {
  flex: 0 0 auto;
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.host-logos img {
  display: block;
  max-height: 54px;
  max-width: 433px;
  width: auto;
}

.host-logos img.host-emblem {
  width: 136px;
  max-width: none;
  max-height: none;
}

.manifest-top {
  display: grid;
  grid-template-columns: var(--manifest-left-col) var(--manifest-right-col);
  justify-content: start;
  column-gap: var(--manifest-col-gap);
}

.manifest-bottom-row {
  display: grid;
  grid-template-columns: minmax(430px, 520px) minmax(0, 696px);
  justify-content: space-between;
  column-gap: clamp(48px, 4vw, 64px);
  width: 100%;
}

.manifest-top {
  align-items: start;
}

.manifest-top h2 {
  display: grid;
  margin: 0;
  max-width: 585px;
  font-size: clamp(48px, 3.1vw, 59px);
  line-height: 1.23;
  font-weight: 800;
}

.manifest-top h2 span {
  white-space: nowrap;
}

html[lang="en"] .manifest-top h2 {
  display: block;
  max-width: 520px;
  font-size: clamp(40px, 2.55vw, 49px);
  line-height: 1.16;
}

html[lang="en"] .manifest-top h2 span {
  display: inline;
  white-space: normal;
}

html[lang="en"] .manifest-top h2 span + span::before {
  content: " ";
}

.manifest-action {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.manifest-button {
  position: relative;
  width: min(100%, 581px);
  min-height: 95px;
  padding: 20px;
  border-color: transparent;
  color: var(--nav-button);
  font-size: clamp(22px, 1.56vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 0 0 var(--ink);
  transform: translate(0, 0);
  transition:
    background-color 180ms ease,
    box-shadow 220ms ease-out,
    color 180ms ease,
    transform 220ms ease-out;
}

.manifest-button:hover,
.manifest-button:focus-visible {
  background: #fff;
  box-shadow: 14px 14px 0 var(--ink);
  border-color: transparent;
  color: var(--ink);
  transform: translate(-6px, -6px);
}

.manifest-action p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.manifest-bottom {
  display: grid;
  grid-template-columns: var(--manifest-left-col) var(--manifest-right-col);
  grid-template-rows: auto auto;
  align-content: start;
  column-gap: var(--manifest-col-gap);
  row-gap: 44px;
}

.manifest-bottom-row {
  grid-column: 1 / -1;
}

.manifest-about,
.manifest-copy {
  padding-top: 0;
}

.manifest-about {
  display: grid;
  align-content: start;
  gap: 16px;
}

.manifest-about h1 {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(28px, 1.875vw, 36px);
  font-weight: 600;
  line-height: 1.5278;
}

.manifest-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  justify-self: end;
}

.manifest-about .section-kicker,
.manifest-copy .section-kicker {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.manifest-copy p:not(.section-kicker) {
  margin: 0;
  max-width: 696px;
  color: var(--ink);
  font-size: clamp(28px, 1.875vw, 36px);
  font-weight: 600;
  line-height: 1.5278;
}

.manifest-logo {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 487px);
  height: auto;
}

.section-head p,
.direction-item p,
.featured-talk p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
}

.small-note {
  margin-top: 18px;
  font-size: 14px;
}

.directions {
  display: grid;
  align-content: start;
  gap: 50px;
  min-height: 740px;
  padding: 90px var(--page-gutter) 100px;
  background: #fff;
  border-top: 0;
}

.directions .section-kicker {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.direction-list {
  display: grid;
  gap: 55px;
  width: 100%;
  max-width: 1281px;
}

.direction-item {
  display: grid;
  grid-template-columns: 70px 134px 120px 139px minmax(0, 818px);
  align-items: start;
  padding: 0;
  border-top: 0;
}

.direction-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
}

.direction-mark img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.direction-item h2 {
  grid-column: 3;
  margin: 0;
  font-size: 30px;
  line-height: 55px;
  font-weight: 600;
}

.direction-item p {
  grid-column: 5;
  margin: 0;
  max-width: 818px;
  color: var(--ink);
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.awards {
  position: relative;
  overflow: hidden;
  min-height: 652px;
  padding: 0;
  background: #fff;
  color: var(--ink);
}

.award-match {
  position: absolute;
  bottom: 0;
  right: var(--page-gutter);
  z-index: 2;
  width: 156px;
  height: 632px;
  object-fit: fill;
  pointer-events: none;
}

.awards-inner {
  display: grid;
  gap: 84px;
  min-height: 570px;
  margin: 82px 0 0;
  padding: 78px var(--page-gutter) 129px;
  background: #efefef;
}

.award-heading {
  display: grid;
  gap: 21px;
}

.awards .section-kicker {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.award-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(59, 57, 0, 0.5);
  font-size: 37px;
  line-height: 55px;
  font-weight: 800;
}

.award-tab {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.award-tab:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.award-tab.is-active {
  color: var(--ink);
  font-weight: 800;
}

.award-tabs span {
  display: inline-block;
}

.award-spotlight {
  display: grid;
  grid-template-columns: 321px minmax(0, 623px);
  gap: 142px;
  align-items: center;
}

.award-badge {
  display: grid;
  grid-template-columns: 158px 113px;
  gap: 50px;
  align-items: center;
}

.award-badge img {
  display: block;
  width: 158px;
  height: 158px;
}

.award-badge p {
  margin: 0;
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 37px;
  line-height: 37px;
  font-weight: 900;
}

.award-description {
  margin: 0;
  max-width: 623px;
  height: auto;
  max-height: 100%;
  overflow: auto;
  color: var(--ink);
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.talk {
  max-width: calc(var(--max) + 320px);
  margin: 0 auto;
}

.section-head {
  max-width: 820px;
  margin-bottom: 64px;
}

.jury {
  max-width: none;
  min-height: 1550px;
  margin: 0;
  padding: 99px var(--page-gutter) 154px;
  background: var(--ink);
  color: #fff;
}

.jury .section-head {
  max-width: 1280px;
  margin: 0 auto 102px;
}

.jury .section-kicker {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.jury .section-head h2 {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(46px, 3.38vw, 65px);
  line-height: 1.323;
  font-weight: 800;
}

.jury .section-head h1 {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(46px, 3.38vw, 65px);
  line-height: 1.323;
  font-weight: 800;
}

.jury .section-head p:not(.section-kicker) {
  margin: 0;
  width: 100%;
  max-width: none;
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.jury-grid {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  gap: 60px 70px;
  justify-content: start;
  max-width: 1280px;
  margin: 0 auto;
}

.jury-grid article {
  display: grid;
  align-content: start;
  position: relative;
}

.jury-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 200px;
  height: 200px;
  background: var(--nav-button);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0);
  transition:
    opacity 120ms ease-out,
    transform 220ms ease-out;
}

.jury-grid article:hover::before {
  opacity: 1;
  transform: translate(14px, 14px);
}

.jury-grid article div,
.jury-avatar {
  width: 200px;
  height: 200px;
  margin-bottom: 32px;
  background-color: var(--nav-button);
  background-image: var(--jury-photo);
  background-position: center;
  background-size: cover;
}

.jury-avatar {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transform-origin: center;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.jury-avatar:hover {
  transform: translate(-6px, -6px);
  filter: brightness(1.03);
}

.jury-avatar:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.jury-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.jury-grid p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.jury-perspective {
  padding: 137px var(--page-gutter) 145px;
  background: #fff;
  color: var(--ink);
}

.jury-perspective-head {
  max-width: 1280px;
  margin: 0 auto 77px;
}

.jury-perspective .section-kicker {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.jury-perspective h2 {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--ink);
  font-size: clamp(46px, 3.38vw, 65px);
  line-height: 1.323;
  font-weight: 800;
}

.perspective-list {
  max-width: 1280px;
  margin: 0 auto;
}

.perspective-list article {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 74px;
  padding: 78px 0 75px;
  border-top: 1px solid rgba(59, 57, 0, 0.74);
}

.perspective-profile {
  display: grid;
  align-content: start;
}

.perspective-profile div {
  width: 200px;
  height: 200px;
  margin-bottom: 29px;
  background-color: var(--nav-button);
  background-image: var(--jury-photo);
  background-position: center;
  background-size: cover;
}

.perspective-profile p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.perspective-list blockquote {
  margin: 0;
  max-width: 1010px;
  color: var(--ink);
  font-size: clamp(28px, 1.82vw, 35px);
  line-height: 1.57;
  font-weight: 800;
}

.jury-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.42);
}

.jury-modal[hidden] {
  display: none;
}

.jury-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 850px);
  gap: 70px;
  width: min(1280px, calc(100vw - 64px));
  height: min(1020px, calc(100vh - 64px));
  padding: 70px 40px 70px 70px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.jury-modal-profile {
  display: grid;
  align-content: start;
  gap: 60px;
}

.jury-modal-avatar {
  width: 200px;
  height: 200px;
  background-color: var(--nav-button);
  background-image: var(--jury-photo);
  background-position: center;
  background-size: cover;
}

.jury-modal-profile h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.jury-modal-copy {
  width: min(850px, 100%);
  max-height: min(871px, calc(100vh - 140px));
  padding-right: 92px;
  overflow-y: auto;
  color: var(--ink);
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  white-space: pre-line;
  scrollbar-color: var(--ink) transparent;
  scrollbar-width: thin;
}

.jury-modal-copy::-webkit-scrollbar {
  width: 10px;
}

.jury-modal-copy::-webkit-scrollbar-track {
  background: transparent;
}

.jury-modal-copy::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  background-clip: content-box;
}

.jury-modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.jury-modal-close::before,
.jury-modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.jury-modal-close::after {
  transform: rotate(-45deg);
}

.jury-modal-close:hover {
  color: #fff;
  background: var(--ink);
}

.jury-modal-close:focus-visible {
  outline: 0;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.42);
}

.signup-modal[hidden] {
  display: none;
}

.signup-modal-panel {
  position: relative;
  display: grid;
  grid-template-rows: 602px auto;
  gap: 36px;
  width: min(1280px, calc(100vw - 64px));
  max-height: calc(100vh - 64px);
  padding: 90px 90px 80px;
  overflow-y: auto;
  background: #fff;
  color: var(--ink);
}

.signup-modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.signup-modal-close::before,
.signup-modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.signup-modal-close::after {
  transform: rotate(-45deg);
}

.signup-modal-close:hover {
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

.signup-modal-close:focus-visible {
  outline: 0;
}

.signup-modal-mobile-head {
  display: contents;
}

.signup-modal-mobile-head p {
  display: none;
}

.signup-modal-media {
  width: 100%;
  height: 602px;
  background: var(--ink);
  background-image: url("public/assets/signup-modal-hero-20260606.jpg");
  background-position: center;
  background-size: cover;
}

.signup-modal-downloads {
  display: grid;
  grid-template-columns: 96px minmax(0, 919px);
  grid-template-areas:
    "title actions"
    "agreement agreement";
  gap: 75px;
  row-gap: 40px;
  align-items: center;
}

.signup-modal-downloads p {
  grid-area: title;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 33px;
  font-weight: 500;
}

.signup-modal-actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: 271px 270px 270px;
  gap: 54px;
  align-items: stretch;
}

.signup-modal-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--nav-button);
  box-shadow: 0 0 0 var(--nav-button);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  transform: translate(0, 0);
  transition:
    background-color 160ms ease,
    box-shadow 200ms ease-out,
    color 160ms ease,
    transform 200ms ease-out;
  white-space: normal;
}

.signup-modal-actions a:hover,
.signup-modal-actions a:focus-visible {
  color: var(--nav-button);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--nav-button);
  transform: translate(-4px, -4px);
}

.signup-modal-actions a.is-disabled,
.signup-modal-actions a.is-disabled:hover,
.signup-modal-actions a.is-disabled:focus-visible {
  color: rgba(59, 57, 0, 0.3);
  background: #e4e4e4;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.signup-modal-agreement {
  grid-area: agreement;
  display: grid;
  grid-template-columns: 22px max-content;
  gap: 12px;
  align-items: start;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  color: var(--ink);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  cursor: pointer;
}

.signup-modal-agreement input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.signup-modal-checkbox {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 2px solid var(--ink);
  background: transparent;
}

.signup-modal-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 13px;
  border: solid var(--nav-button);
  border-width: 0 3px 3px 0;
  opacity: 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

.signup-modal-agreement input:checked + .signup-modal-checkbox {
  background: var(--ink);
}

.signup-modal-agreement input:checked + .signup-modal-checkbox::after {
  opacity: 1;
}

.signup-modal-agreement a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 160ms ease;
}

.signup-modal-agreement a:hover,
.signup-modal-agreement a:focus-visible {
  opacity: 0.62;
}

.signup-agreement-modal {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  padding: 86px 90px 74px;
  background: #fff;
  color: var(--ink);
}

.signup-agreement-modal[hidden] {
  display: none;
}

.signup-agreement-content {
  overflow-y: auto;
  padding: 0 22px 0 0;
  scrollbar-color: var(--ink) transparent;
}

.signup-agreement-content h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
}

.signup-agreement-content h3 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.signup-agreement-content p,
.signup-agreement-content li {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.82;
  font-weight: 500;
}

.signup-agreement-content strong {
  font-weight: 800;
}

.signup-agreement-content ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
}

.schedule {
  min-height: 750px;
  padding: 90px var(--page-gutter);
  background: var(--nav-button);
  color: var(--ink);
}

.schedule .section-head {
  max-width: 650px;
  margin: 0 0 62px;
}

.schedule .section-kicker {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.schedule .section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 3.38vw, 65px);
  line-height: 1.323;
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: space-between;
  column-gap: clamp(24px, 3vw, 45px);
  max-width: 1282px;
  margin: 0 0 78px;
  padding: 39px 0 0;
  list-style: none;
  border-top: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: calc(100% - 4px);
  height: 2px;
  background: var(--ink);
}

.timeline li {
  position: relative;
  padding: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
}

.timeline time,
.timeline strong,
.timeline span {
  display: block;
  height: auto;
  min-height: 0;
  max-height: none;
}

.timeline time {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 35px;
  font-weight: 500;
}

.timeline strong {
  margin-bottom: 3px;
  font-size: 25px;
  line-height: 35px;
  font-weight: 800;
}

.timeline span {
  color: var(--ink);
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
}

.centered {
  margin: 0 auto;
}

.schedule-button {
  display: flex;
  width: min(100%, 641px);
  min-height: 95px;
  margin: 0 auto;
  padding: 20px 54px;
  border-color: transparent;
  color: var(--nav-button);
  font-size: clamp(22px, 1.56vw, 30px);
  line-height: 55px;
  font-weight: 800;
  box-shadow: 0 0 0 var(--ink);
  transform: translate(0, 0);
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    box-shadow 220ms ease-out,
    color 180ms ease,
    transform 220ms ease-out;
}

.mobile-label {
  display: none;
}

.schedule-button:hover,
.schedule-button:focus-visible {
  background: #fff;
  box-shadow: 14px 14px 0 var(--ink);
  border-color: transparent;
  color: var(--ink);
  transform: translate(-6px, -6px);
}

.talk {
  max-width: none;
  min-height: 1020px;
  margin: 0;
  padding: 89px var(--page-gutter) 126px;
  background: var(--ink);
  color: #fff;
}

.talk .section-head {
  max-width: 1280px;
  margin: 0 auto 77px;
}

.talk .section-kicker {
  margin: 0 0 26px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.talk .section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 3.38vw, 65px);
  line-height: 1.231;
  font-weight: 800;
}

.featured-talk {
  --talk-thumb-size: 298px;
  display: grid;
  grid-template-columns: var(--talk-thumb-size) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: 1280px;
  min-height: var(--talk-thumb-size);
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border: 0;
  box-shadow: 0 0 0 var(--nav-button);
  color: var(--ink);
  cursor: pointer;
  transform: translate(0, 0);
  transition:
    box-shadow 220ms ease-out,
    transform 220ms ease-out;
}

.featured-talk:hover {
  box-shadow: 14px 14px 0 var(--nav-button);
  transform: translate(-6px, -6px);
}

.featured-talk:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
}

.talk-thumb {
  width: var(--talk-thumb-size);
  height: var(--talk-thumb-size);
  background: var(--nav-button);
  background-image: url("public/assets/gfa-talk-vol-01.jpg");
  background-position: center;
  background-size: cover;
}

.featured-talk > div:last-child {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: var(--talk-thumb-size);
  padding: 32px 20px 32px 60px;
}

.featured-talk h3 {
  margin: 0 0 14px;
  max-width: 100%;
  color: var(--ink);
  font-size: 30px;
  line-height: 55px;
  font-weight: 800;
}

.featured-talk p {
  margin: 0;
  max-width: 900px;
  color: var(--ink);
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
}

.featured-talk span,
.talk-grid span {
  color: inherit;
  font-size: 18px;
  line-height: 42px;
  font-weight: 500;
}

.featured-talk span {
  position: static;
  margin-top: auto;
  color: var(--ink);
  font-size: 16px;
}

@media (min-width: 981px) {
  html[lang="en"] .featured-talk {
    box-sizing: border-box;
    background: #fff;
    padding: 36px 0 0 36px;
  }

  html[lang="en"] .featured-talk.is-content-taller {
    padding: 36px 0 0 36px;
  }

  html[lang="en"] .talk-thumb {
    margin: 0;
  }

  html[lang="en"] .featured-talk > div:last-child {
    align-self: stretch;
    background: #fff;
  }
}

.talk-grid {
  display: grid;
  grid-template-columns: 360px 300px 300px;
  gap: 160px;
  max-width: 1280px;
  margin: 77px auto 0;
  background: transparent;
}

.talk-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 142px;
  padding: 0;
  background: transparent;
}

.talk-grid h3 {
  min-height: 90px;
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 45px;
  font-weight: 500;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 482px) minmax(260px, 469px);
  grid-template-rows: auto auto;
  justify-content: space-between;
  align-content: start;
  gap: 84px 330px;
  min-height: 400px;
  padding: 98px var(--page-gutter) 50px;
  background: #efefef;
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  max-width: 482px;
  color: var(--ink);
  font-size: 25px;
  line-height: 42px;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-self: end;
  gap: 16px;
  color: var(--ink);
  font-size: 18px;
  line-height: 42px;
  font-weight: 500;
}

.footer-socials a {
  position: relative;
  white-space: nowrap;
  transition: opacity 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 0.68;
}

.footer-social-qr span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  z-index: 5;
  display: block;
  width: 156px;
  padding: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(59, 57, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.footer-social-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-social-qr:hover span,
.footer-social-qr:focus span,
.footer-social-qr:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.footer-qr-dialog[hidden] {
  display: none;
}

.footer-qr-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(59, 57, 0, 0.62);
}

.footer-qr-dialog-panel {
  width: min(72vw, 280px);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.footer-qr-dialog-panel img {
  display: block;
  width: 100%;
  height: auto;
  user-select: auto;
  -webkit-user-select: auto;
  -webkit-touch-callout: default;
}

.footer-bottom {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-top: 7px;
  border-top: 1px solid rgb(59 57 0 / 50%);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.site-footer small {
  color: var(--ink);
  font-size: 18px;
  line-height: 42px;
  font-weight: 500;
}

.footer-meta small {
  display: block;
  font-size: 16px;
  line-height: 28px;
}

.footer-meta .language-switch {
  font-size: 16px;
}

.site-footer .footer-icp {
  display: block;
  height: 30px;
  opacity: 0.5;
  font-size: 12px;
  line-height: 30px;
}

.language-switch {
  position: relative;
  flex: 0 0 140px;
  display: flex;
  justify-content: flex-end;
  color: var(--ink);
  font-size: 18px;
  line-height: 42px;
  font-weight: 500;
}

.nav-language-switch {
  display: none;
}

.header-language-switch {
  flex: 0 0 120px;
  margin-left: 0;
  margin-right: 0;
}

.language-current,
.language-menu button {
  width: 140px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header-language-switch .language-current,
.header-language-switch .language-menu button,
.header-language-switch .language-menu {
  width: 120px;
}

.header-language-switch .language-menu {
  top: 46px;
  bottom: auto;
}

.language-current {
  height: 42px;
  text-align: right;
}

.language-current span {
  position: relative;
  display: inline-block;
}

.language-current span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

.language-current:hover span::after,
.language-current:focus-visible span::after {
  transform: scaleX(1);
}

.language-current[aria-expanded="true"] span::after {
  transform: scaleX(0);
}

.language-menu {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 20;
  width: 140px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(59, 57, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease-out,
    transform 180ms ease-out;
}

.language-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  display: block;
  text-align: center;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: #fff;
  background: var(--ink);
}

@media (max-width: 1439px) {
  .featured-talk {
    grid-template-columns: 298px minmax(0, 1fr);
    min-height: 0;
    padding: 0;
  }

  .featured-talk.is-content-taller {
    padding: 36px;
  }

  .talk-thumb {
    margin: 0;
  }

  .featured-talk > div:last-child {
    padding: 32px 20px 32px 36px;
  }

}

@media (max-width: 980px) {
  body.is-nav-open::before {
    opacity: 1;
  }

  .site-header {
    height: 76px;
    padding: 0 24px;
    gap: 18px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    border: 0;
    background: var(--nav-button);
  }

  .site-nav {
    position: absolute;
    inset: 76px 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    border-bottom-color: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top;
    visibility: hidden;
    transition:
      max-height 260ms ease-out,
      padding 260ms ease-out,
      opacity 180ms ease-out,
      transform 260ms ease-out,
      border-color 180ms ease-out,
      visibility 0s linear 260ms;
  }

  .nav-main {
    gap: 0;
  }

  .brand img {
    width: clamp(180px, 45vw, 232px);
  }

  .nav-cta {
    display: none;
  }

  .header-language-switch {
    display: none;
  }

  .site-nav.is-open {
    max-height: calc(100dvh - 76px);
    padding: 14px 24px 24px;
    border-bottom-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      max-height 300ms ease-out,
      padding 300ms ease-out,
      opacity 180ms ease-out,
      transform 300ms ease-out,
      border-color 180ms ease-out,
      visibility 0s;
  }

  .site-nav a {
    padding: 15px 0;
  }

  .nav-language-switch {
    display: block;
    flex: none;
    width: 100%;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 18px;
    line-height: 36px;
  }

  .nav-language-switch .language-current,
  .nav-language-switch .language-menu button {
    width: 100%;
    height: 44px;
    text-align: left;
  }

  .nav-language-switch .language-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    background: transparent;
    box-shadow: none;
  }

  .nav-language-switch .language-menu button {
    padding-left: 24px;
  }

  .section-grid,
  .featured-talk,
  .site-footer,
  .criteria-list article,
  .criteria-list article:nth-child(2),
  .founder-row {
    grid-template-columns: 1fr;
  }

  .featured-talk > div:last-child {
    padding-right: 60px;
  }

  .about-hero {
    height: auto;
  }

  .award-page-hero picture {
    height: auto;
  }

  .about-hero img,
  .award-page-hero img,
  .jury-page-hero img {
    width: 100%;
    height: auto;
  }

  .award-page-hero,
  .jury-page-hero {
    height: auto;
  }

  .about-intro,
  .about-criteria,
  .about-founders,
  .about-hosts,
  .award-page-schedule,
  .award-categories,
  .award-eligibility,
  .award-levels,
  .award-fees,
  .jury-perspective {
    min-height: auto;
    padding: 72px 24px;
  }

  .about-section-head h1,
  .about-section-head h2,
  .award-page-head h1,
  .award-page-head h2,
  .jury-perspective h2 {
    font-size: 44px;
    line-height: 1.16;
  }

  .about-body p,
  .criteria-list p,
  .founder-row blockquote,
  .category-list p,
  .category-list small,
  .eligibility-list p,
  .award-level-list p {
    font-size: 22px;
    line-height: 36px;
  }

  .criteria-list article,
  .criteria-list article:nth-child(2) {
    gap: 24px;
    min-height: auto;
    padding: 36px 0;
  }

  .criteria-list h3 {
    font-size: 30px;
    line-height: 42px;
  }

  .award-page-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 0 28px;
    border-top: 0;
    border-left: 0;
  }

  .award-page-timeline::before {
    display: block;
    top: 4px;
    bottom: 0;
    left: 0;
    width: 2px;
    height: auto;
  }

  .award-page-timeline li::before {
    top: 4px;
    left: -38px;
  }

  .category-list article,
  .eligibility-list article,
  .eligibility-list article:last-child,
  .fee-table > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .award-level-list article,
  .award-level-list article:nth-child(2),
  .award-level-list article:nth-child(3),
  .award-level-list article:nth-child(4) {
    --award-level-mobile-padding: 40px;
    grid-template-columns: 1fr;
    gap: var(--award-level-mobile-padding);
    align-items: start;
    min-height: auto;
    padding: var(--award-level-mobile-padding) 0;
  }

  .category-list article {
    padding-bottom: 56px;
  }

  .category-list p,
  .category-list small {
    grid-column: auto;
    margin-left: 0;
    margin-top: 0;
  }

  .category-list h3,
  .eligibility-list h3,
  .award-level-list h3 {
    font-size: 32px;
    line-height: 42px;
  }

  .award-level-list h3 {
    gap: 18px;
  }

  .award-level-icon {
    width: 72px;
    height: 72px;
  }

  .award-level-title-en {
    font-size: 30px;
    line-height: 38px;
  }

  .award-level-head {
    display: grid;
    gap: 28px;
  }

  .fee-table > div {
    padding: 28px 0;
  }

  .fee-note {
    margin: 0;
  }

  .founder-row {
    gap: 28px;
  }

  .founder-image {
    width: min(200px, 100%);
  }

  .host-logos,
  .host-logos > div {
    align-items: flex-start;
  }

  .host-logos {
    flex-direction: column;
    gap: 36px;
  }

  .host-logos > div {
    flex-direction: column;
  }

  .host-logos img {
    max-width: min(100%, 433px);
    height: auto;
  }

  .manifest {
    min-height: auto;
    padding: 72px 24px;
  }

  .manifest-top,
  .manifest-bottom-row {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .manifest-button {
    width: 100%;
  }

  .directions {
    min-height: auto;
    padding: 72px 24px;
  }

  .jury,
  .schedule,
  .talk,
  .site-footer {
    min-height: auto;
    padding: 72px 24px;
  }

  .site-footer p {
    font-size: 23px;
    line-height: 40px;
  }

  .manifest-logo {
    position: static;
    grid-column: auto;
    justify-self: center;
    width: min(100%, 487px);
    margin-right: auto;
    margin-left: auto;
    margin-top: 12px;
  }

  .direction-item {
    grid-template-columns: 70px 1fr;
    column-gap: 28px;
  }

  .direction-item h2 {
    grid-column: 2;
  }

  .direction-item p {
    grid-column: 2;
  }

  .award-spotlight,
  .talk-grid {
    grid-template-columns: 1fr;
  }

  .awards {
    min-height: auto;
    padding: 0;
  }

  .award-match {
    display: none;
  }

  .awards-inner {
    min-height: auto;
    margin: 0;
    padding: 72px 24px;
    gap: 56px;
  }

  .award-spotlight {
    gap: 36px;
  }

  .jury-grid {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
  }

  .perspective-list article {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 42px;
    min-height: auto;
    padding: 56px 0;
  }

  .perspective-list blockquote {
    font-size: 28px;
    line-height: 1.55;
  }

  .jury-modal-panel {
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
    gap: 32px;
    padding: 48px 32px 48px 48px;
  }

  .signup-modal-panel {
    grid-template-rows: minmax(280px, 1fr) auto;
    gap: 36px;
    padding: 72px 48px 48px;
  }

  .signup-modal-media {
    height: auto;
    min-height: 280px;
  }

  .signup-modal-downloads {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "actions"
      "agreement";
    gap: 18px;
  }

  .signup-modal-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .signup-modal-agreement {
    grid-template-columns: 22px minmax(0, max-content);
    width: fit-content;
  }

  .signup-agreement-modal {
    padding: 72px 32px 40px;
  }

  .signup-agreement-content h2 {
    font-size: 30px;
  }

  .signup-agreement-content h3 {
    font-size: 21px;
  }

  .signup-agreement-content p,
  .signup-agreement-content li {
    font-size: 16px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 0 52px;
    border-top: 0;
    border-left: 0;
  }

  .timeline::before {
    display: block;
    top: 4px;
    bottom: 0;
    left: 24px;
    width: 2px;
    height: auto;
  }

  .timeline li::before {
    top: 4px;
    left: -37px;
  }

  .timeline time {
    margin-bottom: 8px;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
  }

  .footer-social-qr span {
    display: none;
  }

  .footer-qr-dialog-panel {
    width: min(68vw, 260px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0;
  }

  .language-switch {
    flex-basis: auto;
    justify-content: flex-start;
  }

  .footer-bottom .language-switch {
    display: none;
  }

  .footer-meta small {
    font-size: 12px;
    line-height: 20px;
  }

  .language-current {
    text-align: left;
  }

  .language-menu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 620px) {
  .hero img {
    height: auto;
    min-height: 0;
  }

  section {
    padding: 60px 22px;
  }

  h1,
  .manifest h2,
  .section-head h2,
  .awards h2,
  .jury .section-head h2,
  .schedule .section-head h2,
  .talk .section-head h2 {
    font-size: 32px;
    line-height: 1.22;
    text-wrap: balance;
  }

  .about-section-head h1,
  .about-section-head h2,
  .award-page-head h1,
  .award-page-head h2,
  .jury .section-head h1,
  .jury-perspective h2 {
    font-size: 32px;
    line-height: 1.22;
    text-wrap: balance;
  }

  .about-body p,
  .criteria-list p,
  .founder-row blockquote,
  .category-list p,
  .category-list small,
  .eligibility-list p,
  .award-level-list p {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
  }

  .fee-table strong,
  .fee-table span {
    font-size: 20px;
    line-height: 31px;
  }

  .fee-table > div:first-child {
    display: none;
  }

  .fee-table > div:not(:first-child) span:nth-of-type(1)::before {
    content: "标准价：";
  }

  .fee-table > div:not(:first-child) span:nth-of-type(2)::before {
    content: "早鸟价(7.30前)：";
  }

  html[lang="zh-Hant"] .fee-table > div:not(:first-child) span:nth-of-type(1)::before {
    content: "標準價：";
  }

  html[lang="zh-Hant"] .fee-table > div:not(:first-child) span:nth-of-type(2)::before {
    content: "早鳥價(7.30前)：";
  }

  html[lang="en"] .fee-table > div:not(:first-child) span:nth-of-type(1)::before {
    content: "Standard price: ";
  }

  html[lang="en"] .fee-table > div:not(:first-child) span:nth-of-type(2)::before {
    content: "Early-bird price (before 7.30): ";
  }

  .fee-table > div:not(:first-child) span:last-child {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    opacity: 0.76;
  }

  .fee-table > div {
    gap: 12px;
    padding: 24px 0;
  }

  .fee-note {
    font-size: 14px;
    line-height: 22px;
  }

  .criteria-list h3 {
    font-size: 24px;
    line-height: 34px;
    text-wrap: balance;
  }

  .award-apply-button {
    width: 100%;
    min-height: 72px;
    padding: 18px 22px;
    font-size: 20px;
    line-height: 1.35;
  }

  .schedule-button .desktop-label {
    display: none;
  }

  .schedule-button .mobile-label {
    display: inline;
  }

  .award-tabs {
    gap: 8px;
    font-size: 24px;
    line-height: 1.35;
  }

  .award-badge {
    grid-template-columns: 96px 1fr;
    gap: 28px;
  }

  .award-badge img {
    width: 96px;
    height: 96px;
  }

  .award-badge p {
    font-size: 26px;
    line-height: 28px;
  }

  .award-description {
    font-size: 20px;
    line-height: 1.6;
  }

  .manifest-top h2 span {
    white-space: normal;
  }

  .manifest {
    padding: 60px 22px;
  }

  .manifest-about h1,
  .manifest-copy p:not(.section-kicker) {
    font-size: 25px;
    line-height: 1.44;
    text-wrap: balance;
  }

  .manifest-button {
    min-height: 72px;
    padding: 18px 22px;
    font-size: 20px;
  }

  .directions {
    gap: 36px;
    padding: 60px 22px;
  }

  .schedule,
  .talk,
  .site-footer {
    padding: 60px 22px;
  }

  .direction-list {
    gap: 40px;
  }

  .direction-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .direction-item h2 {
    grid-column: auto;
    font-size: 26px;
    line-height: 1.3;
  }

  .direction-item p {
    grid-column: auto;
    font-size: 18px;
    line-height: 1.6;
  }

  .jury-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .jury {
    min-height: auto;
    padding: 72px 22px;
  }

  .jury .section-head {
    margin-bottom: 56px;
  }

  .jury .section-head p:not(.section-kicker) {
    font-size: 18px;
    line-height: 1.6;
  }

  .founder-image {
    justify-self: center;
  }

  .category-list h3,
  .eligibility-list h3,
  .award-level-list h3 {
    font-size: 28px;
    line-height: 38px;
    text-wrap: balance;
  }

  .award-level-title-en {
    font-size: 26px;
    line-height: 34px;
  }

  .jury-grid article div,
  .jury-avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .jury-grid article::before {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .jury-perspective {
    padding: 60px 22px;
  }

  .jury-perspective-head {
    margin-bottom: 42px;
  }

  .perspective-list article {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0;
  }

  .perspective-profile div {
    width: min(200px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .perspective-list blockquote {
    font-size: 21px;
    line-height: 1.55;
  }

  .jury-modal {
    padding: 18px;
  }

  .jury-modal-panel {
    grid-template-columns: 1fr 50px;
    gap: 28px;
    width: calc(100vw - 36px);
    height: calc(100vh - 36px);
    padding: 24px;
  }

  .jury-modal-profile {
    grid-column: 1 / -1;
    gap: 20px;
  }

  .jury-modal-avatar {
    width: min(160px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .jury-modal-profile h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .jury-modal-copy {
    grid-column: 1 / -1;
    max-height: none;
    padding-right: 58px;
    font-size: 16px;
    line-height: 28px;
  }

  .jury-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
  }

  .signup-modal {
    padding: 18px;
  }

  .signup-modal-panel {
    grid-template-rows: auto auto;
    width: calc(100vw - 36px);
    height: auto;
    max-height: calc(100vh - 36px);
    gap: 20px;
    padding: 24px 24px 24px;
    overflow-y: auto;
  }

  .signup-modal-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    order: 1;
  }

  .signup-modal-mobile-head p {
    display: block;
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
  }

  .signup-modal-close {
    position: static;
    right: 24px;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
  }

  .signup-modal-close:hover,
  .signup-modal-close:focus-visible {
    color: var(--ink);
    background: transparent;
  }

  .signup-modal-media {
    order: 2;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    background-image: url("public/assets/signup-modal-mobile-hero.jpg");
  }

  .signup-modal-downloads {
    order: 3;
    grid-template-areas:
      "actions"
      "agreement";
    gap: 20px;
  }

  .signup-modal-downloads p {
    display: none;
  }

  .signup-modal-actions a {
    min-height: 50px;
    white-space: normal;
  }

  .signup-modal-actions a {
    min-height: 48px;
    padding: 0 12px;
    font-size: 16px;
    line-height: 1.25;
  }

  .signup-modal-agreement {
    grid-template-columns: 20px minmax(0, max-content);
    gap: 10px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  .signup-modal-agreement > span:last-child {
    max-width: min(270px, calc(100vw - 112px));
  }

  .signup-modal-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }

  .signup-modal-checkbox::after {
    width: 6px;
    height: 11px;
    border-width: 0 2px 2px 0;
  }

  .signup-agreement-modal {
    padding: 72px 24px 36px;
  }

  .signup-agreement-content h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .signup-agreement-content h3 {
    font-size: 18px;
    line-height: 1.45;
  }

  .signup-agreement-content p,
  .signup-agreement-content li {
    font-size: 14px;
    line-height: 1.75;
  }

  .featured-talk {
    gap: 28px;
    padding: 24px;
  }

  .talk-thumb {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    aspect-ratio: 1;
  }

  .featured-talk > div:last-child {
    min-height: 0;
    padding: 0;
  }

  .featured-talk h3,
  .talk-grid h3 {
    font-size: 24px;
    line-height: 1.45;
    text-wrap: balance;
  }

  .featured-talk p {
    font-size: 18px;
    line-height: 30px;
  }

  .featured-talk span,
  .talk-grid span {
    font-size: 16px;
    line-height: 28px;
  }
}
