/* ============================================================
   ACRO MEDICAL — PAGE STYLES
   Homepage, solutions landing, per-page content styles
   ============================================================ */

/* ===== Per-page styles (combined) ===== */
/* === index.html === */

  /* ===== Homepage-specific ===== */
  .hero {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 48px 100px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 28px;
    font-weight: 600;
  }
  .hero-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--accent);
  }
  h1.hero-title {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: clamp(2.5rem, 5.2vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  h1.hero-title em { font-style: italic; font-weight: 360; color: var(--accent); }
  h1.hero-title .underline { position: relative; display: inline-block; }
  h1.hero-title .underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 8px;
    background: var(--accent-soft);
    opacity: 0.55;
    z-index: -1;
    border-radius: 4px;
  }
  .hero-sub {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 38px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
  }
  .hero-meta .stat .num {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .hero-meta .stat .num sup {
    font-size: 16px;
    color: var(--accent);
    margin-left: 2px;
    font-style: italic;
  }
  .hero-meta .stat .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 500;
  }
  .hero-visual-wrap {
    position: relative;
  }
  .hero-visual {
    position: relative;
    aspect-ratio: 4/4.3;
    border-radius: 280px 24px 24px 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3866 0%, #1A2336 100%);
  }
  .hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.02);
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14, 27, 58, 0.25) 100%);
  }
  .hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--paper);
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px -15px rgba(14, 27, 58, 0.4);
  }
  .hero-badge .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #2D8F5F;
    box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(45, 143, 95, 0.05); }
  }
  .hero-badge .label { font-size: 13px; color: var(--ink); font-weight: 500; }
  .hero-badge .label small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
    font-weight: 400;
  }
  .floating-tag {
    position: absolute;
    top: 28px;
    left: -16px;
    background: var(--paper-warm);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px -10px rgba(14, 27, 58, 0.2);
  }
  .floating-tag svg { color: var(--accent); }

  .services {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .services-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }
  .section-sub {
    color: var(--ink-soft);
    font-size: 16px;
    max-width: 420px;
    line-height: 1.6;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service-card {
    background: var(--white);
    padding: 44px 38px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.35s ease;
    text-decoration: none;
    color: var(--ink);
  }
  .service-card:hover { background: var(--paper); }
  .service-num {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    transition: all 0.35s ease;
  }
  .service-card:hover .service-icon {
    background: var(--accent);
    transform: rotate(-4deg) scale(1.05);
  }
  .service-title {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 420;
    font-size: 26px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .service-desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .service-list {
    list-style: none;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-bottom: 28px;
    flex: 1;
  }
  .service-list li {
    font-size: 14px;
    color: var(--ink);
    padding: 9px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .service-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .service-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
  }
  .service-link .arr { transition: transform 0.3s; }
  .service-card:hover .service-link { color: var(--accent); }
  .service-card:hover .service-link .arr { transform: translateX(4px); }

  .approach {
    background: var(--ink);
    color: var(--paper);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .approach-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; position: relative; }
  .approach .section-eyebrow { color: var(--accent-soft); }
  .approach .section-eyebrow::before { background: var(--accent-soft); }
  .approach-title {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 880px;
    margin-bottom: 60px;
  }
  .approach-title em { font-style: italic; color: var(--accent-soft); }
  .approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .approach-item { border-top: 1px solid rgba(246, 247, 250, 0.18); padding-top: 24px; }
  .approach-item .num {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--accent-soft);
    margin-bottom: 16px;
  }
  .approach-item h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 420;
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .approach-item p {
    font-size: 14px;
    color: rgba(246, 247, 250, 0.7);
    line-height: 1.6;
  }

  .below { padding: 100px 0; background: var(--paper); }
  .below-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
  }
  .col-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 24px;
  }
  .col-title h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 38px;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .col-title h3 em { font-style: italic; color: var(--accent); }
  .view-all {
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: all 0.2s;
  }
  .view-all:hover { color: var(--accent); border-color: var(--accent); }

  .about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .about-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    display: block;
  }
  .about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(14, 27, 58, 0.25);
  }
  .about-card .img { aspect-ratio: 1/1.05; overflow: hidden; position: relative; }
  .about-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
  .about-card:hover .img img { transform: scale(1.06); }
  .about-card .meta { padding: 22px 22px 24px; }
  .about-card .meta h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .about-card .meta .link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .about-card:hover .meta .link { color: var(--accent); }

  .insight-list { display: flex; flex-direction: column; gap: 4px; }
  .insight-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 4px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: padding 0.3s ease;
  }
  .insight-item:hover { padding-left: 12px; }
  .insight-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
  }
  .insight-title {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 420;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .insight-arr { color: var(--muted); transition: transform 0.3s, color 0.3s; }
  .insight-item:hover .insight-arr { transform: translateX(4px); color: var(--accent); }

  .cta {
    background: var(--paper-warm);
    padding: 90px 0;
    border-top: 1px solid var(--line);
  }
  .cta-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .cta h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--ink);
  }
  .cta h2 em { font-style: italic; color: var(--accent); }
  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cta-right p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 60px 32px 80px; gap: 56px; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .below-inner { grid-template-columns: 1fr; gap: 60px; }
    .cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .approach-inner, .services-inner, .below-inner, .cta-inner { padding: 0 32px; }
    .services, .approach, .below, .cta { padding: 70px 0; }
  }
  @media (max-width: 640px) {
    .about-cards { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .insight-item { grid-template-columns: 1fr; gap: 8px; }
    .hero-meta { gap: 36px; }
    .hero-visual { border-radius: 24px; }
  }


/* === about.html === */

  /* Section sub-nav */
  .sub-nav {
    position: sticky;
    top: 82px;
    z-index: 50;
    background: rgba(246, 247, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .sub-nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 40px;
    overflow-x: auto;
  }
  .sub-nav a {
    padding: 18px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .sub-nav a:hover, .sub-nav a.active { color: var(--ink); }
  .sub-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent);
  }

  /* 섹션 앵커 스크롤 오프셋 — 메인 nav(82px) + sub-nav(54px) + 여백(24px) */
  #overview, #history, #vision, #experts, #COLLABORATIONS {
    scroll-margin-top: 160px;
  }

  /* Overview */
  .overview {
    padding: 100px 0;
  }
  .overview-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .overview h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .overview h2 em { font-style: italic; color: var(--accent); }
  .overview .body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .overview .body p:first-child {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 360;
    letter-spacing: -0.01em;
  }
  .overview-stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  .overview-stats .num {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-size: 44px;
    font-weight: 380;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .overview-stats .num em { color: var(--accent); font-style: italic; }
  .overview-stats .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 600;
  }

  /* History timeline */
  .history {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .history-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .history .section-head {
    text-align: center;
    margin-bottom: 80px;
  }
  .history .section-head h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .history .section-head h2 em { font-style: italic; color: var(--accent); }
  .history .section-head p {
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
  }
  .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--line);
    transform: translateX(-50%);
  }
  .tl-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 56px;
  }
  .tl-item:last-child { margin-bottom: 0; }
  .tl-content {
    padding: 24px 32px;
    background: var(--paper);
    border-radius: 16px;
    border: 1px solid var(--line);
  }
  .tl-item:nth-child(odd) .tl-content {
    grid-column: 1;
    text-align: right;
  }
  .tl-item:nth-child(even) .tl-content {
    grid-column: 3;
  }
  .tl-content .year {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 400;
  }
  .tl-content h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .tl-content p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .tl-dot {
    grid-column: 2;
    width: 16px; height: 16px;
    background: var(--paper);
    border: 3px solid var(--accent);
    border-radius: 50%;
    margin: 30px auto 0;
    position: relative;
    z-index: 1;
  }

  /* Vision & Mission */
  .vision {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .vision-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .vision .section-eyebrow { color: var(--accent-soft); }
  .vision .section-eyebrow::before { background: var(--accent-soft); }
  .vision-title {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-bottom: 64px;
  }
  .vision-title em { font-style: italic; color: var(--accent-soft); }
  .vmc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(246, 247, 250, 0.18);
    border: 1px solid rgba(246, 247, 250, 0.18);
    border-radius: 20px;
    overflow: hidden;
  }
  .vmc-card {
    background: var(--ink);
    padding: 40px 36px;
  }
  .vmc-card .tag {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--accent-soft);
    margin-bottom: 20px;
  }
  .vmc-card h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 26px;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
    line-height: 1.15;
  }
  .vmc-card p {
    font-size: 15px;
    color: rgba(246, 247, 250, 0.75);
    line-height: 1.65;
  }
  .core-values {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .core-value {
    border-top: 1px solid rgba(246, 247, 250, 0.2);
    padding-top: 20px;
  }
  .core-value .num {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--accent-soft);
    margin-bottom: 12px;
  }
  .core-value h5 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 19px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .core-value p {
    font-size: 13.5px;
    color: rgba(246, 247, 250, 0.65);
    line-height: 1.55;
  }

  /* Experts grid */
  .experts {
    padding: 100px 0;
    background: var(--paper);
  }
  .experts-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
  .experts .head {
    text-align: center;
    margin-bottom: 64px;
  }
  .experts .head h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .experts .head h2 em { font-style: italic; color: var(--accent); }
  .experts .head p {
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
  }
  .experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .expert {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
  }
  .expert:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(14, 27, 58, 0.25);
  }
  .expert .photo {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #2a3866, #1A2336);
    position: relative;
    overflow: hidden;
  }
  .expert .photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.7s ease;
  }
  .expert:hover .photo img { filter: grayscale(0%); transform: scale(1.04); }
  .expert .info { padding: 22px; }
  .expert .info h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .expert .info .role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .expert .info .credentials {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* Expert detail page */
  .expert-detail-wrap { max-width: 1000px; margin: 0 auto; padding: 90px 48px 110px; }
  .expert-profile { display: none; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
  .expert-profile.show { display: grid; }
  .expert-profile .ep-photo {
    width: 100%; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden;
    background: linear-gradient(135deg, #2a3866, #1A2336); display: grid; place-items: center;
  }
  .expert-profile .ep-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
  }
  .expert-profile:hover .ep-photo img { filter: grayscale(0%); }
  .expert-profile .ep-mono { font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif; color: var(--paper); font-size: 92px; font-weight: 500; font-style: italic; }
  .expert-profile .ep-eyebrow {
    color: var(--accent); font-size: 0.78rem; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
  }
  .expert-profile h1 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif; font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 500; color: var(--ink); margin: 0 0 8px; line-height: 1.04;
  }
  .expert-profile .ep-role { font-weight: 600; color: var(--ink); font-size: 1.05rem; margin-bottom: 30px; }
  .expert-profile .ep-bio p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 18px; max-width: 62ch; }
  .expert-profile .ep-back {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
    color: var(--accent); font-weight: 600; text-decoration: none; font-size: 0.95rem;
    transition: gap 0.25s ease;
  }
  .expert-profile .ep-back:hover { gap: 13px; }
  @media (max-width: 760px) {
    .expert-detail-wrap { padding: 60px 28px 80px; }
    .expert-profile.show { grid-template-columns: 1fr; gap: 30px; }
    .expert-profile .ep-photo { max-width: 240px; }
  }

  /* Partners */
  .partners {
    padding: 100px 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
  }
  .partners-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
  .partners .head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .partners h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .partners h2 em { font-style: italic; color: var(--accent); }
  .partners .sub {
    color: var(--ink-soft);
    max-width: 420px;
    line-height: 1.6;
  }
  .partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .partner {
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 300px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .partner:hover {
    background: var(--white);
    border-color: var(--accent-soft);
    box-shadow: 0 16px 32px -16px rgba(14, 27, 58, 0.18);
    transform: translateY(-2px);
  }
  .partner img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
  }
  .partner .name {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 16px;
    color: var(--ink);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .partner .name small {
    display: block;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  @media (max-width: 1024px) {
    .overview-inner { grid-template-columns: 1fr; gap: 40px; }
    .overview-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 16px; }
    .tl-item { grid-template-columns: 32px 1fr; gap: 16px; }
    .tl-item:nth-child(odd) .tl-content,
    .tl-item:nth-child(even) .tl-content {
      grid-column: 2;
      text-align: left;
    }
    .tl-dot { grid-column: 1; margin: 30px 0 0; }
    .vmc-grid { grid-template-columns: 1fr; }
    .core-values { grid-template-columns: repeat(2, 1fr); }
    .experts-grid { grid-template-columns: repeat(2, 1fr); }
    .overview, .history, .vision, .experts, .partners { padding: 70px 0; }
    .overview-inner, .history-inner, .vision-inner, .experts-inner, .partners-inner { padding: 0 32px; }
    /* 모바일 sub-nav → 드롭다운 전환 */
    .sub-nav-inner { display: none; }
    .sub-nav { padding: 12px 24px; }
    .sub-nav .sidebar-select-wrap { margin-top: 0; max-width: 360px; }
  }
  @media (max-width: 640px) {
    .experts-grid { grid-template-columns: 1fr; }
    .partner { width: 100%; }
    .core-values { grid-template-columns: 1fr; }
  }


/* === insights.html === */

  .filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    position: sticky;
    top: 82px;
    z-index: 50;
  }
  .filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
  .filter-tab {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .filter-tab:hover { border-color: var(--ink); }
  .filter-tab.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .filter-controls { display: flex; gap: 12px; align-items: center; }
  .filter-controls select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
  }

  .articles {
    padding: 80px 0 100px;
  }
  .articles-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  /* featured 개수별 배치(v2.9.69) — 이전에는 개수와 무관하게 1.4fr 1fr 이라
     1건일 때 오른쪽 절반이 통째로 비었고, 2건일 때도 좌우 크기가 달랐다. */
  .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* 5:5 */
    gap: 32px;
    margin-bottom: 70px;
  }
  /* 좌우 비율은 개수와 무관하게 5:5 로 고정한다(v2.9.71 사용자 지시).
     예외는 1건뿐 — 오른쪽에 놓을 카드가 없어 절반을 비우지 않고 한 장이 전체 폭을 쓴다. */
  .featured-grid--1 { grid-template-columns: 1fr; }
  /* 1건일 때 이미지가 전체 폭이라 16/10 을 그대로 두면 지나치게 높아진다 — 높이만 제한 */
  .featured-grid--1 .feat-card.large .img { max-height: 420px; }
  .feat-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
  }
  .feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(14, 27, 58, 0.3);
  }
  .feat-card .img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3866, #1A2336);
  }
  .feat-card.large .img { aspect-ratio: 16/10; }
  .feat-card .img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .feat-card:hover .img img { transform: scale(1.05); }
  .feat-card .meta {
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .feat-card .tag-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
  }
  .feat-card .tag-row .cat { color: var(--accent); }
  .feat-card .tag-row .date { color: var(--muted); }
  .feat-card.large h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }
  .feat-card h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 420;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .feat-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .feat-card .read {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .feat-card:hover .read { color: var(--accent); }

  .list-section {
    border-top: 1px solid var(--line);
    padding-top: 50px;
  }
  .list-section h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .list-section h2 em { font-style: italic; color: var(--accent); }
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .art-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .art-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(14, 27, 58, 0.2);
  }
  .art-card .img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--paper-warm), var(--paper));
  }
  .art-card .img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .art-card:hover .img img { transform: scale(1.05); }
  .art-card .meta {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .art-card .tag-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
  }
  .art-card .tag-row .cat { color: var(--accent); }
  .art-card .tag-row .date { color: var(--muted); }
  .art-card h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 440;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    flex: 1;
  }
  .art-card .read-time {
    font-size: 12px;
    color: var(--muted);
    margin-top: auto;
  }

  @media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-inner, .articles-inner { padding: 0 24px; }
    .articles { padding: 50px 0 70px; }
    /* 모바일 filter-tabs → 드롭다운 전환 */
    .filter-tabs { display: none; }
    .filter-bar { padding: 14px 0; }
    .filter-bar .sidebar-select-wrap { margin-top: 0; width: 100%; max-width: 360px; }
  }
  @media (max-width: 640px) {
    .article-grid { grid-template-columns: 1fr; }
    .filter-inner { flex-direction: column; align-items: stretch; }
  }


/* === insights-detail.html === */

  .article-hero {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
  }
  .article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(45, 79, 174, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  /* 대표 이미지(hero_image) 배경 — About·서비스 상세(.page-header-photo)와 동일 처리(v2.9.67).
     v2.0.0 이후 Insights 상세만 hero_image 를 렌더하지 않아 백오피스 안내("최상단 히어로 배경으로
     표시")와 어긋나 있었다. 이미지가 없으면 기존 어두운 그라디언트 히어로 그대로. */
  .article-hero--photo {
    min-height: 460px;
    display: flex;
    align-items: center;
  }
  .article-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.42;
    /* blur — 논문 지면 캡쳐처럼 글자가 많은 이미지를 올려도 배경 텍스처로만 읽히게 한다(v2.9.68).
       Insights 히어로 전용이라 About·서비스(.page-header-photo)는 영향 없다.
       scale: blur 로 흐려지는 가장자리가 히어로 밖으로 나가도록 살짝 키운다. */
    filter: saturate(0.5) contrast(1.05) brightness(0.9) blur(8px);
    transform: scale(1.06);
    pointer-events: none;
    z-index: 0;
  }
  /* 사진 위 텍스트 가독성용 어둡게 덮는 레이어 — .page-header::before 와 동일 */
  .article-hero--photo::before {
    background:
      radial-gradient(circle at 15% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(163, 86, 57, 0.07) 0%, transparent 50%),
      linear-gradient(90deg, rgba(26,35,54,0.82) 0%, rgba(26,35,54,0.52) 60%, rgba(26,35,54,0.76) 100%);
    z-index: 1;
  }
  /* About(.page-header-inner) 와 동일한 1360px 컨테이너 — 히어로와 본문 좌측 정렬을 맞춘다(v2.9.65) */
  .article-hero-inner {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
  }
  .article-hero h1 { max-width: 1100px; }
  .article-hero .deck { max-width: 900px; }
  .article-hero .breadcrumb { color: rgba(246, 247, 250, 0.55); margin-bottom: 32px; }
  .article-hero .breadcrumb a { color: rgba(246, 247, 250, 0.7); }
  .article-hero .breadcrumb .sep { color: rgba(246, 247, 250, 0.3); }
  .article-hero .tag-row {
    display: flex;
    gap: 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .article-hero .tag-row .cat { color: var(--accent-soft); }
  .article-hero .tag-row .date { color: rgba(246, 247, 250, 0.6); }
  .article-hero h1 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .article-hero h1 em { font-style: italic; color: var(--accent-soft); }
  .article-hero .deck {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(246, 247, 250, 0.82);
    max-width: 720px;
  }
  .article-hero .author {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(246, 247, 250, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--paper-warm);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    flex-shrink: 0;
  }
  .author-meta .name {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 17px;
    margin-bottom: 4px;
  }
  .author-meta .role {
    font-size: 12px;
    color: rgba(246, 247, 250, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .article-meta-extra {
    margin-left: auto;
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: rgba(246, 247, 250, 0.65);
  }
  .article-meta-extra div span { display: block; color: rgba(246, 247, 250, 0.95); font-weight: 600; font-size: 14px; margin-top: 4px; }

  .article-body {
    max-width: 740px;
    margin: 0 auto;
    padding: 80px 48px 100px;
  }
  .article-body p {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.005em;
  }
  /* 첫 글자 대문자 장식(drop cap) 제거(v2.9.65) — 한글 첫 글자가 분리돼 읽히는 문제 + 본문 톤 통일 */
  .article-body h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 56px 0 20px;
  }
  .article-body h2 em { font-style: italic; color: var(--accent); }
  .article-body h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 22px;
    color: var(--ink);
    margin: 36px 0 14px;
  }
  .article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--paper-warm);
    border-radius: 0 12px 12px 0;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
  }
  .article-body ul, .article-body ol {
    margin: 16px 0 24px 0;
    padding-left: 0;
    list-style: none;
  }
  .article-body ul li, .article-body ol li {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    padding: 8px 0 8px 28px;
    position: relative;
  }
  .article-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 22px;
    width: 14px; height: 1px;
    background: var(--accent);
  }
  .article-body ol { counter-reset: li; }
  .article-body ol li::before {
    counter-increment: li;
    content: counter(li) ".";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }
  .article-body .figure {
    margin: 40px -40px;
    background: var(--paper-warm);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--line);
  }
  .article-body .figure .caption {
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    font-style: normal;
    font-weight: 500;
  }
  .article-body .figure img,
  .article-body .figure svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
  .article-body .key-takeaway {
    background: var(--ink);
    color: var(--paper);
    padding: 32px 36px;
    border-radius: 16px;
    margin: 40px 0;
  }
  .article-body .key-takeaway .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-soft);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .article-body .key-takeaway p {
    color: var(--paper);
    font-size: 18px;
    margin: 0;
  }

  .article-share {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .share-buttons { display: flex; gap: 10px; }
  .share-buttons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s;
  }
  .share-buttons a:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
  .tags-row span {
    padding: 6px 14px;
    background: var(--paper-warm);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 500;
  }

  .related {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--line);
  }
  .related-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .related h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: 36px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }
  .related h2 em { font-style: italic; color: var(--accent); }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .rel-card {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .rel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(14, 27, 58, 0.2);
  }
  .rel-card .meta {
    padding: 24px 26px 28px;
  }
  .rel-card .tag-row {
    display: flex;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .rel-card .tag-row .cat { color: var(--accent); }
  .rel-card .tag-row .date { color: var(--muted); }
  .rel-card h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 440;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  @media (max-width: 1024px) {
    .article-hero-inner, .article-body, .article-share { padding-left: 32px; padding-right: 32px; }
    .article-body .figure { margin: 40px 0; }
    .article-meta-extra { margin-left: 0; flex-basis: 100%; }
    .article-hero .author { flex-wrap: wrap; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .related-inner { padding: 0 32px; }
    .related { padding: 60px 0; }
  }
  @media (max-width: 640px) {
    .related-grid { grid-template-columns: 1fr; }
  }


/* === careers.html === */

  /* STATS STRIP */
  .careers-stats {
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
  }
  .careers-stats-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 0;
  }
  .careers-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 32px 20px;
    text-align: center;
  }
  .careers-stat strong {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .careers-stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-weight: 600;
  }
  .careers-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--line-2);
    flex-shrink: 0;
  }

  .culture-strip {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .culture-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .culture-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .culture-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .culture-grid h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .culture-grid h2 em { font-style: italic; color: var(--accent-soft); }
  .culture-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .culture-point {
    border-top: 1px solid rgba(246, 247, 250, 0.2);
    padding-top: 18px;
  }
  .culture-point-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(246, 247, 250, 0.08);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--emphasis-soft);
    border: 1px solid rgba(246, 247, 250, 0.12);
  }
  .culture-point h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .culture-point p {
    font-size: 13.5px;
    color: rgba(246, 247, 250, 0.7);
    line-height: 1.6;
  }

  /* Filter bar */
  .jobs-filter {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    position: sticky;
    top: 82px;
    z-index: 50;
  }
  .jobs-filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: 16px;
    align-items: center;
  }
  .jobs-filter select, .jobs-filter input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
  }
  .jobs-filter input { cursor: text; }
  .jobs-filter input::placeholder { color: var(--muted); }
  .filter-count {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    padding-left: 8px;
  }
  .filter-count span { color: var(--ink); font-weight: 700; }

  /* Job list */
  .jobs {
    padding: 60px 0 100px;
    background: var(--paper);
  }
  .jobs-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 32px 4px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: padding 0.3s ease;
  }
  .job-card:first-of-type { border-top: 1px solid var(--line); }
  .job-card:hover { padding-left: 16px; }
  .job-card h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color 0.2s;
  }
  .job-card:hover h3 { color: var(--accent); }
  .job-card h3 .prefix {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin-right: 8px;
  }
  .job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .job-tags span {
    padding: 5px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 500;
  }
  .job-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  .job-status .status {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .job-status .arr-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    transition: all 0.25s;
  }
  .job-card:hover .arr-circle {
    background: var(--accent);
    transform: rotate(-45deg);
  }
  .jobs-list-head {
    display: flex;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
  }
  .jobs-count {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }
  .jobs-count span { color: var(--ink); font-weight: 700; font-size: 15px; }
  .jobs-empty {
    padding: 60px 0;
    color: var(--muted);
    font-size: 15px;
    text-align: center;
  }
  .status-open,
  .job-state--open {
    font-size: 12px;
    color: #2a7a3b;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .job-state--closed { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }
  .job-deadline {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    display: block;
    text-align: right;
  }
  .job-state-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }
  .job-tags .tag-dept {
    background: var(--primary-soft);
    border-color: transparent;
    color: var(--primary);
    font-weight: 600;
  }

  /* HIRING PROCESS */
  .hiring-process {
    background: var(--bg-2);
    padding: 96px 0;
    border-top: 1px solid var(--line);
  }
  .hiring-process-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .hiring-process-head {
    margin-bottom: 60px;
  }
  .hiring-process-head h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 12px 0 16px;
  }
  .hiring-lead {
    font-size: 16px;
    color: var(--ink-2);
    max-width: 560px;
    line-height: 1.6;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .process-step {
    background: var(--bg);
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .step-num {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-size: 42px;
    font-weight: 280;
    letter-spacing: -0.04em;
    color: var(--line-2);
    line-height: 1;
    margin-bottom: 20px;
  }
  .process-step h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .process-step p {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.65;
  }

  /* CAREERS CTA */
  .careers-cta {
    background: var(--ink);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .careers-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 50%, rgba(45, 79, 174, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 90% 50%, rgba(163, 86, 57, 0.10) 0%, transparent 50%);
    pointer-events: none;
  }
  .careers-cta-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .careers-cta-text {
    flex: 1;
    min-width: 280px;
  }
  .eyebrow-light {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--emphasis-soft);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .careers-cta-text h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 12px;
    max-width: 600px;
  }
  .careers-cta-text p {
    font-size: 15px;
    color: rgba(246, 247, 250, 0.65);
  }
  .btn-primary--light {
    background: var(--paper) !important;
    color: var(--ink) !important;
  }
  .btn-primary--light:hover { background: var(--bg-2) !important; box-shadow: none !important; }

  @media (max-width: 1024px) {
    .careers-stats-inner { padding: 0 32px; }
    .careers-stat { padding: 24px 16px; }
    .culture-grid { grid-template-columns: 1fr; gap: 32px; }
    .culture-points { grid-template-columns: 1fr; }
    .jobs-filter-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .filter-count { grid-column: 1 / -1; }
    .culture-inner, .jobs-filter-inner, .jobs-inner { padding: 0 32px; }
    .culture-strip, .jobs { padding-left: 0; padding-right: 0; }
    .jobs { padding: 40px 0 70px; }
    .culture-strip { padding: 50px 0; }
    .job-card { grid-template-columns: 1fr; gap: 20px; }
    .job-status { flex-direction: row; align-items: center; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .hiring-process { padding: 64px 0; }
    .hiring-process-inner { padding: 0 32px; }
    .careers-cta-inner { padding: 0 32px; gap: 40px; }
  }
  @media (max-width: 640px) {
    .jobs-filter-inner { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .careers-stats-inner { flex-wrap: wrap; gap: 0; }
    .careers-stat { flex: 0 0 50%; }
    .careers-stat-divider { display: none; }
  }


/* === careers-detail.html === */

  .job-banner {
    background: var(--paper-warm);
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .job-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45, 79, 174, 0.15), transparent 60%);
    pointer-events: none;
  }
  .job-banner::after {
    content: 'Join the crew';
    position: absolute;
    bottom: -20px;
    right: 40px;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(60px, 9vw, 140px);
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    pointer-events: none;
  }
  .job-banner-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
  }
  .job-banner .breadcrumb { margin-bottom: 32px; }

  .job-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .job-title-row h1 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 420;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .job-title-row h1 .prefix {
    color: var(--accent);
    font-style: italic;
    font-weight: 380;
    margin-right: 10px;
  }
  .apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--accent);
    color: var(--paper);
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s;
    white-space: nowrap;
  }
  .apply-btn:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(14, 27, 58, 0.4);
  }
  .apply-btn .arr { transition: transform 0.3s; }
  .apply-btn:hover .arr { transform: translateX(3px); }

  .job-meta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .job-meta-tags span {
    padding: 6px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500;
  }
  .job-meta-tags .sep-dot {
    width: 4px; height: 4px;
    background: var(--line);
    border-radius: 50%;
    border: none;
    padding: 0;
  }

  .job-body {
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 48px 60px;
  }

  /* === career detail: sidebar layout === */
  .job-detail-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 48px 80px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
  }
  .job-sidebar { position: sticky; top: 90px; }
  .job-info-card {
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 28px;
    margin-bottom: 14px;
  }
  .job-info-card h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 18px;
  }
  .job-info-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .job-info-item:last-child { border-bottom: none; }
  .job-info-label {
    display: block;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 5px;
  }
  .job-info-value {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.45;
  }
  .job-info-value a { color: var(--accent); text-decoration: none; }
  .job-info-value a:hover { text-decoration: underline; }
  .job-info-status { font-weight: 700; font-size: 12px; letter-spacing: 0.05em; }
  .job-info-status--open { color: #16803c; }
  .job-info-status--closed { color: var(--muted); }
  .job-apply-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: 14px;
    padding: 24px 28px;
    text-align: center;
  }
  .job-apply-card p {
    font-size: 13.5px;
    color: rgba(246,247,250,.65);
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .job-apply-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--accent);
    color: var(--paper);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .job-apply-link:hover { background: #1e40af; transform: translateY(-1px); }
  .job-content {}

  .job-section {
    margin-bottom: 60px;
  }
  .job-section:last-child { margin-bottom: 0; }
  .job-section h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 420;
    font-size: 26px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .job-section h2 .emoji {
    font-style: normal;
    font-size: 24px;
    filter: grayscale(20%);
  }
  .job-section h2 em { font-style: italic; color: var(--accent); }
  .job-section > p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 16px;
  }
  .job-section ul {
    list-style: none;
    margin: 12px 0;
  }
  .job-section ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    border-bottom: 1px dashed var(--line);
  }
  .job-section ul li:last-child { border-bottom: none; }
  .job-section ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 22px;
    width: 14px; height: 1px;
    background: var(--accent);
  }
  .job-section ul li strong {
    color: var(--ink);
    font-weight: 600;
  }

  .bonus-section {
    background: var(--ink);
    color: var(--paper);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  .bonus-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -30px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(45, 79, 174, 0.18), transparent 60%);
    pointer-events: none;
  }
  .bonus-section h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    position: relative;
  }
  .bonus-section ul { position: relative; }
  .bonus-section ul li {
    border-bottom-color: rgba(246, 247, 250, 0.18);
    color: rgba(246, 247, 250, 0.85);
  }
  .bonus-section ul li::before { background: var(--accent-soft); }
  .bonus-section ul li strong { color: var(--paper); }

  .apply-footer {
    border-top: 1px solid var(--line);
    padding: 32px 0;
    background: var(--paper-warm);
  }
  .apply-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .apply-footer h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .apply-footer h3 .prefix {
    color: var(--accent);
    font-style: italic;
    font-weight: 380;
    margin-right: 8px;
  }

  @media (max-width: 1024px) {
    .job-banner-inner, .job-body, .apply-footer-inner { padding-left: 32px; padding-right: 32px; }
    .job-title-row { flex-direction: column; align-items: flex-start; }
    .apply-btn { align-self: stretch; justify-content: center; }
    .job-banner { padding: 50px 0 40px; }
    .job-body { padding-top: 50px; padding-bottom: 40px; }
    .bonus-section { padding: 28px; }
    .job-detail-wrap { grid-template-columns: 1fr; padding: 40px 32px 60px; gap: 36px; }
    .job-sidebar { position: static; }
  }
  @media (max-width: 640px) {
    .job-detail-wrap { padding: 32px 20px 48px; }
    .job-info-card, .job-apply-card { padding: 20px; }
  }


/* === contact.html === */

  .contact-section {
    padding: 80px 0 100px;
  }
  .contact-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
  }
  .contact-inner > * { min-width: 0; }
  .contact-left .breadcrumb { margin-bottom: 28px; }
  .contact-left h1 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 360;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .contact-left h1 em { font-style: italic; color: var(--accent); }
  .contact-left .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 50px;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-block h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .contact-block .value {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .contact-block .meta {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }
  .contact-block a { color: var(--ink); text-decoration: none; }
  .contact-block a:hover { color: var(--accent); }

  /* Form */
  .form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px -30px rgba(14, 27, 58, 0.2);
  }
  .form-card h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
  .form-card h2 em { font-style: italic; color: var(--accent); }
  .form-card .form-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-field { margin-bottom: 16px; }
  .form-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 79, 174, 0.1);
  }
  .form-field textarea {
    min-height: 130px;
    resize: vertical;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
  }
  .inquiry-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .inquiry-radio {
    position: relative;
  }
  .inquiry-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .inquiry-radio label {
    display: block;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    transition: all 0.2s;
  }
  .inquiry-radio input:checked + label {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .inquiry-radio label:hover {
    border-color: var(--ink);
  }
  .form-submit {
    width: 100%;
    padding: 18px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    border-radius: 999px;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(45, 79, 174, 0.5);
  }
  .form-submit .arr { transition: transform 0.3s; }
  .form-submit:hover .arr { transform: translateX(4px); }
  .form-disclaimer {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
  }

  /* Django contact form — .form-group / .form-control structure */
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px -30px rgba(14, 27, 58, 0.2);
  }
  .form-group { margin-bottom: 18px; }
  .form-group > label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .form-group > label .req { color: var(--emphasis); margin-left: 2px; }
  .form-errors {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #b91c1c;
  }
  .field-error {
    font-size: 12px;
    color: var(--emphasis);
    margin-top: 6px;
  }
  .has-error .form-control { border-color: var(--emphasis) !important; }
  input.form-control,
  select.form-control,
  textarea.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
    box-sizing: border-box;
  }
  input.form-control:focus,
  select.form-control:focus,
  textarea.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 79, 174, 0.1);
  }
  textarea.form-control {
    min-height: 130px;
    resize: vertical;
  }
  .inquiry-radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .inquiry-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
    transition: all 0.2s;
    user-select: none;
  }
  .inquiry-radio-label:hover { border-color: var(--ink); }
  .inquiry-radio-label input.inquiry-radio-input { accent-color: var(--ink); }
  .file-upload-hint {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    border-radius: 999px;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
  }
  .submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(45, 79, 174, 0.5);
  }
  .submit-btn .arr { transition: transform 0.3s; }
  .submit-btn:hover .arr { transform: translateX(4px); }
  .contact-info { padding-top: 12px; }
  .contact-info h3 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-detail .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
  }
  .contact-services { margin-top: 24px; }
  .contact-services h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .contact-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-services li {
    font-size: 14px;
    color: var(--ink-soft);
    padding-left: 16px;
    position: relative;
  }
  .contact-services li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--muted);
  }

  /* Other channels */
  .channels {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .channels-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .channels h2 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 380;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    letter-spacing: -0.02em;
    margin-bottom: 50px;
    text-align: center;
  }
  .channels h2 em { font-style: italic; color: var(--accent); }
  .channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .channel-card {
    background: var(--paper);
    padding: 36px 32px;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.25s;
    display: flex;
    flex-direction: column;
  }
  .channel-card:hover { background: var(--white); }
  .channel-card .icon {
    width: 48px; height: 48px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: all 0.3s;
  }
  .channel-card:hover .icon {
    background: var(--accent);
    transform: rotate(-4deg);
  }
  .channel-card h4 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
    font-weight: 460;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .channel-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .channel-card .link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .channel-card:hover .link { color: var(--accent); }

  @media (max-width: 1024px) {
    .contact-inner { grid-template-columns: 1fr; gap: 50px; padding: 0 32px; }
    .contact-section { padding: 50px 0 70px; }
    .form-card { padding: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .inquiry-types { grid-template-columns: 1fr; }
    .channels-grid { grid-template-columns: 1fr; }
    .channels-inner { padding: 0 32px; }
    .channels { padding: 60px 0; }
  }


/* ===== SOLUTIONS LANDING (card grid) ===== */
.solutions-overview {
  background: var(--paper);
  padding: 60px 0 100px;
}
.solutions-overview-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(45, 79, 174, 0.04));
  opacity: 0;
  transition: opacity 0.4s;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -18px rgba(14, 27, 58, 0.18);
  border-color: var(--accent);
}
.solution-card:hover::before { opacity: 1; }
.solution-card-num {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  font-feature-settings: "tnum";
}
.solution-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 18px 0 28px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.solution-card-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.solution-card:hover .solution-card-link {
  color: var(--accent);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-overview-inner { padding: 0 32px; }
  .solution-card { min-height: 180px; padding: 28px 24px; }
}

/* ===== Contact button highlight when on contact page ===== */
.contact-btn.on-contact {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

/* ============================================================
   HOME PAGE — B2 HERO SCROLL-SLIDE DECK
   ============================================================ */

/* Shared button styles used across home page */
.btn-primary, .btn-ghost {
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover {
  background: #1C2D74;
  border-color: #1C2D74;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(35,56,140,0.38);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-primary .arr, .btn-ghost .arr { transition: transform 0.3s; }
.btn-primary:hover .arr, .btn-ghost:hover .arr { transform: translateX(4px); }

/* === Hero deck container === */
.slides-track {
  position: relative;
  height: 250vh;
}
.slides-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute;
  inset: 0;
}
.slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.82) contrast(1.05) brightness(0.72);
}
.slide-overlay {
  display: none;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(380px, 43vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 3.5vh, 44px) clamp(48px, 7vw, 120px) clamp(44px, 5vh, 64px);
  background: rgba(14, 27, 58, 0.72);
  color: #fff;
  overflow: hidden;
}
.slide-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 22px;
}
.slide-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 340;
  font-size: clamp(1.85rem, 3.8vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 780px;
  margin-bottom: 14px;
  color: #fff;
  /* 줄바꿈 품질(v2.9.48)
     · keep-all — 한글이 어절 중간에서 잘리지 않게(기본값은 아무 글자에서나 끊음)
     · balance  — 여러 줄이 될 때 길이를 고르게 나눠 문장 중간에서 끊기도록. 끝의 한두 글자만
                  다음 줄로 넘어가는 어색한 꼬리를 막는다. 미지원 브라우저는 무시(폴백 정상) */
  word-break: keep-all;
  text-wrap: balance;
}
.slide-heading em { font-style: italic; color: rgba(255,255,255,0.85); }
.slide-sub {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  /* 640px 에서는 가장 긴 서브텍스트(씬1·씬5)가 데스크톱에서 3줄이 됐다.
     한 줄 전개 폭이 약 1300px 이라 2줄에 필요한 폭은 ~675px — 720px 로 넓혀 2줄로 맞춘다(v2.9.49).
     캡션 밴드 폭(1238px+)에 여유가 있고 줄 수가 줄어드는 방향이라 CTA 여백은 오히려 늘어난다.
     760px — 씬5 두 번째 문장(1줄 전개 729px)까지 한 줄에 들어가는 폭(v2.9.50). */
  max-width: 760px;
  line-height: 1.65;
  margin-bottom: 20px;
  /* 서브텍스트도 줄 길이를 고르게(balance) — 2줄일 때 한쪽만 길어지는 것을 막는다.
     balance 미지원 시 pretty 로 폴백(마지막 줄 고아 방지). */
  word-break: keep-all;
  text-wrap: pretty;
  text-wrap: balance;
}
/* 문장 단위 줄바꿈(v2.9.50) — 넓은 화면에서는 문장마다 줄을 나눠 지정한 지점에서 끊고,
   폭이 좁아지면 inline 으로 되돌려 자연스럽게 흐르게 한다. 콘텐츠에 `.sub-line` 을 감싸 사용. */
.slide-sub .sub-line { display: inline; }
@media (min-width: 700px) {
  .slide-sub .sub-line { display: block; }
}

.slide-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.slide-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}
.slide-cta .arr { transition: transform 0.3s; }
.slide-cta:hover .arr { transform: translateX(4px); }

/* === Chapter HUD === */
.deck-hud {
  position: absolute;
  bottom: clamp(400px, 45vh, 442px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1360px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
  z-index: 10;
}
.deck-chapters {
  display: flex;
  gap: 2px;
  pointer-events: auto;
}
.chapter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}
.chapter-btn:hover .chapter-dot {
  background: rgba(255,255,255,0.7);
  transform: scale(1.4);
}
.chapter-btn.active {
  border-color: transparent;
  background: transparent;
}
.chapter-num { display: none; }
.chapter-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
}
.chapter-btn.active .chapter-dot {
  background: #fff;
  width: 8px; height: 8px;
}

/* === Progress bar + scroll hint === */
.deck-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.deck-progress-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.deck-progress-track {
  width: 2px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.deck-progress-fill {
  width: 100%;
  background: var(--emphasis-soft);
  border-radius: 2px;
  transition: height 0.1s linear;
}
.deck-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: opacity 0.5s;
}
.deck-scroll-hint.hidden { opacity: 0; }
.deck-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   HOME — BRAND STATEMENT (who-section)
   ============================================================ */
.who-section {
  padding: clamp(80px, 11vh, 120px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.who-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}
.who-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--emphasis);
  font-weight: 600;
  margin-bottom: 28px;
}
.who-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 340;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.who-heading em { font-style: italic; color: var(--primary); }
.who-body {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-2);
  line-height: 1.72;
  max-width: 780px;
  margin: 0 auto;
}
.who-body + .who-body { margin-top: 20px; }
.who-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}
.who-body a:hover { color: var(--primary-hover); }

/* ============================================================
   HOME — THREE PILLARS (editorial zigzag)
   ============================================================ */
.pillars-section {
  padding: 0 0 clamp(80px, 10vh, 120px);
  background: var(--bg);
}
.pillars-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillars-header {
  padding: clamp(60px, 8vh, 96px) 0 clamp(48px, 6vh, 72px);
  max-width: 760px;
}
.pillars-intro-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 340;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.pillars-intro-heading em { font-style: italic; color: var(--primary); }
.pillars-intro-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 680px;
}
.pillar-block {
  position: relative;
  padding: clamp(60px, 8vh, 100px) 0;
  border-top: 1px solid var(--line);
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.pillar-grid.reverse { direction: rtl; }
.pillar-grid.reverse > * { direction: ltr; }
.pillar-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--emphasis);
  font-weight: 600;
  margin-bottom: 18px;
}
.pillar-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 360;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.pillar-promise {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
/* 첫 문장 리드 — <strong>으로 감싼 문장은 별 줄로 강조 (국문 홈 What We Do) */
.pillar-promise strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
}
.pillar-list {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pillar-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--emphasis);
  flex-shrink: 0;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s, color 0.2s;
}
.pillar-link:hover { color: var(--emphasis); gap: 12px; }
.pillar-link .arr { transition: transform 0.3s; }
.pillar-link:hover .arr { transform: translateX(4px); }
.pillar-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--ink);
}
.pillar-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.7s ease;
}
.pillar-block:hover .pillar-visual img { transform: scale(1.04); }

/* ============================================================
   HOME — BENCH (domain cards)
   ============================================================ */
.bench-section {
  padding: clamp(80px, 10vh, 120px) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.bench-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(45,79,174,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(163,86,57,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.bench-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
}
.bench-header {
  max-width: 760px;
  margin-bottom: 60px;
}
.bench-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246,247,250,0.5);
  font-weight: 600;
  margin-bottom: 20px;
}
.bench-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emphasis-soft);
}
.bench-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 340;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 16px;
}
.bench-heading em { font-style: italic; color: var(--emphasis-soft); }
.bench-sub {
  font-size: 16px;
  color: rgba(246,247,250,0.65);
  line-height: 1.65;
  max-width: 600px;
}
.bench-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(246,247,250,0.08);
  border: 1px solid rgba(246,247,250,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.bench-card {
  padding: 36px 32px 40px;
  background: rgba(26,35,54,0.6);
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.bench-card:hover {
  background: rgba(45,79,174,0.12);
  border-color: rgba(45,79,174,0.35);
}
.bench-card-num {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: rgba(246,247,250,0.4);
  margin-bottom: 16px;
}
.bench-card-name {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 420;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.2;
}
.bench-card-desc {
  font-size: 13.5px;
  color: rgba(246,247,250,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bench-card-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.key {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(246,247,250,0.07);
  border: 1px solid rgba(246,247,250,0.12);
  color: rgba(246,247,250,0.6);
  white-space: nowrap;
}

/* ============================================================
   HOME — BRIDGE BAND
   ============================================================ */
.bridge-section {
  padding: clamp(60px, 8vh, 90px) 0;
  background: var(--bg-2, #EBEDF2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bridge-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.bridge-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}
.bridge-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.bridge-col.right .bridge-col-label { text-align: right; }
.bridge-col.right .bridge-keywords { text-align: right; justify-content: flex-end; }
.bridge-keywords {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 380;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bsep { color: var(--muted); }
.bridge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bridge-center-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--primary) 50%, transparent 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease;
}
.bridge-center-line.drawn { transform: scaleY(1); }
.bridge-center-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.bridge-center-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.bridge-footer {
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
}

/* ============================================================
   HOME — OUR APPROACH (구 ONE TEAM · EVIDENCE CHAIN)
   시안 레이아웃(eyebrow · 2줄 헤드라인 · 번호 배지 · 원형 아이콘 3열)을 유지하면서
   섹션 톤은 기존 다크(--ink)로 복귀(v2.9.25). 배경 이미지는 사람 없는 회의·토론 공간.
   ============================================================ */
.one-team-section {
  --one-team-visual-h: 100%;
  background: var(--ink);
  color: var(--paper);
}
.one-team-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── 상단: 헤드라인 + 배경 이미지 ── */
.one-team-top {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vh, 108px) 0 clamp(56px, 7vh, 88px);
}
.one-team-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: min(62%, 900px);
  height: var(--one-team-visual-h);
  pointer-events: none;
  user-select: none;
}
.one-team-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 52%;
  /* 다크 섹션 톤에 맞춰 채도·밝기를 낮춤 */
  filter: saturate(0.5) brightness(1.12) contrast(1.04);
  opacity: 0.92;
}
/* 코발트 틴트 — 사진을 네이비/코발트 톤으로 묶어 배경에 녹아들게 */
.one-team-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,79,174,0.42) 0%, rgba(26,35,54,0.30) 62%);
}
.one-team-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--ink) 0%, rgba(26,35,54,0.95) 16%, rgba(26,35,54,0.54) 46%, rgba(26,35,54,0.08) 100%),
    linear-gradient(to bottom, rgba(26,35,54,0.14) 0%, rgba(26,35,54,0.34) 70%, var(--ink) 100%);
}
.one-team-header {
  max-width: 760px;
}
.one-team-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emphasis-soft);
}
.one-team-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--emphasis-soft);
  opacity: 0.8;
}
.one-team-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 600;   /* 국·영문 동일 무게(v2.9.62) */
  font-size: clamp(1.75rem, 3.4vw, 2.95rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 20px;
  word-break: keep-all;
}
.one-team-heading-accent {
  display: block;
  color: var(--emphasis-soft);
}
.one-team-heading em {
  font-style: italic;
  color: var(--emphasis-soft);
}
.one-team-sub {
  max-width: 560px;
  font-size: 15px;
  color: rgba(246,247,250,0.62);
  line-height: 1.75;
}

/* ── 하단: 3열 접근 방식 ── */
.one-team-bottom {
  background: rgba(255,255,255,0.035);
  border-top: 1px solid rgba(246,247,250,0.14);
}
.one-team-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(36px, 5vh, 56px) 0 clamp(40px, 5.5vh, 60px);
}
.one-team-col {
  padding-right: clamp(22px, 3vw, 44px);
}
.one-team-col + .one-team-col {
  padding-left: clamp(22px, 3vw, 44px);
  border-left: 1px solid rgba(246,247,250,0.13);
}
.one-team-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 25px;
  margin-bottom: 22px;
  padding: 0 9px;
  border-radius: 7px;
  background: rgba(142,170,216,0.16);
  color: #BACDEB;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.one-team-col-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.one-team-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(142,170,216,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.one-team-icon::before {
  content: '';
  width: 22px;
  height: 22px;
  background-color: #A9C0E6;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
/* 아이콘 3종 — CMS body(bleach) 통과 문제를 피하려 CSS mask로 제공 */
.one-team-icon--people {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 20v-1.5a3.5 3.5 0 0 0-3.5-3.5h-5A3.5 3.5 0 0 0 4 18.5V20'/%3E%3Ccircle cx='10' cy='8' r='3.4'/%3E%3Cpath d='M20 20v-1.5a3.5 3.5 0 0 0-2.6-3.38'/%3E%3Cpath d='M15.2 5.05a3.4 3.4 0 0 1 0 5.9'/%3E%3C/svg%3E");
}
.one-team-icon--chart {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3v17h16'/%3E%3Cpath d='M8 20v-6'/%3E%3Cpath d='M12.5 20V8.5'/%3E%3Cpath d='M17 20v-9'/%3E%3Cpath d='M7 9.5l4-3.5 3.5 2.5L19 4'/%3E%3C/svg%3E");
}
.one-team-icon--pill {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.9 3.9a4.4 4.4 0 0 1 6.2 6.2l-11 11a4.4 4.4 0 0 1-6.2-6.2z'/%3E%3Cpath d='M8.6 9.2l6.2 6.2'/%3E%3C/svg%3E");
}
.one-team-col-title {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 600;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.35;
  color: var(--paper);
  word-break: keep-all;
}
.one-team-col-body {
  font-size: 14px;
  color: rgba(246,247,250,0.58);
  line-height: 1.78;
  word-break: keep-all;
}
.one-team-sub { word-break: keep-all; }
@media (max-width: 900px) {
  /* 모바일·태블릿 — 이미지를 상단 밴드로 전환해 확실히 보이도록 */
  .one-team-section { --one-team-visual-h: clamp(210px, 46vw, 320px); }
  .one-team-visual { width: 100%; }
  .one-team-visual img {
    object-position: 54% 42%;
    opacity: 0.95;
  }
  .one-team-visual::before {
    background: linear-gradient(150deg, rgba(45,79,174,0.34) 0%, rgba(26,35,54,0.24) 72%);
  }
  .one-team-visual::after {
    background: linear-gradient(to bottom, rgba(26,35,54,0.10) 0%, rgba(26,35,54,0.34) 60%, var(--ink) 100%);
  }
  /* 사진 밴드 아래에서 텍스트가 시작하도록 — 밴드 높이 + 여백 */
  .one-team-top { padding-top: calc(var(--one-team-visual-h) + 32px); }
  .one-team-header { max-width: none; }
}
@media (max-width: 768px) {
  .one-team-cols { grid-template-columns: 1fr; gap: 34px; }
  .one-team-col { padding-right: 0; }
  .one-team-col + .one-team-col {
    padding-left: 0;
    padding-top: 34px;
    border-left: none;
    border-top: 1px solid rgba(246,247,250,0.13);
  }
  .one-team-num { margin-bottom: 18px; }
}

/* ============================================================
   HOME — INSIGHTS STRIP
   ============================================================ */
.home-insights-section {
  padding: clamp(80px, 10vh, 120px) 0;
  background: var(--bg);
}
.home-insights-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.home-insights-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.home-insights-head-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.home-insights-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}
/* 첫 문장 리드 — <strong>으로 감싼 문장은 별 줄로 강조 (국문 홈 Latest Thinking) */
.home-insights-sub strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.view-all-link:hover { color: var(--primary); border-color: var(--primary); }
.view-all-link .arr { transition: transform 0.3s; }
.view-all-link:hover .arr { transform: translateX(4px); }
.home-insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.insight-feature {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.insight-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(26,35,54,0.3);
}
.insight-feature-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.insight-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.7);
  transition: transform 0.7s ease;
}
.insight-feature:hover .insight-feature-img img { transform: scale(1.06); }
.insight-feature-body { padding: 28px 30px 32px; }
.insight-tag-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}
.itag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--emphasis-soft);
}
.icat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(246,247,250,0.4);
}
.insight-feature-title {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.insight-feature-lead {
  font-size: 14px;
  color: rgba(246,247,250,0.7);
  line-height: 1.65;
}
.insights-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.insight-small {
  background: var(--bg);
  padding: 28px 28px 26px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}
.insight-small:hover { background: var(--paper, #fff); }
.itag-sm {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--emphasis);
}
.insight-small-title {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 420;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.insight-small-arr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.insight-small-arr .arr { transition: transform 0.3s; color: var(--muted); }
.insight-small:hover .insight-small-arr { color: var(--primary); }
.insight-small:hover .insight-small-arr .arr { transform: translateX(4px); color: var(--primary); }

/* ============================================================
   HOME — CTA
   ============================================================ */
.home-cta-section {
  padding: clamp(80px, 11vh, 120px) 0;
  background: var(--bg-2, #EBEDF2);
  border-top: 1px solid var(--line);
}
.home-cta-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-cta-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 340;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 16px;
}
.home-cta-heading em { font-style: italic; color: var(--primary); }
.home-cta-sub { font-size: 16px; color: var(--ink-2); line-height: 1.65; }
/* 국문 CTA — 어절 단위 줄바꿈 */
html[lang="ko"] .home-cta-heading,
html[lang="ko"] .home-cta-sub { word-break: keep-all; }
.home-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.home-cta-footnote {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 6px;
}

/* ============================================================
   INSIGHTS DETAIL — 단일 컬럼 레이아웃(v2.9.65)
   기존 우측 320px 사이드바 때문에 본문이 880px 로 좁았다. About(.page-header-inner /
   .overview-inner 등 1360px 컨테이너)과 같은 폭을 쓰도록 단일 컬럼으로 전환하고,
   Related Insights 는 본문 아래 가로 밴드로 내린다.
   ============================================================ */
.article-layout {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 48px) 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
.article-main { min-width: 0; }
.article-main .article-body {
  max-width: none;
  margin: 0;
  padding: 0;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.article-tags span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-2, #EBEDF2);
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.article-sidebar { position: static; }
.article-sidebar-inner {
  background: var(--bg-2, #EBEDF2);
  border-radius: 18px;
  padding: 32px 36px 36px;
  border: 1px solid var(--line);
}
.sidebar-heading {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 380;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.sidebar-heading em { font-style: italic; color: var(--emphasis); }
/* 본문 아래 가로 밴드 — 폭이 좁아지면 자동으로 1열 스택으로 되돌아간다(v2.9.65).
   auto-fit: 비는 트랙을 0 으로 접어 카드가 1~2개뿐일 때도 밴드 폭을 채운다(v2.9.66).
   auto-fill 이면 카드 1개일 때 240px 컬럼에 4줄로 접히고 우측이 통째로 비었다. */
.rel-card-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0 36px;
  margin-bottom: 24px;
}
.rel-card-side {
  display: block;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.2s;
}
.rel-card-side:hover { padding-left: 6px; }
.rel-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--emphasis);
  margin-bottom: 8px;
}
.rel-card-side h4 {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}
.rel-card-side:hover h4 { color: var(--primary); }
.sidebar-cta { padding-top: 4px; }
.sidebar-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-cta-link:hover { color: var(--primary); }
.sidebar-cta-link .arr { transition: transform 0.3s; }
.sidebar-cta-link:hover .arr { transform: translateX(4px); }

/* ============================================================
   RESPONSIVE — Home & Insights Detail
   ============================================================ */
@media (max-width: 1024px) {
  .deck-chapters { display: none; }
  .slide-content {
    height: clamp(340px, 44vh, 430px);
    padding: 24px 28px 48px;
  }
  .pillar-grid, .pillar-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .pillar-visual { aspect-ratio: 16/9; }
  .bench-cards { grid-template-columns: repeat(2, 1fr); }
  .bridge-band { grid-template-columns: 1fr 1fr; }
  .bridge-center { display: none; }
  .home-insights-head { grid-template-columns: 1fr; gap: 24px; }
  .home-insights-grid { grid-template-columns: 1fr; }
  .home-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px 72px; }
  .article-sidebar { position: static; }
}
@media (max-width: 720px) {
  .slide-content {
    height: clamp(360px, 50vh, 480px);
    padding-bottom: 52px;
  }
  .slide-heading {
    font-size: clamp(1.55rem, 5.2vw, 2.25rem);
    line-height: 1.12;
  }
  .bench-cards { grid-template-columns: 1fr; }
  .who-inner { text-align: left; }
  .pillars-section .pillar-list { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  /* 슬라이드 페이드 트랜지션 즉시 전환 (opacity 토글은 JS가 계속 담당) */
  .slide, .slide.active { transition: none; }
  .deck-scroll-hint { display: none; }
  .bridge-center-line { transform: scaleY(1); }
  /* reveal 등 기타 애니메이션 즉시 적용 */
  .reveal { transition: none; }
}

/* ===== Contact Thanks page ===== */
.thanks-section {
  padding: 80px 0 96px;
  background: var(--bg);
}
.thanks-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.thanks-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.thanks-note {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}
.thanks-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   페이지 내 노출 Insight (related_insights) — cms/partials/page_related.html
   ============================================================ */
.page-related {
  padding: 72px clamp(20px, 4vw, 48px) 88px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.page-related--top {
  padding: 56px clamp(20px, 4vw, 48px) 64px;
  border-top: none;
  border-bottom: 1px solid var(--line);
}
.page-related-inner {
  max-width: 1360px;
  margin: 0 auto;
}
.page-related .pr-head { margin-bottom: 32px; }
.page-related .pr-head h2 {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  font-weight: 340;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: -0.02em;
}
.page-related .pr-head h2 em { font-style: italic; color: var(--accent); }

/* 선택 수(1~4개)별 레이아웃 */
.related-grid.count-1 { grid-template-columns: minmax(0, 660px); }
.related-grid.count-2 { grid-template-columns: repeat(2, 1fr); }
.related-grid.count-3 { grid-template-columns: repeat(3, 1fr); }
.related-grid.count-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.related-grid.count-4 .art-card h3 { font-size: 16px; }

@media (max-width: 1024px) {
  .related-grid.count-3,
  .related-grid.count-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .page-related { padding: 48px 20px 56px; }
  .related-grid.count-1,
  .related-grid.count-2,
  .related-grid.count-3,
  .related-grid.count-4 { grid-template-columns: 1fr; }
}

/* 카드 이미지 없음 — 네이비 플레이스홀더 */
.art-card .img .img-ph,
.feat-card .img .img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1A2336, #2A3550);
  color: rgba(255, 255, 255, 0.35);
}

/* 필라 리스트 — 하위 메뉴 링크 */
.pillar-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.pillar-list li a:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }


/* ============================================================
   장식 이탤릭 배제 (v2.9.62) — 국·영문 공통
   ------------------------------------------------------------
   본문/헤딩 스택이 전 언어 산세리프로 통일되면서(v2.9.62), 강조용 em 을 이탤릭으로
   두면 합성 이탤릭이 되어 품질이 떨어진다. 색상 강조는 유지하고 기울기만 없앤다.
   ============================================================ */
.overview h2 em,
.vision-title em,
.overview-stats .num em,
.partners h2 em,
.experts .head h2 em,
.history .section-head h2 em {
  font-style: normal;
}
.block-text p.page-promise,
.sidebar-heading em,
.article-hero h1 em,
.page-related .pr-head h2 em,
.related h2 em,
.list-section h2 em {
  font-style: normal;
}

/* 헤딩 강조 em — 국·영문 공통 정체 (v2.9.62).
   본문(p·li) 안의 em 은 의미상 강조이므로 건드리지 않는다. */
h1 em, h2 em, h3 em, h4 em,
.serif em,
.slide-heading em,
.who-heading em,
.pillars-intro-heading em,
.section-title em,
.bench-heading em,
.one-team-heading em,
.home-cta-heading em,
.approach-title em,
.sidebar-heading em {
  font-style: normal;
}
