:root {
  --bg: #000;
  --bg-soft: #0a0a0a;
  --text: #fff;
  --text-strong: rgba(255, 255, 255, 0.92);
  --text-mid: rgba(255, 255, 255, 0.68);
  --text-soft: rgba(255, 255, 255, 0.48);
  --text-faint: rgba(255, 255, 255, 0.34);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --error: #ff6b6b;
  --max: 1440px;
  --page-max: 1920px;
  --pad: clamp(20px, 5vw, 80px);
  --section: clamp(90px, 12vw, 190px);
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-ko: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-en: "Outfit", "Pretendard Variable", Pretendard, sans-serif;
}

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

html {
  background: var(--bg);
  color: var(--text);
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: var(--page-max);
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ko);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.55s ease, color 0.55s ease;
}

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

body.is-apply-light {
  --bg: #fff;
  --bg-soft: #f5f5f5;
  --text: #000;
  --text-strong: rgba(0, 0, 0, 0.92);
  --text-mid: rgba(0, 0, 0, 0.66);
  --text-soft: rgba(0, 0, 0, 0.48);
  --text-faint: rgba(0, 0, 0, 0.34);
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.2);
}

::selection {
  background: var(--text);
  color: var(--bg);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a,
input,
textarea,
.media-slot {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}

.site-frame {
  position: relative;
  min-height: 100dvh;
  background: var(--bg);
  transition: background-color 0.55s ease, color 0.55s ease;
}

main {
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--section) 0;
  background: var(--bg);
  transition: background-color 0.55s ease, color 0.55s ease;
}

.section-soft {
  background: var(--bg-soft);
}

.page-transition,
.loader {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: var(--bg);
}

.page-transition {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}

.loader {
  z-index: 240;
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.scroll-probe {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.header-probe {
  top: 60px;
}

.mobile-cta-probe {
  top: 85svh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 90;
  width: 100%;
  max-width: var(--page-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 1.9vw, 22px) var(--pad);
  transform: translateX(-50%);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #fff;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header .brand,
.site-header .header-actions,
.hero-content,
.scroll-cue {
  mix-blend-mode: exclusion;
}

body.is-apply-light .site-header.is-scrolled {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--font-en);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.brand-short {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.48s var(--ease), color 0.48s var(--ease), border-color 0.48s var(--ease), opacity 0.35s ease;
}

.btn:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn:active {
  transform: translateY(1px);
}

.btn-pill {
  min-width: 148px;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.btn-primary {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-block {
  width: 100%;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.03em;
}

.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

.slider-actions .icon-btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.slider-actions .icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 26px;
  height: 1.5px;
  background: #fff;
}

.menu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 180;
  width: 100%;
  max-width: var(--page-max);
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1.9vw, 22px) var(--pad) var(--pad);
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-nav {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px, 1.4vh, 18px);
}

.menu-link {
  display: grid;
  grid-template-columns: 38px minmax(0, auto) 1fr;
  align-items: baseline;
  gap: 20px;
  padding: clamp(8px, 1.2vh, 14px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-num {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-faint);
}

.menu-kr {
  font-size: clamp(30px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.menu-en {
  font-family: var(--font-en);
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.menu-cta {
  width: min(100%, var(--max));
  margin: 18px auto 0;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: max(600px, 100svh);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform-origin: center;
}

.hero-media.media-slot {
  border: 0;
  border-radius: 0;
  background: #000;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) contrast(1.05);
}

.hero-media video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.hero-media.media-slot:hover img {
  transform: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.94) 100%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(76px, 10vh, 128px);
  transform: translateX(-50%);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded .hero-reveal {
  animation: heroUp 0.9s var(--ease) forwards;
}

body.is-loaded .hero-kicker.hero-reveal {
  animation-delay: 0.04s;
}

body.is-loaded .hero h1.hero-reveal {
  animation-delay: 0.16s;
}

body.is-loaded .hero-copy.hero-reveal {
  animation-delay: 0.28s;
}

body.is-loaded .hero-cta.hero-reveal {
  animation-delay: 0.42s;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-kicker {
  gap: 14px;
  margin-bottom: clamp(18px, 2.5vh, 30px);
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.hero h1 {
  max-width: min(980px, 100%);
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(46px, 8vw, 136px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero h1 span {
  font-weight: 200;
}

.hero-copy {
  max-width: 520px;
  margin: clamp(20px, 3vh, 34px) 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.72;
}

.hero-cta {
  margin-top: clamp(28px, 4vh, 44px);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  animation: cue 2s ease-in-out infinite;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-head h2,
.policy-main h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-head .eyebrow + h2 {
  margin-top: clamp(18px, 2vw, 26px);
}

.section-head p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--text-mid);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.about-grid h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.about-copy {
  padding-top: 6px;
  color: var(--text-mid);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.85;
}

.about-copy p {
  margin: 0 0 20px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(56px, 8vw, 110px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-en);
  font-size: clamp(44px, 5.5vw, 86px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.48em;
}

.stat-label {
  margin-top: 14px;
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-kr {
  margin-top: 3px;
  color: var(--text-faint);
  font-size: 13px;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(30px, 5vw, 70px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg);
  white-space: nowrap;
  transition: background-color 0.55s ease, border-color 0.55s ease;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  will-change: transform;
}

.marquee-word {
  padding-right: 0.4em;
  font-family: var(--font-en);
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.marquee-word.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}

.theme-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.theme-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 42px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding-left 0.35s var(--ease);
}

.theme-row:hover {
  padding-left: 12px;
}

.theme-no {
  color: var(--text-faint);
  font-family: var(--font-en);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 300;
}

.theme-title {
  font-family: var(--font-en);
  font-size: clamp(24px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.theme-copy {
  margin-top: 10px;
  color: var(--text-mid);
  font-size: clamp(14px, 1.15vw, 17px);
}

.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  margin-bottom: clamp(20px, 3vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.program-tab {
  position: relative;
  padding: 0 0 clamp(16px, 2vw, 26px);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  text-align: left;
}

.program-tab[aria-selected="true"] {
  color: #fff;
}

.program-tab[aria-selected="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #fff;
  content: "";
}

.tab-date {
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.tab-label {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 650;
}

.day-theme {
  margin-bottom: clamp(12px, 2vw, 20px);
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-panel[hidden] {
  display: none;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(72px, 110px) minmax(60px, 120px) minmax(0, 1fr) auto;
  gap: clamp(12px, 2.5vw, 40px);
  align-items: baseline;
  padding: clamp(18px, 2.2vw, 30px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-time {
  font-family: var(--font-en);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 300;
}

.schedule-tag {
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-title {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 550;
  line-height: 1.4;
}

.schedule-speaker {
  justify-self: end;
  color: var(--text-soft);
  font-size: clamp(13px, 1.1vw, 15px);
  text-align: right;
}

.slider-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.slider-actions {
  display: flex;
  gap: 10px;
}

.speaker-track {
  display: flex;
  gap: clamp(16px, 1.8vw, 28px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-left: var(--pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.speaker-track::-webkit-scrollbar {
  display: none;
}

.speaker-card {
  flex: 0 0 clamp(240px, 30vw, 340px);
  scroll-snap-align: start;
}

.speaker-card.is-clone,
.gallery-slide.is-clone {
  pointer-events: none;
}

.speaker-card h3 {
  margin: 18px 0 6px;
  font-size: clamp(18px, 1.5vw, 22px);
}

.speaker-role {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-en);
  font-size: 13px;
}

.speaker-org {
  margin-top: 2px;
  color: var(--text-faint);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-slot {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, #121212 0, #121212 14px, #171717 14px, #171717 28px);
  cursor: pointer;
  isolation: isolate;
}

.media-slot img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), opacity 0.3s ease;
}

.media-slot[data-parallax] img {
  top: -6%;
  height: 112%;
}

.media-slot:hover img {
  transform: scale(1.035);
}

.media-slot input {
  display: none;
}

.speaker-card .media-slot {
  aspect-ratio: 1 / 1;
}

.gallery {
  position: relative;
}

.gallery-window {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.gallery-track.is-jumping {
  transition: none;
}

.gallery-slide {
  flex: 0 0 100%;
}

.gallery-slide .media-slot {
  aspect-ratio: 3 / 2;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(38px, 3.6vw, 50px);
  height: clamp(38px, 3.6vw, 50px);
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  backdrop-filter: none;
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.25s var(--ease);
}

.gallery-arrow:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gallery-prev {
  left: clamp(10px, 1.5vw, 20px);
}

.gallery-next {
  right: clamp(10px, 1.5vw, 20px);
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.gallery-caption {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(13px, 1.1vw, 15px);
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: width 0.35s var(--ease), border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}

.gallery-dot.is-active {
  width: 28px;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.venue-grid,
.apply-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: clamp(24px, 3vw, 40px);
}

.info-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.info-label {
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-value {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
}

.venue-media .media-slot {
  height: clamp(300px, 52vh, 560px);
}

#apply {
  min-height: auto;
  padding-top: clamp(120px, 13vw, 210px);
  padding-bottom: clamp(120px, 12vw, 190px);
}

.apply-grid {
  align-items: start;
}

.apply-copy h2 {
  margin: 0 0 clamp(20px, 2.5vw, 30px);
  font-size: clamp(30px, 4.4vw, 64px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.apply-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--text-mid);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
}

.form {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.6vw, 30px);
}

.field span,
.field-label {
  display: block;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.required {
  color: #fff;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  background: transparent;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #fff;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-field input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #fff;
}

.checkbox-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-error {
  min-height: 18px;
  color: var(--error);
  font-size: 13px;
}

.success-state {
  display: none;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  text-align: center;
}

.success-state.is-visible {
  display: block;
  animation: fade 0.45s ease;
}

.success-title {
  margin: 20px 0 12px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 650;
}

.success-copy {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

#apply .success-state svg {
  stroke: currentColor;
}

body.is-apply-light #apply {
  background: #fff;
  color: #000;
}

body.is-apply-light #apply .field input,
body.is-apply-light #apply .field textarea {
  border-bottom-color: rgba(0, 0, 0, 0.28);
  color: #000;
}

body.is-apply-light #apply .field input::placeholder,
body.is-apply-light #apply .field textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

body.is-apply-light #apply .field input:focus,
body.is-apply-light #apply .field textarea:focus {
  border-bottom-color: #000;
}

body.is-apply-light #apply .checkbox-field {
  color: rgba(0, 0, 0, 0.7);
}

body.is-apply-light #apply .checkbox-field input {
  accent-color: #000;
}

body.is-apply-light #apply .required {
  color: #000;
}

body.is-apply-light #apply .success-state {
  border-color: rgba(0, 0, 0, 0.16);
}

body.is-apply-light #apply .btn-primary {
  border-color: #000;
  background: #000;
  color: #fff;
}

body.is-apply-light #apply .btn-primary:hover {
  background: transparent;
  color: #000;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(60px, 8vw, 110px) 0 clamp(30px, 4vw, 50px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #000;
  pointer-events: auto;
  transition: background-color 0.55s ease, color 0.55s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.7fr) minmax(240px, 1fr);
  gap: clamp(30px, 4vw, 60px);
}

.footer-logo {
  margin-bottom: 18px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer-slogan {
  max-width: 280px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.72);
  transition: background 0.25s ease, color 0.25s ease;
}

.socials a:hover {
  background: #000;
  color: #fff;
}

.footer-heading {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.54);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.64);
  font-size: 15px;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #000;
}

.biz-toggle {
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.biz-toggle svg {
  stroke: rgba(0, 0, 0, 0.55);
}

.biz-content {
  display: none;
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 13px;
  line-height: 1.9;
}

.biz-content.is-open {
  display: block;
  animation: fade 0.3s ease;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
  color: rgba(0, 0, 0, 0.46);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  color: rgba(0, 0, 0, 0.58);
  font-size: 13px;
  transition: color 0.25s ease;
}

.legal-links a:hover {
  color: #000;
}

.top-button {
  position: fixed;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 3vw, 36px);
  z-index: 88;
  width: clamp(52px, 5vw, 64px);
  height: clamp(52px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transform-origin: 100% 100%;
  will-change: transform, opacity;
}

.top-button.is-visible {
  pointer-events: auto;
}

.top-button span {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.14em;
}

body.is-apply-light .top-button {
  background: #000;
  color: #fff;
}

body.is-apply-light .mobile-fixed-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.mobile-fixed-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 86;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.86);
  transform: translateY(120%);
  transition: opacity 0.3s ease, transform 0.45s ease;
  backdrop-filter: blur(12px);
}

.mobile-fixed-cta.is-visible {
  transform: translateY(0);
}

.policy-page {
  animation: fade 0.5s ease;
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2vw, 22px) var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.policy-main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 40px) clamp(80px, 10vw, 140px);
}

.policy-label {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.effective-date {
  margin: 18px 0 clamp(44px, 6vw, 72px);
  color: var(--text-soft);
  font-size: 14px;
}

.policy-content {
  color: var(--text-mid);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.9;
}

.policy-content section {
  margin-bottom: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.policy-content section:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.policy-content h2 span {
  margin-right: 12px;
  color: var(--text-faint);
  font-family: var(--font-en);
}

.policy-content p {
  margin: 0;
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 6px;
}

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 32px var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-footer span {
  color: var(--text-faint);
  font-family: var(--font-en);
  font-size: 12px;
}

.policy-footer nav {
  display: flex;
  gap: 22px;
}

.policy-footer a {
  color: var(--text-mid);
  font-size: 13px;
}

.js-reveal,
.js-slide {
  will-change: transform, opacity;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1024px) {
  .about-grid,
  .venue-grid,
  .apply-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --pad: clamp(18px, 5vw, 28px);
    --section: clamp(72px, 18vw, 104px);
  }

  .brand-full,
  .desktop-only,
  .footer-sitemap {
    display: none !important;
  }

  .brand-short {
    display: inline;
  }

  .site-header {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .menu-overlay {
    padding-top: 13px;
  }

  .menu-link {
    grid-template-columns: 30px minmax(0, auto);
    gap: 14px;
  }

  .menu-en {
    grid-column: 2;
  }

  .hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  @supports (height: 100dvh) {
    .hero {
      height: 100dvh;
      min-height: 100dvh;
      max-height: 100dvh;
    }
  }

  .hero-media,
  .hero-media.media-slot,
  .hero-media img {
    width: 100%;
    height: 100%;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center center;
  }

  .hero-media video {
    display: none;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 76px);
  }

  .hero-copy {
    max-width: 330px;
    font-size: clamp(14px, 4vw, 16px);
  }

  .hero-kicker {
    max-width: 310px;
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .scroll-cue {
    bottom: 18px;
    font-size: 10px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .section-head {
    margin-bottom: 32px;
  }

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

  .theme-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .theme-row svg {
    display: none;
  }

  .program-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
  }

  .program-tab {
    min-width: 0;
    min-height: 74px;
    padding: 13px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius) - 2px);
    background: rgba(0, 0, 0, 0.34);
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  }

  .program-tab[aria-selected="true"] {
    border-color: rgba(255, 255, 255, 0.88);
    background: #fff;
    color: #000;
  }

  .program-tab[aria-selected="true"]::after {
    display: none;
  }

  .tab-date {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .tab-label {
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1;
    white-space: nowrap;
  }

  .schedule-row {
    grid-template-columns: 72px 1fr;
  }

  .schedule-title {
    grid-column: 1 / -1;
  }

  .schedule-speaker {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .slider-actions {
    display: none;
  }

  .speaker-card {
    flex-basis: min(76vw, 300px);
  }

  .gallery-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .venue-media .media-slot {
    height: clamp(260px, 72vw, 420px);
  }

  .info-row {
    grid-template-columns: 82px 1fr;
  }

  #apply {
    padding-top: clamp(96px, 22vw, 138px);
    padding-bottom: clamp(96px, 22vw, 138px);
  }

  .footer-grid {
    gap: 38px;
  }

  .site-footer {
    padding-top: 40px;
    padding-bottom: calc(26px + env(safe-area-inset-bottom));
  }

  .mobile-fixed-cta {
    display: block;
  }

  .top-button {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .policy-header .brand {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
