/* ─────────────────────────────────────────────────────────────────
   K-교육특별시 김대중 캠페인 사이트 — Stylesheet
   K-modern: Pretendard + 한자 stamps · navy/blue/mint · K- motifs
   ───────────────────────────────────────────────────────────────── */

:root {
  --c-primary: #0B1F3A;
  --c-primary-2: #1D4ED8;
  --c-accent: #10B981;
  --c-gold: #F59E0B;

  --c-navy: #0B1F3A;
  --c-blue: #1D4ED8;
  --c-sky: #E0F2FE;
  --c-mint: #10B981;

  --c-bg: #F8FAFC;          /* 중립 베이스 — slate-50 */
  --c-bg-2: #FFFFFF;
  --c-bg-tint: #F1F5F9;
  --c-text: #0B1F3A;
  --c-muted: #475569;
  --c-line: rgba(11, 31, 58, 0.08);

  --r-card: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 0.5px 0 rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 0 rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(11, 31, 58, 0.18);

  --max: 1240px;
  --pad-x: 20px;
  --section-y: 96px;

  --font-sans: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", system-ui, sans-serif;
  --font-serif: "Noto Serif KR", "Nanum Myeongjo", ui-serif, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

html[data-dark="1"] {
  --c-bg: #0A1426;
  --c-bg-2: #0F1E36;
  --c-text: #F1F5F9;
  --c-muted: #94A3B8;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-sky: rgba(29, 78, 216, 0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "tnum";
  letter-spacing: -0.01em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a, button, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(29, 78, 216, 0.16);
}

@media (max-width: 768px) {
  :root { --pad-x: 16px; --section-y: 56px; }
}

.page { min-height: 100vh; overflow: clip; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
#top,
#about,
#vision,
#achievements,
#promises,
#news,
#support,
#contact {
  scroll-margin-top: 78px;
}

/* ── Section Remote ────────────────────────────────────────────── */
.section-remote {
  position: fixed;
  top: 50%;
  right: max(14px, env(safe-area-inset-right));
  z-index: 88;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(11, 31, 58, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform: translateY(-50%);
  transition: opacity .2s ease, transform .2s ease;
}
html[data-dark="1"] .section-remote {
  background: rgba(15, 30, 54, 0.74);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-remote.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(10px);
}
.section-remote-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--c-muted);
  transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
}
.section-remote-link:hover,
.section-remote-link:focus-visible {
  color: var(--c-text);
  background: rgba(29, 78, 216, 0.07);
  border-color: rgba(29, 78, 216, 0.12);
  outline: none;
}
.section-remote-link.is-active {
  color: #fff;
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateY(-1px);
}
.section-remote-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.62;
}
.section-remote-num {
  position: absolute;
  inset: auto 0 5px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.58;
}
.section-remote-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translate(4px, -50%);
  padding: 7px 10px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
html[data-dark="1"] .section-remote-label {
  background: rgba(15, 30, 54, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-remote-link:hover .section-remote-label,
.section-remote-link:focus-visible .section-remote-label,
.section-remote-link.is-active .section-remote-label {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (min-width: 1320px) {
  .section-remote {
    right: max(18px, calc((100vw - var(--max)) / 2 - 76px));
  }
}
@media (max-width: 1180px) {
  .section-remote {
    right: 10px;
    padding: 7px;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(11, 31, 58, 0.1);
  }
  .section-remote-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 12px;
  }
  .section-remote-label { display: none; }
}
@media (max-width: 768px) {
  .section-remote {
    top: auto;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 10px));
    width: auto;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    padding: 6px;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    transform: none;
  }
  .section-remote.is-hidden { transform: translateY(10px); }
  .section-remote-link[data-mobile-hidden="true"] {
    display: none;
  }
  .section-remote-link {
    width: 100%;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    flex-direction: column;
    gap: 3px;
    padding: 5px 4px;
    border-radius: 14px;
    scroll-snap-align: center;
  }
  .section-remote-dot {
    width: 5px;
    height: 5px;
  }
  .section-remote-num { display: none; }
  .section-remote-label {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: currentColor;
    font-size: 9.5px;
    line-height: 1.05;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    transform: none;
  }
  .section-remote-link:hover .section-remote-label,
  .section-remote-link:focus-visible .section-remote-label,
  .section-remote-link.is-active .section-remote-label {
    transform: none;
  }
}
@media (max-width: 380px) {
  .section-remote {
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    width: auto;
    max-width: none;
    gap: 2px;
    padding: 5px;
  }
  .section-remote-link {
    width: 100%;
    height: 40px;
    min-height: 40px;
    border-radius: 13px;
  }
  .section-remote-label {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-remote,
  .section-remote-link,
  .section-remote-label {
    transition: none;
  }
}

/* ── Entry / Scroll Motion System ─────────────────────────────── */
.entry-effect {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
  background: var(--c-bg);
  animation: entry-effect-hide 1.35s cubic-bezier(.2,.8,.2,1) forwards;
}
.entry-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(11, 31, 58, 0.08) 0 1px,
      transparent 1px 9vw);
  opacity: 0;
  animation: entry-grid-flash 1.05s ease-out forwards;
}
.entry-effect-sweep {
  position: absolute;
  inset: -16%;
  background: linear-gradient(105deg,
    transparent 0 38%,
    rgba(29, 78, 216, 0.18) 42%,
    rgba(16, 185, 129, 0.16) 50%,
    transparent 58% 100%);
  transform: translateX(-110%) skewX(-12deg);
  animation: entry-sweep 1.08s cubic-bezier(.2,.8,.2,1) forwards;
}
.entry-effect-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-primary-2);
  opacity: 0.7;
  transform: scaleY(0);
  transform-origin: top;
  animation: entry-line-draw 0.78s cubic-bezier(.2,.8,.2,1) forwards;
}
.entry-effect-line-1 { left: 18%; animation-delay: 90ms; }
.entry-effect-line-2 { left: 50%; animation-delay: 150ms; background: var(--c-mint); }
.entry-effect-line-3 { left: 82%; animation-delay: 210ms; }

@keyframes entry-effect-hide {
  0%, 58% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes entry-grid-flash {
  0% { opacity: 0; transform: scaleX(0.98); }
  18%, 52% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1.02); }
}
@keyframes entry-sweep {
  0% { transform: translateX(-110%) skewX(-12deg); }
  100% { transform: translateX(110%) skewX(-12deg); }
}
@keyframes entry-line-draw {
  0% { transform: scaleY(0); opacity: 0; }
  28% { opacity: 0.75; }
  100% { transform: scaleY(1); opacity: 0; }
}

.reveal-prep.reveal-prep {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.72s cubic-bezier(.2,.8,.2,1),
    transform 0.72s cubic-bezier(.2,.8,.2,1),
    filter 0.72s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal-prep.reveal-left { transform: translate3d(-22px, 0, 0); }
.reveal-prep.reveal-scale { transform: translate3d(0, 18px, 0) scale(0.975); }
.reveal-prep.reveal-soft { transform: translate3d(0, 12px, 0); filter: blur(2px); }
.reveal-prep.reveal-in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.reveal-prep.reveal-prep .prom-feat-bar-fill,
.reveal-prep.reveal-prep .prom-card-bar-fill {
  transform: scaleX(0.04);
  transform-origin: left center;
  transition: transform 0.95s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 240ms);
}
.reveal-prep.reveal-prep.reveal-in .prom-feat-bar-fill,
.reveal-prep.reveal-prep.reveal-in .prom-card-bar-fill {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .entry-effect { display: none; }
  .reveal-prep.reveal-prep,
  .reveal-prep.reveal-left,
  .reveal-prep.reveal-scale,
  .reveal-prep.reveal-soft {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .reveal-prep.reveal-prep .prom-feat-bar-fill,
  .reveal-prep.reveal-prep .prom-card-bar-fill {
    transform: none;
    transition: none;
  }
}

/* ── HEADER ────────────────────────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: rgba(248, 250, 252, 0.6);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
html[data-dark="1"] .hdr { background: rgba(10, 20, 38, 0.6); }
.hdr-scrolled {
  background: rgba(248, 250, 252, 0.85);
  border-color: var(--c-line);
}
html[data-dark="1"] .hdr-scrolled { background: rgba(10, 20, 38, 0.85); }

.hdr-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.hdr-logo {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
}
.hdr-logo-kr { color: var(--c-primary); }
.hdr-logo-divider { color: var(--c-muted); font-weight: 400; }
.hdr-logo-en {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; color: var(--c-muted);
  letter-spacing: 0.08em;
}

.hdr-nav { display: flex; gap: 4px; }
.hdr-nav a {
  display: inline-flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 8px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  transition: background .15s;
}
.hdr-nav a:hover { background: rgba(11, 31, 58, 0.05); }
html[data-dark="1"] .hdr-nav a:hover { background: rgba(255, 255, 255, 0.06); }
.hdr-nav-en {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600; color: var(--c-muted);
  letter-spacing: 0.1em;
}
.hdr-nav-kr { color: var(--c-text); }

@media (max-width: 1024px) { .hdr-nav { display: none; } }

.hdr-actions { display: flex; align-items: center; gap: 10px; }
.hdr-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--c-primary); color: #fff;
  font-size: 13px; font-weight: 600;
  transition: transform .15s, box-shadow .15s;
}
.hdr-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hdr-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--c-line); border-radius: 10px;
  background: var(--c-bg-2); color: var(--c-text);
  align-items: center; justify-content: center;
  cursor: pointer;
}
@media (max-width: 1024px) { .hdr-burger { display: inline-flex; } .hdr-cta { display: none; } }

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.mm {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
}
.mm-open { pointer-events: auto; }
.mm-bg {
  position: absolute; inset: 0;
  background: rgba(11, 31, 58, 0.4);
  opacity: 0; transition: opacity .3s;
}
.mm-open .mm-bg { opacity: 1; }
.mm-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--c-primary);
  color: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
  overflow-y: auto;
}
.mm-open .mm-panel { transform: translateX(0); }

.mm-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mm-logo { display: flex; flex-direction: column; gap: 2px; }
.mm-logo-kr { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.mm-logo-en { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }
.mm-x {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  background: transparent; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.mm-nav {
  flex: 1;
  padding: 16px 24px;
  display: flex; flex-direction: column;
}
.mm-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateX(20px);
  transition: opacity .4s, transform .4s;
}
.mm-open .mm-link { opacity: 1; transform: translateX(0); }
.mm-link-row {
  display: flex; align-items: center; justify-content: space-between;
}
.mm-link-en {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.mm-link-kr { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }

.mm-foot {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 16px;
}
.mm-foot-quote {
  font-size: 22px; font-weight: 800; line-height: 1.3; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
}
.mm-sns { display: flex; gap: 8px; }
.mm-sns a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background .15s;
}
.mm-sns a:hover { background: rgba(255,255,255,0.1); }
.mm-foot-mark {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
}

/* ── HERO common ──────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center;
  padding: 80px 0 96px;
  position: relative; z-index: 2;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 72px; }
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.mob-only { display: none; }
@media (max-width: 600px) { .mob-only { display: inline; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; }

.hero-headline {
  margin: 0;
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero-headline-A {
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
}
.hl-line { display: block; }
.hl-comma { color: var(--c-mint); font-weight: 900; margin-left: 4px; }
.hl-accent { color: var(--c-mint); }

.hero-headline-B {
  color: var(--c-primary);
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.1;
}
.underline-stroke {
  position: relative; display: inline-block;
}
.underline-stroke::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 14px; background: var(--c-mint); opacity: 0.35;
  z-index: -1; border-radius: 2px;
}

.hero-headline-C {
  color: #fff;
  font-size: clamp(40px, 9vw, 96px);
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1;
  word-break: keep-all;
  max-width: 100%;
}
@media (max-width: 640px) {
  .hero-headline-C {
    font-size: clamp(36px, 11vw, 56px);
  }
}
.hl-block { display: block; }
.hero-headline-C em {
  font-style: normal;
  color: #FFD43B;
  -webkit-text-fill-color: #FFD43B;
  font-family: var(--font-serif);
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(11,31,58,0.35);
}

/* ── Hero C 헤드라인 인터랙션 ──────────────────────────────────── */
.hl-interactive .hl-ch {
  display: inline-block;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), color .25s;
  will-change: transform;
}
.hl-interactive:hover .hl-ch,
.hl-interactive.is-ambient .hl-ch {
  animation: hl-bob .9s ease forwards;
}
@keyframes hl-bob {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  60%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
/* em은 통째로 더 강하게 들썩 */
.hl-interactive:hover .hl-em,
.hl-interactive.is-ambient .hl-em {
  display: inline-block;
  animation: hl-bob-em .9s ease forwards;
}
@keyframes hl-bob-em {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-14px) scale(1.08) rotate(-2deg); }
  60%  { transform: translateY(3px) scale(1) rotate(1deg); }
  100% { transform: translateY(0) scale(1); }
}

.hero-sub {
  margin: 0;
  font-size: 18px; line-height: 1.6; letter-spacing: -0.01em;
  text-wrap: pretty;
}
.hero-sub-A { color: rgba(255, 255, 255, 0.78); font-size: clamp(16px, 1.4vw, 20px); }
.hero-sub-A em { font-style: normal; color: #fff; font-weight: 700; }
.hero-sub-B { color: var(--c-muted); }
.hero-sub-C { color: rgba(255,255,255,0.85); text-align: center; font-size: clamp(15px, 1.5vw, 19px); }

.hero-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.hero-meta strong { color: #fff; font-size: 16px; letter-spacing: 0.2em; font-weight: 700; }
.hero-meta-divider { display: inline-block; width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ctas-C { justify-content: center; margin-top: 24px; }

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 700; letter-spacing: -0.005em;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.cta:hover,
.cta:active,
.cta.is-ambient { transform: translateY(-1px); }
.cta-primary { background: var(--c-mint); color: #fff; box-shadow: 0 8px 28px -10px rgba(16,185,129,0.6); }
.cta-primary:hover { background: #059669; }
.cta-leading-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(255,255,255,0.18); color: #fff;
  margin-right: 2px;
}
.cta-secondary { background: transparent; color: currentColor; border: 1px solid currentColor; }
.hero-A .cta-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero-A .cta-secondary:hover { background: rgba(255,255,255,0.1); }
.hero-B .cta-primary { background: var(--c-primary-2); box-shadow: 0 8px 28px -10px rgba(29, 78, 216, 0.5); }
.hero-B .cta-primary:hover { background: #1E40AF; }
.hero-B .cta-secondary { color: var(--c-primary); border-color: var(--c-primary); background: #fff; }
.cta-lg { padding: 16px 28px; font-size: 16px; }

/* Hero stats row */
.hero-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.hero-stat-num span { color: var(--c-mint); }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; letter-spacing: 0.04em; }

/* Hero backgrounds */
.hero-bg-navy {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #08172E 0%, #0B1F3A 50%, #0E2A53 100%);
  z-index: 0;
}
.hero-bg-light {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--c-sky) 0%, var(--c-bg) 60%);
  z-index: 0;
}
html[data-dark="1"] .hero-bg-light { background: linear-gradient(180deg, #0F1E36 0%, var(--c-bg) 60%); }
.hero-bg-grad {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--c-primary-2) 0%, var(--c-primary) 70%);
  z-index: 0;
}

.beam {
  position: absolute; pointer-events: none;
}
.beam-A {
  top: -10%; right: -10%; width: 70%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.25) 0%, transparent 60%);
  filter: blur(40px);
}
.beam-B {
  top: -20%; right: -10%; width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.4) 0%, transparent 70%);
  filter: blur(30px);
}
.beam-C {
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 60%);
  filter: blur(20px);
}
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.k-stamp {
  position: absolute; right: -40px; bottom: -40px;
  font-family: var(--font-serif); font-weight: 900;
  pointer-events: none; user-select: none;
}
.k-stamp span { font-size: 480px; line-height: 1; }
@media (max-width: 900px) { .k-stamp span { font-size: 280px; } }

/* Portrait */
.portrait-block {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-sky);
  box-shadow: var(--shadow-lg);
}
.portrait-svg { width: 100%; height: 100%; }
.portrait-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% 30%;
  display: block;
}
.portrait-block::after {
  /* subtle vignette so the tag stays readable */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.45), rgba(11,31,58,0) 38%);
  pointer-events: none;
}
.portrait-tag {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(11, 31, 58, 0.85); color: #fff;
  font-size: 12px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.portrait-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* When photos are off — typeblock placeholder */
.portrait-typeblock {
  position: relative;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.hero-B .portrait-typeblock {
  background: linear-gradient(160deg, #fff 0%, var(--c-sky) 100%);
  border-color: rgba(11,31,58,0.08);
  color: var(--c-primary);
}
.portrait-typeblock-inner {
  position: relative;
  height: 100%;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ko-vertical {
  font-family: var(--font-serif);
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: currentColor;
  opacity: 0.92;
  text-align: right;
}
.hero-A .ko-vertical { color: #fff; }
.portrait-meta { font-size: 12px; }
.portrait-meta-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  opacity: 0.55; margin-bottom: 8px;
}
.portrait-meta-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.portrait-meta-sub { font-size: 12px; opacity: 0.65; }

.portrait-A {}
.portrait-B {}

/* Hero quote (variant B) */
.hero-quote {
  position: relative;
  margin-top: 8px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  border-left: 3px solid var(--c-mint);
  box-shadow: var(--shadow-sm);
}
html[data-dark="1"] .hero-quote { background: var(--c-bg-2); }
.hero-quote-mark {
  position: absolute; top: 4px; right: 16px;
  font-family: var(--font-serif); font-size: 64px; font-weight: 900;
  color: var(--c-mint); opacity: 0.3; line-height: 1;
}
.hero-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700; color: var(--c-primary);
}
.hero-quote span {
  display: block; margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 400; color: var(--c-muted);
  letter-spacing: 0;
}

/* Hero variant C scene */
.hero-grid-C {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 26px;
  padding: 80px 0 80px;
}
.hero-eyebrow-row { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 0 auto; }
.hero-event-row {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  z-index: 6;
  align-items: center;
  justify-items: stretch;
  width: min(390px, calc(100vw - 32px));
  margin: 8px auto -2px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-event-row .hero-badge {
  width: 100%;
  min-height: 36px;
  padding: 8px 14px;
  justify-content: center;
  border-color: rgba(255,255,255,0.82) !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none;
  font-weight: 900;
}
.hero-event-row .hero-badge-dot {
  background: currentColor !important;
  opacity: 0.72;
}
.hero-mobile-kakao-cta {
  display: none;
}
@media (max-width: 640px) {
  .hero-grid-C {
    position: relative;
    left: calc((100dvw - 100%) / 2);
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    justify-items: center;
    align-items: center;
    gap: 20px;
    padding-top: 80px;
    padding-bottom: 72px;
  }
  .hero-ctas-C { display: none; }
  .hero-mobile-kakao-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    justify-self: center;
    box-sizing: border-box;
    width: min(328px, 100%);
    min-height: 58px;
    margin: 2px auto 0;
    padding: 10px 16px;
    border: 1px solid rgba(255, 232, 0, 0.72);
    border-radius: 18px;
    background: #FEE500;
    color: #121212;
    box-shadow: 0 16px 36px -22px rgba(3, 7, 18, 0.86);
  }
  .hero-mobile-kakao-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.08);
  }
  .hero-mobile-kakao-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
    text-align: left;
  }
  .hero-mobile-kakao-copy strong {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
  }
  .hero-mobile-kakao-copy small {
    font-size: 11px;
    font-weight: 800;
    color: rgba(18, 18, 18, 0.58);
    letter-spacing: 0;
  }
  .hero-event-row {
    justify-self: center;
    width: min(360px, 100%);
    gap: 6px;
    padding: 0;
    border-radius: 18px;
    background: transparent;
  }
  .hero-event-row .hero-badge {
    flex: 1 1 0;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 38px;
    padding: 7px 5px;
    font-size: 10px;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-headline-C,
  .hero-sub-C,
  .hero-c-stage,
  .hero-mobile-kakao-cta {
    justify-self: center;
  }
  .hero-headline-C {
    width: 100%;
    max-width: 360px;
  }
  .hero-sub-C {
    width: 100%;
    max-width: 320px;
  }
}
.hero-row-portraits { max-width: 480px; margin: 0 auto; border-radius: 20px; overflow: hidden; }
.hero-scene-svg { width: 100%; height: auto; }

/* Hero C 전용 실사 포트레이트 — Desktop stage (사용자 에디트 버전) */
.hero-c-stage {
  width: 100%;
  display: flex; justify-content: center;
  margin: 8px auto 12px;
  container-type: inline-size;
  /* tweakable offsets — Tweaks 패널에서 주입 */
  --photo-x: 0px;
  --photo-y: 0px;
  --photo-scale: 1;
  --yellow-x: 0px;
  --yellow-y: 0px;
  --name-x: 0px;
  --name-y: 0px;
}
.hero-c-stage-frame {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 720 / 450;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: end;
  isolation: isolate;
  overflow: visible;
  container-type: inline-size;
}
.hero-c-stage-frame::before {
  content: "";
  position: absolute;
  inset: 7% 6% 8% 6%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 24% 52%, rgba(255, 212, 59, 0.20) 0%, transparent 34%),
    radial-gradient(circle at 72% 46%, rgba(255, 255, 255, 0.14) 0%, transparent 38%),
    linear-gradient(120deg, rgba(255,255,255,0.07), transparent 46%);
  filter: blur(12px);
  opacity: 0.72;
  z-index: 0;
  transform: translate3d(calc(var(--mx, 0) * -5px), calc(var(--my, 0) * -4px), 0);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.hero-c-stage:hover .hero-c-stage-frame::before,
.hero-c-stage.is-ambient .hero-c-stage-frame::before {
  opacity: 1;
}
.hero-c-stage-ring {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  z-index: 2;
  opacity: 0.46;
  transform: translate3d(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 6px), 0) rotate(-10deg);
}
.hero-c-stage-ring-a {
  left: -2%;
  top: 9%;
  width: 45%;
  aspect-ratio: 1;
  border-color: rgba(255, 212, 59, 0.34);
  box-shadow: 0 0 42px rgba(255, 212, 59, 0.12);
  animation: hero-c-ring-drift 7.5s ease-in-out infinite;
}
.hero-c-stage-ring-b {
  right: 3%;
  bottom: 13%;
  width: 38%;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.18);
  animation: hero-c-ring-drift 8.8s ease-in-out infinite reverse;
}
/* 노란 글자 — "교육감은" — 우측 상단 */
.hero-c-typeline-yellow {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 11cqw, 78px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #FFD43B;
  text-align: right;
  white-space: nowrap;
  margin: 0 2% -2% 0;
  max-width: 100%;
  min-width: 0;
  text-shadow: 0 4px 18px rgba(11,31,58,0.4);
  z-index: 4;
  overflow: hidden;
  filter: drop-shadow(0 0 12px rgba(255, 212, 59, 0.18));
}
.hero-c-typeline-yellow::after,
.hero-c-typeline-name::after,
.hcm-yellow::after,
.hcm-name::after {
  content: "";
  position: absolute;
  inset: -20% -35%;
  background: linear-gradient(100deg, transparent 34%, rgba(255,255,255,0.78) 48%, transparent 62%);
  transform: translateX(-120%) skewX(-15deg);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: hero-c-type-sheen 4.8s cubic-bezier(.2,.8,.2,1) infinite;
}
/* 흰 글자 — "김대중" — 우측 하단 */
.hero-c-typeline-name {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  font-family: "Pretendard Variable", "Pretendard", sans-serif;
  font-weight: 900;
  font-size: clamp(96px, 17cqw, 122px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: #fff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  text-align: right;
  white-space: nowrap;
  align-self: start;
  justify-self: stretch;
  margin: 0 2% 0 0;
  max-width: 100%;
  min-width: 0;
  text-shadow: 0 8px 28px rgba(11,31,58,0.45);
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
/* 사진 — 좌측 영역 전체 (1열, 2 rows span) */
.hero-c-stage-photo-wrap {
  grid-column: 1;
  grid-row: 1 / -1;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 24px 24px 24px 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 18%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%);
  align-self: center;
  z-index: 5;
  box-shadow:
    0 22px 48px -24px rgba(11,31,58,0.58),
    inset 0 0 0 1px rgba(255,255,255,0.16);
  transform:
    translate3d(calc(var(--mx, 0) * -4px), calc(var(--my, 0) * -3px), 0)
    scale(var(--photo-scale, 1));
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s ease;
}
.hero-c-stage-photo-wrap::before,
.hero-c-stage-photo-wrap::after,
.hcm-photo-wrap::before,
.hcm-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-c-stage-photo-wrap::before,
.hcm-photo-wrap::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), transparent 28%),
    radial-gradient(circle at 52% 18%, rgba(255, 212, 59, 0.16), transparent 34%),
    linear-gradient(to top, rgba(11,31,58,0.18), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.72;
}
.hero-c-stage-photo-wrap::after,
.hcm-photo-wrap::after {
  inset: -8% -35%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.42) 48%, transparent 58%);
  transform: translateX(-125%) skewX(-16deg);
  animation: hero-c-photo-sheen 5.6s cubic-bezier(.2,.8,.2,1) infinite;
  opacity: 0.7;
}
.hero-c-stage:hover .hero-c-stage-photo-wrap,
.hero-c-stage.is-ambient .hero-c-stage-photo-wrap {
  box-shadow:
    0 28px 64px -24px rgba(11,31,58,0.66),
    0 0 46px rgba(255, 212, 59, 0.14),
    inset 0 0 0 1px rgba(255,255,255,0.22);
  transform:
    translate3d(calc(var(--mx, 0) * -5px), calc(var(--my, 0) * -4px), 0)
    scale(1.015);
}
.hero-c-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: drop-shadow(0 16px 32px rgba(11, 31, 58, 0.4));
  pointer-events: none;
  /* 포인터/자동 패럴랙스 — Hero에서 --mx,--my 주입 */
  transform:
    translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -8px), 0)
    scale(1.05);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), filter .3s ease;
}
.hero-c-stage:hover .hero-c-stage-img,
.hero-c-stage.is-ambient .hero-c-stage-img {
  filter: drop-shadow(0 22px 40px rgba(56, 189, 248, 0.55)) drop-shadow(0 16px 32px rgba(11, 31, 58, 0.4));
  transform:
    translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -8px), 0)
    scale(1.08);
}

/* 글자 — 패럴랙스 */
.hero-c-typeline-yellow,
.hero-c-typeline-name {
  transform: translate3d(calc(var(--mx, 0) * 6px), calc(var(--my, 0) * 4px), 0);
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
}
.hero-c-stage:hover .hero-c-typeline-yellow,
.hero-c-stage.is-ambient .hero-c-typeline-yellow {
  transform:
    translate3d(calc(var(--mx, 0) * 7px), calc(var(--my, 0) * 5px), 0)
    rotate(-0.6deg);
  filter: drop-shadow(0 0 18px rgba(255, 212, 59, 0.32));
}
.hero-c-stage:hover .hero-c-typeline-name,
.hero-c-stage.is-ambient .hero-c-typeline-name {
  transform:
    translate3d(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 5px), 0)
    scale(1.015);
}

@keyframes hero-c-type-sheen {
  0%, 48% { transform: translateX(-125%) skewX(-15deg); opacity: 0; }
  56% { opacity: 0.82; }
  70%, 100% { transform: translateX(125%) skewX(-15deg); opacity: 0; }
}
@keyframes hero-c-photo-sheen {
  0%, 52% { transform: translateX(-125%) skewX(-16deg); opacity: 0; }
  60% { opacity: 0.7; }
  78%, 100% { transform: translateX(125%) skewX(-16deg); opacity: 0; }
}
@keyframes hero-c-ring-drift {
  0%, 100% { transform: translate3d(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 6px), 0) rotate(-10deg) scale(1); }
  50% { transform: translate3d(calc(var(--mx, 0) * 8px + 8px), calc(var(--my, 0) * 6px - 6px), 0) rotate(-4deg) scale(1.04); }
}

/* 클릭 시 stage shake */
@keyframes hero-c-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px) rotate(-0.5deg); }
  40% { transform: translateX(5px) rotate(0.4deg); }
  60% { transform: translateX(-4px) rotate(-0.3deg); }
  80% { transform: translateX(3px) rotate(0.2deg); }
}
.hero-c-stage-shake .hero-c-stage-frame {
  animation: hero-c-shake .55s cubic-bezier(.36, .07, .19, .97);
}
/* 작은 태그 라벨 (좌측 상단) */
.hero-c-stage-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(11, 31, 58, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 6;
}
.hero-c-stage-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-mint);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: pulse 2s infinite;
}

/* ── 태블릿 (641-1024px) — 사진 좌상단 + "교육감은" 우측 + "김대중" 사진 위로 겹침 ──── */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-c-stage-frame {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 720 / 410;       /* 고정 비율 — 사진과 CTA 간격 일정 유지 */
    display: block;
    position: relative;
    padding-top: 0;
    overflow: visible;
  }
  /* 사진 — 좌측, 4:5 비율 유지, frame 비율 안에 정확히 맞춤 */
  .hero-c-stage-photo-wrap {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 4 / 5;
    z-index: 1;
  }
  /* "교육감은" — 우측 상단 */
  .hero-c-typeline-yellow {
    position: absolute;
    top: 18%;
    right: 4%;
    width: auto !important;
    font-size: 11cqw;
    line-height: 1 !important;
    text-align: right;
    margin: 0;
    z-index: 6;
    letter-spacing: -0.04em;
  }
  /* "김대중" — 사진 우측 영역 */
  .hero-c-typeline-name {
    position: absolute;
    top: 38%;
    right: 2%;
    left: 47%;
    width: auto;
    margin: 0;
    font-size: 24cqw;
    line-height: 0.92;
    text-align: center;
    z-index: 5;
    text-shadow: 0 8px 32px rgba(11,31,58,0.45);
  }
}

/* ── 모바일 대응 (≤640px) — desktop stage 숨김, mobile stack 노출 ──── */
.hero-c-stage-mobile { display: none; }

@media (max-width: 640px) {
  .hero-c-stage-desktop { display: none !important; }
  .hero-c-stage { overflow: hidden; }

  /* 헤드라인 사이즈 살짝 다운 — 모바일 가로 안전 */
  .hero-headline-C { font-size: clamp(34px, 10vw, 50px); }

  .hero-c-stage-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin: 4px auto 16px;
    padding: 0;
  }
	  .hcm-yellow {
	    position: relative;
	    font-family: "Pretendard Variable", "Pretendard", sans-serif;
    font-weight: 900;
    font-size: clamp(26px, 8.5vw, 36px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #FFD43B;
    text-shadow: 0 4px 14px rgba(11,31,58,0.35);
    align-self: center;
    margin: 0;
	    padding: 0;
	    overflow: hidden;
	    filter: drop-shadow(0 0 12px rgba(255, 212, 59, 0.20));
	  }
  .hcm-photo-wrap {
    position: relative;
    width: 78%;
    max-width: 260px;
    aspect-ratio: 1 / 1.15;
    border-radius: 22px 22px 22px 100px;
    overflow: hidden;
    display: block;
    background:
      radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 60%);
    box-shadow: 0 14px 28px rgba(11,31,58,0.45);
  }
  .hcm-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    pointer-events: none;
  }
  .hcm-tag {
    position: absolute;
    top: 10px; left: 10px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 12px;
    background: rgba(11, 31, 58, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.02em;
    z-index: 6;
  }
  .hcm-tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--c-mint);
    animation: pulse 2s infinite;
  }
	  .hcm-name {
	    position: relative;
	    display: block;
    font-family: "Pretendard Variable", "Pretendard", sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 18vw, 84px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #fff;
    text-shadow: 0 8px 24px rgba(11,31,58,0.45);
    align-self: center;
    margin: 0;
    padding: 0;
    text-align: center;
	    height: auto !important;
	    overflow: hidden;
	  }

  /* 모바일 미세조정 — Quick Actions, Vision, About */
  .qa-card { padding: 16px 14px; }
  .qa-num { font-size: 10px; }
  .vision-card { padding: 22px 18px; }
  .ach-card { padding: 22px 18px; }
  .prom-card { padding: 20px 16px; }
  .news-card { padding: 18px 16px; }

  /* 다크모드 한자 진하기 살짝 강화 */
  [data-dark="1"] .qa-section::before,
  [data-dark="1"] .vision-section::before,
  [data-dark="1"] .integ-section::before,
  [data-dark="1"] .prom-section::before,
	  [data-dark="1"] .ach-section::before {
	    color: rgba(255, 255, 255, 0.07);
	  }
	}

@media (prefers-reduced-motion: reduce) {
  .hero-c-stage-ring,
  .hero-c-stage-photo-wrap::after,
  .hcm-photo-wrap::after,
  .hero-c-typeline-yellow::after,
  .hero-c-typeline-name::after,
  .hcm-yellow::after,
  .hcm-name::after {
    animation: none !important;
    opacity: 0;
  }
}

/* ── 옛 클래스(.hero-c-portrait*) — 호환 alias 제거 ─────────── */
.hero-c-portrait,
.hero-c-portrait-frame,
.hero-c-portrait-bg,
.hero-c-bg-glyph,
.hero-c-bg-yellow,
.hero-c-bg-arc,
.hero-c-portrait-img,
.hero-c-portrait-overlay,
.hero-c-portrait-name,
.hero-c-portrait-role { all: unset; }

.hero-progress-strip {
  position: relative;
  max-width: 720px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.hero-progress-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: heroProgressRoll 34s linear infinite;
  will-change: transform;
}
.hero-progress-strip:hover .hero-progress-track,
.hero-progress-strip:focus-within .hero-progress-track {
  animation-play-state: paused;
}
.prog-item {
  flex: 0 0 clamp(178px, 23vw, 230px);
  min-height: 54px;
  text-align: left;
  padding: 11px 12px 10px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.prog-bar {
  display: block;
  height: 5px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
  margin-bottom: 9px;
}
.prog-bar::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w);
  background: linear-gradient(90deg, #FACC15, var(--c-mint), #34D399);
  border-radius: inherit;
}
.prog-lbl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0;
}
.prog-lbl strong {
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prog-lbl span {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  color: #A7F3D0;
}

@keyframes heroProgressRoll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 640px) {
  .hero-progress-strip {
    max-width: min(100%, 420px);
    margin-top: 18px;
    padding-top: 18px;
  }
  .hero-progress-track {
    gap: 10px;
    animation-duration: 30s;
  }
  .prog-item {
    flex-basis: 176px;
    min-height: 52px;
    padding: 10px 11px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-progress-strip {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-progress-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }
  .hero-progress-track .prog-item:nth-child(n + 5) {
    display: none;
  }
}

/* Hero marquee */
.hero-marquee {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.hero-marquee-track {
  display: flex; gap: 24px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── QUICK ACTIONS ─────────────────────────────────────────────── */
.qa-section { padding: 56px 0 16px; }
@media (max-width: 768px) { .qa-section { padding: 36px 0 8px; } }
.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .qa-grid { grid-template-columns: repeat(2, 1fr); } }
.qa-card {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.qa-card:hover,
.qa-card:active,
.qa-card.is-ambient {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-2);
}
.qa-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--c-mint); letter-spacing: 0.08em;
}
.qa-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--c-sky);
  color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 4px 0 6px;
}
.qa-kr { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--c-text); }
.qa-en { font-family: var(--font-mono); font-size: 10px; color: var(--c-muted); letter-spacing: 0.1em; }
.qa-desc { font-size: 13px; color: var(--c-muted); margin-top: 4px; }
.qa-arrow { position: absolute; top: 22px; right: 22px; color: var(--c-muted); }
.qa-card:hover .qa-arrow,
.qa-card:active .qa-arrow,
.qa-card.is-ambient .qa-arrow { color: var(--c-primary-2); }

/* ── Section Header ────────────────────────────────────────────── */
.sec-hd { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; max-width: 720px; }
.sec-hd-center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--c-primary-2); letter-spacing: 0.12em; text-transform: uppercase;
}
.sec-eyebrow-line { width: 28px; height: 1px; background: var(--c-primary-2); }
.sec-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--c-text);
}
.title-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-primary-2) 0%, var(--c-mint) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  margin: 0;
  font-size: 16px; line-height: 1.6; color: var(--c-muted);
  text-wrap: pretty;
}

/* ── VISION ────────────────────────────────────────────────────── */
.vision-section { padding: var(--section-y) 0; background: transparent; }
.vision-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 768px) { .vision-grid { grid-template-columns: 1fr; } }
.vision-mini-stats { display: flex; gap: 14px; margin: 14px 0 4px; padding: 12px 14px; background: rgba(29,78,216,0.06); border-radius: 10px; border-left: 3px solid var(--c-primary-2); }
.vision-mini-stat { display: flex; flex-direction: column; gap: 2px; }
.vision-mini-n { font-family: var(--font-mono); font-size: 14px; font-weight: 800; color: var(--c-primary); letter-spacing: -0.01em; }
.vision-mini-l { font-size: 11px; color: var(--c-text-2); letter-spacing: 0.02em; }
[data-dark="1"] .vision-mini-stats { background: rgba(96,165,250,0.10); border-left-color: #60A5FA; }
[data-dark="1"] .vision-mini-n { color: #fff; }

.vision-card {
  position: relative;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.vision-card:hover,
.vision-card:active,
.vision-card.is-ambient { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vision-card-hd { display: flex; align-items: center; justify-content: space-between; }
.vision-num {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700;
  color: var(--c-mint); letter-spacing: 0.06em;
}
.vision-stamp {
  font-family: var(--font-serif);
  font-size: 90px; font-weight: 900; line-height: 1;
  color: var(--c-primary);
  opacity: 0.08;
  letter-spacing: -0.04em;
  position: absolute; top: 18px; right: 24px;
}
.vision-en {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--c-muted); letter-spacing: 0.12em;
}
.vision-kr {
  margin: 0;
  font-size: 26px; font-weight: 900; letter-spacing: -0.025em;
  color: var(--c-primary);
  line-height: 1.2;
}
.vision-tag { margin: 0; font-size: 14px; color: var(--c-muted); font-weight: 500; }
.vision-why {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  font-style: italic;
  opacity: 0.85;
}
.vision-kpi {
  margin: 14px 0 4px;
  padding: 14px 16px;
  background: linear-gradient(135deg, color-mix(in oklch, var(--c-primary-2) 12%, transparent), color-mix(in oklch, var(--c-mint) 8%, transparent));
  border: 1px solid color-mix(in oklch, var(--c-primary-2) 18%, transparent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vision-kpi-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.vision-kpi-n {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.vision-kpi-u {
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: var(--c-primary-2);
}
.vision-kpi-l {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vision-bullets {
  margin: 8px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.vision-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--c-text);
}
.bul-tick {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--c-mint);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.vision-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-size: 13px; font-weight: 600; color: var(--c-primary-2);
}
.vision-more:hover { gap: 10px; }

/* ── ACHIEVEMENTS ──────────────────────────────────────────────── */
.ach-section {
  padding: var(--section-y) 0;
  background: var(--c-bg-2);
  color: var(--c-text);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.ach-section .container { position: relative; z-index: 1; }

.ach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .ach-grid { grid-template-columns: 1fr; } }

.ach-card {
  position: relative;
  padding: 32px;
  border-radius: var(--r-card);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ach-card:hover,
.ach-card:active,
.ach-card.is-ambient { transform: translateY(-4px); border-color: var(--c-primary-2); box-shadow: var(--shadow-md); }
.ach-kicker {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--c-mint); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  width: fit-content;
}
.ach-title {
  margin: 0;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--c-primary);
}
.ach-num {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 8px;
}
.ach-num span {
  font-family: var(--font-mono);
  font-size: clamp(48px, 5vw, 64px);
  white-space: nowrap;
  font-weight: 800;
  line-height: 1;
  color: var(--c-primary);
  letter-spacing: -0.04em;
}
.ach-num em {
  font-style: normal;
  font-size: 16px; font-weight: 700; color: var(--c-muted);
}
.ach-desc { font-size: 14px; color: var(--c-muted); margin: 0; line-height: 1.5; }
.ach-line { height: 1px; background: var(--c-line); margin: 12px 0 4px; }
.ach-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--c-muted);
}
.ach-more:hover { color: var(--c-primary-2); }

/* ── PROMISES ──────────────────────────────────────────────────── */
.prom-section { padding: var(--section-y) 0; }
.prom-hd-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.prom-hd-row .sec-hd { margin-bottom: 0; }
.prom-legend { display: flex; gap: 8px; flex-wrap: wrap; }

.prom-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: -0.005em;
}
.prom-badge-dot { width: 6px; height: 6px; border-radius: 50%; }

.prom-feat {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--c-primary-2) 0%, var(--c-primary) 100%);
  color: #fff;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.prom-feat::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 768px) { .prom-feat { grid-template-columns: 1fr; } }

.prom-feat-side { padding: 36px 36px 32px; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.prom-feat-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--c-mint); letter-spacing: 0.12em;
}
.prom-feat-title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 900;
  letter-spacing: -0.03em;
}
.prom-feat-sub {
  margin: 0;
  font-size: 15px; color: rgba(255,255,255,0.78);
}
.prom-feat-bar { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.prom-feat-bar-track {
  height: 8px; border-radius: 999px; background: rgba(255,255,255,0.15); overflow: hidden;
}
.prom-feat-bar-fill {
  height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--c-mint) 0%, #34D399 100%);
  transition: width .8s cubic-bezier(.2,.8,.2,1);
}
.prom-feat-bar-meta { display: flex; align-items: center; justify-content: space-between; }
.prom-feat-bar-pct {
  font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: #fff;
}
.prom-feat-bar-pct em { font-style: normal; font-size: 14px; opacity: 0.7; margin-left: 2px; }

.prom-feat-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-size: 13px; font-weight: 700; color: var(--c-mint);
}

.prom-feat-num {
  position: relative; z-index: 1;
  padding: 36px;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 768px) { .prom-feat-num { border-left: 0; border-top: 1px solid rgba(255,255,255,0.1); } }
.prom-feat-num-eyebrow {
  font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
}
.prom-feat-num-big {
  font-family: var(--font-mono);
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 800; line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.prom-feat-num-big span {
  font-size: 22px; font-weight: 700;
  color: var(--c-mint); letter-spacing: -0.02em;
  font-family: var(--font-sans);
  margin-left: 4px;
}
.prom-feat-num-foot { font-size: 13px; color: rgba(255,255,255,0.7); }

.prom-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 768px) { .prom-grid { grid-template-columns: 1fr; } }

/* ── Promises totals 띠 ─────────────────────────────────────── */
.prom-totals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  margin: 24px 0 18px;
}
@media (max-width: 600px) { .prom-totals { grid-template-columns: repeat(2, 1fr); } }
.prom-tot-item {
  background: var(--c-bg-2);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.prom-tot-num {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 800; line-height: 1;
  color: var(--c-text); letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.prom-tot-num em {
  font-style: normal; font-size: 14px; color: var(--c-primary-2); font-weight: 700;
}
.prom-tot-lbl {
  font-size: 11px; font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── Promises 카드 미니 progress bar ────────────────────────── */
.prom-card-bar {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
}
.prom-card-bar-track {
  flex: 1; height: 6px;
  background: var(--c-line);
  border-radius: 999px;
  overflow: hidden;
}
.prom-card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-primary-2), var(--c-mint));
  border-radius: 999px;
  transition: width .6s cubic-bezier(.2,.8,.3,1);
}
.prom-card-bar-pct {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
  min-width: 38px; text-align: right;
}
.prom-card-bar-pct em {
  font-style: normal; font-size: 10px;
  color: var(--c-muted);
  margin-left: 1px;
}

.prom-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prom-card:hover,
.prom-card:active,
.prom-card.is-ambient {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-2);
}
.prom-card-top { display: flex; align-items: center; justify-content: space-between; }
.prom-card-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--c-mint); letter-spacing: 0.06em;
}
.prom-card-title { margin: 4px 0 0; font-size: 22px; font-weight: 800; letter-spacing: -0.025em; color: var(--c-primary); }
.prom-card-desc { margin: 0; font-size: 14px; color: var(--c-muted); }
.prom-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}
.prom-card-count { font-size: 12px; color: var(--c-muted); font-weight: 600; }
.prom-card-link { font-size: 13px; font-weight: 700; color: var(--c-primary-2); display: inline-flex; align-items: center; gap: 4px; }

/* ── INTEGRITY (청렴 원년) ─────────────────────────────────────── */
.integ-section { padding: 0 0 var(--section-y); }
.integ-card {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) { .integ-card { grid-template-columns: 1fr; } }

.integ-side {
  background: linear-gradient(160deg, #B91C1C 0%, #7F1D1D 100%);
  color: #fff;
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.integ-side::before {
  content: "";
  position: absolute; inset: 12px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 12px;
}
.integ-stamp {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px;
}
.integ-stamp-en {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; opacity: 0.85;
}
.integ-stamp-kr {
  font-family: var(--font-serif);
  font-size: 64px; font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.integ-stamp-line { width: 40px; height: 1px; background: rgba(255,255,255,0.5); }
.integ-stamp-foot {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em;
  opacity: 0.7;
}

.integ-body { padding: 36px; }
.integ-body .sec-hd { margin-bottom: 24px; }
.integ-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 600px) { .integ-grid { grid-template-columns: 1fr; } }
.integ-item {
  display: flex; gap: 12px;
  padding: 16px;
  background: var(--c-bg);
  border-radius: 12px;
  border: 1px solid var(--c-line);
}
.integ-item-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: #B91C1C;
  letter-spacing: 0.06em;
}
.integ-item-t { font-size: 15px; font-weight: 800; color: var(--c-text); margin-bottom: 4px; }
.integ-item-d { font-size: 13px; color: var(--c-muted); line-height: 1.5; }

/* ── NEWS ───────────────────────────────────────────────────────── */
.news-section { padding: var(--section-y) 0; background: transparent; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
html[data-dark="1"] .news-section { background: var(--c-bg-2); }
.news-hd-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.news-hd-row .sec-hd { margin-bottom: 0; }
.news-all {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  font-size: 13px; font-weight: 600; color: var(--c-text);
}
.news-all:hover { border-color: var(--c-primary-2); color: var(--c-primary-2); }

.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* ── News 필터 칩 ──────────────────────────────────────────── */
.news-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 18px;
}
.news-chip {
  appearance: none;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--c-muted);
  cursor: pointer;
  transition: all .2s ease;
}
.news-chip:hover {
  color: var(--c-text);
  border-color: var(--c-primary-2);
}
.news-chip.is-active {
  background: var(--c-primary-2);
  color: #fff;
  border-color: var(--c-primary-2);
}

/* ── News featured 카드 ───────────────────────────────────── */
.news-feat {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 800px) { .news-feat { grid-template-columns: 1fr; } }

.news-feat-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  overflow: hidden;
}
.news-feat-thumb.has-image,
.news-thumb.has-image {
  background:
    radial-gradient(circle at 18% 22%, rgba(250, 204, 21, 0.18), transparent 34%),
    linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
}
.news-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  filter: saturate(0.94) contrast(1.02);
  transition: transform .35s ease, filter .35s ease;
}
.news-card:hover .news-thumb-img,
.news-card:active .news-thumb-img,
.news-card.is-ambient .news-thumb-img,
.news-feat:hover .news-thumb-img {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.04);
}
.news-thumb.has-image::before,
.news-feat-thumb.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,31,58,0.06), rgba(11,31,58,0.58)),
    linear-gradient(120deg, rgba(29,78,216,0.28), transparent 46%);
  pointer-events: none;
}
.news-thumb.has-image::after,
.news-feat-thumb.has-image::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: inherit;
  pointer-events: none;
}
.news-thumb-template {
  position: absolute;
  inset: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  color: #fff;
  pointer-events: none;
}
.news-thumb-kicker,
.news-thumb-source {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.news-thumb-kicker {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 8px;
  background: rgba(11,31,58,0.58);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.news-thumb-source {
  padding: 5px 9px;
  background: rgba(255,255,255,0.92);
  color: var(--c-primary);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(11,31,58,0.18);
}
.news-thumb-line {
  display: block;
  width: min(120px, 54%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FACC15, var(--c-mint));
}
.news-feat-body {
  padding: 32px 36px;
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
@media (max-width: 600px) { .news-feat-body { padding: 24px; } }

.news-feat-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--c-muted); letter-spacing: 0.04em;
}
.news-feat-dot, .news-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-muted); opacity: 0.5;
}
.news-feat-title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--c-text);
  text-wrap: pretty;
}
.news-feat-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-muted);
  text-wrap: pretty;
}
.news-feat-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px;
  font-size: 14px; font-weight: 700;
  color: var(--c-primary-2);
}
.news-feat-link:hover { gap: 10px; }
.news-tag-pill-feat {
  background: rgba(255,255,255,0.95);
  color: var(--c-primary);
}
.news-typo-feat {
  background: linear-gradient(135deg, var(--c-primary-2), var(--c-mint));
}

/* ── News 카드 메타·foot 보강 ─────────────────────────────── */
.news-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--c-line);
}
.news-views {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

.news-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover,
.news-card:active,
.news-card.is-ambient { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-sky);
}
.news-svg { width: 100%; height: 100%; }
.news-typo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  padding: 16px;
  color: #fff;
}
.news-typo-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; opacity: 0.7; }
.news-typo-no { font-family: var(--font-mono); font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; align-self: flex-end; }

.news-tag-pill {
  position: absolute; top: 10px; left: 10px;
  z-index: 4;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92); color: var(--c-primary);
  font-size: 11px; font-weight: 700; letter-spacing: -0.005em;
  backdrop-filter: blur(8px);
}
.news-meta {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--c-muted); letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.news-title {
  margin: 0;
  font-size: 15px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--c-text);
  line-height: 1.4;
  text-wrap: pretty;
}
.news-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--c-primary-2);
  margin-top: auto;
}

/* ── News board page ───────────────────────────────────────────── */
.news-board-page {
  min-height: 100vh;
  background: var(--c-bg);
}
.news-board-hero {
  padding: 40px 0 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(29, 78, 216, 0.12), transparent 36%),
    linear-gradient(180deg, #fff 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.news-board-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-board-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: auto;
  color: var(--c-muted);
  font-size: 13px;
  font-weight: 800;
}
.news-board-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.news-board-hero p {
  margin: 0;
  max-width: 680px;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.65;
}
.news-board-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.news-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  padding-top: 26px;
  padding-bottom: 60px;
}
@media (max-width: 980px) {
  .news-board-layout { grid-template-columns: 1fr; }
}
.news-board-list-wrap,
.news-board-detail {
  min-width: 0;
}
.news-board-tools {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.news-board-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.news-board-search {
  min-width: min(260px, 100%);
  flex: 1;
  max-width: 360px;
  height: 40px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--c-text);
  background: var(--c-bg-2);
  font: inherit;
  font-size: 13px;
}
.news-board-count {
  margin-bottom: 8px;
  color: var(--c-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}
.news-board-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-bg-2);
}
.news-board-row {
  display: grid;
  grid-template-columns: 82px 96px minmax(0, 1fr) 110px;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: 0;
  border-top: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
}
.news-board-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(250, 204, 21, 0.18), transparent 34%),
    linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  box-shadow: 0 14px 30px rgba(11,31,58,0.08);
}
.news-board-thumb.is-compact {
  align-self: center;
  width: 96px;
  border-radius: 10px;
}
.news-board-thumb.is-detail {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 14px;
}
.news-board-thumb.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,31,58,0.04), rgba(11,31,58,0.52)),
    linear-gradient(120deg, rgba(29,78,216,0.24), transparent 46%);
  pointer-events: none;
}
.news-board-thumb.has-image::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: inherit;
  pointer-events: none;
}
.news-board-thumb.is-compact .news-thumb-template {
  inset: 8px;
}
.news-board-thumb.is-compact .news-thumb-kicker,
.news-board-thumb.is-compact .news-thumb-source {
  display: none;
}
.news-board-thumb.is-compact .news-thumb-line {
  width: 44px;
  height: 2px;
}
.news-board-row:first-child { border-top: 0; }
.news-board-row:hover,
.news-board-row.is-active {
  background: rgba(29, 78, 216, 0.06);
}
.news-board-row.is-active {
  box-shadow: inset 3px 0 0 var(--c-primary-2);
}
.news-board-row-date,
.news-board-row-source {
  color: var(--c-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}
.news-board-row-source {
  justify-self: end;
  text-align: right;
}
.news-board-row-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.news-board-row-top {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.news-board-row-cat {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}
.news-board-row-place {
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 700;
}
.news-board-row-main strong {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.news-board-row-main em {
  color: var(--c-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-board-detail {
  position: sticky;
  top: 86px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  background: var(--c-bg-2);
  box-shadow: var(--shadow-sm);
}
.news-board-detail-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.news-board-detail-meta span {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--c-bg-tint);
  color: var(--c-muted);
  font-size: 11px;
  font-weight: 800;
}
.news-board-detail h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}
.news-board-detail-summary {
  margin: 0 0 18px;
  color: var(--c-primary);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}
.news-board-detail-body {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.75;
}
.news-board-detail-body p { margin: 0 0 12px; }
.news-board-detail-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 700;
}
.news-board-detail-foot a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-primary-2);
}
.news-board-empty {
  color: var(--c-muted);
  font-size: 14px;
}
@media (max-width: 680px) {
  .news-board-hero { padding-top: 26px; }
  .news-board-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 8px;
  }
  .news-board-row-date,
  .news-board-row-source {
    justify-self: start;
    text-align: left;
  }
  .news-board-row-date { grid-column: 1 / -1; }
  .news-board-row-main { min-width: 0; }
  .news-board-row-source { grid-column: 2; }
  .news-board-thumb.is-compact {
    width: 78px;
    grid-row: span 2;
  }
  .news-board-detail {
    position: static;
    padding: 18px;
  }
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-section { padding: var(--section-y) 0; }
.contact-card {
  position: relative;
  background: linear-gradient(160deg, var(--c-sky) 0%, #fff 60%);
  border-radius: 32px;
  padding: 72px 32px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
html[data-dark="1"] .contact-card {
  background: linear-gradient(160deg, rgba(29,78,216,0.15) 0%, var(--c-bg-2) 60%);
}
.contact-mark {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-serif);
  font-size: 90px; font-weight: 900;
  color: var(--c-primary);
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.05em;
  display: flex; gap: 4px;
}
.contact-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 36px;
}
.contact-foot {
  margin-top: 4px;
  font-size: 14px; color: var(--c-muted);
  display: flex; flex-direction: column; gap: 7px;
  align-items: center;
  line-height: 1.55;
}
.contact-foot-title {
  color: var(--c-primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.contact-foot-office {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 700;
  word-break: keep-all;
}
.contact-foot strong { color: var(--c-text); font-weight: 800; }
.contact-foot-sub {
  color: var(--c-muted);
  font-size: 14px;
  opacity: 0.92;
  word-break: keep-all;
}
@media (min-width: 900px) {
  .contact-foot-sub { white-space: nowrap; }
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--c-bg-2);
  color: var(--c-muted);
  padding: 56px 0 0;
  border-top: 1px solid var(--c-line);
}
@media (max-width: 768px) {
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}
.footer-grid {
  display: grid; grid-template-columns: minmax(620px, 1.45fr) minmax(360px, 1fr); gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-wm { display: flex; flex-direction: column; gap: 4px; }
.footer-wm-kr { font-size: 28px; font-weight: 900; color: var(--c-primary); letter-spacing: -0.02em; }
.footer-wm-en {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--c-muted); letter-spacing: 0.12em;
}
.footer-disclaimer { margin: 0; font-size: 13px; line-height: 1.6; color: var(--c-muted); max-width: 360px; }

/* ── Footer 캠프 정보 블록 ───────────────────────────────────── */
.footer-camp {
  margin-top: 4px;
  padding: 16px 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-camp-title {
  font-size: 13px; font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
.footer-camp-office {
  color: var(--c-text);
  font-size: 13px;
  font-weight: 700;
  margin: -1px 0 4px;
  word-break: keep-all;
}
.footer-camp-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 8px; align-items: baseline;
  font-size: 13px; color: var(--c-text);
}
.footer-camp-address {
  white-space: nowrap;
  font-size: clamp(11px, 0.82vw, 13px);
}
.footer-camp-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-primary-2);
  letter-spacing: 0.01em;
}
.footer-camp-row a { color: var(--c-text); }
.footer-camp-row a:hover { color: var(--c-primary-2); text-decoration: underline; }

@media (max-width: 560px) {
  .footer-camp {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .footer-camp-row {
    width: max-content;
    min-width: 600px;
  }
}

/* ── Footer 공지 (선거법 안내) ─────────────────────────────── */
.footer-notice-row {
  padding: 0 0 24px;
}
.footer-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-muted);
}
.footer-notice-tag {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  background: rgba(16,185,129,0.12);
  color: #047857;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 900px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col-t {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--c-primary-2); letter-spacing: 0.12em;
  margin-bottom: 12px; font-weight: 700;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  font-size: 13px; color: var(--c-muted);
}
.footer-cols a:hover { color: var(--c-primary-2); }

.footer-sns { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-sns a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line); border-radius: 10px;
  color: var(--c-text);
  padding: 0;
}
.footer-sns a:hover { background: var(--c-bg); border-color: var(--c-primary-2); color: var(--c-primary-2); }

.footer-strip {
  border-top: 1px solid var(--c-line);
  padding: 18px 0;
}
.footer-strip-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--c-muted); letter-spacing: 0.04em;
}
.footer-strip-mark { letter-spacing: 0.12em; }

/* ── Kakao OpenChat CTA (in Contact section) ───────────────────────── */
.cta-kakao {
  background: #FEE500;
  color: #181600;
  border: 1px solid #E6CF00;
  font-weight: 800;
  box-shadow: 0 6px 16px -8px rgba(254, 229, 0, 0.7),
              0 2px 4px rgba(0,0,0,0.04);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cta-kakao:hover,
.cta-kakao:active,
.cta-kakao.is-ambient {
  background: #FFDC00;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(254, 229, 0, 0.85),
              0 3px 6px rgba(0,0,0,0.06);
}
.cta-kakao .cta-kakao-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  color: #3C1E1E;
}

/* ── Contact channels row ──────────────────────────────────────────── */
.contact-channels {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}
.contact-channels a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-sky);
  color: var(--c-primary);
  transition: background .18s ease, transform .18s ease, color .18s ease;
  min-height: auto;
}
.contact-channels a:hover,
.contact-channels a:active,
.contact-channels a.is-ambient {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Floating Kakao FAB ────────────────────────────────────────────── */
.kakao-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 14px;
  background: #FEE500;
  color: #181600;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow:
    0 16px 32px -10px rgba(11, 31, 58, 0.28),
    0 4px 10px rgba(254, 229, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.kakao-fab:hover,
.kakao-fab:active,
.kakao-fab.is-ambient {
  background: #FFDC00;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 22px 40px -12px rgba(11, 31, 58, 0.32),
    0 6px 14px rgba(254, 229, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}
.kakao-fab-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #3C1E1E;
  color: #FEE500;
}
.kakao-fab-icon svg { width: 16px; height: 16px; }
.kakao-fab-label {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .kakao-fab {
    right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 10px 16px 10px 12px;
    font-size: 13px;
  }
  .kakao-fab-icon { width: 26px; height: 26px; }
}

/* Dark mode adjustments */
[data-dark="1"] .contact-channels {
  border-top-color: rgba(255,255,255,0.08);
}
[data-dark="1"] .contact-channels a {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}
[data-dark="1"] .contact-channels a:hover {
  background: var(--c-primary-2);
  color: #fff;
}

/* ── Hero Variant D — 명함형 카드 ──────────────────────────────── */
.hero-D {
  position: relative;
  padding: 24px 0 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #EEF4FF 0%, #F8FAFC 100%);
}
.hero-d-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-d-bg-grad {
  position: absolute;
  top: -20%; right: -25%;
  width: 70%; aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.18), rgba(29,78,216,0) 60%);
  filter: blur(8px);
}
.hero-d-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-d-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 28px;
  padding: 28px 24px 28px;
  box-shadow:
    0 32px 60px -28px rgba(11, 31, 58, 0.22),
    0 0 0 1px rgba(11, 31, 58, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-d-avatar {
  position: relative;
  width: 132px; height: 132px;
  margin-bottom: 16px;
  border-radius: 50%;
}
.hero-d-avatar-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 230deg, var(--c-primary-2), var(--c-primary), var(--c-primary-2));
  opacity: 0.15;
  filter: blur(2px);
}
.hero-d-avatar-img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  background: linear-gradient(160deg, #DBEAFE, #93C5FD);
  box-shadow: 0 12px 24px -10px rgba(11, 31, 58, 0.32);
}
.hero-d-avatar-badge {
  position: absolute;
  right: -2px; bottom: 4px;
  width: 30px; height: 30px;
  background: var(--c-primary);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(11,31,58,0.25);
}
.hero-d-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-primary-2);
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-d-name {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--c-primary);
  margin: 4px 0 6px;
  line-height: 1;
}
.hero-d-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary-2);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.hero-d-tag {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--font-serif, "Noto Serif KR", serif);
  font-style: italic;
}
.hero-d-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 390px;
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 20px;
  letter-spacing: 0;
}
.hero-d-meta-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
  align-items: start;
  text-align: left;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(224, 242, 254, 0.68);
}
.hero-d-meta strong {
  color: var(--c-primary);
  font-weight: 800;
  font-size: 11px;
  white-space: nowrap;
}
.hero-d-meta-row span {
  min-width: 0;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.hero-d-meta-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(11,31,58,0.2);
}
.hero-d-primary {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  border-radius: 14px;
  background: var(--c-primary-2);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 12px 24px -8px rgba(29, 78, 216, 0.45);
  transition: transform .18s ease, box-shadow .18s ease;
  margin-bottom: 18px;
}
.hero-d-primary:hover,
.hero-d-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px -10px rgba(29, 78, 216, 0.55);
}
.hero-d-primary-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.hero-d-channels {
  display: flex; gap: 16px;
  justify-content: center;
  margin-bottom: 26px;
}
.hero-d-channels a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-sky);
  color: var(--c-primary);
  text-decoration: none;
  font-weight: 800; font-size: 13px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  min-height: auto;
}
.hero-d-channels a:hover,
.hero-d-channels a:active {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}
.hero-d-ch-naver span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-family: var(--font-mono);
  font-weight: 800;
}
.hero-d-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}
.hero-d-quick-card {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  border-radius: 14px;
  background: var(--c-sky);
  text-decoration: none;
  color: var(--c-primary);
  text-align: left;
  min-height: 78px;
  position: relative;
  overflow: hidden;
  transition: background .18s ease, transform .18s ease;
}
.hero-d-quick-card:hover,
.hero-d-quick-card:active,
.hero-d-quick-card.is-ambient {
  background: rgba(29, 78, 216, 0.12);
  transform: translateY(-1px);
}
.hero-d-quick-card::after {
  content: "→";
  position: absolute;
  right: 12px; top: 12px;
  font-size: 14px;
  color: var(--c-primary-2);
  font-weight: 700;
  opacity: 0.5;
}
.hero-d-quick-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--c-primary-2);
  font-weight: 700;
}
.hero-d-quick-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (min-width: 720px) {
  .hero-D { padding: 56px 0 80px; }
  .hero-d-card {
    max-width: 520px;
    padding: 36px 36px 32px;
  }
  .hero-d-avatar { width: 156px; height: 156px; margin-bottom: 20px; }
  .hero-d-name { font-size: 44px; }
  .hero-d-role { font-size: 14px; }
}

/* Dark mode */
[data-dark="1"] .hero-D {
  background: linear-gradient(180deg, #0a1628 0%, #08111f 100%);
}
[data-dark="1"] .hero-d-card {
  background: rgba(255,255,255,0.04);
  box-shadow:
    0 32px 60px -28px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.08);
}
[data-dark="1"] .hero-d-name { color: #fff; }
[data-dark="1"] .hero-d-quick-card { background: rgba(255,255,255,0.05); color: #fff; }
[data-dark="1"] .hero-d-quick-card:hover { background: rgba(255,255,255,0.08); }
[data-dark="1"] .hero-d-channels a { background: rgba(255,255,255,0.06); color: #fff; }
