/* ============================================================================
   GEOGRAPHIA — 사이트 공통 껍데기
   ----------------------------------------------------------------------------
   메인 페이지에서 확립한 언어를 모든 하위 페이지가 공유하기 위한 파일.
   STRATUM(stratum.css)이 색·재질·모션 토큰을 담당하고, 여기서는 그 위에
   '이 사이트의 모습'을 얹는다 — 유리 상단바, 전체 메뉴, 호버 알약,
   페이지 전환, 문서형 페이지의 골격.

   불러오는 순서: stratum.css → geo.css → (페이지별 style)
   ========================================================================== */
:root {
  --accent: var(--st-accent);
  --accent-ink: var(--st-accent-ink);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: 20px;
  --track-wide: 0.1em;     /* 라틴 소문자 대문자화용 */
  --track-ko: 0.055em;     /* 한글은 넓게 벌리면 가독성이 무너진다 */
  --bar-h: 58px;
  --scrim: 242,242,247;

  --sans: 'Space Grotesk', 'Pretendard Variable', 'Pretendard',
          -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --st-font-sans: var(--sans);
  --st-font-kr:   var(--sans);

  /* 호버 알약 */
  --lg-bg: rgba(255,255,255,0.92);
  --lg-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 6px 14px rgba(0,0,0,0.10), 0 16px 38px rgba(0,0,0,0.17);
  --lg-rim: rgba(146,192,255,0.80);
  --lg-specular: rgba(238,247,255,0.96);
  --lg-glow: 0 0 0 0.5px rgba(146,192,255,0.30), 0 0 20px rgba(96,158,255,0.26);
}
:root[data-theme="dark"] {
  --scrim: 0,0,0;
  --lg-bg: rgba(255,255,255,0.16);
  --lg-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 6px 14px rgba(0,0,0,0.45), 0 16px 38px rgba(0,0,0,0.60);
  --lg-rim: rgba(150,196,255,0.55);
  --lg-specular: rgba(226,240,255,0.42);
  --lg-glow: 0 0 0 0.5px rgba(150,196,255,0.22), 0 0 24px rgba(96,158,255,0.34);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --scrim: 0,0,0;
    --lg-bg: rgba(255,255,255,0.16);
    --lg-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 6px 14px rgba(0,0,0,0.45), 0 16px 38px rgba(0,0,0,0.60);
    --lg-rim: rgba(150,196,255,0.55);
    --lg-specular: rgba(226,240,255,0.42);
    --lg-glow: 0 0 0 0.5px rgba(150,196,255,0.22), 0 0 24px rgba(96,158,255,0.34);
  }
}
@media (min-width: 640px) { :root { --pad-x: 32px; } }
@media (min-width: 768px) { :root { --pad-x: 48px; } }

body { font-family: var(--sans); overflow-x: hidden; }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

/* ══════════ 호버 — Liquid Glass 알약 ══════════
   상단바가 이미 유리라, 그 안에서 또 흐리면 '유리 위 유리'가 되어 글자가
   뭉갠다(STRATUM 규칙). 그래서 backdrop-filter는 기본으로 넣지 않는다. */
.lg { position: relative; isolation: isolate; }
.lg::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  inset: calc(-1 * var(--lg-y, 9px)) calc(-1 * var(--lg-x, 16px));
  border-radius: var(--st-r-full);
  background: var(--st-glass-sheen), var(--lg-bg);
  box-shadow:
    inset 0 0.6px 0 0 var(--lg-specular),
    inset 0 0 0 0.8px var(--lg-rim),
    inset 0 -0.6px 0 0 var(--st-glass-under),
    var(--lg-glow), var(--lg-shadow);
  opacity: 0; transform: scale(0.86);
  transition: opacity 170ms var(--ease),
              transform var(--st-spring-snappy-dur) var(--st-spring-snappy);
}
.lg:hover::before, .lg:focus-visible::before { opacity: 1; transform: scale(1); }
.lg:active::before { transform: scale(0.965); transition-duration: 90ms; }
.lg--blur:hover::before, .lg--blur:focus-visible::before {
  -webkit-backdrop-filter: blur(14px) saturate(180%); backdrop-filter: blur(14px) saturate(180%);
}

/* ══════════ 상단바 — 유리층 ══════════ */
.geo-bar__in {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: var(--bar-h); gap: 16px;
}
.geo-logo { display: flex; align-items: center; gap: 10px; --lg-x: 13px; --lg-y: 8px; }
.geo-seal { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; display: block; }
.geo-logo b { font-size: 13px; font-weight: 600; letter-spacing: var(--track-wide);
              text-transform: uppercase; white-space: nowrap; }
@media (max-width: 380px) { .geo-logo b { display: none; } }

.geo-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .geo-nav { display: flex; } }
.geo-nav a {
  font-size: 14px; font-weight: 600; letter-spacing: var(--track-ko);
  color: var(--st-label); --lg-x: 15px; --lg-y: 9px;
}
.geo-nav a.on { color: var(--accent-ink); }
.geo-nav a.is-open { color: var(--accent-ink); }

/* ══════════ 상단바 드롭다운 — 카테고리가 아래로 펼쳐진다 ══════════
   애플 홈페이지의 그것. 바는 유리지만 이 판은 콘텐츠를 담으므로 불투명한
   퇴적층으로 둔다(STRATUM: 유리 위 유리 금지 — 글자가 뭉갠다).
   높이는 JS가 활성 패널의 실제 높이로 잡아 준다. 그래서 항목 수가 다른
   메뉴 사이를 오갈 때 판이 부드럽게 늘었다 줄었다 한다. */
.geo-drop {
  position: absolute; top: 100%; left: 0; right: 0;
  height: 0; overflow: hidden;
  background: var(--st-surface);
  box-shadow: inset 0 1px 0 0 var(--st-separator), var(--st-shadow-med);
  opacity: 0; pointer-events: none;
  transition: height var(--st-spring-smooth-dur) var(--st-spring-smooth),
              opacity 220ms var(--ease);
}
.geo-drop.is-open { opacity: 1; pointer-events: auto; }
.geo-drop__stage { position: relative; }

.geo-drop__panel {
  position: absolute; top: 0; left: 0; right: 0;
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 30px var(--pad-x) 34px;
  display: grid; gap: 26px 36px;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  opacity: 0; pointer-events: none;
}
.geo-drop__panel.is-on { opacity: 1; pointer-events: auto; }

/* 항목이 위에서 차례로 흘러내린다 — 한꺼번에 나타나면 '켜졌다'가 되지,
   '펼쳐졌다'가 되지 않는다. 22ms 간격이면 눈이 순서를 읽되 기다리지는 않는다. */
@keyframes geoDropIn { from { opacity: 0; transform: translateY(-9px); } to { opacity: 1; transform: none; } }
.geo-drop__panel.is-on .geo-drop__cap,
.geo-drop__panel.is-on .geo-drop__link {
  animation: geoDropIn 420ms var(--st-spring-smooth) both;
  animation-delay: calc(var(--d, 0) * 22ms);
}

.geo-drop__cap {
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-wide);
  text-transform: uppercase; color: var(--st-label-3);
  padding-bottom: 9px; margin-bottom: 5px; border-bottom: 1px solid var(--st-separator);
}
.geo-drop__link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 10px; margin-inline: -10px; border-radius: var(--st-r-element);
  font-size: 14.5px; font-weight: 600; letter-spacing: var(--track-ko);
  color: var(--st-label);
  transition: background var(--st-dur-fast) var(--st-ease), color var(--st-dur-fast) var(--st-ease);
}
.geo-drop__link:hover, .geo-drop__link:focus-visible {
  background: var(--st-fill-3); color: var(--accent-ink); outline: none;
}
.geo-drop__link:focus-visible { box-shadow: var(--st-ring); }
.geo-drop__link small { font-size: 11.5px; font-weight: 500; color: var(--st-label-3); letter-spacing: 0.01em; }
/* 바깥으로 나가는 링크 표시(↗) — 새 탭이 열린다는 예고 */
.geo-drop__link i {
  display: inline-block; width: 6px; height: 6px; margin-left: 6px; vertical-align: 3px;
  border-top: 1.3px solid currentColor; border-right: 1.3px solid currentColor;
  transform: rotate(-45deg); opacity: 0.4;
}

.geo-drop__foot {
  grid-column: 1 / -1; margin-top: 4px; padding-top: 14px;
  border-top: 1px solid var(--st-separator);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12.5px; font-weight: 600; letter-spacing: var(--track-ko); color: var(--st-label-3);
}
.geo-drop__foot a { color: var(--accent-ink); --lg-x: 11px; --lg-y: 6px; }

@media (max-width: 900px) { .geo-drop__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.geo-burger {
  width: 36px; height: 36px; border-radius: 50%; background: var(--st-label);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  flex-shrink: 0; transition: transform 0.3s var(--ease); --lg-x: 7px; --lg-y: 7px;
}
.geo-burger:hover { transform: scale(1.06); }
.geo-burger span { display: block; width: 16px; height: 2px; background: var(--st-bedrock); }

/* ══════════ 전체 메뉴 ══════════ */
.geo-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--st-bedrock);
  display: flex; flex-direction: column; padding: 18px var(--pad-x) 32px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
  overflow-y: auto;
}
.geo-menu.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.geo-menu__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.geo-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--st-label); color: var(--st-bedrock);
  display: inline-grid; place-items: center; flex-shrink: 0;
}
.geo-close svg { width: 18px; height: 18px; }
.geo-menu__links { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; }
.geo-menu__links > a { font-size: 30px; font-weight: 600; letter-spacing: var(--track-ko);
                       line-height: 1; align-self: flex-start; --lg-x: 22px; --lg-y: 14px; }
@media (max-width: 400px) { .geo-menu__links > a { font-size: 26px; } }
.geo-group { margin-top: 36px; }
.geo-group h3 {
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--st-label-3); padding-bottom: 8px; border-bottom: 1px solid var(--st-separator);
}
.geo-group a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--st-separator);
  font-size: 14px; font-weight: 600; letter-spacing: var(--track-ko);
}
.geo-group a small { font-weight: 500; color: var(--st-label-3); font-size: 11px; letter-spacing: 0; }
.geo-group a:hover { color: var(--accent-ink); }
.geo-menu__foot { margin-top: auto; padding-top: 36px; display: flex; align-items: center;
                  justify-content: space-between; gap: 16px; }
.geo-menu__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 600;
                 color: var(--accent-ink); letter-spacing: var(--track-ko); --lg-x: 20px; --lg-y: 13px; }
.geo-menu__cta svg { width: 20px; height: 20px; }

/* ══════════ 페이지 전환 — 누른 자리에서 화면이 열린다 ══════════ */
.launch { position: fixed; inset: 0; z-index: 200; pointer-events: none;
          background: var(--st-bedrock); will-change: clip-path; }
.launch i { position: absolute; inset: 0; display: block; background: var(--st-glass-sheen);
            box-shadow: inset 0 0 0 1px var(--lg-rim), inset 0 1.5px 0 0 var(--lg-specular); }
body.is-launching .geo-page { transform: scale(0.965); opacity: 0.5; transform-origin: 50% 44%;
                              transition: transform 600ms var(--ease), opacity 420ms var(--ease); }

/* ══════════════════════════════════════════════════════════════════════════
   대시보드 조각 — Q&A와 진도표가 함께 쓴다
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 그래프 색 ──
   '완료 / 아직'은 정체성(카테고리)이 아니라 상태다. 그래서 목록의 상태 칩과
   똑같은 초록·회색을 쓴다 — 색이 가리키는 대상이 같아야 한다.
   흰 배경(#ffffff) 기준으로 검산한 값이다: 색각 이상 분리 ΔE 10.6(deutan),
   정상 시각 17.2, 배경 대비 3:1 이상. 회색은 '대기'라는 뜻이므로 채도가
   없는 것이 의도다. 다크는 뒤집지 않고 그 배경(#1c1c1e)에서 다시 골랐다. */
:root { --c-done: #1f8f43; --c-wait: #8e8e93; }
:root[data-theme="dark"] { --c-done: #28ad4b; --c-wait: #84848a; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --c-done: #28ad4b; --c-wait: #84848a; }
}

/* ── 페이지 머리의 깊이 ──
   납작한 흰 화면에 공기를 넣는다. 대기광 세 겹과, 아주 느리게 도는 나침반 씰.
   둘 다 z-index 음수라 글자 뒤에 있고, 클릭을 가로채지 않는다. */
.head-aura {
  position: absolute; inset: -34% -6% auto -18%; height: 640px; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(42% 56% at 14% 34%, rgba(0,136,255,0.17), transparent 68%),
    radial-gradient(38% 50% at 70% 6%,  rgba(97,85,245,0.13), transparent 70%),
    radial-gradient(32% 46% at 48% 66%, rgba(52,199,89,0.09), transparent 72%);
  filter: blur(10px);
}
.head-seal {
  position: absolute; right: 0; top: clamp(30px, 5vw, 66px);
  width: clamp(160px, 26vw, 300px); height: clamp(160px, 26vw, 300px);
  z-index: -1; color: var(--accent); opacity: 0.07; pointer-events: none;
  animation: sealSpin 120s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@media (max-width: 700px) { .head-seal { opacity: 0.05; top: auto; bottom: -20px; } }

/* ── 게시판형 페이지의 머리 ──
   Q&A · 진도표 · 건의 · 기기문의가 함께 쓴다. 네 페이지가 각자 복사해 두었더니
   패딩과 행간이 조금씩 어긋나 있었다(38 vs 40, 0.88 vs 0.9 …). 한 곳에 둔다.
   제목이 긴 페이지는 --sheet-title-size 만 덮어쓰면 된다. */
.sheet-head { position: relative; padding-block: clamp(38px, 6.5vw, 82px) clamp(18px, 2.4vw, 28px); }
.sheet-num {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-wide);
  text-transform: uppercase; color: var(--accent-ink);
}
.sheet-num svg { width: 13px; height: 13px; }
.sheet-title {
  margin-top: 12px;
  font-size: var(--sheet-title-size, clamp(3rem, 11vw, 7.5rem)); line-height: 0.9;
  font-weight: 600; letter-spacing: -0.045em; text-transform: uppercase;
}
/* 제목의 둘째 낱말을 흐리게 — Project **Guide** 처럼 */
.sheet-title em { font-style: normal; color: var(--st-label-3); }
.sheet-meta { margin-top: 16px; max-width: 46ch; font-size: clamp(0.875rem, 1.3vw, 1rem);
              line-height: 1.65; color: var(--st-label-2); letter-spacing: var(--track-ko); }
.admin-header-row { position: absolute; top: clamp(38px, 6.5vw, 82px); right: 0;
                    display: flex; align-items: flex-start; gap: 8px; }

/* ── 현황 패널 ── */
.panel {
  position: relative; margin-top: clamp(24px, 3.4vw, 40px);
  background: var(--st-surface); border: 1px solid var(--st-separator);
  border-radius: var(--st-r-page); box-shadow: var(--st-shadow-med);
}
.panel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 15px clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--st-separator);
}
.panel__cap {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-wide);
  text-transform: uppercase; color: var(--st-label-3);
}
.panel__spacer { flex: 1; }
.panel__toggle {
  font-size: 11.5px; font-weight: 600; color: var(--st-label-3);
  padding: 6px 12px; border-radius: var(--st-r-full); letter-spacing: var(--track-ko);
  transition: background var(--st-dur-fast) var(--st-ease), color var(--st-dur-fast) var(--st-ease);
}
.panel__toggle:hover { background: var(--st-fill-2); color: var(--st-label); }
.panel__toggle[aria-pressed="true"] { background: var(--st-accent-soft); color: var(--accent-ink); }

/* ── 히어로 숫자 ──
   한 화면에 딱 하나. 비례 숫자(tnum 아님) — 큰 활자에서 모든 자리를 0폭으로
   맞추면 '121' 같은 수가 헐렁해 보인다. */
.rate__n {
  font-size: clamp(2.6rem, 7vw, 3.6rem); font-weight: 600; line-height: 1;
  letter-spacing: -0.035em; color: var(--st-label);
}
.rate__n i { font-style: normal; font-size: 0.4em; font-weight: 600;
             letter-spacing: -0.01em; color: var(--st-label-3); margin-left: 3px; }
.rate__l { margin-top: 9px; font-size: 12.5px; color: var(--st-label-2); letter-spacing: var(--track-ko); }
.rate__l b { color: var(--st-label); font-weight: 700; }

/* ── 미터 — 두 조각 사이는 선이 아니라 2px의 '면 색' 틈이 가른다 ── */
.meter { display: flex; gap: 2px; height: 10px; margin-top: 20px; }
.meter__seg { height: 100%; min-width: 3px; transition: width 760ms var(--st-spring-smooth); }
.meter__seg--done { background: var(--c-done); border-radius: 5px 0 0 5px; }
.meter__seg--wait { background: var(--c-wait); border-radius: 0 5px 5px 0; }
.meter[data-wait="0"] .meter__seg--done { border-radius: 5px; }
.meter[data-wait="0"] .meter__seg--wait { display: none; }

.legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; }
.legend span { display: inline-flex; align-items: center; gap: 7px;
               font-size: 12px; color: var(--st-label-2); letter-spacing: var(--track-ko); }
.legend i { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }
.legend b { color: var(--st-label); font-weight: 700; font-variant-numeric: tabular-nums; }
.legend .k--done { background: var(--c-done); }
.legend .k--wait { background: var(--c-wait); }

/* ── 표 — 색에만 기대지 않기 위한 같은 값의 텍스트판 ── */
.dtable { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.dtable th, .dtable td { padding: 9px 12px; text-align: right; font-size: 12.5px;
                         border-bottom: 1px solid var(--st-separator); letter-spacing: var(--track-ko); }
.dtable th { font-size: 10px; font-weight: 600; letter-spacing: var(--track-wide);
             text-transform: uppercase; color: var(--st-label-3); }
.dtable th:first-child, .dtable td:first-child { text-align: left; }
.dtable tfoot td { font-weight: 700; border-bottom: 0; }
.dtable td { color: var(--st-label-2); }
.dtable td:first-child, .dtable tfoot td { color: var(--st-label); }

/* ── 상태 칩 ── */
.geo-state {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px; border-radius: var(--st-r-full);
  font-size: 10.5px; font-weight: 700; letter-spacing: var(--track-ko);
  white-space: nowrap; flex-shrink: 0;
}
.geo-state::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.geo-state--done { background: var(--st-success-soft); color: var(--st-success-ink); }
.geo-state--now  { background: var(--st-accent-soft);  color: var(--accent-ink); }
.geo-state--wait { background: var(--st-fill-2);       color: var(--st-label-3); }

/* ══════════════════════════════════════════════════════════════════════════
   게시판 부품 — Q&A · 진도표 · 건의 · 기기문의가 함께 쓴다
   네 페이지가 각자 복사해 두었던 것들이다. 값이 같아 보여도 복사본은
   반드시 어긋난다(실제로 진도표 버튼만 36px/16px로 벌어져 있었다).
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 버튼 ── */
.btn-solid, .btn-outline, .btn-sub, .submit-btn-small {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 38px; padding: 0 18px; border-radius: var(--st-r-full);
  font-size: 13px; font-weight: 600; letter-spacing: var(--track-ko);
  white-space: nowrap; cursor: pointer; border: 0;
  transition: background var(--st-dur-fast) var(--st-ease), color var(--st-dur-fast) var(--st-ease),
              border-color var(--st-dur-fast) var(--st-ease), transform var(--st-dur-instant) var(--st-ease);
}
.btn-solid, .submit-btn-small { background: var(--st-accent-solid); color: #fff; }
.btn-solid:hover, .submit-btn-small:hover { background: var(--st-accent-hover); }
.btn-outline { background: transparent; color: var(--st-label);
               border: 1px solid var(--st-border-control); height: 34px; padding: 0 14px; font-size: 12px; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-outline.active { background: var(--st-accent-solid); color: #fff; border-color: transparent; }
.btn-sub { background: var(--st-fill-2); color: var(--st-label-2); }
.btn-sub:hover { background: var(--st-fill); color: var(--st-label); }
.btn-solid:active, .btn-outline:active, .btn-sub:active, .submit-btn-small:active { transform: scale(0.97); }
.submit-btn-small { height: 32px; padding: 0 14px; font-size: 12px; }
.btn-solid:disabled, .btn-sub:disabled, .btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }

/* 목록 안의 작은 글자 버튼 — 수정 · 삭제처럼 평소엔 물러나 있어야 하는 것 */
.action-txt {
  padding: 4px 10px; border-radius: var(--st-r-full);
  font-size: 11px; font-weight: 600; letter-spacing: var(--track-ko); color: var(--st-label-3);
  transition: background var(--st-dur-fast) var(--st-ease), color var(--st-dur-fast) var(--st-ease);
}
.action-txt:hover { background: var(--st-fill-2); color: var(--st-label); }
.action-txt.delete:hover { background: var(--st-danger-soft); color: var(--st-danger-ink); }

/* ── 입력칸 ── */
.form-input {
  width: 100%; padding: 11px 14px;
  background: var(--st-bedrock); color: var(--st-label);
  border: 1px solid var(--st-separator); border-radius: var(--st-r-element);
  font-family: inherit; font-size: 14px; letter-spacing: var(--track-ko);
  transition: border-color var(--st-dur-fast) var(--st-ease), box-shadow var(--st-dur-fast) var(--st-ease);
}
.form-input::placeholder { color: var(--st-label-3); }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: var(--st-ring);
                    background: var(--st-surface); }
select.form-input { cursor: pointer; }

/* ── 모달 — 두꺼운 유리 ── */
.custom-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 120;
  background: rgba(0,0,0,0.42); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 20px;
}
.custom-modal-box {
  width: 100%; max-width: 400px; padding: 26px; border-radius: var(--st-r-page);
  background: var(--st-glass-sheen), var(--st-mat-thick-bg);
  -webkit-backdrop-filter: var(--st-mat-thick-blur); backdrop-filter: var(--st-mat-thick-blur);
  box-shadow: inset 0 0.5px 0 0 var(--st-glass-specular),
              inset 0 0 0 0.5px var(--st-glass-rim), var(--st-shadow-high);
  animation: modalIn var(--st-spring-snappy-dur) var(--st-spring-snappy) both;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.94) translateY(8px); } to { opacity: 1; transform: none; } }
.custom-modal-box h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--st-label); }
.custom-modal-box p { margin-top: 8px; font-size: 13.5px; line-height: 1.7;
                      color: var(--st-label-2); letter-spacing: var(--track-ko); }
.custom-modal-box input {
  display: none; width: 100%; margin-top: 14px; padding: 11px 14px;
  background: var(--st-surface); color: var(--st-label);
  border: 1px solid var(--st-border-control); border-radius: var(--st-r-element);
  font-family: inherit; font-size: 14px;
}
.custom-modal-box input:focus { outline: none; border-color: var(--accent); box-shadow: var(--st-ring); }
.custom-modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }
.custom-modal-actions button {
  height: 38px; padding: 0 18px; border-radius: var(--st-r-full);
  font-size: 13px; font-weight: 600; letter-spacing: var(--track-ko);
}
.custom-modal-actions .cancel { background: var(--st-fill-2); color: var(--st-label-2); }
.custom-modal-actions .cancel:hover { background: var(--st-fill); color: var(--st-label); }
.custom-modal-actions .confirm { background: var(--st-accent-solid); color: #fff; }
.custom-modal-actions .confirm:hover { background: var(--st-accent-hover); }

.ico { display: inline-block; vertical-align: middle; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) { .custom-modal-box { animation: none; } }

/* ══════════ 문서형 페이지 골격 ══════════ */
.geo-page { position: relative; z-index: 1; min-height: 100vh; min-height: 100dvh;
            display: flex; flex-direction: column; }
/* 본문 폭 — 페이지마다 .sheet / .wrap 이라는 다른 이름으로 같은 값을 적어
   두고 있었다. 이름은 그대로 두되 값은 여기 한 줄만 본다. */
.geo-shell, .sheet, .wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: var(--pad-x); }

/* 머리 아래 구분선 — 목록형 페이지가 본문과 머리를 가를 때 */
.sheet-rule { margin-top: clamp(28px, 4vw, 46px); height: 1px; background: var(--st-separator); }
/* 눈썹 글자 — .sheet-num 과 같되 기본이 회색이다 */
.geo-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: var(--track-wide);
  text-transform: uppercase; color: var(--st-label-3);
}
.geo-eyebrow--accent { color: var(--accent-ink); }

/* 페이지 상단 배경 — 메인의 지구 대신 옅은 대기광으로 연결감만 남긴다 */
.geo-aura {
  /* 좌우로 삐져나가면 가로 스크롤을 만든다. 위로만 번지게 두고 폭은 가둔다. */
  position: absolute; inset: -20% 0 auto 0; height: 560px; z-index: -1; pointer-events: none;
  background:
    radial-gradient(46% 60% at 18% 30%, rgba(0,136,255,0.13), transparent 70%),
    radial-gradient(40% 55% at 78% 12%, rgba(97,85,245,0.10), transparent 70%);
  filter: blur(6px);
}

.geo-main { flex: 1; padding-bottom: clamp(48px, 7vw, 96px); }

.geo-foot {
  border-top: 1px solid var(--st-separator);
  padding-block: 26px 34px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em; color: var(--st-label-3);
  line-height: 1.6; overflow-wrap: normal; word-break: keep-all;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.geo-foot a { color: var(--st-label-3); --lg-x: 12px; --lg-y: 7px; }
.geo-foot a:hover { color: var(--accent-ink); }

/* 섹션 제목 */
.geo-sec { margin-top: clamp(34px, 5vw, 64px); }
.geo-sec__head { display: flex; align-items: baseline; justify-content: space-between;
                 gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.geo-sec__head h2 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 700;
                    letter-spacing: -0.02em; }

@media (prefers-reduced-motion: reduce) {
  .lg::before { transition: opacity 140ms linear; transform: none !important; }
  .geo-menu { transition-duration: 1ms; }
  .geo-drop { transition: opacity 120ms linear; }
  .geo-drop__panel.is-on .geo-drop__cap,
  .geo-drop__panel.is-on .geo-drop__link { animation: none; }
}
