:root {
  --navy: #0a1628;
  --navy-soft: #122238;
  --gold: #e08a2e;
  --gold-light: #f5b96a;
  --paper: #f7f4ef;
  --white: #fff;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e0d9cf;
  --banner-height: 36px;
  --nav-height: 68px;
  --content-width: 1200px;
  --shadow: 0 18px 50px rgba(10, 22, 40, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

button,
a[href] {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 5000;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - 4rem, var(--content-width));
  margin-inline: auto;
}

.preopen-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  min-height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 24px;
  border-bottom: 1px solid rgba(224, 138, 46, 0.62);
  background: linear-gradient(90deg, #091727, #132d48 52%, #091727);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  letter-spacing: 0.01em;
  text-align: center;
}

.preopen-label {
  padding-right: 12px;
  border-right: 1px solid rgba(224, 138, 46, 0.42);
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.preopen-banner strong {
  color: var(--white);
  font-weight: 700;
}

.site-nav {
  position: fixed;
  top: var(--banner-height);
  right: 0;
  left: 0;
  z-index: 1100;
  border-bottom: 1px solid rgba(224, 138, 46, 0.24);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(100% - 4rem, var(--content-width));
  height: var(--nav-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex: 0 0 auto;
}

.logo-img {
  width: auto;
  height: 46px;
}

.nav-links {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  margin-left: auto;
  list-style: none;
}

.nav-links li {
  display: flex;
}

.nav-item-with-submenu {
  position: relative;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold-light);
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  transform: scaleX(1);
}

.nav-link[data-coming-soon]::after {
  content: "SOON";
  margin-left: 7px;
  padding: 2px 4px;
  border: 1px solid rgba(224, 138, 46, 0.46);
  border-radius: 2px;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 10;
  min-width: 148px;
  padding: 9px;
  border: 1px solid rgba(224, 138, 46, 0.24);
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 18px 42px rgba(3, 9, 18, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-submenu a {
  display: block;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--gold-light);
  background: rgba(224, 138, 46, 0.1);
}

.nav-item-with-submenu:hover .nav-submenu,
.nav-item-with-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.lang-toggle button {
  padding: 5px 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-toggle button.is-active {
  background: var(--gold);
  color: var(--navy);
  cursor: default;
}

.nav-register {
  padding: 8px 18px;
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nav-register:hover {
  transform: translateY(-1px);
  background: var(--gold-light);
}

.hamburger {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--banner-height) + var(--nav-height));
  background:
    linear-gradient(97deg, rgba(18, 11, 5, 0.96) 0%, rgba(18, 11, 5, 0.78) 43%, rgba(18, 11, 5, 0.34) 76%, rgba(18, 11, 5, 0.18) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(18, 11, 5, 0.9), transparent);
  pointer-events: none;
}

.hero::after {
  content: "2026";
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Playfair Display", serif;
  font-size: clamp(10rem, 24vw, 26rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 4rem, var(--content-width));
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding-block: clamp(72px, 10vh, 112px) 64px;
}

.hero-main {
  animation: reveal-up 700ms 80ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero-title-kr {
  margin-bottom: 6px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.22;
  white-space: nowrap;
}

.hero-title-en {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Playfair Display", serif;
  font-size: clamp(0.86rem, 1.6vw, 1.2rem);
  letter-spacing: 0.28em;
}

.hero-theme {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-theme-sub {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(1.1rem, 2.1vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-theme-sub em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
}

.hero-meta span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-meta b {
  color: var(--gold-light);
}

.count-strip {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 22px;
  border: 1px solid rgba(224, 138, 46, 0.4);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}

.count-label {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.count-label small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.count-numbers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.count-cell {
  min-width: 48px;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.count-cell .number {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-cell .unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.count-divider {
  transform: translateY(-6px);
  color: rgba(255, 255, 255, 0.28);
  font-size: 1.4rem;
}

.hero-speakers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: reveal-up 700ms 220ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.speaker-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 5px;
}

.speaker-heading h2 {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.speaker-heading span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(224, 138, 46, 0.7), transparent);
}

.speaker-card {
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(224, 138, 46, 0.28);
  border-radius: 2px;
  background: rgba(10, 22, 40, 0.58);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(7px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.speaker-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(10, 22, 40, 0.8);
}

.mobile-speaker-toggle {
  display: none;
}

.speaker-photo {
  width: 98px;
  min-width: 98px;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center top;
}

.speaker-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 17px;
}

.speaker-badge {
  display: inline-block;
  margin-bottom: 7px;
  padding: 3px 9px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.speaker-badge.key {
  background: var(--gold);
  color: var(--navy);
}

.speaker-badge.special {
  border: 1px solid rgba(224, 138, 46, 0.55);
  background: rgba(245, 185, 106, 0.14);
  color: var(--gold-light);
}

.speaker-name {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.speaker-name-en {
  margin: 2px 0 5px;
  color: rgba(255, 255, 255, 0.46);
  font-family: "Playfair Display", serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.speaker-role {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11.5px;
  line-height: 1.5;
}

.section {
  padding: clamp(76px, 9vw, 104px) 0;
}

main section[id] {
  scroll-margin-top: calc(var(--banner-height) + var(--nav-height) + 16px);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.is-centered {
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.section-heading h2,
.register h2 {
  color: var(--navy);
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.section-heading p {
  max-width: 650px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.news {
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.news-column {
  min-width: 0;
}

.news-column h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.news-column h3 a {
  color: var(--gold);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.news-list {
  list-style: none;
}

.news-list li {
  border-bottom: 1px solid var(--border);
}

.news-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  color: #333;
  font-size: 13px;
  transition: color 180ms ease, padding-left 180ms ease;
}

.news-list a:hover {
  padding-left: 6px;
  color: var(--gold);
}

.news-list a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list time {
  flex: 0 0 auto;
  color: #aaa;
  font-size: 11px;
}

.register {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), #163756);
  color: var(--white);
  text-align: center;
}

.register::before,
.register::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(224, 138, 46, 0.16);
  border-radius: 50%;
}

.register::before {
  width: 430px;
  height: 430px;
  top: -300px;
  left: -80px;
}

.register::after {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -260px;
}

.register-inner {
  position: relative;
  z-index: 1;
}

.register h2 {
  color: var(--white);
}

.register p {
  margin: 12px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.register-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--gold-light);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.coming-soon-chip {
  display: inline-flex;
  margin-top: 22px;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.coming-soon-chip::before,
.coming-soon-chip::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(224, 138, 46, 0.6);
}

.partners {
  background: var(--white);
  text-align: center;
}

.partner-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.government-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.government-list span {
  padding: 14px 27px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.partner-wall {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0 auto 28px;
}

.partner-wall span {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: #9b948a;
  font-family: "Playfair Display", serif;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  transition: border-color 180ms ease, color 180ms ease;
}

.partner-wall span:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.partner-contact {
  color: var(--muted);
  font-size: 12px;
}

.partner-coming-note {
  margin: -6px 0 14px;
  color: #8e877e;
  font-size: 11px;
}

.partner-contact strong {
  color: var(--gold);
}

.site-footer {
  padding: 58px 0 34px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 0.7fr);
  gap: 44px;
  margin-bottom: 42px;
}

.footer-logo-en {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.footer-brand > strong {
  display: block;
  margin: 5px 0 15px;
  color: var(--white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand p,
.footer-brand address {
  max-width: 450px;
  line-height: 1.85;
}

.footer-brand address {
  margin-top: 12px;
  font-style: normal;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a {
  display: block;
  padding: 5px 0;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-social a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-social {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 22, 40, 0.78);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
}

.speaker-modal {
  position: relative;
  width: min(100%, 680px);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-backdrop.is-open .speaker-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 38px 22px;
}

.modal-avatar {
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  border-radius: 2px;
  object-fit: cover;
  object-position: center top;
}

.modal-header h2 {
  padding-right: 36px;
  color: var(--navy);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.modal-header p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.modal-body {
  padding: 0 38px 36px;
}

.modal-body h3 {
  margin: 22px 0 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.modal-body p {
  color: #333;
  font-size: 13px;
  line-height: 1.85;
}

.modal-download {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 18px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.modal-download:hover {
  background: var(--navy);
  color: var(--white);
}

.coming-soon-toast {
  position: fixed;
  top: calc(var(--banner-height) + var(--nav-height) + 16px);
  left: 50%;
  z-index: 4000;
  width: min(390px, calc(100vw - 32px));
  padding: 16px 20px 16px 48px;
  border-left: 3px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.coming-soon-toast::before {
  content: "SFC";
  position: absolute;
  top: 18px;
  left: 14px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.coming-soon-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .nav-inner {
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    left: 0;
    display: none;
    height: auto;
    flex-direction: column;
    padding: 10px;
    border: 1px solid rgba(224, 138, 46, 0.22);
    border-top: 0;
    background: rgba(10, 22, 40, 0.99);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li,
  .nav-link {
    width: 100%;
  }

  .nav-item-with-submenu {
    display: block;
  }

  .nav-link {
    min-height: 48px;
    padding: 0 12px;
  }

  .nav-link::before {
    display: none;
  }

  .nav-submenu {
    position: static;
    display: flex;
    min-width: 0;
    padding: 0 12px 9px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    flex-wrap: wrap;
  }

  .nav-submenu a {
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11.5px;
  }

  .nav-item-with-submenu:hover .nav-submenu,
  .nav-item-with-submenu:focus-within .nav-submenu {
    transform: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-speakers {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(4, 0.72fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --banner-height: 52px;
    --nav-height: 62px;
  }

  .container,
  .nav-inner,
  .hero-inner {
    width: min(100% - 32px, var(--content-width));
  }

  .preopen-banner {
    gap: 8px;
    padding: 6px 14px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  .preopen-label {
    display: none;
  }

  .logo-img {
    height: 38px;
  }

  .nav-register {
    display: none;
  }

  .hero-grid {
    padding-block: 58px 52px;
  }

  .hero-title-kr {
    font-size: clamp(1.65rem, 7.5vw, 2.25rem);
    white-space: normal;
  }

  .hero-title-en {
    font-size: 0.72rem;
    letter-spacing: 0.19em;
  }

  .hero-theme {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-theme-sub {
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .hero-meta span {
    align-items: flex-start;
    font-size: 14px;
  }

  .hero-meta b {
    flex: 0 0 auto;
  }

  .count-strip {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 14px;
  }

  .count-label small {
    display: inline;
    margin-left: 8px;
  }

  .count-numbers {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }

  .count-cell {
    min-width: 42px;
  }

  .speaker-photo {
    width: 84px;
    min-width: 84px;
  }

  .speaker-info {
    padding: 12px 13px;
  }

  .speaker-role {
    font-size: 10.5px;
  }

  .speaker-card.is-mobile-extra:not(.is-mobile-visible) {
    display: none;
  }

  .speaker-card.is-mobile-extra.is-mobile-visible {
    animation: reveal-up 240ms both cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-speaker-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    border: 1px solid rgba(224, 138, 46, 0.42);
    border-radius: 2px;
    background: rgba(10, 22, 40, 0.6);
    color: var(--gold-light);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .government-list {
    gap: 10px;
  }

  .government-list span {
    width: 100%;
  }

  .partner-wall {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .modal-header {
    align-items: flex-start;
    gap: 16px;
    padding: 30px 22px 16px;
  }

  .modal-avatar {
    width: 82px;
    height: 82px;
  }

  .modal-header h2 {
    font-size: 1.08rem;
  }

  .modal-body {
    padding: 0 22px 28px;
  }

  .coming-soon-toast {
    top: calc(var(--banner-height) + var(--nav-height) + 12px);
  }
}

@media (max-width: 440px) {
  .lang-toggle {
    display: none;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .speaker-card {
    min-height: 106px;
  }

  .speaker-photo {
    width: 78px;
    min-width: 78px;
  }

  .speaker-name-en {
    display: none;
  }

  .register-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

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

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