/* AX:REAL 2026 — 디자인 시스템
   종이 흰색 + 쿨 데이라이트 워시 + 잉크 네이비 + 웍스AI 브랜드 블루(#3182F6) 단일 강조
   프로그램 타임라인이 핵심 비주얼 */
:root {
  --paper: #ffffff;
  --wash: #f2f6fb;
  --ink: #0b1526;
  --body: #26324a;
  --muted: #5b6b82;
  --line: #d9e2ef;
  --brand: #3182f6;
  --brand-deep: #1b64da;
  --danger: #d43d3d;
  --ok: #0a8f5b;
  --radius: 14px;
  --maxw: 1080px;
}
[hidden] { display: none !important; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Pretendard Variable', Pretendard, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--ink); letter-spacing: -0.02em; margin: 0 0 12px; word-break: keep-all; overflow-wrap: break-word; }
h2 { font-size: 34px; font-weight: 750; }
h3 { font-size: 19px; font-weight: 700; }
p { margin: 0 0 10px; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 12px; cursor: pointer;
  font: inherit; font-weight: 650; text-decoration: none !important;
  padding: 12px 22px; font-size: 16px; transition: background .15s, border-color .15s;
  word-break: keep-all;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-ghost { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-deep); }
.btn-danger { background: #fff; color: var(--danger); border-color: #eecccc; }
.btn-danger:hover { background: #fdf3f3; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1c2a44; }
.btn-lg { padding: 16px 32px; font-size: 18px; border-radius: 14px; }
.btn-sm { padding: 8px 14px; font-size: 14.5px; border-radius: 10px; }
.btn-xs { padding: 4px 10px; font-size: 12.5px; border-radius: 8px; }
.btn-disabled { pointer-events: none; opacity: .45; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* ---------- 내비게이션 ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 0 20px; /* 본문 섹션과 같은 가로 여백 — 컨테이너 폭 통일 */
}
.nav-in { max-width: var(--maxw); margin: 0 auto; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { font-weight: 800; font-size: 17.5px; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--brand-deep); }
.brand-year { color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: var(--body); font-size: 15.5px; font-weight: 550; }
.nav-links a:hover { color: var(--brand-deep); text-decoration: none; }
.nav-cta { margin-left: 4px; }
/* 링크 색 규칙이 버튼 글자색을 덮지 않도록 — 파랑 배경 위 흰 글자 고정 */
.nav-links a.nav-cta { color: #fff; }
.nav-links a.nav-cta:hover { color: #fff; background: var(--brand-deep); }
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta):not(.nav-my) { display: none; }
}
@media (max-width: 480px) {
  .nav { padding: 0 14px; }
  .nav-in { gap: 8px; }
  .brand { font-size: 14.5px; }
  .nav-links { gap: 10px; }
  .nav-links .nav-my { font-size: 13.5px; }
  .nav-cta { padding: 8px 12px; }
}

/* ---------- 히어로 ---------- */
.hero { padding: 72px 20px 56px; }
.hero-in { max-width: var(--maxw); margin: 0 auto; }
.eyebrow { color: var(--brand-deep); font-weight: 700; font-size: 16px; letter-spacing: .02em; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.eyebrow-logo { height: 27px; width: auto; display: block; }
.hero-title {
  font-size: clamp(40px, 12vw, 128px); font-weight: 800; line-height: .95;
  letter-spacing: -0.04em; margin: 0 0 28px;
}
.hero-year { color: var(--brand); display: inline-block; margin-left: .18em; }
.hero-date { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.hero-date-num {
  font-size: clamp(38px, 9vw, 54px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em;
  font-feature-settings: 'tnum'; border-right: 3px solid var(--brand); padding-right: 20px; line-height: 1.05;
}
.hero-date-meta { display: flex; flex-direction: column; gap: 2px; color: var(--muted); font-weight: 600; font-size: 17px; }
.hero-lede { max-width: 600px; font-size: 19px; color: var(--body); margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }
.seat-left { color: var(--muted); font-size: 15.5px; font-weight: 600; font-feature-settings: 'tnum'; }
.hero-early { color: var(--brand-deep); font-size: 15.5px; font-weight: 700; font-feature-settings: 'tnum'; }


/* ---------- 섹션 ---------- */
.sec { padding: 76px 20px; }
.sec-wash { background: var(--wash); }
.sec-in { max-width: var(--maxw); margin: 0 auto; }
.sec-eyebrow { color: var(--brand-deep); font-weight: 750; font-size: 14px; letter-spacing: .14em; margin-bottom: 8px; }
.sec-note { color: var(--muted); font-size: 16px; margin-top: -6px; margin-bottom: 18px; }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 16px; margin-top: 26px; }
.about-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.about-card p { color: var(--body); font-size: 16px; margin: 0; }

/* ---------- 프로그램 ---------- */
.program { margin-top: 30px; }
.pg-row { display: grid; grid-template-columns: 104px 44px minmax(0, 1fr); gap: 0; padding: 18px 0; align-items: start; }
.pg-time { text-align: right; padding-right: 10px; font-feature-settings: 'tnum'; display: flex; flex-direction: column; }
.pg-time span { font-weight: 750; color: var(--ink); font-size: 17px; }
.pg-time .pg-time-end { font-weight: 550; color: var(--muted); font-size: 14px; }
.pg-dot { position: relative; display: flex; justify-content: center; padding-top: 5px; align-self: stretch; }
.pg-dot::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 3px; top: -18px; bottom: -18px; background: var(--line); }
.pg-row:first-child .pg-dot::before { top: 8px; }
.pg-row:last-child .pg-dot::before { bottom: auto; height: 26px; }
.pg-dot i { width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 3px solid var(--brand); display: block; position: relative; z-index: 1; }
.pg-break .pg-dot i { border-color: #9db2cc; }
.pg-party .pg-dot i { border-color: var(--ink); }
.pg-body h3 { margin-bottom: 6px; font-size: 20px; }
.pg-break .pg-body h3 { color: var(--muted); font-weight: 600; }
.pg-body p { color: var(--body); font-size: 16px; margin: 0; max-width: 660px; }
.pg-speakers { color: var(--brand-deep); font-size: 15px; font-weight: 650; margin-top: 6px; }
@media (max-width: 560px) {
  .pg-row { grid-template-columns: 76px 30px minmax(0, 1fr); }
}

/* ---------- 연사 ---------- */
.sp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr)); gap: 18px; margin-top: 26px; align-content: start; }
.sp-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.sp-photo { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin-bottom: 14px; background: var(--wash); }
.sp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-photo-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--brand-deep); font-weight: 800; font-size: 26px; background: #e3edfb; }
.sp-name { font-weight: 750; color: var(--ink); font-size: 18px; }
.sp-org { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.sp-bio { color: var(--body); font-size: 15px; margin: 0; }
.sp-coming { grid-column: 1 / -1; text-align: center; padding: 48px 20px; background: var(--paper); border: 1px dashed var(--line); border-radius: var(--radius); }
.sp-coming p { font-weight: 700; color: var(--ink); font-size: 19px; margin-bottom: 4px; }
.sp-coming-sub { color: var(--muted) !important; font-weight: 500 !important; font-size: 16px !important; }

/* ---------- 티켓 ---------- */
.ticket-card {
  margin-top: 26px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 32px;
  border: 1.5px solid var(--ink); border-radius: 18px; padding: 36px;
}
.ticket-kind { color: var(--brand-deep); font-weight: 800; font-size: 15px; letter-spacing: .04em; margin-bottom: 6px; }
.ticket-consulting .ticket-kind { color: var(--ink); }
.ticket-consulting { margin-top: 20px; border-color: var(--line); background: var(--wash); }
.ticket-note { color: var(--muted); font-size: 14.5px; margin: 14px 0 0; max-width: 560px; }
.ticket-name { font-weight: 750; color: var(--ink); font-size: 20px; margin-bottom: 10px; }
.ticket-early-badge { display: inline-block; background: #e3edfb; color: var(--brand-deep); font-size: 14.5px; font-weight: 750; padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.ticket-price { font-size: 52px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; font-feature-settings: 'tnum'; }
.ticket-won { font-size: 24px; font-weight: 700; margin-left: 2px; }
.ticket-regular { color: var(--muted); font-size: 22px; font-weight: 600; margin-left: 12px; }
.ticket-vat { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.ticket-benefits { margin: 0; padding: 0 0 0 2px; list-style: none; }
.ticket-benefits li { padding: 6px 0 6px 28px; position: relative; font-size: 17px; }
.ticket-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.ticket-side { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.ticket-side .btn { width: 100%; }
.ticket-refund { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 720px) { .ticket-card { grid-template-columns: minmax(0, 1fr); padding: 26px 22px; } }

/* 컨설팅 혜택 — 눌러서 펼치는 상세 */
.benefit-detail details summary { cursor: pointer; list-style: none; display: inline; }
.benefit-detail details summary::-webkit-details-marker { display: none; }
.benefit-q {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; border-radius: 50%; margin-left: 7px; vertical-align: 1px;
  background: #dbe7f8; color: var(--brand-deep); font-size: 12.5px; font-weight: 800;
}
.benefit-detail details[open] .benefit-q { background: var(--brand-deep); color: #fff; }
.benefit-detail details p { color: var(--muted); font-size: 14.5px; margin: 6px 0 2px; max-width: 560px; }

/* 신청 페이지 — 패스 선택 */
.pass-pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 12px; }
.pass-option { position: relative; cursor: pointer; }
.pass-option input { position: absolute; opacity: 0; }
.pass-option .pass-body {
  display: flex; flex-direction: column; gap: 3px; border: 2px solid var(--line);
  border-radius: 12px; padding: 14px 16px; transition: border-color .12s, background .12s;
}
.pass-option input:checked + .pass-body { border-color: var(--brand); background: #f0f6ff; }
.pass-option input:focus-visible + .pass-body { outline: 3px solid var(--brand); outline-offset: 2px; }
.pass-option strong { color: var(--ink); font-size: 16.5px; font-weight: 750; }
.pass-desc { color: var(--muted); font-size: 13.5px; }
.pass-price { color: var(--brand-deep); font-weight: 750; font-size: 15.5px; font-feature-settings: 'tnum'; margin-top: 3px; }
.pass-soldout { cursor: default; opacity: .55; }

.badge-pass { background: #e3edfb; color: var(--brand-deep); }
.my-head-right { display: flex; gap: 8px; align-items: center; }

/* 발표 신청 & 모달 */
.cfp-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-top: 24px;
  max-width: 760px;
  background: var(--wash);
}
.cfp-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cfp-intro-title {
  font-size: 19px;
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 6px;
}
.cfp-intro-desc {
  color: var(--body);
  font-size: 15.5px;
  margin: 0;
  line-height: 1.6;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 21, 38, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-backdrop[hidden] {
  display: none !important;
}
.modal-window {
  background: var(--paper);
  border-radius: 18px;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 40px);
  box-shadow: 0 24px 48px rgba(11, 21, 38, 0.22), 0 2px 6px rgba(11, 21, 38, 0.08);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: modalPopIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.96) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
}
.modal-eyebrow {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .04em;
  margin: 0 0 4px;
}
.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}
.modal-close {
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--muted);
  padding: 6px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
  margin: -4px -8px 0 0;
}
.modal-close:hover {
  background: var(--wash);
  color: var(--ink);
}
.modal-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.cfp-done {
  text-align: center;
  padding: 20px 10px 10px;
}
.cfp-done strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 8px;
}
.cfp-done p {
  color: var(--body);
  font-size: 15.5px;
  margin: 0 0 8px;
  line-height: 1.6;
}

/* 미디어 파트너 */
.sec-media { border-top: 1px solid var(--line); }
.media-lede { color: var(--body); font-size: 16.5px; max-width: 680px; margin-bottom: 18px; }

/* 관리자 — 발표 신청 */
.ad-proposal-head { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; color: var(--ink); font-size: 15.5px; margin-bottom: 4px; }
.ad-proposal-topic { font-weight: 750; color: var(--ink); font-size: 17px; margin: 2px 0 6px; }
.ad-proposal-summary { color: var(--body); font-size: 14.5px; max-width: 720px; }

/* 단체 구매 안내 */
.ticket-contact { margin-top: 20px; border: 1px dashed var(--line); border-radius: var(--radius); padding: 20px 24px; }
.ticket-contact strong { color: var(--ink); }
.ticket-contact p { color: var(--body); font-size: 15.5px; margin: 6px 0 0; max-width: 720px; }

/* ---------- 오시는 길 · FAQ ---------- */
.venue-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; margin-top: 26px; }
.venue-name { font-weight: 750; font-size: 23px; color: var(--ink); }
.venue-addr { color: var(--body); font-weight: 550; margin: 4px 0 8px; }
.venue-guide { color: var(--body); font-size: 16px; }
.venue-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.faq { margin-top: 22px; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; font-weight: 650; color: var(--ink); padding: 16px 0; font-size: 17.5px; list-style-position: outside; }
.faq details p { color: var(--body); font-size: 16px; padding: 0 0 18px 20px; max-width: 680px; }

/* ---------- 푸터 ---------- */
.footer { border-top: 1px solid var(--line); padding: 44px 20px 60px; background: var(--paper); }
.footer-in { max-width: var(--maxw); margin: 0 auto; color: var(--muted); font-size: 14.5px; }
.footer-brand { font-weight: 800; color: var(--ink); margin-bottom: 8px; font-size: 16px; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px 40px; flex-wrap: wrap; }
.footer-biz { margin-top: 14px; font-size: 13.5px; }
.footer-links { margin: 2px 0 0; white-space: nowrap; }

/* ---------- 내부 페이지 공통 ---------- */
.page { min-height: 60vh; padding: 56px 20px 80px; }
.page-in { max-width: var(--maxw); margin: 0 auto; }
.page-in.narrow { max-width: 620px; }
.page-title { font-size: 32px; font-weight: 780; }
.page-sub { color: var(--muted); font-size: 17px; margin-bottom: 26px; }
.page-head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.page-head-row .page-title { margin: 0; }
.center-block { text-align: center; }
.center { text-align: center; }

.done-mark {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: #e6f2ec; color: var(--ok); font-size: 30px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.done-mark.fail { background: #fdeeee; color: var(--danger); }

.ticket-view { text-align: left; border: 1.5px solid var(--ink); border-radius: 16px; padding: 24px 26px; margin: 26px 0; }
.tv-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 16.5px; }
.tv-row:last-child { border-bottom: 0; }
.tv-row span { color: var(--muted); flex-shrink: 0; }
.tv-no { font-feature-settings: 'tnum'; letter-spacing: .04em; color: var(--brand-deep); }

/* ---------- 폼 ---------- */
.form { display: flex; flex-direction: column; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-weight: 650; color: var(--ink); font-size: 16px; }
.form input, .form select, .form textarea {
  font: inherit; font-weight: 450; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 14px; background: var(--paper);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--brand); outline: none; }
.form .hint { font-weight: 450; }
.form .check { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--body); font-size: 15px; }
.form .check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.opt { color: var(--muted); font-weight: 500; font-size: 12.5px; }
.hint { color: var(--muted); font-size: 14.5px; margin: 0; }
.form-error { color: var(--danger); font-weight: 600; font-size: 14px; margin: 0; min-height: 1em; }

.notice { border: 1px solid var(--line); background: var(--wash); border-radius: 12px; padding: 16px 18px; margin-bottom: 20px; font-size: 16px; }
.notice p { margin: 0; }
.notice-warn { background: #fdf6ec; border-color: #eeddc2; }
.notice-ok { background: #e9f5ef; border-color: #c6e5d5; }

.badge { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.badge-ok { background: #e6f2ec; color: var(--ok); }
.badge-off { background: #f0f2f5; color: var(--muted); }
.badge-wait { background: #fdf6ec; color: #a3691c; }

/* ---------- 마이페이지 ---------- */
.login-tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 16px; }
.login-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.login-card h2 { font-size: 16.5px; margin-bottom: 16px; }
.my-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.my-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.my-head .tv-no, .my-head .badge { white-space: nowrap; }
.my-head .tv-no { font-size: 18px; font-weight: 800; }
.my-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 10px 18px; }
.my-grid > div { display: flex; flex-direction: column; font-size: 16px; }
.my-grid span { color: var(--muted); font-size: 13.5px; }
.my-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; align-items: center; }
.my-card-open { border-color: #d9c9a6; background: #fffdf7; }
.reserved-note { margin-top: 12px; padding: 10px 12px; background: #fdf6ec; border-radius: 10px; color: #7a5a1c; }
/* 결제 방법 */
.paymethod { display: flex; flex-direction: column; gap: 10px; }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-grid.pm-3 { grid-template-columns: 1fr 1fr 1fr; }
.pm-option { position: relative; cursor: pointer; }
.pm-option input { position: absolute; opacity: 0; }
.pm-option .pm-body { display: flex; flex-direction: column; gap: 4px; border: 2px solid var(--line); border-radius: 12px; padding: 14px 16px; height: 100%; transition: border-color .12s, background .12s; }
.pm-option input:checked + .pm-body { border-color: var(--brand); background: #f0f6ff; }
.pm-option input:focus-visible + .pm-body { outline: 3px solid var(--brand); outline-offset: 2px; }
.pm-option strong { color: var(--ink); font-size: 16px; font-weight: 750; }
.pm-option small { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.pm-note { font-size: 14px; }
.notice.left { text-align: left; }
.muted-name { color: var(--muted); font-weight: 600; }
/* 직원에게 티켓 나누기 */
.share-card { border: 1.5px solid var(--brand); border-radius: var(--radius); padding: 24px 22px; margin-bottom: 22px; background: #f6f9fe; }
.share-card.share-done { border-color: var(--line); background: var(--wash); }
.share-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.share-head h2 { font-size: 19px; margin: 0; letter-spacing: -0.01em; }
.share-sub { margin: 6px 0 16px; color: var(--ink); font-size: 15.5px; }
.share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.share-opt { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.share-opt h3 { font-size: 16px; margin: 0; display: flex; align-items: center; gap: 8px; }
.share-num { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12.5px; font-weight: 800; align-items: center; justify-content: center; }
.share-opt .hint { font-size: 14px; }
.share-opt .form { gap: 8px; }
.share-opt textarea { min-height: 96px; resize: vertical; font-size: 14.5px; }
.share-link { display: flex; gap: 8px; }
.share-link input { flex: 1; min-width: 0; font-size: 13.5px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--wash); color: var(--ink); font-family: inherit; }
.share-foot { margin-top: 12px; font-size: 14px; }
.claim-kicker { color: var(--brand-deep); font-weight: 700; font-size: 14.5px; margin: 0 0 6px; }
.claim-info { margin: 18px 0 22px; }
.transfer-form { border-top: 1px dashed var(--line); margin-top: 16px; padding-top: 16px; }
.transfer-form h3 { font-size: 15px; }


/* ---------- 모바일 최적화 ---------- */
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  h2 { font-size: 27px; }
  .sec { padding: 52px 18px; }
  .hero { padding: 44px 18px 40px; }
  .hero-title { margin-bottom: 22px; }
  .hero-date { gap: 14px; margin-bottom: 18px; }
  .hero-date-num { padding-right: 14px; }
  .hero-date-meta { font-size: 15.5px; }
  .hero-lede { font-size: 17.5px; margin-bottom: 24px; }
  .hero-cta { gap: 12px; margin-bottom: 44px; }
  .hero-cta .btn-lg { width: 100%; }
  .pg-row { padding: 15px 0; }
  .pg-time span { font-size: 15.5px; }
  .pg-time .pg-time-end { font-size: 13px; }
  .pg-body h3 { font-size: 17.5px; }
  .pg-body p { font-size: 15.5px; }
  .about-card { padding: 20px 18px; }
  .ticket-card { margin-top: 20px; }
  .ticket-price { font-size: 42px; }
  .ticket-won { font-size: 20px; }
  .ticket-regular { font-size: 18px; margin-left: 8px; }
  .ticket-side .btn { min-height: 52px; }
  .venue-card { padding: 22px 18px; }
  .venue-links .btn { flex: 1 1 auto; min-height: 44px; }
  .faq summary { font-size: 16.5px; }
  .faq details p { padding-left: 8px; }
  .page { padding: 36px 18px 64px; }
  .page-title { font-size: 27px; }
  .form input, .form select, .form textarea { padding: 13px 14px; }
  .share-grid { grid-template-columns: 1fr; }
  .pm-grid, .pm-grid.pm-3 { grid-template-columns: 1fr; }
  .share-card { padding: 18px 16px; }
  .share-link { flex-direction: column; }
  .form .btn { min-height: 50px; }
  .btn-row .btn { min-height: 44px; }
  .my-card { padding: 18px 16px; }
  .footer { padding: 36px 18px 48px; }
}

/* ---------- 히어로 · 사례 중심 넛지 (v11) ---------- */
.hero-kicker { font-size: clamp(22px, 3.4vw, 34px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.25; margin: -6px 0 26px; }
.hero-lede { max-width: 700px; }
.hero-cta { margin-bottom: 40px; }
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.hero-stat { flex: 1 1 140px; padding: 18px 20px 16px 0; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-stat + .hero-stat { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-stat b { font-size: clamp(30px, 4vw, 40px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; font-feature-settings: 'tnum'; }
.hero-stat span { color: var(--muted); font-size: 14.5px; font-weight: 600; white-space: nowrap; }
.hero-orgs-label { color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: .02em; margin-bottom: 10px; }
.org-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.org-chips li { background: var(--wash); border: 1px solid var(--line); color: var(--ink); font-weight: 650; font-size: 15px; padding: 7px 14px; border-radius: 999px; white-space: nowrap; }
.org-chips .org-chip-more { background: transparent; border-style: dashed; color: var(--muted); font-weight: 550; }
@media (max-width: 560px) {
  .hero-stat { flex: 1 1 45%; padding-right: 12px; }
  .hero-stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- ABOUT · WHY · WHO ---------- */
.sec-lede { color: var(--body); font-size: 18px; max-width: 720px; margin: 2px 0 8px; }
.sec-lede strong { color: var(--ink); }
.about-grid-6 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.about-num { display: inline-block; color: var(--brand); font-weight: 800; font-size: 13.5px; letter-spacing: .08em; margin-bottom: 10px; font-feature-settings: 'tnum'; }
.about-card h3 { font-size: 20px; }
.q-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 14px; margin-top: 26px; }
.q-card { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; background: var(--ink); color: #fff; border-radius: var(--radius); padding: 26px 24px; text-decoration: none !important; transition: transform .15s, background .15s; }
.q-card:hover { background: #142140; transform: translateY(-2px); }
.q-text { color: #fff; font-size: 19px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.45; margin: 0; }
.q-answer { color: #9cc3ff; font-size: 14.5px; font-weight: 650; margin: 0; display: flex; align-items: center; gap: 6px; }
.q-answer::before { content: ''; width: 18px; height: 2px; background: var(--brand); display: inline-block; }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 16px; margin-top: 26px; }
.who-card { border-left: 3px solid var(--brand); padding: 4px 0 4px 20px; }
.who-card h3 { font-size: 19px; margin-bottom: 8px; }
.who-card p { color: var(--body); font-size: 16px; margin: 0; }
.cta-band { margin-top: 44px; background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap; }
.cta-band-title { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin: 0 0 4px; }
.cta-band-sub { color: var(--muted); font-size: 15.5px; font-weight: 600; margin: 0; font-feature-settings: 'tnum'; }
@media (max-width: 560px) { .cta-band { padding: 24px 20px; } .cta-band .btn { width: 100%; } }

/* 타임라인 수평 정렬 — 시각·점·제목의 첫 줄 중심을 한 선에 */
.pg-body h3 { line-height: 1.35; }
.pg-time span { line-height: 1.35; }
.pg-time .pg-time-end { line-height: 1.5; margin-top: 2px; }
.pg-time { padding-top: 2px; }
.pg-dot { padding-top: 7px; }

/* ---------- 히어로 특전 줄 · 사례집 섹션 (v13) ---------- */
.hero-perk { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; background: #eaf2ff; border: 1px solid #cfe0fb; border-radius: 999px; padding: 9px 18px 9px 10px; margin: -14px 0 32px; color: var(--ink); font-size: 15.5px; font-weight: 600; text-decoration: none !important; transition: border-color .15s, background .15s; }
.hero-perk:hover { background: #e0ecff; border-color: var(--brand); }
.hero-perk strong { color: var(--brand-deep); font-weight: 750; }
.hero-perk-tag { background: var(--brand); color: #fff; border-radius: 999px; padding: 3px 10px; font-size: 13px; font-weight: 750; letter-spacing: .01em; white-space: nowrap; }
.hero-perk-arrow { color: var(--brand-deep); font-weight: 800; font-size: 18px; line-height: 1; }
@media (max-width: 560px) { .hero-perk { border-radius: 16px; padding: 12px 16px 12px 12px; } }

.sec-booklet { background: var(--ink); color: #dbe5f5; }
.sec-booklet h2 { color: #fff; }
.sec-eyebrow-light { color: #8fbcff; }
.bk-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 40px 56px; align-items: center; }
.bk-lede { color: #c8d5ea; font-size: 17.5px; max-width: 560px; margin: 4px 0 22px; }
.bk-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); margin-bottom: 18px; }
.bk-stats > div { flex: 1 1 0; padding: 14px 18px 12px 0; display: flex; flex-direction: column; gap: 2px; }
.bk-stats > div + div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.14); }
.bk-stats b { font-size: clamp(28px, 3.4vw, 36px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; font-feature-settings: 'tnum'; }
.bk-stats span { color: #9fb3d1; font-size: 14px; font-weight: 600; }
.bk-tags { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.bk-tags li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #e6eefb; font-size: 14px; font-weight: 600; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.bk-flow { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px 0; counter-reset: bk; font-size: 14.5px; color: #c8d5ea; }
.bk-flow li { counter-increment: bk; display: inline-flex; align-items: center; gap: 6px; }
.bk-flow li::before { content: counter(bk); width: 20px; height: 20px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.bk-flow li:not(:last-child)::after { content: ''; width: 18px; height: 1px; background: rgba(255,255,255,.28); margin: 0 8px; }
.bk-note { color: #9fb3d1; font-size: 15px; max-width: 560px; margin-bottom: 22px; }
.sec-booklet .hero-cta { margin-bottom: 0; }
.sec-booklet .seat-left { color: #9fb3d1; }
.bk-visual { position: relative; min-height: 420px; }
.bk-shot { position: absolute; width: 78%; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.12); background: #fff; object-fit: cover; object-position: top; }
.bk-shot-1 { left: 0; top: 24px; aspect-ratio: 820 / 243; z-index: 3; transform: rotate(-3deg); }
.bk-shot-2 { right: 0; top: 0; height: 100%; max-height: 440px; aspect-ratio: 820 / 1050; z-index: 2; transform: rotate(2.5deg) translateX(4%); }
.bk-shot-3 { left: 12%; top: 48px; height: 88%; max-height: 400px; aspect-ratio: 820 / 1050; z-index: 1; transform: rotate(-7deg); opacity: .8; }
.bk-stamp { position: absolute; right: -6px; top: -10px; z-index: 4; background: #ff6b3d; color: #fff; font-weight: 800; letter-spacing: .12em; font-size: 12.5px; padding: 6px 12px; border-radius: 6px; transform: rotate(6deg); box-shadow: 0 8px 20px rgba(0,0,0,.35); }
@media (max-width: 860px) {
  .bk-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .bk-visual { min-height: 0; height: 360px; max-width: 460px; margin: 0 auto; width: 100%; }
  .bk-shot-1 { top: 40px; }
}
.sec-booklet { overflow: hidden; }
.bk-flow { gap: 8px 14px; }
.bk-flow li:not(:last-child)::after { display: none; }
@media (max-width: 560px) { .hero-perk-arrow { display: none; } }
/* 질문 카드가 3열에서 하나 남으면 마지막 카드를 가로로 펼침 */
@media (min-width: 981px) { .q-card:last-child:nth-child(3n+1) { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; } }
.pass-option.pass-only { cursor: default; }
.radio-row { border: 0; padding: 0; margin: 0 0 6px; }
.radio-row legend { font-weight: 650; color: var(--ink); font-size: 15.5px; margin-bottom: 8px; padding: 0; }
.radio-row label { display: inline-flex; align-items: center; gap: 6px; margin: 0 16px 6px 0; font-size: 15.5px; color: var(--body); }
.radio-row input { accent-color: var(--brand); width: 16px; height: 16px; margin: 0; }

/* ---------- 참가 신청 · 수량/단체 할인 ---------- */
.qty-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; background: var(--paper); }
.qty-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qty-label { font-weight: 650; color: var(--ink); font-size: 15.5px; }
.qty-ctl { display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 44px; border: 0; background: var(--wash); color: var(--ink); font: inherit; font-size: 20px; font-weight: 600; cursor: pointer; }
.qty-btn:hover { background: #e3edfb; }
.qty-ctl input { width: 64px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font: inherit; font-size: 17px; font-weight: 700; color: var(--ink); padding: 8px 0; -moz-appearance: textfield; }
.qty-ctl input::-webkit-outer-spin-button, .qty-ctl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-hint { color: var(--muted); font-size: 14.5px; margin: 10px 0 0; }
.qty-quote { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 15px; color: var(--body); font-feature-settings: 'tnum'; }
.qty-quote strong { color: var(--brand-deep); font-size: 20px; font-weight: 800; }
.ticket-bulk { margin: 6px 0 14px; color: var(--brand-deep); font-weight: 650; font-size: 15px; }
.hero-perks { display: flex; flex-wrap: wrap; gap: 10px; margin: -14px 0 32px; }
.hero-perks .hero-perk { margin: 0; }

/* ---------- 패스 카드 · 단체 할인 표 ---------- */
.bulk-wrap { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line); }
.bulk-head { display: flex; align-items: baseline; gap: 10px 14px; flex-wrap: wrap; margin-bottom: 12px; }
.bulk-title { font-weight: 750; color: var(--ink); font-size: 16.5px; }
.bulk-sub { color: var(--muted); font-size: 14px; }
.bulk-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.bulk-tier { position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 14px 14px 12px; background: var(--paper); display: flex; flex-direction: column; gap: 2px; }
.bulk-tier.bt-deal { border-color: #bcd4fa; background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%); }
.bt-badge { position: absolute; top: -10px; right: 12px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: .01em; }
.bt-qty { color: var(--muted); font-size: 13.5px; font-weight: 650; }
.bulk-tier b { color: var(--ink); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; font-feature-settings: 'tnum'; line-height: 1.2; }
.bulk-tier b i { font-style: normal; font-size: 14px; font-weight: 700; margin-left: 1px; }
.bt-deal b { color: var(--brand-deep); }
.bt-note { color: var(--muted); font-size: 12.5px; font-feature-settings: 'tnum'; }

/* ---------- 패스 카드 · 비즈코더 크레딧 콜아웃 ---------- */
.credit-callout { display: flex; align-items: center; justify-content: space-between; gap: 14px 20px; flex-wrap: wrap; margin: 14px 0 18px; padding: 16px 18px; border-radius: 12px; background: linear-gradient(135deg, #0b1526 0%, #1b2f55 100%); color: #dbe5f5; }
.cc-eyebrow { color: #8fbcff; font-size: 13px; font-weight: 750; letter-spacing: .04em; margin: 0 0 2px; }
.cc-title { color: #fff; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 6px; }
.cc-title b { color: #7fb4ff; font-feature-settings: 'tnum'; }
.cc-desc { color: #c8d5ea; font-size: 14.5px; margin: 0; max-width: 560px; }
.cc-desc a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cc-link { background: #fff; color: var(--ink); border-color: transparent; white-space: nowrap; }
.cc-link:hover { color: var(--brand-deep); }
.qty-credit { margin: 10px 0 0; color: var(--ok); font-size: 14.5px; font-weight: 650; font-feature-settings: 'tnum'; }
.qty-credit b { color: var(--ok); }
.promo-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; background: var(--paper); }
.promo-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.promo-ctl { display: inline-flex; gap: 8px; align-items: stretch; }
.promo-ctl input { width: 170px; font: inherit; font-size: 15.5px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); }
.promo-ctl input:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.promo-msg { margin: 10px 0 0; font-size: 14.5px; color: var(--muted); min-height: 1em; }
.promo-msg.ok { color: var(--ok); font-weight: 650; }
.promo-msg.err { color: var(--danger); font-weight: 600; }
.promo-box.applied { border-color: var(--ok); }
@media (max-width: 480px) { .promo-ctl { width: 100%; } .promo-ctl input { flex: 1; width: auto; min-width: 0; } }
