/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --bg: #EFF0F1;
  --bg-white: #EFF0F1;
  --bg-card: #EFF0F1;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --accent: #6366F1;
  --accent-2: #8B5CF6;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font: 'Montserrat', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ===========================
   Gradient Text
   =========================== */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ===========================
   Navbar
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 240, 241, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-white);
}
.nav-cta {
  padding: 10px 22px;
  background: var(--text-primary);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); }
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--bg-white); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.nav-mobile-link:hover, .nav-mobile-link.active {
  color: var(--text-primary);
  background: var(--bg-white);
}
.nav-mobile-cta {
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--text-primary);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--accent); }

/* ===========================
   Sections & Layout
   =========================== */
.section { padding: 100px 0; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 85vh;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-blob {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.08) 50%, rgba(236,72,153,0.08) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%; }
  75% { border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%; }
}
.hero-card-stack {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}
.hcard {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  animation: floatCard 3s ease-in-out infinite;
}
.hcard-1 { animation-delay: 0s; }
.hcard-2 { animation-delay: 0.5s; align-self: flex-end; max-width: 85%; }
.hcard-3 { animation-delay: 1s; max-width: 90%; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.hcard-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hcard-title { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.hcard-val { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); }

/* ===========================
   Services
   =========================== */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99,102,241,0.2);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===========================
   Why Us
   =========================== */
.why-section { background: var(--bg-white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.why-list li i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.why-img-wrap { position: relative; padding: 20px; }
.why-img-bg {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.08));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.why-img-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 60px);
}
.why-metric {
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-metric > i {
  width: 40px; height: 40px;
  background: rgba(99,102,241,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.why-metric-num { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.why-metric-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }

/* ===========================
   Testimonials
   =========================== */
.testimonial-section { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-role { font-size: 0.8rem; color: var(--text-secondary); }

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: var(--text-primary);
  padding: 100px 24px;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.cta-inner .btn-primary {
  background: var(--bg);
  color: var(--text-primary);
}
.cta-inner .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1; }
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--accent); color: white; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===========================
   Page Hero
   =========================== */
.page-hero {
  padding: 80px 24px 60px;
  background: var(--bg);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* ===========================
   IR Page
   =========================== */
.ir-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ir-metric-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.ir-metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ir-metric-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 20px;
}
.ir-metric-val { font-size: 2.4rem; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 8px; }
.ir-metric-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 6px; }
.ir-metric-note { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

/* Timeline */
.ir-timeline-section { background: var(--bg-white); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item.left { justify-content: flex-end; padding-right: calc(50% + 40px); }
.timeline-item.right { justify-content: flex-start; padding-left: calc(50% + 40px); }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--bg);
  z-index: 1;
}
.timeline-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 320px;
  transition: all 0.3s;
}
.timeline-content:hover { box-shadow: var(--shadow-md); }
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.timeline-round { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.timeline-amount { font-size: 1.8rem; font-weight: 900; color: var(--text-primary); margin-bottom: 8px; }
.timeline-investors { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; }
.timeline-investors i { margin-right: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* Chart */
.ir-chart-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px 32px;
}
.ir-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 280px;
}
.ir-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}
.ir-bar-label-top {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.ir-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 8px 8px 0 0;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 8px;
}
.ir-bar-year { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }

/* Funds */
.funds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fund-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.fund-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fund-icon {
  width: 48px; height: 48px;
  background: rgba(99,102,241,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.fund-pct { font-size: 2.2rem; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 8px; }
.fund-area { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.fund-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===========================
   Portfolio Page
   =========================== */

/* ── Hero ── */
.pf-hero {
  background: #EFF0F1;
  padding: 100px 24px 80px;
  border-bottom: 1px solid #E5E7EB;
}
.pf-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pf-hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2C5BAA;
  margin-bottom: 20px;
}
.pf-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pf-hero-accent { color: #2C5BAA; }
.pf-hero-desc {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.7;
}

/* ── Section wrap ── */
.pf-section {
  background: #EFF0F1;
  padding: 60px 24px 100px;
}
.pf-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Filter bar ── */
.pf-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pf-filter-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6B7280;
  background: #fff;
  border: 1.5px solid #C9CDD4;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.pf-filter-btn:hover {
  border-color: #4BBFD6;
  color: #4BBFD6;
}
.pf-filter-btn.active {
  background: #4BBFD6;
  color: #fff;
  border-color: #4BBFD6;
}
.pf-total-count {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: #9CA3AF;
}

/* ── 컬럼 너비 정의 (헤더 + 행 공통) ── */
/* Business: 나머지, With: 72px, Stage×2: 120px, Milestone: 320px */
.pf-list-header,
.pf-list-row {
  display: grid;
  grid-template-columns: 280px 80px 130px 140px 1fr;
  align-items: stretch;
}

/* ── 헤더 행 ── */
.pf-list-header {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-bottom: none;
}
.pf-list-header > div {
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111827;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #F3F4F6;
}
.pf-list-header > div:last-child {
  border-right: none;
}

/* ── 리스트 컨테이너 ── */
.pf-list {
  border: 1px solid #C9CDD4;
}

/* ── 각 행 ── */
.pf-list-row {
  border-bottom: 1px solid #E5E7EB;
  background: #fff;
  transition: background 0.15s;
  min-height: 80px;
}
.pf-list-row:last-child { border-bottom: none; }
.pf-list-row:hover { background: #FAFBFF; }

/* 셀 공통 */
.pf-list-row > div {
  padding: 20px;
  border-right: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
}
.pf-list-row > div:last-child { border-right: none; }

/* Business 셀: 기업명 + 사업내용 */
.pf-col-business {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 24px !important;
  transition: background 0.15s;
}
.pf-col-business:hover {
  background: #EFF6FF;
}
.pf-col-business:hover .pf-row-name {
  color: #2C5BAA;
}
.pf-row-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  word-break: keep-all;
  line-height: 1.4;
}
.pf-sector-tag {
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: 0;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 6px;
  /* 기본 */
  color: #6B7280;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
}
/* 섹터별 색상 */
.pf-sector-tag.sector-advanced-tech  { color: #2C5BAA; background: #EFF6FF; border-color: #BFDBFE; }
.pf-sector-tag.sector-bio            { color: #059669; background: #ECFDF5; border-color: #A7F3D0; }
.pf-sector-tag.sector-saas           { color: #7C3AED; background: #F5F3FF; border-color: #DDD6FE; }
.pf-sector-tag.sector-commerce       { color: #D97706; background: #FFFBEB; border-color: #FDE68A; }
.pf-sector-tag.sector-service        { color: #0891B2; background: #ECFEFF; border-color: #A5F3FC; }
.pf-sector-tag.sector-contents       { color: #DB2777; background: #FDF2F8; border-color: #FBCFE8; }
.pf-sector-tag.sector-pet            { color: #EA580C; background: #FFF7ED; border-color: #FED7AA; }
.pf-row-name::after {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.pf-col-business:hover .pf-row-name::after {
  opacity: 1;
  transform: translateX(0);
}
.pf-row-biz {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.55;
  word-break: keep-all;
}

/* With 셀 */
.pf-col-with {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px !important;
}
.pf-row-with {
  font-size: 0.9rem;
  font-weight: 400;
  color: #374151;
}

/* Stage 셀 */
.pf-col-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px !important;
}
.pf-badge {
  font-size: 0.85rem;
  font-weight: 400;
  color: #374151;
  white-space: nowrap;
}
.pf-badge-involved {}
.pf-badge-current {}

/* Milestone 셀 */
.pf-col-milestone {
  padding: 20px 24px !important;
  align-items: flex-start !important;
  min-width: 0;
}
.pf-ms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.pf-ms-item {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
}
.pf-ms-year {
  font-weight: 400;
  color: #6B7280;
  flex-shrink: 0;
  min-width: 30px;
  font-size: 0.8rem;
}
.pf-ms-text {
  color: #374151;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pf-hero-title { font-size: 2.4rem; }
  .pf-list-header,
  .pf-list-row {
    grid-template-columns: 200px 60px 110px 120px 200px;
  }
}
@media (max-width: 768px) {
  .pf-hero-title { font-size: 2rem; }
  .pf-hero { padding: 80px 20px 60px; }
  .pf-section { padding: 40px 16px 80px; }
  /* 모바일: 2행 구조로 변경 */
  .pf-list-header { display: none; }
  .pf-list-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    padding: 0;
  }
  .pf-col-business { grid-column: 1 / 3; border-bottom: 1px solid #F3F4F6; }
  .pf-col-with     { grid-column: 1; justify-content: flex-start; }
  .pf-col-stage:nth-child(3) { grid-column: 2; }
  .pf-col-stage:nth-child(4) { grid-column: 1; }
  .pf-col-milestone { grid-column: 1 / 3; border-top: 1px solid #F3F4F6; }
}

/* ============================
   Portfolio Detail Page
   ============================ */

/* ── 히어로 ── */
.pd-hero {
  background: #EFF0F1;
  border-bottom: 1px solid #C9CDD4;
  padding: 48px 24px 56px;
}
.pd-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.15s;
}
.pd-back:hover { color: #2C5BAA; }

.pd-hero-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.pd-logo-placeholder {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: #2C5BAA;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.pd-hero-info { flex: 1; }
.pd-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pd-sector-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(44,91,170,0.1);
  color: #2C5BAA;
  border: 1px solid rgba(44,91,170,0.2);
  letter-spacing: 0.03em;
}
.pd-with-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  background: #F3F4F6;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}
.pd-stage-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid;
}
.pd-hero-name {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pd-hero-biz {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 12px;
}
.pd-hero-desc {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.7;
  max-width: 680px;
}

/* ── 본문 2단 레이아웃 ── */
.pd-body {
  background: #EFF0F1;
  padding: 48px 24px 80px;
}
.pd-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

/* ── 카드 ── */
.pd-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.pd-card:last-child { margin-bottom: 0; }
.pd-card-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F3F4F6;
}

/* ── 타임라인 ── */
.pd-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd-timeline-item {
  display: grid;
  grid-template-columns: 44px 20px 1fr;
  gap: 0 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #F9FAFB;
  position: relative;
}
.pd-timeline-item:last-child { border-bottom: none; }
.pd-timeline-year {
  font-size: 0.78rem;
  font-weight: 800;
  color: #2C5BAA;
  padding-top: 2px;
}
.pd-timeline-dot {
  width: 8px;
  height: 8px;
  background: #2C5BAA;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  justify-self: center;
}
.pd-timeline-text {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
  padding-top: 1px;
}

/* ── 사이드 정보 ── */
.pd-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #F3F4F6;
  gap: 12px;
}
.pd-info-row:last-child { border-bottom: none; }
.pd-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9CA3AF;
  flex-shrink: 0;
}
.pd-info-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  text-align: right;
}
.pd-status {
  color: #16A34A;
}
.pd-stage-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border: 1px solid;
}
.pd-info-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2C5BAA;
  text-align: right;
  word-break: break-all;
}

/* ── 이전/다음 네비게이션 ── */
.pd-nav-section {
  background: #fff;
  border-top: 1px solid #C9CDD4;
  padding: 32px 24px;
}
.pd-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pd-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 20px;
  border: 1px solid #C9CDD4;
  background: #fff;
  transition: all 0.15s;
  min-width: 180px;
}
.pd-nav-btn:hover {
  border-color: #2C5BAA;
  background: #EFF6FF;
}
.pd-nav-arrow {
  font-size: 1.1rem;
  color: #2C5BAA;
  flex-shrink: 0;
}
.pd-nav-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pd-nav-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.pd-nav-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
}
.pd-nav-list-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6B7280;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #C9CDD4;
  transition: all 0.15s;
}
.pd-nav-list-btn:hover {
  color: #2C5BAA;
  border-color: #2C5BAA;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pd-body-inner { grid-template-columns: 1fr; }
  .pd-hero-top { flex-direction: column; gap: 16px; }
  .pd-hero-name { font-size: 1.6rem; }
  .pd-nav-inner { flex-wrap: wrap; justify-content: center; }
  .pd-nav-btn { min-width: 140px; }
}

/* ════════════════════════════════════════
   pd2 — Portfolio Detail v2 (IR Layout)
   ════════════════════════════════════════ */

/* Hero */
.pd2-hero {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  padding: 48px 0 40px;
}
.pd2-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.pd2-back {
  display: inline-block;
  font-size: 0.85rem;
  color: #6B7280;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.pd2-back:hover { color: #2C5BAA; }

.pd2-hero-top {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pd2-logo-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.pd2-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd2-logo-initial {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: #2C5BAA;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd2-hero-info { flex: 1; }
.pd2-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.pd2-sector-tag {
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid;
  /* 기본 */
  color: #6B7280;
  background: #F3F4F6;
  border-color: #E5E7EB;
}
.pd2-sector-tag.sector-advanced-tech  { color: #2C5BAA; background: #EFF6FF; border-color: #BFDBFE; }
.pd2-sector-tag.sector-bio            { color: #059669; background: #ECFDF5; border-color: #A7F3D0; }
.pd2-sector-tag.sector-saas           { color: #7C3AED; background: #F5F3FF; border-color: #DDD6FE; }
.pd2-sector-tag.sector-commerce       { color: #D97706; background: #FFFBEB; border-color: #FDE68A; }
.pd2-sector-tag.sector-service        { color: #0891B2; background: #ECFEFF; border-color: #A5F3FC; }
.pd2-sector-tag.sector-contents       { color: #DB2777; background: #FDF2F8; border-color: #FBCFE8; }
.pd2-sector-tag.sector-pet            { color: #EA580C; background: #FFF7ED; border-color: #FED7AA; }
.pd2-stage-tag {
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid;
}
.pd2-hero-name {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pd2-hero-biz {
  font-size: 1rem;
  color: #6B7280;
}

/* Section 1 — KPI 2×2 */
.pd2-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pd2-kpi-stage-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.pd2-kpi-stage-item {
  flex: 1;
  padding: 4px 0;
}
.pd2-kpi-stage-divider {
  height: 1px;
  background: #F3F4F6;
  margin: 10px 0;
}

/* 지분 세로 막대그래프 */
.pd2-bar-chart-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
  height: 180px;
}
.pd2-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 80px;
  flex-shrink: 0;
  height: 100%;
  justify-content: flex-end;
}
.pd2-bar-name {
  font-size: 0.75rem;
  color: #6B7280;
  order: 3;
  margin-top: 2px;
}
.pd2-bar-track {
  width: 80px;
  background: #F3F4F6;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  order: 2;
}
.pd2-bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s ease;
}
.pd2-bar-invest {
  background: #93C5FD;
  height: 22px;
}
.pd2-bar-eval {
  background: #2C5BAA;
  height: 158px;
}
.pd2-bar-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  order: 1;
  margin-bottom: 4px;
}
.pd2-kpi-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  padding: 28px 32px;
}
.pd2-kpi-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 12px;
}
.pd2-kpi-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #374151;
  letter-spacing: -0.02em;
}
.pd2-kpi-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #6B7280;
  margin-left: 4px;
}

/* Section 2 — 투자핵심이유 */
.pd2-reason-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd2-reason-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

/* 펀딩내역 표 */
.pd2-funding-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
  font-size: 0.88rem;
}
.pd2-funding-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  border-bottom: 1px solid #E5E7EB;
  background: #EFF0F1;
}
.pd2-funding-table td {
  padding: 12px 14px;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
}
.pd2-funding-table tbody tr:last-child td {
  border-bottom: none;
}
.pd2-funding-table tbody tr:hover td {
  background: #FAFBFF;
}
.pd2-td-value {
  color: #E97316;
  font-weight: 700;
}
.pd2-tr-involved td {
  background: #FFF7ED;
}
.pd2-involved-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: #E97316;
  border-radius: 999px;
  padding: 1px 7px;
  margin-left: 6px;
  vertical-align: middle;
}
.pd2-reason-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pd2-reason-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #E5E7EB;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.pd2-reason-body { flex: 1; }
.pd2-reason-divider {
  width: 1px;
  background: #F3F4F6;
  align-self: stretch;
  margin: 0 24px;
  flex-shrink: 0;
}
.pd2-reason-card-col {
  flex-direction: column;
  gap: 0;
}
.pd2-reason-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 4px 0;
}
.pd2-reason-hdivider {
  height: 1px;
  background: #F3F4F6;
  margin: 16px 0;
}
.pd2-reason-analyst {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 32px;
  border-right: 1px solid #F3F4F6;
  margin-right: 8px;
}
.pd2-analyst-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.pd2-analyst-name {
  font-size: 0.78rem;
  color: #6B7280;
  font-weight: 500;
  text-align: center;
}
.pd2-reason-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}
.pd2-reason-desc {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
}

/* Section 3 — 차트 범례 */
.pd2-chart-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.pd2-legend-bar::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(44,91,170,0.75);
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.pd2-legend-bar2::before {
  background: rgba(75,191,214,0.75);
}
.pd2-legend-line::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background: #E97316;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.pd2-legend-bar,
.pd2-legend-line,
.pd2-legend-bar2 {
  font-size: 0.8rem;
  color: #6B7280;
  display: flex;
  align-items: center;
}

/* Section 3 — 아코디언 */
.pd2-accordion-wrap {
  border: 1px solid #C9CDD4;
  background: #fff;
}
.pd2-accordion-item {
  border-bottom: 1px solid #E5E7EB;
}
.pd2-accordion-item:last-child { border-bottom: none; }
.pd2-accordion-head {
  width: 100%;
  display: grid;
  grid-template-columns: 120px 80px 1fr 32px;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  gap: 12px;
}
.pd2-accordion-head:hover { background: #FAFBFF; }
.pd2-acc-round {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}
.pd2-acc-year {
  font-size: 0.85rem;
  color: #6B7280;
}
.pd2-acc-amount {
  font-size: 0.85rem;
  color: #2C5BAA;
  font-weight: 600;
}
.pd2-acc-chevron {
  font-size: 1.1rem;
  color: #9CA3AF;
  text-align: right;
}
.pd2-accordion-body {
  padding: 0 24px 20px;
}
.pd2-acc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding-top: 4px;
}
.pd2-acc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd2-acc-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}
.pd2-acc-detail-value {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 500;
}

/* Section 5 — 회사 정보 나란히 */
.pd2-info-row-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pd2-info-card {
  margin-bottom: 0 !important;
}
.pd2-info-card-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F3F4F6;
}

/* Timeline (Section 5) */
.pd2-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd2-tl-item {
  display: grid;
  grid-template-columns: 44px 20px 1fr;
  align-items: start;
  gap: 0 8px;
  padding: 10px 0;
  border-bottom: 1px solid #F9FAFB;
}
.pd2-tl-item:last-child { border-bottom: none; }
.pd2-tl-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2C5BAA;
  padding-top: 2px;
}
.pd2-tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2C5BAA;
  margin-top: 5px;
  justify-self: center;
}
.pd2-tl-text {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.6;
}

/* Company Info (Section 5) */
.pd2-company-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd2-company-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
}
.pd2-company-row:last-child { border-bottom: none; }
.pd2-company-label {
  font-size: 0.82rem;
  color: #9CA3AF;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 110px;
}
.pd2-company-value {
  font-size: 0.88rem;
  color: #111827;
  font-weight: 500;
  text-align: right;
}
.pd2-company-link {
  font-size: 0.88rem;
  color: #2C5BAA;
  text-decoration: none;
  text-align: right;
}
.pd2-company-link:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd2-hero-inner { padding: 0 24px; }
}
@media (max-width: 768px) {
  .pd2-kpi-grid { grid-template-columns: 1fr; }
  .pd2-info-row-wrap { grid-template-columns: 1fr; }
  .pd2-reason-card { flex-direction: column; gap: 12px; }
  .pd2-hero-top { flex-direction: column; align-items: flex-start; }
  .pd2-hero-name { font-size: 1.6rem; }
}

/* Tech Stack */
.tech-section { background: var(--bg-white); }
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.tech-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  flex: 1;
  min-width: 130px;
}
.tech-item:hover { border-color: var(--accent); background: var(--bg-white); box-shadow: var(--shadow-sm); }
.tech-icon { font-size: 1.5rem; }

/* ===========================
   Team Page
   =========================== */
.team-culture-row {
  display: flex;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.culture-stat {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.culture-stat:last-child { border-right: none; }
.culture-stat:hover { background: rgba(99,102,241,0.03); }
.culture-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.culture-num { font-size: 2rem; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.culture-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar-wrap { position: relative; padding: 24px 24px 0; }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
}
.team-social {
  position: absolute;
  top: 24px; right: 24px;
  display: flex;
  gap: 8px;
}
.team-social a {
  width: 32px; height: 32px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.team-social a:hover { background: var(--accent); color: white; }
.team-info { padding: 16px 24px 24px; }
.team-name { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.team-expertise { display: flex; flex-wrap: wrap; gap: 6px; }
.expertise-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Advisors */
.advisor-section { background: var(--bg-white); }
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advisor-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.advisor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--bg-white); }
.advisor-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.advisor-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.advisor-role { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.advisor-org { font-size: 0.82rem; color: var(--text-secondary); }
.advisor-org i { margin-right: 6px; }

/* Hiring */
.hiring-section { padding: 100px 24px; background: var(--bg); }
.hiring-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hiring-text p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; }
.open-roles { display: flex; flex-direction: column; gap: 12px; }
.role-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.role-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.role-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.role-meta { font-size: 0.8rem; color: var(--text-secondary); }
.role-apply {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.2s;
}
.role-apply:hover { gap: 10px; }
.hiring-values {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.hiring-values h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 24px; }
.value-item { display: flex; gap: 16px; margin-bottom: 24px; }
.value-item:last-child { margin-bottom: 0; }
.value-icon {
  width: 40px; height: 40px;
  background: rgba(99,102,241,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.value-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.value-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-inner { max-width: 600px; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .ir-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .funds-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .advisor-grid { grid-template-columns: repeat(2, 1fr); }
  .hiring-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .ir-metrics-grid { grid-template-columns: 1fr 1fr; }
  .funds-grid { grid-template-columns: 1fr 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-culture-row { flex-wrap: wrap; }
  .culture-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-item.left { padding-right: 20px; padding-left: 40px; justify-content: flex-start; }
  .timeline-item.right { padding-left: 40px; }
  .timeline-line { left: 16px; }
  .timeline-dot { left: 16px; }
  .section { padding: 64px 0; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
  .ir-metrics-grid { grid-template-columns: 1fr; }
  .funds-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .advisor-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .page-hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
}

/* ===========================
   IR Page — Kudos Ventures
   =========================== */

/* Logo update */
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #2C5BAA, #2e4fa3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-dot { display: none; }

/* IR Hero */
.ir-hero {
  background: #EFF0F1;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E2E3E5;
}
.ir-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(75,191,214,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.ir-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.ir-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4BBFD6;
  background: rgba(75,191,214,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(75,191,214,0.3);
  margin-bottom: 24px;
}
.ir-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ir-hero-title-accent {
  color: #4BBFD6;
}
.ir-hero-desc {
  font-size: 1.05rem;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 40px;
}
.ir-hero-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ir-hero-btn {
  padding: 10px 22px;
  background: #ffffff;
  border: 1.5px solid #D1D5DB;
  border-radius: 100px;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.ir-hero-btn:hover {
  background: #4BBFD6;
  border-color: #4BBFD6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75,191,214,0.3);
}

/* IR Sticky Tab Nav */
/* IR Body Layout: 사이드 탭 + 메인 콘텐츠 */
.ir-body-wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* 왼쪽 사이드 탭 네비 */
.ir-side-nav {
  position: sticky;
  top: 88px;
  width: 210px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 96px 20px 24px 24px;
  align-self: flex-start;
  min-height: 100vh;
}

/* 메인 콘텐츠 */
.ir-main-content {
  flex: 1;
  min-width: 0;
}

/* 사이드 탭 섹션 레이블 */
.ir-side-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9CDD4;
  padding: 0 4px 10px 4px;
  margin-bottom: 4px;
  border-bottom: 1px solid #E5E7EB;
}

/* 탭 스타일 - 박스 디자인 */
.ir-tab {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #9CA3AF;
  background: #E4E5E6;
  border: 1px solid #D1D5DB;
  border-radius: 0;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.ir-tab:hover {
  color: #F9FAFB;
  background: #4B5563;
  border-color: #4B5563;
}
.ir-tab.active {
  color: #4BBFD6;
  font-weight: 700;
  background: rgba(75,191,214,0.15);
  border-color: #4BBFD6;
}

/* ── 포트폴리오 상세: 체크박스 섹션 토글 ── */
.pd-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  user-select: none;
}
.pd-check-item:hover {
  background: #F3F4F6;
}
.pd-check-input {
  display: none;
}
.pd-check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #D1D5DB;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  position: relative;
}
.pd-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}
.pd-check-input:checked + .pd-check-box {
  background: #2C5BAA;
  border-color: #2C5BAA;
}
.pd-check-input:checked + .pd-check-box::after {
  opacity: 1;
}
.pd-check-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6B7280;
  transition: color 0.15s;
}
.pd-check-input:checked ~ .pd-check-label {
  color: #111827;
  font-weight: 600;
}

/* 섹션 페이드인 애니메이션 */
@keyframes pd-section-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* IR Section Layout */
.ir-section {
  padding: 80px 48px 80px 40px;
  background: #EFF0F1;
}
.ir-section-alt {
  background: #EFF0F1;
}
.ir-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ir-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4BBFD6;
  background: rgba(75,191,214,0.15);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(75,191,214,0.3);
  margin-bottom: 20px;
}
.ir-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.ir-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.ir-section-sub {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.75;
  max-width: 640px;
}

/* Chart Card */
.ir-chart-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-radius: 0;
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ir-chart-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
/* 트리맵 기준 토글 버튼 */
.ir-treemap-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}
.ir-treemap-toggle-btn {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6B7280;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.ir-treemap-toggle-btn:hover {
  color: #374151;
  background: rgba(255,255,255,0.6);
}
.ir-treemap-toggle-btn.active {
  background: #fff;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.ir-chart-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.ir-chart-subtitle {
  font-size: 0.8rem;
  color: #9CA3AF;
}
.ir-chart-wrap {
  position: relative;
  height: 320px;
  background: #ffffff;
}
.ir-chart-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.ir-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #6B7280;
  font-weight: 600;
}
.ir-chart-legend-item span {
  width: 12px; height: 12px;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}

/* Highlight Cards (Section 1) */
.ir-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.ir-highlight-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-radius: 0;
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: all 0.3s;
}
.ir-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: rgba(75,191,214,0.35);
}
.ir-highlight-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(26,46,90,0.1), rgba(75,191,214,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C5BAA;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ir-highlight-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}
.ir-highlight-body p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.65;
}

/* KPI Row */
.ir-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ir-kpi-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.ir-kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ir-kpi-card-alt { border-top: none; }
.ir-kpi-icon {
  width: 48px; height: 48px;
  background: rgba(26,46,90,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C5BAA;
  font-size: 1.15rem;
  margin: 0 auto 16px;
}
.ir-kpi-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  margin-bottom: 6px;
}
.ir-kpi-unit {
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 4px;
  color: #6B7280;
}
.ir-kpi-label {
  font-size: 0.82rem;
  color: #6B7280;
  font-weight: 500;
}

/* ---- LAV / FAV / NAV 정의 카드 ---- */
.ir-nav-def-card {
  /* 단독 박스로 쓸 때만 필요 — 통합 시 ir-chart-card 안에 포함되므로 스타일 없음 */
}
.ir-nav-def-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  padding: 32px 36px;
  gap: 40px;
}
.ir-nav-def-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 0 36px;
}
.ir-nav-def-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding-right: 24px;
  border-right: none;
}
.ir-nav-def-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.ir-nav-def-abbr {
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ir-nav-def-full {
  font-size: 0.78rem;
  color: #9CA3AF;
  font-weight: 400;
  margin-top: 2px;
}
.ir-nav-def-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3B82F6;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  flex-shrink: 0;
}
.ir-nav-def-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.ir-nav-def-desc {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.ir-nav-def-formula {
  font-size: 0.8rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

/* Portfolio Bar (Section 2) */
.ir-bar-portfolio {
  padding: 8px 0;
}
/* 호버 레이블 */
.ir-bar-hover-label {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  margin-bottom: 6px;
  opacity: 1;
  transition: opacity 0.15s;
  pointer-events: none;
}
.ir-bar-hover-label.visible {
  opacity: 1;
}
.ir-bar-hover-dot {
  width: 16px; height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  display: inline-block;
}
.ir-bar-hover-text {
  font-size: 1.18rem;
  font-weight: 700;
  color: #111827;
}
.ir-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ir-bar-row-label {
  display: none;
}
.ir-bar-track {
  width: 100%;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.ir-bar-seg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.ir-bar-seg span {
  display: none;
}
.ir-bar-seg {
  cursor: pointer;
  transition: opacity 0.18s;
}
.ir-bar-legend {
  display: flex;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.ir-bar-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #6B7280;
  font-weight: 600;
}
.ir-bar-legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.ir-bar-legend-name {
  color: #374151;
  font-weight: 600;
}
.ir-bar-legend-pct {
  color: #111827;
  font-weight: 800;
  font-size: 0.85rem;
}
.ir-bar-legend-amt {
  color: #9CA3AF;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---- 포트폴리오 바 차트 (26개 세그먼트) ---- */
.ir-pf-seg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.18s;
  overflow: hidden;
}
.ir-pf-legend-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 12px;
  margin-top: 18px;
}
.ir-pf-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  min-width: 0;
}
.ir-pf-legend-dot {
  width: 9px; height: 9px;
  border-radius: 2px;
  flex-shrink: 0;
}
.ir-pf-legend-name {
  color: #374151;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.ir-pf-legend-val {
  color: #9CA3AF;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- 포트폴리오 상세 테이블 ---- */
.ir-pf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.ir-pf-table th {
  background: #F3F4F6;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  color: #374151;
  font-size: 0.82rem;
}
.ir-pf-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #F3F4F6;
  color: #111827;
  vertical-align: middle;
}
.ir-pf-table tr:last-child td {
  border-bottom: none;
}
.ir-pf-rank {
  width: 48px;
  text-align: center !important;
}
.ir-pf-num {
  text-align: right !important;
  white-space: nowrap;
}
.ir-pf-date {
  text-align: center !important;
  white-space: nowrap;
  width: 96px;
}
.ir-pf-date-cell {
  text-align: center;
  white-space: nowrap;
  color: #6B7280;
  font-size: 0.82rem;
}
.ir-pf-rank-cell {
  text-align: center;
}
.ir-pf-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #E5E7EB;
  color: #6B7280;
  font-size: 0.75rem;
  font-weight: 700;
}
.ir-pf-rank-badge.top {
  background: #2C5BAA;
  color: #fff;
}
.ir-pf-name-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ir-pf-fund-tag {
  background: #4BBFD6;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ir-pf-listed-tag {
  background: #EFF6FF;
  color: #2C5BAA;
  border: 1px solid #BFDBFE;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ir-pf-exit-tag {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid #FED7AA;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ir-pf-impaired-tag {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ir-pf-num-cell {
  text-align: right;
  white-space: nowrap;
  color: #374151;
}
.ir-pf-num-cell.bold {
  font-weight: 700;
  color: #2C5BAA;
}

/* ---- 자산 상세 아코디언 ---- */
.ir-accordion-wrap {
  margin-top: 28px;
  background: #fff;
  border-top: 1.5px solid #C9CDD4;
}
.ir-accordion-header-row {
  padding: 20px 4px 12px;
}
.ir-accordion-header-row span {
  display: inline-block;
  padding: 5px 14px;
  border: 1.25px solid #D1D5DB;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
}
.ir-accordion-item {
  border-bottom: 1.25px solid #E5E7EB;
}
.ir-accordion-item:last-child {
  border-bottom: none;
}
.ir-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ir-accordion-trigger:hover {
  opacity: 0.75;
}
.ir-accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ir-accordion-dot {
  display: none;
}
.ir-accordion-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #111827;
}
.ir-accordion-pct {
  display: none;
}
.ir-accordion-trigger-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ir-accordion-amt {
  display: none;
}
.ir-accordion-chevron {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #9CA3AF;
  border-bottom: 1.5px solid #9CA3AF;
  transform: rotate(45deg);
  transition: transform 0.25s, border-color 0.25s;
  display: inline-block;
  flex-shrink: 0;
  margin-bottom: 3px;
}
.ir-accordion-trigger.open .ir-accordion-chevron {
  transform: rotate(225deg);
  margin-bottom: -3px;
}
.ir-accordion-body {
  display: none;
  padding: 0 0 20px 20px;
  background: transparent;
}
.ir-accordion-body.open {
  display: block;
}
.ir-acc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ir-acc-table thead tr {
  border-bottom: 1px solid #C9CDD4;
}
.ir-acc-table th {
  padding: 10px 12px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.03em;
}
.ir-acc-table td {
  padding: 10px 12px;
  color: #374151;
  border-bottom: 1px solid #F3F4F6;
}
.ir-acc-table tr:last-child td {
  border-bottom: none;
}
.ir-acc-num {
  font-weight: 700;
  color: #111827;
}
.ir-acc-name {
  font-weight: 500;
  color: #111827;
}
.ir-acc-date {
  color: #6B7280;
  font-size: 0.82rem;
}
.ir-acc-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ir-acc-bar {
  height: 6px;
  border-radius: 3px;
  min-width: 4px;
}
.ir-acc-bar-wrap span {
  font-size: 0.8rem;
  color: #6B7280;
  white-space: nowrap;
}

/* Bubble Map (Section 2) */
/* ---- 섹터 트리맵 (canvas) ---- */
.ir-treemap-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ir-treemap-wrap {
  flex: 1 1 0;
  min-width: 0;
  transition: flex 0.3s ease;
}
.ir-treemap-wrap canvas {
  display: block;
  width: 100%;
  border-radius: 0;
}
.ir-treemap-wrap.panel-open {
  flex: 0 0 73%;
}

/* 사이드 패널 */
.ir-treemap-panel {
  flex: 0 0 0%;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: flex 0.3s ease, opacity 0.3s ease;
  background: #fff;
  border: 1.5px solid #C9CDD4;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}
.ir-treemap-panel.open {
  flex: 0 0 25%;
  width: auto;
  opacity: 1;
  overflow: hidden;
}
.ir-treemap-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #F3F4F6;
}
.ir-treemap-panel-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.ir-treemap-panel-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
  flex: 1;
}
.ir-treemap-panel-count {
  font-size: 0.70rem;
  font-weight: 600;
  color: #9CA3AF;
  background: #F3F4F6;
  padding: 2px 8px;
  border-radius: 20px;
}
.ir-treemap-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  font-size: 0.9rem;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.15s;
}
.ir-treemap-panel-close:hover { color: #374151; }
.ir-treemap-panel-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  overflow-y: auto;
  flex: 1;
}
.ir-tm-company {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid #F9FAFB;
  transition: background 0.12s;
}
.ir-tm-company:last-child { border-bottom: none; }
.ir-tm-company:hover { background: #F9FAFB; }
.ir-tm-idx {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ir-tm-name {
  font-size: 0.80rem;
  font-weight: 600;
  color: #111827;
}

@media (max-width: 768px) {
  .ir-treemap-layout { flex-direction: column; }
  .ir-treemap-wrap.panel-open { flex: 1 1 auto; }
  .ir-treemap-panel.open { flex: 0 0 auto; width: 100%; }
}

/* Table */
/* 섹션 내 박스 위 소제목 */
.ir-sub-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  margin: 36px 0 12px 0;
}
.ir-sub-title:first-of-type {
  margin-top: 8px;
}

.ir-table-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ir-table-title {
  display: none; /* 타이틀을 박스 밖 ir-sub-title로 대체 */
}
.ir-table-wrap {
  overflow-x: auto;
}
.ir-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ir-table thead tr {
  background: #F9FAFB;
  border-bottom: 1px solid #C9CDD4;
}
.ir-table thead th {
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: left;
}
.ir-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.15s;
}
.ir-table tbody tr:hover { background: #F9FAFB; }
.ir-table tbody tr:last-child { border-bottom: none; }
.ir-table tbody td {
  padding: 14px 20px;
  color: #374151;
  white-space: nowrap;
}
.ir-table-total td {
  background: #F9FAFB;
  border-top: 2px solid #E5E7EB;
}
.ir-table-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}
.ir-table-num { font-weight: 700; color: #111827; }
.ir-table-fund { font-weight: 700; }
.ir-table-sector { color: #6B7280; font-size: 0.82rem; }
.ir-table-bench { color: #6B7280; }
.ir-table-highlight { color: #4BBFD6; font-weight: 800; }
.ir-table-note {
  padding: 12px 28px;
  font-size: 0.78rem;
  color: #9CA3AF;
  border-top: 1px solid #F3F4F6;
  background: #EFF0F1;
}
.ir-table-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Return badges */
.ir-ret-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
}
.ir-ret-badge.up { background: rgba(16,185,129,0.1); color: #059669; }
.ir-ret-badge.down { background: rgba(239,68,68,0.1); color: #DC2626; }
.ir-excess-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
}
.ir-excess-badge.up { background: rgba(75,191,214,0.15); color: #4BBFD6; }
.ir-excess-badge.down { background: rgba(239,68,68,0.1); color: #DC2626; }
.ir-status-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(26,46,90,0.08);
  color: #2C5BAA;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}
.ir-mom-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(75,191,214,0.15), rgba(75,191,214,0.1));
  color: #4BBFD6;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(75,191,214,0.25);
}
.ir-exit-method {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}
.ir-exit-method.ipo { background: rgba(26,46,90,0.1); color: #2C5BAA; }
.ir-exit-method.ma { background: rgba(74,144,217,0.1); color: #4A90D9; }
.ir-exit-method.secondary { background: rgba(109,190,106,0.1); color: #3A9A38; }

/* ---- Section 3: KPI 비교 테이블 ---- */
.ir-kpi-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}
.ir-kpi-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.ir-kpi-table th {
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6B7280;
  text-align: center;
  background: #F9FAFB;
  border-bottom: 2px solid #E5E7EB;
  letter-spacing: 0.02em;
}
.ir-kpi-th-label {
  text-align: left !important;
  width: 22%;
  color: #374151 !important;
}
.ir-kpi-th-current {
  color: #2C5BAA !important;
}
.ir-kpi-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.12s;
}
.ir-kpi-table tbody tr:last-child {
  border-bottom: none;
}
.ir-kpi-table tbody tr:hover {
  background: #EFF0F1;
}
.ir-kpi-td-label {
  padding: 20px 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}
.ir-kpi-metric {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
}
.ir-kpi-unit {
  font-size: 0.78rem;
  font-weight: 500;
  color: #9CA3AF;
}
.ir-kpi-td-prev {
  text-align: center;
  padding: 20px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #6B7280;
}
.ir-kpi-table-note {
  margin-top: 16px;
  padding: 0 4px;
  font-size: 0.78rem;
  color: #9CA3AF;
  line-height: 1.6;
}

/* Performance cards (Section 3) */
.ir-perf-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.ir-perf-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-radius: 0;
  padding: 24px;
  transition: all 0.3s;
}
.ir-perf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ir-perf-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.ir-perf-val {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.ir-perf-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 4px;
}
.ir-perf-sub {
  font-size: 0.78rem;
  color: #9CA3AF;
}

/* IR CTA */
.ir-cta-section {
  background: linear-gradient(160deg, #0d1b38 0%, #2C5BAA 100%);
  padding: 80px 24px;
}
.ir-cta-inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.ir-cta-icon {
  font-size: 2.5rem;
  color: #4BBFD6;
  margin-bottom: 20px;
}
.ir-cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.ir-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.ir-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4BBFD6;
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  margin-bottom: 16px;
}
.ir-cta-btn:hover {
  background: #d05515;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75,191,214,0.45);
}
.ir-cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ---- NAV Chart: 기간 탭 ---- */
.nav-period-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C9CDD4;
  padding-bottom: 0;
  width: 100%;
}
.nav-period-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 12px 9px 0;
}
.nav-period-btn {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6B7280;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  position: relative;
  bottom: -1px;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.nav-period-btn:hover { color: #374151; }
.nav-period-btn.active {
  color: #2C5BAA;
  border-bottom-color: #4BBFD6;
}

/* ---- NAV Chart: 범례 ---- */
.nav-chart-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-chart-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #374151;
}
.nav-legend-toggle {
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s, color 0.2s;
}
.nav-legend-toggle:hover {
  opacity: 0.75;
}
.nav-legend-disabled {
  opacity: 0.35;
  color: #9CA3AF;
  text-decoration: line-through;
}
.nav-legend-disabled .nav-legend-swatch {
  filter: grayscale(1);
}
.nav-legend-swatch {
  display: inline-block;
  width: 28px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav-legend-swatch-line {
  background: transparent !important;
  border: 2.5px solid;
  border-radius: 4px;
  height: 0;
  width: 28px;
  display: inline-block;
}

/* ---- NAV Chart: 수치 요약 ---- */
.nav-chart-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #F9FAFB;
  border: 1px solid #C9CDD4;
  border-radius: 0;
  padding: 16px 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.nav-summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px 0 0;
}
.nav-summary-divider {
  width: 1px;
  height: 28px;
  background: #E5E7EB;
  margin: 0 28px 0 0;
  flex-shrink: 0;
}
.nav-summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-summary-dot-circle {
  background: transparent !important;
  border: 2.5px solid;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.nav-summary-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #6B7280;
}
.nav-summary-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111827;
}
.nav-summary-unit {
  font-size: 1.05rem;
  color: #9CA3AF;
  font-weight: 500;
}

/* ---- NAV Chart: 주석 ---- */
.ir-bar-note {
  margin: 12px 0 0 0;
  font-size: 0.75rem;
  color: #9CA3AF;
  text-align: right;
}
.ir-bar-note-left {
  margin: 6px 0 0 0;
  font-size: 0.75rem;
  color: #9CA3AF;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.ir-bar-note-left::before {
  content: '•';
  flex-shrink: 0;
}
.nav-chart-notes {
  margin-top: 16px;
  padding: 14px 20px;
  background: #EFF0F1;
  border-radius: 10px;
  border: 1px solid #F3F4F6;
}
.nav-chart-notes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-chart-notes ul li {
  font-size: 0.78rem;
  color: #9CA3AF;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.nav-chart-notes ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D1D5DB;
  font-size: 0.9rem;
}

/* IR Responsive */
@media (max-width: 1024px) {
  .ir-highlight-row { grid-template-columns: 1fr; }
  .ir-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .ir-perf-row { grid-template-columns: repeat(2, 1fr); }
  .ir-nav-def-row { grid-template-columns: 180px 1fr; gap: 28px; padding: 28px 28px; }
}
@media (max-width: 768px) {
  .ir-hero { padding: 72px 24px 60px; }
  .ir-section { padding: 64px 24px; }
  .ir-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .ir-perf-row { grid-template-columns: repeat(2, 1fr); }
  .ir-treemap-wrap canvas { border-radius: 8px; }
  .ir-chart-card { padding: 20px; }
  #exitTypeChart, #exitYearChart { }
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .ir-bar-row { flex-direction: column; align-items: flex-start; }
  .ir-bar-row-label { width: auto; }
  .ir-bar-track { width: 100%; }
  .ir-chart-card-header { flex-direction: column; }
  .ir-hero-title { font-size: 2rem; }
  .ir-nav-def-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 20px; }
  .ir-nav-def-divider { margin: 0 20px; }
  .ir-nav-def-left { border-right: none; padding-right: 0; }
}
@media (max-width: 768px) {
  .ir-pf-legend-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .ir-kpi-row { grid-template-columns: 1fr 1fr; }
  .ir-perf-row { grid-template-columns: 1fr; }
  .ir-section-title { font-size: 1.6rem; }
  .ir-pf-legend-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   Section 4 – 회수 내역 two-box layout
   ============================================= */
.ir-s4-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ir-s4-row > .ir-chart-card {
  margin-bottom: 0;
  width: 100%;
}
/* 요약 박스 KPI list — 가로 3열 */
.ir-s4-kpi-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 24px;
}
.ir-s4-kpi-item {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border-right: 1px solid #C9CDD4;
}
.ir-s4-kpi-item:last-child {
  border-right: none;
}
.ir-s4-kpi-divider {
  display: none;
}
.ir-s4-kpi-label {
  display: inline-block;
  font-size: 0.78rem;
  color: #374151;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid #B0B7C3;
  border-radius: 999px;
  padding: 4px 14px;
}
.ir-s4-kpi-value {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}
.ir-s4-kpi-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  margin-left: 2px;
}
.ir-s4-notes {
  margin-top: 4px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ir-s4-note {
  font-size: 0.74rem;
  color: #9CA3AF;
  line-height: 1.5;
}
/* 도넛 카드 */
.ir-s4-donut-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 4px;
}
/* 아코디언 아이콘 + count badge 안에서 사용 */
.ir-accordion-icon {
  font-size: 0.82rem;
  color: #9CA3AF;
  margin-right: 6px;
  flex-shrink: 0;
}
.ir-accordion-count {
  font-size: 0.72rem;
  color: #9CA3AF;
  margin-left: auto;
  margin-right: 12px;
}
/* R.I.P badge */
.ir-rip-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(155,155,155,0.12);
  color: #6B7280;
}
/* Responsive */
@media (max-width: 640px) {
  .ir-s4-row { grid-template-columns: 1fr; }
  .ir-s4-kpi-value { font-size: 1.6rem; }
}

/* ── Side Nav Responsive ── */
@media (max-width: 1024px) {
  .ir-side-nav {
    width: 160px;
    padding: 80px 0 24px 24px;
  }
  .ir-section {
    padding: 80px 32px 80px 28px;
  }
}
@media (max-width: 768px) {
  /* 768px 이하: 사이드 탭 숨기고 상단 탭으로 전환 */
  .ir-body-wrap {
    flex-direction: column;
  }
  .ir-side-nav {
    display: none;
  }
  .ir-section {
    padding: 60px 20px;
  }
  .ir-section-inner {
    max-width: 100%;
  }
}

/* ── R.I.P 상세 페이지 전용 ── */
.pd2-rip-reason-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd2-rip-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #F3F4F6;
}
.pd2-rip-reason-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pd2-rip-reason-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd2-rip-reason-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  padding-top: 6px;
}
.pd2-insight-wrap {
  padding: 8px 0;
}
.pd2-insight-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.85;
}

.pd2-rip-reason-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.pd2-rip-insight-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #111827;
}
.pd2-rip-insight-desc {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.7;
}

.pd2-rip-insight-ul {
  margin: 4px 0 4px 16px;
  padding: 0;
  list-style: disc;
  color: #6B7280;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── 포트폴리오 상세 페이지 섹션 패딩 축소 ── */
.pd2-body-wrap .ir-section {
  padding: 48px 32px 48px 28px;
}
.pd2-body-wrap .ir-section-inner {
  max-width: 960px;
}

/* ── Key Personnel ── */
.pd2-personnel-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd2-personnel-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd2-personnel-role {
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  background: #2C5BAA;
  border-radius: 999px;
  padding: 2px 10px;
}
.pd2-personnel-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid #F3F4F6;
  padding-bottom: 6px;
  margin-top: 4px;
}
.pd2-personnel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd2-personnel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
}
.pd2-personnel-year {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9CA3AF;
  min-width: 90px;
  padding-top: 1px;
}
.pd2-personnel-sub {
  font-size: 0.82rem;
  color: #9CA3AF;
}
/* 프로필 + 이력 나란히 */
.pd2-personnel-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pd2-personnel-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* 인원 구분선 */
.pd2-personnel-divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 4px 0;
}
/* CFO 롤 배지 색상 */
.pd2-personnel-role-cfo {
  background: #6B7280 !important;
}

/* ================================================================
   HOME PAGE
   ================================================================ */

/* Hero */
.home-hero { background: var(--bg); }
.home-hero-inner { max-width: 900px; }
.home-hero-btns { display: flex; gap: 14px; margin: 32px 0 40px; flex-wrap: wrap; }
.home-hero-btn-primary {
  display: inline-block; padding: 13px 32px;
  background: #2C5BAA; color: #fff;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
}
.home-hero-btn-primary:hover { background: #1a2e5a; transform: translateY(-2px); }
.home-hero-btn-secondary {
  display: inline-block; padding: 13px 32px;
  background: transparent; color: #2C5BAA;
  border: 1.5px solid #2C5BAA;
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
}
.home-hero-btn-secondary:hover { background: rgba(44,91,170,0.06); }

/* Hero KPI 수치 */
.home-kpi-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px; padding: 24px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.home-kpi-item { display: flex; flex-direction: column; gap: 4px; padding: 0 32px 0 0; }
.home-kpi-num { font-size: 2rem; font-weight: 900; color: #111827; line-height: 1; }
.home-kpi-unit { font-size: 1rem; font-weight: 600; color: #6B7280; margin-left: 2px; }
.home-kpi-label { font-size: 0.78rem; color: #9CA3AF; font-weight: 500; margin-top: 4px; }
.home-kpi-divider { width: 1px; height: 40px; background: #E5E7EB; margin: 0 32px 0 0; flex-shrink: 0; }

/* 섹션 공통 */
.home-section { padding: 72px 0; }
.home-section-gray { background: var(--bg); }
.home-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.home-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.home-more-link {
  font-size: 0.85rem; font-weight: 600; color: #2C5BAA;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.home-more-link:hover { text-decoration: underline; }
.home-kpi-cards { grid-template-columns: repeat(4, 1fr); }

/* 자산 구성 바 */
.home-asset-wrap { display: flex; flex-direction: column; gap: 20px; }
.home-bar-track {
  display: flex; border-radius: 10px; overflow: hidden; height: 52px;
}
.home-bar-seg {
  display: flex; align-items: center; justify-content: center;
  min-width: 0; transition: opacity 0.2s;
}
.home-bar-seg span {
  color: #fff; font-size: 0.82rem; font-weight: 700;
  white-space: nowrap; padding: 0 8px; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.home-bar-legend {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
}
.home-legend-item { display: flex; align-items: center; gap: 8px; }
.home-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.home-legend-label { font-size: 0.85rem; color: #374151; font-weight: 500; }
.home-legend-pct { font-size: 0.85rem; font-weight: 700; color: #111827; }
.home-legend-amt { font-size: 0.82rem; color: #9CA3AF; }

/* 포트폴리오 리스트 */
.home-pf-list { display: flex; flex-direction: column; gap: 0; border: 1px solid #E5E7EB; border-radius: 14px; overflow: hidden; }
.home-pf-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; background: #fff;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.15s;
}
.home-pf-row:last-child { border-bottom: none; }
.home-pf-row:hover { background: #F8F9FF; }
.home-pf-rank {
  width: 28px; height: 28px; border-radius: 50%;
  background: #EEF2FF; color: #2C5BAA;
  font-size: 0.82rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.home-pf-name { flex: 1; font-weight: 700; font-size: 0.95rem; color: #111827; display: flex; align-items: center; gap: 8px; }
.home-pf-tag {
  font-size: 0.7rem; font-weight: 600; color: #2C5BAA;
  border: 1.5px solid #2C5BAA; border-radius: 4px; padding: 1px 6px;
}
.home-pf-sector { font-size: 0.82rem; color: #6B7280; width: 160px; flex-shrink: 0; }
.home-pf-val { font-size: 0.9rem; font-weight: 700; color: #111827; width: 90px; text-align: right; flex-shrink: 0; }
.home-pf-pct { font-size: 0.88rem; font-weight: 700; color: #2C5BAA; width: 70px; text-align: right; flex-shrink: 0; }

/* CTA */
.home-cta {
  background: var(--bg);
  padding: 80px 32px; text-align: center;
  border-top: 1px solid #E5E7EB;
}
.home-cta-inner { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.home-cta-title { font-size: 2rem; font-weight: 900; color: #111827; line-height: 1.4; margin: 0; }
.home-cta-sub { font-size: 0.95rem; color: #6B7280; margin: 0; }

/* ── Navigation Cards 섹션 ── */
.home-nav-section {
  background: var(--bg);
  border-top: 1px solid #E5E7EB;
}
.home-nav-inner {
  width: 100%;
}
.home-nav-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.home-nav-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 64px 72px;
  background: var(--bg);
  border: none;
  border-top: 1px solid #E5E7EB;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}
.home-nav-card:first-child {
  border-right: 1px solid #E5E7EB;
}
.home-nav-card:hover {
  background: #fff;
}
.home-nav-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(44,91,170,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #2C5BAA;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.home-nav-card:hover .home-nav-card-icon {
  background: #2C5BAA;
  color: #fff;
}
.home-nav-card-body {
  flex: 1;
}
.home-nav-card-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.home-nav-card-desc {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.7;
}
.home-nav-card-arrow {
  font-size: 1.2rem;
  color: #D1D5DB;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.home-nav-card:hover .home-nav-card-arrow {
  color: #2C5BAA;
  transform: translateX(6px);
}
@media (max-width: 768px) {
  .home-nav-cards { grid-template-columns: 1fr; }
  .home-nav-card { padding: 40px 28px; gap: 20px; }
  .home-nav-card:first-child { border-right: none; border-bottom: 1px solid #E5E7EB; }
}

/* 반응형 */
@media (max-width: 768px) {
  .home-kpi-row { gap: 20px; padding: 20px; flex-direction: column; align-items: flex-start; }
  .home-kpi-divider { display: none; }
  .home-kpi-cards { grid-template-columns: 1fr 1fr; }
  .home-pf-sector { display: none; }
  .home-cta-title { font-size: 1.5rem; }
}

/* ============================================================
   TEAM PAGE — IR 톤앤매너 통일
   ============================================================ */

/* 통계 KPI 섹션 */
.tm-stat-section {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  padding: 0 24px;
}
.tm-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid #E5E7EB;
}
.tm-stat-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid #E5E7EB;
  transition: background 0.2s;
}
.tm-stat-card:hover { background: rgba(44,91,170,0.03); }
.tm-stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(44,91,170,0.08);
  color: #2C5BAA;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.tm-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.tm-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6B7280;
}

/* 팀원 섹션 */
.tm-section {
  padding: 72px 24px;
  background: #EFF0F1;
}
.tm-advisor-section {
  background: #fff;
  border-top: 1px solid #E5E7EB;
}

/* 팀원 그리드 */
.tm-member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tm-member-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.tm-member-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: #a0aec0;
}
.tm-member-card.open {
  border-color: #2C5BAA;
  box-shadow: 0 8px 28px rgba(44,91,170,0.12);
}

/* 카드 요약 (항상 보임) */
.tm-member-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  user-select: none;
}
.tm-member-chevron {
  margin-left: auto;
  color: #9CA3AF;
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.tm-member-card.open .tm-member-chevron {
  transform: rotate(180deg);
  color: #2C5BAA;
}

/* 태그 (요약 안) */
.tm-tags-preview {
  margin-top: 8px;
}

/* 상세 (접힘/펼침) */
.tm-member-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.tm-detail-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 0 24px;
}
.tm-member-bio {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
  padding: 16px 24px 20px;
}

/* 기존 top 레이아웃 호환 */
.tm-member-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tm-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tm-member-info { flex: 1; }
.tm-member-dept {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 2px;
}
.tm-member-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}
.tm-member-role {
  font-size: 0.82rem;
  font-weight: 600;
}
.tm-member-bio {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.tm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tm-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid;
}

/* 자문단 그리드 */
.tm-advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tm-advisor-card {
  background: #EFF0F1;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tm-advisor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.tm-advisor-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.tm-advisor-name {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.tm-advisor-role {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.tm-advisor-org {
  font-size: 0.78rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* CTA 섹션 */
.tm-cta-section {
  background: #fff;
  border-top: 1px solid #E5E7EB;
  padding: 72px 24px;
}
.tm-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tm-cta-text { display: flex; flex-direction: column; gap: 16px; }
.tm-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.tm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #2C5BAA;
  color: #fff;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.tm-btn-primary:hover { background: #244d95; }
.tm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #2C5BAA;
  border: 1.5px solid #2C5BAA;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tm-btn-secondary:hover { background: #2C5BAA; color: #fff; }
.tm-cta-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tm-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.tm-value-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(44,91,170,0.08);
  color: #2C5BAA;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.tm-value-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}
.tm-value-desc {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.6;
}

/* 반응형 */
@media (max-width: 1024px) {
  .tm-member-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tm-member-grid { grid-template-columns: 1fr; }
  .tm-advisor-grid { grid-template-columns: 1fr; }
  .tm-stat-row { grid-template-columns: repeat(2, 1fr); }
  .tm-cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* 팀원 카드 상세 영역 */
.tm-detail-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tm-detail-slogan {
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(44,91,170,0.05);
  border-left: 3px solid currentColor;
}
.tm-detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tm-detail-block {}
.tm-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tm-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tm-detail-list li {
  font-size: 0.83rem;
  color: #374151;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.tm-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C9CDD4;
}
@media (max-width: 480px) {
  .tm-detail-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME — 자산가치 인터랙티브 바 차트 (Sunday AI 스타일)
   ============================================================ */
/* ═══════════════════════════════════════════
   HAV Section — PAV 세로 막대 차트
═══════════════════════════════════════════ */
.hav-section {
  background: var(--bg);
  min-height: 340vh;
  position: relative;
}
.hav-sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid #E5E7EB;
}

/* ── 위 텍스트 패널 ── */
.hav-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 48px 24px 48px;
  gap: 8px;
  border-bottom: 1px solid #D1D5DB;
  flex-shrink: 0;
  background: var(--bg);
}
.hav-title {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}
.hav-desc {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
}

/* 활성 수치 표시 */
.hav-active-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  margin: 4px 0 2px;
}
.hav-active-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.hav-active-val {
  font-size: 2rem;
  font-weight: 900;
  color: #E86119;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.2s;
}

/* ── 아래 차트 영역 ── */
.hav-bottom {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 48px 0 48px;
  background: var(--bg);
  overflow: hidden;
  min-height: 0;
}
.hav-vchart-outer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* 세로 막대 차트 컨테이너 */
.hav-vchart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-bottom: 0;
  overflow: hidden;
}

/* x축 레이블 행 */
.hav-xlabels {
  display: flex;
  gap: 3px;
  padding-top: 4px;
  padding-bottom: 16px;
  flex-shrink: 0;
}
.hav-xlbl {
  flex: 1;
  font-size: 0.6rem;
  color: #9CA3AF;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

/* 세로 막대 컬럼 */
.hav-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  cursor: default;
  position: relative;
}

/* 세로 막대 */
.hav-vbar {
  width: 15%;
  background: rgba(44, 91, 170, 0.45);
  border-radius: 3px 3px 0 0;
  transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 2px;
  overflow: visible;
}

/* 호버/활성 강조 */
.hav-col:hover .hav-vbar,
.hav-col.active .hav-vbar {
  background: #E86119;
}

/* 바 안 숫자 레이블 (기본 숨김, 호버/활성 시 표시) */
.hav-vbar-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  font-variant-numeric: tabular-nums;
}
.hav-col:hover .hav-vbar-label,
.hav-col.active .hav-vbar-label {
  opacity: 1;
}

/* 반응형 */
@media (max-width: 900px) {
  .hav-sticky-wrap {
    height: auto;
    position: relative;
  }
  .hav-section { min-height: unset; }
  .hav-top { padding: 24px 20px 16px; gap: 8px; }
  .hav-title { white-space: normal; }
  .hav-desc { white-space: normal; }
  .hav-bottom { padding: 16px 16px 0; height: 240px; justify-content: flex-start; }
  .hav-vchart-outer { width: 100%; max-width: 100%; }
  .hav-vchart-outer { height: 100%; }
}

/* ═══════════════════════════════════════════
   운영 및 핵심 지표 섹션 (Operations & KPIs)
═══════════════════════════════════════════ */

/* 섹션 헤더 우측 배지 */
.pd2-kpi-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #2C5BAA;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* 3열 KPI 카드 그리드 */
.pd2-ops-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

/* 개별 KPI 카드 — 기존 pd2-kpi-card 스타일과 통일 */
.pd2-ops-kpi-card {
  background: #fff;
  border: 1px solid #C9CDD4;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd2-ops-kpi-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}
.pd2-ops-kpi-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #374151;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pd2-ops-kpi-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #6B7280;
  margin-left: 4px;
}
.pd2-ops-kpi-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #374151;
}
.pd2-ops-kpi-desc {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 4px;
}

/* 인력 차트 카드 — ir-chart-card 스타일 그대로 사용 */
.pd2-ops-chart-card {
  background: #fff !important;
  border: 1px solid #C9CDD4 !important;
}
.pd2-ops-chart-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 16px;
}
.pd2-ops-chart-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: #9CA3AF;
  margin-left: 6px;
}

/* 반응형 */
@media (max-width: 768px) {
  .pd2-ops-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   Section 7: KUDOS 내부 인사이트
═══════════════════════════════════════════ */
.pd2-insight-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pd2-insight-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd2-insight-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 20px 24px;
}
.pd2-insight-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.pd2-insight-card-en {
  font-size: 0.82rem;
  font-weight: 500;
  color: #9CA3AF;
  margin-left: 4px;
}
.pd2-insight-card-body {
  font-size: 0.84rem;
  color: #374151;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   Section 8: 미디어 & PR 자료
═══════════════════════════════════════════ */
.pd2-media-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pd2-media-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
/* 뉴스 리스트 */
.pd2-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd2-news-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
  cursor: pointer;
}
.pd2-news-item:last-child { border-bottom: none; }
.pd2-news-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2C5BAA;
  line-height: 1.5;
  transition: color 0.15s;
}
.pd2-news-item:hover .pd2-news-text { color: #1a3d7a; text-decoration: underline; }
.pd2-news-date {
  font-size: 0.75rem;
  color: #9CA3AF;
}
/* PR 자료 리스트 */
.pd2-resource-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd2-resource-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
}
.pd2-resource-item:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
}
.pd2-resource-icon {
  font-size: 1rem;
  color: #6B7280;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.pd2-resource-label {
  flex: 1;
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
}
.pd2-resource-arrow {
  font-size: 0.8rem;
  color: #9CA3AF;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pd2-media-wrap { grid-template-columns: 1fr; }
}
