:root {
  --ink: #111;
  --muted: #666;
  --line: #dedede;
  --soft: #f7f7f7;
  --max: 1320px;
  --pad: clamp(22px, 5vw, 76px);
  --nav-height: 72px;
}

* { box-sizing: border-box; }
html {
  background: var(--ink);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-openai-sans);
  letter-spacing: -.045em;
}
body.hero-at-top { background: #fff; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; }

html[lang="ja"] body,
html[lang="zh-Hans"] body,
html[lang="ja"] .page :where(h1, h2, h3, p, li, strong, a, button, span),
html[lang="zh-Hans"] .page :where(h1, h2, h3, p, li, strong, a, button, span) {
  letter-spacing: 0;
}

html[lang="ja"] .page :where(h1, h2, h3, p, li, strong, a),
html[lang="zh-Hans"] .page :where(h1, h2, h3, p, li, strong, a) {
  word-break: normal;
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.nav {
  height: var(--nav-height);
  border-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  background: transparent;
  z-index: 10;
  isolation: isolate;
  transition: color .32s ease, border-color .32s ease;
}
.nav-inner {
  position: relative;
  width: min(100%, var(--max));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}
.brand-mark img { width: 90px; display: block; transition: filter .35s ease; }
.nav a { text-decoration: none; font-size: 13px; }
.nav nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateX(-50%);
}
.nav nav a { color: #777; transition: color .2s; }
.nav nav a:hover,
.nav nav a[aria-current="page"] { color: var(--ink); }
.nav nav a[aria-current="page"] { font-weight: 700; }
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-language {
  position: relative;
  width: auto;
  min-height: 40px;
}
.header-language-trigger {
  width: 100%;
  min-height: 40px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, .055);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease;
}
.header-language-trigger:hover,
.header-language-trigger:focus-visible,
.header-language.is-open .header-language-trigger {
  background: rgba(0, 0, 0, .1);
}
.header-language-trigger:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .16);
  outline-offset: 2px;
}
.header-language-trigger svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}
.header-language-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.header-language-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  right: 0;
  width: 146px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  background: rgba(247, 247, 247, .98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
  backdrop-filter: blur(16px);
}
.header-language-menu[hidden] {
  display: none;
}
.header-language-menu button {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 11px;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease;
}
.header-language-menu button:hover,
.header-language-menu button:focus-visible {
  background: rgba(0, 0, 0, .07);
  outline: 0;
}
.header-language-menu button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}
.header-language-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[data-admin-console][hidden] {
  display: none !important;
}
.main-variant-link[aria-current="page"] {
  color: var(--ink);
}
.nav-divider {
  width: 1px;
  height: 14px;
  margin-inline: 2px;
  background: rgba(17, 17, 17, .16);
}
.nav-cta,
form button {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
}
.mobile-menu-toggle,
.mobile-menu-cta {
  display: none;
}
.nav.is-hero {
  color: var(--ink);
  border-bottom-color: transparent;
}
.nav.is-hero::before { transform: translateY(-102%); }
.nav.is-hero .brand-mark img { filter: none; }
.nav.is-hero nav a { color: #777; }
.nav.is-hero nav a:hover,
.nav.is-hero nav a[aria-current="page"] { color: var(--ink); }
.nav.is-hero .nav-cta {
  color: #fff;
  background: var(--ink);
}

.shell { width: min(100%, var(--max)); padding-inline: var(--pad); margin: auto; }
main { padding-top: var(--nav-height); }
#home.active { margin-top: calc(-1 * var(--nav-height)); }
.page { display: none; min-height: calc(100vh - 72px); }
.page.active { display: block; }
.kicker,
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  margin: 0 0 20px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-top: calc(var(--nav-height) + clamp(88px, 10vh, 132px));
  padding-bottom: clamp(72px, 8vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}
.hero-aurora {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-heading {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(360px, 34vw, 500px);
  display: grid;
  place-items: center;
}
.hero-wordmark {
  position: relative;
  z-index: 2;
  display: block;
  width: 180px;
  height: 58px;
  margin: 0 auto clamp(8px, 1.4vw, 18px);
  object-fit: contain;
  opacity: 0;
  animation: heroContentReveal .52s .22s ease-out both;
}
.hero-symbol {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(484px, 55vw, 814px);
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: heroSymbolReveal .68s .05s ease-out both;
}
.hero-symbol img {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .7;
  filter: brightness(0) invert(1);
}
.hero-symbol-fluid,
.hero-symbol-highlight {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-mask: url("assets/openai-blossom.svg") center / contain no-repeat;
  mask: url("assets/openai-blossom.svg") center / contain no-repeat;
}
.hero-symbol-highlight {
  z-index: 2;
  filter: saturate(.96) brightness(1.02);
  transition: opacity .18s ease;
}
body[data-main-variant="main-3"] .hero {
  background: #fff;
}
body[data-main-variant="main-3"] .hero-aurora {
  opacity: 0;
}
body[data-main-variant="main-3"] .hero-symbol-fluid {
  filter: grayscale(.32) saturate(.68) contrast(.96);
  animation: main3SymbolPastelReveal .68s .05s ease-out both;
}
body[data-main-variant="main-3"] .hero-symbol img {
  opacity: 0;
}
body[data-main-variant="main-3"] .hero-symbol {
  width: clamp(528px, 59.4vw, 880px);
}
body[data-main-variant="main-1"] .hero-symbol img,
body[data-main-variant="main-2"] .hero-symbol img {
  opacity: 1;
}
body[data-main-variant="main-1"] .hero-symbol,
body[data-main-variant="main-2"] .hero-symbol {
  animation: heroSymbolSettle .76s .05s ease-out both;
}
body[data-main-variant="main-1"] .hero h1,
body[data-main-variant="main-2"] .hero h1 {
  animation-delay: .9s;
}
body[data-main-variant="main-1"] .hero-date,
body[data-main-variant="main-2"] .hero-date {
  animation-delay: 1.14s;
}
body[data-main-variant="main-1"] .dot-countdown,
body[data-main-variant="main-2"] .dot-countdown {
  animation-delay: 1.38s;
}
body[data-main-variant="main-1"] .chat-prompt,
body[data-main-variant="main-2"] .chat-prompt {
  animation-delay: 1.62s;
}
body[data-main-variant="main-3"] .hero-symbol.is-symbol-hovered .hero-symbol-highlight {
  opacity: .88;
}
.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(48px, 6.8vw, 96px);
  font-weight: 500;
  letter-spacing: -.085em;
  line-height: .94;
  margin: 0;
  opacity: 0;
  animation: heroContentReveal .52s .36s ease-out both;
}
.hero h1 span { display: block; }
.hero h1 .hero-title-main {
  margin-bottom: 10px;
  font-size: calc(100% + 12px);
  font-weight: 700;
  letter-spacing: calc(-.085em + 2px);
}
.hero h1 .hero-title-location {
  margin-top: 10px;
  color: var(--ink);
  font-size: calc(100% + 12px);
  font-weight: 700;
}
.hero-date {
  position: relative;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(0, 0, 0, .68);
  font-family: var(--font-openai-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 0;
  animation: heroContentReveal .52s .6s ease-out both;
}
.hero-date::before,
.hero-date::after {
  width: 34px;
  height: 1px;
  background: rgba(0, 0, 0, .28);
  content: "";
}
.chat-area {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 10px auto 0;
  max-width: 1140px;
}
body[data-main-variant="main-1"] .chat-area {
  margin-top: 25px;
}
.dot-countdown {
  position: relative;
  isolation: isolate;
  width: min(1040px, 100%);
  height: clamp(220px, 18vw, 250px);
  margin: 10px auto 68px;
  cursor: default;
  opacity: 0;
  animation: heroContentReveal .52s .84s ease-out both;
}
.countdown-glass-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.countdown-glass-card {
  position: absolute;
  display: block;
  opacity: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, .64), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset 1px 0 0 rgba(255, 255, 255, .58),
    inset -1px -1px 0 rgba(255, 255, 255, .22),
    0 18px 38px rgba(49, 82, 119, .14),
    0 4px 12px rgba(55, 88, 124, .09);
  backdrop-filter: blur(18px) saturate(135%);
  transform: translateX(-50%);
  transition:
    left .28s cubic-bezier(.22, 1, .36, 1),
    width .28s cubic-bezier(.22, 1, .36, 1),
    height .28s cubic-bezier(.22, 1, .36, 1),
    opacity .28s ease;
}
.countdown-glass-card.is-ready { opacity: 1; }
.countdown-glass-card::before,
.countdown-glass-card::after {
  position: absolute;
  width: 28px;
  height: 28px;
  content: "";
  pointer-events: none;
}
.countdown-glass-card::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid rgba(255, 255, 255, .96);
  border-left: 1px solid rgba(255, 255, 255, .82);
  border-radius: 11px 0 0;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, .72));
}
.countdown-glass-card::after {
  right: 9px;
  bottom: 9px;
  border-right: 1px solid rgba(255, 255, 255, .62);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  border-radius: 0 0 11px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, .5));
}
.dot-countdown canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, .58));
}
.chat-prompt {
  margin: 15px 0 30px;
  color: var(--ink);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  opacity: 0;
  animation: heroContentReveal .52s 1.08s ease-out both;
}
html[lang="en"] .hero-live-copy {
  display: none;
}

html[lang="en"] .submit-page .application-header h1 span {
  display: none;
}
.composer {
  position: relative;
  min-height: 94px;
  border: 1px solid #d5d5d5;
  border-radius: 36px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .03);
  display: none;
  align-items: center;
  padding: 22px 90px 22px 30px;
  text-align: left;
  background: #fff;
}
.placeholder {
  min-width: 0;
  font-size: clamp(17px, calc(1.65vw - 2px), 23px);
  color: #737373;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.composer-submit {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #888;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}
.prompt-shortcuts {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.prompt-shortcuts button {
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #fff;
  color: #5f5f5f;
  padding: 12px 18px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .04);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
}
.prompt-shortcuts button:hover {
  border-color: #999;
  color: var(--ink);
  transform: translateY(-1px);
}

.overview { padding-top: 170px; padding-bottom: 220px; }
.section-head {
  display: block;
}
.overview .kicker,
.schedule > .kicker,
.rewards > .kicker,
.guests > .kicker,
.how-it-works-heading > .kicker {
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -.045em;
  font-weight: 500;
  text-align: center;
  margin: 0 0 70px;
  padding-bottom: 0;
  border-bottom: 0;
}
.section-head h2,
.rewards h2,
.guests h2 {
  font-size: clamp(38px, 4.3vw, 67px);
  font-weight: 400;
  line-height: .98;
  margin: 0;
}
.section-head h2,
.rewards h2 {
  letter-spacing: -.075em;
}
.guests h2 {
  font-weight: 500;
  letter-spacing: -3px;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 0; }
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: .38rem;
  padding: 30px;
  min-width: 0;
  min-height: 286px;
  display: flex;
  flex-direction: column;
}
.feature-grid h3 {
  font-size: clamp(35px, 4.1vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.075em;
  margin: 0 0 15px;
}
.feature-grid article > p { margin: auto 0 0; color: #5e5e5e; line-height: 1.5; max-width: 620px; word-break: keep-all; overflow-wrap: break-word; }
html[lang="ja"] .feature-grid article > p,
html[lang="zh-Hans"] .feature-grid article > p {
  word-break: normal;
  overflow-wrap: anywhere;
}
.feature-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.feature-cta,
.feature-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: transform .2s, border-color .2s, background .2s, color .2s;
}
.feature-cta {
  min-width: 116px;
  padding: 0 22px;
  background: var(--ink);
  color: #fff;
}
.feature-socials span {
  color: #555;
  font-size: 14px;
  margin-right: 2px;
}
.feature-socials a {
  width: 40px;
  min-width: 40px;
  padding: 0;
  border: 1px solid #d7d7d7;
  color: var(--ink);
  background: #fff;
}
.feature-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.feature-cta:hover,
.feature-socials a:hover {
  transform: translateY(-1px);
}
.feature-socials a:hover {
  border-color: #999;
  background: #f7f7f7;
}

.schedule { padding-bottom: 220px; }
.schedule-title {
  display: flex;
  gap: 22px;
  align-items: baseline;
  border-top: 0;
  padding-top: 0;
}
.schedule-title span { font-size: clamp(40px, calc(6vw - 14px), 78px); line-height: .75; font-weight: 300; }
.schedule-title h2 { font-size: clamp(24px, 2.5vw, 39px); font-weight: 600; letter-spacing: -.06em; margin: 0; }
.schedule-title em { font-size: clamp(14px, 1.4vw, 20px); font-style: normal; color: #666; }
.schedule-title.second { margin-top: 100px; }
.schedule-body { display: grid; grid-template-columns: 28% 1fr; gap: 32px; margin-top: 35px; }
.schedule-body aside { background: var(--ink); color: #fff; min-height: 350px; padding: 25px; font-size: 27px; line-height: 1.05; border-radius: .38rem; }
.schedule-body-compact { align-items: start; }
.schedule-body-compact aside { min-height: 300px; }
.schedule-body-compact aside .schedule-year { font-size: 28px; }
.schedule-body aside strong { font-size: 13px; letter-spacing: .04em; }
.schedule-body-compact aside strong { font-size: 18px; }
.schedule-body:not(.schedule-body-compact) aside .schedule-event-label { font-size: 15px; }
.schedule-body:not(.schedule-body-compact) aside .schedule-day-label { font-size: 28px; }
.schedule-body aside .schedule-date { display: inline-block; margin-top: 12px; font-size: 18px; }
.schedule-list article { display: grid; grid-template-columns: 180px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); }
.schedule-list article.has-action {
  grid-template-columns: 180px 1fr auto;
  align-items: center;
}
.schedule-body-compact .schedule-list article:first-child > time {
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  font-weight: 600;
}
.schedule-action-cell {
  display: flex;
  justify-content: flex-end;
  margin-left: 22px;
}
time { font-size: 21px; color: #777; font-weight: 600; }
h3 { font-size: 21px; font-weight: 600; margin: 0; letter-spacing: -.055em; }
.schedule-list p { margin: 5px 0 0; color: #676767; line-height: 1.45; }
.schedule-cta { min-height: 36px; min-width: 104px; font-size: 13px; }
.schedule-note { display: block; margin-top: 8px; color: #8a8a8a; font-size: 13px; line-height: 1.5; word-break: keep-all; }
.schedule-points {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #676767;
  line-height: 1.55;
}
.schedule-help {
  font-size: 13px;
  color: #8a8a8a;
}
.schedule-help strong {
  color: #6f6f6f;
  font-weight: 600;
}

.rewards {
  position: relative;
  overflow: hidden;
  border-top: 0;
  padding-top: 0;
  padding-bottom: 220px;
}
.rewards h2 { max-width: 1000px; font-size: 58px; font-weight: 500; text-align: center; margin: 0 auto 35px; }
.rewards h2 span { display: block; }
.rewards h2 span + span { margin-top: 15px; }
.reward-intro { font-size: 26px; line-height: 1.28; letter-spacing: -.06em; text-align: center; border-bottom: 0; padding-bottom: 42px; }
html[lang="en"] .reward-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html[lang="en"] .reward-intro br,
html[lang="en"] .reward-intro .reward-suffix {
  display: none;
}
html[lang="en"] .reward-intro .reward-grant { order: 1; }
html[lang="en"] .reward-intro .reward-recipient { order: 2; }
.reward-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-top: 14px; }
.reward-grid article { background: var(--soft); border-radius: .38rem; padding: 32px; min-height: 290px; }
.reward-grid .label { font-size: 15px; }
.reward-grid h3 { font-size: 28px; line-height: 1.28; }
.reward-grid ul { padding-left: 18px; line-height: 1.7; color: #555; margin: 22px 0 5px; }
.reward-grid .reward-track-two-list {
  min-width: 0;
  font-size: inherit;
}
.reward-grid small { color: #777; }
.reward-notes {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #777;
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

.how-it-works {
  padding-bottom: 220px;
}
.how-it-works-heading {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.how-it-works-heading h2 {
  margin: 0 0 30px;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.065em;
  word-break: keep-all;
  white-space: nowrap;
}
.how-it-works-heading > p:last-child {
  margin: 0;
  color: #666;
  font-size: 20px;
  line-height: 1.65;
  word-break: keep-all;
}
.how-it-works-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}
.how-it-works-flow > li {
  min-width: 0;
}
.how-it-works-flow article {
  display: flex;
  min-height: 280px;
  height: 100%;
  padding: 24px 22px 22px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: .38rem;
  background: var(--soft);
}
.how-step {
  color: #999;
  font-size: 20px;
  letter-spacing: .04em;
}
.how-it-works-flow h3 {
  min-height: 0;
  margin: 30px 0 12px;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.055em;
  word-break: keep-all;
}
.how-it-works-flow article > div:not(.how-trophy) {
  margin-bottom: auto;
}
.how-it-works-flow article > div > p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
}
.how-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  margin-top: 28px;
  padding: 0 15px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.how-cta:hover {
  background: #333;
  transform: translateY(-2px);
}
.how-cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.how-trophy {
  display: flex;
  width: fit-content;
  margin-top: 24px;
  align-items: center;
  gap: 9px;
}
.how-trophy svg,
.how-location svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-trophy strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.how-trophy span,
.how-location span {
  color: #777;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
.how-location {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  margin-top: 24px;
}

.guests {
  overflow: hidden;
  padding-bottom: 220px;
}
.guests-intro {
  max-width: 100%;
  margin: 0 auto 72px;
  color: #666;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  text-align: center;
  word-break: keep-all;
}
.guests-intro strong {
  display: block;
  color: var(--ink);
  font-size: 58px;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.075em;
  margin-bottom: 30px;
  white-space: nowrap;
}
.guest-gallery {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}
.guest-gallery.is-dragging { cursor: grabbing; }
.guest-list {
  position: relative;
  width: 100%;
  height: 100%;
}
.guest-list article {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(200px, 18vw, 230px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .38rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .09);
  transform-origin: center center;
  transition: opacity .2s ease, filter .2s ease;
  will-change: transform, opacity;
}
.guest-photo {
  display: block;
  width: 100%;
  height: calc(clamp(250px, 24vw, 320px) - 20px);
  object-fit: cover;
  object-position: center 22%;
}
.guest-copy {
  min-height: 145px;
  padding: 18px 20px 18px;
  text-align: left;
}
.guest-list span { display: none; }
.guest-copy em { display: block; margin-top: 0; color: #999; font-size: 13px; font-style: italic; }
.guest-list h3 { margin: 3px 0 7px; font-size: 23px; font-weight: 500; letter-spacing: -.055em; }
.guest-list p { margin: 0; color: #666; font-size: 14px; }
.guest-copy small { display: block; margin-top: 12px; color: #999; font-size: 12px; line-height: 1.45; word-break: keep-all; }
.guest-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(130, 216, 244, .42), transparent 36%),
    radial-gradient(circle at 78% 78%, rgba(195, 190, 244, .38), transparent 40%),
    #f3f3f3;
}
.guest-photo-placeholder img { width: 42%; height: 42%; opacity: .18; }

.guest-gallery.is-announcement-stage {
  height: clamp(610px, 40.5vw, 680px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  perspective: 1200px;
  perspective-origin: 50% 44%;
  cursor: default;
  touch-action: pan-y;
}
.guest-gallery.is-announcement-stage .guest-list {
  transform-style: preserve-3d;
}
.guest-gallery.is-announcement-stage .guest-list article {
  border-color: rgba(104, 84, 61, .2);
  box-shadow: 0 7px 16px rgba(75, 55, 35, .045);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, filter .3s ease;
}
.guest-gallery.is-announcement-stage .guest-card-featured {
  position: relative;
  display: block;
  width: clamp(340px, 26vw, 435px);
  z-index: 4;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  opacity: 1;
  filter: none;
  background: #3b332c;
  contain: paint;
  isolation: isolate;
  transform: translate3d(-50%, 0, 80px);
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-photo-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 464 / 606;
  border-radius: inherit;
  isolation: isolate;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: none;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  padding: 91% 38px 18px;
  border-radius: 0 0 12px 12px;
  color: #f8f3eb;
  background: none;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy span {
  display: none;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy em {
  color: #dfc6a7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy h3 {
  margin: 7px 0 10px;
  color: #ead3b6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy p,
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy small {
  color: rgba(239, 220, 196, .9);
  font-size: 17px;
  line-height: 1.4;
}
.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy small {
  margin-top: 12px;
  font-size: 15px;
}
.guest-gallery.is-announcement-stage .guest-card-teaser {
  opacity: .62;
  border-color: rgba(148, 124, 93, .15);
  border-radius: 12px;
  background: #f2ece3;
  filter: saturate(.76) contrast(.99);
}
.guest-gallery.is-announcement-stage .guest-card-teaser .guest-photo-placeholder {
  height: auto;
  aspect-ratio: 464 / 606;
  background: #f2ece3;
}
.guest-gallery.is-announcement-stage .guest-card-teaser .guest-photo-placeholder img {
  opacity: .22;
  filter: grayscale(.18) sepia(.55) saturate(.62);
}
.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy {
  color: #655b50;
  background: #f2ece3;
}
.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy em,
.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy small {
  color: rgba(86, 69, 52, .58);
}
.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy p {
  color: rgba(75, 61, 47, .74);
}
.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) {
  z-index: 3;
  opacity: .8;
  transform: translate3d(calc(-50% - clamp(300px, 22vw, 370px)), 78px, -125px) rotateY(8deg) scale(.95);
}
.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) {
  z-index: 3;
  opacity: .8;
  transform: translate3d(calc(-50% + clamp(300px, 22vw, 370px)), 78px, -125px) rotateY(-8deg) scale(.95);
}
.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(4) {
  z-index: 2;
  opacity: .46;
  transform: translate3d(calc(-50% - clamp(450px, 33vw, 555px)), 180px, -270px) rotateY(14deg) scale(.78);
}
.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(5) {
  z-index: 2;
  opacity: .46;
  transform: translate3d(calc(-50% + clamp(450px, 33vw, 555px)), 180px, -270px) rotateY(-14deg) scale(.78);
}
.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(6) {
  z-index: 1;
  opacity: .28;
  transform: translate3d(calc(-50% - clamp(570px, 42vw, 700px)), 245px, -390px) rotateY(20deg) scale(.62);
}
.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(7) {
  z-index: 1;
  opacity: .28;
  transform: translate3d(calc(-50% + clamp(570px, 42vw, 700px)), 245px, -390px) rotateY(-20deg) scale(.62);
}

.home-closing {
  padding: 0 0 220px;
  color: var(--ink);
  background: #fff;
}
.home-closing .kicker {
  margin: 0 0 70px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.how-it-works-heading > .kicker {
  letter-spacing: 0;
}
.home-closing-heading {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.home-closing-heading h2 {
  margin: 0 0 30px;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  word-break: keep-all;
}
.home-closing-heading p {
  margin: 0;
  color: #666;
  font-size: 20px;
  line-height: 1.65;
  word-break: keep-all;
}
.home-closing-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 64px;
}
.home-closing-link,
.home-closing-news {
  min-height: 190px;
  padding: 24px 22px 22px;
  border-radius: .38rem;
  color: var(--ink);
  background: var(--soft);
  transition: color .2s ease, background-color .2s ease;
}
.home-closing-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  text-decoration: none;
}
.home-closing-title {
  align-self: end;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  word-break: keep-all;
}
.home-closing-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 22px;
  height: 22px;
  align-self: end;
  transition: transform .2s;
}
.home-closing-link:hover,
.home-closing-link:focus-visible,
.home-closing-news:hover,
.home-closing-news:focus-within {
  color: #fff;
  background: var(--ink);
}
.home-closing-link:hover .home-closing-arrow,
.home-closing-link:focus-visible .home-closing-arrow {
  transform: translate(4px, -4px);
}
.home-closing-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}
.home-closing-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.4;
}
.home-closing-news {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 18px;
}
.home-closing-socials {
  display: flex;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  gap: 8px;
}
.home-closing-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #bbb;
  border-radius: 50%;
  color: var(--ink);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.home-closing-news:hover .home-closing-socials a,
.home-closing-news:focus-within .home-closing-socials a {
  color: #fff;
  border-color: #666;
}
.home-closing-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.home-closing-socials a:hover,
.home-closing-socials a:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.home-closing-news:hover .home-closing-socials a:hover,
.home-closing-news:focus-within .home-closing-socials a:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.simple { padding-top: 120px; padding-bottom: 140px; }
.simple h1 { font-size: clamp(54px, 7vw, 92px); font-weight: 400; letter-spacing: -.08em; margin: 0; }
.page-lead { max-width: 520px; color: var(--muted); font-size: 18px; line-height: 1.5; margin: 22px 0 50px; }
.simple form { max-width: 620px; background: var(--soft); border-radius: .38rem; padding: 30px; }
.details-page { padding-bottom: 140px; }
.details-hero {
  padding-top: clamp(76px, 9vw, 128px);
  padding-bottom: clamp(76px, 9vw, 126px);
}
.details-hero > .kicker { margin-bottom: clamp(46px, 7vw, 88px); }
.details-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: end;
}
.details-track {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
}
.details-track span {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.details-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.3vw, 108px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .88;
}
.details-hero-copy { padding-bottom: 5px; }
.details-theme {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
}
.details-hero-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1.06;
  word-break: keep-all;
}
.details-hero-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.details-content > section {
  padding-block: clamp(82px, 10vw, 132px);
  border-top: 1px solid var(--ink);
}
.details-section-heading {
  display: grid;
  grid-template-columns: minmax(92px, .3fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: clamp(54px, 7vw, 88px);
}
.details-section-heading .details-index {
  margin: 0;
  color: #aaa;
  font-size: 14px;
  letter-spacing: .04em;
}
.details-section-heading .kicker {
  margin-bottom: 16px;
  color: var(--muted);
}
.details-section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle-grid article {
  min-height: 270px;
  padding: 26px clamp(22px, 3vw, 42px) 32px;
}
.principle-grid article + article { border-left: 1px solid var(--line); }
.principle-grid article > span {
  display: block;
  margin-bottom: 76px;
  color: #aaa;
  font-size: 12px;
}
.principle-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -.055em;
}
.principle-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-flow article {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3vw, 40px);
  background: #fff;
}
.process-flow article:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -13px;
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  content: "→";
  font-size: 14px;
}
.process-marker {
  margin-bottom: 72px;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: 1;
}
.process-label,
.submission-eyebrow {
  margin: 0 0 12px;
  color: #888;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.process-flow h3 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.05em;
}
.process-flow article > p:last-of-type {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}
.format-row {
  display: grid;
  grid-template-columns: minmax(116px, .3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.format-label {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.format-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.format-row li {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}
.submission-list { border-top: 1px solid var(--ink); }
.submission-list > article {
  display: grid;
  grid-template-columns: minmax(92px, .3fr) minmax(270px, .75fr) minmax(320px, 1fr);
  gap: 24px;
  padding-block: clamp(44px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}
.submission-number {
  color: #aaa;
  font-size: 14px;
  letter-spacing: .04em;
}
.submission-main h3 {
  max-width: 460px;
  margin: 0 0 18px;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1.08;
}
.submission-lead {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}
.video-outline {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.video-outline span {
  margin-inline: 7px;
  color: #bbb;
}
.submission-detail {
  padding: clamp(22px, 3vw, 34px);
  background: var(--soft);
}
.submission-detail h4 {
  margin: 0 0 20px;
  font-size: 14px;
}
.submission-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.submission-detail li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-top: 1px solid #e4e4e4;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}
.check-list li::before {
  position: absolute;
  left: 1px;
  content: "✓";
  color: var(--ink);
}
.codex-detail {
  color: #fff;
  background: var(--ink);
}
.codex-detail h4 { font-size: 17px; }
.codex-detail > p {
  margin: -8px 0 24px;
  color: #bbb;
  font-size: 13px;
  line-height: 1.6;
}
.codex-detail li {
  border-top-color: #333;
  color: #ddd;
}
.codex-detail li::before {
  position: absolute;
  left: 1px;
  content: "↳";
  color: #777;
}
.rule-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
  border: 1px solid var(--line);
}
.rule-notes p {
  min-height: 106px;
  margin: 0;
  padding: 28px;
  color: #555;
  background: #fff;
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}
.rule-notes span {
  display: block;
  margin-bottom: 14px;
  color: #aaa;
  font-size: 11px;
}
.details-reward-link {
  display: flex;
  min-height: 190px;
  margin-top: 16px;
  padding: clamp(30px, 5vw, 62px);
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}
.details-reward-link span {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -.06em;
}
.details-reward-link small {
  display: block;
  margin-bottom: 16px;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.details-reward-link strong {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  transition: transform .2s ease;
}
.details-reward-link:hover strong { transform: translate(5px, -5px); }
.simple label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 8px; }
.simple input,
.simple textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbb;
  background: transparent;
  padding: 10px 0;
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--ink);
  border-radius: 0;
  outline: 0;
}
.simple input:focus,
.simple textarea:focus { border-color: var(--ink); }
.simple textarea { min-height: 110px; resize: vertical; }
.simple form button { cursor: pointer; margin-top: 4px; }
.form-status { min-height: 22px; margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.gallery-page { padding: 0 0 180px; background: #fff; }
.gallery-hero { padding-top: calc(var(--nav-height) + 44px); padding-bottom: 76px; }
.gallery-hero .kicker { margin: 0 0 32px; }
.gallery-hero h1 { max-width: 980px; margin: 0; font-size: 70px; font-weight: 500; letter-spacing: -.065em; line-height: 1.2; }
.gallery-hero > p:last-child { margin: 25px 0 0; color: #676767; font-size: 22px; }
.gallery-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; padding-bottom: 10px; border-bottom: 0; }
.gallery-toolbar h2 { margin: 0; font-size: 30px; font-weight: 500; letter-spacing: -.045em; }
.gallery-search { width: min(390px, 100%); display: flex; align-items: center; border-bottom: 1px solid #8f8f8f; }
.gallery-search input { width: 100%; border: 0; outline: 0; padding: 11px 4px; background: transparent; font: inherit; font-size: 15px; }
.gallery-search > img { width: 19px; height: 19px; flex: 0 0 auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.gallery-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 58px 18px; }
.game-card { min-width: 0; }
.game-visual { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: .38rem; background: #e8e8e8; isolation: isolate; }
.game-visual i { position: absolute; display: block; }
.game-visual .game-thumbnail { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.game-visual-fallback { background: linear-gradient(145deg, #111a38, #4967a8 52%, #d8b7c7); }
.game-visual-fallback .art-one { width:32%; aspect-ratio:1; border-radius:50%; top:12%; right:12%; background:#fff4d5; box-shadow:0 0 50px #fff1bd; }
.game-visual-fallback .art-two { width:120%; height:55%; left:-10%; bottom:-22%; border-radius:50% 50% 0 0; background:#182a31; transform:rotate(-5deg); }
.game-visual-fallback .art-three { width:4%; height:19%; left:42%; bottom:22%; border-radius:50% 50% 20% 20%; background:#f5d568; box-shadow:0 0 18px #ffe783; }
.game-like { position: absolute; z-index: 8; top: 14px; right: 14px; min-width: 74px; height: 42px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(0,0,0,.12); border-radius: 999px; background: rgba(255,255,255,.9); color: #111; cursor: pointer; backdrop-filter: blur(10px); transition: transform .2s ease, background .2s ease, color .2s ease; }
.game-like:hover { transform: scale(1.04); }
.game-like[aria-pressed="true"] { background: rgba(255,255,255,.96); color: #111; }
.game-like img { width: 18px; height: 15px; display: block; }.game-like b { font-size: 12px; }
.game-card-copy { padding: 10px 2px 0; }.game-card-copy > div:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.game-card-copy p { margin: 0; color: #797979; font-size: 13px; }.game-card-copy h3 { margin: 0; font-size: 24px; font-weight: 500; letter-spacing: -.045em; }
.game-card-copy .game-genre { margin-top: 10px; font-size: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }.game-stats { display: none; }.game-stats span { display: inline-flex; align-items: center; gap: 5px; }.view-eye { position: relative; display: inline-block; width: 15px; height: 10px; border: 1.4px solid currentColor; border-radius: 50% / 60%; }.view-eye::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 3px; height: 3px; border-radius: 50%; background: currentColor; transform: translate(-50%, -50%); }.game-stats b { color: #111; font-weight: 600; }.gallery-empty { padding: 80px 0; text-align: center; color: #777; }.gallery-pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 72px; }.gallery-pagination > div { display: flex; align-items: center; gap: 8px; }.gallery-pagination button { display: grid; width: 38px; height: 38px; padding: 0; place-items: center; border: 1px solid #d4d4d4; border-radius: 50%; background: #fff; color: #111; font: inherit; font-size: 14px; cursor: pointer; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }.gallery-pagination > button { font-size: 24px; font-weight: 300; }.gallery-pagination button[aria-current="page"] { border-color: #111; background: #111; color: #fff; }.gallery-pagination button:disabled { opacity: .3; cursor: default; }.gallery-pagination button:not(:disabled):hover { border-color: #111; }.gallery-pagination[hidden] { display: none; }
.game-visual-mori { background: linear-gradient(145deg,#111a38,#4967a8 52%,#d8b7c7); }.game-visual-mori .art-one { width:32%; aspect-ratio:1; border-radius:50%; top:12%; right:12%; background:#fff4d5; box-shadow:0 0 50px #fff1bd; }.game-visual-mori .art-two { width:120%; height:55%; left:-10%; bottom:-22%; border-radius:50% 50% 0 0; background:#182a31; transform:rotate(-5deg); }.game-visual-mori .art-three { width:4%; height:19%; left:42%; bottom:22%; border-radius:50% 50% 20% 20%; background:#f5d568; box-shadow:0 0 18px #ffe783; }
.game-visual-offline { background: radial-gradient(circle at 50% 50%,#fff 0 8%,transparent 9%), linear-gradient(135deg,#392a64,#ef8c9c 54%,#f3cf9a); }.game-visual-offline .art-one { width:64%; aspect-ratio:1; border:2px solid rgba(255,255,255,.65); border-radius:50%; left:18%; top:-22%; transform:rotate(26deg); }.game-visual-offline .art-two { width:18%; aspect-ratio:1; border-radius:50%; background:#fff; left:41%; top:39%; box-shadow:0 0 70px #fff; }.game-visual-offline .art-three { inset:12%; background:repeating-radial-gradient(circle at 42% 55%,#fff 0 2px,transparent 3px 30px); opacity:.6; }
.game-visual-sound { background:linear-gradient(125deg,#0b1523,#0f4b5d 55%,#e7b457); }.game-visual-sound i { left:10%; right:10%; height:3px; top:50%; background:#6ee7ef; box-shadow:0 0 20px #35e9ff; }.game-visual-sound .art-one { transform:translateY(-38px) rotate(5deg); }.game-visual-sound .art-two { transform:rotate(-8deg); background:#ffd05b; }.game-visual-sound .art-three { transform:translateY(42px) rotate(3deg); background:#f56db1; }
.game-visual-orbit { background:radial-gradient(circle at 44% 42%,#6e84cb,#182342 52%,#080b16); }.game-visual-orbit .art-one { width:35%; aspect-ratio:1; left:33%; top:25%; border-radius:50%; background:linear-gradient(145deg,#ffdca2,#e87d6a); box-shadow:-14px 14px 30px rgba(0,0,0,.35); }.game-visual-orbit .art-two { width:58%; height:20%; left:21%; top:42%; border:4px solid #e9e7ff; border-radius:50%; transform:rotate(-12deg); }.game-visual-orbit .art-three { width:14px; height:8px; left:23%; top:42%; border-radius:50% 0 50% 50%; background:#fff; box-shadow:0 0 12px #fff; }
.game-visual-garden { background:linear-gradient(#b9e9ee 0 54%,#85ae72 55% 100%); }.game-visual-garden .art-one { width:21%; aspect-ratio:1; border-radius:50%; top:12%; right:13%; background:#fff4ad; box-shadow:0 0 35px #fff1a4; }.game-visual-garden .art-two { width:7px; height:47%; bottom:0; left:50%; background:#285b3d; border-radius:8px; }.game-visual-garden .art-three { width:26%; height:12%; left:36%; top:58%; background:#34794c; border-radius:100% 0 100% 0; transform:rotate(18deg); }
.game-visual-neon { background:linear-gradient(#100822,#29145e 55%,#07040e); }.game-visual-neon .art-one { width:76%; height:72%; left:12%; bottom:-35%; background:#120d25; transform:perspective(240px) rotateX(58deg); border-left:2px solid #ed49ff; border-right:2px solid #35e9ff; }.game-visual-neon .art-two { width:2px; height:90%; top:28%; left:34%; background:#41f4ff; box-shadow:0 0 14px #41f4ff; transform:rotate(18deg); }.game-visual-neon .art-three { width:4%; height:23%; bottom:15%; left:48%; background:#fff; box-shadow:0 0 22px #fff; }

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 34px 0 30px;
  font-size: 12px;
}
.footer-inner {
  display: grid;
  height: auto;
  min-height: 74px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 48px;
}
.footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 22px;
}
.footer-brand > span {
  color: #858585;
  font-size: 11px;
  line-height: 1.5;
}
.footer-partner-logo-group {
  position: relative;
  display: block;
  width: 132px;
  height: 28px;
  flex: 0 0 auto;
}
.footer-partner-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer-partner-link {
  position: absolute;
  inset-block: -6px;
  z-index: 1;
  border-radius: 4px;
  cursor: pointer;
}
.footer-partner-link-openai {
  left: 0;
  width: 44%;
}
.footer-partner-link-com2us {
  right: 0;
  width: 51%;
}
.footer-partner-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.footer-tools {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-content: end;
  gap: 8px 30px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b8b8b8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}
.footer-links svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.8;
}
.footer-language {
  position: relative;
  display: flex;
  width: 150px;
  align-items: center;
  color: #fff;
}
.footer-language > svg {
  position: absolute;
  z-index: 1;
  width: 15px;
  height: 15px;
  pointer-events: none;
}
.footer-language > svg:first-of-type { left: 12px; }
.footer-language > svg:last-of-type { right: 11px; }
.footer-language select {
  width: 100%;
  min-height: 40px;
  padding: 0 34px;
  appearance: none;
  border: 1px solid #434343;
  border-radius: 4px;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.footer-language select:hover,
.footer-language select:focus-visible {
  border-color: #888;
  background: #1c1c1c;
}
.footer-language option {
  background: #fff;
  color: var(--ink);
}
.footer-language-status {
  min-height: 16px;
  margin: 0;
  grid-column: 1 / -1;
  color: #929292;
  font-size: 11px;
  text-align: right;
}
.footer-language-status:empty { display: none; }

@keyframes heroSymbolReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroSymbolSettle {
  0% { opacity: 0; }
  58% { opacity: 1; }
  100% { opacity: .7; }
}

@keyframes main3SymbolPastelReveal {
  from { opacity: 0; }
  to { opacity: .44; }
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  :root { --nav-height: 64px; }
  .nav {
    height: var(--nav-height);
    overflow: visible;
  }
  .nav-inner {
    position: relative;
    z-index: 2;
  }
  .nav::before,
  .nav.is-hero::before {
    transform: translateY(0);
  }
  .mobile-menu-toggle {
    position: relative;
    z-index: 3;
    width: 36px;
    height: 36px;
    padding: 5px;
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 6px;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform .25s ease, opacity .2s ease;
  }
  .mobile-menu-toggle span:nth-child(2) {
    width: 20px;
  }
  .nav.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav nav {
    position: fixed;
    z-index: 1;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    max-height: calc(100svh - var(--nav-height));
    padding: 22px clamp(34px, 9vw, 48px) 34px;
    display: grid;
    align-content: start;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid rgba(17, 17, 17, .08);
    border-bottom: 1px solid rgba(17, 17, 17, .12);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 48px rgba(17, 17, 17, .09);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .24s ease, transform .32s cubic-bezier(.22, 1, .36, 1), visibility .24s;
  }
  .nav.is-menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav nav a {
    min-height: 49px;
    display: flex;
    align-items: center;
    border-bottom: 0;
    color: #555;
    font-size: 17px;
    font-weight: 500;
  }
  .nav nav a[aria-current="page"] {
    color: var(--ink);
  }
  .nav-divider {
    display: block;
    width: 100%;
    height: 10px;
    margin: 0;
    background: transparent;
  }
  .primary-route-link { display: flex; }
  .mobile-menu-cta {
    min-height: 48px;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #fff !important;
    background: var(--ink);
  }
  .nav-cta { display: none; }
  .brand-mark img { width: 90px; }
  body.mobile-menu-open { overflow: hidden; }
  .page { min-height: calc(100vh - 64px); }
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + 82px);
    padding-bottom: 68px;
  }
  .hero-heading { min-height: clamp(270px, 69vw, 390px); }
  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: .98;
  }
  .hero h1 .hero-title-main,
  .hero h1 .hero-title-location {
    font-size: 1em;
    letter-spacing: -.055em;
    white-space: nowrap;
  }
  .hero-symbol { width: clamp(330px, 103.4vw, 550px); }
  body[data-main-variant="main-3"] .hero-symbol {
    width: clamp(352px, 112.2vw, 605px);
  }
  .chat-prompt { margin-top: 15px; margin-bottom: 24px; }
  .dot-countdown {
    height: clamp(130px, 25vw, 170px);
    margin: 14px auto 34px;
  }
  body[data-main-variant="main-1"] .dot-countdown {
    height: clamp(116px, 31vw, 132px);
    margin-top: 8px;
    margin-bottom: 38px;
  }
  body[data-main-variant="main-1"] .dot-countdown canvas {
    filter: drop-shadow(0 2px 2px rgba(45, 61, 94, .14));
    transform: none;
  }
  body[data-main-variant="main-1"] .countdown-glass-card {
    border-color: rgba(255, 255, 255, .9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .98),
      inset 1px 0 0 rgba(255, 255, 255, .68),
      0 12px 28px rgba(49, 82, 119, .17),
      0 3px 9px rgba(55, 88, 124, .11);
  }
  .composer { min-height: 78px; border-radius: 28px; padding: 18px 70px 18px 22px; }
  .placeholder { font-size: 16px; }
  .composer-submit { width: 46px; height: 46px; right: 14px; bottom: auto; font-size: 29px; }
  .prompt-shortcuts { gap: 8px; margin-top: 22px; }
  .prompt-shortcuts button { padding: 9px 12px; font-size: 11px; }
  .overview.shell { padding-top: 70px; }
  .schedule-body { grid-template-columns: 1fr; gap: 25px; }
  .guests-intro { margin-top: -24px; margin-bottom: 48px; }
  .guest-gallery { height: 550px; }
  .guest-list article { width: min(76vw, 300px); }
  .guest-photo { height: 310px; }
  .guest-copy { min-height: 170px; padding: 18px 20px 22px; }
  .guest-list h3 { font-size: 20px; }
  .guest-gallery.is-announcement-stage {
    height: 400px;
  }
  .guest-gallery.is-announcement-stage .guest-list article {
    width: min(48vw, 210px);
  }
  .guest-gallery.is-announcement-stage .guest-photo {
    height: clamp(190px, 52vw, 215px);
  }
  .guest-gallery.is-announcement-stage .guest-copy {
    min-height: 128px;
    padding: 14px 14px 17px;
  }
  .guest-gallery.is-announcement-stage .guest-list h3 {
    font-size: 18px;
  }
  .guest-gallery.is-announcement-stage .guest-copy p {
    font-size: 12px;
  }
  .guest-gallery.is-announcement-stage .guest-copy small {
    margin-top: 9px;
    font-size: 11px;
  }
  .guest-gallery.is-announcement-stage .guest-card-featured {
    transform: translate3d(-50%, 0, 80px);
  }
  .guest-gallery.is-announcement-stage .guest-card-teaser {
    opacity: .58;
  }
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) {
    transform: translate3d(calc(-50% - 32vw), 24px, -145px) rotateY(17deg) scale(.82);
  }
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) {
    transform: translate3d(calc(-50% + 32vw), 24px, -145px) rotateY(-17deg) scale(.82);
  }
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(4) {
    opacity: .38;
    transform: translate3d(calc(-50% - 52vw), 92px, -300px) rotateY(27deg) scale(.68);
  }
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(5) {
    opacity: .38;
    transform: translate3d(calc(-50% + 52vw), 92px, -300px) rotateY(-27deg) scale(.68);
  }
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(n + 6) {
    display: none;
  }
  .guest-gallery-control { top: 42%; width: 42px; height: 42px; }
  .apply-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .details-page { padding-bottom: 80px; }
  .details-hero { padding-top: 74px; padding-bottom: 80px; }
  .details-hero > .kicker { margin-bottom: 48px; }
  .details-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .details-hero h1 { font-size: clamp(54px, 15vw, 78px); }
  .details-theme { margin-bottom: 34px; }
  .details-content > section { padding-block: 76px; }
  .details-section-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 48px;
  }
  .details-section-heading h2 { font-size: 38px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: auto; padding: 28px 0 32px; }
  .principle-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .principle-grid article > span { margin-bottom: 42px; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow article { min-height: 260px; }
  .process-flow article:not(:last-child)::after {
    top: auto;
    right: 28px;
    bottom: -13px;
    transform: rotate(90deg);
  }
  .process-marker { margin-bottom: 48px; }
  .format-row { grid-template-columns: 1fr; gap: 16px; }
  .submission-list > article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }
  .submission-main { padding-bottom: 26px; }
  .submission-detail { grid-column: 2; }
  .rule-notes { grid-template-columns: 1fr; }
  .details-reward-link { min-height: 160px; padding: 28px; }
  .feature-grid,
  .reward-grid { grid-template-columns: 1fr; }
  .schedule-list article { grid-template-columns: 105px 1fr; gap: 12px; }
  .schedule-list article.has-action {
    grid-template-columns: 105px 1fr;
    align-items: start;
  }
  .schedule-action-cell {
    grid-column: 2;
    justify-content: flex-start;
    margin-left: 0;
  }
  .schedule-cta { min-height: 34px; min-width: 92px; padding: 0 16px; font-size: 12px; }
  time { font-size: 17px; }
  .schedule-body aside { min-height: 130px; }
  .schedule-title { gap: 10px; flex-wrap: wrap; }
  .schedule-title span { font-size: 37px; }
  .schedule-title h2 { font-size: 25px; }
  .schedule-title em { width: 100%; padding-left: 61px; }
  .schedule-title.second em { display: none; }
  .overview,
  .schedule,
  .rewards,
  .how-it-works,
  .guests { padding-bottom: 130px; }
  .overview .kicker,
  .schedule > .kicker,
  .rewards > .kicker,
  .guests > .kicker { margin-bottom: 48px; padding-bottom: 0; }
  .how-it-works-heading {
    max-width: 520px;
  }
  .how-it-works-heading .kicker { margin-bottom: 34px; }
  .how-it-works-heading h2 {
    font-size: clamp(38px, 8vw, 52px);
    white-space: normal;
  }
  .how-it-works-flow { margin-top: 48px; }
  .how-it-works-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-it-works-flow article { min-height: 270px; }
  .rewards h2 { max-width: 720px; font-size: clamp(36px, 9vw, 54px); }
  .reward-intro { font-size: clamp(22px, 5.6vw, 30px); }
  .guests-intro strong { font-size: clamp(36px, 9vw, 54px); white-space: normal; }
  .home-closing { padding-bottom: 130px; }
  .home-closing .kicker { margin-bottom: 34px; }
  .home-closing-heading h2 {
    font-size: clamp(38px, 8vw, 52px);
  }
  .home-closing-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }
  .home-closing-news {
    grid-column: 1 / -1;
  }
  .home-closing-link,
  .home-closing-news {
    min-height: 190px;
  }
  .gallery-hero { padding-top: calc(var(--nav-height) + 36px); padding-bottom: 64px; }.gallery-hero h1 { font-size: clamp(44px, 11vw, 58px); line-height: 1.12; }.gallery-hero > p:last-child { margin-top: 20px; font-size: 18px; }.gallery-toolbar { align-items: stretch; flex-direction: column; }.gallery-search { width: 100%; }.gallery-cards { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-brand {
    justify-content: space-between;
  }
  .footer-tools {
    width: 100%;
    justify-content: stretch;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .footer-language {
    justify-self: end;
  }
  .footer-language-status {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .nav nav { gap: 0; }
  .nav nav a { font-size: 16px; }
  .site-footer { padding-block: 30px; }
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .footer-tools {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .footer-language {
    width: min(100%, 220px);
    justify-self: start;
  }
  .details-hero h1 { font-size: clamp(48px, 14.2vw, 62px); }
  .details-hero-copy h2 { font-size: 34px; }
  .details-section-heading { grid-template-columns: 34px minmax(0, 1fr); }
  .details-section-heading h2 { font-size: 32px; }
  .submission-list > article { grid-template-columns: 34px minmax(0, 1fr); }
  .submission-main h3 { font-size: 29px; }
  .submission-detail { padding: 22px 18px; }
  .details-reward-link span { font-size: 27px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .dot-countdown { height: 122px; }
  body[data-main-variant="main-1"] .dot-countdown {
    height: 118px;
  }
  .schedule-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .schedule-list article.has-action {
    grid-template-columns: 1fr;
  }
  .schedule-action-cell {
    grid-column: auto;
    justify-content: flex-end;
    margin-left: 0;
  }
  .schedule-cta {
    flex-shrink: 0;
  }
  .how-it-works-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .how-it-works-flow article {
    min-height: 250px;
    padding: 22px;
  }
  .how-it-works-flow h3 {
    min-height: 0;
    margin-top: 38px;
  }
  .home-closing {
    padding-bottom: 110px;
  }
  .home-closing-heading h2 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.08;
  }
  .home-closing-heading p { font-size: 17px; }
  .home-closing-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .home-closing-link,
  .home-closing-news {
    min-height: 168px;
    padding: 18px;
  }
  .home-closing-news {
    min-height: 150px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .home-closing-title {
    font-size: 17px;
  }
  .home-closing-socials a {
    width: 36px;
    height: 36px;
  }
  .simple form { padding: 22px; }
}

/* Event details: editorial direction */
.details-page {
  --details-accent: #31b8c7;
  --details-summary-open: var(--ink);
  padding-bottom: 0;
  scroll-margin-top: var(--nav-height);
}
.details-anchor-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 8;
  border: 0;
  background: rgba(255, 255, 255, .42);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.details-anchor-inner {
  display: flex;
  min-height: 64px;
  padding-block: 10px;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.details-anchor-label {
  margin-right: 16px;
  color: #999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}
.details-anchor-toggle {
  display: flex;
  padding: 4px;
  flex: 0 0 auto;
  background: rgba(226, 226, 222, .84);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, .04);
}
.details-anchor-nav a {
  position: relative;
  min-width: 108px;
  padding: 9px 18px;
  text-align: center;
  color: #686868;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.details-anchor-nav a:hover,
.details-anchor-nav a:focus-visible {
  z-index: 1;
  color: var(--ink);
  background: rgba(255, 255, 255, .55);
}
.details-anchor-nav a:focus-visible {
  outline: 2px solid var(--details-accent);
  outline-offset: 1px;
}
.details-anchor-nav a[aria-current="true"] {
  z-index: 2;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 2px 10px rgba(17, 17, 17, .18);
}
.details-fold {
  display: block;
  scroll-margin-top: calc(var(--nav-height) + 64px);
}
.details-fold.is-animating { overflow: clip; }
.details-hero-summary {
  position: relative;
  cursor: pointer;
  clip-path: inset(0 -100vmax);
  list-style: none;
  transition: color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.details-fold[open] > .details-hero-summary {
  color: #fff;
  background: var(--details-summary-open);
  box-shadow: 0 0 0 100vmax var(--details-summary-open);
}
.details-fold[open] > .details-hero-summary .kicker,
.details-fold[open] > .details-hero-summary .details-track,
.details-fold[open] > .details-hero-summary .details-theme,
.details-fold[open] > .details-hero-summary .event-details-lead,
.details-fold[open] > .details-hero-summary .details-hero-copy > p:last-child {
  color: #bcbcbc;
}
.details-fold[open] > .details-hero-summary .details-track span {
  border-left-color: rgba(255, 255, 255, .28);
}
.details-hero-summary::-webkit-details-marker { display: none; }
.details-hero-summary:focus-visible {
  outline: 0;
}
.details-hero-summary:focus-visible .details-fold-action {
  box-shadow: 0 0 0 2px var(--details-accent);
}
.details-title-with-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  gap: clamp(18px, 2.5vw, 34px);
  align-items: start;
}
.details-snapshot {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin: clamp(32px, 4vw, 48px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.details-snapshot > div {
  min-width: 0;
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 24px) 0;
  border-left: 1px solid var(--line);
}
.details-snapshot > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.details-snapshot dt {
  margin: 0 0 8px;
  color: #888;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}
.details-snapshot dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.25;
}
.event-details-snapshot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border-top: 0;
}
.event-details-snapshot > div,
.event-details-snapshot > div:first-child {
  min-height: 96px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  background: var(--soft);
  border: 0;
  border-radius: .38rem;
  box-shadow: inset 0 0 0 1px #e2e2df;
}
.event-details-snapshot dt {
  margin: 0;
  color: #777;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}
.event-details-snapshot dd {
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
.event-details-snapshot .snapshot-flow {
  display: grid;
  grid-template-columns: max-content 22px max-content;
  align-items: center;
  gap: 8px;
}
.event-details-snapshot .snapshot-flow > span {
  white-space: nowrap;
}
.snapshot-arrow {
  width: 22px;
  height: 22px;
  padding: 4px;
  box-sizing: border-box;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  stroke-width: 1.5;
}
.details-fold[open] > .details-hero-summary .details-snapshot {
  border-top-color: rgba(255, 255, 255, .22);
}
.details-fold[open] > .details-hero-summary .details-snapshot dt {
  color: #aaa;
}
.details-fold[open] > .details-hero-summary .event-details-snapshot > div,
.details-fold[open] > .details-hero-summary .event-details-snapshot > div:first-child {
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}
.details-fold-action {
  display: flex;
  width: 148px;
  min-width: 148px;
  padding: 4px 5px 4px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-sizing: border-box;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.details-fold[open] .details-fold-action {
  color: var(--ink);
  background: #fff;
}
.fold-state-open,
.details-fold[open] .fold-state-closed { display: none; }
.details-fold[open] .fold-state-open { display: inline; }
.details-fold-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background .2s ease, border-color .2s ease;
}
.details-fold-icon::before,
.details-fold-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}
.details-fold-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.details-fold[open] .details-fold-icon {
  background: transparent;
  border-color: var(--ink);
}
.details-fold[open] .details-fold-icon::before,
.details-fold[open] .details-fold-icon::after { background: var(--ink); }
.details-fold[open] .details-fold-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}
.details-fold-body {
  background: #fff;
  overflow: clip;
}
.details-fold[open] > .details-fold-body { border-top: 0; }
.track-two[open] > .details-fold-body {
  padding-bottom: clamp(80px, 8vw, 120px);
}
.details-fold-body .details-content > section:first-child { border-top: 0; }
#track1-submission-guide {
  scroll-margin-top: calc(var(--nav-height) + 80px);
  outline: 0;
}
.event-details-hero {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(40px, 4.5vw, 58px);
}
.event-details-hero-grid {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(360px, 1.24fr) auto;
  gap: clamp(28px, 3.4vw, 48px);
  align-items: start;
}
.event-details-hero h1 {
  margin: 0;
  font-size: clamp(66px, 8vw, 108px);
  font-weight: 400;
  letter-spacing: -.085em;
  line-height: .84;
}
.event-details-hero-copy {
  padding-left: clamp(24px, 2.6vw, 36px);
}
.event-details-tagline {
  margin: 0 0 clamp(24px, 3vw, 38px);
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.12;
}
.event-details-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}
.eligibility-card {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(30px, 4vw, 52px);
  align-items: center;
  color: var(--ink);
  background: var(--soft);
  border-radius: .38rem;
}
.eligibility-size {
  min-height: 112px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.eligibility-person {
  width: clamp(66px, 6.3vw, 84px);
  aspect-ratio: 1;
  margin-left: -14px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1px solid #bcbcbc;
  border-radius: 50%;
  color: #737373;
  background: #fff;
}
.eligibility-person:first-child { margin-left: 0; }
.eligibility-person svg {
  width: 42%;
  height: 42%;
  stroke-width: 1.45;
}
.eligibility-person-lead {
  width: clamp(82px, 7.6vw, 102px);
  z-index: 3;
  border-color: var(--ink);
  color: var(--ink);
}
.eligibility-person-accent {
  z-index: 2;
  border-color: var(--details-accent);
  color: #087682;
  background: #dcf3f5;
}
.eligibility-card h3 {
  margin: 0 0 12px;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -.06em;
}
.eligibility-card p:last-child {
  max-width: 560px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.judging-layout {
  display: block;
}
.judging-scorecard {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(26px, 3vw, 40px);
  background: var(--soft);
  border-radius: .38rem;
}
.judging-scorecard > .kicker { margin-bottom: 28px; }
.judging-table {
  width: 100%;
  border-collapse: collapse;
}
.judging-table th,
.judging-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.judging-table thead th {
  padding-top: 0;
  color: #888;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.judging-table th:last-child,
.judging-table td:last-child { width: 58px; text-align: right; }
.judging-table tbody th {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.judging-table tbody th small {
  display: block;
  margin-top: 4px;
  color: #888;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .02em;
}
.judging-table tbody td {
  color: var(--details-accent);
  font-size: 24px;
  font-weight: 300;
}
.judging-table tbody tr { outline: 0; }
.judging-table tbody th,
.judging-table tbody td,
.judging-table tbody th small,
.criteria-grid article,
.criteria-grid article span,
.criteria-grid article p {
  transition: color .2s ease, background-color .2s ease;
}
.judging-table tbody tr.is-criterion-active {
  color: var(--ink);
  background: #dcf3f5;
}
.judging-table tbody tr.is-criterion-active th,
.judging-table tbody tr.is-criterion-active td { background: #dcf3f5; }
.judging-table tbody tr.is-criterion-active th {
  box-shadow: inset 3px 0 0 var(--details-accent);
}
.judging-table tbody tr.is-criterion-active th,
.judging-table tbody tr.is-criterion-active th small { color: #155e66; }
.judging-table tbody tr.is-criterion-active td { color: #087682; }
.judging-table tbody tr:focus-visible,
.criteria-grid article:focus-visible {
  outline: 2px solid var(--details-accent);
  outline-offset: -2px;
}
.judging-table tfoot th,
.judging-table tfoot td {
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: .38rem;
}
.criteria-grid article {
  display: flex;
  min-height: 142px;
  padding: 20px;
  flex-direction: column;
  background: #fff;
  outline: 0;
}
.criteria-grid article.is-criterion-active {
  color: var(--ink);
  background: #dcf3f5;
  box-shadow: inset 0 0 0 2px var(--details-accent);
}
.criteria-grid article.is-criterion-active span { color: #087682; }
.criteria-grid article.is-criterion-active p { color: #155e66; }
.criteria-grid article:last-child { grid-column: auto; }
.criteria-grid span {
  color: #aaa;
  font-size: 10px;
}
.criteria-grid h3 {
  margin: 18px 0 7px;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 500;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.criteria-grid p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
}
.details-hero {
  min-height: 0;
  padding-top: 120px;
  padding-bottom: clamp(46px, 5vw, 68px);
  display: flex;
  flex-direction: column;
}
.details-hero-grid {
  grid-template-columns: minmax(270px, .9fr) minmax(350px, 1.2fr) auto;
  gap: clamp(28px, 3.4vw, 48px);
  align-items: start;
  flex: 0;
}
.details-title-stack { min-width: 0; }
.details-hero-grid > .details-hero-copy,
.event-details-hero-grid > .details-hero-copy {
  max-width: 650px;
  margin-top: 0;
  align-self: start;
}
.details-hero-grid > .details-fold-action,
.event-details-hero-grid > .details-fold-action {
  margin: 0;
  align-self: start;
  justify-self: end;
}
.details-track {
  margin-bottom: 18px;
  font-size: 12px;
}
.details-hero h1 {
  font-size: clamp(62px, 7.5vw, 104px);
  line-height: .87;
}
.details-track-title {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 88px);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: .87;
}
.details-fold .details-hero {
  padding-top: clamp(48px, 5.5vw, 74px);
  padding-bottom: clamp(34px, 4vw, 52px);
}
.details-hero-copy {
  position: relative;
  margin-top: 20px;
  padding: 0 0 0 clamp(24px, 2.6vw, 36px);
}
.details-hero-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--details-accent);
  content: "";
}
.details-theme {
  margin-bottom: clamp(18px, 2vw, 26px);
  font-size: clamp(17px, 1.6vw, 22px);
}
.details-hero-copy h2 {
  max-width: 510px;
  margin-bottom: 14px;
  font-size: clamp(31px, 3.1vw, 43px);
}
.details-hero-copy > p:last-child { font-size: 15px; }
.details-content > section {
  padding-block: clamp(34px, 3.8vw, 48px);
  border-top-color: #222;
}
.details-section-heading {
  grid-template-columns: clamp(72px, 8vw, 108px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: end;
  margin-bottom: clamp(22px, 2.8vw, 32px);
}
.event-details-overview .details-section-heading {
  align-items: baseline;
}
.event-details-overview .details-section-heading .details-index {
  line-height: .9;
}
@media (min-width: 761px) {
  .event-details-overview .details-section-heading {
    grid-template-columns: clamp(78px, 7vw, 94px) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 28px);
  }
}

.details-section-heading .details-index {
  color: var(--ink);
  font-size: clamp(52px, 5.8vw, 76px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .72;
}
.details-section-heading .kicker {
  margin-bottom: 12px;
  color: var(--ink);
}
.details-section-heading h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1;
}
.details-section-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.principle-grid {
  gap: 14px;
  border: 0;
}
.principle-grid article {
  min-height: 184px;
  padding: 21px clamp(20px, 2.2vw, 30px) 24px;
  border-radius: .38rem;
  background: var(--soft);
}
.principle-grid article + article { border-left: 0; }
.principle-grid article > span {
  margin-bottom: 34px;
  color: #777;
  font-size: 14px;
}
.principle-grid h3 {
  font-size: clamp(25px, 2.5vw, 34px);
}
.principle-grid p {
  max-width: 330px;
  font-size: 15px;
}
.process-flow {
  gap: 14px;
  background: transparent;
  border: 0;
}
.process-flow article {
  min-height: 198px;
  padding: 21px clamp(20px, 2.2vw, 30px) 24px;
  border-radius: .38rem;
  background: var(--soft);
}
.process-flow article + article { border-left: 0; }
.process-flow article:nth-child(2) {
  color: var(--ink);
  background: var(--soft);
}
.process-flow article:nth-child(2) .process-marker,
.process-flow article:nth-child(2) .process-label,
.process-flow article:nth-child(2) > p:last-of-type {
  color: var(--muted);
}
.process-flow article:not(:last-child)::after { display: none; }
.process-marker {
  margin-bottom: 30px;
  color: #777;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.process-label {
  margin-bottom: 10px;
  color: #888;
}
.process-flow h3 {
  font-size: clamp(22px, 2.1vw, 29px);
}
.process-flow article > p:last-of-type {
  max-width: 330px;
  font-size: 15px;
}
.process-note {
  display: block;
  max-width: 330px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #d9d9d6;
  color: #666;
  font-size: 12px;
  line-height: 1.55;
  word-break: keep-all;
}
.submission-table { border-top: 1px solid var(--ink); }
.submission-table article {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 62px);
  padding: clamp(19px, 2.5vw, 28px) 8px;
  border-bottom: 1px solid var(--line);
}
.submission-table article > h3 {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  letter-spacing: -.04em;
}
.submission-title {
  margin: 0;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.35;
}
.submission-state {
  margin-right: 0;
  margin-left: 12px;
  color: #d56f4b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  vertical-align: .18em;
}
.submission-state.optional { color: var(--details-accent); }
.submission-summary {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.format-list,
.submission-points,
.codex-questions {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.format-list {
  display: flex;
  flex-wrap: wrap;
}
.format-list li {
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: #555;
  font-size: 14px;
}
.format-list li:first-child {
  padding-left: 0;
  border-left: 0;
}
.submission-points,
.codex-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
}
.submission-points li,
.codex-questions li {
  padding: 8px 0;
  border-top: 1px solid #e7e7e7;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}
.submission-points li::before {
  margin-right: 10px;
  color: var(--details-accent);
  content: "•";
}
.codex-questions { counter-reset: codex-question; }
.codex-questions li { counter-increment: codex-question; }
.codex-questions li::before {
  margin-right: 10px;
  color: #999;
  content: "0" counter(codex-question);
  font-size: 10px;
}
.video-outline {
  margin-top: 22px;
  font-size: 13px;
}
.important-notes li::before { color: #d56f4b; }
.details-reward-link {
  display: grid;
  grid-template-columns: clamp(112px, 14vw, 190px) minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 72px);
  min-height: 0;
  margin-top: 0;
  padding: clamp(42px, 5vw, 62px) 0;
  align-items: end;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.details-reward-link small {
  margin: 0;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .08em;
}
.details-reward-link span {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}
.details-reward-link strong {
  padding-bottom: 7px;
  border-bottom: 2px solid var(--details-accent);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}
.details-reward-link:hover strong {
  color: #247d87;
  transform: none;
}

/* Track details: compact overview and two-column scan layout */
.track-one .details-content,
.track-two .details-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(26px, 4vw, 54px);
}
.track-one .details-rules,
.track-two .details-rules,
.track-one .details-reward-link,
.track-two .details-reward-link {
  grid-column: 1 / -1;
}
.track-one .details-section-heading,
.track-two .details-section-heading {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}
.track-one .details-section-heading .details-index,
.track-two .details-section-heading .details-index {
  font-size: 42px;
  line-height: .85;
}
.track-one .details-section-heading h2,
.track-two .details-section-heading h2 {
  font-size: clamp(27px, 2.8vw, 36px);
}
.track-one .principle-grid,
.track-two .principle-grid,
.track-one .process-flow,
.track-two .process-flow {
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: .38rem;
}
.track-one .principle-grid article,
.track-two .principle-grid article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  min-height: 0;
  padding: 16px 18px;
  border-radius: 0;
  background: #fff;
}
.track-one .principle-grid article > span,
.track-two .principle-grid article > span {
  grid-row: 1 / 3;
  margin: 3px 0 0;
}
.track-one .principle-grid h3,
.track-two .principle-grid h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.track-one .principle-grid p,
.track-two .principle-grid p {
  max-width: none;
  font-size: 14px;
  line-height: 1.55;
}
.track-one .process-flow article,
.track-two .process-flow article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 0;
  padding: 16px 18px;
  border-radius: 0;
}
.track-one .process-marker,
.track-two .process-marker {
  grid-row: 1 / 3;
  margin: 2px 0 0;
}
.track-one .process-label,
.track-two .process-label { margin-bottom: 6px; }
.track-one .process-flow h3,
.track-two .process-flow h3 {
  margin-bottom: 6px;
  font-size: 20px;
}
.track-one .process-flow article > p:last-of-type,
.track-two .process-flow article > p:last-of-type {
  max-width: none;
  font-size: 14px;
  line-height: 1.55;
}
.track-one .submission-table,
.track-two .submission-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: .38rem;
}
.track-one .submission-table article,
.track-two .submission-table article {
  display: block;
  padding: clamp(20px, 2.2vw, 26px);
  background: #fff;
  border: 0;
}
.track-one .submission-table article > h3,
.track-two .submission-table article > h3 {
  margin-bottom: clamp(20px, 2.4vw, 28px);
  color: #777;
  font-size: 13px;
}
.track-one .submission-table article:last-child,
.track-two .submission-table article:last-child {
  grid-column: 1 / -1;
  background: var(--soft);
}
.track-one .details-reward-link,
.track-two .details-reward-link {
  padding-block: clamp(32px, 4vw, 44px);
}
.track-one .details-reward-link span,
.track-two .details-reward-link span {
  font-size: clamp(32px, 4vw, 52px);
}
@media (min-width: 981px) {
  .track-one .details-principles,
  .track-one .details-process,
  .track-two .details-principles,
  .track-two .details-process {
    display: flex;
    flex-direction: column;
    border-top: 0;
  }
  .track-one .details-principles .details-section-heading,
  .track-one .details-process .details-section-heading,
  .track-two .details-principles .details-section-heading,
  .track-two .details-process .details-section-heading {
    min-height: 118px;
  }
  .track-one .principle-grid,
  .track-one .process-flow,
  .track-two .principle-grid,
  .track-two .process-flow {
    grid-template-rows: repeat(3, minmax(0, 1fr));
    flex: 1;
  }
}
@media (min-width: 761px) and (max-width: 980px) {
  .track-one .details-content,
  .track-two .details-content { grid-template-columns: 1fr; }
}
@supports (animation-timeline: view()) {
  .details-content > section,
  .details-reward-link {
    animation: detailsSectionReveal both linear;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }
}
@keyframes detailsSectionReveal {
  from { opacity: .35; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .event-details-hero-grid,
  .details-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .details-hero-grid > .details-fold-action,
  .event-details-hero-grid > .details-fold-action {
    align-self: start;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .details-anchor-inner {
    min-height: 58px;
    padding-block: 9px;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .details-anchor-inner::-webkit-scrollbar { display: none; }
  .details-anchor-label { display: none; }
  .details-anchor-toggle {
    width: min(100%, 304px);
    margin-inline: auto;
  }
  .details-anchor-nav a {
    min-width: 0;
    padding: 9px 8px;
    flex: 1 1 0;
  }
  .details-fold { scroll-margin-top: calc(var(--nav-height) + 58px); }
  .details-title-with-toggle { gap: 14px; }
  .details-fold-action { padding-top: 4px; }
  .event-details-hero { padding-top: 48px; padding-bottom: 42px; }
  .event-details-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }
  .details-hero-grid > .details-fold-action,
  .event-details-hero-grid > .details-fold-action {
    margin: 0;
    align-self: start;
    justify-self: end;
  }
  .event-details-hero h1 {
    font-size: clamp(60px, 17vw, 88px);
    line-height: .86;
  }
  .event-details-hero-copy { padding-left: 24px; }
  .event-details-tagline { font-size: 25px; }
  .eligibility-card,
  .judging-layout { grid-template-columns: 1fr; }
  .eligibility-card { gap: 28px; }
  .eligibility-size { min-height: 96px; }
  .judging-layout { gap: 10px; }
  .judging-scorecard,
  .criteria-grid {
    grid-column: auto;
    grid-row: auto;
  }
  .criteria-grid article { min-height: 132px; }
  .details-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 42px;
  }
  .details-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .details-hero h1 {
    font-size: clamp(51px, 14vw, 76px);
    line-height: .88;
  }
  .details-track-title {
    font-size: clamp(51px, 14vw, 76px);
    line-height: .88;
  }
  .details-fold .details-hero { padding-top: 48px; }
  .details-hero-copy {
    margin-top: 0;
    padding-left: 24px;
  }
  .details-hero-copy h2 {
    max-width: 330px;
    font-size: clamp(29px, 7.8vw, 36px);
  }
  .details-section-heading {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .details-section-heading .details-index {
    font-size: 52px;
    line-height: .85;
  }
  .details-section-heading h2 { font-size: 34px; }
  .details-section-copy { margin-top: 14px; }
  .details-content > section { padding-block: 32px; }
  .principle-grid,
  .process-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .principle-grid article,
  .process-flow article {
    min-height: auto;
    padding: 24px;
  }
  .principle-grid article + article,
  .process-flow article + article {
    border-top: 0;
    border-left: 0;
  }
  .principle-grid article > span,
  .process-marker { margin-bottom: 26px; }
  .submission-table article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }
  .submission-table article > h3 {
    color: #777;
    font-size: 14px;
  }
  .format-list li {
    margin: 5px 0;
    padding-inline: 12px;
  }
  .submission-points,
  .codex-questions { grid-template-columns: 1fr; }
  .details-reward-link {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .details-reward-link span { font-size: 34px; }
  .details-reward-link strong {
    grid-column: 2;
    justify-self: start;
  }
  .details-snapshot,
  .event-details-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }
  .details-snapshot > div {
    padding: 14px 12px;
    border-left: 1px solid var(--line);
  }
  .details-snapshot > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .details-snapshot > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .details-snapshot dd { font-size: 15px; }
  .event-details-snapshot { gap: 8px; }
  .event-details-snapshot > div,
  .event-details-snapshot > div:first-child,
  .event-details-snapshot > div:nth-child(n+3) {
    min-height: 112px;
    padding: 14px;
    border: 0;
  }
  .event-details-snapshot .snapshot-flow {
    grid-template-columns: 1fr 22px;
    row-gap: 6px;
  }
  .event-details-snapshot .snapshot-flow > span:last-child {
    grid-column: 1 / -1;
  }
  .track-one .details-content,
  .track-two .details-content { grid-template-columns: 1fr; }
  .track-one .details-rules,
  .track-two .details-rules,
  .track-one .details-reward-link,
  .track-two .details-reward-link { grid-column: auto; }
  .track-one .details-section-heading,
  .track-two .details-section-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }
  .track-one .details-section-heading .details-index,
  .track-two .details-section-heading .details-index { font-size: 38px; }
  .track-one .submission-table,
  .track-two .submission-table { grid-template-columns: 1fr; }
  .track-one .submission-table article:last-child,
  .track-two .submission-table article:last-child { grid-column: auto; }
}

@media (max-width: 430px) {
  .details-anchor-inner { gap: 0; }
  .details-anchor-nav a { font-size: 11px; }
  .details-fold-action {
    width: 32px;
    min-width: 32px;
    padding: 0;
    gap: 0;
    background: transparent;
    border: 0;
  }
  .details-fold[open] .details-fold-action { background: transparent; }
  .details-fold .details-fold-action .fold-state { display: none; }
  .details-fold-icon { width: 32px; height: 32px; flex-basis: 32px; }
  .details-fold:not([open]) .details-fold-icon {
    background: var(--ink);
    border-color: var(--ink);
  }
  .details-fold:not([open]) .details-fold-icon::before,
  .details-fold:not([open]) .details-fold-icon::after { background: #fff; }
  .details-fold[open] .details-fold-icon { border-color: #fff; }
  .details-fold[open] .details-fold-icon::before,
  .details-fold[open] .details-fold-icon::after { background: #fff; }
  .event-details-hero h1 { font-size: clamp(56px, 17vw, 72px); }
  .eligibility-card { padding: 28px 22px; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-grid article,
  .criteria-grid article:last-child { grid-column: auto; min-height: 122px; }
  .judging-scorecard { padding: 24px 20px; }
  .judging-table tbody th { font-size: 13px; }
  .judging-table tbody td { font-size: 21px; }
  .details-hero h1,
  .details-track-title { font-size: clamp(47px, 13.2vw, 58px); }
  .details-section-heading,
  .details-reward-link {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }
  .details-section-heading .details-index { font-size: 42px; }
  .details-section-heading h2 { font-size: 30px; }
  .format-list li {
    width: 50%;
    padding-left: 10px;
    border-left: 1px solid var(--line);
  }
  .format-list li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .details-reward-link span { font-size: 30px; }
}

/* Details content: consistent reading hierarchy */
.details-content .details-section-heading h2 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.055em;
}
.details-content .details-section-heading .details-index {
  color: #737373;
  font-weight: 400;
}
.details-content .details-section-heading .kicker,
.details-content .process-label,
.details-content .process-marker,
.details-content .principle-grid article > span {
  color: #737373;
}
.details-content .principle-grid h3,
.details-content .process-flow h3,
.details-content .eligibility-card h3,
.details-content .criteria-grid h3,
.details-content .submission-table article > h3,
.details-content .submission-title {
  color: var(--ink);
  font-weight: 600;
}
.details-content .principle-grid p,
.details-content .process-flow article > p:last-of-type,
.details-content .eligibility-card p:last-child,
.details-content .criteria-grid p,
.details-content .submission-summary {
  color: var(--muted);
  font-weight: 400;
}

/* Application flow */
.submit-page {
  --application-accent: #31b8c7;
  min-height: calc(100svh - var(--nav-height));
}
.submit-page [hidden] { display: none !important; }
.submit-login {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  padding: clamp(80px, 11vh, 130px) var(--pad);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.submit-login::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  background: url("assets/openai-blossom.svg") center / contain no-repeat;
  content: "";
  opacity: .025;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.submit-login-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
}
.submit-wordmark {
  display: block;
  width: clamp(110px, 11vw, 150px);
  margin: 0 auto clamp(44px, 7vh, 72px);
}
.submit-login h1 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 98px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .92;
}
.submit-login-inner > p {
  margin: 30px 0 0;
  color: #666;
  font-size: clamp(16px, 1.6vw, 20px);
}
.google-signin-slot {
  display: flex;
  min-height: 44px;
  margin-top: 44px;
  justify-content: center;
}
.google-signin-slot:empty { display: none; }
.google-signin-fallback {
  width: min(100%, 320px);
  min-height: 48px;
  margin: 44px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #d5d5d5;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.google-signin-fallback img {
  width: 18px;
  height: 18px;
}
.google-signin-fallback:hover { border-color: #999; }
.submit-auth-status {
  min-height: 20px;
  margin: 18px auto 0 !important;
  color: #777 !important;
  font-size: 12px !important;
  line-height: 1.55;
}
.submit-application {
  padding-bottom: 150px;
}
.application-header {
  max-width: 1060px;
  padding-top: 120px;
  padding-bottom: clamp(76px, 9vw, 118px);
  text-align: center;
}
.application-header h1 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 96px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .92;
}
.application-header h1 span {
  display: inline-block;
  font-size: .58em;
  font-weight: 500;
  letter-spacing: -.055em;
  vertical-align: .1em;
}
.application-intro {
  max-width: 620px;
  margin: 46px auto 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}
.application-intro strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.4;
}
.application-intro p { margin: 0; }
.application-caution {
  display: flex;
  margin-top: 24px !important;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: #777;
  font-size: 13px;
}
.application-caution svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
}
.application-body {
  max-width: 980px;
}
.account-strip {
  min-height: 104px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: .38rem;
  background: var(--soft);
}
.account-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}
.account-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 17px;
  font-weight: 600;
}
.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-identity p {
  margin: 0 0 4px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.account-identity strong {
  display: block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-strip > button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #888;
  color: #555;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}
.account-recording-note {
  margin: 14px 4px 0;
  color: #888;
  font-size: 11px;
  line-height: 1.65;
  word-break: keep-all;
}
.application-form { margin-top: 72px; }
.application-section {
  padding: clamp(58px, 7vw, 86px) 0;
  border-top: 1px solid var(--ink);
}
.application-section-title {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  margin-bottom: 52px;
}
.application-section-title > span {
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .8;
}
.application-section-title h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1.05;
  word-break: keep-all;
}
.application-section-title h2.applicant-title {
  display: flex;
  flex-wrap: wrap;
  column-gap: .28em;
}
.application-section-title h2.applicant-title > span {
  white-space: nowrap;
}
.application-section-title > div > p:last-child {
  margin: 14px 0 0;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}
.consent-list { border-top: 1px solid var(--line); }
.account-contact-field {
  min-height: 132px;
  padding: 24px 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.account-contact-field > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}
.account-contact-field > span:first-child strong {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
}
.account-contact-field small {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}
.account-contact-value {
  min-height: 48px;
  padding: 0;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.account-contact-value > strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-contact-value > button {
  min-height: auto;
  padding: 0 0 2px;
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid #888;
  border-radius: 0;
  color: #555;
  background: transparent;
  font-size: 12px;
  line-height: 1.35;
  cursor: pointer;
}

.account-contact-value > button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
.country-consent-field {
  min-height: 132px;
  padding: 24px 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.country-consent-field > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}
.country-consent-field strong {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
}
.country-consent-field small {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}
.country-search-control {
  position: relative;
  display: block;
}
.country-search-control > button {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 10px 40px 10px 44px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cfcfcf;
  border-radius: .38rem;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.country-search-control > button:hover { border-color: #999; }
.country-search-control > button:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.country-search-control > button > svg:first-child {
  position: absolute;
  left: 15px;
  width: 17px;
  height: 17px;
  color: #777;
}
.country-search-control > button > svg:last-child {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  color: #777;
}
.country-search-control > button[aria-invalid="true"] { border-color: #d56f4b; }
.country-search-control > button.is-selected { border-color: var(--ink); }
.country-field-error {
  margin-top: 8px;
  display: block;
  color: #b84e2b !important;
  font-size: 11px !important;
}
.country-field-error[hidden] { display: none; }
.country-dialog {
  width: min(calc(100% - 36px), 720px);
  max-height: min(88svh, 780px);
  padding: 0;
  border: 0;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}
.country-dialog::backdrop {
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(3px);
}
.country-dialog-frame {
  display: grid;
  max-height: min(88svh, 780px);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}
.country-dialog header {
  padding: 28px 30px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.country-dialog header .kicker { margin: 0 0 8px; }
.country-dialog header h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: -.055em;
}
.country-dialog-close {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.country-dialog-close svg {
  width: 17px;
  height: 17px;
}
.country-dialog-search {
  margin: 20px 30px 14px;
  position: relative;
  display: block;
}
.country-dialog-search svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  color: #777;
  pointer-events: none;
  transform: translateY(-50%);
}
.country-dialog-search input {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 10px 16px 10px 46px;
  border: 1px solid #cfcfcf;
  border-radius: .38rem;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
}
.country-dialog-search input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.country-option-list {
  margin: 0 30px;
  padding: 0 0 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.country-option {
  width: 100%;
  min-height: 62px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.country-option:hover { background: #f7f7f7; }
.country-option[hidden] { display: none; }
.country-option[aria-checked="true"] {
  color: #fff;
  background: var(--ink);
}
.country-option-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.country-option-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-option-copy small {
  overflow: hidden;
  color: #888;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-option[aria-checked="true"] small { color: #cfcfcf; }
.country-option-code {
  color: #888;
  font-size: 11px;
  font-weight: 600;
}
.country-option[aria-checked="true"] .country-option-code { color: #fff; }
.country-empty {
  margin: 0;
  padding: 44px 30px;
  color: #888;
  font-size: 13px;
  text-align: center;
}
.country-dialog footer {
  padding: 18px 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.country-dialog footer button {
  min-width: 94px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.country-dialog-cancel {
  color: var(--ink);
  background: #fff;
}
.country-dialog-confirm {
  color: #fff;
  background: var(--ink);
}
.country-dialog-confirm:disabled {
  border-color: #e3e3e3;
  color: #999;
  background: #e3e3e3;
  cursor: not-allowed;
}
.international-consent[hidden] { display: none; }
.application-form .consent-row {
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  text-align: left;
}
.application-form button.consent-row { cursor: pointer; }
.application-form button.consent-row:hover { background: #fafafa; }
.application-form button.consent-row:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}
.consent-row > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}
.consent-row strong {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
}
.consent-row sup,
.application-form sup {
  color: #d56f4b;
  font-size: .65em;
  vertical-align: super;
}
.consent-row small {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.consent-indicator {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #aaa;
  border-radius: 50%;
  color: transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.consent-indicator svg {
  width: 15px;
  height: 15px;
}
.consent-row[aria-pressed="true"] .consent-indicator {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}
.age-choice {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #555;
  font-size: 13px;
}
.age-choice input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--ink);
}
.required-note {
  margin: -18px 0 34px;
  color: #777;
  font-size: 12px;
}
.applicant-fields,
.team-size,
.attendance-availability {
  margin: 0;
  padding: 0;
  border: 0;
}
.applicant-fields > legend {
  margin-bottom: 34px;
  font-size: 20px;
  font-weight: 600;
}
.application-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
}
.application-form-grid label {
  display: block;
  min-width: 0;
}
.application-form-grid label > span,
.phone-field > label,
.team-size legend,
.attendance-availability legend {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}
.attendance-availability legend {
  line-height: 1.55;
  word-break: keep-all;
}
.attendance-note {
  margin: -1px 0 16px;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
  word-break: keep-all;
}
.application-form-grid em {
  margin-left: 5px;
  color: #999;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}
.application-form-grid input {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
}
.application-form-grid input:focus { border-color: var(--ink); }
.application-form-grid input:user-invalid { border-color: #d56f4b; }
.application-form-grid label > small {
  display: block;
  margin-top: 8px;
  color: #999;
  font-size: 10px;
  line-height: 1.4;
}
.phone-field {
  --iti-border-color: #d5d5d5;
  --iti-country-selector-bg: #fff;
  --iti-hover-color: #f2f2f2;
  position: relative;
}
.phone-field--emergency {
  margin-top: 44px;
}
.phone-field > .iti {
  width: 100%;
  display: block;
}
.phone-field .iti__tel-input {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: inherit;
  font-size: 17px;
}
.phone-field .iti__tel-input:focus {
  border-color: var(--ink);
}
.phone-field .iti__country-container {
  font-size: 13px;
}
.phone-field .iti__selected-country {
  margin-right: 12px;
  padding-right: 16px;
  border-right: 1px solid #dedede;
}
.phone-field .iti__selected-country-primary {
  gap: 6px;
  padding-left: 2px;
  padding-right: 6px;
}
.phone-field .iti__selected-dial-code {
  margin-left: 10px;
  font-variant-numeric: tabular-nums;
}
.phone-field .iti__country-selector {
  min-width: min(420px, calc(100vw - 40px));
  margin-top: 8px;
  overflow: hidden;
  border-color: #cfcfcf;
  border-radius: 4px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
}
.phone-field .iti__search-input-wrapper {
  min-height: 48px;
  background: #fff;
}
.phone-field .iti__search-input {
  width: 100%;
  min-height: 48px;
  padding: 11px 42px !important;
  border: 0 !important;
  border-bottom: 1px solid #d5d5d5 !important;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
  outline: 0;
}
.phone-field .iti__search-input:focus {
  border-bottom-color: var(--ink) !important;
}
.phone-field .iti__search-icon {
  left: 14px;
}
.phone-field .iti__search-clear {
  right: 12px;
}
.phone-field .iti__country {
  min-height: 42px;
  padding-right: 14px;
  padding-left: 14px;
  font-size: 13px;
}
.phone-field .updates-consent-row {
  margin-top: 26px;
  padding-inline: 0;
  border-top: 1px solid #e2e2e2;
}
.updates-consent-row[data-choice="decline"] .consent-indicator {
  border-color: #777;
  background: #777;
}
.field-error {
  margin: 9px 0 0;
  color: #b84e2b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
.field-error[hidden] { display: none; }
.application-form label.has-error input,
.application-form label.has-error textarea,
.application-form .phone-field.has-error .iti__tel-input,
.application-form .platform-other-input.has-error input {
  border-color: #d56f4b;
}
.application-form .consent-row.has-error {
  border-bottom-color: #d56f4b;
  background: #fff9f7;
}
.application-form .consent-row.has-error .consent-indicator {
  border-color: #d56f4b;
}
.team-size.has-error .team-size-options span,
.attendance-availability.has-error .attendance-options span,
.platform-field.has-error .platform-options label > span {
  border-color: #d56f4b;
}
.thumbnail-field.has-error .thumbnail-upload {
  border-color: #d56f4b;
  background: #fff9f7;
}
.field-wide { grid-column: 1 / -1; }
.team-size,
.attendance-availability { margin-top: 44px; }
.team-size-options,
.attendance-options {
  display: grid;
  gap: 10px;
}
.team-size-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.attendance-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-size-options label,
.attendance-options label {
  position: relative;
  min-width: 0;
}
.team-size-options input,
.attendance-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.team-size-options span,
.attendance-options span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #cfcfcf;
  border-radius: .38rem;
  color: #555;
  font-size: 14px;
  cursor: pointer;
}
.team-size-options input:checked + span,
.attendance-options input:checked + span {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}
.team-size-options input:focus-visible + span,
.attendance-options input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.project-fields {
  display: grid;
  gap: 48px;
}
.project-field {
  min-width: 0;
}
.project-field-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.project-field-heading h3,
.project-label,
.platform-field legend {
  margin: 0;
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.project-field-heading p,
.project-field > small,
.platform-field > p {
  margin: 7px 0 0;
  display: block;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
  word-break: keep-all;
}
.project-field-heading > span {
  flex: 0 0 auto;
  color: #777;
  font-size: 11px;
  font-weight: 600;
}
.thumbnail-upload {
  min-height: 230px;
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px dashed #aaa;
  border-radius: .38rem;
  background: #fafafa;
  cursor: pointer;
}
.thumbnail-upload:hover { border-color: var(--ink); }
.thumbnail-upload:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.thumbnail-upload > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.thumbnail-empty {
  padding: 34px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #777;
  text-align: center;
}
.thumbnail-empty svg {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
.thumbnail-empty strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.thumbnail-empty small {
  font-size: 11px;
}
.thumbnail-preview {
  width: 100%;
  min-height: 230px;
  padding: 18px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.thumbnail-preview[hidden],
.thumbnail-empty[hidden] { display: none; }
.thumbnail-preview img {
  width: 190px;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: .25rem;
  background: #eee;
}
.thumbnail-preview > span {
  min-width: 0;
}
.thumbnail-preview strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.thumbnail-preview small {
  margin-top: 8px;
  display: block;
  color: #777;
  font-size: 11px;
}
.project-tip {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: 11px;
}
.project-tip svg {
  width: 14px;
  height: 14px;
}
.thumbnail-status {
  min-height: 17px;
  margin: 6px 0 0;
  color: #b84e2b;
  font-size: 11px;
  line-height: 1.5;
}
.project-form-grid,
.bonus-submissions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 46px;
}
.project-field input:not([type="file"]),
.project-field textarea,
.platform-other-input input {
  width: 100%;
  margin: 16px 0 0;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
}
.project-field input:not([type="file"]) {
  min-height: 48px;
}
.project-field textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.65;
}
.project-field input:focus,
.project-field textarea:focus,
.platform-other-input input:focus { border-color: var(--ink); }
.project-field input:user-invalid,
.project-field textarea:user-invalid,
.platform-other-input input:user-invalid { border-color: #d56f4b; }
.description-field { position: relative; }
.description-field textarea { padding-right: 58px; }
.character-count {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: #999;
  font-size: 10px;
}
.character-count b {
  color: var(--ink);
  font-weight: 500;
}
.platform-field {
  margin: 0;
  padding: 0;
  border: 0;
}
.platform-options {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.platform-options label {
  min-width: 0;
  position: relative;
}
.platform-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.platform-options label > span {
  min-height: 118px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #cfcfcf;
  border-radius: .38rem;
  cursor: pointer;
}
.platform-options label > span:hover { border-color: #888; }
.platform-options strong {
  font-size: 18px;
  font-weight: 500;
}
.platform-options small {
  margin-top: 9px;
  color: #555;
  font-size: 12px;
  line-height: 1.45;
}
.platform-options em {
  margin-top: 5px;
  color: #999;
  font-size: 10px;
  font-style: normal;
  line-height: 1.4;
}
.platform-options input:checked + span {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}
.platform-options input:checked + span small { color: #ddd; }
.platform-options input:checked + span em { color: #aaa; }
.platform-options input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.platform-other-option { grid-column: 1 / -1; }
.platform-other-option > span {
  min-height: 80px !important;
  justify-content: center;
}
.platform-other-input {
  margin-top: 18px;
  display: block;
}
.platform-other-input[hidden] { display: none; }
.platform-other-input > span {
  font-size: 12px;
  font-weight: 600;
}
.main-submission {
  --submission-accent: #31b8c7;
  padding: 44px 42px 40px;
  border: 0;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--submission-accent);
  transition: box-shadow .2s ease;
}
.main-submission:focus-within {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--submission-accent);
}
.main-submission .submission-type {
  color: #d56f4b;
  font-size: 11px;
  letter-spacing: 0;
}
.main-submission .project-label { color: var(--ink); }
.main-submission input:not([type="file"]) {
  color: var(--ink);
  border-color: #aaa;
}
.main-submission input:not([type="file"])::placeholder { color: #999; }
.main-submission input:not([type="file"]):focus { border-color: var(--ink); }
.submission-type {
  margin-bottom: 18px;
  color: #777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.submission-guidance {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.submission-guidance p {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}
.main-submission .submission-guidance p { color: #555; }
.submission-guidance .submission-guidance-highlight {
  width: max-content;
  max-width: 100%;
  padding: 4px 7px 5px;
  color: var(--ink);
  background: #f8dc61;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.submission-guidance ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}
.submission-guidance li {
  padding-left: 16px;
  position: relative;
  color: #777;
  font-size: 11px;
  line-height: 1.55;
}
.main-submission .submission-guidance li { color: #777; }
.submission-guidance li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: .55em;
  left: 0;
  border-radius: 50%;
  background: var(--ink);
}
.main-submission .submission-guidance li::before { background: var(--ink); }
.submission-guidance a {
  width: max-content;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
}
.main-submission .submission-guidance a { color: var(--ink); border-color: var(--ink); }
.submission-guidance a svg {
  width: 13px;
  height: 13px;
}
.bonus-submissions {
  padding-top: 8px;
}
.bonus-submissions .project-field {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.bonus-submissions .project-label em {
  margin-left: 5px;
  color: #999;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}
.application-submit {
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.application-submit > button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.application-submit > button:hover { background: #333; }
.application-submit > button:disabled {
  cursor: wait;
  opacity: .58;
}
.application-submit .form-status { max-width: 600px; }
.application-submit .form-status.is-error {
  color: #b84e2b;
  font-weight: 600;
}
.application-submit .form-status.is-success {
  color: #19724a;
  font-weight: 600;
}
.main-submission .field-error { color: #a33d20; }
.submit-success {
  min-height: 100svh;
  padding: calc(var(--nav-height) + clamp(36px, 6vh, 72px)) 24px clamp(44px, 7vh, 72px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.submit-success[hidden] { display: none; }
.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  pointer-events: none;
}
.confetti-canvas.is-active { display: block; }
.submit-success-inner {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
  text-align: center;
  animation: submit-success-enter .65s cubic-bezier(.2, .8, .2, 1) both;
}
.submit-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}
.submit-success-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}
.submit-success .kicker {
  margin: 0 0 22px;
  letter-spacing: 0;
}
.submit-success h1 {
  max-width: 680px;
  margin: 0 auto;
  outline: 0;
  font-size: clamp(50px, 5.25vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  word-break: keep-all;
}
.submit-success-message {
  max-width: 620px;
  margin: 34px auto 0;
  color: #666;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
  word-break: keep-all;
}
.submit-success-message strong {
  margin-bottom: 10px;
  display: block;
  color: var(--ink);
  font-weight: 600;
}
.submit-success-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.submit-success-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.submit-success-socials > span {
  margin-right: 5px;
  color: #555;
  font-size: 14px;
}
.submit-success-socials > div {
  display: flex;
  gap: 9px;
}
.submit-success-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition: transform .2s, border-color .2s, background .2s;
}
.submit-success-socials a:hover {
  border-color: #999;
  background: #f7f7f7;
  transform: translateY(-2px);
}
.submit-success-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.submission-deadline-dialog {
  width: min(640px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}
.submission-deadline-dialog::backdrop {
  background: rgba(10, 10, 10, .54);
  backdrop-filter: blur(6px);
}
.submission-deadline-frame {
  padding: 54px 54px 48px;
  position: relative;
  text-align: center;
}
.submission-deadline-dialog .form-dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.submission-deadline-dialog .form-dialog-close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.submission-deadline-dialog h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  word-break: keep-all;
}
.submission-deadline-message {
  margin: 28px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}
.submission-deadline-socials {
  margin-top: 30px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid #e1e1e1;
}
.submission-deadline-socials > span {
  color: #555;
  font-size: 14px;
}
.submission-deadline-socials > div {
  display: flex;
  gap: 9px;
}
.submission-deadline-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.submission-deadline-socials a:hover {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}
.submission-deadline-socials a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.submission-deadline-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.submit-another-button {
  min-height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.submit-another-button:hover {
  background: #333;
  transform: translateY(-1px);
}
.submit-another-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
@keyframes submit-success-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.updates-decline-dialog {
  width: min(calc(100% - 36px), 600px);
  padding: 0;
  border: 0;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}
.updates-decline-dialog::backdrop {
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(3px);
}
.updates-decline-frame {
  padding: 42px 42px 34px;
  position: relative;
}
.updates-decline-dialog .form-dialog-close {
  position: absolute;
  top: 42px;
  right: 42px;
}
.updates-decline-dialog h2 {
  max-width: 480px;
  padding-right: 52px;
  margin: 0;
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  word-break: keep-all;
}
.updates-decline-dialog h2 + p {
  max-width: 500px;
  margin: 22px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}
.updates-decline-notice {
  margin-top: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e4cf74;
  border-radius: .35rem;
  background: #fff9d8;
  font-size: 12px;
  line-height: 1.55;
}
.updates-decline-notice svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.updates-decline-dialog footer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.updates-decline-dialog footer button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.updates-decline-dialog footer button:focus-visible,
.updates-decline-dialog .form-dialog-close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.updates-decline-cancel {
  color: var(--ink);
  background: #f1f1f1;
}
.updates-decline-confirm {
  color: #fff;
  background: var(--ink);
}
.discard-dialog {
  width: min(calc(100% - 36px), 580px);
  padding: 0;
  border: 0;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}
.discard-dialog::backdrop {
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(3px);
}
.discard-dialog-frame {
  padding: 42px 42px 34px;
  position: relative;
}
.discard-dialog-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 42px;
  right: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.discard-dialog-close svg {
  width: 17px;
  height: 17px;
}
.discard-dialog h2 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
  word-break: keep-all;
}
.discard-dialog-message {
  max-width: 470px;
  margin: 22px 0 0;
  color: #666;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}
.discard-dialog-notice {
  margin-top: 28px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  background: #f5f5f5;
}
.discard-dialog-notice > svg {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  stroke-width: 1.6;
}
.discard-dialog-notice p {
  margin: 0;
}
.discard-dialog-notice strong,
.discard-dialog-notice span {
  display: block;
  word-break: keep-all;
}
.discard-dialog-notice strong {
  font-size: 13px;
  font-weight: 700;
}
.discard-dialog-notice span {
  margin-top: 4px;
  color: #666;
  font-size: 13px;
  line-height: 1.55;
}
.discard-dialog.has-unsaved-content .discard-dialog-notice {
  background: #f7f3f1;
}
.discard-dialog footer {
  margin-top: 32px;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.discard-dialog footer button {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: .25rem;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.discard-dialog-cancel {
  color: var(--ink);
  background: #f1f1f1;
}
.discard-dialog-confirm {
  color: #fff;
  background: var(--ink);
}
.discard-dialog footer button:hover {
  transform: translateY(-1px);
}
.discard-dialog-cancel:hover { background: #e8e8e8; }
.discard-dialog-confirm:hover { background: #333; }
.discard-dialog footer button:focus-visible,
.discard-dialog-close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.terms-dialog {
  width: min(calc(100% - 36px), 760px);
  max-height: min(86svh, 760px);
  padding: 0;
  border: 0;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}
.terms-dialog::backdrop {
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(3px);
}
.terms-dialog-frame {
  display: grid;
  max-height: min(86svh, 760px);
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.terms-dialog header {
  padding: 28px 30px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.terms-dialog header .kicker { margin-bottom: 10px; }
.terms-dialog h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -.055em;
}
.terms-close {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.terms-close svg {
  width: 18px;
  height: 18px;
}
.terms-scroll {
  min-height: 0;
  padding: 28px 30px 60px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #555;
  font-size: 15px;
  line-height: 1.82;
}
.terms-scroll h3 {
  margin: 30px 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}
.terms-scroll h3:first-of-type { margin-top: 24px; }
.terms-scroll p { margin: 0; }
.terms-scroll p + p { margin-top: 12px; }
.terms-scroll ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 22px;
  padding-left: 1.35em;
}
.terms-scroll li {
  margin: 0;
  padding-left: 0.15em;
}
.terms-scroll strong {
  color: var(--ink);
  font-weight: 700;
}
.terms-scroll a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.terms-full-link {
  margin-top: 26px !important;
}
.terms-draft-note {
  padding: 14px 16px;
  color: #6f594f;
  background: #f7f2ef;
  font-size: 11px;
  line-height: 1.6;
}
.terms-dialog footer {
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.terms-dialog footer p {
  margin: 0;
  color: #888;
  line-height: 1.5;
}
.terms-dialog footer button {
  min-height: 42px;
  padding: 0 18px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.terms-dialog footer button:disabled {
  color: #999;
  background: #e4e4e4;
  cursor: not-allowed;
}
.terms-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.terms-actions[hidden] { display: none; }
.terms-dialog footer .terms-update-decline {
  border: 1px solid #cfcfcf;
  color: var(--ink);
  background: #fff;
}
.terms-dialog footer .terms-update-decline:hover:not(:disabled) {
  border-color: var(--ink);
}
.terms-dialog footer .terms-update-decline:disabled {
  border-color: #e4e4e4;
  color: #999;
  background: #f5f5f5;
}
body.terms-modal-open { overflow: hidden; }

.birthdate-value {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 13px;
}
.birthdate-value svg {
  width: 18px;
  height: 18px;
}
.birthdate-row.is-selected .birthdate-value {
  color: var(--ink);
  font-weight: 600;
}
.guardian-consent[aria-pressed="true"] {
  background: #f7f7f7;
}

.birthdate-dialog,
.guardian-dialog {
  width: min(calc(100% - 36px), 760px);
  max-height: min(88svh, 800px);
  padding: 0;
  border: 0;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}
.guardian-dialog {
  width: min(calc(100% - 36px), 820px);
}
.birthdate-dialog::backdrop,
.guardian-dialog::backdrop {
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(3px);
}
.birthdate-dialog-frame,
.guardian-dialog-frame {
  display: grid;
  max-height: min(88svh, 800px);
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.birthdate-dialog header,
.guardian-dialog header {
  padding: 28px 30px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.birthdate-dialog header .kicker,
.guardian-dialog header .kicker {
  margin: 0 0 10px;
}
.birthdate-dialog h2,
.guardian-dialog h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -.055em;
}
.form-dialog-close {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.form-dialog-close svg {
  width: 18px;
  height: 18px;
}
.birthdate-dialog-body {
  padding: 32px 30px 42px;
  overflow-y: auto;
}
.birthdate-dialog-body > p:first-child {
  max-width: 600px;
  margin: 0 0 32px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.birthdate-selects {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.birthdate-selects label,
.guardian-fields > label,
.guardian-relationship-other,
.guardian-phone-field {
  display: block;
}
.birthdate-selects label > span:first-child,
.guardian-fields > label > span,
.guardian-relationship-other > span,
.guardian-phone-field > label,
.guardian-fields legend {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
}
.birthdate-select-control {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: .38rem;
}
.birthdate-select-control svg {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transform: translateY(-50%);
}
.birthdate-selects select {
  width: 100%;
  min-height: 50px;
  padding: 0 38px 0 14px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #cfcfcf;
  border-radius: .38rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
}
.form-dialog-error {
  margin: 14px 0 0;
  color: #b84e2b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
.form-dialog-error[hidden] { display: none; }
.birthdate-dialog footer,
.guardian-dialog footer {
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.birthdate-dialog footer button,
.guardian-dialog footer button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.form-dialog-cancel {
  color: var(--ink);
  background: #f1f1f1;
}
.form-dialog-confirm,
.guardian-dialog footer button {
  color: #fff;
  background: var(--ink);
}
.form-dialog-confirm:disabled,
.guardian-dialog footer button:disabled {
  color: #999;
  background: #e4e4e4;
  cursor: not-allowed;
}

.guardian-dialog-scroll {
  min-height: 0;
  padding: 28px 30px 54px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #555;
  font-size: 13px;
  line-height: 1.75;
}
.terms-scroll:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}
.guardian-dialog-scroll > h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}
.guardian-dialog-scroll > p {
  margin: 0;
}
.guardian-dialog-scroll ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 22px;
  padding-left: 1.35em;
}
.guardian-dialog-scroll li {
  margin: 0;
  padding-left: 0.15em;
}
.guardian-dialog-scroll strong {
  color: var(--ink);
  font-weight: 700;
}
.guardian-dialog-scroll a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.guardian-dialog-scroll .terms-full-link {
  margin-top: 26px !important;
}
.guardian-dialog-scroll .terms-full-link + .terms-full-link {
  margin-top: 8px !important;
}
.guardian-fields {
  margin-top: 42px;
  padding-top: 30px;
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.guardian-fields > h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}
.guardian-fields input[type="text"],
.guardian-fields input[type="email"],
.guardian-phone-field .iti__tel-input {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
}
.guardian-fields input:focus,
.guardian-phone-field .iti__tel-input:focus {
  border-color: var(--ink);
}
.guardian-fields fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.guardian-relationship-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.guardian-relationship-options label {
  position: relative;
}
.guardian-relationship-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.guardian-relationship-options span {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d2d2;
  border-radius: .38rem;
  color: #555;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}
.guardian-relationship-options input:checked + span {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}
.guardian-relationship-options input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.guardian-relationship-other {
  margin-top: 16px;
}
.guardian-relationship-other[hidden] { display: none; }
.guardian-phone-field > .iti {
  width: 100%;
  display: block;
}
.guardian-phone-field .iti__selected-country {
  margin-right: 12px;
  padding-right: 16px;
  border-right: 1px solid #dedede;
}
.guardian-phone-field .iti__country-selector {
  min-width: min(420px, calc(100vw - 64px));
  margin-top: 8px;
  overflow: hidden;
  border-color: #cfcfcf;
  border-radius: .38rem;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
}
.guardian-phone-field .iti__search-input {
  width: 100%;
  min-height: 48px;
  padding: 11px 42px !important;
  border: 0 !important;
  border-bottom: 1px solid #d5d5d5 !important;
  border-radius: 0;
  font: inherit;
  font-size: 13px;
}
.guardian-phone-field .iti__country {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 13px;
}
@media (max-width: 760px) {
  .iti--fullscreen-popup.iti--detached-country-selector {
    z-index: 10000;
    padding: 16px;
    background: rgba(0, 0, 0, .52);
  }
  .iti--fullscreen-popup .iti__country-selector {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
  }
  .iti--fullscreen-popup .iti__search-input-wrapper {
    min-height: 52px;
    flex: 0 0 auto;
    background: #fff;
  }
  .iti--fullscreen-popup .iti__search-input {
    width: 100%;
    min-height: 52px;
    padding: 12px 44px !important;
    border: 0 !important;
    border-bottom: 1px solid #d5d5d5 !important;
    color: var(--ink);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: 0;
  }
  .iti--fullscreen-popup .iti__country-list {
    max-height: min(68vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }
  .iti--fullscreen-popup .iti__country {
    min-height: 48px;
    padding: 12px 16px;
    color: var(--ink);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* Keep submission headings and long form content stable on narrow screens. */
@media (max-width: 760px) {
  #submit.submit-page .application-section-title {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: clamp(14px, 4.5vw, 22px);
  }

  #submit.submit-page .application-section-title > span {
    width: max-content;
    min-width: 2ch;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    font-variant-numeric: tabular-nums;
  }

  #submit.submit-page .application-section-title > div,
  #submit.submit-page .application-form-grid,
  #submit.submit-page .application-form-grid label,
  #submit.submit-page .project-fields,
  #submit.submit-page .project-field,
  #submit.submit-page .phone-field,
  #submit.submit-page .main-submission {
    min-width: 0;
  }

  #submit.submit-page .application-form-grid input,
  #submit.submit-page .project-field input:not([type="file"]),
  #submit.submit-page .project-field textarea,
  #submit.submit-page .phone-field .iti,
  #submit.submit-page .phone-field .iti__tel-input,
  #submit.submit-page .main-submission {
    max-width: 100%;
  }

  #submit.submit-page .submission-guidance a {
    max-width: 100%;
    white-space: normal;
  }

  #submit.submit-page .project-tip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #submit.submit-page .attendance-options span {
    padding-inline: 12px;
    text-align: center;
  }
}
.guardian-field-hint {
  margin: 8px 0 0;
  color: #888;
  font-size: 11px;
  line-height: 1.5;
}
.guardian-dialog footer {
  justify-content: space-between;
}
.guardian-dialog footer p {
  margin: 0;
  color: #888;
  font-size: 11px;
  line-height: 1.5;
}
.guardian-linked-note {
  display: none;
  margin: 8px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
}
.phone-field.is-guardian-linked .guardian-linked-note { display: block; }
.phone-field.is-guardian-linked .iti__tel-input {
  color: #555;
  background: #f7f7f7;
}
.phone-field.is-guardian-linked .iti__country-container {
  pointer-events: none;
}

@media (max-width: 760px) {
  .birthdate-value {
    align-self: flex-start;
  }
  .birthdate-dialog,
  .guardian-dialog {
    width: calc(100% - 24px);
    max-height: 90svh;
  }
  .birthdate-dialog-frame,
  .guardian-dialog-frame {
    max-height: 90svh;
  }
  .birthdate-dialog header,
  .guardian-dialog header {
    padding: 22px 20px 18px;
  }
  .birthdate-dialog-body,
  .guardian-dialog-scroll {
    padding-inline: 20px;
  }
  .birthdate-selects {
    grid-template-columns: 1fr;
  }
  .birthdate-dialog footer,
  .guardian-dialog footer {
    padding: 14px 20px;
  }
  .birthdate-dialog footer button {
    flex: 1;
  }
  .guardian-relationship-options {
    grid-template-columns: 1fr;
  }
  .guardian-dialog footer {
    align-items: stretch;
    flex-direction: column;
  }
  .guardian-dialog footer button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .submit-login {
    min-height: calc(100svh - var(--nav-height));
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .submit-wordmark { margin-bottom: 44px; }
  .submit-login h1 {
    font-size: clamp(44px, 13.5vw, 68px);
    line-height: .95;
  }
  .submit-login-inner > p { margin-top: 24px; }
  .google-signin-fallback { margin-top: 36px; }
  .application-header {
    padding-top: 90px;
    padding-bottom: 72px;
  }
  .application-header h1 {
    font-size: clamp(43px, 12.2vw, 64px);
    line-height: .96;
  }
  .application-header h1 span {
    display: block;
    margin-top: 12px;
    font-size: .62em;
  }
  .application-intro { margin-top: 38px; }
  .application-caution { text-align: left; }
  .account-strip {
    padding: 20px;
    align-items: center;
    flex-direction: row;
  }
  .account-identity {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
  .account-identity > div { min-width: 0; }
  .account-strip > button { margin-left: auto; }
  .application-form { margin-top: 56px; }
  .application-section { padding-block: 54px; }
  .application-section-title {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 42px;
  }
  .application-section-title > span {
    font-size: 46px;
    line-height: .9;
  }
  .application-section-title h2 { font-size: 32px; }
  .account-contact-field {
    min-height: 156px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }
  .account-contact-value { width: 100%; }
  .country-consent-field {
    min-height: 156px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }
  .country-dialog {
    width: calc(100% - 24px);
    max-height: 90svh;
  }
  .country-dialog-frame { max-height: 90svh; }
  .country-dialog header { padding: 22px 20px 18px; }
  .country-dialog-search { margin: 16px 20px 12px; }
  .country-option-list { margin-inline: 20px; }
  .country-dialog footer { padding: 14px 20px; }
  .country-dialog footer button {
    min-width: 0;
    flex: 1;
  }
  .application-form .consent-row {
    min-height: 128px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .consent-indicator { align-self: flex-end; }
  .age-choice {
    align-self: flex-start;
    font-size: 12px;
  }
  .application-form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .phone-field .iti__country-selector {
    min-width: min(360px, calc(100vw - 40px));
  }
  .attendance-options { grid-template-columns: 1fr; }
  .project-field-heading {
    flex-direction: column;
    gap: 8px;
  }
  .thumbnail-upload { min-height: 210px; }
  .thumbnail-preview {
    min-height: 210px;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
  }
  .thumbnail-preview img { width: 116px; }
  .project-form-grid,
  .bonus-submissions,
  .platform-options,
  .submission-guidance {
    grid-template-columns: 1fr;
  }
  .platform-other-option { grid-column: auto; }
  .platform-options label > span { min-height: 104px; }
  .main-submission { padding: 32px 24px 30px; }
  .submission-guidance { gap: 18px; }
  .submission-guidance .submission-guidance-highlight {
    width: fit-content;
    white-space: normal;
  }
  .submit-success {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 32px) 20px 44px;
  }
  .submit-success-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
  .submit-success-icon svg {
    width: 26px;
    height: 26px;
  }
  .submit-success .kicker { margin-bottom: 16px; }
  .submit-success h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.12;
  }
  .submit-success-message {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.65;
  }
  .submit-success-actions {
    margin-top: 30px;
    flex-direction: column;
    gap: 24px;
  }
  .submit-success-socials {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }
  .submit-success-socials > span { margin: 0; }
  .submit-another-button {
    width: min(100%, 250px);
  }
  .submission-deadline-dialog {
    width: calc(100% - 24px);
  }
  .submission-deadline-frame {
    padding: 48px 22px 28px;
  }
  .submission-deadline-dialog .form-dialog-close {
    top: 16px;
    right: 16px;
  }
  .submission-deadline-dialog h2 {
    font-size: 30px;
  }
  .submission-deadline-message {
    margin-top: 22px;
    font-size: 15px;
  }
  .submission-deadline-socials {
    margin-top: 28px;
    padding-top: 22px;
    flex-direction: column;
    gap: 14px;
  }
  .updates-decline-dialog {
    width: calc(100% - 24px);
  }
  .updates-decline-frame {
    padding: 34px 22px 22px;
  }
  .updates-decline-dialog .form-dialog-close {
    top: 34px;
    right: 22px;
  }
  .updates-decline-dialog h2 {
    padding-right: 48px;
    font-size: 29px;
  }
  .updates-decline-dialog footer {
    flex-direction: column-reverse;
  }
  .updates-decline-dialog footer button {
    width: 100%;
  }
  .discard-dialog {
    width: calc(100% - 24px);
  }
  .discard-dialog-frame {
    padding: 34px 22px 22px;
  }
  .discard-dialog-close {
    top: 34px;
    right: 22px;
  }
  .discard-dialog h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .discard-dialog-message { margin-top: 18px; }
  .discard-dialog-notice {
    margin-top: 24px;
    padding: 16px;
  }
  .discard-dialog footer {
    grid-template-columns: 1fr;
  }
  .discard-dialog footer button { width: 100%; }
  .terms-dialog header { padding: 22px 20px 18px; }
  .terms-scroll { padding: 22px 20px 52px; }
  .terms-dialog footer {
    padding: 16px 20px;
    align-items: stretch;
    flex-direction: column;
  }
  .terms-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .terms-dialog footer button { width: 100%; }
}

@media (max-width: 430px) {
  .submit-login h1 { font-size: clamp(40px, 12vw, 52px); }
  .submit-login::before { width: 120vw; }
  .application-header h1 { font-size: clamp(40px, 11.5vw, 50px); }
  .application-section-title {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }
  .application-section-title > span { font-size: 38px; }
  .application-section-title h2 { font-size: 28px; }
  .application-section-title h2.applicant-title { font-size: 26px; }
  .team-size-options { gap: 7px; }
  .account-identity strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
/* Hero title spacing refinements */
#home .hero-title-main,
#home .hero-title-location {
  letter-spacing: 0.01em;
}

#home .hero-title-main {
  margin-bottom: 20px;
}

/* Keep the countdown labels and dots crisp on the light hero. */
.dot-countdown canvas {
  filter: none;
  transform: translateY(10px);
}

body[data-main-variant="main-2"] .dot-countdown {
  cursor: default;
  margin-bottom: 78px;
}
body[data-main-variant="main-3"] .dot-countdown {
  cursor: default;
  margin-bottom: 78px;
}
body[data-main-variant="main-2"] .countdown-glass-layer,
body[data-main-variant="main-3"] .countdown-glass-layer {
  display: none;
}

@media (max-width: 720px) {
  #home .hero-title-main,
  #home .hero-title-location {
    font-size: clamp(30px, 8.8vw, 42px);
    letter-spacing: 0.005em;
  }

  #home .hero-title-main {
    margin-bottom: 12px;
  }
}

@media (max-width: 760px) {
  body[data-main-variant="main-2"] .dot-countdown,
  body[data-main-variant="main-3"] .dot-countdown {
    margin-bottom: 44px;
  }
}

/* Local concept: combine track requirements with their process step. */
.track-one .track-merged-process,
.track-two .track-merged-process {
  grid-column: 1 / -1;
}

.details-content > .track-merged-process {
  padding-top: 24px;
  padding-bottom: 24px;
}

.track-merged-process > .details-section-heading {
  margin-bottom: 10px;
}

.event-details-overview .details-section-heading.no-index,
.track-one .details-section-heading.no-index,
.track-two .details-section-heading.no-index {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.merged-process-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(280px, .72fr);
  gap: 14px;
  align-items: stretch;
}

.merged-process-primary {
  padding: clamp(18px, 1.8vw, 22px);
  border-radius: .38rem;
  background: var(--soft);
}

.merged-entry-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(180, 35, 24, .2);
  color: #b42318;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.merged-step-heading {
  display: grid;
  grid-template-columns: clamp(42px, 4vw, 54px) minmax(0, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  align-items: start;
}

.merged-step-number {
  color: var(--ink);
  font-size: clamp(36px, 3.7vw, 48px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .8;
}

.merged-step-heading h3,
.merged-process-secondary h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.08;
  word-break: keep-all;
}

.merged-step-heading > div > p:last-child,
.merged-process-secondary article > div > p:last-child {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
}

.merged-condition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 1px;
  margin-top: clamp(18px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .32rem;
  background: var(--line);
}

.merged-condition-grid article {
  min-width: 0;
  min-height: 100px;
  padding: 10px 12px;
  background: #fff;
}

.merged-condition-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}

.merged-condition-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.7;
}

.merged-condition-grid h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.2;
  word-break: keep-all;
}

.merged-condition-grid p {
  margin: 0;
  color: #6b6b6b;
  font-size: 11.5px;
  line-height: 1.45;
  word-break: keep-all;
}

.merged-process-secondary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.merged-process-secondary > article {
  min-width: 0;
  min-height: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: clamp(42px, 4.5vw, 58px) minmax(0, 1fr);
  gap: 14px;
  flex: 1 1 0;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: .38rem;
  background: #fff;
}

.merged-process-secondary h3 {
  font-size: clamp(19px, 1.9vw, 25px);
}

.process-entry-gate {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr) 44px;
  gap: clamp(18px, 2.4vw, 32px);
  margin-bottom: 6px;
  padding: 8px clamp(18px, 2.3vw, 28px);
  align-items: center;
  border-radius: .38rem;
  color: #fff;
  background: var(--ink);
}

.entry-gate-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
}

.entry-gate-label svg {
  width: 22px;
  height: 22px;
  color: var(--details-accent);
  stroke-width: 1.8;
}

.entry-gate-copy {
  display: grid;
  grid-template-columns: minmax(210px, .75fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
}

.entry-gate-copy h3 {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.08;
  word-break: keep-all;
}

.entry-gate-copy p {
  margin: 0;
  color: #c9c9c9;
  font-size: 14px;
  line-height: 1.45;
  word-break: keep-all;
}

.entry-gate-arrow {
  width: 28px;
  height: 28px;
  justify-self: end;
  color: #fff;
  stroke-width: 1.4;
}

@media (max-width: 900px) {
  .merged-process-stage {
    grid-template-columns: 1fr;
  }
  .merged-process-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .track-two .merged-process-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-entry-gate {
    grid-template-columns: 1fr 32px;
    gap: 18px;
  }
  .entry-gate-label {
    grid-column: 1 / -1;
  }
  .entry-gate-copy {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .entry-gate-arrow {
    align-self: end;
  }
  .merged-condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .merged-process-primary {
    padding: 22px 18px;
  }
  .merged-step-heading,
  .merged-process-secondary > article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .merged-step-number {
    font-size: 38px;
  }
  .merged-condition-grid,
  .merged-process-secondary {
    grid-template-columns: 1fr;
  }
  .merged-condition-grid article {
    min-height: 0;
    padding: 17px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
  }
  .merged-condition-icon {
    grid-row: 1 / 3;
    margin: 0;
  }
  .merged-condition-grid h4 {
    margin-bottom: 5px;
  }
  .process-entry-gate {
    padding: 20px;
  }
  .entry-gate-copy h3 {
    font-size: 25px;
  }
}

/* Use one compact tracking rhythm outside the homepage hero. */
body :not(#home .hero, #home .hero *) {
  letter-spacing: -.04em;
}

/* Preserve the homepage hero's existing inherited tracking. */
#home .hero {
  letter-spacing: -.045em;
}

/* Detail 1–3 layout and interaction refinements. */
.snapshot-arrow {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.details-hero-summary {
  transition: none;
}

.details-fold.is-closing > .details-hero-summary {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.details-fold.is-closing > .details-hero-summary .kicker,
.details-fold.is-closing > .details-hero-summary .details-track,
.details-fold.is-closing > .details-hero-summary .details-theme,
.details-fold.is-closing > .details-hero-summary .event-details-lead,
.details-fold.is-closing > .details-hero-summary .details-hero-copy > p:last-child {
  color: var(--muted);
}

.details-fold.is-closing > .details-hero-summary .details-track span {
  border-left-color: var(--line);
}

.details-fold.is-closing > .details-hero-summary .details-snapshot dt {
  color: #777;
}

.details-fold.is-closing > .details-hero-summary .event-details-snapshot > div,
.details-fold.is-closing > .details-hero-summary .event-details-snapshot > div:first-child {
  background: var(--soft);
  box-shadow: inset 0 0 0 1px #e2e2df;
}

.details-fold-action {
  width: 160px;
  min-width: 160px;
  padding: 4px 5px 4px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .04em;
}

.details-fold-action .fold-state {
  min-width: 0;
  text-align: left;
}

.details-fold-icon {
  width: 20px;
  height: 34px;
  flex-basis: 20px;
  border: 0;
  border-radius: 0;
}

.details-fold-icon::before,
.details-fold-icon::after {
  width: 13px;
}

.details-fold.is-closing .details-fold-action {
  color: #fff;
  background: var(--ink);
}

.details-fold.is-closing .fold-state-open {
  display: none;
}

.details-fold.is-closing .fold-state-closed {
  display: inline;
}

.details-fold.is-closing .details-fold-icon::before,
.details-fold.is-closing .details-fold-icon::after {
  background: #fff;
}

.details-fold.is-closing .details-fold-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}

.event-details-hero-grid,
.details-hero-grid {
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.24fr) 160px;
  gap: clamp(28px, 3.4vw, 48px);
  align-items: start;
}

.details-title-stack {
  width: 100%;
}

.details-hero-grid > .details-hero-copy,
.event-details-hero-grid > .details-hero-copy {
  width: 100%;
  max-width: 650px;
  align-self: end;
  justify-self: start;
  text-align: left;
}

.details-track {
  font-size: 16px;
}

.details-track-title,
.event-details-hero h1 {
  line-height: .96;
}

.details-hero-copy h2 {
  line-height: 1.2;
}

.details-fold .details-hero {
  padding-bottom: clamp(34px, 4vw, 80px);
}

.details-content > section {
  padding-block: clamp(34px, 3.8vw, 68px);
}

.details-content > .track-merged-process {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (min-width: 1021px) {
  .track-one .details-fold-action,
  .track-two .details-fold-action {
    margin-top: 39px;
  }
}

.criteria-grid article.is-criterion-active {
  color: #fff;
  background: var(--ink);
  box-shadow: none;
}

.criteria-grid article.is-criterion-active span,
.criteria-grid article.is-criterion-active h3,
.criteria-grid article.is-criterion-active p {
  color: #fff;
}

.criteria-grid span {
  font-size: 16px;
}

.criteria-grid h3 {
  font-size: 19px;
}

.criteria-grid p {
  font-size: 14px;
}

.event-process-flow .process-marker {
  font-size: 18px;
}

.details-reward-link {
  grid-template-columns: minmax(0, 1fr) auto;
}

.merged-process-primary {
  padding:
    calc(clamp(18px, 1.8vw, 22px) + 10px)
    clamp(18px, 1.8vw, 22px);
}

.merged-process-secondary > article {
  padding: 26px 16px;
}

.merged-step-number {
  margin-top: 23px;
  align-self: start;
}

.merged-condition-grid article {
  padding: 16px 22px;
}

@media (max-width: 1020px) {
  .event-details-hero-grid,
  .details-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .details-hero-grid > .details-hero-copy,
  .event-details-hero-grid > .details-hero-copy {
    align-self: end;
  }
}

@media (max-width: 430px) {
  .details-fold-action {
    width: 32px;
    min-width: 32px;
    padding: 0;
    display: block;
  }

  .details-fold-icon {
    width: 32px;
    height: 32px;
  }
}

/* Detail 1–3 final sizing and spacing refinements. */
.event-details-hero {
  padding-bottom: clamp(40px, 4.5vw, 78px);
}

.details-fold-action {
  padding: 4px 14px 4px 18px;
}

.details-track-title {
  font-size: clamp(54px, 6.4vw, 84px);
}

.event-details-overview .details-section-heading.no-index,
.track-one .details-section-heading.no-index,
.track-two .details-section-heading.no-index {
  min-height: 0;
  margin-bottom: 30px;
}

.event-details-overview .details-section-heading.no-index h2,
.track-one .details-section-heading.no-index h2,
.track-two .details-section-heading.no-index h2 {
  font-size: clamp(32px, 3.4vw, 46px);
}

.merged-step-number {
  margin-top: 0;
}

.track-one .submission-table article > h3.submission-notes-title,
.track-two .submission-table article > h3.submission-notes-title {
  font-size: 16px;
}

@media (max-width: 430px) {
  .details-fold-action {
    padding: 0;
  }
}

.merged-condition-icon {
  width: 31px;
  height: 31px;
  margin-bottom: 16px;
}

.track-one .submission-table article,
.track-two .submission-table article {
  padding: clamp(20px, 2.2vw, 30px);
}

.details-content > section {
  border-top: 0;
}

.details-reward-link {
  border-top: 0;
  border-bottom: 0;
}

.details-fold-body {
  padding-bottom: clamp(80px, 8vw, 120px);
}

.details-content > .track-merged-process {
  padding-bottom: 35px;
}

.details-content > .details-process,
.details-content > .event-finalists {
  padding-top: 70px;
  padding-bottom: 35px;
}

.submission-summary {
  margin: 10px 0 27px;
}

.merged-condition-icon {
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.merged-condition-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.details-reward-link strong {
  font-size: 18px;
}

.merged-condition-grid p {
  font-size: 12.5px;
}

.merged-condition-grid h4 {
  margin: 0 0 9px;
}

.merged-condition-grid article {
  padding: 16px 22px 20px;
}

.codex-questions li::before {
  font-size: 12px;
}

.details-content .event-process-flow h3,
.details-content .merged-step-heading h3,
.details-content .merged-process-secondary h3 {
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.35;
}

.details-fold .details-hero {
  padding-bottom: clamp(34px, 4vw, 95px);
  border-top: 1px solid var(--ink);
}

.details-anchor-nav {
  background: rgba(0, 0, 0, .03);
}

.track-one .details-reward-link span,
.track-two .details-reward-link span {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
}

.details-fold[open] > .details-hero-summary .event-details-snapshot > div,
.details-fold[open] > .details-hero-summary .event-details-snapshot > div:first-child {
  background: rgba(255, 255, 255, .1);
}

.event-details-snapshot {
  gap: 12px;
}

.event-details-snapshot > div,
.event-details-snapshot > div:first-child {
  padding: 17px 24px;
}

.event-details-snapshot dt {
  font-size: 12px;
}

.submission-summary {
  margin: 6px 0 27px;
}

.track-one .submission-table article > h3,
.track-two .submission-table article > h3 {
  margin-bottom: clamp(20px, 2.4vw, 20px);
}

.merged-entry-note {
  border-top: 0;
}

.merged-process-secondary {
  gap: 14px;
}

/* Mobile schedule CTA and detail-fold controls. */
.event-details-tagline {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
}

@media (max-width: 1020px) {
  .event-details-hero-grid,
  .details-hero-grid {
    position: relative;
  }

  .details-title-stack {
    padding-right: 112px;
  }

  .details-hero-grid > .details-fold-action,
  .event-details-hero-grid > .details-fold-action {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    min-width: 100px;
    padding: 4px 10px 4px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 8px;
    align-items: center;
    justify-self: auto;
    color: #fff;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .04em;
  }

  .details-fold[open] .details-fold-action {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
  }

  .details-fold.is-closing .details-fold-action {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
  }

  .details-fold .details-fold-action .fold-state {
    min-width: 0;
    text-align: left;
  }

  .details-fold .details-fold-action .fold-state-closed {
    display: inline;
  }

  .details-fold .details-fold-action .fold-state-open {
    display: none;
  }

  .details-fold[open]:not(.is-closing) .details-fold-action .fold-state-closed {
    display: none;
  }

  .details-fold[open]:not(.is-closing) .details-fold-action .fold-state-open {
    display: inline;
  }

  .details-fold-action .fold-state-detail {
    display: none;
  }

  .details-fold-action .details-fold-icon {
    width: 20px;
    height: 34px;
    flex-basis: 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .details-fold:not([open]) .details-fold-icon,
  .details-fold.is-closing .details-fold-icon {
    background: transparent;
    border: 0;
  }

  .details-fold:not([open]) .details-fold-icon::before,
  .details-fold:not([open]) .details-fold-icon::after,
  .details-fold.is-closing .details-fold-icon::before,
  .details-fold.is-closing .details-fold-icon::after {
    background: #fff;
  }

  .details-fold[open]:not(.is-closing) .details-fold-icon::before,
  .details-fold[open]:not(.is-closing) .details-fold-icon::after {
    background: var(--ink);
  }
}

@media (max-width: 430px) {
  .schedule-action-cell {
    justify-content: flex-start;
  }
}

/* Hero title weight and submit-login symbol parity with Main 3. */
#home .hero-title-main,
#home .hero-title-location {
  font-weight: 600;
}

.submit-login::before {
  display: none;
}

.submit-symbol {
  --submit-symbol-hover-x: 50%;
  --submit-symbol-hover-y: 50%;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(528px, 59.4vw, 880px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.submit-symbol-base,
.submit-symbol-highlight {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 18% 24%, rgba(217, 203, 246, .96), transparent 36%),
    radial-gradient(circle at 78% 22%, rgba(247, 207, 219, .9), transparent 38%),
    radial-gradient(circle at 76% 78%, rgba(202, 230, 246, .96), transparent 42%),
    radial-gradient(circle at 28% 76%, rgba(231, 217, 246, .9), transparent 40%),
    #e7ecf4;
  background-size: 155% 155%;
  -webkit-mask: url("assets/openai-blossom.svg") center / contain no-repeat;
  mask: url("assets/openai-blossom.svg") center / contain no-repeat;
  animation: submitSymbolDrift 9s ease-in-out infinite alternate;
}

.submit-symbol-base {
  opacity: .34;
  filter: grayscale(.32) saturate(.68) contrast(.96);
}

.submit-symbol-highlight {
  background:
    radial-gradient(
      circle at var(--submit-symbol-hover-x) var(--submit-symbol-hover-y),
      rgba(255, 220, 154, .98) 0,
      rgba(242, 193, 225, .9) 18%,
      rgba(198, 224, 248, .72) 38%,
      transparent 62%
    );
  opacity: 0;
  filter: saturate(.96) brightness(1.02);
  transition: opacity .18s ease;
}

.submit-symbol.is-symbol-hovered .submit-symbol-highlight {
  opacity: .88;
}

@keyframes submitSymbolDrift {
  from { background-position: 18% 24%; }
  to { background-position: 78% 72%; }
}

.submit-login h1 {
  line-height: 1.1;
}

.submit-login-inner > p:first-of-type {
  margin-top: clamp(48px, 6vh, 72px);
}

@media (max-width: 760px) {
  .submit-symbol {
    width: clamp(352px, 112.2vw, 605px);
  }

  .submit-login h1 {
    line-height: 1.1;
  }

  .submit-login-inner > p:first-of-type {
    margin-top: 42px;
  }
}

.submit-login-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.submit-title-stage {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.submit-title {
  position: relative;
  z-index: 1;
}
.submit-title > span {
  display: block;
}
.submit-title-main {
  white-space: nowrap;
}

.submit-login-actions {
  width: 100%;
  margin-top: clamp(88px, 9vh, 112px);
}

.submit-login-actions > p:first-child {
  margin: 0;
  color: #666;
  font-size: clamp(16px, 1.6vw, 20px);
}

.submit-login-actions .google-signin-fallback {
  margin: 26px auto 0;
}

@media (max-width: 760px) {
  .submit-login-actions {
    margin-top: 76px;
  }
}

/* Submit application-only typography and form refinements. */
.submit-page .application-header h1 {
  font-size: clamp(54px, 7.2vw, 78px);
}

.submit-page .application-intro strong {
  margin-bottom: 36px;
}

.submit-page .application-caution {
  margin-top: 8px !important;
  color: #d31515;
  font-size: 14px;
}

.submit-page .account-recording-note {
  font-size: 14px;
}

.submit-page .country-consent-field > span:first-child {
  gap: 6px;
}

.submit-page .consent-row small,
.submit-page .country-consent-field small,
.submit-page .account-contact-field small {
  font-size: 14px;
}

.submit-page .account-contact-value > strong {
  font-size: 16px;
}

.submit-page .account-contact-value > button {
  font-size: 14px;
}

.submit-page .consent-indicator,
.submit-page .phone-updates-consent .consent-indicator {
  width: 22px;
  height: 22px;
}

.submit-page .application-section-title > span {
  font-size: clamp(40px, calc(6vw - 14px), 78px);
  font-weight: 300;
  line-height: .75;
}

.submit-page .application-section-title h2 {
  font-size: clamp(24px, 2.5vw, 39px);
  font-weight: 600;
  letter-spacing: -.06em;
}

.submit-page .application-section-title > div > p:last-child {
  font-size: 16px;
}

.submit-page .application-form-grid label > span {
  font-size: 18px;
}

.submit-page .applicant-fields > legend {
  font-size: 24px;
  font-weight: 700;
}

.submit-page .application-form-grid label > small {
  margin: 4px 0 0;
  font-size: 14px;
}

.submit-page .application-form-grid label > small + input {
  margin-top: 10px;
}

.submit-page .field-error {
  font-size: 12px;
}

.submit-page .attendance-note {
  margin: -5px 0 16px;
  font-size: 14px;
}

.submit-page .phone-field .iti__tel-input {
  padding-left: calc(var(--iti-selected-country-width, 90px) + 15px) !important;
}

.submit-page .application-form .phone-updates-consent {
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.submit-page .application-form .phone-updates-consent > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.submit-page .application-form .phone-updates-consent strong {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
}

.submit-page .project-label {
  font-size: 18px;
}

.submit-page .project-field > small {
  font-size: 12px;
}

.submit-page .project-field input:not([type="file"]) {
  margin: 10px 0 0;
}

.submit-page .character-count {
  bottom: 16px;
  font-size: 18px;
}

.submit-page .description-field textarea {
  height: 84px;
  min-height: 84px;
}

.submit-page .submission-guidance ul {
  gap: 4px;
}

.submit-page .submission-guidance li {
  font-size: 12px;
}

.submit-page .submission-guidance a {
  font-size: 14px;
}

.submit-page .submission-guidance p {
  font-size: 14px;
}

.submit-page .project-field-heading p {
  margin: 6px 0 0;
  font-size: 14px;
}

.submit-page .project-tip {
  color: #a33d20;
  font-size: 14px;
}

.submit-page .thumbnail-empty strong {
  font-size: 16px;
}

.submit-page .thumbnail-empty small {
  font-size: 12px;
}

.submit-page .bonus-submissions .project-field {
  border-top: 0;
}

/* Submit page form alignment and growing text fields. */
.submit-page .phone-field > label {
  font-size: 18px;
}

.submit-page .application-submit {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-top: 0;
  text-align: center;
}

.submit-page .consent-row sup,
.submit-page .application-form sup {
  margin-left: 5px;
}

.submit-page .application-header h1 {
  line-height: 1.05;
}

.submit-page .project-field textarea[data-auto-grow] {
  height: auto;
  min-height: 48px;
  overflow-y: hidden;
  resize: none;
  field-sizing: content;
}

@media (max-width: 760px) {
  .submit-page .application-form .consent-row,
  .submit-page .application-form .phone-updates-consent {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .submit-page .application-form .consent-row > span:first-child,
  .submit-page .application-form .phone-updates-consent > span:first-child {
    min-width: 0;
    flex: 1 1 auto;
  }

  .submit-page .application-form .consent-row .consent-indicator,
  .submit-page .application-form .phone-updates-consent .consent-indicator {
    align-self: center;
  }

  .submit-page .application-section-title h2 {
    font-weight: 700;
    line-height: 1.2;
  }

  .submit-page .application-section-title > div > p:last-child {
    margin: 8px 0 0;
    line-height: 1.2;
  }
}

/* Shared responsive typography and home schedule spacing. */
.schedule-list article {
  padding: 18px;
}

@media (max-width: 1200px) {
  body {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .how-it-works-heading h2,
  .home-closing-heading h2,
  .guests-intro strong,
  .rewards h2 {
    line-height: 1.2;
  }
}

@media (max-width: 760px) {
  .submit-page .application-form .birthdate-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-page .application-form .birthdate-row > span:first-child {
    width: 100%;
    flex: 0 0 auto;
  }

  .submit-page .application-form .birthdate-row .birthdate-value {
    margin-top: 10px;
    align-self: flex-start;
  }
}

/* Responsive detail and submission refinements. */
.submit-page .submit-application {
  padding-bottom: 50px;
}

.submit-page .field-error {
  margin: 6px 0 12px;
}

@media (max-width: 1200px) {
  .event-details-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rewards h2 span + span {
    margin-top: 3px;
  }
}

/* Submit application section heading spacing. */
.submit-page .application-section-title {
  gap: 0;
}

.submit-page .application-section-title > div > p:last-child {
  margin: 12px 0 0;
}

@media (min-width: 761px) and (max-width: 1200px) {
  .submit-page .application-section-title > span {
    font-size: clamp(54px, 6vw, 78px);
  }
}

/* Detail page narrow-screen typography. */
@media (max-width: 760px) {
  .details-track-title {
    font-size: clamp(45px, 6.4vw, 84px);
  }

  .details-hero-copy h2 {
    font-size: clamp(22px, 5.8vw, 36px);
    line-height: 1.3;
  }

  .event-details-hero h1 {
    font-size: clamp(60px, 17vw, 70px);
  }
}

@media (max-width: 520px) {
  .merged-step-number {
    font-size: 34px;
  }
}

@media (max-width: 430px) {
  .details-track-title {
    line-height: 1.05;
  }

  .details-reward-link span {
    line-height: 1.2;
  }

  .event-details-hero h1 {
    font-size: clamp(60px, 17vw, 56px);
  }

  .details-hero-grid {
    gap: clamp(30px, 3.4vw, 48px);
  }

  .submit-page .application-section-title {
    gap: 12px;
  }
}

/* Detail cards at compact widths. */
@media (max-width: 760px) {
  .event-details-snapshot > div,
  .event-details-snapshot > div:first-child,
  .event-details-snapshot > div:nth-child(n + 3) {
    min-height: 90px;
    padding: 0 18px;
  }
}

@media (min-width: 431px) and (max-width: 1006px) {
  .criteria-grid article:last-child {
    grid-column: 1 / -1;
  }
}

/* Home and submission mobile refinements. */
.hero {
  padding-top: calc(var(--nav-height) + clamp(36px, 5vh, 64px));
}

.submit-page textarea[name="codex-process"][data-auto-grow] {
  min-height: 73px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: calc(var(--nav-height) + 5px);
  }

  body[data-main-variant="main-2"] .dot-countdown,
  body[data-main-variant="main-3"] .dot-countdown {
    height: clamp(148px, 38vw, 176px);
  }

  body[data-main-variant="main-2"] .dot-countdown canvas,
  body[data-main-variant="main-3"] .dot-countdown canvas {
    filter: none;
  }

  .schedule-title h2 {
    font-size: 22px;
  }

  .schedule-list h3 {
    font-size: 19px;
  }

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

  .reward-intro {
    font-size: clamp(16px, 5vw, 30px);
  }

  .guest-gallery.is-announcement-stage {
    height: 350px;
  }

  .guest-gallery.is-announcement-stage .guest-list article {
    width: min(38vw, 165px);
  }

  .guest-gallery.is-announcement-stage .guest-photo {
    height: clamp(152px, 41vw, 178px);
  }

  .guest-gallery.is-announcement-stage .guest-copy {
    min-height: 108px;
    padding: 11px 12px 14px;
  }

  .guest-gallery.is-announcement-stage .guest-list h3 {
    font-size: 16px;
  }

  .guest-gallery.is-announcement-stage .guest-copy p {
    font-size: 11px;
  }

  .guest-gallery.is-announcement-stage .guest-copy small {
    margin-top: 7px;
    font-size: 10px;
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) {
    transform: translate3d(calc(-50% - 24vw), 18px, -145px) rotateY(15deg) scale(.8);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) {
    transform: translate3d(calc(-50% + 24vw), 18px, -145px) rotateY(-15deg) scale(.8);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(4) {
    opacity: .4;
    transform: translate3d(calc(-50% - 43vw), 46px, -300px) rotateY(24deg) scale(.66);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(5) {
    opacity: .4;
    transform: translate3d(calc(-50% + 43vw), 46px, -300px) rotateY(-24deg) scale(.66);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(6) {
    display: block;
    opacity: .24;
    transform: translate3d(calc(-50% - 59vw), 69px, -390px) rotateY(31deg) scale(.54);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(7) {
    display: block;
    opacity: .24;
    transform: translate3d(calc(-50% + 59vw), 69px, -390px) rotateY(-31deg) scale(.54);
  }
}

@media (max-width: 600px) {
  .hero-date {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .reward-grid h3 {
    font-size: 21px;
  }

  .how-it-works-heading > p:last-child,
  .guests-intro,
  .home-closing-heading p {
    font-size: 18px;
    line-height: 1.4;
  }

  .feature-grid h3 {
    font-size: clamp(32px, 4.1vw, 58px);
  }
}

/* Detail-page display type: reduce existing 28px+ typography by 4px. */
.details-page .event-details-hero h1 {
  font-size: clamp(62px, calc(8vw - 4px), 104px);
}

.details-page .details-track-title {
  font-size: clamp(50px, calc(6.4vw - 4px), 80px);
}

.details-page .details-hero-copy h2 {
  font-size: clamp(27px, calc(3.1vw - 4px), 39px);
}

.details-page .details-content .details-section-heading h2 {
  font-size: clamp(28px, calc(3.4vw - 4px), 42px);
}

.details-page .merged-step-number {
  font-size: clamp(32px, calc(3.7vw - 4px), 44px);
}

.details-page .track-one .details-reward-link span,
.details-page .track-two .details-reward-link span {
  font-size: clamp(28px, calc(3.4vw - 4px), 42px);
}

@media (max-width: 760px) {
  .details-page .event-details-hero h1 {
    font-size: clamp(56px, calc(17vw - 4px), 66px);
  }

  .details-page .details-track-title {
    font-size: clamp(41px, calc(6.4vw - 4px), 80px);
  }

  .details-page .details-hero-copy h2 {
    font-size: clamp(22px, calc(5.8vw - 4px), 32px);
  }

  .details-page .details-content .details-section-heading h2 {
    font-size: 28px;
  }

  .details-page .merged-step-number {
    font-size: 32px;
  }

  .details-page .track-one .details-reward-link span,
  .details-page .track-two .details-reward-link span {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .details-page .merged-step-number {
    font-size: 30px;
  }
}

@media (max-width: 430px) {
  .details-page .event-details-hero h1 {
    font-size: 56px;
  }

  .details-page .details-content .details-section-heading h2,
  .details-page .track-one .details-reward-link span,
  .details-page .track-two .details-reward-link span {
    font-size: 26px;
  }
}

.discard-title-mobile-break {
  display: none;
}

@media (max-width: 760px) {
  #home .chat-area {
    margin: 0 auto 0;
  }

  #home .dot-countdown {
    margin-top: 0;
  }

  body[data-main-variant="main-2"] .dot-countdown,
  body[data-main-variant="main-3"] .dot-countdown {
    height: clamp(138px, calc(42vw - 30px), 166px);
    margin-bottom: 20px;
  }

  .chat-prompt {
    line-height: 1.4;
  }

  .guest-gallery.is-announcement-stage .guest-list .guest-card-featured,
  .guest-gallery.is-announcement-stage .guest-list .guest-card-teaser:nth-child(2),
  .guest-gallery.is-announcement-stage .guest-list .guest-card-teaser:nth-child(3) {
    width: min(50vw, 240px);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) .guest-photo,
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) .guest-photo {
    height: auto;
    aspect-ratio: 464 / 606;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-photo-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 464 / 606;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy,
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) .guest-copy,
  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) .guest-copy {
    min-height: 116px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy {
    min-height: 0;
    padding: 60% 12px 8px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy span {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 10px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy span::after {
    width: 30px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy h3 {
    margin: 4px 0 5px;
    font-size: 13px;
    letter-spacing: -.06em;
    white-space: nowrap;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy em {
    font-size: 11px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy p {
    font-size: 10px;
    line-height: 1.3;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy small {
    margin-top: 5px;
    font-size: 9px;
  }

  .guest-gallery.is-announcement-stage {
    height: 390px;
  }

  .application-header {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .discard-title-mobile-break {
    display: block;
  }
}

/* Inviting Korean Legends: centered seven-card composition based on legend_song.png. */
.guest-gallery.is-announcement-stage {
  --guest-inner-offset: clamp(210px, 14.9vw, 250px);
  --guest-offset-step: clamp(125px, 8.95vw, 150px);
  height: clamp(490px, 31vw, 530px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}

.guest-gallery.is-announcement-stage .guest-list article {
  top: 50%;
  transform-origin: center;
}

.guest-gallery.is-announcement-stage .guest-card-featured {
  left: 50%;
  width: clamp(280px, 20vw, 340px);
  aspect-ratio: 464 / 606;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(55, 42, 29, .09);
  transform: translate3d(-50%, -50%, 0);
}

.guest-gallery.is-announcement-stage .guest-card-featured .guest-photo-frame,
.guest-gallery.is-announcement-stage .guest-card-featured .guest-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 464 / 606;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy {
  inset: auto 0 20px;
  padding: 0 28px;
  border-radius: inherit;
  font-family: var(--font-openai-sans);
}

.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy em {
  color: rgba(237, 219, 195, .9);
  font-family: var(--font-openai-sans);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}

.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy h3 {
  margin: 5px 0 8px;
  color: #ead8c0;
  font-family: var(--font-openai-sans);
  font-size: clamp(19px, 1.3vw, 22px);
  font-weight: 600;
  letter-spacing: -.035em;
  text-transform: none;
}

.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy p {
  color: rgba(241, 226, 207, .88);
  font-size: 13px;
  line-height: 1.35;
}

.guest-gallery.is-announcement-stage .guest-card-featured .guest-copy small {
  margin-top: 9px;
  color: rgba(241, 226, 207, .8);
  font-size: 11px;
  line-height: 1.35;
}

.guest-gallery.is-announcement-stage .guest-card-teaser {
  display: grid;
  grid-template-rows: 62% 38%;
  width: clamp(200px, 14vw, 230px);
  aspect-ratio: 464 / 606;
  overflow: hidden;
  border: 1px solid rgba(126, 104, 78, .14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 16%, rgba(221, 194, 157, .22), transparent 39%),
    radial-gradient(circle at 84% 78%, rgba(171, 134, 96, .12), transparent 43%),
    linear-gradient(145deg, #fafafa 0%, #f4f3f1 100%);
  box-shadow: 0 8px 20px rgba(64, 47, 29, .055);
  filter: none;
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-photo-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: transparent;
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-photo-placeholder img {
  width: 38%;
  height: 38%;
  opacity: .2;
  filter: grayscale(.22) sepia(.72) saturate(.68);
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy {
  min-height: 0;
  padding: 14px 16px;
  color: #625a51;
  background: transparent;
  font-family: var(--font-openai-sans);
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy em {
  font-size: 11px;
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy h3 {
  margin: 3px 0 6px;
  font-size: 18px;
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy p {
  font-size: 12px;
}

.guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy small {
  margin-top: 7px;
  font-size: 10px;
}

.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) {
  left: calc(50% - var(--guest-inner-offset));
  z-index: 3;
  opacity: .86;
  transform: translate3d(-50%, -50%, 0) rotateY(7deg);
}

.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) {
  left: calc(50% + var(--guest-inner-offset));
  z-index: 3;
  opacity: .86;
  transform: translate3d(-50%, -50%, 0) rotateY(-7deg);
}

.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(4) {
  left: calc(50% - var(--guest-inner-offset) - var(--guest-offset-step));
  z-index: 2;
  opacity: .62;
  transform: translate3d(-50%, -50%, 0) rotateY(12deg) scale(.8);
}

.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(5) {
  left: calc(50% + var(--guest-inner-offset) + var(--guest-offset-step));
  z-index: 2;
  opacity: .62;
  transform: translate3d(-50%, -50%, 0) rotateY(-12deg) scale(.8);
}

.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(6) {
  left: calc(50% - var(--guest-inner-offset) - var(--guest-offset-step) - var(--guest-offset-step));
  z-index: 1;
  display: grid;
  opacity: .46;
  transform: translate3d(-50%, -50%, 0) rotateY(17deg) scale(.63);
}

.guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(7) {
  left: calc(50% + var(--guest-inner-offset) + var(--guest-offset-step) + var(--guest-offset-step));
  z-index: 1;
  display: grid;
  opacity: .46;
  transform: translate3d(-50%, -50%, 0) rotateY(-17deg) scale(.63);
}

@media (max-width: 760px) {
  .guest-gallery.is-announcement-stage {
    height: 330px;
  }

  .guest-gallery.is-announcement-stage .guest-list .guest-card-featured {
    width: min(52vw, 215px);
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy {
    inset: auto 0 7px;
    padding: 0 11px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy em {
    font-size: 11px;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy h3 {
    margin: 0 0 4px;
    font-size: 12px;
    white-space: nowrap;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy p {
    font-size: 10px;
    line-height: 1.3;
  }

  .guest-gallery.is-announcement-stage .guest-card-featured .guest-copy small {
    margin-top: 2px;
    font-size: 8px;
  }

  .guest-gallery.is-announcement-stage .guest-list .guest-card-teaser,
  .guest-gallery.is-announcement-stage .guest-list .guest-card-teaser:nth-child(2),
  .guest-gallery.is-announcement-stage .guest-list .guest-card-teaser:nth-child(3) {
    width: min(42vw, 175px);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy {
    padding: 9px 10px;
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy em {
    font-size: 8px;
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy h3 {
    margin: 2px 0 4px;
    font-size: 12px;
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy p {
    font-size: 9px;
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser .guest-copy small {
    margin-top: 4px;
    font-size: 7px;
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(2) {
    left: calc(50% - 29vw);
    transform: translate3d(-50%, -50%, 0) rotateY(10deg) scale(.92);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(3) {
    left: calc(50% + 29vw);
    transform: translate3d(-50%, -50%, 0) rotateY(-10deg) scale(.92);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(4) {
    left: calc(50% - 50vw);
    opacity: .5;
    transform: translate3d(-50%, -50%, 0) rotateY(18deg) scale(.7);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(5) {
    left: calc(50% + 50vw);
    opacity: .5;
    transform: translate3d(-50%, -50%, 0) rotateY(-18deg) scale(.7);
  }

  .guest-gallery.is-announcement-stage .guest-card-teaser:nth-child(n + 6) {
    display: none;
  }
}

@media (max-width: 500px) {
  .submit-page .application-header h1 {
    font-size: clamp(48px, 7.2vw, 78px);
  }
}

@media (max-width: 600px) {
  .hero-date {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .how-it-works-flow h3 {
    min-height: 0;
    margin-top: 17px;
  }

  .how-it-works-flow article {
    min-height: 220px;
    padding: 22px;
  }

  .home-closing-link,
  .home-closing-news {
    min-height: 148px;
    padding: 18px;
  }
}

/* Canonical header language menu and hero title groups. */
.hero-title-group,
.submit-title-group {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero-title-group {
  gap: 0;
}

.submit-title-group {
  gap: 0;
}

.submit-title-group .submit-title {
  position: relative;
  z-index: 2;
}

.submit-login h1 {
  font-size: clamp(48px, 6vw, 82px);
}

.submit-login-actions {
  position: relative;
  z-index: 2;
  margin-top: clamp(120px, 13vh, 160px);
}

#home .hero h1 {
  margin-top: 20px;
}

#home .hero-title-main,
#home .hero-title-location {
  letter-spacing: 0;
}

#home .hero-title-main {
  margin-bottom: 20px;
}

#home .hero-symbol {
  width: clamp(520px, 59vw, 880px);
}

#submit.submit-page .submit-title .submit-title-main,
#submit.submit-page .submit-title .submit-title-location {
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .header-actions {
    margin-left: auto;
    gap: 7px;
  }

  .header-language {
    width: auto;
    min-height: 36px;
  }

  .header-language-trigger {
    min-height: 36px;
    padding-inline: 12px;
    gap: 7px;
    font-size: 13px;
  }

  .header-language-menu {
    width: 136px;
  }

  .hero-title-group,
  .submit-title-group {
    gap: 0;
  }

  .submit-login h1 {
    font-size: clamp(36px, 10.6vw, 48px);
  }

  .submit-login-actions {
    margin-top: clamp(82px, 12vh, 110px);
  }

  #home .hero-symbol {
    width: clamp(352px, 110vw, 588px);
  }

  .mobile-menu-toggle {
    margin-left: 10px;
  }
}

/* Home and submit-login title lockup without the decorative blossom symbol. */
#home .hero-title-group,
#submit .submit-title-group,
#submit .submit-title {
  width: 100%;
  max-width: 100%;
}

#home .hero-title-main,
#home .hero-title-location,
#submit .submit-title-main,
#submit .submit-title-location {
  letter-spacing: -2px !important;
}

#submit .submit-title > .submit-title-main:not(.submit-title-openai),
#submit .submit-title > .submit-title-location {
  margin-top: 10px;
}

#submit .submit-login-actions {
  margin-top: clamp(48px, 6vh, 72px);
}

@media (max-width: 760px) {
  #home .hero-title-main {
    font-size: clamp(30px, 9.8vw, 42px);
    letter-spacing: -1px !important;
  }

  .chat-prompt {
    line-height: 1.5;
  }

  #submit .submit-login {
    padding-inline: clamp(20px, 6vw, 36px);
  }

  #submit .submit-login h1 {
    width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  #submit .submit-title-main,
  #submit .submit-title-location {
    white-space: nowrap;
  }

  #submit .submit-login-actions {
    margin-top: 40px;
  }
}

@media (max-width: 360px) {
  #submit .submit-login h1 {
    font-size: clamp(30px, 9.4vw, 34px);
  }
}
