*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

:root {
  --bg: #0a0f15;
  --bg-deep: #0c1118;
  --surface: rgba(255,255,255,.045);
  --stroke: rgba(255,255,255,.10);
  --stroke-s: rgba(255,255,255,.16);
  --text: #f7f8fb;
  --text-soft: rgba(247,248,251,.78);
  --text-dim: rgba(247,248,251,.48);
  --gold: #13D091;
  --gold-2: #5ce8bc;
  --mint: #79dbc8;
  --sky: #a9bfdc;
  --shadow-lg: 0 24px 80px rgba(0,0,0,.24);
  --shadow-md: 0 16px 40px rgba(0,0,0,.18);
  --display: 'Black Han Sans', 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --en: 'Space Grotesk', 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --kr: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --col: 1040px;
  --pad: 24px;
}

body {
  background:
    radial-gradient(circle at 78% 16%, rgba(241,197,108,.16) 0%, transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(121,219,200,.08) 0%, transparent 22%),
    linear-gradient(180deg, #0a0f15 0%, #101722 48%, #0a0f15 100%);
  color: var(--text);
  font-family: var(--kr);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient grid mesh */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 0%, rgba(0,0,0,.85) 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, rgba(0,0,0,.85) 55%, transparent 100%);
  opacity: .35;
}

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 32px;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
body.menu-open { overflow: hidden; }
nav.solid {
  background: rgba(12,17,24,.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
/* 로고 — 좌측 고정 */
.nav-brand { font-family:var(--kr); font-size:14px; font-weight:700; letter-spacing:-.03em; color:var(--text); text-decoration:none; flex-shrink:0; display:inline-flex; align-items:center; min-width:0; }
.nav-brand img { display:block; height:16px; width:auto; max-width:min(230px,52vw); }


/* 링크 — 중앙 */
.nav-links {
  list-style:none; display:flex; align-items:center;
  position:absolute; left:50%; transform:translateX(-50%);
}
.nav-links a {
  display:block; padding:0 14px;
  font-family:var(--en); font-size:13px; font-weight:400;
  color:rgba(247,248,251,.65); text-decoration:none;
  line-height:64px; white-space:nowrap;
  transition:color .2s;
}
.nav-links a:hover { color:#fff; }

/* 참가신청 pill — 링크 안에 있음 */
.nav-links .nav-pill {
  display:inline-flex; align-items:center;
  height:34px; padding:0 16px; margin-left:6px;
  color:#0b1016 !important;
  background:linear-gradient(180deg,#a0f4dc 0%,#13D091 100%);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  font-weight:700; font-size:12px; line-height:1;
  box-shadow:0 6px 20px rgba(19,208,145,.22), inset 0 1px 0 rgba(255,255,255,.4);
  transition:background .2s;
}
.nav-links .nav-pill:hover { background:linear-gradient(180deg,#b8f7e8 0%,#2cd4a0 100%) !important; color:#0b1016 !important; }
.nav-links .nav-pill-secondary {
  color:rgba(247,248,251,.86) !important;
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 6px 18px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.10);
}
.nav-links .nav-pill-secondary:hover {
  color:#fff !important;
  background:rgba(255,255,255,.085) !important;
}

/* language toggle */
#lang-toggle {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(247,248,251,.55);
  font-family: var(--en); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
#lang-toggle:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
#lang-toggle .lang-opt { color: rgba(247,248,251,.45); transition: color .15s; }
#lang-toggle .lang-opt.is-active { color: #fff; }
#lang-toggle .lang-sep { color: rgba(247,248,251,.22); font-weight: 400; }
@media(max-width:860px){
  #lang-toggle { right: 64px; height: 28px; padding: 0 10px; font-size: 10px; }
}

/* 햄버거 — 모바일만 표시 */
.nav-hamburger {
  display:none;
  position:fixed; top:16px; right:20px; z-index:201;
  flex-direction:column; justify-content:center; gap:5px;
  width:32px; height:32px; cursor:pointer; background:none; border:none; padding:0;
}
.nav-hamburger span {
  display:block; height:1.5px; width:22px;
  background:rgba(247,248,251,.75); border-radius:2px;
  transition:transform .25s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2){ opacity:0; }
.nav-hamburger.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* 모바일 드롭다운 */
.nav-mobile {
  display:none; flex-direction:column;
  position:fixed; top:64px; left:0; right:0; z-index:199;
  background:rgba(10,15,21,.97);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:8px 0 16px;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  padding:14px 28px;
  font-family:var(--en); font-size:14px; font-weight:400;
  color:rgba(247,248,251,.72); text-decoration:none;
  transition:color .2s;
}
.nav-mobile a:hover { color:#fff; }
.nav-mobile-lang {
  margin:8px 24px 0;
  height:42px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.045);
  color:rgba(247,248,251,.82);
  font-family:var(--en);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  cursor:pointer;
}
.nav-mobile-pill {
  margin:8px 24px 0;
  padding:13px 20px;
  text-align:center;
  background:linear-gradient(180deg,#a0f4dc 0%,#13D091 100%);
  color:#0b1016 !important; font-weight:700 !important;
  border-radius:999px;
}
.nav-mobile-pill-secondary {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(247,248,251,.88) !important;
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 112px var(--pad) 92px;
  position: relative; overflow: hidden; isolation: isolate;

  background-image: url("/assets/gdf2026/hero_bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#hero::before {
  content: '';
  position: absolute; inset: auto auto 8% 50%;
  width: min(920px,92vw); height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%, rgba(19,208,145,.18) 0%, rgba(19,208,145,.06) 28%, transparent 68%);
  filter: blur(6px);
  pointer-events: none; z-index: -1;
}
#hero::after {
  display: none;
}

/* kv elements */
.kv { position:absolute; inset:0; pointer-events:none; opacity:.9; }
.kv-dots-tr {
  position:absolute; top:0; right:0; width:240px; height:240px; opacity:.55;
  background-image: radial-gradient(circle, rgba(241,197,108,.65) 1.3px, transparent 1.3px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 68%);
}
.kv-dots-bl {
  position:absolute; bottom:0; left:0; width:200px; height:200px; opacity:.55;
  background-image: radial-gradient(circle, rgba(121,219,200,.55) 1.3px, transparent 1.3px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at bottom left, black 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at bottom left, black 0%, transparent 68%);
}
.glow-t {
  position:absolute; top:2%; right:4%; width:460px; height:460px; border-radius:50%;
  background: radial-gradient(ellipse, rgba(121,219,200,.12) 0%, transparent 64%);
  filter: blur(14px);
}
.glow-g {
  position:absolute; top:28%; right:18%; width:620px; height:420px; border-radius:50%;
  background: radial-gradient(ellipse, rgba(240,198,103,.13) 0%, transparent 68%);
  filter: blur(12px);
}
.orb-t {
  position:absolute; top:-4%; right:2%;
  width:clamp(340px,34vw,560px); height:clamp(340px,34vw,560px); border-radius:50%;
  background: radial-gradient(circle, rgba(121,219,200,.26) 0%, rgba(121,219,200,.12) 26%, transparent 68%);
  filter: blur(10px);
}
.orb-g {
  position:absolute; top:18%; right:16%;
  width:clamp(440px,42vw,700px); height:clamp(440px,42vw,700px); border-radius:50%;
  background: radial-gradient(circle, rgba(240,198,103,.30) 0%, rgba(240,198,103,.12) 30%, transparent 72%);
  filter: blur(10px);
}
.flare { position:absolute; top:42%; right:28%; width:2px; height:2px; }
.flare::before {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%) rotate(-40deg);
  width:560px; height:1px;
  background: linear-gradient(to right, transparent 0%, rgba(255,221,142,.14) 20%, rgba(255,238,191,.92) 50%, rgba(255,221,142,.14) 80%, transparent);
  filter: blur(.4px);
}
.flare::after {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%) rotate(50deg);
  width:240px; height:1px;
  background: linear-gradient(to right, transparent, rgba(255,220,100,.45) 50%, transparent);
  filter: blur(.3px);
}
.flare-core {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:10px; height:10px; border-radius:50%; background:#fff;
  box-shadow: 0 0 8px 4px rgba(255,244,205,.95), 0 0 28px 10px rgba(255,211,120,.56), 0 0 72px 24px rgba(255,192,84,.24);
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px; border-radius:999px;
  background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.12);
  color:var(--gold-2); font-family:var(--en); font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:24px; box-shadow:0 10px 30px rgba(0,0,0,.16);
  opacity:0; animation:up .7s .05s ease forwards;
}
.badge-dot { width:6px; height:6px; border-radius:50%; background:linear-gradient(180deg,#a0f4dc 0%,#13D091 100%); box-shadow:0 0 10px rgba(19,208,145,.52); }

.hero-h1 {
  font-family:var(--display); font-size:clamp(32px,5.2vw,80px); font-weight:400;
  line-height:.95; letter-spacing:-.03em; color:var(--text);
  max-width:900px; margin-bottom:22px;
  text-shadow:0 8px 40px rgba(0,0,0,.16);
  opacity:0; animation:up .8s .12s ease forwards;
}

html[lang="en"] .hero-h1 {
  font-family:'Montserrat', var(--en);
  font-weight:600;
  line-height:1.14;
}
.hero-sub {
  font-family:var(--kr); font-size:clamp(16px,1.9vw,21px); font-weight:400;
  color:var(--text-soft); line-height:1.78; max-width:620px; margin-bottom:34px;
  opacity:0; animation:up .8s .2s ease forwards;
}
.hero-meta {
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  margin-bottom:34px;
  opacity:0; animation:up .8s .27s ease forwards;
}
.hm {
  min-width:172px; padding:18px 20px;
  border:1px solid rgba(255,255,255,.10); border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.03) 100%);
  box-shadow:var(--shadow-md); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
}
.hm-l { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(247,248,251,.44); margin-bottom:6px; }
.hm-v { font-family:var(--en); font-size:14px; font-weight:600; color:var(--text); letter-spacing:-.01em; }
.hm-v.free { color:var(--gold-2); }

.hero-btns { display:flex; gap:12px; justify-content:center; opacity:0; animation:up .8s .34s ease forwards; }
.btn-fill {
  height:54px; padding:0 28px; display:inline-flex; align-items:center;
  color:#0b1016; background:linear-gradient(180deg,#f6e3bc 0%,#ddb96b 100%);
  border-radius:999px; font-family:var(--en); font-size:14px; font-weight:700; letter-spacing:-.01em; text-decoration:none;
  box-shadow:0 14px 34px rgba(221,185,107,.28), inset 0 1px 0 rgba(255,255,255,.5);
  transition:transform .2s, box-shadow .2s;
}
.btn-fill:hover { transform:translateY(-1px); box-shadow:0 18px 40px rgba(19,208,145,.34), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-out {
  height:54px; padding:0 28px; display:inline-flex; align-items:center;
  border:1px solid rgba(255,255,255,.12); color:var(--text-soft);
  background:rgba(255,255,255,.035); border-radius:999px;
  font-family:var(--en); font-size:14px; font-weight:400; letter-spacing:-.01em; text-decoration:none;
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  transition:color .2s, border-color .2s, background .2s;
}
.btn-out:hover { color:#fff; border-color:rgba(255,255,255,.24); background:rgba(255,255,255,.055); }
.hero-note { margin-top:28px; display:inline-flex; align-items:center; gap:14px; font-family:var(--kr); font-size:13px; font-weight:400; color:rgba(247,248,251,.55); letter-spacing:.01em; opacity:0; animation:up .8s .42s ease forwards; }
.hero-note b { color:var(--text); font-weight:600; }
.hero-note > span:first-child { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-2); }
.hero-note .hero-note-logo { display:inline-flex; align-items:center; }
.hero-note .hero-note-logo img { display:block; height:14px; width:auto; }
html[lang="en"] .hero-note .hero-note-logo img[data-en-src] { width:min(240px,66vw); height:auto; }
.hero-note-sep { display:block; width:1px; height:14px; background:rgba(247,248,251,.22); }

/* ── HERO HOSTED / SPONSORED ── */
.hero-orgs {
  margin-top: 22px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  opacity: 0; animation: up .8s .48s ease forwards;
}
.hero-orgs .hero-note { margin-top: 0; opacity: 1; animation: none; }

.hero-sponsors {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 18px 8px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  flex-wrap: wrap; justify-content: center;
}
.hero-sponsors .hsp-label {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); flex-shrink: 0;
}
.hero-sponsors .hsp-sep {
  display: block; width: 1px; height: 14px;
  background: rgba(247,248,251,.18); flex-shrink: 0;
}
.hsp-slots {
  display: inline-flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: center;
}
.hsp-slot {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  font-family: var(--kr); font-size: 12px; font-weight: 500;
  letter-spacing: -.005em;
  color: rgba(247,248,251,.78);
  transition: border-color .15s, background .15s, color .15s;
}
.hsp-slot:hover {
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.hsp-slot img { display: block; height: 22px; width: auto; }
html[lang="en"] .hsp-slot img[data-en-src] { height:20px; }

@media (max-width: 640px) {
  .hero-sponsors {
    flex-direction: column; gap: 8px; border-radius: 14px; padding: 12px 16px;
  }
  .hero-sponsors .hsp-sep { display: none; }
}

/* ── PARTNERS BAND ── */
#partners {
  position: relative;
  z-index: 1;
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(90deg, rgba(9,13,19,.76) 0%, rgba(13,17,23,.62) 54%, rgba(82,42,23,.22) 100%),
    rgba(9,13,19,.88);
}
.partners-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(8, 120px);
  justify-content: center;
  align-items: center;
  gap: 22px 38px;
  max-width: 1240px;
}
.wall-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
}
.wall-card::before {
  content: "";
  position: absolute;
  inset: -10px -14px;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.wall-card img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 92%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 1;
  transition: opacity .25s ease;
  image-rendering: -webkit-optimize-contrast;
}
.wall-card:hover::before { opacity: 1; }
.wall-card .wl-c { opacity: 0; }
.wall-card:hover .wl-w { opacity: 0; }
.wall-card:hover .wl-c { opacity: 1; }
.wall-card.wc-rotem img {
  max-width: 74%;
  max-height: 74%;
}
@media (max-width: 960px) {
  .logo-wall { grid-template-columns: repeat(4, 118px); gap: 26px 30px; }
  .wall-card { width: 118px; height: 42px; }
}
@media (max-width: 640px) {
  #partners { padding: 22px 18px 34px; }
  .logo-wall { grid-template-columns: repeat(2, 118px); gap: 24px 28px; }
  .wall-card { width: 118px; height: 40px; }
}

/* ── COUNTDOWN ── */
#countdown {
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg,rgba(255,255,255,.035) 0%,rgba(255,255,255,.015) 100%);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  position:relative; z-index:1;
}
.cd-inner { max-width:var(--col); margin:0 auto; padding:0 24px; display:flex; align-items:center; justify-content:center; }
.cd-u { display:flex; flex-direction:column; align-items:center; padding:28px 42px; border-right:1px solid rgba(255,255,255,.08); }
.cd-u:last-of-type { border-right:none; }
.cd-n { font-family:var(--en); font-size:48px; font-weight:800; line-height:1; color:#fff; letter-spacing:-.04em; min-width:2ch; text-align:center; }
.cd-l { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(247,248,251,.44); margin-top:6px; }
.cd-status { margin-left:auto; display:flex; align-items:center; gap:8px; padding-left:40px; }
.live-dot { width:6px; height:6px; border-radius:50%; background:#6ed4a0; animation:blink 2.2s ease infinite; }
.live-txt { font-family:var(--en); font-size:11px; font-weight:500; color:rgba(247,248,251,.48); }

/* ── SECTION BASE ── */
.section { padding:140px var(--pad); position:relative; overflow:hidden; }
.section + .section { border-top:1px solid rgba(255,255,255,.06); }

.s-eye { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-2); text-align:center; margin-bottom:18px; }
.s-h2 { font-family:var(--en); font-size:clamp(40px,5vw,76px); font-weight:800; line-height:.95; letter-spacing:-.04em; color:var(--text); text-align:center; margin-bottom:18px; }
.s-lead { font-family:var(--kr); font-size:17px; font-weight:400; color:var(--text-soft); line-height:1.82; text-align:center; max-width:800px; margin:0 auto 80px; }

/* glass card helper */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.035) 100%);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: 26px;
  position: relative; overflow: hidden;
}
.glass-card::before {
  content:''; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:linear-gradient(135deg,rgba(255,255,255,.10) 0%,transparent 38%);
  opacity:.5;
}

/* ══════════════════════
   ABOUT
══════════════════════ */
#about {
  background:
    radial-gradient(ellipse at 85% 18%, rgba(121,219,200,.08) 0%, transparent 44%),
    radial-gradient(ellipse at 12% 86%, rgba(240,198,103,.08) 0%, transparent 42%);
}
#about .bg-dots-tr { position:absolute;top:0;right:0;width:200px;height:200px;background-image:radial-gradient(circle,rgba(241,197,108,.5) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);pointer-events:none; }
#about .bg-dots-bl { position:absolute;bottom:0;left:0;width:180px;height:180px;background-image:radial-gradient(circle,rgba(121,219,200,.45) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at bottom left,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at bottom left,black 0%,transparent 65%);pointer-events:none; }

.about-grid { display:grid; grid-template-columns:1fr; gap:24px; max-width:680px; margin:0 auto; position:relative; }
.about-2col {
  max-width:1100px; margin:0 auto; position:relative;
  display:grid; grid-template-columns:.85fr 1fr; gap:56px;
  align-items:center;
}
.about-header { padding-left:8px; }
.about-header .s-eye { text-align:left; margin-bottom:14px; }
.about-header .s-h2 { text-align:left; margin-bottom:18px; font-size:clamp(40px,4.6vw,68px); line-height:.96; }
.about-header .s-lead { text-align:left; margin:0; max-width:none; color:#fff; font-size:15px; line-height:1.75; word-break:keep-all; }
.about-panel { padding:34px; }
.info-panel { padding:24px 28px; }

.about-body { font-family:var(--kr); font-size:15px; font-weight:400; line-height:1.92; color:var(--text-soft); }
.about-body p+p { margin-top:18px; }
.about-body strong { color:#fff; font-weight:600; }
.about-quote { font-family:var(--en); font-style:italic; font-weight:300; font-size:clamp(17px,1.9vw,23px); color:#fff2d2; line-height:1.5; border-left:2px solid rgba(240,198,103,.55); padding:20px 0 20px 22px; margin:28px 0 30px; }
.feat-list { margin-top:28px; }
.feat { display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.feat:first-child { border-top:1px solid rgba(255,255,255,.08); }
.feat-n { font-family:var(--en); font-size:11px; font-weight:700; color:var(--gold-2); flex-shrink:0; width:20px; padding-top:1px; }
.feat-body strong { display:block; font-family:var(--en); font-size:13px; font-weight:700; color:#fff; margin-bottom:5px; }
.feat-body span { font-size:13px; font-weight:400; color:var(--text-soft); line-height:1.65; }

.itbl { display:flex; flex-direction:column; }
.ir { display:flex; gap:18px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.08); align-items:baseline; }
.ik { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:rgba(247,248,251,.44); flex-shrink:0; width:64px; }
.iv { font-family:var(--kr); font-size:14px; font-weight:400; color:#fff; line-height:1.6; }
.iv small { display:block; font-size:11px; color:rgba(247,248,251,.50); margin-top:2px; }
.iv.gold { color:var(--gold-2); font-weight:600; }
.iv .iv-logo { display:inline-block; height:15px; width:auto; vertical-align:middle; }
html[lang="en"] .iv .iv-logo[data-en-src] { width:min(180px,100%); height:auto; max-width:100%; }
.iv-sponsors { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.iv-sponsors img { display:block; height:22px; width:auto; }
.host-row { margin-top:20px; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; gap:12px; }
.host-lbl { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:rgba(247,248,251,.44); }
.host-val { font-family:var(--en); font-size:15px; font-weight:800; letter-spacing:-.02em; color:#fff; }

/* ══════════════════════
   PROGRAM
══════════════════════ */
#program {
  background:
    radial-gradient(ellipse at 18% 18%, rgba(240,198,103,.07) 0%, transparent 40%),
    radial-gradient(ellipse at 78% 78%, rgba(121,219,200,.05) 0%, transparent 36%);
}
#program .bg-dots-tr { position:absolute;top:0;right:0;width:220px;height:220px;background-image:radial-gradient(circle,rgba(241,197,108,.48) 1.2px,transparent 1.2px);background-size:18px 18px;mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);pointer-events:none; }
#program .bg-dots-bl { position:absolute;bottom:0;left:0;width:180px;height:180px;background-image:radial-gradient(circle,rgba(121,219,200,.42) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at bottom left,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at bottom left,black 0%,transparent 65%);pointer-events:none; }

.program-shell { max-width:940px; margin:0 auto; padding:28px; }

/* timeline C style */
.timeline { max-width:none; display:flex; flex-direction:column; }

.tl-period { display:flex; align-items:center; gap:16px; margin:32px 0 4px; }
.tl-period:first-child { margin-top:0; }

/* Program notice banner */
.program-notice {
  display:flex; flex-wrap:wrap; gap:10px;
  margin: 0 0 28px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
}
.program-notice-item {
  display:inline-flex; align-items:center; gap:10px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: rgba(19,208,145,.06);
  border: 1px solid rgba(19,208,145,.18);
}
.program-notice-item .pn-tag {
  font-family: var(--en); font-size: 9px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(19,208,145,.2); color: #c8f3e0;
}
.program-notice-item .pn-txt {
  font-family: var(--kr); font-size: 13px; font-weight: 500;
  color: var(--text-soft); letter-spacing: -.005em;
}
.program-notice-item .pn-txt b { color: #fff; font-weight: 600; }
.program-notice-item.is-gold { background: rgba(221,185,107,.07); border-color: rgba(221,185,107,.25); }
.program-notice-item.is-gold .pn-tag { background: rgba(221,185,107,.22); color: #f6e1b4; }
.tl-period-label { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-2); flex-shrink:0; }
.tl-period-line { flex:1; height:1px; background:linear-gradient(to right, rgba(255,255,255,.16), rgba(255,255,255,.04)); }

.tl-item {
  display:flex; gap:0;
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  transition:background .12s;
}
.tl-item:first-of-type { border-top:1px solid rgba(255,255,255,.07); }
.tl-item:hover { background:rgba(255,255,255,.025); }
.tl-item.is-break { opacity:.55; }
.tl-item.is-break:hover { background:transparent; }

/* 시간 컬럼 — 크게 */
.tl-time {
  width:130px; flex-shrink:0;
  display:flex; flex-direction:column; gap:3px;
  padding-right:24px;
  justify-content:center;
}
.tl-time-big {
  font-family:var(--en); font-size:28px; font-weight:800;
  color:var(--text); letter-spacing:-.03em; line-height:1;
}
.tl-time-end {
  font-family:var(--en); font-size:11px; font-weight:400;
  color:rgba(247,248,251,.38); letter-spacing:.01em;
}

/* 수직 구분선 */
.tl-divider {
  width:1px; flex-shrink:0;
  background:rgba(255,255,255,.12);
  margin-right:24px;
  align-self:stretch;
}

/* 본문 */
.tl-body {
  flex:1; display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.tl-body-left { display:flex; flex-direction:column; gap:6px; min-width:0; }
.tl-body-left.is-split { gap:0; }
.tl-subsession { display:flex; flex-direction:column; gap:6px; }
.tl-subsession + .tl-subsession {
  margin-top:12px; padding-top:12px;
  border-top:1px dashed rgba(255,255,255,.12);
}
.tl-prog {
  font-family:var(--en); font-size:16px; font-weight:700;
  color:var(--text); letter-spacing:-.01em; line-height:1.35;
  word-break:keep-all; overflow-wrap:anywhere; text-wrap:pretty;
}
.tl-prog-kr { font-family:var(--kr); font-size:13px; font-weight:400; color:var(--text-soft); line-height:1.3; }
.tl-spk {
  font-family:var(--kr); font-size:13.5px; font-weight:500;
  color:rgba(255,255,255,.88);
  letter-spacing:-.005em; line-height:1.6;
  display:block;
  word-break:keep-all; overflow-wrap:anywhere; text-wrap:pretty;
  display:flex; align-items:center; gap:6px;
}
.tl-spk::before { display:none; }
.tl-spk-list { display:block; }
.tl-spk-list::before { display:none; }
.tl-spk-row { display:flex; align-items:flex-start; gap:10px; padding:6px 0; }
.tl-spk-row + .tl-spk-row { border-top:1px dashed rgba(255,255,255,.08); margin-top:2px; }
.tl-spk-role {
  flex-shrink:0; display:inline-flex; align-items:center; justify-content:center;
  height:20px; min-width:78px; padding:0 9px; border-radius:4px;
  font-family:var(--en); font-size:9.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  background:rgba(255,140,40,.12); border:1px solid rgba(255,140,40,.32); color:#ffb37a;
  white-space:nowrap;
}
.tl-spk-role.is-mod {
  background:linear-gradient(180deg,rgba(255,180,80,.22) 0%,rgba(255,140,40,.16) 100%);
  border-color:rgba(255,180,80,.45); color:#ffd9a8;
  box-shadow:0 0 0 1px rgba(255,140,40,.10) inset, 0 4px 12px -4px rgba(255,140,40,.30);
}
.tl-spk-role.is-panel {
  background:rgba(108,180,255,.10); border-color:rgba(108,180,255,.30); color:#bad4ef;
}
.tl-spk-text {
  flex:1; color:#fff; font-size:13.5px; font-weight:500;
  line-height:1.55; letter-spacing:-.005em; padding-top:2px;
  word-break:keep-all; overflow-wrap:anywhere; text-wrap:pretty; min-width:0;
}
.tl-spk-text .org-sep { margin:0 8px; color:rgba(255,255,255,.32); font-weight:300; white-space:nowrap; }
.tl-spk-text .spk-name { font-weight:700; font-size:14.5px; color:#fff; margin-right:10px; }
.tl-spk .spk-name { display:inline-block; font-weight:700; color:#fff; margin-right:10px; font-size:14.5px; }
.tl-tag-col { flex-shrink:0; }
.tl-tag { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:5px 11px; border-radius:999px; border:1px solid; white-space:nowrap; }
.t-kn  { color:#a0f4dc; border-color:rgba(19,208,145,.3); background:rgba(19,208,145,.12); }
.t-pnl { color:#bad4ef; border-color:rgba(169,191,220,.26); background:rgba(169,191,220,.10); }
.t-prs { color:#b6f0e5; border-color:rgba(121,219,200,.24); background:rgba(121,219,200,.10); }
.t-etc { color:rgba(247,248,251,.45); border-color:rgba(255,255,255,.08); background:transparent; }
.tl-note { font-family:var(--en); font-size:11px; color:rgba(247,248,251,.38); margin-top:24px; max-width:940px; margin-left:auto; margin-right:auto; text-align:center; }

/* ══════════════════════
   OUTCOMES
══════════════════════ */
#outcomes {
  background:
    radial-gradient(ellipse at 80% 28%, rgba(240,198,103,.08) 0%, transparent 38%),
    radial-gradient(ellipse at 12% 82%, rgba(121,219,200,.06) 0%, transparent 34%);
}
#outcomes .bg-dots-tl { position:absolute;top:0;left:0;width:180px;height:180px;background-image:radial-gradient(circle,rgba(121,219,200,.45) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at top left,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at top left,black 0%,transparent 65%);pointer-events:none; }
#outcomes .bg-dots-br { position:absolute;bottom:0;right:0;width:180px;height:180px;background-image:radial-gradient(circle,rgba(241,197,108,.45) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at bottom right,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at bottom right,black 0%,transparent 65%);pointer-events:none; }

.out-grid {
  max-width:var(--col); margin:0 auto;
  display:flex; gap:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px; overflow:hidden;
  position:relative;
}
.oc {
  flex:1;
  padding:28px 24px;
  border-right:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.025) 100%);
  display:flex; flex-direction:column; gap:10px;
  transition:background .18s;
  position:relative; overflow:hidden;
}
.oc:last-child { border-right:none; }
.oc:hover { background:linear-gradient(180deg,rgba(255,255,255,.07) 0%,rgba(255,255,255,.04) 100%); }
.oc-n { font-family:var(--en); font-size:52px; font-weight:800; color:rgba(240,198,103,.18); line-height:1; letter-spacing:-.04em; user-select:none; }
.oc-cat { font-family:var(--en); font-size:9.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-2); }
.oc-title { font-family:var(--en); font-size:15px; font-weight:700; letter-spacing:-.02em; color:#fff; line-height:1.3; }
.oc-desc { font-family:var(--kr); font-size:13px; font-weight:400; color:var(--text-soft); line-height:1.82; }

/* ══════════════════════
   VENUE
══════════════════════ */
#venue {
  background:
    radial-gradient(ellipse at 82% 20%, rgba(121,219,200,.07) 0%, transparent 40%),
    linear-gradient(180deg,rgba(255,255,255,.02) 0%,rgba(255,255,255,.012) 100%);
}
#venue .bg-grid { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:48px 48px;mask-image:radial-gradient(ellipse at center,black 30%,transparent 75%);-webkit-mask-image:radial-gradient(ellipse at center,black 30%,transparent 75%);pointer-events:none; }
#venue .bg-dots-tr { position:absolute;top:0;right:0;width:200px;height:200px;background-image:radial-gradient(circle,rgba(241,197,108,.48) 1.2px,transparent 1.2px);background-size:18px 18px;mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);pointer-events:none; }

.venue-wrap { max-width:var(--col); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch; position:relative; }
.venue-map {
  min-height:420px; border-radius:26px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.03) 100%);
  box-shadow:var(--shadow-lg); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  position:relative; overflow:hidden;
}


.vpin { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2; }
.vpin-dot { width:12px;height:12px;border-radius:50%;background:linear-gradient(180deg,#a0f4dc 0%,#13D091 100%);margin:0 auto;box-shadow:0 0 18px 6px rgba(19,208,145,.52); }
.vring { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border:1px solid rgba(19,208,145,.7);border-radius:50%;opacity:0;animation:vr 3s ease infinite; }
.vring:nth-child(2){animation-delay:1s;} .vring:nth-child(3){animation-delay:2s;}
@keyframes vr { 0%{width:12px;height:12px;opacity:.6} 100%{width:88px;height:88px;opacity:0} }
.vlabel { position:absolute;bottom:18px;left:0;right:0;text-align:center;font-family:var(--en);font-size:10px;font-weight:500;letter-spacing:.06em;color:rgba(247,248,251,.52); }
.vrows {
  border-radius:26px; padding:16px 26px;
  min-height:420px; height:100%; box-sizing:border-box;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.03) 100%);
  box-shadow:var(--shadow-lg); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  display:flex; flex-direction:column;
}
.vrow { padding:18px 0; border-bottom:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; gap:5px; }
.vrow:last-child { border-bottom:none; }
.vrow-l { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(247,248,251,.44); }
.vrow-v { font-size:14px; font-weight:400; color:#fff; line-height:1.5; }
.vrow-v small { display:block; font-size:11px; color:rgba(247,248,251,.52); margin-top:2px; }

/* ══════════════════════
   GALLERY
══════════════════════ */
#gallery {
  background:
    radial-gradient(ellipse at 12% 72%, rgba(19,208,145,.10) 0%, transparent 42%),
    radial-gradient(ellipse at 88% 22%, rgba(240,198,103,.07) 0%, transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.018) 0%,rgba(255,255,255,.01) 100%);
}
#gallery .bg-dots-tr { position:absolute;top:0;right:0;width:220px;height:220px;background-image:radial-gradient(circle,rgba(241,197,108,.42) 1.2px,transparent 1.2px);background-size:18px 18px;mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at top right,black 0%,transparent 65%);pointer-events:none; }
#gallery .bg-dots-bl { position:absolute;bottom:0;left:0;width:220px;height:220px;background-image:radial-gradient(circle,rgba(121,219,200,.42) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at bottom left,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at bottom left,black 0%,transparent 65%);pointer-events:none; }
.gallery-wrap { position: relative; max-width: 1240px; margin: 0 auto; }
.gallery-rail {
  display: flex; gap: 20px; overflow-x: auto; padding: 4px 2px 12px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 clamp(280px, 31%, 420px);
  scroll-snap-align: start;
  display: block;
  padding: 0; border: 0; background: transparent;
  color: inherit; text-align: left; cursor: pointer;
}
.gallery-card img {
  display: block; width: 100%; height: 300px;
  border-radius: 14px; border: 1px solid rgba(255,255,255,.10);
  object-fit: cover; background: rgba(255,255,255,.03);
  box-shadow: 0 22px 60px -32px rgba(0,0,0,.66);
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
}
.gallery-card:hover img {
  transform: translateY(-2px);
  border-color: rgba(92,232,188,.36);
}
.gallery-nav {
  position: absolute; top: 154px; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.14); background: rgba(12,16,22,.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; font-size: 20px; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.gallery-nav:hover { background: rgba(19,208,145,.22); border-color: rgba(92,232,188,.5); }
.gallery-nav.prev { left: -6px; }
.gallery-nav.next { right: -6px; }
.gallery-modal {
  position: fixed; inset: 0; z-index: 1002;
  display: none; align-items: center; justify-content: center;
  padding: 72px 88px 48px;
  background: rgba(5,8,12,.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.gallery-modal.is-open { display: flex; }
.gallery-modal-figure {
  margin: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gallery-modal-figure img {
  display: block;
  max-width: min(100%, 1500px);
  max-height: calc(100vh - 120px);
  width: auto; height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 34px 100px -28px rgba(0,0,0,.82);
}
.gallery-modal-close,
.gallery-modal-nav {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(12,16,22,.72);
  color: #fff; cursor: pointer;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .18s, border-color .18s;
}
.gallery-modal-close {
  top: 22px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 22px; line-height: 1;
}
.gallery-modal-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 28px;
}
.gallery-modal-nav.prev { left: 24px; }
.gallery-modal-nav.next { right: 24px; }
.gallery-modal-close:hover,
.gallery-modal-nav:hover {
  background: rgba(19,208,145,.22);
  border-color: rgba(92,232,188,.5);
}
@media (max-width: 860px) {
  .gallery-modal { padding: 62px 18px 34px; }
  .gallery-modal-nav {
    top: auto; bottom: 20px; transform: none;
    width: 46px; height: 46px; font-size: 24px;
  }
  .gallery-modal-nav.prev { left: 18px; }
  .gallery-modal-nav.next { right: 18px; }
  .gallery-modal-figure img { max-height: calc(100vh - 142px); }
}
@media (max-width: 640px) {
  .gallery-card { flex-basis: 82%; }
  .gallery-card img { height: 240px; }
  .gallery-nav { display: none; }
}

/* ══════════════════════
   CTA
══════════════════════ */
#cta {
  padding:140px var(--pad);
  text-align:center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(240,198,103,.14) 0%, transparent 56%),
    radial-gradient(ellipse at 84% 10%, rgba(121,219,200,.08) 0%, transparent 44%);
}
#cta .bg-dots-tl { position:absolute;top:0;left:0;width:200px;height:200px;background-image:radial-gradient(circle,rgba(121,219,200,.45) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at top left,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at top left,black 0%,transparent 65%);pointer-events:none; }
#cta .bg-dots-br { position:absolute;bottom:0;right:0;width:200px;height:200px;background-image:radial-gradient(circle,rgba(241,197,108,.45) 1.2px,transparent 1.2px);background-size:16px 16px;mask-image:radial-gradient(ellipse at bottom right,black 0%,transparent 65%);-webkit-mask-image:radial-gradient(ellipse at bottom right,black 0%,transparent 65%);pointer-events:none; }

.cta-h { font-family:var(--en); font-size:clamp(48px,7vw,92px); font-weight:800; letter-spacing:-.05em; line-height:.92; color:var(--text); margin-bottom:18px; position:relative; }
.cta-sub { font-family:var(--kr); font-size:16px; font-weight:400; color:var(--text-soft); line-height:1.85; max-width:560px; margin:0 auto 34px; position:relative; }
.free-tag { display:inline-block; background:linear-gradient(180deg,#f6e1b4 0%,#ddb96b 100%); color:#0a0f15; font-family:var(--en); font-size:9px; font-weight:800; letter-spacing:.1em; padding:4px 10px; border-radius:999px; margin-left:4px; vertical-align:middle; }
.cta-btns { display:flex; gap:12px; justify-content:center; position:relative; }
.cta-box {
  max-width:560px; margin:42px auto 0;
  border-radius:24px; padding:28px 32px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.03) 100%);
  box-shadow:var(--shadow-lg); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  text-align:left; position:relative;
}
.cta-box-t { font-family:var(--en); font-size:17px; font-weight:700; letter-spacing:-.02em; color:#fff; margin-bottom:18px; }
.cta-note { font-family:var(--kr); font-size:12px; font-weight:400; color:rgba(247,248,251,.52); line-height:1.8; margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); }

/* compact contact strip */
.cta-contact-strip {
  max-width: 760px; margin: 32px auto 0;
  display: flex; align-items: center; gap: 18px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  flex-wrap: wrap; justify-content: center;
}
.cta-contact-strip .ccs-label {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-2);
  flex-shrink: 0;
}
.cta-contact-strip .ccs-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}
.cta-contact-strip .ccs-items {
  display: flex; gap: 22px; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
.cta-contact-strip .ccs-item {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--kr);
}
.cta-contact-strip .ccs-k {
  font-family: var(--en); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247,248,251,.42);
}
.cta-contact-strip .ccs-v {
  font-size: 13px; font-weight: 500;
  color: var(--text); text-decoration: none;
  letter-spacing: -.005em;
  transition: color .15s;
}
.cta-contact-strip a.ccs-v:hover { color: var(--gold-2); }

@media (max-width: 640px) {
  .cta-contact-strip {
    border-radius: 16px;
    flex-direction: column; gap: 12px; padding: 16px 22px;
  }
  .cta-contact-strip .ccs-divider { display: none; }
  .cta-contact-strip .ccs-items { flex-direction: column; gap: 8px; }
}

/* ── FOOTER ── */
footer { border-top:1px solid rgba(255,255,255,.08); padding:56px 40px 36px; position:relative; z-index:1; }
.ft-top { max-width:var(--col); margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; margin-bottom:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.08); }
.ft-brand { font-family:var(--en); font-size:16px; font-weight:800; letter-spacing:-.03em; color:#fff; margin-bottom:6px; }
.ft-brand b { color:var(--gold-2); }
.ft-sub { font-family:var(--en); font-size:9px; font-weight:600; letter-spacing:.14em; color:rgba(247,248,251,.38); margin-bottom:12px; }
.ft-desc { font-size:12px; font-weight:400; color:rgba(247,248,251,.46); line-height:1.78; }
.ft-col-h { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(247,248,251,.38); margin-bottom:14px; }
.ft-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.ft-col ul a { font-size:13px; font-weight:400; color:rgba(247,248,251,.48); text-decoration:none; transition:color .18s; }
.ft-col ul a:hover { color:#fff; }
.ft-bottom { max-width:var(--col); margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.ft-copy { font-family:var(--en); font-size:11px; color:rgba(247,248,251,.32); }
.ft-hk { font-family:var(--en); font-size:11px; color:rgba(247,248,251,.32); }
.ft-hk b { color:var(--gold-2); }

/* ── ANIM ── */
@keyframes up { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.reveal { opacity:0; transform:translateY(14px); transition:opacity .65s ease, transform .65s ease; }
.reveal.in { opacity:1; transform:none; }
.d1 { transition-delay:.07s; } .d2 { transition-delay:.14s; } .d3 { transition-delay:.21s; }

/* ── RESPONSIVE ── */

@media(max-width:860px){
  nav { padding:0 20px; height:60px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .nav-mobile { top:60px; }
  #hero { padding-top:100px; }
  .hero-meta { gap:10px; }
  .hm { min-width:calc(50% - 8px); }
  .cd-inner { flex-wrap:wrap; justify-content:center; }
  .cd-status { width:100%; margin-left:0; padding:18px 0 24px; justify-content:center; }
  .cd-u { padding:22px 22px; }
  .section { padding:92px 20px; }
  #cta { padding:96px 20px; }
  .about-grid, .about-2col, .venue-wrap { grid-template-columns:1fr; }
  .out-grid { grid-template-columns:1fr; }
  .program-shell { padding:18px; }
  .tl-item { grid-template-columns:1fr; gap:4px; }
  .tl-time { padding-bottom:0; }
  footer { padding:44px 20px 28px; }
  .ft-top { grid-template-columns:1fr; gap:28px; }
  .ft-bottom { flex-direction:column; gap:6px; }
}
@media(max-width:980px){
  .about-grid, .about-2col, .venue-wrap { grid-template-columns:1fr; }
  .about-2col { gap:28px; }
  .out-grid { grid-template-columns:1fr; }
  .program-shell { padding:18px; }
  .tl-item { grid-template-columns:1fr; gap:4px; }
  .tl-time { padding-bottom:0; }
}

/* ── FOOTER FULL ── */
footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 40px 36px;
  position: relative; z-index: 1;
}
.ft-inner {
  max-width: var(--col);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ft-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-brand-block {}
.ft-brand {
  font-family: var(--kr); font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 4px; letter-spacing: -.01em;
}
.ft-brand-logo { display: block; height: 20px; width: auto; margin-bottom: 4px; }
.ft-brand-sub {
  font-family: var(--en); font-size: 9px; font-weight: 600;
  letter-spacing: .14em; color: rgba(247,248,251,.35);
}
.ft-contact {
  display: flex; flex-direction: column; gap: 5px; text-align: right;
}
.ft-contact-item {
  font-family: var(--kr); font-size: 12px; font-weight: 400;
  color: rgba(247,248,251,.52); display: flex; align-items: center;
  gap: 6px; justify-content: flex-end;
}
.ft-contact-item b { color: rgba(247,248,251,.35); font-weight: 500; font-size: 10px; letter-spacing: .05em; }
.ft-biz {
  display: flex; flex-wrap: wrap; gap: 6px 20px;
  font-family: var(--kr); font-size: 11px; font-weight: 300;
  color: rgba(247,248,251,.32); line-height: 1.7;
}
.ft-biz span { white-space: nowrap; }
.ft-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ft-copy {
  font-family: var(--en); font-size: 11px; font-weight: 300;
  color: rgba(247,248,251,.28);
}
.ft-links { display: flex; gap: 16px; }
.ft-links a {
  font-family: var(--kr); font-size: 11px; font-weight: 400;
  color: rgba(247,248,251,.40); text-decoration: none;
  transition: color .18s;
}
.ft-links a:hover { color: rgba(247,248,251,.75); }

.hero-mouse-glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,48,.22) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(8px);
  transition: opacity .4s;
  opacity: 0;
  z-index: 0;
}
@property --beam-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.btn-fill-beam {
  position: relative;
  height: 54px; padding: 0 32px;
  display: inline-flex; align-items: center;
  color: #0b1016;
  background: linear-gradient(180deg, #f6e3bc 0%, #ddb96b 100%);
  border-radius: 999px;
  font-family: var(--en); font-size: 14px; font-weight: 700;
  letter-spacing: -.01em; text-decoration: none;
  box-shadow: 0 14px 34px rgba(221,185,107,.28), inset 0 1px 0 rgba(255,255,255,.5);
  overflow: hidden;
  isolation: isolate;
}
.btn-fill-beam::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 70%,
    rgba(255,255,255,.9) 80%,
    rgba(255,255,255,1) 85%,
    rgba(255,255,255,.9) 90%,
    transparent 100%
  );
  animation: beam-spin 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 2px;
}
@keyframes beam-spin { to { --beam-angle: 360deg; } }

.cta-box-beam {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-box-beam::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 65%,
    rgba(200,160,48,.6) 75%,
    rgba(255,230,140,.95) 80%,
    rgba(200,160,48,.6) 85%,
    transparent 100%
  );
  animation: beam-spin 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}

.hero-theme {
  font-family: var(--kr);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff5cc;
  margin-bottom: 48px;
  opacity: 0;
  animation: up .8s .2s ease forwards;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,7,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal {
  background: #0f1420;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  width: 100%; max-width: 520px;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(247,248,251,.6);
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  font-family: var(--en);
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,.12); color: #fff; }

.modal-eye {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.modal-title {
  font-family: var(--en); font-size: 24px; font-weight: 700;
  letter-spacing: -.02em; color: #fff;
  margin-bottom: 6px;
}
.modal-sub {
  font-family: var(--kr); font-size: 13px; font-weight: 400;
  color: rgba(247,248,251,.5); line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--en); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247,248,251,.45); margin-bottom: 7px;
}
.form-input, .form-select {
  width: 100%; height: 46px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 0 16px;
  font-family: var(--kr); font-size: 14px; font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(247,248,251,.28); }
.form-input:focus, .form-select:focus {
  border-color: rgba(200,160,48,.55);
  background: rgba(255,255,255,.07);
}
.form-select { cursor: pointer; }
.form-select option { background: #0f1420; color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px; margin-bottom: 24px;
}
.form-check input[type=checkbox] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold); cursor: pointer;
}
.form-check-label {
  font-family: var(--kr); font-size: 12px; font-weight: 400;
  color: rgba(247,248,251,.45); line-height: 1.65;
}
.form-check-label a { color: var(--gold); text-decoration: underline; }

.modal-submit {
  width: 100%; height: 50px;
  background: linear-gradient(180deg, #f6e3bc 0%, #ddb96b 100%);
  color: #0b1016;
  font-family: var(--en); font-size: 14px; font-weight: 700;
  letter-spacing: -.01em;
  border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 10px 28px rgba(221,185,107,.25), inset 0 1px 0 rgba(255,255,255,.45);
  transition: opacity .2s, transform .15s;
  position: relative; overflow: hidden;
}
.modal-submit:hover { opacity: .9; transform: translateY(-1px); }
.modal-submit::before {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit;
  background: conic-gradient(from var(--beam-angle), transparent 70%, rgba(255,255,255,.8) 80%, rgba(255,255,255,1) 85%, rgba(255,255,255,.8) 90%, transparent 100%);
  animation: beam-spin 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}

/* ── PAYMENT BLOCK (in modal) ── */
.pay-section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.pay-section-eye {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.pay-summary {
  background: rgba(19,208,145,.045);
  border: 1px solid rgba(19,208,145,.18);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.pay-summary-title {
  font-family: var(--kr); font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: -.01em; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.pay-summary-tier {
  font-family: var(--en); font-size: 9px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(19,208,145,.18); color: #c8f3e0;
}
.pay-summary-rows { display: flex; flex-direction: column; gap: 8px; }
.pay-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--kr); font-size: 13px;
  color: rgba(247,248,251,.7);
}
.pay-summary-row .v { color: #fff; font-weight: 500; font-family: var(--en); }
.pay-summary-total {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,.14);
  display: flex; justify-content: space-between; align-items: baseline;
}
.pay-summary-total .l {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247,248,251,.55);
}
.pay-summary-total .v {
  font-family: var(--en); font-size: 26px; font-weight: 800;
  letter-spacing: -.03em; color: #fff;
}
.pay-summary-total .v small {
  font-family: var(--kr); font-size: 12px; font-weight: 500;
  color: rgba(247,248,251,.55); margin-left: 6px;
}

.pay-method-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 16px;
}
.pay-method-card {
  position: relative;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.pay-method-card:hover { border-color: rgba(255,255,255,.18); }
.pay-method-card input[type=radio] {
  position: absolute; opacity: 0; pointer-events: none;
}
.pay-method-card .pmc-eye {
  font-family: var(--en); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,248,251,.45); margin-bottom: 4px;
}
.pay-method-card .pmc-t {
  font-family: var(--kr); font-size: 14px; font-weight: 600;
  color: #fff; letter-spacing: -.01em;
}
.pay-method-card .pmc-s {
  font-family: var(--kr); font-size: 11px; font-weight: 400;
  color: rgba(247,248,251,.5); margin-top: 4px;
}
.pay-method-card.is-checked {
  border-color: rgba(221,185,107,.55);
  background: linear-gradient(180deg, rgba(221,185,107,.10), rgba(221,185,107,.025));
}
.pay-method-card.is-checked .pmc-eye { color: var(--gold-2); }

.pay-conditional {
  display: none;
  margin-top: 4px; padding: 18px;
  border-radius: 12px;
  background: rgba(108,180,255,.04);
  border: 1px solid rgba(108,180,255,.18);
}
.pay-conditional.show { display: block; }
.pay-conditional .bank-info {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(108,180,255,.08);
  border: 1px solid rgba(108,180,255,.22);
}
.pay-conditional .bank-info-pill {
  font-family: var(--kr); font-size: 11px; font-weight: 600;
  color: #bad4ef; padding: 4px 9px; border-radius: 6px;
  background: rgba(108,180,255,.14); flex-shrink: 0;
}
.pay-conditional .bank-info-num {
  font-family: var(--en); font-size: 16px; font-weight: 700;
  color: #fff; letter-spacing: -.005em; line-height: 1.1;
}
.pay-conditional .bank-info-num small {
  display: block; font-family: var(--kr); font-size: 11px;
  font-weight: 400; color: rgba(247,248,251,.5); margin-top: 2px;
}

.tax-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; margin-top: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.tax-toggle-row .t-label {
  font-family: var(--kr); font-size: 13px; font-weight: 500;
  color: #fff;
}
.tax-toggle-row .t-sub {
  display: block;
  font-family: var(--kr); font-size: 11px; font-weight: 400;
  color: rgba(247,248,251,.5); margin-top: 3px;
}
.tax-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.tax-switch input { opacity: 0; width: 0; height: 0; }
.tax-switch .slider {
  position: absolute; inset: 0; cursor: pointer;
  background: rgba(255,255,255,.10);
  border-radius: 999px; transition: background .2s;
}
.tax-switch .slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff; border-radius: 50%;
  transition: transform .2s;
}
.tax-switch input:checked + .slider { background: var(--gold); }
.tax-switch input:checked + .slider::before { transform: translateX(18px); }

.tax-fields {
  display: none;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.10);
}
.tax-fields.show { display: block; }

.file-upload-row {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 14px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-upload-row:hover { border-color: rgba(221,185,107,.4); background: rgba(255,255,255,.07); }
.file-upload-row input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-row .fu-icon {
  font-family: var(--en); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--gold-2);
  padding: 4px 8px; border-radius: 6px;
  background: rgba(19,208,145,.12);
  border: 1px solid rgba(19,208,145,.22);
  flex-shrink: 0;
}
.file-upload-row .fu-txt {
  font-family: var(--kr); font-size: 13px;
  color: rgba(247,248,251,.55); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-upload-row.has-file .fu-txt { color: #fff; }
.file-hint {
  font-family: var(--kr); font-size: 11px;
  color: rgba(247,248,251,.4); margin-top: 6px;
}
.subsec-title {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,248,251,.45);
  margin: 16px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.subsec-title:first-child { margin-top: 0; }

/* ── 추가 참석자 ── */
.attendees-section {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.attendees-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.attendees-head .ah-l {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-2);
}
.attendees-head .ah-count {
  font-family: var(--en); font-size: 11px; font-weight: 600;
  color: rgba(247,248,251,.55); letter-spacing: -.005em;
}
.attendees-help {
  font-family: var(--kr); font-size: 12px; font-weight: 400;
  color: rgba(247,248,251,.5); line-height: 1.65;
  margin-bottom: 14px;
}
.attendee-list { display: flex; flex-direction: column; gap: 12px; }
.attendee-empty {
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 12px;
  text-align: center;
  font-family: var(--kr); font-size: 12px;
  color: rgba(247,248,251,.45);
}
.attendee-card {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.10);
}
.attendee-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.attendee-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2);
}
.attendee-num .num-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(19,208,145,.16);
  border: 1px solid rgba(19,208,145,.32);
  color: #c8f3e0; font-family: var(--en); font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.attendee-remove {
  background: transparent; border: 1px solid rgba(255,255,255,.10);
  color: rgba(247,248,251,.55);
  font-family: var(--kr); font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  cursor: pointer; transition: color .15s, border-color .15s, background .15s;
}
.attendee-remove:hover {
  color: #ffb3b3; border-color: rgba(255,140,140,.35);
  background: rgba(255,140,140,.06);
}
.attendee-card .form-row { margin-bottom: 10px; }
.attendee-card .form-row:last-child { margin-bottom: 0; }
.attendee-card .form-group { margin-bottom: 0; }

.btn-add-attendee {
  width: 100%; height: 42px; margin-top: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px dashed rgba(221,185,107,.4);
  background: rgba(221,185,107,.04);
  color: var(--gold-2);
  font-family: var(--en); font-size: 12px; font-weight: 600;
  letter-spacing: -.005em;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.btn-add-attendee:hover {
  border-color: rgba(221,185,107,.7);
  background: rgba(221,185,107,.08);
  color: #f6e1b4;
}
.btn-add-attendee:disabled {
  opacity: .4; cursor: not-allowed;
}
.btn-add-attendee .plus { font-size: 16px; font-weight: 700; line-height: 1; }

/* 완료 상태 */
.modal-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 16px;
  padding: 20px 0;
}
.modal-success.show { display: flex; }
.modal-form-wrap.hide { display: none; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(200,160,48,.15);
  border: 1px solid rgba(200,160,48,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.success-title {
  font-family: var(--en); font-size: 20px; font-weight: 700;
  color: #fff; letter-spacing: -.02em;
}
.success-sub {
  font-family: var(--kr); font-size: 13px; color: rgba(247,248,251,.5);
  line-height: 1.7;
}

.req { color: var(--gold); font-size: 11px; }
.check-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px;
  margin-top: 8px;
}
.check-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--kr); font-size: 12px; font-weight: 400;
  color: rgba(247,248,251,.62); cursor: pointer;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  transition: border-color .15s, background .15s;
}
.check-item:hover { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.03); }
.check-item input { accent-color: var(--gold); flex-shrink: 0; }
.agree-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 16px;
}
.agree-title {
  font-family: var(--en); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(247,248,251,.6); margin-bottom: 10px;
}
.agree-body {
  font-family: var(--kr); font-size: 11.5px; font-weight: 300;
  color: rgba(247,248,251,.38); line-height: 1.75;
  margin-bottom: 12px;
  max-height: 100px; overflow-y: auto;
}
.agree-body::-webkit-scrollbar { width: 3px; }
.agree-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.agree-body a { color: var(--gold); text-decoration: underline; }
.agree-body b { color: rgba(247,248,251,.6); font-weight: 500; }
.agree-check {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--kr); font-size: 12.5px; font-weight: 500;
  color: rgba(247,248,251,.72); cursor: pointer;
}
.agree-check input { accent-color: var(--gold); }
/* 모달 스크롤 */
.modal {
  max-height: 90svh;
  overflow-y: auto;
}
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 2px; }

/* ── 참가 확인 모달 ── */
#confirm-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,7,10,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
#confirm-overlay.open { opacity: 1; pointer-events: all; }
#confirm-overlay .modal { transform: translateY(20px); transition: transform .35s cubic-bezier(.25,.46,.45,.94); }
#confirm-overlay.open .modal { transform: translateY(0); }

/* 신청 완료 카드 */
.success-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
  margin-top: 4px;
  display: flex; flex-direction: column; gap: 12px;
}
.success-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: var(--kr); font-size: 13px;
}
.success-card-row:last-child { border-bottom: none; }
.sc-key { color: rgba(247,248,251,.45); }
.sc-val { color: #fff; font-weight: 500; }
.sc-val.reg-num {
  font-family: var(--en); font-size: 18px; font-weight: 700;
  color: var(--gold); letter-spacing: .08em;
}

.confirm-input-wrap { display: flex; gap: 8px; margin-top: 8px; }
.confirm-input-wrap .form-input { flex: 1; }
.btn-confirm-search {
  height: 46px; padding: 0 20px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; cursor: pointer;
  font-family: var(--en); font-size: 12px; font-weight: 600;
  color: var(--off); transition: background .2s;
  white-space: nowrap;
}
.btn-confirm-search:hover { background: rgba(255,255,255,.14); }
.confirm-result {
  display: none; margin-top: 16px;
}
.confirm-result.show { display: block; }
.confirm-not-found {
  text-align: center; padding: 20px;
  font-family: var(--kr); font-size: 13px;
  color: rgba(247,248,251,.4);
}
.modal-tab-wrap {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; overflow: hidden; margin-bottom: 24px;
}
.modal-tab {
  flex: 1; padding: 11px 0; text-align: center;
  font-family: var(--en); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(247,248,251,.4);
  background: transparent; border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.modal-tab.active {
  background: rgba(255,255,255,.07);
  color: var(--off);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* 확인 버튼 (네비/CTA 등) */
.btn-confirm-open {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-family: var(--en); font-size: 11px; font-weight: 500;
  color: rgba(247,248,251,.65); background: transparent;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-confirm-open:hover { border-color: rgba(255,255,255,.3); color: var(--off); }

#hero {
  background: none;
}
#hero::before, #hero::after {
  display: none;
}
.kv {
  display: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/assets/gdf2026/hero_bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}
/* 텍스트 가독성 위해 하단 그라디언트 오버레이 */
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,8,10,.35) 0%, rgba(7,8,10,.0) 30%, rgba(7,8,10,.0) 50%, rgba(7,8,10,.85) 85%, rgba(7,8,10,1) 100%),
    linear-gradient(to right, rgba(7,8,10,.6) 0%, rgba(7,8,10,.0) 40%, rgba(7,8,10,.0) 60%, rgba(7,8,10,.6) 100%);
}
/* hero dots bl도 이미지 위에 살짝 */
.hero-dots-bl { z-index: 1; }
.hero-badge, .hero-h1, .hero-theme, .hero-meta, .hero-btns, .hero-note, .hero-orgs, .hero-mouse-glow { position: relative; z-index: 1; }

/* ══════════════════════
   REGISTRATION / PRICING
   ══════════════════════ */
#pricing { padding-top:140px; padding-bottom:140px; }
.price-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:18px;
  max-width:1040px; margin:0 auto 26px;
}
.price-card {
  position:relative; padding:30px 28px 28px;
  border-radius:20px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  display:flex; flex-direction:column; gap:14px;
  transition:border-color .25s, transform .25s, background .25s;
}
.price-card:hover { border-color:rgba(255,255,255,.18); transform:translateY(-2px); background:rgba(255,255,255,.05); }
.price-card.is-early {
  border-color:rgba(19,208,145,.32);
  background:linear-gradient(180deg, rgba(19,208,145,.06), rgba(19,208,145,.015));
  box-shadow:0 18px 50px rgba(19,208,145,.08);
}
.price-tag-row { display:flex; align-items:center; justify-content:space-between; }
.price-eye { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:rgba(247,248,251,.5); }
html[lang="en"] #pricing .price-eye { display: none; }
.price-card.is-early .price-eye { color:var(--gold-2); }
.price-badge {
  display:inline-block; padding:3px 8px; border-radius:999px;
  background:linear-gradient(180deg,#f6e1b4 0%,#ddb96b 100%);
  color:#0a0f15; font-family:var(--en); font-size:9px; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
}
.price-name { font-family:var(--kr); font-size:20px; font-weight:700; color:var(--text); letter-spacing:-.02em; }
.price-limit {
  display:inline-flex; align-items:center; gap:8px;
  width:max-content; max-width:100%;
  padding:5px 10px; border-radius:999px;
  background:rgba(255,140,40,.10);
  border:1px solid rgba(255,140,40,.24);
  color:#ffd2aa;
  font-family:var(--kr); font-size:12px; font-weight:700;
}
.price-limit::before { content:''; width:5px; height:5px; border-radius:50%; background:#ff8c28; box-shadow:0 0 8px rgba(255,140,40,.65); flex-shrink:0; }
.price-deadline { display:flex; align-items:baseline; gap:8px; margin-top:-4px; }
.price-deadline-l { font-family:var(--en); font-size:9px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(247,248,251,.42); }
.price-deadline-v { font-family:var(--en); font-size:13px; font-weight:600; color:var(--text-soft); letter-spacing:-.01em; }
.price-deadline-stack { display:flex; flex-direction:column; gap:4px; line-height:1.35; }
.price-amount { display:flex; align-items:baseline; gap:6px; margin-top:auto; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
.price-amount-num { font-family:var(--en); font-size:36px; font-weight:800; letter-spacing:-.04em; color:#fff; line-height:1; }
.price-amount-unit { font-family:var(--kr); font-size:13px; font-weight:500; color:rgba(247,248,251,.55); }
.price-card.is-early .price-amount-num { color:#fff; }
.price-note { font-family:var(--kr); font-size:12px; font-weight:500; color:rgba(247,248,251,.72); line-height:1.5; margin-top:-6px; }
.price-grid-foot {
  max-width:1040px; margin:0 auto 26px;
  padding:14px 22px; border-radius:14px;
  background:rgba(19,208,145,.06); border:1px solid rgba(19,208,145,.18);
  font-family:var(--kr); font-size:13px; font-weight:500; color:#a7ecd2; letter-spacing:.005em;
  display:flex; align-items:center; gap:10px;
}
.price-grid-foot .gift-mark { font-family:var(--en); font-size:9px; font-weight:800; letter-spacing:.16em; padding:3px 8px; border-radius:999px; background:rgba(19,208,145,.18); color:#c8f3e0; flex-shrink:0; }

.pay-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap:18px;
  max-width:1040px; margin:80px auto 0;
}
html[lang="en"] [data-en-bank-hidden] { grid-template-columns: 1fr !important; max-width: 560px; }
html[lang="en"] [data-en-bank-hidden] > :nth-child(2) { display: none !important; }
.pay-card {
  padding:32px;
  border-radius:20px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  display:flex; flex-direction:column; gap:18px;
}
.pay-eye { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-2); }
.pay-title { font-family:var(--kr); font-size:18px; font-weight:700; color:#fff; letter-spacing:-.02em; }
.pay-divider { height:1px; background:rgba(255,255,255,.08); margin:2px 0; }
.bank-row { display:flex; flex-direction:column; gap:10px; }
.bank-pill {
  display:inline-flex; align-items:center; gap:10px; align-self:flex-start;
  padding:6px 12px; border-radius:8px;
  background:rgba(108,180,255,.10); border:1px solid rgba(108,180,255,.22);
  font-family:var(--kr); font-size:12px; font-weight:600; color:#bad4ef;
}
.bank-num { font-family:var(--en); font-size:22px; font-weight:700; color:#fff; letter-spacing:-.01em; }
.bank-holder { font-family:var(--kr); font-size:13px; font-weight:400; color:rgba(247,248,251,.6); }
.pay-steps { display:flex; flex-direction:column; gap:10px; }
.pay-step { display:flex; gap:12px; align-items:flex-start; }
.pay-step-n { font-family:var(--en); font-size:10px; font-weight:800; letter-spacing:.04em; color:var(--gold-2); flex-shrink:0; width:22px; padding-top:2px; }
.pay-step-t { font-family:var(--kr); font-size:13px; font-weight:400; color:var(--text-soft); line-height:1.65; }
.pay-step-t b { color:#fff; font-weight:600; }

.notice-card {
  max-width:1040px; margin:18px auto 0;
  padding:24px 28px;
  border-radius:16px;
  background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.08);
}
.notice-title { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:rgba(247,248,251,.5); margin-bottom:12px; }
.notice-list { list-style:none; display:flex; flex-direction:column; gap:8px; }
.notice-list li { font-family:var(--kr); font-size:13px; font-weight:400; color:var(--text-soft); line-height:1.7; padding-left:14px; position:relative; }
.notice-list li::before { content:''; position:absolute; left:2px; top:9px; width:4px; height:4px; border-radius:50%; background:rgba(247,248,251,.4); }

.refund-block { max-width:1040px; margin:80px auto 0; }
html[lang="en"] #pricing .pay-grid,
html[lang="en"] #pricing .notice-card,
html[lang="en"] #pricing .refund-block { display:none !important; }
.refund-grid { display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.refund-card {
  padding:26px 28px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.035);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
}
.refund-card.is-ok { border-color:rgba(19,208,145,.28); background:linear-gradient(180deg, rgba(19,208,145,.05), rgba(19,208,145,.012)); }
.refund-card.is-no { border-color:rgba(255,140,140,.22); background:linear-gradient(180deg, rgba(255,140,140,.04), rgba(255,140,140,.01)); }
.refund-eye { font-family:var(--en); font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; margin-bottom:10px; }
.refund-card.is-ok .refund-eye { color:var(--gold-2); }
.refund-card.is-no .refund-eye { color:#ffb3b3; }
.refund-pct { font-family:var(--en); font-size:32px; font-weight:800; letter-spacing:-.03em; line-height:1; margin-bottom:6px; }
.refund-card.is-ok .refund-pct { color:#fff; }
.refund-card.is-no .refund-pct { color:#fff; }
.refund-when { font-family:var(--kr); font-size:14px; font-weight:500; color:var(--text-soft); line-height:1.6; }
.refund-when b { color:#fff; font-weight:600; }
.refund-when small { display:block; font-size:12px; color:rgba(247,248,251,.5); margin-top:4px; }

@media (max-width: 820px) {
  .price-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .refund-grid { grid-template-columns: 1fr; }
}

.gdf-prereg-overlay {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3,8,14,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px;
}
.gdf-prereg-overlay.open {
  display: flex;
}
.gdf-prereg-dialog {
  width: min(720px, 100%);
  height: min(92svh, 900px);
  border: 1px solid rgba(246,200,99,.34);
  background: #0c1218;
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.gdf-prereg-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #0c1218;
  color: #f7f8fb;
}
.gdf-prereg-kicker {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #5ce8bc;
  margin-bottom: 4px;
}
.gdf-prereg-bar h2 {
  margin: 0;
  font-family: var(--kr);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}
.gdf-prereg-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}
.gdf-prereg-close:hover {
  background: rgba(255,255,255,.12);
}
.gdf-prereg-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0d0f11;
  flex: 1;
}
@media (max-width: 640px) {
  .gdf-prereg-overlay {
    padding: 0;
  }
  .gdf-prereg-dialog {
    width: 100%;
    height: 100svh;
    border: 0;
  }
  .gdf-prereg-bar {
    padding: 12px 14px;
  }
  .gdf-prereg-bar h2 {
    font-size: 16px;
  }
}

.gdf-legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3,8,14,.76);
}
.gdf-legal-overlay.is-open { display: flex; }
.gdf-legal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(78vh, 760px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(246,200,99,.34);
  background: #0c1218;
  color: #f7f8fb;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.gdf-legal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.gdf-legal-close:hover { background: rgba(255,255,255,.12); }
.gdf-legal-kicker {
  margin-bottom: 8px;
  color: #5ce8bc;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.gdf-legal-dialog h2 {
  margin: 0 44px 18px 0;
  font-family: var(--kr);
  font-size: 28px;
  line-height: 1.2;
}
.gdf-legal-content section { margin: 0 0 18px; }
.gdf-legal-content h3 {
  margin: 0 0 8px;
  color: #f6c863;
  font-family: var(--kr);
  font-size: 16px;
}
.gdf-legal-content p,
.gdf-legal-content li {
  color: rgba(247,248,251,.82);
  font-family: var(--kr);
  font-size: 14px;
  line-height: 1.75;
}
.gdf-legal-content ol,
.gdf-legal-content ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.gdf-legal-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.gdf-legal-meta {
  color: rgba(247,248,251,.58) !important;
  font-size: 12px;
}
@media (max-width: 640px) {
  .gdf-legal-dialog { padding: 24px 18px; }
  .gdf-legal-dialog h2 { font-size: 22px; }
}

.gdf-site-popup-stack {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.gdf-site-popup {
  position: absolute;
  top: var(--popup-top, 40px);
  left: var(--popup-left, 40px);
  width: min(var(--popup-width, 520px), calc(100vw - 32px));
  max-height: calc(100svh - var(--popup-top, 40px) - 16px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(10,15,21,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  color: #fff;
  pointer-events: auto;
}

.gdf-site-popup.has-fixed-height .gdf-site-popup-image-wrap {
  height: var(--popup-height, auto);
}

.gdf-site-popup-image-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.gdf-site-popup-image-link {
  display: block;
  width: 100%;
}

.gdf-site-popup img,
.gdf-site-popup-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gdf-site-popup.has-fixed-height .gdf-site-popup-image {
  height: 100%;
  max-height: none;
}

.gdf-site-popup-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gdf-site-popup-hotspot-button {
  padding: 0;
}

.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;
}

.gdf-site-popup-body {
  padding: 24px;
}

.gdf-site-popup-body h2 {
  margin: 0;
  font-family: var(--kr);
  font-size: 24px;
  line-height: 1.25;
}

.gdf-site-popup-body p {
  margin: 12px 0 0;
  color: rgba(247,248,251,.72);
  font-family: var(--kr);
  font-size: 15px;
  line-height: 1.7;
}

.gdf-site-popup-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg,#a0f4dc 0%,#13D091 100%);
  color: #07100d;
  font-weight: 800;
}

.gdf-site-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gdf-site-popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0b1016;
}

.gdf-site-popup-footer label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247,248,251,.62);
  font-family: var(--kr);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.gdf-site-popup-footer input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.gdf-site-popup-footer-close {
  min-width: 58px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(247,248,251,.88);
  font-family: var(--kr);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.gdf-site-popup-footer-close:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

@media (max-width: 640px) {
  .gdf-site-popup {
    top: 16px;
    left: 16px;
  }
  .gdf-site-popup-footer {
    padding: 9px 12px;
  }
}

/* ── PUBLIC MOBILE LAYOUT OVERRIDES ── */
@media (max-width: 860px) {
  :root { --pad: 18px; }

  nav {
    height: 60px;
    padding: 0 18px;
    background: rgba(10,15,21,.88);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom-color: rgba(255,255,255,.10);
  }
  .nav-brand img { height: 18px; max-width: min(220px, 58vw); }
  .nav-links { display: none; }
  #lang-toggle { display: none; }
  .nav-hamburger {
    display: flex;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    align-items: center;
  }
  .nav-hamburger span { width: 24px; height: 2px; background: rgba(247,248,251,.86); }
  .nav-mobile {
    top: 60px;
    padding: 10px 0 18px;
    box-shadow: 0 18px 42px rgba(0,0,0,.30);
  }
  .nav-mobile.open {
    display: flex;
  }
  .nav-mobile a {
    padding: 15px 22px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(247,248,251,.86);
  }

  #hero {
    min-height: auto;
    padding: 96px 18px 58px;
    justify-content: flex-start;
    background-position: center top;
  }
  .hero-badge {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 9px 14px;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .12em;
    white-space: normal;
  }
  .hero-h1 {
    max-width: 360px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
    word-break: keep-all;
  }
  html[lang="en"] .hero-h1 {
    font-size: 32px;
    line-height: 1.16;
  }
  .hero-theme {
    max-width: 340px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.45;
    word-break: keep-all;
  }
  .hero-meta {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 26px;
  }
  .hm {
    min-width: 0;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .hm-v { font-size: 13px; line-height: 1.45; }
  .hero-btns {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    gap: 10px;
  }
  .btn-fill,
  .btn-out {
    width: 100%;
    height: 50px;
    justify-content: center;
    padding: 0 18px;
  }
  .hero-note {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-top: 22px;
    line-height: 1.5;
  }
  .hero-note-sep { display: none; }
  .hero-sponsors {
    width: 100%;
    max-width: 360px;
  }

  .cd-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 16px 14px;
  }
  .cd-u {
    padding: 16px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .cd-u:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .cd-n { font-size: 34px; }
  .cd-status {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    padding: 14px 0 2px;
    justify-content: center;
  }

  .section,
  #pricing,
  #cta {
    padding: 72px 18px;
  }
  .s-eye {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .18em;
  }
  .s-h2,
  .about-header .s-h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 14px;
  }
  .s-lead,
  .about-header .s-lead {
    margin-bottom: 38px;
    font-size: 15px;
    line-height: 1.72;
  }
  .about-2col,
  .about-grid,
  .venue-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-header { padding-left: 0; }
  .about-panel,
  .info-panel {
    padding: 22px;
    border-radius: 18px;
  }
  .about-body { font-size: 14px; line-height: 1.78; }
  .ir {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
  }
  .ik { width: auto; }
  .iv-sponsors { align-items: flex-start; }

  .program-shell {
    padding: 14px;
    border-radius: 18px;
  }
  .program-notice {
    padding: 12px;
    border-radius: 12px;
  }
  .program-notice-item {
    width: 100%;
    align-items: flex-start;
    border-radius: 12px;
    padding: 10px;
  }
  .tl-period {
    gap: 10px;
    margin: 28px 0 8px;
  }
  .tl-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }
  .tl-time {
    width: auto;
    padding-right: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
  }
  .tl-time-big { font-size: 24px; }
  .tl-divider { display: none; }
  .tl-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tl-body-left,
  .tl-tag-col {
    width: 100%;
  }
  .tl-prog {
    font-size: 15px;
    line-height: 1.45;
  }
  .tl-spk {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .tl-spk-row {
    flex-direction: column;
    gap: 6px;
  }
  .tl-spk-text .spk-name,
  .tl-spk .spk-name {
    display: block;
    margin-right: 0;
    margin-bottom: 2px;
  }
  .tl-spk-text .org-sep {
    display: none;
  }
  .tl-tag {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
  }

  .out-grid {
    flex-direction: column;
    border-radius: 18px;
  }
  .oc {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    padding: 24px 22px;
  }
  .oc:last-child { border-bottom: 0; }

  .price-grid,
  .pay-grid,
  .refund-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pay-grid,
  .refund-block {
    margin-top: 42px;
  }
  .price-card,
  .pay-card,
  .notice-card,
  .refund-card {
    padding: 22px;
    border-radius: 16px;
  }
  .price-tag-row,
  .price-deadline,
  .price-amount,
  .price-grid-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-amount-num { font-size: 32px; }
  .bank-num {
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .venue-map {
    min-height: 280px;
    border-radius: 18px;
  }
  .vrows {
    padding: 10px 20px;
    border-radius: 18px;
  }

  .cta-h {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: 0;
  }
  .cta-sub {
    font-size: 15px;
    line-height: 1.75;
  }
  .cta-btns {
    flex-direction: column;
  }
  .cta-box {
    padding: 22px;
    border-radius: 18px;
  }
  .cta-contact-strip {
    border-radius: 16px;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }
  .cta-contact-strip .ccs-divider { display: none; }
  .cta-contact-strip .ccs-items {
    flex-direction: column;
    gap: 8px;
  }

  footer {
    padding: 42px 18px 30px;
  }
  .ft-top,
  .ft-top-row,
  .ft-bottom,
  .ft-bottom-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (max-width: 390px) {
  :root { --pad: 16px; }
  nav { padding: 0 16px; }
  .nav-brand img { max-width: 205px; }
  .hero-h1 { font-size: 36px; }
  html[lang="en"] .hero-h1 { font-size: 29px; }
  .s-h2,
  .about-header .s-h2,
  .cta-h { font-size: 31px; }
  .price-card,
  .pay-card,
  .notice-card,
  .refund-card,
  .about-panel,
  .info-panel {
    padding: 18px;
  }
}
