/* ============================================================
   PSST-PR 2027 — Components
   카드 / 육각형 / TBA placeholder 패턴 / 타임라인 / 표 / 폼
   ============================================================ */

/* ---- Hexagon icon container (Lattice) ---- */
.hex {
  width: 58px; height: 66px; clip-path: var(--hex-clip);
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(180deg, var(--navy-100), #fff);
  color: var(--teal-700);
  position: relative;
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard), color var(--dur-base);
}
.hex svg { width: 26px; height: 26px; }
.hex--dark { background: var(--navy-800); color: var(--teal-300); }
.hex--filled, .card:hover .hex, .card:focus-within .hex {
  background: var(--grad-brand); color: #fff; transform: rotate(6deg);
}
.hex--gold { background: linear-gradient(135deg, #B08D4F, var(--gold-400)); color: #fff; }

/* Hex monogram (연사·위원 이니셜 — AI 얼굴 생성 금지 원칙) */
.hex-avatar {
  width: 96px; height: 108px; clip-path: var(--hex-clip);
  display: grid; place-items: center;
  background: var(--grad-brand); color: #fff;
  font: 600 var(--fs-25)/1 var(--font-serif); letter-spacing: .04em;
}
.hex-avatar--tba { background: var(--navy-100); color: var(--navy-500); position: relative; overflow: hidden; }
/* 사진형 연사 카드 — 3:4 인물 사진이 카드 상단 풀블리드 */
.card--speaker.card--photo { overflow: hidden; }
.sp-photo {
  width: calc(100% + var(--sp-4) * 2);
  margin: calc(-1 * var(--sp-4)) calc(-1 * var(--sp-4)) 0;
  aspect-ratio: 3 / 4; overflow: hidden;
}
.sp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-standard); }
.card--photo:hover .sp-photo img, .card--photo:focus-within .sp-photo img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) { .sp-photo img { transition: none; } .card--photo:hover .sp-photo img { transform: none; } }
/* 태블릿 2열 구간에서 3번째 카드가 전폭일 때 — 사진이 과도하게 길어지지 않게 */
@media (min-width: 641px) and (max-width: 992px) {
  .grid--3 > .card--photo:nth-child(3):nth-last-child(2) .sp-photo { aspect-ratio: 16 / 9; }
}
/* 위원회 — 정사각(1:1) 사진 변형 */
.sp-photo--sq { aspect-ratio: 1 / 1; }
/* 위원장 피처 카드 — 좌측 풀블리드 정사각 사진 */
.card--feature-photo { overflow: hidden; }
.card--feature .sp-photo--side {
  flex-shrink: 0; align-self: stretch; width: 220px;
  margin: calc(-1 * var(--sp-4)) 0 calc(-1 * var(--sp-4)) calc(-1 * var(--sp-4));
  overflow: hidden;
}
.sp-photo--side img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .card--feature .sp-photo--side {
    align-self: auto; width: calc(100% + var(--sp-4) * 2);
    margin: calc(-1 * var(--sp-4)) calc(-1 * var(--sp-4)) 0;
    aspect-ratio: 1 / 1;
  }
}

/* TBA shimmer (3s 저강도) */
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.hex-avatar--tba::after, .tba-shimmer::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  animation: shimmer 3s var(--ease-standard) infinite;
}
@media (prefers-reduced-motion: reduce) { .hex-avatar--tba::after, .tba-shimmer::after { animation: none; } }

/* ---- Card (기본) ---- */
.card {
  background: #fff; border: 1px solid var(--navy-100); border-radius: var(--radius-lg);
  padding: var(--sp-4); box-shadow: var(--shadow-card); position: relative;
  transition: transform var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}
a.card { display: block; color: inherit; text-decoration: none !important; }
.card:hover, .card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card h3 { font-size: var(--fs-20); margin-bottom: 8px; }
.card p { font-size: var(--fs-16); color: var(--ink-600); }
.section--dark .card { background: var(--navy-800); border-color: var(--navy-700); }
.section--dark .card h3 { color: #fff; }
.section--dark .card p { color: var(--navy-200); }

/* Topic card — 좌측 컬러 바 차오름 */
.card--topic { display: flex; gap: var(--sp-3); align-items: flex-start; overflow: hidden; }
/* flex 자식의 min-content 바닥 해제 + 긴 합성어(micro/nanofabrication 등) 줄바꿈 — 모바일 잘림 방지 */
.card--topic .topic-body { min-width: 0; }
.card--topic .topic-body h3, .card--topic .topic-desc { overflow-wrap: break-word; }
.card--topic::before {
  content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 0;
  background: var(--grad-brand); transition: height var(--dur-base) var(--ease-standard);
}
.card--topic:hover::before, .card--topic:focus-within::before { height: 100%; }
.card--topic .topic-num { font: 600 var(--fs-25)/1 var(--font-serif); color: var(--navy-500); }
.card--topic:hover .topic-num { color: var(--teal-300); transition: color var(--dur-base); }
/* 호버 시 주제별 이미지가 카드 배경으로 스며듦 (Lattice Focus 확장) */
.card--topic .topic-img {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity var(--dur-base) var(--ease-standard), transform 1.2s var(--ease-standard);
}
.card--topic .topic-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,12,28,.88), rgba(10,24,48,.72)); }
.card--topic:hover .topic-img, .card--topic:focus-within .topic-img { opacity: 1; transform: scale(1.0); }
.card--topic .hex, .card--topic .topic-body { position: relative; z-index: 1; }
.card--topic:hover h3, .card--topic:focus-within h3 { color: #fff; transition: color var(--dur-base); }
.card--topic:hover .hex, .card--topic:focus-within .hex { background: rgba(255,255,255,.12); color: var(--teal-300); }
/* 데스크톱 기본 상태에서도 주제 이미지를 우측 페이드로 살짝 노출 — 호버 시 전면 확장 */
@media (hover: hover) {
  .card--topic .topic-img {
    opacity: .4; transform: scale(1.02);
    -webkit-mask-image: linear-gradient(to right, transparent 50%, #000 90%);
    mask-image: linear-gradient(to right, transparent 50%, #000 90%);
  }
  .card--topic:hover .topic-img, .card--topic:focus-within .topic-img {
    opacity: 1; transform: scale(1);
    -webkit-mask-image: none; mask-image: none;
  }
}

/* 터치 기기(hover 불가)는 주제 이미지를 기본 노출 — 시각 자산이 모바일에서 낭비되지 않게 */
@media (hover: none) {
  .card--topic .topic-img { opacity: 1; transform: scale(1); }
  .card--topic h3 { color: #fff; }
  .card--topic .topic-num { color: var(--teal-300); }
  .card--topic .topic-desc { color: var(--navy-200); }
  .card--topic .hex { background: rgba(255,255,255,.12); color: var(--teal-300); }
}

/* Speaker card */
.card--speaker { text-align: center; display: grid; justify-items: center; gap: var(--sp-2); }
.card--speaker .sp-name { font-family: var(--font-serif); font-size: var(--fs-20); color: var(--navy-900); }
.card--speaker .sp-affil { font-size: var(--fs-14); color: var(--ink-600); letter-spacing: .02em; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px;
  font: 600 var(--fs-12)/1 var(--font-sans); letter-spacing: .1em; text-transform: uppercase;
}
.badge--gold { background: rgba(201,169,106,.14); color: #8A6D33; }
.badge--gold::before { content: ""; width: 8px; height: 9px; clip-path: var(--hex-clip); background: var(--gold-400); }
.badge--teal { background: var(--teal-100); color: var(--teal-700); }
.badge--tba { background: var(--navy-100); color: var(--navy-500); }

/* ---- TBA placeholder 패턴 ---- */
.tba-card {
  border: 1.5px dashed var(--navy-200); border-radius: var(--radius-lg);
  background: rgba(228, 234, 243, 0.35);
  padding: var(--sp-4); display: grid; justify-items: center; gap: var(--sp-2);
  text-align: center; color: var(--navy-500); position: relative; overflow: hidden;
}
.tba-card .tba-title { font-weight: 600; color: var(--navy-500); }
.tba-pill {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  background: var(--teal-100); color: var(--teal-700); font: 600 var(--fs-14)/1.5 var(--font-sans);
  white-space: nowrap;
}
.sponsor-slot {
  border: 1.5px dashed var(--navy-200); border-radius: var(--radius);
  min-height: 92px; display: grid; place-items: center;
  color: var(--navy-500); font-size: var(--fs-14); letter-spacing: .06em;
  background: rgba(255,255,255,.5);
}
/* 스폰서 타일 — 카드리스 임베드: 배경 위에 원색 로고 그대로 + 이름, 로고 없는 곳은 세리프 워드마크 */
.sponsor-tile {
  background: transparent; border: 0; border-radius: 0;
  min-height: 140px; padding: 18px 24px;
  display: grid; place-items: center; align-content: center; gap: 12px; text-align: center;
}
.sponsor-tile + .sponsor-tile { border-left: 1px solid var(--navy-100); }
.sponsor-tile img { max-height: 80px; max-width: 82%; width: auto; height: auto; object-fit: contain;
  filter: grayscale(.25); opacity: .9;
  transition: transform var(--dur-base) var(--ease-standard), filter var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard); }
.sponsor-tile-name { font: 600 var(--fs-16)/1.3 var(--font-sans); color: var(--navy-500); letter-spacing: .01em;
  transition: color var(--dur-base) var(--ease-standard); }
/* 호버 — 로고 선명화 + 살짝 확대·리프트, 이름 진해짐 */
.sponsor-tile { transition: transform var(--dur-base) var(--ease-standard); }
.sponsor-tile:hover, .sponsor-tile:focus-within { transform: translateY(-4px); }
.sponsor-tile:hover img, .sponsor-tile:focus-within img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.sponsor-tile:hover .sponsor-tile-name, .sponsor-tile:focus-within .sponsor-tile-name { color: var(--navy-900); }
@media (prefers-reduced-motion: reduce) {
  .sponsor-tile:hover, .sponsor-tile:focus-within { transform: none; }
  .sponsor-tile:hover img, .sponsor-tile:focus-within img { transform: none; }
}
@media (max-width: 640px) { .sponsor-tile + .sponsor-tile { border-left: 0; border-top: 1px solid var(--navy-100); } }
.sponsor-tile--text { gap: 8px; }
.sponsor-kicker { font: 600 var(--fs-12)/1 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--teal-700); }
.sponsor-wordmark { font: 600 var(--fs-25)/1.25 var(--font-serif); color: var(--navy-900); }

/* ---- Grid helpers ---- */
.grid { display: grid; gap: var(--sp-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--fill { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
@media (max-width: 992px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---- Timeline (Important Dates) ---- */
.timeline { position: relative; padding-left: 44px; max-width: 720px; }
.timeline::before {
  content: ""; position: absolute; left: 14px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--teal-400) var(--tl-progress, 0%), var(--navy-100) var(--tl-progress, 0%));
  transition: background var(--dur-fast) linear;
}
.tl-item { position: relative; padding-bottom: var(--sp-4); }
.tl-item::before {
  content: ""; position: absolute; left: -37px; top: 6px; width: 16px; height: 18px;
  clip-path: var(--hex-clip); background: var(--navy-200);
  transition: background var(--dur-base) var(--ease-standard);
}
.tl-item.is-lit::before { background: var(--teal-500); }
.tl-item.is-event::before { background: var(--blossom-300); }
.tl-item .tl-date { font: 600 var(--fs-14)/1.4 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; color: var(--teal-700); }
.tl-item .tl-label { font-family: var(--font-serif); font-size: var(--fs-25); color: var(--navy-900); }
.tl-item .tl-label a { color: inherit; }
.tl-item.is-past .tl-date { color: var(--navy-500); }
.tl-item.is-past .tl-label { color: var(--ink-600); }
/* 마감 항목 — 절제된 앰버 긴급성 큐 (개설/공개 이벤트와 구분) */
.tl-item.is-deadline .tl-date { color: var(--urgent-700); }
.tl-item.is-deadline::before, .tl-item.is-deadline.is-lit::before { background: var(--urgent-500); }
/* 사계절 갤러리 — 오른쪽 4장이 전체 dates 높이를 크게 커버 (여름→가을→겨울→봄) */
.tl-layout { display: grid; grid-template-columns: 1fr minmax(300px, 380px); gap: var(--sp-5); align-items: stretch; }
.tl-layout .timeline { max-width: none; }
.tl-gallery { display: grid; grid-template-rows: repeat(4, 1fr); gap: var(--sp-3); }
.tl-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.tl-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-standard); }
.tl-gallery figure:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .tl-gallery img { transition: none; } .tl-gallery figure:hover img { transform: none; } }
@media (max-width: 900px) {
  .tl-layout { grid-template-columns: 1fr; }
  .tl-gallery { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .tl-gallery img { aspect-ratio: 4 / 3; }
}

/* 트랙 칩 (Abstracts/Program/Registration/Conference) — 미확정 아님, 분류 표시 */
.tl-track { display: inline-block; margin-left: 10px; padding: 2px 9px; border-radius: 999px;
  font: 600 var(--fs-12)/1.5 var(--font-sans); letter-spacing: .06em; text-transform: uppercase;
  background: var(--navy-100); color: var(--navy-500); vertical-align: 2px; }
.tl-track--abstract { background: var(--teal-100); color: var(--teal-700); }
.tl-track--program { background: var(--navy-100); color: var(--navy-700); }
.tl-track--register { background: rgba(201,169,106,.16); color: #7A5E28; }
.tl-track--event { background: rgba(242,201,207,.4); color: #9A4A5A; }

/* Topic 설명 1줄 (hover 시 다크 배경 위 대비 전환) */
.card--topic .topic-desc { font-size: var(--fs-14); color: var(--ink-600); margin-top: 6px; }
.card--topic:hover .topic-desc, .card--topic:focus-within .topic-desc { color: var(--navy-200); }

/* Speaker 국가·분야 태그 */
.sp-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 10px; }
.sp-tag { font: 600 var(--fs-12)/1.4 var(--font-sans); padding: 3px 10px; border-radius: 999px;
  background: var(--navy-100); color: var(--navy-700); }
.sp-tag--field { background: var(--teal-100); color: var(--teal-700); }

/* 위원장 피처 카드 — 전폭 가로형 (1/3/3 그리드 완결) */
.card--speaker.card--feature { grid-column: 1 / -1; display: flex; align-items: center; gap: var(--sp-4); text-align: left; }
.card--feature .hex-avatar { flex-shrink: 0; }
.card--feature > div:last-child { display: grid; gap: 6px; justify-items: start; }
@media (max-width: 640px) {
  .card--speaker.card--feature { flex-direction: column; text-align: center; }
  .card--feature > div:last-child { justify-items: center; }
}

/* Speakers 태블릿(2열 구간): 3번째 확정 카드 전폭 — 빈 칸 방지 */
@media (min-width: 641px) and (max-width: 992px) {
  .grid--3 > .card--speaker:nth-child(3):nth-last-child(2) { grid-column: 1 / -1; }
}

/* 통합 TBA 키노트 카드 (전폭) */
.tba-card--wide { grid-column: 1 / -1; }
.tba-hexrow { display: flex; gap: 12px; justify-content: center; }
.hex-avatar--sm { width: 54px; height: 61px; font: 600 var(--fs-20)/1 var(--font-serif); }
.dday-badge {
  display: inline-block; margin-left: 10px; padding: 3px 12px; border-radius: 999px;
  border: 1.5px solid var(--urgent-500); background: var(--urgent-100); color: var(--urgent-700);
  font: 700 var(--fs-14)/1.4 var(--font-sans);
}

/* ---- Program at a Glance table ---- */
.glance-wrap { overflow-x: auto; }
table.glance { width: 100%; border-collapse: collapse; min-width: 760px; }
.glance th, .glance td { padding: 18px 16px; text-align: left; vertical-align: top; border: 1px solid var(--navy-700); }
.glance thead th { background: var(--navy-800); color: var(--teal-300); font: 600 var(--fs-14)/1.4 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; }
.glance tbody th { background: var(--navy-800); color: #fff; font: 600 var(--fs-16)/1.4 var(--font-sans); white-space: nowrap; }
.glance td { color: var(--navy-200); font-size: var(--fs-16); transition: background var(--dur-fast); }
.glance td .cell-title { color: #fff; font-weight: 600; display: block; }
.glance td .cell-desc { font-size: var(--fs-14); color: var(--navy-200); }
.glance tbody tr:hover td { background: var(--navy-800); }
.glance td.tag-gala { box-shadow: inset 3px 0 0 var(--gold-400); }
.glance td.tag-social { box-shadow: inset 3px 0 0 var(--teal-400); }
.glance td.is-empty { background: rgba(5,12,28,.4); }
.indicative-note {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px 18px; margin-bottom: var(--sp-3);
  background: rgba(111,204,195,.08); border: 1px solid var(--navy-700); border-radius: var(--radius);
  color: var(--teal-300); font-size: var(--fs-14);
}

/* Mobile: 일자 카드 스택 (가로 스크롤 금지) */
@media (max-width: 768px) {
  .glance-wrap { overflow: visible; }
  table.glance, .glance thead, .glance tbody, .glance tr, .glance th, .glance td { display: block; min-width: 0; border: 0; }
  .glance thead { position: absolute; left: -9999px; }
  .glance tbody tr { border: 1px solid var(--navy-700); border-radius: var(--radius); margin-bottom: var(--sp-2); overflow: hidden; }
  .glance tbody th { padding: 14px 16px; }
  .glance td { border-top: 1px solid var(--navy-700); padding: 14px 16px; }
  .glance td::before { content: attr(data-slot); display: block; font-size: var(--fs-12); letter-spacing: .12em; text-transform: uppercase; color: var(--teal-300); margin-bottom: 4px; }
  .glance td.is-empty { display: none; }
}

/* ---- Fee table ---- */
table.fees { width: 100%; border-collapse: collapse; }
.fees th, .fees td { padding: 16px 18px; border-bottom: 1px solid var(--navy-100); text-align: left; font-size: var(--fs-16); }
.fees thead th { font: 600 var(--fs-14)/1.4 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; color: var(--navy-500); }
.fees .fee-cat { font-weight: 600; color: var(--navy-900); }
.fees .fee-desc { font-size: var(--fs-14); color: var(--ink-600); display: block; }

/* ---- Forms ---- */
.form-grid { display: grid; gap: var(--sp-3); }
.field label { display: block; font: 600 var(--fs-16)/1.4 var(--font-sans); color: var(--navy-900); margin-bottom: 8px; }
.field .hint { font-size: var(--fs-14); color: var(--ink-600); margin-top: 6px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; font: 400 var(--fs-16)/1.5 var(--font-sans);
  border: 1.5px solid var(--navy-200); border-radius: var(--radius); background: #fff; color: var(--ink-900);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-glow);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; } /* honeypot */

/* ---- Notice / disclaimer ---- */
.notice {
  padding: var(--sp-3); border-radius: var(--radius); font-size: var(--fs-16);
  background: var(--navy-100); color: var(--ink-900); border-left: 4px solid var(--teal-500);
}
.notice--warn { border-left-color: var(--gold-400); background: rgba(201,169,106,.1); }
.notice strong { color: var(--navy-900); }
.disclaimer-text { font-size: var(--fs-14); color: var(--ink-600); line-height: 1.6; }

/* ---- CTA banner (페이지 하단 반복 배치) ---- */
.cta-banner {
  background: var(--grad-brand); border-radius: var(--radius-lg); color: #fff;
  padding: clamp(40px, 6vw, 72px); display: flex; flex-wrap: wrap; gap: var(--sp-3);
  align-items: center; justify-content: space-between; position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: clamp(var(--fs-25), 3vw, var(--fs-39)); }
.cta-banner p { color: var(--teal-100); margin-top: 6px; }

/* ---- Reserve card border trace ---- */
.trace-card { position: relative; }
.trace-card svg.trace { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.trace-card svg.trace rect {
  fill: none; stroke: var(--teal-400); stroke-width: 2; rx: 16;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset var(--dur-slow) var(--ease-standard);
}
.trace-card.in-view svg.trace rect { stroke-dashoffset: 0; }

/* ---- Metric band ---- */
.metric-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); text-align: center; max-width: 780px; margin-inline: auto; }
.metric { display: grid; justify-items: center; gap: 10px; }
.metric .m-hexwrap { position: relative; width: 128px; height: 144px; display: grid; place-items: center; }
.metric .m-hexwrap svg.hexline { position: absolute; inset: 0; }
.metric .m-hexwrap svg.hexline path {
  fill: none; stroke: var(--teal-400); stroke-width: 2;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.metric.in-view .m-hexwrap svg.hexline path { stroke-dashoffset: 0; transition: stroke-dashoffset 1.2s var(--ease-standard) .4s; }
.metric .m-value { font: 600 var(--fs-39)/1 var(--font-serif); color: #fff; max-width: 76%; text-align: center; }
.metric .m-label { font: 600 var(--fs-14)/1.4 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--teal-300); }
@media (max-width: 768px) {
  .metric-band { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-4); max-width: 420px; }
  .metric-band .metric:last-child { grid-column: 1 / -1; }
}

/* ---- Countdown strip ---- */
.countdown { display: flex; gap: clamp(14px, 3vw, 36px); align-items: baseline; }
.cd-unit { display: grid; justify-items: center; gap: 4px; }
.cd-unit .cd-num { font: 600 clamp(var(--fs-25), 4vw, var(--fs-49))/1 var(--font-serif); color: #fff; font-variant-numeric: tabular-nums; }
.cd-unit .cd-label { font: 600 var(--fs-12)/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--teal-300); }
