/* ==========================================================================
   Arontier Theme — components.css
   UI 컴포넌트 스타일
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Navbar (.ar-navbar)
   -------------------------------------------------------------------------- */
.ar-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: var(--z-fixed, 50);
  background: transparent;
  transition:
    background-color 300ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.ar-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Scrolled state */
.ar-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

/* Logo switching */
.ar-navbar__logo,
.ar-navbar__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ar-navbar__logo img,
.ar-navbar__logo-link img,
img.ar-navbar__logo {
  height: 32px;
  width: auto;
  transition: opacity 200ms ease;
}

.ar-navbar__logo-white {
  display: block;
}

.ar-navbar__logo-color {
  display: none;
}

.ar-navbar.scrolled .ar-navbar__logo-white {
  display: none;
}

.ar-navbar.scrolled .ar-navbar__logo-color {
  display: block;
}

/* Menu */
.ar-navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ar-navbar__item {
  position: relative;
}

.ar-navbar__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 200ms ease;
  white-space: nowrap;
}

.ar-navbar__link:hover {
  color: #30A2DC;
}

.ar-navbar.scrolled .ar-navbar__link {
  color: #374151;
}

.ar-navbar.scrolled .ar-navbar__link:hover {
  color: #1A65F0;
}

/* Dropdown chevron icon */
.ar-navbar__link svg,
.ar-navbar__link .chevron {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.ar-navbar__item:hover .ar-navbar__link .chevron,
.ar-navbar__item.open .ar-navbar__link .chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.ar-navbar__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  padding: 0.5rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease;
  pointer-events: none;
}

.ar-navbar__item:hover .ar-navbar__dropdown,
.ar-navbar__item.open .ar-navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ar-navbar__dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.ar-navbar__dropdown-item:hover {
  background-color: #F1F3F7;
  color: #1A65F0;
}

.ar-navbar__dropdown-item.active {
  color: #1A65F0;
  background-color: rgba(26, 101, 240, 0.06);
}

/* Right actions */
.ar-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language toggle */
.ar-navbar__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 200ms ease;
}

.ar-navbar__lang:hover {
  color: rgba(255, 255, 255, 1);
}

.ar-navbar.scrolled .ar-navbar__lang {
  color: #6B7280;
}

.ar-navbar.scrolled .ar-navbar__lang:hover {
  color: #1A65F0;
}

/* CTA button */
.ar-navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background-color: #1A65F0;
  color: #ffffff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  border: 1.5px solid #1A65F0;
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 150ms ease;
  white-space: nowrap;
}

.ar-navbar__cta:hover {
  background-color: #0D4ED8;
  border-color: #0D4ED8;
  box-shadow: 0 4px 16px rgba(26, 101, 240, 0.4);
  transform: translateY(-1px);
  color: #ffffff !important;
}

/* Mobile hamburger */
.ar-navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 0.5rem;
  transition: background-color 150ms ease;
}

.ar-navbar__hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.ar-navbar.scrolled .ar-navbar__hamburger:hover {
  background-color: #F1F3F7;
}

.ar-navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease, background-color 200ms ease;
}

.ar-navbar.scrolled .ar-navbar__hamburger span {
  background-color: #1a202c;
}

/* Hamburger open state */
.ar-navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ar-navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ar-navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.ar-navbar__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  max-height: calc(100vh - 64px);
  z-index: calc(var(--z-fixed, 50) - 1);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 250ms ease, transform 250ms ease;
  pointer-events: none;
}

.ar-navbar__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ar-navbar__mobile-inner {
  padding: 1rem 1.5rem 2rem;
}

.ar-navbar__mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #F1F3F7;
  transition: color 150ms ease;
}

.ar-navbar__mobile-link:hover {
  color: #1A65F0;
}

.ar-navbar__mobile-link:last-child {
  border-bottom: none;
}

.ar-navbar__mobile-cta {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
  padding: 0.875rem 1.5rem;
  background-color: #1A65F0;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .ar-navbar__menu,
  .ar-navbar__lang,
  /* Actual live markup uses .ar-lang-switcher (see section 19/24 rewrite),
     not .ar-navbar__lang — without this the top-bar language pill never
     hid on mobile and overflowed past the viewport edge alongside the
     hamburger. The drawer has its own switcher (.ar-mobile-menu__lang). */
  .ar-navbar__actions .ar-lang-switcher {
    display: none;
  }

  .ar-navbar__hamburger {
    display: flex;
  }

  .ar-navbar__mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .ar-navbar__inner {
    padding: 0 1rem;
  }

  .ar-navbar__cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   2. Footer (.ar-footer)
   -------------------------------------------------------------------------- */
.ar-footer {
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 60%, #0d1e38 100%);
  color: rgba(255, 255, 255, 0.65);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* 상단 그라데이션 구분선 */
.ar-footer::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(48,162,220,0.25) 25%, rgba(124,58,237,0.20) 50%, rgba(5,150,105,0.20) 75%, transparent 100%);
}

.ar-footer__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ar-footer__brand {}

.ar-footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.ar-footer__logo img {
  height: 30px;
  width: auto;
}

.ar-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.ar-footer__social {
  display: flex;
  gap: 0.75rem;
}

.ar-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.ar-footer__social-link:hover {
  background: rgba(26, 101, 240, 0.2);
  border-color: rgba(26, 101, 240, 0.4);
  color: #60A5FA;
}

.ar-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.ar-footer__nav {}

.ar-footer__nav-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.ar-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ar-footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.ar-footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(2px);
}

.ar-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ar-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.ar-footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ar-footer__links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 200ms ease;
}

.ar-footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .ar-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .ar-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .ar-footer {
    padding: 3rem 0 0;
  }

  .ar-footer__top {
    grid-template-columns: 1fr;
    padding: 0 1rem 2.5rem;
    gap: 2rem;
  }

  .ar-footer__brand {
    grid-column: 1;
  }

  .ar-footer__tagline {
    max-width: 100%;
  }

  .ar-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }

  .ar-footer__links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   3. Cards
   -------------------------------------------------------------------------- */

/* Base card */
.ar-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition:
    box-shadow 250ms ease,
    transform 250ms ease,
    border-color 250ms ease;
}

.ar-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: #D1D5DB;
}

.ar-card-body {
  padding: 1.5rem;
}

/* Dark card */
.ar-card-dark {
  background: #112240;
  border-radius: 1rem;
  border: 1px solid #1B3358;
  overflow: hidden;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.ar-card-dark:hover {
  border-color: rgba(26, 101, 240, 0.4);
  box-shadow: 0 8px 32px rgba(26, 101, 240, 0.15);
}

.ar-card-dark .ar-card-body {
  padding: 1.5rem;
}

/* Glass card */
.ar-card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: background-color 250ms ease, border-color 250ms ease;
}

.ar-card-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

/* --------------------------------------------------------------------------
   4. News Card (.ar-news-card)
   -------------------------------------------------------------------------- */
.ar-news-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
  text-decoration: none;
  color: inherit;
}

.ar-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: #D1D5DB;
}

/* Thumbnail */
.ar-news-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F1F3F7;
  flex-shrink: 0;
}

.ar-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.ar-news-card:hover .ar-news-card__thumb img {
  transform: scale(1.05);
}

/* Placeholder when no image */
.ar-news-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #112240, #1B3358);
  color: rgba(255, 255, 255, 0.3);
}

/* Body */
.ar-news-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* Tag strip */
.ar-news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* Title */
.ar-news-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a202c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 200ms ease;
}

.ar-news-card:hover .ar-news-card__title {
  color: #1A65F0;
}

/* Summary */
.ar-news-card__summary {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Meta row */
.ar-news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #F1F3F7;
}

.ar-news-card__source {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9BA3B2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ar-news-card__date {
  font-size: 0.75rem;
  color: #9BA3B2;
  white-space: nowrap;
}

/* Dark variant */
.ar-news-card-dark {
  background: #112240;
  border-color: #1B3358;
}

.ar-news-card-dark .ar-news-card__title {
  color: #ffffff;
}

.ar-news-card-dark:hover .ar-news-card__title {
  color: #60A5FA;
}

.ar-news-card-dark .ar-news-card__summary {
  color: rgba(255, 255, 255, 0.55);
}

.ar-news-card-dark .ar-news-card__meta {
  border-top-color: rgba(255, 255, 255, 0.07);
}

.ar-news-card-dark .ar-news-card__source,
.ar-news-card-dark .ar-news-card__date {
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   5. Pipeline Card (.ar-pipeline-card)
   -------------------------------------------------------------------------- */
.ar-pipeline-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 250ms ease, background-color 250ms ease;
}

.ar-pipeline-card:hover {
  border-color: rgba(26, 101, 240, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

/* Header row */
.ar-pipeline-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Program ID badge */
.ar-pipeline-card__id {
  display: inline-flex;
  align-items: center;
  padding: 0.2em 0.65em;
  background: rgba(26, 101, 240, 0.2);
  color: #93C5FD;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  border-radius: 0.375rem;
  border: 1px solid rgba(26, 101, 240, 0.3);
  flex-shrink: 0;
}

/* Indication title */
.ar-pipeline-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

/* Modality / target */
.ar-pipeline-card__modality {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Collaboration badge */
.ar-pipeline-card__type {
  display: inline-flex;
  align-items: center;
  padding: 0.2em 0.65em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

.ar-pipeline-card__type--proprietary {
  background: rgba(5, 150, 105, 0.2);
  color: #6EE7B7;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.ar-pipeline-card__type--collab {
  background: rgba(26, 101, 240, 0.2);
  color: #93C5FD;
  border: 1px solid rgba(26, 101, 240, 0.3);
}

/* Progress bar */
.ar-pipeline-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}

.ar-pipeline-bar__segment {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  transition: opacity 200ms ease;
}

.ar-pipeline-bar__segment--done {
  background: linear-gradient(90deg, #1A65F0, #30A2DC);
}

.ar-pipeline-bar__segment--active {
  background: rgba(26, 101, 240, 0.4);
  border: 1.5px solid #1A65F0;
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.ar-pipeline-bar__segment--active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(26, 101, 240, 0.4), transparent);
  animation: shimmer 1.8s infinite;
}

.ar-pipeline-bar__segment--empty {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Stage labels */
.ar-pipeline-card__stages {
  display: flex;
  justify-content: space-between;
  margin-top: 0.375rem;
}

.ar-pipeline-card__stage-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  flex: 1;
  text-align: center;
}

.ar-pipeline-card__stage-label:first-child {
  text-align: left;
}

.ar-pipeline-card__stage-label:last-child {
  text-align: right;
}

.ar-pipeline-card__stage-label--active {
  color: #60A5FA;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   6. Team Card (.ar-team-card)
   -------------------------------------------------------------------------- */
.ar-team-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.ar-team-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Color accent bar */
.ar-team-card__bar {
  height: 4px;
  background: linear-gradient(90deg, #1A65F0, #30A2DC);
}

.ar-team-card__bar--purple {
  background: linear-gradient(90deg, #7C3AED, #30A2DC);
}

.ar-team-card__bar--green {
  background: linear-gradient(90deg, #059669, #10B981);
}

.ar-team-card__bar--amber {
  background: linear-gradient(90deg, #D97706, #F59E0B);
}

.ar-team-card__body {
  padding: 2rem 1.5rem 1.75rem;
}

/* Avatar */
.ar-team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid #F1F3F7;
  background: #F8F9FB;
  position: relative;
}

.ar-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder avatar */
.ar-team-card__avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A65F0, #30A2DC);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
}

.ar-team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.ar-team-card__title {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.ar-team-card__dept {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2em 0.65em;
  background: rgba(26, 101, 240, 0.08);
  color: #1A65F0;
  border-radius: 9999px;
}

/* Dark variant */
.ar-team-card-dark {
  background: #112240;
  border-color: #1B3358;
}

.ar-team-card-dark .ar-team-card__name {
  color: #ffffff;
}

.ar-team-card-dark .ar-team-card__title {
  color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   7. Publication Row (.ar-pub-row)
   -------------------------------------------------------------------------- */
.ar-pub-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.125rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 200ms ease;
  border: 1px solid transparent;
}

.ar-pub-row:hover {
  background-color: #F8F9FB;
  border-color: #E5E7EB;
}

.ar-pub-row__badges {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex-shrink: 0;
}

.ar-pub-row__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2em 0.55em;
  background: rgba(26, 101, 240, 0.1);
  color: #1A65F0;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.375rem;
  font-variant-numeric: tabular-nums;
  min-width: 46px;
  text-align: center;
}

.ar-pub-row__journal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2em 0.55em;
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  max-width: 80px;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ar-pub-row__content {
  min-width: 0;
}

.ar-pub-row__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
  transition: color 200ms ease;
}

.ar-pub-row:hover .ar-pub-row__title {
  color: #1A65F0;
}

.ar-pub-row__authors {
  font-size: 0.8125rem;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ar-pub-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9BA3B2;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #E5E7EB;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.ar-pub-row__link:hover {
  color: #1A65F0;
  border-color: rgba(26, 101, 240, 0.3);
  background-color: rgba(26, 101, 240, 0.05);
}

@media (max-width: 768px) {
  .ar-pub-row {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
  }

  .ar-pub-row__link {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. Partner Card (.ar-partner-card)
   -------------------------------------------------------------------------- */
.ar-partner-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: box-shadow 250ms ease, transform 250ms ease, border-color 250ms ease;
}

.ar-partner-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: #D1D5DB;
}

.ar-partner-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-partner-card__logo img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 200ms ease;
}

.ar-partner-card:hover .ar-partner-card__logo img {
  filter: grayscale(0%);
}

.ar-partner-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a202c;
}

.ar-partner-card__type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2em 0.6em;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(26, 101, 240, 0.08);
  color: #1A65F0;
  border: 1px solid rgba(26, 101, 240, 0.15);
}

.ar-partner-card__type--pharma {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-color: rgba(5, 150, 105, 0.2);
}

.ar-partner-card__type--hospital {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
  border-color: rgba(245, 158, 11, 0.2);
}

.ar-partner-card__type--academic {
  background: rgba(124, 58, 237, 0.08);
  color: #7C3AED;
  border-color: rgba(124, 58, 237, 0.18);
}

.ar-partner-card__desc {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.6;
}

/* Dark variant */
.ar-partner-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ar-partner-card-dark .ar-partner-card__logo img {
  filter: grayscale(0%) brightness(1.2);
}

.ar-partner-card-dark .ar-partner-card__name {
  color: rgba(255, 255, 255, 0.9);
}

.ar-partner-card-dark .ar-partner-card__desc {
  color: rgba(255, 255, 255, 0.5);
}

.ar-partner-card-dark:hover {
  border-color: rgba(26, 101, 240, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

/* --------------------------------------------------------------------------
   9. Timeline (.ar-timeline)
   -------------------------------------------------------------------------- */
.ar-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.ar-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(26, 101, 240, 0.5) 10%,
    rgba(48, 162, 220, 0.5) 50%,
    rgba(124, 58, 237, 0.5) 90%,
    transparent
  );
}

.ar-timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}

.ar-timeline__item:last-child {
  padding-bottom: 0;
}

/* Dot */
.ar-timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1A65F0;
  border: 3px solid #0A1628;
  box-shadow: 0 0 0 3px rgba(26, 101, 240, 0.25), 0 0 12px rgba(26, 101, 240, 0.4);
  z-index: 1;
  flex-shrink: 0;
}

.ar-timeline__dot--sky {
  background: #30A2DC;
  box-shadow: 0 0 0 3px rgba(48, 162, 220, 0.25), 0 0 12px rgba(48, 162, 220, 0.4);
}

.ar-timeline__dot--purple {
  background: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25), 0 0 12px rgba(124, 58, 237, 0.4);
}

.ar-timeline__dot--green {
  background: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.25), 0 0 12px rgba(5, 150, 105, 0.4);
}

/* Year badge */
.ar-timeline__year {
  display: inline-flex;
  align-items: center;
  padding: 0.2em 0.7em;
  background: rgba(26, 101, 240, 0.15);
  color: #93C5FD;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.375rem;
  border: 1px solid rgba(26, 101, 240, 0.25);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.ar-timeline__year--sky {
  background: rgba(48, 162, 220, 0.15);
  color: #7DD3FC;
  border-color: rgba(48, 162, 220, 0.25);
}

.ar-timeline__year--purple {
  background: rgba(124, 58, 237, 0.15);
  color: #C4B5FD;
  border-color: rgba(124, 58, 237, 0.25);
}

/* Content block */
.ar-timeline__content {}

.ar-timeline__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.ar-timeline__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Light variant */
.ar-timeline-light::before {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(26, 101, 240, 0.3) 10%,
    rgba(48, 162, 220, 0.3) 50%,
    rgba(124, 58, 237, 0.3) 90%,
    transparent
  );
}

.ar-timeline-light .ar-timeline__dot {
  border-color: #ffffff;
}

.ar-timeline-light .ar-timeline__title {
  color: #1a202c;
}

.ar-timeline-light .ar-timeline__desc {
  color: #6B7280;
}

/* --------------------------------------------------------------------------
   10. Contact Form (.ar-contact-form)
   -------------------------------------------------------------------------- */
.ar-contact-form {}

.ar-contact-form__group {
  margin-bottom: 1.25rem;
}

.ar-contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.ar-contact-form__label span {
  color: #DC2626;
}

.ar-contact-form__input,
.ar-contact-form__select,
.ar-contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1.5px solid #D1D5DB;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-family: var(--font-family, sans-serif);
  color: #1a202c;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.ar-contact-form__input::placeholder,
.ar-contact-form__textarea::placeholder {
  color: #9BA3B2;
}

.ar-contact-form__input:focus,
.ar-contact-form__select:focus,
.ar-contact-form__textarea:focus {
  outline: none;
  border-color: #1A65F0;
  box-shadow: 0 0 0 3px rgba(26, 101, 240, 0.15);
}

.ar-contact-form__input:invalid:not(:placeholder-shown),
.ar-contact-form__textarea:invalid:not(:placeholder-shown) {
  border-color: #DC2626;
}

.ar-contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.ar-contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239BA3B2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.ar-contact-form__checkbox-group {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}

.ar-contact-form__checkbox {
  width: 18px;
  height: 18px;
  border-radius: 0.25rem;
  border: 1.5px solid #D1D5DB;
  accent-color: #1A65F0;
  flex-shrink: 0;
  margin-top: 0.125rem;
  cursor: pointer;
}

.ar-contact-form__checkbox-label {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
}

.ar-contact-form__checkbox-label a {
  color: #1A65F0;
}

.ar-contact-form__submit {
  width: 100%;
  padding: 0.875rem 2rem;
  background-color: #1A65F0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family, sans-serif);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 101, 240, 0.3);
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 150ms ease;
}

.ar-contact-form__submit:hover {
  background-color: #0D4ED8;
  box-shadow: 0 8px 24px rgba(26, 101, 240, 0.45);
  transform: translateY(-1px);
}

.ar-contact-form__submit:active {
  transform: translateY(0);
}

.ar-contact-form__submit:disabled {
  background-color: #9BA3B2;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Error & success messages */
.ar-contact-form__error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: #DC2626;
  margin-top: 1rem;
}

.ar-contact-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  gap: 0.75rem;
}

.ar-contact-form__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

/* --------------------------------------------------------------------------
   11. Announcement Popup (.ar-announcement)
   -------------------------------------------------------------------------- */

/* Hidden by default — the HTML uses the `hidden` attribute and JS removes it.
   Multiple panels (when more than one announcement is active) sit side by
   side, top-aligned, wrapping onto a new row if they don't all fit — never
   overlapping. Top-aligned (not vertically centered) on purpose: centering
   content taller than the viewport pushes part of it into space above the
   natural scroll-to-top position, which clips it with no obvious way to
   reach — a well-known flexbox + overflow gotcha. */
.ar-announcement {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal, 60);
  display: none;                   /* hidden by default */
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  align-content: flex-start;
  gap: 1rem;
  padding: 6rem 1rem 2rem;
  overflow-y: auto;
}

/* Shown when JS adds .is-open (and removes the `hidden` HTML attribute) */
.ar-announcement.is-open {
  display: flex;
  animation: fadeIn 0.25s ease both;
}

/* Exit animation */
.ar-announcement.is-closing {
  display: flex;
  animation: fadeOut 0.3s ease both;
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Legacy class-based hide support */
.ar-announcement.hidden,
.ar-announcement[hidden] {
  display: none !important;
}

/* Backdrop / Overlay — supports both class names.
   Must be `fixed`, not `absolute`: .ar-announcement scrolls (overflow-y:
   auto) when its content is taller than the viewport, and an `absolute`
   child scrolls right along with it, sliding the dark backdrop out from
   behind whatever's still on screen — a hard seam where the page shows
   through unblurred. `fixed` pins it to the real viewport regardless of
   the wrapper's internal scroll position. */
.ar-announcement__backdrop,
.ar-announcement__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Panel — the actual popup card (supports both .card and .panel naming) */
.ar-announcement__panel,
.ar-announcement__card {
  position: relative;
  flex: 0 1 480px; /* side by side up to 480px each, shrinks on narrow screens */
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: fadeSlideUp 0.35s ease both;
}

/* Dismissed individually (closed / "don't show today") — removed from the stack */
.ar-announcement__panel.is-dismissed {
  display: none;
}

/* Dismiss X button — sits on the plain white panel top */
.ar-announcement__dismiss {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.06);
  border: none;
  border-radius: 50%;
  color: #64748B;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
  z-index: 1;
}

.ar-announcement__dismiss:hover {
  background: rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

/* Badge */
.ar-announcement__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

/* Title in body */
.ar-announcement__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

/* Footer */
.ar-announcement__footer {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 0.75rem;
  padding: 0 2.5rem 2rem;
  background: #ffffff;
}

.ar-announcement__header {
  background: linear-gradient(135deg, #0A1628, #112240);
  padding: 2rem 2rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ar-announcement__header--brand {
  background: linear-gradient(135deg, #1A65F0, #0D4ED8);
}

.ar-announcement__header--purple {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
}

.ar-announcement__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.ar-announcement__header-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.ar-announcement__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-full, 9999px);
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.ar-announcement__close:hover {
  background: #F8F9FB;
  border-color: #D1D5DB;
}

.ar-announcement__body {
  background: #ffffff;
  padding: 2.5rem 2.5rem 2rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.ar-announcement__body p {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* 본문(WYSIWYG)에 붙여넣는 목록은 전역 list-style:none 리셋의 영향을 받지 않도록 복원 */
.ar-announcement__text ul,
.ar-announcement__text ol {
  list-style: revert;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: #374151;
}

.ar-announcement__text li {
  margin-bottom: 0.4rem;
}

.ar-announcement__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}

.ar-announcement__dont-show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #9BA3B2;
  cursor: pointer;
}

.ar-announcement__dont-show input {
  accent-color: #1A65F0;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   12. Stats Strip (.ar-stats-strip)
   -------------------------------------------------------------------------- */
.ar-stats-strip {
  background: var(--color-navy-900, #0A1628);
  padding: 4rem 0;
}

.ar-stats-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ar-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.ar-stat:last-child {
  border-right: none;
}

.ar-stat__number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #1A65F0, #30A2DC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ar-stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.ar-stat__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .ar-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ar-stat:nth-child(2) {
    border-right: none;
  }

  .ar-stat:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 640px) {
  .ar-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .ar-stat {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ar-stat:nth-child(even) {
    border-right: none;
  }

  .ar-stat:nth-child(3),
  .ar-stat:nth-child(4) {
    border-bottom: none;
  }
}

/* --------------------------------------------------------------------------
   13. Tag Filter (.ar-tag-filter)
   -------------------------------------------------------------------------- */
.ar-tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.ar-tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.4em 1em;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-family, sans-serif);
  background: transparent;
  border: 1.5px solid #D1D5DB;
  color: #6B7280;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
  white-space: nowrap;
}

.ar-tag-btn:hover {
  border-color: #9BA3B2;
  color: #374151;
}

/* All button */
.ar-tag-btn--all.active {
  background: #1a202c;
  border-color: #1a202c;
  color: #ffffff;
}

/* Partnership — blue */
.ar-tag-btn--partnership:hover,
.ar-tag-btn--partnership.active {
  background: rgba(26, 101, 240, 0.1);
  border-color: #1A65F0;
  color: #1A65F0;
}

.ar-tag-btn--partnership.active {
  background: #1A65F0;
  color: #ffffff;
}

/* Research — purple */
.ar-tag-btn--research:hover,
.ar-tag-btn--research.active {
  background: rgba(124, 58, 237, 0.1);
  border-color: #7C3AED;
  color: #7C3AED;
}

.ar-tag-btn--research.active {
  background: #7C3AED;
  color: #ffffff;
}

/* Conference — sky */
.ar-tag-btn--conference:hover,
.ar-tag-btn--conference.active {
  background: rgba(48, 162, 220, 0.1);
  border-color: #30A2DC;
  color: #0284C7;
}

.ar-tag-btn--conference.active {
  background: #30A2DC;
  color: #ffffff;
}

/* Investment — amber */
.ar-tag-btn--investment:hover,
.ar-tag-btn--investment.active {
  background: rgba(245, 158, 11, 0.1);
  border-color: #F59E0B;
  color: #D97706;
}

.ar-tag-btn--investment.active {
  background: #F59E0B;
  color: #ffffff;
}

/* Platform — green */
.ar-tag-btn--platform:hover,
.ar-tag-btn--platform.active {
  background: rgba(5, 150, 105, 0.1);
  border-color: #059669;
  color: #059669;
}

.ar-tag-btn--platform.active {
  background: #059669;
  color: #ffffff;
}

/* Recognition — amber deep */
.ar-tag-btn--recognition:hover,
.ar-tag-btn--recognition.active {
  background: rgba(217, 119, 6, 0.1);
  border-color: #D97706;
  color: #B45309;
}

.ar-tag-btn--recognition.active {
  background: #D97706;
  color: #ffffff;
}

/* Clinical */
.ar-tag-btn--clinical:hover,
.ar-tag-btn--clinical.active {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10B981;
  color: #10B981;
}

.ar-tag-btn--clinical.active {
  background: #10B981;
  color: #ffffff;
}

/* Count badge inside tag button */
.ar-tag-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
}

.ar-tag-btn.active .ar-tag-btn__count {
  background: rgba(255, 255, 255, 0.25);
}

/* Dark variant filter */
.ar-tag-filter-dark .ar-tag-btn {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.ar-tag-filter-dark .ar-tag-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.ar-tag-filter-dark .ar-tag-btn--all.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   13b. Notice/Press Type Toggle (.ar-type-toggle) — 주 탭, 동급 비중
   -------------------------------------------------------------------------- */
.ar-type-toggle {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 0;
}

.ar-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem;
  margin-bottom: -1px;
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  font-family: var(--font-family, sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #9BA3B2;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.ar-type-tab + .ar-type-tab {
  margin-left: 1.25rem;
}

.ar-type-tab:hover {
  color: #374151;
}

.ar-type-tab.active {
  color: #0A1628;
  border-bottom-color: #1A65F0;
}

.ar-type-tab__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9BA3B2;
  background: #F1F3F7;
  border-radius: 9999px;
  padding: 0.1em 0.55em;
}

.ar-type-tab.active .ar-type-tab__count {
  color: #1A65F0;
  background: rgba(26, 101, 240, 0.1);
}

/* --------------------------------------------------------------------------
   13c. Tag Links (.ar-tag-links) — Press 보조 필터, 작은 텍스트 링크
   -------------------------------------------------------------------------- */
.ar-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: center;
}

.ar-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.15em 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--font-family, sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9BA3B2;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.ar-tag-link:hover {
  color: #374151;
}

.ar-tag-link.active {
  color: #1A65F0;
  border-bottom-color: #1A65F0;
}

.ar-tag-link__count {
  font-size: 0.7rem;
  opacity: 0.65;
}

/* --------------------------------------------------------------------------
   13d. Pinned badge (.ar-news-card__pin)
   -------------------------------------------------------------------------- */
.ar-news-card__pin {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #B45309;
  background: #FEF3C7;
  border-radius: 9999px;
  padding: 0.2em 0.65em;
  margin-bottom: 0.6rem;
}

.ar-news-card.is-pinned {
  border-color: #FBBF24;
}

/* --------------------------------------------------------------------------
   13e. Pinned Banner (.ar-pinned-banner) — Notice/Press 상관없이 항상 상단에,
   한 줄 전체 너비를 차지하는 별도 포맷 (일반 카드 그리드와 다름)
   -------------------------------------------------------------------------- */
.ar-pinned-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ar-pinned-banner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.ar-pinned-banner:hover {
  background: #FEF3C7;
  border-color: #FBBF24;
  transform: translateY(-1px);
}

.ar-pinned-banner__pin {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(180, 83, 9, 0.12);
  color: #B45309;
}

.ar-pinned-banner__type {
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2em 0.65em;
  border-radius: 9999px;
}

.ar-pinned-banner__type--notice {
  color: #B45309;
  background: #FEF3C7;
}

.ar-pinned-banner__type--press {
  color: #374151;
  background: #F1F3F7;
}

.ar-pinned-banner__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0A1628;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ar-pinned-banner__date {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  color: #8496AC;
  white-space: nowrap;
}

.ar-pinned-banner__arrow {
  flex: 0 0 auto;
  color: #B45309;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .ar-pinned-banner__title {
    white-space: normal;
  }
  .ar-pinned-banner__date {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   13b. Partner Logo Grid (home) — .ar-home-partners (별도 네임스페이스:
   기존 /partners/ 페이지용 .ar-partner-grid 와 클래스명이 겹쳐 스타일이
   충돌했던 문제 수정)
   -------------------------------------------------------------------------- */
.ar-home-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
}
@media (min-width: 640px) {
  .ar-home-partners { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .ar-home-partners { grid-template-columns: repeat(8, 1fr); }
}
.ar-home-partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  min-height: 56px;
}
.ar-home-partners__item img {
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.ar-home-partners__name {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  opacity: 0.6;
  color: var(--color-navy-800);
}

/* --------------------------------------------------------------------------
   14. Hero Section
   -------------------------------------------------------------------------- */
.ar-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0A1628;
  padding-top: 64px; /* navbar height */
}

.ar-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ar-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.ar-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35em 1em;
  background: rgba(26, 101, 240, 0.15);
  border: 1px solid rgba(26, 101, 240, 0.25);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.ar-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  max-width: 860px;
}

.ar-hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.ar-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. Section Header (reusable)
   -------------------------------------------------------------------------- */
.ar-section-header {
  margin-bottom: 3rem;
}

.ar-section-header--center {
  text-align: center;
}

.ar-section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.ar-section-header__title {
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   16. Grid Layouts
   -------------------------------------------------------------------------- */
.ar-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ar-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ar-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ar-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .ar-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ar-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ar-grid-2,
  .ar-grid-3,
  .ar-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   17. Misc Component Utilities
   -------------------------------------------------------------------------- */

/* Divider line */
.ar-divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 2rem 0;
}

.ar-divider-dark {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Loading spinner */
.ar-spinner {
  width: 24px;
  height: 24px;
  border: 2.5px solid rgba(26, 101, 240, 0.2);
  border-top-color: #1A65F0;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Toast notification */
.ar-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-toast, 70);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: #1a202c;
  color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  font-size: 0.9375rem;
  font-weight: 500;
  animation: slideInRight 0.3s ease both;
  max-width: 380px;
}

.ar-toast--success {
  border-left: 3px solid #10B981;
}

.ar-toast--error {
  border-left: 3px solid #DC2626;
}

.ar-toast--info {
  border-left: 3px solid #1A65F0;
}

/* Back to top button */
.ar-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: #1A65F0;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 101, 240, 0.4);
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease,
    opacity 200ms ease;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
}

.ar-back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.ar-back-to-top:hover {
  background: #0D4ED8;
  box-shadow: 0 8px 24px rgba(26, 101, 240, 0.5);
  transform: translateY(-2px);
}


/* ============================================================
   12. BREADCRUMB — 공통 브레드크럼 (single CPT 페이지 등)
   ============================================================ */
.ar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-6, 1.5rem);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.ar-breadcrumb__link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.ar-breadcrumb__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.ar-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.ar-breadcrumb__current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* 라이트 배경에서 브레드크럼 */
.section-light .ar-breadcrumb,
.section-gray .ar-breadcrumb {
  color: var(--color-gray-500, #6B7280);
}
.section-light .ar-breadcrumb__link,
.section-gray .ar-breadcrumb__link {
  color: var(--color-gray-500, #6B7280);
}
.section-light .ar-breadcrumb__link:hover,
.section-gray .ar-breadcrumb__link:hover {
  color: var(--color-navy, #1E3A5F);
}
.section-light .ar-breadcrumb__sep,
.section-gray .ar-breadcrumb__sep {
  color: var(--color-gray-300, #D1D5DB);
}
.section-light .ar-breadcrumb__current,
.section-gray .ar-breadcrumb__current {
  color: var(--color-navy, #1E3A5F);
}


/* ============================================================
   13. AR-BACK-LINK — "← Back to X" 링크
   ============================================================ */
.ar-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-blue-600, #2563EB);
  text-decoration: none;
  transition: color 0.15s, gap 0.15s;
  padding: var(--space-8, 2rem) 0;
}
.ar-back-link:hover {
  color: var(--color-navy, #1E3A5F);
  gap: 0.75rem;
}
.ar-back-link svg {
  flex-shrink: 0;
  transition: transform 0.15s;
}
.ar-back-link:hover svg {
  transform: translateX(-3px);
}


/* ============================================================
   14. AR-PUB-INFO-CARD — 논문/파이프라인 상세 정보 테이블
   ============================================================ */
.ar-pub-info-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-gray-200, #E5E7EB);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.ar-pub-info-card__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-gray-100, #F3F4F6);
  padding: 0;
}
.ar-pub-info-card__row:last-child {
  border-bottom: none;
}

.ar-pub-info-card__row dt {
  padding: 1rem 1.25rem;
  background: var(--color-gray-50, #F9FAFB);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-500, #6B7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ar-pub-info-card__row dd {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-gray-800, #1F2937);
  margin: 0;
  word-break: break-word;
}

.ar-pub-info-card__doi-link {
  color: var(--color-blue-600, #2563EB);
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}
.ar-pub-info-card__doi-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .ar-pub-info-card__row {
    grid-template-columns: 1fr;
  }
  .ar-pub-info-card__row dt {
    border-bottom: 1px solid var(--color-gray-100, #F3F4F6);
    padding-bottom: 0.5rem;
  }
  .ar-pub-info-card__row dd {
    padding-top: 0.5rem;
  }
}


/* ============================================================
   15. SINGLE PUBLICATION — ar-pub-single
   ============================================================ */
.ar-pub-single__hero {
  padding: var(--space-16, 4rem) 0 var(--space-12, 3rem);
}

.ar-pub-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-6, 1.5rem);
}

.ar-pub-single__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  max-width: 820px;
  margin-bottom: var(--space-4, 1rem);
}

.ar-pub-single__authors {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 760px;
  margin-bottom: var(--space-6, 1.5rem);
}

.ar-pub-single__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-4, 1rem);
}

.ar-pub-single__body {
  padding: var(--space-12, 3rem) 0;
}

.ar-pub-single__content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-gray-800, #1F2937);
}

.ar-pub-single__info {
  padding: var(--space-12, 3rem) 0;
}

.ar-pub-single__back {
  padding: 0;
  border-top: 1px solid var(--color-gray-100, #F3F4F6);
}


/* ============================================================
   16. SINGLE PIPELINE — ar-pipeline-single
   ============================================================ */
.ar-pipeline-single__hero {
  padding: var(--space-16, 4rem) 0 var(--space-12, 3rem);
}

.ar-pipeline-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-6, 1.5rem);
}

.ar-pipeline-single__id {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Courier New', monospace;
}

.ar-pipeline-single__cat {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
}

.ar-pipeline-single__type {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}
.ar-pipeline-single__type--collaboration {
  background: rgba(245, 158, 11, 0.25);
  color: #FCD34D;
}

.ar-pipeline-single__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  max-width: 820px;
  margin-bottom: var(--space-4, 1rem);
}

.ar-pipeline-single__stage-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-2, 0.5rem);
}
.ar-pipeline-single__stage-label strong {
  color: rgba(255, 255, 255, 0.95);
}

.ar-pipeline-single__stages {
  padding: var(--space-10, 2.5rem) 0;
}

.ar-pipeline-single__body,
.ar-pipeline-single__details {
  padding: var(--space-12, 3rem) 0;
}

.ar-pipeline-single__note {
  margin-bottom: var(--space-8, 2rem);
}

.ar-pipeline-single__cta {
  padding: var(--space-16, 4rem) 0;
}

.ar-pipeline-single__back {
  padding: 0;
  border-top: 1px solid var(--color-gray-100, #F3F4F6);
}

/* ar-container--narrow */
.ar-container--narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6, 1.5rem);
  padding-right: var(--space-6, 1.5rem);
}


/* ============================================================
   17. AR-STAGE-BAR — 파이프라인 진행 단계 인디케이터
   ============================================================ */
.ar-stage-bar {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: var(--space-4, 1rem) 0;
  scrollbar-width: none;
}
.ar-stage-bar::-webkit-scrollbar {
  display: none;
}

.ar-stage-bar__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 80px;
  position: relative;
}

.ar-stage-bar__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-gray-200, #E5E7EB);
  border: 2px solid var(--color-gray-300, #D1D5DB);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.ar-stage-bar__step--done .ar-stage-bar__dot {
  background: var(--color-blue-600, #2563EB);
  border-color: var(--color-blue-600, #2563EB);
}
.ar-stage-bar__step--done .ar-stage-bar__dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.ar-stage-bar__step--current .ar-stage-bar__dot {
  background: var(--color-blue-500, #3B82F6);
  border-color: var(--color-blue-500, #3B82F6);
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.ar-stage-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-500, #6B7280);
  text-align: center;
  white-space: nowrap;
}

.ar-stage-bar__step--done .ar-stage-bar__label {
  color: var(--color-blue-700, #1D4ED8);
}

.ar-stage-bar__step--current .ar-stage-bar__label {
  color: var(--color-navy, #1E3A5F);
  font-weight: 700;
}

.ar-stage-bar__connector {
  flex: 1;
  height: 2px;
  background: var(--color-gray-200, #E5E7EB);
  margin-bottom: 1.25rem; /* 도트 아래 레이블 높이 보정 */
  min-width: 24px;
}

.ar-stage-bar__connector--done {
  background: var(--color-blue-600, #2563EB);
}

@media (max-width: 480px) {
  .ar-stage-bar__step {
    min-width: 60px;
  }
  .ar-stage-bar__label {
    font-size: 0.6875rem;
    white-space: normal;
    max-width: 60px;
  }
}

/* ==========================================================================
   18. Template Bridge — 템플릿 BEM 클래스 ↔ CSS 변수 연결
   누락 클래스 일괄 추가 (2026-06)
   ========================================================================== */

/* ── Container ─────────────────────────────────────────────── */
.ar-container {
  width: 100%;
  max-width: var(--max-width, 1280px);
  margin-inline: auto;
  padding-inline: var(--container-px-lg, 2rem);
}
@media (max-width: 768px) {
  .ar-container { padding-inline: var(--container-px-sm, 1rem); }
}

/* ── Hero (template alias) ──────────────────────────────────── */
.ar-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.ar-hero__desc {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.ar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.ar-btn--primary {
  background: var(--color-brand-500, #1A65F0);
  color: #fff;
  border-color: var(--color-brand-500, #1A65F0);
}
.ar-btn--primary:hover {
  background: var(--color-brand-600, #0D4ED8);
  border-color: var(--color-brand-600, #0D4ED8);
}
.ar-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.ar-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.ar-btn--full { width: 100%; }

/* ── Stats row ──────────────────────────────────────────────── */
.ar-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}
.ar-stats-row--strip {
  justify-content: space-around;
  gap: 1rem;
}

/* ── Section titles ─────────────────────────────────────────── */
.ar-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.ar-section-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.section-light  .ar-section-title,
.section-gray   .ar-section-title,
.section-white  .ar-section-title { color: var(--color-navy-900, #0A1628); }
.section-light  .ar-section-subtitle,
.section-gray   .ar-section-subtitle,
.section-white  .ar-section-subtitle { color: var(--color-gray-500, #6B7280); }

/* ── CTA Section ────────────────────────────────────────────── */
.ar-cta { padding: var(--space-24, 6rem) 0; text-align: center; }
.ar-cta__inner { max-width: 720px; margin-inline: auto; }
.ar-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.ar-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ar-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── News card (missing) ────────────────────────────────────── */
.ar-news-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-xl, 1rem); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; }
.ar-news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ar-news-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ar-news-card__thumb-link { display: block; overflow: hidden; }
.ar-news-card__thumb { width: 100%; height: 200px; object-fit: cover; display: block; }
.ar-news-card__thumb-placeholder { height: 160px; background: var(--color-gray-100, #F1F3F7); }
.ar-news-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.75rem; }
.ar-news-card__title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; color: var(--color-navy-900, #0A1628); }
.ar-news-card__title-link { text-decoration: none; color: inherit; }
.ar-news-card__title-link:hover { color: var(--color-brand-500, #1A65F0); }
.ar-news-card__meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--color-gray-400, #9BA3B2); margin-bottom: 0.75rem; }
.ar-news-card__date { color: var(--color-gray-400, #9BA3B2); }
.ar-news-card__meta-sep { color: var(--color-gray-300, #D1D5DB); }
.ar-news-card__source { color: var(--color-gray-500, #6B7280); }
.ar-news-card__excerpt { font-size: 0.9rem; color: var(--color-gray-500, #6B7280); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.ar-news-card__read-more { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--color-brand-500, #1A65F0); text-decoration: none; margin-top: auto; }
.ar-news-card__read-more:hover { color: var(--color-brand-600, #0D4ED8); }
.ar-news-card__arrow { transition: transform 0.2s; }
.ar-news-card__read-more:hover .ar-news-card__arrow { transform: translateX(3px); }
.ar-news-card__external-icon { opacity: 0.5; }
.ar-news-card__inner { padding: 1.5rem; }
.ar-news-card__link { color: var(--color-brand-500); text-decoration: none; font-weight: 600; font-size: 0.875rem; }

/* ── Tag pill ───────────────────────────────────────────────── */
.ar-tag--pill, .ar-news-tag {
  display: inline-block;
  padding: 0.2em 0.75em;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(26,101,240,0.1);
  color: var(--color-brand-500, #1A65F0);
  letter-spacing: 0.02em;
}
.ar-news-tag--partnership { background: rgba(26,101,240,0.12); color: #1A65F0; }
.ar-news-tag--research    { background: rgba(16,185,129,0.12); color: #059669; }
.ar-news-tag--conference  { background: rgba(124,58,237,0.12); color: #7C3AED; }
.ar-news-tag--investment  { background: rgba(245,158,11,0.12); color: #D97706; }
.ar-news-tag--platform    { background: rgba(48,162,220,0.12); color: #30A2DC; }
.ar-news-tag--recognition { background: rgba(236,72,153,0.12); color: #DB2777; }

/* ── Contact page ───────────────────────────────────────────── */
.ar-contact-section { padding: var(--space-20, 5rem) 0; }
.ar-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .ar-contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
.ar-contact-info__heading,
.ar-contact-form-wrap__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-navy-900, #0A1628);
}
.ar-contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.ar-contact-list__item { display: flex; gap: 0.875rem; align-items: flex-start; }
.ar-contact-list__icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-brand-500, #1A65F0); margin-top: 2px; }
.ar-contact-list__label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-gray-400, #9BA3B2); margin-bottom: 0.25rem; }
.ar-contact-list__value { font-size: 0.9375rem; color: var(--color-navy-900, #0A1628); text-decoration: none; }
.ar-contact-list__value:is(a):hover { color: var(--color-brand-500); }
.ar-partnership-interests { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-gray-200, #E5E7EB); }
.ar-partnership-interests__title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-gray-500); margin-bottom: 0.75rem; }
.ar-partnership-interests__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.ar-partnership-interests__item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9rem; color: var(--color-navy-900); }
.ar-pi-check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(26,101,240,0.1); color: var(--color-brand-500); flex-shrink: 0; }

/* ── Contact form ───────────────────────────────────────────── */
.ar-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.ar-form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .ar-form-row--half { grid-template-columns: 1fr; } }
.ar-form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.ar-form-label { font-size: 0.875rem; font-weight: 600; color: var(--color-navy-900); }
.ar-form-input, .ar-form-select, .ar-form-textarea {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md, 0.5rem);
  font-size: 0.9375rem;
  color: var(--color-navy-900);
  background: #fff;
  transition: border-color 0.15s;
  font-family: inherit;
  width: 100%;
}
.ar-form-input:focus, .ar-form-select:focus, .ar-form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-500);
  box-shadow: 0 0 0 3px rgba(26,101,240,0.12);
}
.ar-form-textarea { resize: vertical; min-height: 120px; }
.ar-form-checkbox { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--color-gray-500); cursor: pointer; }
.ar-form-checkbox input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }

/* ── Quick links ────────────────────────────────────────────── */
.ar-quick-links { padding: var(--space-16, 4rem) 0; }
.ar-quick-links__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .ar-quick-links__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ar-quick-links__grid { grid-template-columns: 1fr; } }
.ar-quick-link-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-xl, 1rem);
  border: 1.5px solid var(--color-gray-200);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ar-quick-link-card:hover { border-color: var(--color-brand-500); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ar-quick-link-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--color-navy-900); }
.ar-quick-link-card__desc  { font-size: 0.875rem; color: var(--color-gray-500); flex: 1; }
.ar-quick-link-card__arrow { color: var(--color-brand-500); margin-top: auto; }

/* ── Partners page ──────────────────────────────────────────── */
.ar-partner-type-section { padding: var(--space-16, 4rem) 0; }
.ar-partner-type-title { font-size: 1.375rem; font-weight: 700; margin-bottom: 2rem; color: var(--color-navy-900); }
.section-dark .ar-partner-type-title, .section-gray .ar-partner-type-title { color: #fff; }
.ar-partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.ar-partner-card { background: #fff; border-radius: var(--radius-xl, 1rem); padding: 1.5rem; border: 1.5px solid var(--color-gray-200); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; transition: box-shadow 0.2s, transform 0.2s; }
.ar-partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ar-partner-card__logo { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.ar-partner-card__img { max-height: 48px; max-width: 80%; object-fit: contain; }
.ar-partner-card__name-fallback { font-size: 1rem; font-weight: 700; color: var(--color-navy-900); }
.ar-partner-card__desc { font-size: 0.8125rem; color: var(--color-gray-500); line-height: 1.55; }
.ar-partner-card__link { font-size: 0.8125rem; font-weight: 600; color: var(--color-brand-500); text-decoration: none; }
.ar-partner-card__link:hover { color: var(--color-brand-600); }

/* ── Stats strip (Partners page) ───────────────────────────── */
.ar-stats-strip--border-t { border-top: 1px solid rgba(255,255,255,0.1); }

/* ── Pipeline page ──────────────────────────────────────────── */
.ar-pipeline-filter-section { padding: 1.5rem 0; }
.ar-pipeline-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ar-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full, 9999px);
  border: 1.5px solid var(--color-gray-200);
  font-size: 0.875rem;
  font-weight: 600;
  background: #fff;
  color: var(--color-gray-500);
  cursor: pointer;
  transition: all 0.2s;
}
.ar-filter-btn.active, .ar-filter-btn:hover {
  background: var(--color-brand-500);
  color: #fff;
  border-color: var(--color-brand-500);
}
.ar-pipeline-grid-section { padding: var(--space-16, 4rem) 0; }
.ar-pipeline-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

/* ── Pipeline legend ────────────────────────────────────────── */
.ar-pipeline-legend { padding: var(--space-16, 4rem) 0; }
.ar-legend-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.ar-legend-group { }
.ar-legend-group__title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-navy-900); }
.section-gray .ar-legend-group__title { color: var(--color-navy-900); }
.ar-legend-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.ar-legend-list__item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.ar-legend-list__num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--color-brand-500); color: #fff; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.ar-legend-list__name { color: var(--color-navy-900); font-weight: 500; }
.ar-legend-list__desc { font-size: 0.875rem; color: var(--color-gray-500); }

/* ── Publication list ───────────────────────────────────────── */
.ar-pub-filter-section { padding: 1.5rem 0; }
.ar-pub-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ar-pub-list-section { padding: var(--space-16, 4rem) 0; }
.ar-pub-year-group { margin-bottom: 3rem; }
.ar-pub-year-group__heading { font-size: 1.375rem; font-weight: 800; color: var(--color-navy-900); margin-bottom: 1rem; padding-bottom: 0.625rem; border-bottom: 2px solid var(--color-brand-500); display: inline-block; }
.ar-pub-year-group__list { display: flex; flex-direction: column; gap: 0; }
.ar-pub-card { padding: 1.25rem 0; border-bottom: 1px solid var(--color-gray-200); }
.ar-pub-card__meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.5rem; }
.ar-pub-card__journal { font-size: 0.8125rem; font-weight: 600; color: var(--color-brand-500); }
.ar-pub-card__year { font-size: 0.75rem; color: var(--color-gray-400); }
.ar-pub-card__title { font-size: 0.9375rem; font-weight: 600; color: var(--color-navy-900); line-height: 1.5; margin-bottom: 0.375rem; }
.ar-pub-card__title a { text-decoration: none; color: inherit; }
.ar-pub-card__title a:hover { color: var(--color-brand-500); }
.ar-pub-card__authors { font-size: 0.8125rem; color: var(--color-gray-400); margin-bottom: 0.5rem; }
.ar-pub-card__doi { font-size: 0.8125rem; color: var(--color-brand-500); text-decoration: none; display: inline-flex; align-items: center; gap: 0.25rem; }
.ar-pub-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.5rem; }
.ar-pub-tag { padding: 0.15em 0.625em; border-radius: 9999px; font-size: 0.7rem; font-weight: 600; background: var(--color-gray-100); color: var(--color-gray-500); }

/* ── Publication row (content-publication.php) ──────────────── */
.ar-pub-row { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--color-gray-200); }
.ar-pub-row__badges { display: flex; flex-direction: column; gap: 0.375rem; min-width: 120px; }
.ar-pub-badge { display: inline-block; padding: 0.25em 0.625em; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; text-align: center; }
.ar-pub-badge--year { background: var(--color-brand-500); color: #fff; }
.ar-pub-badge--journal { background: var(--color-gray-100); color: var(--color-gray-700); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.ar-pub-badge--type { background: rgba(124,58,237,0.1); color: var(--color-purple); }
.ar-pub-row__content { flex: 1; min-width: 0; }
.ar-pub-row__title { font-size: 0.9375rem; font-weight: 600; color: var(--color-navy-900); line-height: 1.5; margin-bottom: 0.5rem; }
.ar-pub-row__title-link { text-decoration: none; color: inherit; }
.ar-pub-row__title-link:hover { color: var(--color-brand-500); }
.ar-pub-row__authors { font-size: 0.8125rem; color: var(--color-gray-400); margin-bottom: 0.5rem; }
.ar-pub-row__links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ar-pub-row__link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.8125rem; font-weight: 600; text-decoration: none; padding: 0.25em 0.75em; border-radius: var(--radius-sm); transition: background 0.15s; }
.ar-pub-row__link--doi { background: rgba(26,101,240,0.08); color: var(--color-brand-500); }
.ar-pub-row__link--abstract { background: rgba(16,185,129,0.08); color: var(--color-green-600); }
.ar-pub-row__link:hover { filter: brightness(0.9); }
.ar-pub-row__link-icon { flex-shrink: 0; }

/* ── About — Mission / Pillars ──────────────────────────────── */
.ar-mission { padding: var(--space-20, 5rem) 0; }
.ar-mission__inner { max-width: 760px; margin-inline: auto; }
.ar-mission__body { font-size: 1.125rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 3rem; }
.ar-mission__pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.ar-pillar { padding: 1.25rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.ar-pillar__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.ar-pillar__title { font-size: 0.9375rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.ar-pillar__desc  { font-size: 0.8125rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ── About — Timeline ───────────────────────────────────────── */
.ar-timeline-section { padding: var(--space-20, 5rem) 0; }
.ar-timeline__group { margin-bottom: 2.5rem; }
.ar-timeline__year-marker { font-size: 1.5rem; font-weight: 800; color: var(--color-brand-500); margin-bottom: 1rem; }
.ar-timeline__events { padding-left: 1.5rem; border-left: 2px solid var(--color-gray-200); display: flex; flex-direction: column; gap: 0.875rem; }
.ar-timeline__rail { } /* alias */
.ar-timeline__event { font-size: 0.9375rem; color: var(--color-navy-900); line-height: 1.55; padding-left: 0.875rem; position: relative; }
.ar-timeline__event::before { content: ""; position: absolute; left: -0.5625rem; top: 0.45em; width: 9px; height: 9px; border-radius: 50%; background: var(--color-brand-500); border: 2px solid #fff; box-shadow: 0 0 0 1.5px var(--color-brand-500); }
.section-dark .ar-timeline__events { border-left-color: rgba(255,255,255,0.15); }

/* ── About — Timeline v2 (중앙 라인 + 좌우 지그재그, 텍스트 전용) ── */
.ar-tl2 { position: relative; max-width: 62rem; margin: 0 auto; }
.ar-tl2::before { content: ""; position: absolute; left: 50%; top: 0.5rem; bottom: 0.5rem; width: 2px; background: var(--color-gray-200); transform: translateX(-50%); }
.ar-tl2-row { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: flex-start; column-gap: 1.25rem; padding: 0.4rem 0; }
.ar-tl2-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 0.35rem; box-shadow: 0 0 0 4px var(--color-gray-50, #F8F9FB); position: relative; z-index: 1; }
.ar-tl2-side--items { display: flex; flex-direction: column; gap: 0.75rem; min-width: 0; }
.ar-tl2-row > .ar-tl2-side--items:first-child { align-items: flex-end; }
.ar-tl2-row > .ar-tl2-side--items:last-child { align-items: flex-start; }
.ar-tl2-side--year { display: flex; padding-top: 0.05rem; }
.ar-tl2-row > .ar-tl2-side--year:first-child { justify-content: flex-end; }
.ar-tl2-row > .ar-tl2-side--year:last-child { justify-content: flex-start; }
.ar-tl2-year { font-size: 1.25rem; font-weight: 800; color: var(--color-brand-500); letter-spacing: -0.01em; }
.ar-tl2-item { font-size: 0.8125rem; color: var(--color-gray-500); line-height: 1.5; display: flex; align-items: baseline; gap: 0.5rem; margin: 0; max-width: 26rem; }
.ar-tl2-row > .ar-tl2-side--items:first-child .ar-tl2-item { justify-content: flex-end; text-align: right; }
.ar-tl2-row > .ar-tl2-side--items:last-child .ar-tl2-item { justify-content: flex-start; text-align: left; }
.ar-tl2-item__date { font-weight: 700; color: var(--color-navy-900); white-space: nowrap; font-size: 0.75rem; }
.ar-tl2-item__text { min-width: 0; }
.ar-tl2-item--strong .ar-tl2-item__text { color: var(--color-navy-900); }

.section-dark .ar-tl2::before { background: rgba(255,255,255,0.15); }
.section-dark .ar-tl2-year { color: #7DD3FC; }
.section-dark .ar-tl2-item { color: rgba(255,255,255,0.55); }
.section-dark .ar-tl2-item__date { color: #fff; }
.section-dark .ar-tl2-item--strong .ar-tl2-item__text { color: #fff; }

@media (max-width: 640px) {
  .ar-tl2::before { left: 6px; }
  .ar-tl2-row { grid-template-columns: 12px 1fr; column-gap: 0.75rem; }
  .ar-tl2-row > .ar-tl2-side--year { display: none; }
  .ar-tl2-row > .ar-tl2-side--items:first-child { grid-column: 2; align-items: flex-start; }
  .ar-tl2-row::before { content: attr(data-year); grid-column: 2; font-size: 1.1rem; font-weight: 800; color: var(--color-brand-500); margin-bottom: 0.35rem; }
  .ar-tl2-item { flex-direction: row; }
}
.section-dark .ar-timeline__event { color: rgba(255,255,255,0.8); }
.section-dark .ar-timeline__event::before { border-color: var(--color-navy-900); }

/* ── About — Leadership / R&D Team ─────────────────────────── */
.ar-leadership { padding: var(--space-20, 5rem) 0; }
.ar-rd-team     { padding: var(--space-20, 5rem) 0; }
.ar-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.ar-team-grid--exec { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.ar-team-grid--rd   { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.ar-team-card { background: #fff; border-radius: var(--radius-xl); border: 1.5px solid var(--color-gray-200); overflow: hidden; position: relative; transition: box-shadow 0.2s, transform 0.2s; }
.ar-team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ar-team-card__accent-bar { height: 4px; background: var(--ar-team-accent, var(--color-brand-500)); }
.ar-team-card__photo-wrap { padding: 1.5rem 1.5rem 0; }
.ar-team-card__photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.ar-team-card__photo--placeholder { width: 72px; height: 72px; border-radius: 50%; background: var(--color-gray-200); }
.ar-team-card__info { padding: 1rem 1.5rem 1.5rem; }
.ar-team-card__initial, .ar-team-card__initials { font-size: 1.5rem; font-weight: 800; color: var(--color-brand-500); }
.ar-team-card__name { font-size: 1rem; font-weight: 700; color: var(--color-navy-900); margin-bottom: 0.25rem; }
.ar-team-card__role { font-size: 0.8125rem; color: var(--color-gray-500); margin-bottom: 0.5rem; }
.ar-team-card__bio  { font-size: 0.8125rem; color: var(--color-gray-400); line-height: 1.55; }

/* ── Pinned banner section — 히어로 바로 아래라 위쪽 여백 필요 ─────── */
.ar-news-pinned-section { padding: 3rem 0 0.5rem; }

/* ── Notice 게시판 (심플 리스트) ────────────────────────────── */
.ar-bulletin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}
.ar-bulletin-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-400);
}
.ar-bulletin-list {
  border-top: 2px solid var(--color-navy-900, #0A1628);
  border-bottom: 2px solid var(--color-navy-900, #0A1628);
}
.ar-bulletin-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
  text-decoration: none;
  transition: background-color 0.15s;
  position: relative;
}
.ar-bulletin-row:last-child { border-bottom: none; }
.ar-bulletin-row:hover { background-color: var(--color-gray-50, #F9FAFB); }
.ar-bulletin-row__index {
  flex-shrink: 0;
  width: 2.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-gray-400);
  font-variant-numeric: tabular-nums;
}
.ar-bulletin-row__title {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy-900, #0A1628);
  transition: color 0.15s;
}
.ar-bulletin-row:hover .ar-bulletin-row__title { color: var(--color-brand-500); }
.ar-bulletin-row__date {
  flex-shrink: 0;
  font-size: 0.9375rem;
  color: var(--color-gray-400);
  white-space: nowrap;
}
.ar-bulletin-row__arrow {
  flex-shrink: 0;
  width: 1rem;
  color: var(--color-brand-500);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.ar-bulletin-row:hover .ar-bulletin-row__arrow { opacity: 1; transform: translateX(0); }

/* 고정글 — 배지 + 은은한 배경 틴트로 일반글과 구분 */
.ar-bulletin-row--pinned {
  background-color: rgba(48, 162, 220, 0.05);
}
.ar-bulletin-row--pinned:hover { background-color: rgba(48, 162, 220, 0.09); }
.ar-bulletin-row__badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 101, 240, 0.12);
  color: var(--color-brand-500, #1A65F0);
  margin-right: 0.25rem;
}

/* 페이지네이션 */
.ar-bulletin-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 2rem;
}
.ar-bulletin-pager__btn,
.ar-bulletin-pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-500);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.ar-bulletin-pager__btn:hover,
.ar-bulletin-pager__num:hover { background-color: var(--color-gray-100, #F1F3F7); }
.ar-bulletin-pager__num.is-active {
  background-color: var(--color-brand-500);
  color: #fff;
}
.ar-bulletin-pager__btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 640px) {
  .ar-bulletin-row { gap: 0.75rem; padding: 1.25rem 1rem; }
  .ar-bulletin-row__title { font-size: 0.9375rem; }
  .ar-bulletin-row__date { font-size: 0.8125rem; }
  .ar-bulletin-row__arrow { display: none; }
}

/* ── Search ─────────────────────────────────────────────────── */
.ar-news-filter-section { padding: 1.5rem 0; border-bottom: 1px solid var(--color-gray-200); }
.ar-news-filter-bar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between; }
.ar-tag-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ar-tag-btn {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-gray-200);
  font-size: 0.8125rem;
  font-weight: 600;
  background: #fff;
  color: var(--color-gray-500);
  cursor: pointer;
  transition: all 0.2s;
}
.ar-tag-btn.active, .ar-tag-btn:hover {
  background: var(--color-brand-500);
  color: #fff;
  border-color: var(--color-brand-500);
}
.ar-news-search-wrap { position: relative; }
.ar-news-search { padding: 0.5rem 0.875rem 0.5rem 2.25rem; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-full); font-size: 0.875rem; width: 220px; }
.ar-news-search:focus { outline: none; border-color: var(--color-brand-500); }
.ar-search-icon { position: absolute; left: 0.625rem; top: 50%; transform: translateY(-50%); color: var(--color-gray-400); pointer-events: none; }
.ar-news-grid-section { padding: var(--space-16, 4rem) 0; }
.ar-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.ar-no-results, .ar-news-no-results { text-align: center; padding: 2rem; color: var(--color-gray-400); font-size: 0.9375rem; }

/* ── Marquee (Partners hero) ────────────────────────────────── */
.ar-marquee { overflow: hidden; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.ar-marquee__track { display: flex; gap: 2.5rem; animation: ar-marquee-scroll 30s linear infinite; width: max-content; }
.ar-marquee__item { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.45); white-space: nowrap; letter-spacing: 0.02em; }
@keyframes ar-marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Badges ─────────────────────────────────────────────────── */
.ar-badge {
  display: inline-flex; align-items: center;
  padding: 0.2em 0.75em;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ar-badge--proprietary { background: rgba(26,101,240,0.12); color: var(--color-brand-500); }
.ar-badge--collab      { background: rgba(124,58,237,0.12); color: var(--color-purple); }
.ar-badge--collab-type { background: rgba(16,185,129,0.12); color: var(--color-green-600); }
.ar-badge--modality    { background: rgba(245,158,11,0.12); color: var(--color-amber-600); }

/* ── Program ID ─────────────────────────────────────────────── */
.ar-program-id {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-brand-500);
  background: rgba(26,101,240,0.08);
  padding: 0.2em 0.625em;
  border-radius: var(--radius-sm);
}

/* ── Icon external link ─────────────────────────────────────── */
.ar-icon-external { vertical-align: middle; opacity: 0.6; }

/* ── Pipeline single page ───────────────────────────────────── */
.ar-pipeline-single__type--proprietary { background: rgba(26,101,240,0.12); color: var(--color-brand-500); padding: 0.25em 0.75em; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; }
.ar-pipeline-single__type--collaboration { background: rgba(124,58,237,0.12); color: var(--color-purple); padding: 0.25em 0.75em; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; }

/* ── Stage bar (line variant, about/pipeline pages) ─────────── */
.ar-stage-bar__line { flex: 1; height: 2px; background: var(--color-gray-200); transition: background 0.3s; }
.ar-stage-bar__line.is-active { background: var(--color-brand-500); }

/* ==========================================================================
   END Template Bridge
   ========================================================================== */

/* ==========================================================================
   19. Navbar Missing Classes (ar-navbar__container, ar-lang-switcher)
   ========================================================================== */

/* ar-navbar__container = ar-navbar__inner 별칭 */
.ar-navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .ar-navbar__container { padding: 0 1rem; }
}

/* 언어 전환 버튼 */
.ar-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ar-lang-btn {
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
}
.ar-lang-btn.is-active {
  color: #fff;
}
.ar-lang-btn:hover {
  color: #fff;
}
.ar-navbar.scrolled .ar-lang-btn { color: rgba(17,34,64,0.55); }
.ar-navbar.scrolled .ar-lang-btn.is-active { color: var(--color-navy-900, #0A1628); }
.ar-navbar.scrolled .ar-lang-btn:hover { color: var(--color-brand-500, #1A65F0); }

/* ar-navbar__menu-wrap */
.ar-navbar__menu-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* ==========================================================================
   20. Footer Bridge — HTML 클래스명 ↔ 기존 CSS 연결 + 누락 스타일
   ========================================================================== */

/* container = top (4열 그리드) */
.ar-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ar-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 1024px) {
  .ar-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ar-footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .ar-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ar-footer__container { padding: 0 1.25rem; }
}

/* 각 열 */
.ar-footer__col {}
.ar-footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

/* 로고 영역 */
.ar-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.ar-footer__logomark { width: 32px; height: 32px; }
.ar-footer__wordmark { height: 22px; width: auto; }

/* 저작권 (브랜드 열 내) */
.ar-footer__copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1.25rem;
}

/* 연락처 목록 */
.ar-footer__contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.ar-footer__contact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.ar-footer__contact-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.ar-footer__contact-value { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.ar-footer__contact-link { text-decoration: none; transition: color 0.15s; }
.ar-footer__contact-link:hover { color: #60A5FA; }
.ar-footer__address { font-style: normal; line-height: 1.65; }

/* 하단 바 */
.ar-footer__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
.ar-footer__bottom-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.ar-footer__legal-nav { display: flex; align-items: center; gap: 1rem; }
.ar-footer__legal-link { font-size: 0.8125rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.ar-footer__legal-link:hover { color: rgba(255,255,255,0.7); }
.ar-footer__legal-sep { color: rgba(255,255,255,0.2); }
.ar-footer__external-icon { opacity: 0.5; vertical-align: middle; margin-left: 3px; }
.ar-footer__nav-link--external { display: inline-flex; align-items: center; }

/* ==========================================================================
   21. Hero Gradient Text + 원본 디자인 매칭 강화
   ========================================================================== */

/* 히어로 그라데이션 텍스트 (원본 "at the Atomic Level" 파란 그라데이션) */
.text-gradient-hero,
.hero-gradient-line {
  background: linear-gradient(135deg, #60C8F0 0%, #3B82F6 40%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 원본: "Solving Drug Discovery" + gradient line */
.ar-hero-title-main {
  display: block;
  color: #fff;
}
.ar-hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #38BDF8 0%, #6366F1 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 배경 장식 — 점 패턴 */
.bg-dots {
  background-image:
    radial-gradient(rgba(26,101,240,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Radial brand glow */
.bg-radial-brand {
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(26,101,240,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 70%, rgba(124,58,237,0.1) 0%, transparent 60%);
}

/* section-hero 배경 */
.section-hero {
  background: linear-gradient(160deg, #05090F 0%, #0A1628 60%, #05090F 100%) !important;
}

/* section classes (main.css 보완) */
.section-white { background-color: #ffffff; color: var(--color-navy-900, #0A1628); }
.section-white h1, .section-white h2, .section-white h3 { color: var(--color-navy-900); }

/* stat-card (홈 stats strip) — Next.js 글래스모피즘 스타일 매칭 */
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0; /* reset — content is padded inside */
}
.stat-card:hover {
  transform: scale(1.03) translateY(-4px);
  background: rgba(255,255,255,0.07);
}

/* 상단 컬러 그라데이션 라인 */
.stat-card::before {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #30A2DC, #60c8f0);
  transition: height 0.3s ease;
  flex-shrink: 0;
}
.stat-card:hover::before { height: 4px; }

/* 카드 내부 패딩 — stat-card__number / stat-card__label 를 감싸는 div */
.stat-card .stat-card__number,
.stat-card .stat-card__label,
.stat-card .stat-card__sub {
  display: block;
}

/* 첫 번째 child div에 패딩 적용 (template에 래퍼 없을 경우 직접 적용) */
.stat-card > *:not(.stat-card::before) {
  padding-top: 0;
}
/* 직접 padding 처리 */
.stat-card__number {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0;
  padding: 2rem 1.5rem 0;
  background: linear-gradient(90deg, #30A2DC, #60c8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1.5rem 2rem;
}
.stat-card__sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); padding: 0 1.5rem 2rem; line-height: 1.5; }

/* grid utilities (홈 4열 그리드) */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-cols-4, .grid-cols-3, .grid-cols-2 { grid-template-columns: 1fr; }
}
.gap-4  { gap: var(--space-4, 1rem); }
.gap-6  { gap: var(--space-6, 1.5rem); }
.gap-8  { gap: var(--space-8, 2rem); }
.gap-12 { gap: var(--space-12, 3rem); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

/* 서비스 카드 (홈 What We Do 섹션) */
.service-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-xl, 1rem);
  border: 1.5px solid var(--color-gray-200, #E5E7EB);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-card__icon { margin-bottom: 1rem; }
.service-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--color-navy-900); margin-bottom: 0.5rem; }
.service-card__desc  { font-size: 0.875rem; color: var(--color-gray-500); line-height: 1.65; margin-bottom: 1rem; }
.service-card__link  { font-size: 0.875rem; font-weight: 600; color: var(--color-brand-500); text-decoration: none; display: inline-flex; align-items: center; gap: 0.25rem; }

/* 결과 카드 (Track Record 섹션) */
.result-card {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg, 0.75rem);
  border: 1px solid rgba(255,255,255,0.08);
}
.result-card__stat   { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 0.375rem; }
.result-card__label  { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.25rem; }
.result-card__sub    { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* 파트너 로고 슬라이더 (홈) */
.partner-logos { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: flex-start; align-items: center; }
.partner-logo  { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.4); white-space: nowrap; transition: color 0.2s; }
.partner-logo:hover { color: rgba(255,255,255,0.8); }

/* reveal-stagger */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.is-visible > *,
.reveal-stagger > *.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.20s; }

/* back-to-top */
.ar-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-brand-500, #1A65F0);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,101,240,0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 40;
}
.ar-back-to-top.is-visible { opacity: 1; transform: none; }
.ar-back-to-top:hover { background: var(--color-brand-600, #0D4ED8); }

/* ==========================================================================
   22. Mobile Menu + WP Nav Link Fixes
   ========================================================================== */

/* ── 모바일 메뉴 패널 기본 숨김 ─────────────────────────────── */
.ar-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,9,15,0.97);
  backdrop-filter: blur(12px);
  z-index: 200;
  overflow-y: auto;
}
.ar-mobile-menu.is-open { display: flex; }

/* 메뉴 항목 텍스트 색상 — 정의가 없어서 전역 기본 어두운 텍스트색을
   그대로 물려받아 어두운 배경 위에서 거의 안 보이던 문제 수정 */
.ar-mobile-menu__nav { list-style: none; margin: 0; padding: 0; }
.ar-mobile-menu__nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.ar-mobile-menu__nav > li > a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.ar-mobile-menu__nav > li > a:hover { color: #ffffff; }
.ar-mobile-menu__nav .sub-menu {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0 0 0 1rem;
}
.ar-mobile-menu__nav .sub-menu li { border-bottom: none; }
.ar-mobile-menu__nav .sub-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.ar-mobile-menu__nav .sub-menu a:hover { color: #ffffff; }

.ar-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  min-height: 100%;
  gap: 1.5rem;
}
.ar-mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
}
.ar-mobile-menu__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ar-mobile-menu__lang { display: flex; gap: 0.5rem; }
.ar-mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 190;
}
.ar-mobile-menu__overlay.is-open { display: block; }

/* ── WP 생성 nav 메뉴 스타일 (클래스 없는 li > a 타겟) ──────── */
/* 데스크탑 수평 메뉴 */
.ar-navbar__menu > .menu-item > a {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.ar-navbar__menu > .menu-item > a:hover { color: #60C8F0; }
.ar-navbar.scrolled .ar-navbar__menu > .menu-item > a { color: rgba(17,34,64,0.8); }
.ar-navbar.scrolled .ar-navbar__menu > .menu-item > a:hover { color: var(--color-brand-500); }

/* 드롭다운 서브메뉴 */
.ar-navbar__menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #0A1628;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 100;
  list-style: none;
  margin: 0;
}
.ar-navbar__menu .menu-item:hover > .sub-menu { display: block; }
.ar-navbar__menu .sub-menu .menu-item > a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.ar-navbar__menu .sub-menu .menu-item > a:hover {
  color: #fff;
  background: rgba(26,101,240,0.15);
}

/* ── Walker 드롭다운 (.dropdown-menu / .dropdown-list) ──────────
   arontier_Nav_Walker가 생성하는 구조:
   .menu-item.has-dropdown > a + div.dropdown-menu > ul.dropdown-list
   ──────────────────────────────────────────────────────────────── */
.ar-navbar__menu > .menu-item { position: relative; }

/* 드롭다운 화살표 회전 */
.ar-navbar__menu > .menu-item .dropdown-chevron {
  transition: transform 0.2s ease;
  vertical-align: middle;
  margin-left: 2px;
}
.ar-navbar__menu > .menu-item:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* 드롭다운 패널 — 기본: 숨김 */
.ar-navbar__menu .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  transform: none;
  background: #0A1628;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  z-index: 200;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 호버 시 표시 */
.ar-navbar__menu > .menu-item.has-dropdown:hover .dropdown-menu {
  display: block;
}

/* 서브메뉴 ul 리셋 */
.ar-navbar__menu .dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 서브메뉴 아이템 링크 */
.ar-navbar__menu .dropdown-list .menu-item > a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.ar-navbar__menu .dropdown-list .menu-item > a:hover {
  color: #fff;
  background: rgba(26,101,240,0.18);
}

/* 스크롤 후 밝은 테마 드롭다운 */
.ar-navbar.scrolled .ar-navbar__menu .dropdown-menu {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.ar-navbar.scrolled .ar-navbar__menu .dropdown-list .menu-item > a {
  color: #374151;
}
.ar-navbar.scrolled .ar-navbar__menu .dropdown-list .menu-item > a:hover {
  color: #1a65f0;
  background: rgba(26,101,240,0.06);
}

/* 부모 아이템에 ▾ 화살표 표시 (CSS only fallback) */
.ar-navbar__menu > .menu-item.has-dropdown > a::after {
  content: '';
  display: none; /* chevron SVG가 이미 있으므로 숨김 */
}

/* ── hamburger 버튼 기본 숨김 (데스크탑) ──────────────────────── */
.ar-navbar__hamburger { display: none; }
@media (max-width: 1024px) {
  .ar-navbar__hamburger { display: flex; }
  .ar-navbar__menu-wrap { display: none; }
}

/* ar-navbar__actions 올바른 flex */
.ar-navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   22b. Missing Utility Classes (Tailwind compat shim)
   ========================================================================== */
.inset-0 { inset: 0; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; -webkit-user-select: none; }

/* ==========================================================================
   23. Hero Section Redesign — Next.js 원본 매칭
   ========================================================================== */

/* 히어로 이미지 래퍼 — 우측 절대 포지션 */
.ar-hero-img-wrap {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
@media (max-width: 1280px) {
  .ar-hero-img-wrap { width: 420px; right: -30px; }
}
@media (max-width: 1024px) {
  .ar-hero-img-wrap { display: none; }
}

/* 히어로 텍스트 컬럼 */
.ar-hero-text-col {
  max-width: 42rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1280px) {
  .ar-hero-text-col { max-width: 52rem; }
}

/* 아이브로우 배지 */
.ar-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7DD3FC; /* sky-300 */
}

/* 아이브로우 맥동 점 */
.ar-hero-eyebrow__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38BDF8; /* sky-400 */
  animation: hero-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* 히어로 H1 */
.ar-hero-h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .ar-hero-h1 { font-size: clamp(3rem, 7vw, 6rem); }
}

/* 히어로 설명 텍스트 */
.ar-hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 32rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .ar-hero-desc { font-size: 1.25rem; }
}

/* 히어로 프라이머리 버튼 — 그라데이션 */
.ar-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #1B6CC2 0%, #30A2DC 100%);
  box-shadow: 0 4px 24px rgba(48,162,220,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.ar-btn-hero-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(48,162,220,0.5);
  color: #ffffff;
}
.ar-btn-hero-primary:active { transform: scale(0.95); }

/* 히어로 아웃라인 버튼 */
.ar-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.ar-btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}

/* 히어로 영역 내 section-subtitle 스타일 오버라이드 — 배지로 변환 */
.section-hero-wrap .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35em 1em;
  background: rgba(26,101,240,0.15);
  border: 1px solid rgba(26,101,240,0.25);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   23. Critical Fixes — CTA background, lang button, section colors
   ========================================================================== */

/* CTA 섹션 — bg-radial-brand가 background를 덮어쓰는 문제 수정
   background-image만 사용해서 section-dark의 배경색 유지 */
.bg-radial-brand {
  background-image:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(26,101,240,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(124,58,237,0.1) 0%, transparent 60%) !important;
  /* background-color은 section-dark에서 가져옴 */
}

/* section-dark 강제 확인 — 텍스트 흰색 보장 */
.section-dark {
  color: rgba(255,255,255,0.85) !important;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: inherit;
}
.section-dark .section-subtitle {
  color: rgba(255,255,255,0.55);
}

/* ── EN / KO 언어 버튼 — Next.js 스타일 매칭 ─────────────────── */
.ar-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: 0.2rem;
}
.ar-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 0.5rem;
  border: none;
  background: transparent;
}
.ar-lang-btn.is-active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.ar-lang-btn:hover:not(.is-active) { color: rgba(255,255,255,0.8); }
.ar-navbar.scrolled .ar-lang-switcher {
  background: rgba(17,34,64,0.06);
  border-color: rgba(17,34,64,0.12);
}
.ar-navbar.scrolled .ar-lang-btn { color: rgba(17,34,64,0.45); }
.ar-navbar.scrolled .ar-lang-btn.is-active {
  background: rgba(17,34,64,0.12);
  color: var(--color-navy-900);
}

/* ── CTA 섹션 배경 명시 (section-dark 보강) ───────────────────── */
.section.section-dark.bg-radial-brand {
  background-color: var(--color-navy-900, #0A1628);
}

/* ── section-hero-wrap 배경 확인 ─────────────────────────────── */
.section-hero-wrap {
  background: linear-gradient(135deg, #060d1f 0%, #0a1628 55%, #0d1e38 100%);
}

/* ==========================================================================
   2e. CSS Visual Polish — 전환 효과 및 접근성
   ========================================================================== */

/* 스크롤드 후 밝은 페이지에서 드롭다운 화살표 색상 */
.ar-navbar.scrolled .ar-navbar__menu > .menu-item > a .dropdown-chevron {
  stroke: rgba(17,34,64,0.6);
}
.ar-navbar.scrolled .ar-navbar__menu > .menu-item:hover .dropdown-chevron {
  stroke: #1a65f0;
}

/* 포커스 가시성 (접근성) */
.ar-navbar__menu .dropdown-list .menu-item > a:focus {
  outline: 2px solid #1a65f0;
  outline-offset: -2px;
  border-radius: 4px;
}

/* 서브메뉴 아이템 포커스 visible */
.ar-navbar__menu .dropdown-menu:focus-within {
  display: block;
}

/* 스크롤 시 navbar 배경 부드러운 전환 */
.ar-navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


/* ==========================================================================
   24. NAVBAR — Complete Rewrite (WP menu + dropdown fix)
   ========================================================================== */

/* ── 메뉴 아이템 링크 색상 (WP 생성 구조에 맞춰 강제 적용) ─── */
.ar-navbar__menu li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88) !important;
  text-decoration: none;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.ar-navbar__menu li > a:hover { color: #ffffff !important; }

/* Scrolled (흰 배경) 상태의 메뉴 색상 */
.ar-navbar.scrolled .ar-navbar__menu li > a {
  color: rgba(17,34,64,0.78) !important;
}
.ar-navbar.scrolled .ar-navbar__menu li > a:hover {
  color: var(--color-brand-500, #1A65F0) !important;
}

/* ── 드롭다운 구조 — 여러 WP 클래스 모두 대응 ───────────────── */
/* 서브메뉴 기본 숨김 */
.ar-navbar__menu .menu-item-has-children > ul,
.ar-navbar__menu .menu-item-has-children > .sub-menu,
.ar-navbar__menu .menu-item-has-children > .dropdown-menu,
.ar-navbar__menu .menu-item-has-children > .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(10,22,40,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.875rem;
  padding: 0.5rem;
  z-index: 500;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  /* 서브메뉴까지 마우스 이동 시 끊김 방지 */
  margin-top: 0;
  padding-top: 0.75rem;
}

/* ── 핵심: 투명 브리지 — cursor gap 버그 해결 ─────────────────
   li::after 가상 요소가 li와 드롭다운 사이 공간을 메움 */
.ar-navbar__menu .menu-item-has-children {
  position: relative;
}
.ar-navbar__menu .menu-item-has-children::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px; /* hover gap 메우기 */
  background: transparent;
}

/* hover 또는 focus-within에서 드롭다운 표시 */
.ar-navbar__menu .menu-item-has-children:hover > ul,
.ar-navbar__menu .menu-item-has-children:hover > .sub-menu,
.ar-navbar__menu .menu-item-has-children:hover > .dropdown-menu,
.ar-navbar__menu .menu-item-has-children:hover > .dropdown-list,
.ar-navbar__menu .menu-item-has-children:focus-within > ul,
.ar-navbar__menu .menu-item-has-children:focus-within > .sub-menu,
.ar-navbar__menu .menu-item-has-children:focus-within > .dropdown-menu,
.ar-navbar__menu .menu-item-has-children:focus-within > .dropdown-list {
  display: block;
  animation: dropdownIn 0.18s ease;
}
@keyframes dropdownIn {
  from { opacity:0; transform:translateY(-6px); }
  to   { opacity:1; transform:translateY(0); }
}

/* 드롭다운 내부 아이템 */
.ar-navbar__menu .menu-item-has-children > ul li,
.ar-navbar__menu .menu-item-has-children > .sub-menu li,
.ar-navbar__menu .menu-item-has-children > .dropdown-menu li,
.ar-navbar__menu .menu-item-has-children > .dropdown-list li {
  list-style: none;
}
.ar-navbar__menu .menu-item-has-children > ul li > a,
.ar-navbar__menu .menu-item-has-children > .sub-menu li > a,
.ar-navbar__menu .menu-item-has-children > .dropdown-menu li > a,
.ar-navbar__menu .menu-item-has-children > .dropdown-list li > a {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s !important;
}
.ar-navbar__menu .menu-item-has-children > ul li > a:hover,
.ar-navbar__menu .menu-item-has-children > .sub-menu li > a:hover,
.ar-navbar__menu .menu-item-has-children > .dropdown-menu li > a:hover,
.ar-navbar__menu .menu-item-has-children > .dropdown-list li > a:hover {
  background: rgba(26,101,240,0.15) !important;
  color: #fff !important;
}

/* Scrolled 상태의 드롭다운 */
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > ul,
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > .sub-menu,
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > .dropdown-menu {
  background: #ffffff;
  border-color: rgba(17,34,64,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > ul li > a,
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > .sub-menu li > a,
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > .dropdown-menu li > a {
  color: rgba(17,34,64,0.75) !important;
}
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > ul li > a:hover,
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > .sub-menu li > a:hover,
.ar-navbar.scrolled .ar-navbar__menu .menu-item-has-children > .dropdown-menu li > a:hover {
  background: rgba(26,101,240,0.06) !important;
  color: var(--color-brand-500) !important;
}

/* ── 드롭다운 색깔 점 (Next.js 원본 스타일) ────────────────── */
.ar-navbar__menu .menu-item-has-children li > a::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-500, #1A65F0);
  flex-shrink: 0;
  opacity: 0.7;
}
.ar-navbar__menu .menu-item-has-children li:nth-child(1) > a::before { background: #30A2DC; }
.ar-navbar__menu .menu-item-has-children li:nth-child(2) > a::before { background: #7C3AED; }
.ar-navbar__menu .menu-item-has-children li:nth-child(3) > a::before { background: #059669; }

/* ── 화살표 chevron ─────────────────────────────────────────── */
.ar-navbar__menu li > a .dropdown-chevron,
.ar-navbar__menu li > a svg.dropdown-chevron {
  transition: transform 0.2s;
  opacity: 0.6;
}
.ar-navbar__menu .menu-item-has-children:hover > a .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── 로고 — scrolled 상태에서 컬러 버전 표시 (JS 없이도) ─────── */
.ar-navbar.scrolled .ar-navbar__logo-white { display: none !important; }
.ar-navbar.scrolled .ar-navbar__logo-color { display: inline !important; }


/* ==========================================================================
   25. Pipeline Card Stage Bar — 완전한 시각화
   ========================================================================== */

/* 각 스텝 컨테이너 */
.ar-pipeline-card__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
}
/* 스텝 사이 연결선 */
.ar-pipeline-card__stage:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 9px;
  left: calc(50% + 10px);
  right: calc(-50% + 10px);
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
  transition: background 0.3s;
}
.ar-pipeline-card__stage.is-completed:not(:last-child)::after,
.ar-pipeline-card__stage.is-current:not(:last-child)::after {
  background: var(--color-brand-500, #1A65F0);
}

/* 진행 바 (= 원형 도트) */
.ar-pipeline-card__stage-bar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  flex-shrink: 0;
}
.ar-pipeline-card__stage.is-completed .ar-pipeline-card__stage-bar {
  background: var(--color-brand-500, #1A65F0);
  border-color: var(--color-brand-500, #1A65F0);
}
.ar-pipeline-card__stage.is-completed .ar-pipeline-card__stage-bar::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
.ar-pipeline-card__stage.is-current .ar-pipeline-card__stage-bar {
  background: var(--color-brand-500, #1A65F0);
  border-color: var(--color-brand-500, #1A65F0);
  box-shadow: 0 0 0 4px rgba(26,101,240,0.25);
  animation: stage-pulse 2s ease-in-out infinite;
}
.ar-pipeline-card__stage.is-pending .ar-pipeline-card__stage-bar {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
}

@keyframes stage-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26,101,240,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(26,101,240,0.1); }
}

/* pulse 스팬 (현재 단계 애니메이션 링) */
.ar-pipeline-card__stage-pulse {
  display: none; /* 위의 animation으로 대체 */
}

/* 단계 레이블 */
.ar-pipeline-card__stages .ar-pipeline-card__stage-label,
.ar-pipeline-card__stage > .ar-pipeline-card__stage-label {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}
.ar-pipeline-card__stage.is-completed .ar-pipeline-card__stage-label { color: rgba(255,255,255,0.55); }
.ar-pipeline-card__stage.is-current  .ar-pipeline-card__stage-label { color: #60A5FA; font-weight: 700; }

/* stage bar의 기존 label-only 스타일 오버라이드 */
.ar-pipeline-card__stages {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ==========================================================================
   26. Science Page — Glassmorphism Stats + Filter + Abstract
   ========================================================================== */

/* stat 카드 — Science 페이지용 */
.ar-sci-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, background 0.2s;
}
.ar-sci-stat:hover { transform: translateY(-2px); background: rgba(255,255,255,0.07); }
.ar-sci-stat:last-child {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(26,101,240,0.15) 100%);
  border-color: rgba(124,58,237,0.3);
}
.ar-sci-stat__number {
  font-size: clamp(2rem,4vw,2.75rem);
  font-weight: 800;
  background: linear-gradient(90deg, #60A5FA, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.ar-sci-stat:last-child .ar-sci-stat__number {
  background: linear-gradient(90deg, #C084FC, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
.ar-sci-stat__label { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.55); }

/* 저널 필터 버튼 */
.ar-pub-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.ar-pub-filter-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.ar-pub-filter-btn:hover, .ar-pub-filter-btn.active {
  background: var(--color-brand-500); color: #fff; border-color: var(--color-brand-500);
}
.ar-pub-filter-btn__count {
  font-size: 0.7rem; background: rgba(255,255,255,0.15); border-radius: 9999px; padding: 0.1em 0.5em;
}

/* 논문 행 — 다크 테마 */
.ar-pub-row-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem;
  padding: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.ar-pub-row-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(26,101,240,0.3); }
.ar-pub-row-dark__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.ar-pub-row-dark__title { font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.55; }
.ar-pub-row-dark__meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.625rem; }
.ar-pub-row-dark__journal { font-size: 0.75rem; font-weight: 600; color: #60A5FA; background: rgba(96,165,250,0.1); padding: 0.2em 0.625em; border-radius: 9999px; }
.ar-pub-row-dark__year { font-size: 0.75rem; color: rgba(255,255,255,0.35); padding: 0.2em 0.5em; }
.ar-pub-row-dark__type { font-size: 0.75rem; color: rgba(124,58,237,0.9); background: rgba(124,58,237,0.1); padding: 0.2em 0.625em; border-radius: 9999px; }

/* abstract 펼치기 */
.ar-pub-abstract {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.ar-pub-row-dark.is-open .ar-pub-abstract { display: block; }
.ar-pub-abstract-toggle {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.4);
  cursor: pointer; margin-top: 0.75rem; transition: color 0.15s;
}
.ar-pub-abstract-toggle:hover { color: rgba(255,255,255,0.75); }
.ar-pub-row-dark.is-open .ar-pub-abstract-toggle { color: #60A5FA; }
.ar-pub-chevron { transition: transform 0.2s; }
.ar-pub-row-dark.is-open .ar-pub-chevron { transform: rotate(180deg); }

/* DOI + Abstract 링크 */
.ar-pub-links { display: flex; gap: 0.75rem; margin-top: 0.75rem; flex-wrap: wrap; }
.ar-pub-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 600; text-decoration: none;
  padding: 0.375rem 0.875rem; border-radius: 9999px; transition: all 0.2s;
}
.ar-pub-link--doi { background: rgba(26,101,240,0.15); color: #60A5FA; }
.ar-pub-link--doi:hover { background: rgba(26,101,240,0.3); color: #93C5FD; }
.ar-pub-link--abstract { background: rgba(16,185,129,0.12); color: #34D399; }
.ar-pub-link--abstract:hover { background: rgba(16,185,129,0.25); }

/* ==========================================================================
   27. Pipeline Row — localhost:3000/pipeline 스타일 (전체 너비, 가로 바)
   ========================================================================== */

/* 컨테이너: 1열 full-width */
.ar-pipeline-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  grid-template-columns: none !important;
}

/* 카드 = 흰 배경 row */
.ar-pipeline-row {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.ar-pipeline-row:hover {
  border-color: rgba(26,101,240,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* 배지 행 */
.ar-pipeline-row__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}
.ar-pipeline-row__id {
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.04em;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.2em 0.75em;
  border-radius: 0.375rem;
}
.ar-pipeline-row__type {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25em 0.875em;
  border-radius: 9999px;
}
.ar-pipeline-row__type--prop {
  background: #0A1628;
  color: #fff;
}
.ar-pipeline-row__type--collab {
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
}
.ar-pipeline-row__cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pipeline-color, #1A65F0);
  background: color-mix(in srgb, var(--pipeline-color, #1A65F0) 8%, white);
  border: 1px solid color-mix(in srgb, var(--pipeline-color, #1A65F0) 22%, white);
  padding: 0.2em 0.75em;
  border-radius: 9999px;
}

/* 적응증 */
.ar-pipeline-row__indication {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.ar-pipeline-row__note {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ── 가로 진행 바 ── */
.ar-pipeline-row__bar-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.625rem;
}
.ar-pipeline-row__seg-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.ar-pipeline-row__seg {
  height: 6px;
  border-radius: 9999px;
  background: #E5E7EB;
  transition: background 0.3s;
}
.ar-pipeline-row__seg.is-done {
  background: var(--pipeline-color, #1A65F0);
}
.ar-pipeline-row__seg.is-current {
  background: var(--pipeline-color, #1A65F0);
  box-shadow: 0 0 8px color-mix(in srgb, var(--pipeline-color, #1A65F0) 45%, transparent);
  animation: seg-glow 2s ease-in-out infinite;
}
@keyframes seg-glow {
  0%, 100% { box-shadow: 0 0 4px color-mix(in srgb, var(--pipeline-color, #1A65F0) 30%, transparent); }
  50%       { box-shadow: 0 0 10px color-mix(in srgb, var(--pipeline-color, #1A65F0) 60%, transparent); }
}
.ar-pipeline-row__seg-label {
  font-size: 0.6875rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.3;
}
.ar-pipeline-row__seg-label.is-current {
  color: var(--pipeline-color, #1A65F0);
  font-weight: 600;
}

/* 현재 단계 텍스트 */
.ar-pipeline-row__current-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}
.ar-pipeline-row__current-label strong {
  color: var(--pipeline-color, #1A65F0);
  font-weight: 600;
}

/* Pipeline 페이지: 흰 배경으로 변경 */
.ar-pipeline-grid-section.section-light {
  background: #f8fafc;
}

/* ==========================================================================
   28. Design Polish — Professional Finishing
   ========================================================================== */

/* ── 섹션 간격 일관성 ────────────────────────────────────────── */
.section { padding: var(--space-20, 5rem) 0; }
.section-sm { padding: var(--space-12, 3rem) 0; }
.section-lg { padding: var(--space-32, 8rem) 0; }

/* ── 타이포그래피 위계 ──────────────────────────────────────── */
.section-dark h1, .section-dark h2, .section-dark h3 { color: #ffffff; }
.section-light h1, .section-light h2, .section-light h3 { color: var(--color-navy-900); }
.section-gray h1, .section-gray h2, .section-gray h3 { color: var(--color-navy-900); }

/* ── 버튼 완성도 ────────────────────────────────────────────── */
.btn, .ar-btn, .ar-btn-hero-primary, .ar-btn-hero-outline {
  font-family: var(--font-family);
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible, .ar-btn:focus-visible,
.ar-btn-hero-primary:focus-visible, .ar-btn-hero-outline:focus-visible {
  outline: 2px solid var(--color-brand-500);
  outline-offset: 3px;
}

/* ── 카드 hover 일관성 ──────────────────────────────────────── */
.ar-news-card, .ar-partner-card, .ar-pub-row-dark,
.ar-pipeline-row, .service-card {
  will-change: transform;
}

/* ── 이미지 처리 ────────────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }

/* ── section-subtitle 위계 강화 ─────────────────────────────── */
.section-subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-500);
  margin-bottom: 0.75rem;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }

/* ── 다크/라이트 섹션 전환 명확성 ────────────────────────────── */
.section-light { background-color: #ffffff; }
.section-gray  { background-color: var(--color-gray-50, #F8F9FB); }
.section-dark  { background-color: var(--color-navy-900, #0A1628); }

/* ── 로딩/placeholder 없는 이미지 섹션 ──────────────────────── */
.ar-news-card__thumb-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ar-news-card__thumb-placeholder::after {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26,101,240,0.08);
  border: 1.5px solid rgba(26,101,240,0.15);
}

/* ── Footer 간격 ────────────────────────────────────────────── */
.ar-footer { padding-top: 4rem; }
.ar-footer__grid { padding-top: 0; padding-bottom: 3.5rem; }

/* ── Navbar 링크 밑줄 hover ──────────────────────────────────── */
.ar-navbar__menu > .menu-item > a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-brand-500);
  transition: width 0.2s;
  margin-top: 2px;
}
.ar-navbar__menu > .menu-item > a:hover::after,
.ar-navbar__menu > .menu-item.current-menu-item > a::after {
  width: 100%;
}

/* ── 반응형: 모바일 패딩 ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: var(--space-16, 4rem) 0; }
  .section-sm { padding: var(--space-8, 2rem) 0; }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-cols-3 { grid-template-columns: repeat(1, 1fr) !important; }
  .ar-hero-h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
}
@media (max-width: 480px) {
  .grid-cols-4, .grid-cols-3, .grid-cols-2 { grid-template-columns: 1fr !important; }
  .container { padding-inline: 1.25rem; }
  .ar-pipeline-row { padding: 1.25rem 1rem; }
}

/* ── selection 색상 ──────────────────────────────────────────── */
::selection { background: rgba(26,101,240,0.2); color: var(--color-navy-900); }

/* ── focus 링 제거 (마우스 사용 시) ─────────────────────────── */
:focus:not(:focus-visible) { outline: none; }

/* ── 링크 기본 색상 ──────────────────────────────────────────── */
a { color: inherit; }

/* ── 헬퍼: 텍스트 없는 aria-hidden 요소 ─────────────────────── */
[aria-hidden="true"] { pointer-events: none; }

/* ── Pipeline row 라이트 배경 구분선 ─────────────────────────── */
.ar-pipeline-grid-section { background: #f8fafc; }
.ar-pipeline-row + .ar-pipeline-row { margin-top: 0; }

/* ── News card 호버 shadow ───────────────────────────────────── */
.ar-news-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); }

/* ── Partners card 로고 영역 최소 높이 ──────────────────────── */
.ar-partner-card { min-height: 140px; }
.ar-partner-card__logo { min-height: 56px; max-height: 80px; overflow: hidden; }
.ar-partner-card__img { max-height: 56px; object-fit: contain; }

/* ==========================================================================
   29. Deep Design Polish — 전문적 완성도
   ========================================================================== */

/* ── AR-Hero 섹션 (contact 등) 높이 최적화 ──────────────────── */
.ar-hero.section-dark {
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 60%, #0d1e38 100%);
  padding: 7rem 0 5rem;
  position: relative;
}
.ar-hero--contact {
  min-height: 40vh;
  display: flex;
  align-items: center;
}
.ar-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ar-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Stat 카드 (ar-stat) 완성 ───────────────────────────────── */
.ar-stat { padding: 0.5rem 1rem; }
.ar-stat__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
}
.ar-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.ar-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ── Navbar 로고 링크 ────────────────────────────────────────── */
.ar-navbar__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ar-navbar__logo {
  height: 28px;
  width: auto;
}

/* ── 뉴스 카드 내 링크 ──────────────────────────────────────── */
.ar-news-card__title-link:hover { color: var(--color-brand-500); }

/* ── 파이프라인 row 클릭 시각 피드백 ────────────────────────── */
.ar-pipeline-row:hover {
  border-color: rgba(26,101,240,0.4) !important;
  box-shadow: 0 4px 24px rgba(26,101,240,0.08) !important;
}
.ar-pipeline-row:active { transform: scale(0.995); }

/* ── Science 필터 버튼 다크 테마 ────────────────────────────── */
.ar-pub-filter { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }

/* ── Partners 섹션 헤더 ─────────────────────────────────────── */
.ar-partner-type-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy-900, #0A1628);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ar-partner-type-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gray-200, #E5E7EB);
}
.section-gray .ar-partner-type-title { color: var(--color-navy-900); }

/* ── 뉴스 기사 썸네일 비율 고정 ────────────────────────────── */
.ar-news-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ar-news-card__thumb-link:hover .ar-news-card__thumb { transform: scale(1.04); }

/* ── Navbar CTA 버튼 크기 조정 ──────────────────────────────── */
.ar-navbar__cta {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.875rem !important;
}

/* ── 모바일 nav 간격 ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ar-navbar__cta { display: none; }
}

/* ── Pipeline hero 섹션 반응형 ──────────────────────────────── */
@media (max-width: 768px) {
  .ar-pipeline-row__bar-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .ar-pipeline-row { padding: 1.25rem; }
  .ar-pipeline-row__indication { font-size: 1rem; }
}

/* ── About 팀 카드 반응형 ───────────────────────────────────── */
@media (max-width: 900px) {
  .ar-team-grid--exec { grid-template-columns: repeat(2, 1fr); }
  .ar-team-grid--rd { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ar-team-grid--exec, .ar-team-grid--rd { grid-template-columns: 1fr; }
}

/* ── Science stat 카드 반응형 ───────────────────────────────── */
@media (max-width: 768px) {
  .ar-sci-stat__number { font-size: clamp(1.5rem, 6vw, 2rem); }
  .ar-sci-stat:last-child .ar-sci-stat__number { font-size: clamp(1rem, 4vw, 1.25rem); }
}

/* ── AR Badge 색상 개선 ─────────────────────────────────────── */
.ar-badge--proprietary {
  background: rgba(26,101,240,0.1);
  color: var(--color-brand-500);
  border: 1px solid rgba(26,101,240,0.2);
}
.ar-badge--collab {
  background: rgba(124,58,237,0.1);
  color: #7C3AED;
  border: 1px solid rgba(124,58,237,0.2);
}

/* ── Home hero 버튼 간격 ────────────────────────────────────── */
.ar-hero-text-col .flex { gap: 1rem; }

/* ── page title 브라우저 탭 제목 개선 용 ─────────────────────── */
.ar-pipeline-row__indication a { color: inherit; text-decoration: none; }

/* ==========================================================================
   30. Final Polish — 추가 개선 및 버그 수정
   ========================================================================== */

/* ── 뉴스 카드 태그 색상 완성 ────────────────────────────────── */
.ar-tag--pill.ar-tag--conference { background: rgba(48,162,220,0.1); color: #0284C7; }
.ar-tag--pill.ar-tag--partnership { background: rgba(26,101,240,0.1); color: #1A65F0; }
.ar-tag--pill.ar-tag--research { background: rgba(124,58,237,0.1); color: #7C3AED; }
.ar-tag--pill.ar-tag--investment { background: rgba(245,158,11,0.1); color: #D97706; }
.ar-tag--pill.ar-tag--platform { background: rgba(5,150,105,0.1); color: #059669; }
.ar-tag--pill.ar-tag--recognition { background: rgba(236,72,153,0.1); color: #DB2777; }

/* ── Home 서비스 카드 모바일 대응 ──────────────────────────────── */
@media (max-width: 900px) {
  .grid-cols-3 { grid-template-columns: 1fr !important; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .grid-cols-3.services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 전체 section 최소 높이 방지 ────────────────────────────── */
.section:empty { display: none; }

/* ── 단일 뉴스 기사 본문 스타일 ────────────────────────────── */
.single-ar-news { background: #f8fafc; }
.single-ar-news__body .entry-content p { margin-bottom: 1.25rem; line-height: 1.85; }
.single-ar-news__body .entry-content h2 { font-size: 1.375rem; font-weight: 700; margin: 2rem 0 1rem; }
.single-ar-news__body .entry-content a { color: var(--color-brand-500); text-decoration: underline; }

/* ── 약관/정책류 본문 (Privacy Policy, Terms of Use) ───────── */
.ar-legal-content {
  max-width: 780px;
  margin-inline: auto;
  color: var(--color-text);
}
.ar-legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.4;
}
.ar-legal-content h2:first-child { margin-top: 0; }
.ar-legal-content p {
  margin-bottom: 1.15rem;
  line-height: 1.85;
  color: var(--color-text);
}
.ar-legal-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.ar-legal-content li {
  margin-bottom: 0.6rem;
  line-height: 1.8;
}
.ar-legal-content strong { color: var(--color-navy); font-weight: 700; }
.ar-legal-content a { color: var(--color-brand-500); text-decoration: underline; }

/* ── Pipeline single 페이지 ─────────────────────────────────── */
.ar-pipeline-single__hero { padding: 7rem 0 4rem; }
.ar-pipeline-single__id {
  font-family: monospace;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  padding: 0.25em 0.75em;
  border-radius: 0.375rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.ar-pipeline-single__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.ar-pipeline-single__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ar-pipeline-single__cat {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.3em 0.875em;
  border-radius: 9999px;
  color: #fff;
}
.ar-pipeline-single__stage-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
}

/* ── 파트너 섹션 다크 배경에서 타이틀 색상 ──────────────────── */
.section-dark .ar-partner-type-title {
  color: rgba(255,255,255,0.9);
}
.section-dark .ar-partner-type-title::after {
  background: rgba(255,255,255,0.12);
}

/* ── About 미션 섹션 ─────────────────────────────────────────── */
.ar-mission__inner { max-width: 740px; margin-inline: auto; }
.ar-mission__body {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
}

/* ── Back-to-top 버튼 노출 조건 ──────────────────────────────── */
.ar-back-to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.ar-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Home hero 분자 이미지 위치 최적화 ──────────────────────── */
.ar-hero-img-wrap {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
@media (max-width: 1280px) {
  .ar-hero-img-wrap { width: 420px; right: -30px; }
}
@media (max-width: 1024px) {
  .ar-hero-img-wrap { display: none; }
}

/* ── GNB 드롭다운 위치 조정 ─────────────────────────────────── */
.ar-navbar__menu .menu-item-has-children {
  position: relative;
}
.ar-navbar__menu .menu-item-has-children > .dropdown-menu {
  left: -0.5rem;
  padding: 0.375rem;
}

/* ==========================================================================
   31. Services Page + Additional Improvements
   ========================================================================== */

/* Services 카드 그리드 개선 */
.ar-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .ar-services-grid { grid-template-columns: 1fr; }
}

/* Science 논문 행 hover 개선 */
.ar-pub-row-dark:hover .ar-pub-row-dark__title { color: #60A5FA; }

/* Pipeline hero 섹션 라이트 배경 */
.ar-pipeline-hero { background: linear-gradient(160deg, #f8fafc 0%, #fff 100%); }

/* About 페이지 팀 카드 */
.ar-team-card__name { font-size: 1rem; font-weight: 700; color: #0A1628; margin-bottom: 0.25rem; }
.ar-team-card__role { font-size: 0.8125rem; color: var(--color-gray-500); }

/* Milestone 타임라인 개선 */
.ar-timeline-section { padding: var(--space-16) 0; }
.ar-timeline__year-marker { 
  font-size: 1.25rem; 
  font-weight: 800; 
  color: var(--color-brand-500);
  margin-bottom: 0.875rem;
}

/* 한국어 텍스트 줄바꿈 최적화 */
:lang(ko), [lang="ko"] { word-break: keep-all; }

/* News filter 섹션 배경 구분 */
.ar-news-filter-section { background: #fff; padding: 1.5rem 0; }

/* AR-Hero contact 섹션 */
.ar-hero.ar-hero--contact .ar-hero__inner { max-width: 700px; }

/* Technology 서브페이지 section-subtitle 색상 통일 */
.section-light .section-subtitle { color: var(--color-brand-500); }
.section-dark  .section-subtitle { color: rgba(255,255,255,0.45); }
.section-gray  .section-subtitle { color: var(--color-brand-500); }

/* 이미지 로딩 중 placeholder */
img[loading="lazy"] { background: var(--color-gray-100); }

/* 드롭다운 아이템 색깔 점 개선 - 첫 2개만 */
.ar-navbar__menu .menu-item-has-children li:first-child > a::before { background: #30A2DC; opacity: 0.8; }
.ar-navbar__menu .menu-item-has-children li:nth-child(2) > a::before { background: #7C3AED; opacity: 0.8; }
.ar-navbar__menu .menu-item-has-children li:nth-child(3) > a::before { background: #059669; opacity: 0.8; }

/* Pipeline 카드 cursor 및 접근성 */
.ar-pipeline-row[onclick] { cursor: pointer; }

/* footer bottom-bar 가시성 */
.ar-footer__bottom-bar { border-top: 1px solid rgba(255,255,255,0.07); }

/* ==========================================================================
   32. Professional Design Upgrade — 전문가 수준 완성도
   ========================================================================== */

/* ── 전역 트랜지션 일관성 ────────────────────────────────────── */
*, *::before, *::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 섹션 subtitle 일관성 ───────────────────────────────────── */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(26,101,240,0.2);
  background: rgba(26,101,240,0.06);
  color: #1A65F0;
  margin-bottom: 1rem;
}
.section-dark .section-subtitle {
  border-color: rgba(48,162,220,0.3);
  background: rgba(48,162,220,0.1);
  color: #7DD3FC;
}

/* ── 홈 Hero 큰 타이틀 개선 ─────────────────────────────────── */
.ar-hero-h1 {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.ar-hero-title-main {
  display: block;
  color: #ffffff;
}
.ar-hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #38BDF8 0%, #6366F1 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── AR-Hero 섹션 최소 높이 ────────────────────────────────────  */
.ar-hero.section-dark { min-height: 50vh; display: flex; align-items: center; }
.ar-hero__inner { width: 100%; }

/* ── 카드 일관된 hover 효과 ─────────────────────────────────── */
.ar-news-card, .ar-partner-card, .ar-team-card,
.ar-pipeline-row, .service-card, .ar-pub-row-dark {
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
              border-color 0.2s ease;
}

/* ── 버튼 consistent look ───────────────────────────────────── */
.btn-primary { border-radius: 9999px !important; }
.btn-outline  { border-radius: 9999px !important; }
.ar-btn--primary, .ar-btn--outline { font-size: 0.9375rem; }

/* ── Pipeline 히어로 최소 패딩 ──────────────────────────────── */
.ar-pipeline-hero-section { padding-top: 7rem !important; padding-bottom: 4rem !important; }

/* ── stat-card 내부 정렬 ────────────────────────────────────── */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Home Partners 마퀴 그라데이션 edge fade ──────────────────── */
.ar-marquee {
  position: relative;
  overflow: hidden;
}
.ar-marquee::before,
.ar-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ar-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-navy-900, #0A1628), transparent);
}
.ar-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-navy-900, #0A1628), transparent);
}
.section-light .ar-marquee::before {
  background: linear-gradient(to right, #ffffff, transparent);
}
.section-light .ar-marquee::after {
  background: linear-gradient(to left, #ffffff, transparent);
}

/* ── GNB 현재 페이지 표시 ───────────────────────────────────── */
.ar-navbar__menu > .current-menu-item > a,
.ar-navbar__menu > .current-menu-parent > a {
  color: #ffffff !important;
  font-weight: 600 !important;
}
.ar-navbar__menu > .current-menu-item > a::after,
.ar-navbar__menu > .current-menu-parent > a::after {
  width: 100% !important;
}
.ar-navbar.scrolled .ar-navbar__menu > .current-menu-item > a {
  color: var(--color-brand-500) !important;
}

/* ── Science stat 카드 hover ────────────────────────────────── */
.ar-sci-stat {
  transition: transform 0.2s, background 0.2s;
  cursor: default;
}

/* ── News card thumbnail overlay ───────────────────────────── */
.ar-news-card__thumb-link {
  overflow: hidden;
  position: relative;
}

/* ── Publication row link hover ────────────────────────────── */
.ar-pub-row-dark:hover .ar-pub-row-dark__title { color: #60A5FA; transition: color 0.2s; }

/* ==========================================================================
   33. Biologics / Technology Sub-page Tab Navigation Fix
   ========================================================================== */

/* 섹션 탭 nav — 스티키 서브 네비게이션 */
nav.section-navy-800 {
  background-color: var(--color-navy-800, #112240) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Admin Bar 있을 때 top 조정 */
.admin-bar nav.section-navy-800 { top: 32px !important; }
@media screen and (max-width: 782px) {
  .admin-bar nav.section-navy-800 { top: 46px !important; }
}

/* 탭 링크 — 직사각형 박스 제거 */
.section-nav-link {
  display: inline-flex !important;
  align-items: center;
  padding: 0.75rem 0 !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  background: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s !important;
  outline: none !important;
  box-shadow: none !important;
}
.section-nav-link:hover {
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,0.4) !important;
}
.section-nav-link.is-active {
  color: #fff !important;
  border-bottom-color: var(--color-brand-500, #1A65F0) !important;
}

/* nav 내 li 기본 스타일 제거 */
nav.section-navy-800 li {
  list-style: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}
nav.section-navy-800 ul {
  list-style: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ==========================================================================
   34. Biologics Protein Structure — 플로팅 효과 복원
   ========================================================================== */

/* 단백질 구조 이미지 — 테두리 없이 공중에 떠 있는 효과 */
.ar-protein-float {
  filter: drop-shadow(0 20px 60px rgba(26,101,240,0.3))
          drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: filter 0.4s ease, transform 0.6s ease;
  border: none !important;
  background: none !important;
  outline: none !important;
}
.ar-protein-float:hover {
  filter: drop-shadow(0 28px 80px rgba(26,101,240,0.45))
          drop-shadow(0 12px 32px rgba(0,0,0,0.5));
  transform: translateY(-6px) scale(1.02);
}

/* biologics 이미지 컨테이너 */
.ar-protein-wrap {
  position: relative;
  border: none !important;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.ar-protein-wrap img {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 16px 48px rgba(26,101,240,0.25))
          drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  transition: filter 0.4s ease, transform 0.5s ease;
}
.ar-protein-wrap img:hover {
  filter: drop-shadow(0 24px 64px rgba(26,101,240,0.4))
          drop-shadow(0 8px 24px rgba(0,0,0,0.45));
  transform: translateY(-8px);
}

/* 인라인 스타일로 border 있는 이미지 overwrite */
.section-dark img:not([class*="logo"]):not([class*="icon"]):not([class*="avatar"]) {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* ==========================================================================
   35. Technology Sub-pages — Image Floating Override
   ========================================================================== */

/* 기술 페이지의 단백질/분자 구조 이미지 — 플로팅 효과 */
/* small-molecule, ad3, omniverse, biologics */
.section section-light img[style*="box-shadow"],
.section-dark img[style*="box-shadow"],
.section-light img[style*="box-shadow:var(--shadow"],
[class*="template-biologics"] img,
[class*="template-small-molecule"] img,
[class*="template-omniverse"] img {
  box-shadow: none !important;
}

/* AD3 스크린샷 — 박스가 맞지만 더 자연스럽게 */
.ad3-screenshot, img[alt*="AD3"], img[alt*="screenshot"] {
  border-radius: 0.75rem !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2) !important;
  border: none !important;
}

/* 분자/단백질 이미지 — 테두리 없는 플로팅 */
img[alt*="Protein"], img[alt*="Molecular"], img[alt*="Docking"],
img[alt*="Antibody"], img[alt*="Peptide"], img[alt*="RSV"],
img[alt*="Ferritin"], img[alt*="molecule"] {
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 16px 48px rgba(26,101,240,0.25))
          drop-shadow(0 4px 16px rgba(0,0,0,0.3)) !important;
}

/* Small molecule 페이지 이미지 */
.page-template-template-small-molecule-php .container img,
.page-template-template-biologics-php .container img:not([class*="logo"]) {
  border-radius: 0 !important;
  border: none !important;
  outline: none !important;
}

/* Omniverse 모달리티 이미지 — 테두리 없이 카드처럼 */
.page-template-template-omniverse-php img {
  box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
  border: none !important;
}

/* ==========================================================================
   36. GNB Scrolled 상태 — 라이트 페이지에서 깔끔하게
   ========================================================================== */

/* scrolled 네이비 로고 즉시 표시 */
.ar-navbar.scrolled .ar-navbar__logo-white { display: none !important; }
.ar-navbar.scrolled .ar-navbar__logo-color { display: block !important; }

/* scrolled 배경 */
.ar-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 1px 0 rgba(17,34,64,0.08), 0 4px 16px rgba(17,34,64,0.06) !important;
}

/* GNB scrolled 상태 CTA 버튼 */
.ar-navbar.scrolled .ar-navbar__cta.ar-btn--primary {
  background: var(--color-brand-500) !important;
  color: #fff !important;
}

/* ==========================================================================
   37. 전체 페이지 섹션 일관성 — 흰 섹션 사이 구분선
   ========================================================================== */

/* 인접한 두 흰 섹션 사이 구분 */
.section-light + .section-light {
  border-top: 1px solid var(--color-gray-100, #F1F3F7);
}
.section-gray + .section-gray {
  border-top: 1px solid var(--color-gray-200, #E5E7EB);
}

/* 뉴스 그리드 */
.ar-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .ar-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .ar-news-grid { grid-template-columns: 1fr; }
}

/* Science 필터 버튼 활성 상태 개선 */
.ar-pub-filter-btn.active {
  background: var(--color-brand-500) !important;
  color: #fff !important;
  border-color: var(--color-brand-500) !important;
}

/* Pipeline row 모바일 가로 바 */
@media (max-width: 640px) {
  .ar-pipeline-row__bar-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Arontier 로고 흰 버전 — 기본 표시 */
.ar-navbar__logo-white { display: block; }
.ar-navbar__logo-color { display: none; }

/* ==========================================================================
   38. Team Card Initials + About Page Polish
   ========================================================================== */

/* 이니셜 카드 배경 — 그라데이션으로 전문적 느낌 */
.ar-team-card__photo-wrap {
  padding: 1.5rem 1.5rem 0.75rem;
}
.ar-team-card__photo--placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1A65F0 0%, #30A2DC 100%);
  flex-shrink: 0;
}
/* CEO/CSO — 더 진한 그라데이션 */
.ar-team-grid--exec .ar-team-card__photo--placeholder {
  background: linear-gradient(135deg, #0D4ED8 0%, #1A65F0 60%, #30A2DC 100%);
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
}

/* 팀 카드 accent bar 색상 — 역할별 */
.ar-team-card:nth-child(1) .ar-team-card__accent-bar { background: linear-gradient(90deg, #1A65F0, #30A2DC); }
.ar-team-card:nth-child(2) .ar-team-card__accent-bar { background: linear-gradient(90deg, #7C3AED, #30A2DC); }
.ar-team-card:nth-child(3) .ar-team-card__accent-bar { background: linear-gradient(90deg, #059669, #30A2DC); }
.ar-team-card:nth-child(4) .ar-team-card__accent-bar { background: linear-gradient(90deg, #D97706, #30A2DC); }

/* ==========================================================================
   39. Home Page Service Cards — 아이콘 영역 개선
   ========================================================================== */

/* 서비스 카드 호버 시 아이콘 글로우 */
.service-card:hover .service-card__icon {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

/* stat-card 상단 라인 색상 — 서비스별 */
.ar-pipeline-row__type--prop {
  font-size: 0.75rem !important;
  padding: 0.25em 0.875em !important;
}
.ar-pipeline-row__type--collab {
  font-size: 0.75rem !important;
  padding: 0.25em 0.875em !important;
}

/* ==========================================================================
   40. News Card — 태그 pill 컬러 완성
   ========================================================================== */

.ar-tag--pill { line-height: 1; }

/* 뉴스 카드 날짜 포맷 개선 */
.ar-news-card__date {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-400);
  letter-spacing: 0.02em;
}

/* 뉴스 카드 소스 */
.ar-news-card__source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-500);
}

/* ==========================================================================
   41. Science Page — 논문 행 개선
   ========================================================================== */

/* 논문 행 호버 효과 */
.ar-pub-row-dark {
  transition: background 0.2s, border-color 0.2s, box-shadow 0.15s;
}
.ar-pub-row-dark:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* abstract 펼쳐진 상태 */
.ar-pub-row-dark.is-open {
  border-color: rgba(26,101,240,0.4);
  background: rgba(26,101,240,0.06);
}

/* ==========================================================================
   42. Partners Page — 섹션 헤더 개선
   ========================================================================== */

/* 파트너 타입 섹션 */
.ar-partner-type-section.section-light:not(:first-of-type) {
  padding-top: 2rem;
}
.ar-partner-type-section.section-gray:not(:first-of-type) {
  padding-top: 2rem;
}

/* 파트너 카드 그리드 */
.ar-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* 텍스트 폴백 파트너 카드 */
.ar-partner-card__name-fallback {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy-900);
  text-align: center;
  padding: 0.5rem 0;
}

/* ==========================================================================
   43. Contact Page — 폼 개선
   ========================================================================== */

.ar-contact-section { padding: var(--space-16) 0; }
.ar-contact-layout { align-items: start; }
.ar-form-field { gap: 0.5rem; }
.ar-form-input:focus, .ar-form-select:focus, .ar-form-textarea:focus {
  border-color: var(--color-brand-500) !important;
  box-shadow: 0 0 0 3px rgba(26,101,240,0.12) !important;
}
.ar-form-label { font-weight: 600; color: var(--color-navy-900); }

/* ==========================================================================
   44. About Page — Mission + Leadership CSS 버그 수정
   ========================================================================== */

/* Our Mission 섹션 — section-light에서 텍스트 색상 강제 */
.ar-mission.section-light { background: #ffffff; }
.ar-mission__body {
  font-size: 1.125rem !important;
  color: var(--color-navy-900, #0A1628) !important;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 3rem;
}

/* Pillar 카드 */
.ar-pillar {
  background: #f8fafc;
  border-radius: 1rem;
  border: 1.5px solid var(--color-gray-200, #E5E7EB);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ar-pillar:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ar-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(26,101,240,0.08);
  color: var(--color-brand-500, #1A65F0) !important;
  margin-bottom: 1rem;
}
.ar-pillar__icon svg { color: var(--color-brand-500, #1A65F0) !important; stroke: var(--color-brand-500, #1A65F0) !important; }
.ar-pillar__title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--color-navy-900, #0A1628) !important;
  margin-bottom: 0.5rem;
}
.ar-pillar__desc {
  font-size: 0.875rem !important;
  color: var(--color-gray-500, #6B7280) !important;
  line-height: 1.65;
}
.ar-mission__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* Leadership 섹션 텍스트 */
.ar-leadership.section-gray, .ar-rd-team.section-light {
  background: var(--color-gray-50, #F8F9FB);
}
.ar-leadership .ar-section-title,
.ar-rd-team .ar-section-title {
  color: var(--color-navy-900, #0A1628) !important;
  margin-bottom: 2rem;
}

/* 팀 카드 텍스트 강제 */
.ar-team-card__name {
  color: var(--color-navy-900, #0A1628) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.25rem;
}
.ar-team-card__role {
  color: var(--color-brand-500, #1A65F0) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem;
}
.ar-team-card__bio {
  color: #475569 !important;
  font-size: 0.9rem !important;
  line-height: 1.7;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ar-team-card__bio-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}
.ar-team-card__bio-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.2em;
  color: var(--color-brand-500, #1A65F0);
  opacity: 0.6;
}
.ar-team-card__info {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
}
.ar-team-card {
  background: #ffffff;
  border: 1.5px solid var(--color-gray-200, #E5E7EB);
}

/* Avatar 원형 이니셜 */
.ar-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0.75rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff !important;
}
.ar-team-card__initials {
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Timeline 섹션 */
.ar-timeline-section { background: var(--color-gray-50, #F8F9FB); }
.ar-timeline__year-marker {
  color: var(--color-brand-500, #1A65F0) !important;
  font-size: 1.25rem;
  font-weight: 800;
}
.ar-timeline__event {
  color: var(--color-navy-900, #0A1628) !important;
}
.ar-timeline__events {
  border-left-color: var(--color-gray-200, #E5E7EB);
}

/* ==========================================================================
   45. Elementor About Page — 커스텀 CSS
   ========================================================================== */

/* 팀 카드 그리드 */
.el-team-grid { display: grid; gap: 20px; margin-top: 24px; }
.el-grid-2 { grid-template-columns: repeat(2, 1fr); }
.el-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .el-grid-2, .el-grid-3 { grid-template-columns: 1fr; }
}

/* 팀 카드 */
.el-team-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #E5E7EB;
  overflow: hidden;
  text-align: center;
}
.el-card-bar { height: 4px; }
.el-card-body { padding: 24px 20px; }
.el-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px; font-weight: 800; color: #fff;
}
.el-name { font-size: 15px; font-weight: 700; color: #0A1628; display: block; margin-bottom: 4px; }
.el-role { font-size: 13px; color: #1A65F0; font-weight: 600; margin-bottom: 10px; }
.el-bio { font-size: 13px; color: #6B7280; line-height: 1.6; margin: 0; }

/* 타임라인 */
.el-timeline { max-width: 720px; margin-top: 24px; }
.el-tl-item { display: flex; gap: 24px; margin-bottom: 28px; }
.el-tl-year { font-size: 20px; font-weight: 800; color: #1A65F0; min-width: 56px; padding-top: 2px; flex-shrink: 0; }
.el-tl-desc { font-size: 15px; color: #374151; line-height: 1.7; padding-left: 24px; border-left: 2px solid #E5E7EB; margin: 0; }

/* Pillar 카드 */
.el-pillars { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.el-pillar { background: #f8fafc; border-radius: 16px; border: 1.5px solid #E5E7EB; padding: 24px; }
.el-pillar-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.el-pillar h3 { font-size: 16px; font-weight: 700; color: #0A1628; margin-bottom: 8px; }
.el-pillar p { font-size: 14px; color: #6B7280; margin: 0; }

/* Elementor 섹션 안의 텍스트 */
.elementor-widget-text-editor p { color: #374151; }
.elementor-section[style*="#060d1f"] .elementor-widget-text-editor p,
.elementor-section[style*="060d1f"] .elementor-widget-text-editor p { color: rgba(255,255,255,0.65) !important; }
.elementor-section[style*="#060d1f"] .elementor-widget-text-editor a,
.elementor-section[style*="060d1f"] .elementor-widget-text-editor a { color: #60A5FA; }

/* ==========================================================================
   46. Elementor About Page — 원래 PHP 디자인 복원
   ========================================================================== */

/* ── 섹션 배경색 ──────────────────────────────────────────────── */
.elementor-element-s1.elementor-section {
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 60%, #0d1e38 100%) !important;
  position: relative;
  overflow: hidden;
}
.elementor-element-s1.elementor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.elementor-element-s2.elementor-section { background: #ffffff !important; }
.elementor-element-s3.elementor-section { background: #f8fafc !important; }
.elementor-element-s4.elementor-section { background: #ffffff !important; }
.elementor-element-s5.elementor-section { background: #f8fafc !important; }
.elementor-element-s6.elementor-section {
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 100%) !important;
}

/* ── Hero 섹션 패딩 + 텍스트 ────────────────────────────────── */
.elementor-element-s1 {
  padding-top: 120px !important;
  padding-bottom: 80px !important;
}
.elementor-element-s1 .elementor-heading-title {
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
}
/* Hero H6 (About Arontier 서브타이틀) */
.elementor-element-w1a .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(48,162,220,0.3);
  background: rgba(48,162,220,0.1);
  padding: 5px 14px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: #7DD3FC !important;
}
/* Hero H1 */
.elementor-element-w1b .elementor-heading-title {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  color: #fff !important;
}
/* Hero 설명 텍스트 */
.elementor-element-w1c .elementor-widget-container p {
  font-size: 18px !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.75 !important;
  max-width: 600px;
}

/* ── Mission 섹션 ────────────────────────────────────────────── */
.elementor-element-s2 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.elementor-element-w2a .elementor-heading-title {
  color: #0A1628 !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 800 !important;
  margin-bottom: 1rem;
}
.elementor-element-w2b .elementor-widget-container p {
  font-size: 18px !important;
  color: #374151 !important;
  line-height: 1.8 !important;
}

/* ── Leadership / R&D ───────────────────────────────────────── */
.elementor-element-s3,
.elementor-element-s4 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.elementor-element-w3a .elementor-heading-title,
.elementor-element-w4a .elementor-heading-title {
  color: #0A1628 !important;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem) !important;
  font-weight: 800 !important;
  margin-bottom: 0;
}

/* ── Our Journey ────────────────────────────────────────────── */
.elementor-element-s5 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.elementor-element-w5a .elementor-heading-title {
  color: #0A1628 !important;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem) !important;
  font-weight: 800 !important;
}

/* ── CTA 섹션 ───────────────────────────────────────────────── */
.elementor-element-s6 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  text-align: center;
}
.elementor-element-w6a .elementor-heading-title {
  color: #fff !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
}
.elementor-element-w6b .elementor-widget-container p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 17px !important;
  max-width: 540px;
  margin: 0 auto 32px !important;
  line-height: 1.75 !important;
}
.elementor-element-w6b .elementor-widget-container a {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin: 4px;
}
.elementor-element-w6b .elementor-widget-container a:first-of-type {
  background: #1A65F0;
  color: #fff;
}
.elementor-element-w6b .elementor-widget-container a:last-of-type {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
}

/* ── 팀 카드 강화 ───────────────────────────────────────────── */
.el-team-card {
  background: #fff !important;
  border-radius: 16px !important;
  border: 1.5px solid #E5E7EB !important;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.el-team-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
  transform: translateY(-3px);
}
.el-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.el-grid-2 .el-avatar { width: 80px; height: 80px; font-size: 26px; }
.el-name { font-size: 15px !important; font-weight: 700 !important; color: #0A1628 !important; margin: 0 0 4px !important; }
.el-role { font-size: 13px !important; color: #1A65F0 !important; font-weight: 600 !important; margin: 0 0 10px !important; }
.el-bio { font-size: 13px !important; color: #6B7280 !important; line-height: 1.6 !important; margin: 0 !important; }

/* ── Pillar 카드 강화 ────────────────────────────────────────── */
.el-pillar {
  background: #f8fafc !important;
  border-radius: 16px !important;
  border: 1.5px solid #E5E7EB !important;
  padding: 28px !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.el-pillar:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.el-pillar-icon { font-size: 32px; display: block; margin-bottom: 14px; }
.el-pillar h3 { font-size: 16px !important; font-weight: 700 !important; color: #0A1628 !important; margin: 0 0 8px !important; }
.el-pillar p { font-size: 14px !important; color: #6B7280 !important; margin: 0 !important; line-height: 1.65; }

/* ── 타임라인 강화 ──────────────────────────────────────────── */
.el-tl-item { display: flex; gap: 24px; margin-bottom: 28px; align-items: flex-start; }
.el-tl-year {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1A65F0 !important;
  min-width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}
.el-tl-desc {
  font-size: 15px !important;
  color: #374151 !important;
  line-height: 1.7 !important;
  padding-left: 24px;
  border-left: 2px solid #E5E7EB;
  margin: 0 !important;
  flex: 1;
}

/* ── 전체 섹션 패딩 ─────────────────────────────────────────── */
.elementor-element-s1 .elementor-column-wrap,
.elementor-element-s2 .elementor-column-wrap,
.elementor-element-s3 .elementor-column-wrap,
.elementor-element-s4 .elementor-column-wrap,
.elementor-element-s5 .elementor-column-wrap,
.elementor-element-s6 .elementor-column-wrap {
  padding: 0 20px;
}

/* ── Elementor 기본 spacing 재정의 ──────────────────────────── */
.elementor-element-s1 .elementor-widget + .elementor-widget,
.elementor-element-s2 .elementor-widget + .elementor-widget { margin-top: 20px; }

/* ==========================================================================
   47. About Page — 이니셜 가시성 + 타이틀/숫자 그라데이션 (최종)
   ========================================================================== */

/* ── 팀 카드 이니셜 — 흰색 강제 (배경에 묻힘 해결) ────────────── */
.ar-team-card__initials,
.ar-team-card__initial,
.ar-team-card__avatar span,
.ar-team-card__avatar .ar-team-card__initials {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  opacity: 1 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* 아바타 배경 — 그라데이션으로 깊이감 */
.ar-team-card__avatar {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.1) 100%);
  background-blend-mode: overlay;
  box-shadow: 0 4px 16px rgba(26,101,240,0.25), inset 0 1px 2px rgba(255,255,255,0.3);
}

/* ── 섹션 타이틀 그라데이션 ──────────────────────────────────── */
.ar-section-title {
  background: linear-gradient(120deg, #0A1628 0%, #1A65F0 60%, #30A2DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
/* 다크 섹션에서는 밝은 그라데이션 */
.section-dark .ar-section-title {
  background: linear-gradient(120deg, #ffffff 0%, #60C8F0 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── About Hero 통계 숫자 그라데이션 ────────────────────────── */
.ar-hero .ar-stat__value,
.ar-stats-row .ar-stat__value {
  background: linear-gradient(120deg, #60C8F0 0%, #3B82F6 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ==========================================================================
   48. Footer 로고 박스 버그 수정 + 미션 슬로건
   ========================================================================== */

/* lazy 이미지 placeholder 배경이 로고에 적용되는 문제 해결 */
img[loading="lazy"] { background: transparent !important; }
.ar-footer__wordmark,
.ar-footer__logomark,
.ar-navbar__logo,
img[class*="logo"],
img[alt="Arontier"] {
  background: transparent !important;
  background-color: transparent !important;
}

/* 푸터 로고 크기 정상화 */
.ar-footer__logo-link { display: inline-flex; align-items: center; }
.ar-footer__wordmark { height: 32px !important; width: auto !important; }

/* ── 미션 슬로건 (큰 강조 문구) ──────────────────────────────── */
.ar-mission__slogan {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0.5rem 0 1.5rem;
  background: linear-gradient(120deg, #1A65F0 0%, #30A2DC 60%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 720px;
}
.section-dark .ar-mission__slogan {
  background: linear-gradient(120deg, #60C8F0 0%, #93C5FD 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   49. News 페이지 디자인 강화
   ========================================================================== */

/* 뉴스 히어로 — 다크 그라데이션 + 그리드 */
.ar-hero.section-dark {
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 60%, #0d1e38 100%) !important;
  position: relative;
  overflow: hidden;
}

/* 뉴스 그리드 카드 — 입체감 + hover */
.ar-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .ar-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ar-news-grid { grid-template-columns: 1fr; } }

.ar-news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1.5px solid var(--color-gray-200, #E5E7EB);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s, border-color 0.25s;
}
.ar-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,101,240,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(26,101,240,0.3);
}

/* 썸네일 */
.ar-news-card__thumb-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.ar-news-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ar-news-card:hover .ar-news-card__thumb { transform: scale(1.06); }

/* 썸네일 없을 때 placeholder (로고 마크) */
.ar-news-card__thumb-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a1628, #112240);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ar-news-card__thumb-placeholder::after {
  content: 'ARONTIER';
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(96,165,250,0.4);
}

/* 카드 본문 */
.ar-news-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ar-news-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.875rem; }
.ar-news-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-navy-900);
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-news-card__title-link { color: inherit; text-decoration: none; transition: color 0.2s; }
.ar-news-card:hover .ar-news-card__title-link { color: var(--color-brand-500); }
.ar-news-card__meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.ar-news-card__date { font-size: 0.75rem; color: var(--color-gray-400); font-weight: 500; }
.ar-news-card__source { font-size: 0.75rem; color: var(--color-brand-500); font-weight: 600; }
.ar-news-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-news-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand-500);
  text-decoration: none;
  margin-top: auto;
}
.ar-news-card__read-more svg { transition: transform 0.2s; }
.ar-news-card:hover .ar-news-card__read-more svg { transform: translateX(4px); }

/* 태그 pill 색상 */
.ar-tag--pill {
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(26,101,240,0.08);
  color: var(--color-brand-500);
}

/* 필터 바 — 스티키 */
.ar-news-filter-section {
  background: #fff;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-bar .ar-news-filter-section { top: 32px; }
.ar-news-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ar-tag-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ar-tag-btn {
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid var(--color-gray-200);
  background: #fff;
  color: var(--color-gray-500);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.ar-tag-btn:hover, .ar-tag-btn.active {
  background: var(--color-brand-500);
  color: #fff;
  border-color: var(--color-brand-500);
}

/* ── 공통 그라데이션 텍스트 유틸 (히어로 타이틀 강조) ───────────── */
.ar-gradient-text {
  background: linear-gradient(135deg, #38BDF8 0%, #6366F1 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* 일부 브라우저 렌더 안정화 */
  display: inline;
}

/* ── About — Our Mission 섹션 (고도화) ──────────────────────────── */
.ar-mish-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #1A65F0;
  background: rgba(26,101,240,0.08); border: 1px solid rgba(26,101,240,0.18);
  padding: 0.4rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem;
}
.ar-mish-slogan {
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
  color: #0A1628; margin: 0 0 2.5rem;
}
.ar-mish-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 56rem; margin: 0 auto; text-align: left;
}
.ar-mish-body p {
  font-size: 1rem; line-height: 1.85; color: #475569; margin: 0;
  position: relative; padding-left: 1.25rem;
}
.ar-mish-body p::before {
  content: ""; position: absolute; left: 0; top: 0.4em; bottom: 0.4em;
  width: 3px; border-radius: 2px;
  background: linear-gradient(#38BDF8, #7C3AED);
}
@media (max-width: 768px) {
  .ar-mish-body { grid-template-columns: 1fr; gap: 1.5rem; }
}
.ar-mish-body--stacked {
  grid-template-columns: 1fr;
  max-width: 42rem;
  gap: 1.5rem;
}
.ar-mish-body--single {
  display: block;
  max-width: none;
  margin: 0;
  text-align: left;
}
.ar-mish-body--single p {
  font-size: 1rem;
  line-height: 1.45;
  color: #334155;
  letter-spacing: -0.005em;
  padding-left: 0;
}
.ar-mish-body--single p::before {
  content: none;
}

/* ── Home 히어로 프로틴 — 확대 + 부유 + 펄스 글로우 (감각적 모션) ───── */
.ar-hero-img-wrap { width: 640px; right: -40px; }
.ar-hero-img-wrap img {
  animation: ar-hero-float 7s ease-in-out infinite;
  will-change: transform;
}
.ar-hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(48,162,220,0.30) 0%, rgba(13,78,216,0.14) 45%, transparent 70%);
  filter: blur(24px);
  animation: ar-hero-glow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ar-hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}
@keyframes ar-hero-glow {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
@media (max-width: 1280px) {
  .ar-hero-img-wrap { width: 520px; right: -20px; }
}
@media (max-width: 1024px) {
  .ar-hero-img-wrap { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ar-hero-img-wrap img, .ar-hero-img-wrap::before { animation: none; }
}

/* ── Home 히어로 프로틴 — 추가 강화 (확대 + 상향 + 강한 글로우 + 3D 틸트 perspective) ── */
.ar-hero-img-wrap { width: 720px; right: -56px; top: 42%; transform-style: preserve-3d; }
.ar-hero-img-wrap::before {
  inset: -14%;
  background: radial-gradient(circle at 50% 45%, rgba(48,162,220,0.48) 0%, rgba(13,78,216,0.24) 42%, transparent 72%);
  filter: blur(46px);
}
@keyframes ar-hero-glow {
  0%, 100% { opacity: 0.7;  transform: scale(0.94); }
  50%      { opacity: 1;    transform: scale(1.12); }
}
@media (max-width: 1280px) {
  .ar-hero-img-wrap { width: 560px; right: -24px; top: 44%; }
}
@media (max-width: 1024px) {
  .ar-hero-img-wrap { display: none; }
}

/* ── Home 히어로 프로틴 — 미세조정 (조금 더 크게 + 살짝 아래로) ── */
.ar-hero-img-wrap { width: 760px; top: 46%; right: -64px; }
@media (max-width: 1280px) { .ar-hero-img-wrap { width: 580px; top: 47%; } }

/* ── Home 히어로 배경 영상 (de novo 항체 생성) — Chai Discovery 스타일 참고.
   Chai도 원본 영상 자체는 원색(주황/청록)이고 CSS filter로 모노톤 블루를
   입힌 것이라, 우리도 같은 방식: 원본은 그대로 두고 filter로만 단색화. ── */
.ar-hero-video-wrap {
  position: absolute;
  inset: 0;
  right: auto;
  top: auto;
  width: 100%;
  height: 100%;
  transform: none;
  animation: none;
  z-index: 0;
}
.ar-hero-video-wrap::before { display: none; }
.ar-hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6,13,31,0.92) 0%, rgba(6,13,31,0.55) 38%, rgba(6,13,31,0.25) 62%, rgba(6,13,31,0.55) 100%),
    linear-gradient(0deg, rgba(6,13,31,0.7) 0%, transparent 30%);
  pointer-events: none;
}
.ar-hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 78% 45%;
  border-radius: 0;
  background-color: transparent;
  opacity: 0.85;
  /* colourise the (still orange/cyan) source footage down to one blue hue:
     grayscale strips colour, sepia gives hue-rotate something warm to turn,
     hue-rotate spins that to blue, saturate brings the tint back up. */
  filter: grayscale(1) sepia(0.6) hue-rotate(185deg) saturate(3.2) brightness(1.05);
}
@media (max-width: 1024px) {
  .ar-hero-video-wrap { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ar-hero-video { display: none; }
}

/* ── WP 관리자 바(admin-bar) 로그인 시 고정 네비바 겹침 방지 ── */
.admin-bar .ar-navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .ar-navbar { top: 46px; }
}

/* ── 변환 페이지(body.ar-converted-page) 풀블리드 ── */
.ar-converted-page #ar-main { padding: 0 !important; max-width: none !important; }
.ar-converted-page .elementor-section > .elementor-container { max-width: 100% !important; }
.ar-converted-page .elementor-column,
.ar-converted-page .elementor-widget-wrap,
.ar-converted-page .elementor-element-populated,
.ar-converted-page .elementor-widget-html,
.ar-converted-page .elementor-widget-html > .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

/* ── 뉴스 제목 전용 카드 (저작권: 원문 본문/사진 미표시, 제목+외부링크) ── */
.ar-news-card--title { background:#fff; border:1px solid #E9EEF5; border-radius:1rem; overflow:hidden; transition:border-color .2s, box-shadow .2s, transform .2s; }
.ar-news-card--title:hover { border-color:#C7D2E0; box-shadow:0 8px 24px rgba(15,23,42,.07); transform:translateY(-2px); }
.ar-news-card__title-card { display:flex; flex-direction:column; gap:.5rem; padding:1.5rem; text-decoration:none; color:inherit; height:100%; }
.ar-news-card--title .ar-news-card__title { font-size:1.0625rem; font-weight:700; color:#0A1628; line-height:1.45; margin:0; display:flex; align-items:flex-start; gap:.4rem; }
.ar-news-card--title:hover .ar-news-card__title { color:#1A65F0; }
.ar-news-card--title .ar-news-card__external-icon { color:#94A3B8; flex-shrink:0; margin-top:.25rem; }
.ar-news-card--title .ar-news-card__meta { display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; font-size:.8rem; color:#64748B; margin-top:auto; }
.ar-news-card--title .ar-news-card__read { color:#1A65F0; font-weight:600; margin-left:auto; }
.ar-news-card--title .ar-news-card__tags { display:flex; flex-wrap:wrap; gap:.35rem; }

/* ===== Contact 폼 알림 배너 ===== */
.ar-form-notice {
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
}
.ar-form-notice--ok {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #047857;
}
.ar-form-notice--err {
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #b91c1c;
}

/* ===== Allomorphic.AI 브랜드 표기 ===== */
.ar-allomorphic { font-weight: 800; letter-spacing: -0.01em; white-space: nowrap; text-transform: none; }
.ar-allomorphic__mod {
  font-size: 0.62em;
  font-weight: 700;
  margin-left: 0.06em;
  top: -0.55em;
  background: linear-gradient(135deg,#38BDF8,#6366F1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ar-allomorphic__ai {
  background: linear-gradient(135deg,#38BDF8,#6366F1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===== 히트율 바 차트 (Biologics) ===== */
.ar-hitchart { margin-top: var(--space-12); }
.ar-hitchart__head { text-align:center; margin-bottom: var(--space-8); }
.ar-hitchart__avg {
  display:inline-flex; align-items:baseline; gap:0.4rem;
  background:#fff; border:1px solid #E2E8F0; border-radius:9999px;
  padding:0.4rem 1.1rem; font-size:0.85rem; color:#475569; font-weight:600;
  box-shadow:0 2px 10px rgba(15,23,42,0.05);
}
.ar-hitchart__avg strong { font-size:1.15rem; font-weight:800; color:#2563EB; }
.ar-hitchart__groups { display:flex; gap:2.5rem; flex-wrap:wrap; justify-content:center; align-items:flex-start; }
.ar-hitgroup { flex:1 1 280px; min-width:250px; max-width:520px; }
.ar-hitgroup__title { text-align:center; font-weight:700; font-size:0.95rem; color:#0A1628; margin-bottom:0.1rem; }
.ar-hitgroup__sub { text-align:center; font-size:0.75rem; color:#64748B; margin-bottom:1.1rem; }
.ar-hitgroup__plot {
  display:flex; align-items:flex-end; justify-content:space-around; gap:0.6rem;
  height:210px; border-bottom:2px solid #E2E8F0; padding:0 0.4rem;
}
.ar-hitgroup__labels { display:flex; justify-content:space-around; gap:0.6rem; padding:0.55rem 0.4rem 0; }
.ar-hitcol { flex:1 1 0; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; max-width:5rem; }
.ar-hitlabel { flex:1 1 0; max-width:5rem; text-align:center; font-size:0.72rem; color:#475569; font-weight:600; line-height:1.25; }
.ar-hitbar__val { font-weight:800; font-size:0.9rem; color:#0A1628; margin-bottom:0.35rem; white-space:nowrap; }
.ar-hitbar__fill { width:100%; border-radius:7px 7px 0 0; min-height:3px; }
.ar-hitbar__fill--light { background:linear-gradient(180deg,#8FB3E6,#6E93D6); }
.ar-hitbar__fill--dark  { background:linear-gradient(180deg,#274B8E,#14264D); }
.ar-hitlabel__n { display:block; font-size:0.65rem; color:#94A3B8; font-weight:500; margin-top:0.1rem; }
@media (max-width:640px){
  .ar-hitgroup__plot { height:170px; gap:0.35rem; }
  .ar-hitbar__val { font-size:0.78rem; }
  .ar-hitlabel { font-size:0.65rem; }
}

/* 히트차트 바 색상 모디파이어 (비교 차트용) */
.ar-hitbar__fill--muted { background:linear-gradient(180deg,#CBD5E1,#94A3B8); }
.ar-hitbar__fill--brand { background:linear-gradient(180deg,#38BDF8,#2563EB); box-shadow:0 6px 18px rgba(37,99,235,0.28); }
.ar-hitchart__note { text-align:center; margin-top:var(--space-5); font-size:0.85rem; color:#64748B; max-width:44rem; margin-left:auto; margin-right:auto; line-height:1.6; }

/* 설계 모드 카드 (수치 없이 정성적으로만 — Reference-Guided/De Novo, Antagonists/Agonists) */
.ar-modecards { display:flex; gap:2.25rem; flex-wrap:wrap; margin-top:var(--space-6); margin-bottom:var(--space-8); }
.ar-modecard { flex:1 1 220px; max-width:340px; text-align:left; padding-left:1rem; border-left:3px solid rgba(37,99,235,0.35); }
/* 첫 카드를 단독 행으로 — 나머지 카드가 다음 행에 나란히 배치됨 (예: Target Assessment 다음에 De Novo/Reference-Guided) */
.ar-modecards--featured-first .ar-modecard:first-child { flex-basis:100%; max-width:none; }
/* 좁은 컬럼 안에 들어간 동급 카드들을 세로로 쌓음 — 2+1처럼 어중간하게 줄바꿈되는 것 방지 (예: Protein 섹션) */
.ar-modecards--stacked { flex-direction:column; gap:1.25rem; }
.ar-modecards--stacked .ar-modecard { flex:0 0 auto; max-width:none; }
.ar-modecard__title { font-weight:700; font-size:0.95rem; color:#0A1628; margin-bottom:0.3rem; }
.ar-modecard__sub { font-size:0.83rem; color:#64748B; line-height:1.45; }

/* ===== 프로세스 스텝 (나노입자 워크플로우) ===== */
.ar-steps { display:flex; gap:1rem; flex-wrap:wrap; margin-top:var(--space-12); }
.ar-step {
  flex:1 1 210px; background:#fff; border:1px solid rgba(0,0,0,0.07);
  border-radius:14px; padding:1.35rem 1.25rem; box-shadow:0 2px 12px rgba(15,23,42,0.04);
}
.ar-step__num {
  width:2rem; height:2rem; border-radius:9999px; color:#fff; font-weight:800; font-size:0.9rem;
  display:flex; align-items:center; justify-content:center; margin-bottom:0.85rem;
  background:linear-gradient(135deg,#38BDF8,#6366F1);
}
.ar-step__title { font-weight:700; font-size:0.95rem; color:#0A1628; margin-bottom:0.35rem; }
.ar-step__desc { font-size:0.8rem; color:#64748B; line-height:1.5; }

/* ===== Small Molecule (신규) 페이지 전용 ===== */
/* REMEDY 다이어그램 (v2) — 좌 인풋 → 허브 → 우 아웃풋 + 상/하 피더 */
.ar-remedy2 { margin-top:var(--space-8); display:flex; flex-direction:column; align-items:center; gap:0.85rem; background:radial-gradient(circle at 1px 1px, rgba(37,99,235,0.10) 1px, transparent 0) 0 0 / 24px 24px, linear-gradient(135deg, #e5edfb 0%, #d2e2f8 52%, #dfe9fc 100%); border:1px solid #bcd0ee; border-radius:22px; padding:2.5rem 2rem; box-shadow:0 22px 55px rgba(30,64,150,0.14), inset 0 1px 0 rgba(255,255,255,0.65); }
.ar-remedy2__ico { flex-shrink:0; width:46px; height:46px; border-radius:13px; background-color:#e6efff; background-repeat:no-repeat; background-position:center center; background-size:28px 28px; }
.ar-remedy2__ico--out { width:42px; height:42px; border-radius:12px; background-size:26px 26px; }
.ar-remedy2__feed { display:flex; flex-direction:column; align-items:center; gap:0.4rem; }
.ar-remedy2__feedrow { display:flex; align-items:center; gap:0.7rem; flex-wrap:wrap; justify-content:center; }
/* 피더(상·하): 살짝 틴트된 카드 + 흰색 타일로 "투입 데이터" 구분 */
.ar-remedy2__feedcard { display:inline-flex; align-items:center; gap:0.8rem; background:linear-gradient(180deg,#e9f1ff,#f4f8ff); border:1px solid #b9cdec; border-radius:14px; padding:0.7rem 1.15rem; box-shadow:0 3px 14px rgba(15,23,42,0.07); }
.ar-remedy2__feedcard .ar-remedy2__ico { background-color:#fff; box-shadow:0 1px 4px rgba(15,23,42,0.08); }
.ar-remedy2__feedcard b { font-size:0.9rem; font-weight:700; color:#0A1628; display:block; }
.ar-remedy2__feedcard span { display:block; font-size:0.73rem; color:#2563EB; font-weight:600; margin-top:0.12rem; }
.ar-remedy2__mini { color:#64748B; font-size:1.3rem; font-weight:700; }
.ar-remedy2__flow { color:#2563EB; font-size:1.5rem; line-height:1; }
.ar-remedy2__mid { display:grid; grid-template-columns:minmax(0,1fr) auto auto auto minmax(0,1.05fr); align-items:center; gap:1.1rem; width:100%; }
.ar-remedy2__inputs, .ar-remedy2__outputs { display:flex; flex-direction:column; gap:0.8rem; min-width:0; }
.ar-remedy2__in { display:flex; align-items:center; gap:0.8rem; background:#fff; border:1px solid #c8d5e8; border-radius:12px; padding:0.75rem 1rem; box-shadow:0 3px 14px rgba(15,23,42,0.07); }
.ar-remedy2__in b { font-size:0.9rem; font-weight:700; color:#0A1628; display:block; }
.ar-remedy2__in span { font-size:0.73rem; color:#64748B; display:block; margin-top:0.12rem; }
.ar-remedy2__arrow { color:#2563EB; font-size:1.6rem; font-weight:700; line-height:1; }
.ar-remedy2__hub { width:152px; height:152px; border-radius:50%; background:radial-gradient(circle at 50% 38%, #3b93f0, #1e5fd0); display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; box-shadow:0 16px 44px rgba(30,95,208,0.45); flex-shrink:0; text-align:center; }
.ar-remedy2__hub b { font-size:2rem; font-weight:800; line-height:1; }
.ar-remedy2__hubsub { font-size:0.72rem; opacity:0.85; margin-top:0.32rem; letter-spacing:0.02em; }
.ar-remedy2__hubname { font-size:1rem; font-weight:800; letter-spacing:0.04em; margin-top:0.05rem; }
.ar-remedy2__out { display:flex; align-items:center; gap:0.8rem; background:#fff; border:1px solid #c8d5e8; border-left:4px solid #2563EB; border-radius:12px; padding:0.75rem 1rem; box-shadow:0 3px 14px rgba(15,23,42,0.07); }
.ar-remedy2__outnum { font-weight:800; color:#2563EB; font-size:0.95rem; flex-shrink:0; }
.ar-remedy2__outtxt { font-size:0.88rem; font-weight:600; color:#0A1628; line-height:1.35; }
@media (max-width:900px){
  .ar-remedy2 { padding:1.5rem 1.1rem; }
  .ar-remedy2__mid { grid-template-columns:1fr; justify-items:stretch; }
  .ar-remedy2__arrow { transform:rotate(90deg); justify-self:center; }
  .ar-remedy2__hub { margin:0.25rem auto; }
}

/* ===== REMEDY Flow (Claude 디자인 네이티브 포팅) ===== */
.ar-remflow { --rf-brand:#1a5fd8; --rf-line:#c9d6ea; --rf-ph:#94a3b8; margin-top:var(--space-8); display:grid; grid-template-columns:minmax(0,1.08fr) auto minmax(210px,270px) auto minmax(0,0.9fr); align-items:center; gap:0.6rem; }
.ar-remflow * { box-sizing:border-box; }
/* 공통 이미지 슬롯 */
.ar-rf-img { display:block; width:100%; height:100%; background-size:cover; background-position:center; border-radius:8px; }
.ar-rf-ph { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.3rem; width:100%; height:100%; min-height:58px; border:1.5px dashed var(--rf-line); border-radius:8px; background:#f3f6fb; color:var(--rf-ph); text-align:center; padding:0.4rem; }
.ar-rf-ph em { font-style:normal; font-size:0.68rem; line-height:1.25; font-weight:600; }
/* 좌측 인풋 퍼널 */
.ar-rf-inputs { display:flex; flex-direction:column; gap:0.35rem; }
.ar-rf-row { display:grid; grid-template-columns:minmax(120px,0.9fr) 1.6fr; gap:0.7rem; align-items:stretch; }
.ar-rf-stage { display:flex; align-items:center; background:#fff; border:1px solid #d3ddec; border-radius:14px; padding:0.9rem 1rem; font-weight:800; color:var(--color-navy-900,#0a1628); font-size:0.98rem; line-height:1.2; box-shadow:0 6px 20px rgba(15,23,42,0.08); }
.ar-rf-slots { display:grid; grid-template-columns:1fr; gap:0.55rem; background:#eef2f8; border:1px solid #dbe3ef; border-radius:12px; padding:0.55rem; }
.ar-rf-slots--3 { grid-template-columns:repeat(3,1fr); }
.ar-rf-slots .ar-rf-img, .ar-rf-slots .ar-rf-ph { height:96px; min-height:0; }
.ar-rf-chev-down { text-align:center; color:#6f9adb; font-size:1.7rem; line-height:0.5; margin-left:36%; }
/* 커넥터(오른쪽 화살표) */
.ar-rf-conn { display:flex; align-items:center; justify-content:center; color:#93b4ec; font-size:1.3rem; letter-spacing:-2px; font-weight:700; }
/* 중앙 */
.ar-rf-center { display:flex; flex-direction:column; align-items:center; gap:0.15rem; }
.ar-rf-panel { width:100%; background:#fff; border:1px solid #eef1f6; border-radius:16px; padding:0.9rem; box-shadow:0 8px 26px rgba(15,23,42,0.08); }
.ar-rf-feedpair { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:0.4rem; }
.ar-rf-feeditem { display:flex; flex-direction:column; align-items:center; gap:0.4rem; }
.ar-rf-feeditem > .ar-rf-img, .ar-rf-feeditem > .ar-rf-ph { height:92px; min-height:0; }
.ar-rf-feeditem b { font-size:0.76rem; font-weight:700; color:var(--color-navy-900,#0a1628); text-align:center; line-height:1.2; min-height:2em; display:flex; align-items:flex-start; justify-content:center; }
.ar-rf-gt { color:var(--rf-ph); font-weight:700; }
.ar-rf-tri { width:0; height:0; border-left:11px solid transparent; border-right:11px solid transparent; }
.ar-rf-tri--down { border-top:12px solid var(--rf-brand); }
.ar-rf-tri--up { border-bottom:12px solid var(--rf-brand); }
.ar-rf-ai { width:172px; height:172px; border-radius:50%; background:radial-gradient(circle at 50% 38%, #3f8bf5, #1a5fd8 72%); box-shadow:0 0 0 10px rgba(37,99,235,0.12), 0 18px 50px rgba(26,95,216,0.45); display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; text-align:center; margin:0.15rem 0; flex-shrink:0; }
.ar-rf-ai b { font-size:3rem; font-weight:800; line-height:0.9; }
.ar-rf-ai__sub { font-size:0.9rem; opacity:0.92; margin-top:0.15rem; }
.ar-rf-ai__name { font-size:1.15rem; font-weight:800; letter-spacing:0.02em; }
.ar-rf-db { display:flex; align-items:center; justify-content:center; gap:1.1rem; }
.ar-rf-db svg { width:66px; height:88px; }
.ar-rf-dbcol { display:flex; flex-direction:column; align-items:center; gap:0.45rem; }
.ar-rf-db__tab { background:#64748b; color:#fff; font-size:0.74rem; font-weight:700; padding:0.24rem 0.85rem; border-radius:8px; }
.ar-rf-dots { color:#94a3b8; font-weight:800; align-self:center; }
.ar-rf-dbcap { text-align:center; font-weight:800; color:var(--color-navy-900,#0a1628); font-size:0.9rem; margin-top:0.5rem; }
/* 우측 아웃풋 */
.ar-rf-outputs { display:flex; flex-direction:column; gap:0.55rem; }
.ar-rf-out { border:1px solid #e2e8f0; border-radius:12px; overflow:hidden; background:#fff; box-shadow:0 4px 16px rgba(15,23,42,0.06); }
.ar-rf-out__hd { display:flex; align-items:center; gap:0.6rem; background:var(--rf-brand); color:#fff; font-weight:700; font-size:0.9rem; padding:0.55rem 0.8rem; line-height:1.2; }
.ar-rf-out__hd span { font-weight:800; opacity:0.85; }
.ar-rf-out__body { padding:0.5rem; }
.ar-rf-out__body .ar-rf-ph, .ar-rf-out__body .ar-rf-img { min-height:0; height:92px; }
@media (max-width:1000px){
  .ar-remflow { grid-template-columns:1fr; }
  .ar-rf-conn { transform:rotate(90deg); padding:0.3rem 0; }
  .ar-rf-center { max-width:420px; margin:0 auto; }
  .ar-rf-outputs, .ar-rf-inputs { max-width:520px; margin:0 auto; width:100%; }
}
@media (max-width:520px){
  .ar-rf-row { grid-template-columns:1fr; }
  .ar-rf-chev-down { margin-left:0; }
}

/* ===== Allomorphic Pipeline (Stage 02, Claude 디자인 네이티브 포팅) ===== */
.ar-pipe-wrap { overflow:hidden; padding:0.25rem 0 0.75rem; }
.ar-pipe { --pi-brand:#1a5fd8; display:flex; align-items:center; justify-content:center; gap:0.55rem; width:1180px; margin:0 auto; transform-origin:top left; background:linear-gradient(120deg,#eef3fc 0%,#e1ebf9 55%,#eaf1fd 100%); border:1px solid #cedcf0; border-radius:24px; padding:2rem 1.6rem; }
.ar-pipe .ar-pipe-h { color:var(--pi-brand); font-weight:800; font-size:1.12rem; line-height:1.12; margin:0 0 0.7rem; text-align:center; }
.ar-pipe-arrow { color:#a9c4ec; font-size:1.25rem; letter-spacing:-3px; font-weight:800; flex:0 0 auto; }
.ar-pipe-img { display:block; background-size:cover; background-position:center; border-radius:10px; }
.ar-pipe-ph { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.2rem; text-align:center; color:#9aa8bd; background:#f4f7fc; border:1.5px dashed #cbd7e8; border-radius:10px; padding:0.3rem; box-sizing:border-box; }
.ar-pipe-ph em { font-style:normal; font-size:0.6rem; line-height:1.15; font-weight:600; }
/* Target sequence */
.ar-pipe-seq { flex:0 0 auto; width:158px; }
.ar-pipe-seq .ar-pipe-h { text-align:center; }
.ar-pipe-seq pre { font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:0.58rem; line-height:1.55; color:#334155; background:transparent; white-space:pre-wrap; word-break:break-all; margin:0; text-align:center; }
.ar-pipe-seq .hl { color:#e0483b; font-weight:700; }
/* structure prediction node */
.ar-pipe-node { flex:0 0 auto; text-align:center; }
.ar-pipe-circle { width:144px; height:144px; border-radius:50%; background:#fff; border:2px solid #dbe6f6; box-shadow:0 8px 26px rgba(15,23,42,0.08); display:flex; align-items:center; justify-content:center; margin:0 auto; }
.ar-pipe-circle .ar-pipe-img, .ar-pipe-circle .ar-pipe-ph { width:128px; height:128px; border-radius:50%; }
/* Allomorphic cycle */
.ar-pipe-cycle { position:relative; width:520px; height:450px; flex:0 0 auto; }
.ar-pipe-ring { position:absolute; left:260px; top:205px; width:290px; height:290px; transform:translate(-50%,-50%); border:2px dashed #a7c4ee; border-radius:50%; }
.ar-pipe-glow { position:absolute; left:260px; top:205px; width:256px; height:256px; transform:translate(-50%,-50%); border-radius:50%; background:radial-gradient(circle, rgba(59,130,246,0.22) 0%, rgba(147,197,253,0.10) 48%, transparent 72%); filter:blur(6px); pointer-events:none; }
.ar-pipe-center { position:absolute; left:260px; top:205px; transform:translate(-50%,-50%); text-align:center; width:150px; }
.ar-pipe-center .eyebrow { font-size:0.82rem; font-weight:800; letter-spacing:0.2em; color:#2f7ef0; margin-bottom:0.15rem; }
.ar-pipe-center .name { font-size:1.32rem; font-weight:800; line-height:1.05; margin-top:0.15rem; background:linear-gradient(135deg,#2f7ef0,#1a5fd8); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.ar-pipe-center__bar { display:block; width:42px; height:3px; border-radius:3px; margin:0.5rem auto 0; background:linear-gradient(90deg,#38bdf8,#2563eb); }
.ar-pipe-mod { position:absolute; width:128px; display:flex; flex-direction:column; align-items:center; text-align:center; }
.ar-pipe-mod__circle { width:118px; height:118px; border-radius:50%; background:#fff; border:3px solid var(--pi-brand); box-shadow:0 6px 20px rgba(26,95,216,0.22); display:flex; align-items:center; justify-content:center; }
.ar-pipe-mod__circle .ar-pipe-img, .ar-pipe-mod__circle .ar-pipe-ph { width:104px; height:104px; border-radius:50%; }
.ar-pipe-mod__name { margin-top:0.4rem; font-weight:800; color:var(--pi-brand); font-size:0.9rem; line-height:1.1; }
/* Deep MolScan 타겟 랭킹 리스트 */
.ar-rank { list-style:none; margin:0.6rem 0 0; padding:0; font-size:0.8rem; }
.ar-rank li { display:flex; align-items:baseline; gap:0.5rem; padding:0.28rem 0; border-bottom:1px solid rgba(0,0,0,0.06); color:#334155; }
.ar-rank li:last-child { border-bottom:none; }
.ar-rank .r { flex:0 0 1.5rem; font-weight:800; color:#94a3b8; font-size:0.72rem; }
.ar-rank .g { font-weight:600; }
.ar-rank em { font-style:normal; margin-left:auto; font-size:0.68rem; color:#64748b; white-space:nowrap; }
.ar-rank li.primary .g { font-weight:800; color:#1A65F0; }
.ar-rank li.primary em { color:#1A65F0; font-weight:800; }
.ar-rank li.hep { color:#c2410c; }
.ar-rank li.hep .r, .ar-rank li.hep em { color:#c2410c; }
.ar-rank li.hep .g { font-weight:800; }
.ar-rank li.dots { justify-content:center; color:#94a3b8; border-bottom:none; padding:0.15rem 0; font-size:0.72rem; }

.ar-pipe-paper { color:inherit; text-decoration:none; }
.ar-pipe-paper:hover { text-decoration:underline; }
.ar-pipe-paper span { font-size:0.82em; opacity:0.65; }

/* Docking of Millions — Input → Process → Output 한눈에 */
.ar-dom-flow { display:grid; grid-template-columns:1fr auto 1.25fr auto 1fr; gap:0.7rem; align-items:stretch; max-width:66rem; margin:0 auto var(--space-10); }
.ar-dom-step { background:#fff; border:1px solid #dbe6f6; border-radius:16px; padding:1.2rem 1.1rem; text-align:center; box-shadow:0 4px 16px rgba(15,23,42,0.05); display:flex; flex-direction:column; }
.ar-dom-step--proc { background:linear-gradient(160deg,#1f66db,#123f96); border-color:transparent; box-shadow:0 14px 34px rgba(26,95,216,0.32); }
.ar-dom-tag { font-size:0.64rem; font-weight:800; letter-spacing:0.09em; text-transform:uppercase; margin-bottom:0.55rem; }
.ar-dom-step--in  .ar-dom-tag { color:#64748b; }
.ar-dom-step--proc .ar-dom-tag { color:#bfdbfe; }
.ar-dom-step--out .ar-dom-tag { color:#059669; }
.ar-dom-step b { font-size:1.02rem; color:var(--color-navy-900,#0a1628); margin-bottom:0.4rem; }
.ar-dom-step--proc b { color:#fff; }
.ar-dom-step p { font-size:0.82rem; line-height:1.5; color:#475569; margin:0; }
.ar-dom-step--proc p { color:rgba(255,255,255,0.92); }
.ar-dom-arrow { display:flex; align-items:center; justify-content:center; color:#93b4ec; font-size:1.5rem; font-weight:800; }
@media (max-width:860px){
  .ar-dom-flow { grid-template-columns:1fr; max-width:460px; }
  .ar-dom-arrow { transform:rotate(90deg); padding:0.1rem 0; }
}
/* Docking of Millions explainer (Claude 디자인 포팅) — 애니메이션·반응형 */
@keyframes dockPulse { 0%,100% { opacity:.55; } 50% { opacity:1; } }
@keyframes dockScan { 0% { transform:translateX(-120%); } 100% { transform:translateX(320%); } }
@media (max-width:860px){
  .dock-flow { grid-template-columns:1fr !important; }
  .dock-arrow { transform:rotate(90deg); margin:-4px auto; }
  .dock-mid { transform:none !important; }
}
@media (max-width:560px){
  .dock-stats { grid-template-columns:1fr !important; }
}
.ar-pipe-mod__desc { font-size:0.66rem; color:#475569; line-height:1.2; margin-top:0.1rem; }
/* Physics-based FEP */
.ar-pipe-fep { flex:0 0 auto; width:216px; }
.ar-pipe-fep .ar-pipe-img, .ar-pipe-fep .ar-pipe-ph { width:100%; height:132px; margin-bottom:0.6rem; }

/* Pipeline — 모바일 세로 재배치 (<900px) */
.ar-pipe-m { display:none; }
.ar-pipe-m-block { background:linear-gradient(120deg,#eef3fc,#e6eff9); border:1px solid #cedcf0; border-radius:18px; padding:1.1rem 1rem; }
.ar-pipe-m-h { color:#1a5fd8; font-weight:800; font-size:1.05rem; text-align:center; margin-bottom:0.7rem; }
.ar-pipe-m-arrow { text-align:center; color:#5b9bf3; font-size:1.5rem; line-height:0.6; margin:0.5rem 0; }
.ar-pipe-m-seq { font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:0.68rem; line-height:1.55; color:#334155; white-space:pre-wrap; word-break:break-all; margin:0; text-align:center; }
.ar-pipe-m-seq .hl { color:#e0483b; font-weight:700; }
.ar-pipe-m-node { display:flex; flex-direction:column; align-items:center; gap:0.55rem; }
.ar-pipe-m-circle { width:118px; height:118px; border-radius:50%; background:#fff; border:2px solid #dbe6f6; box-shadow:0 6px 18px rgba(15,23,42,0.08); display:flex; align-items:center; justify-content:center; }
.ar-pipe-m-circle .ar-pipe-img, .ar-pipe-m-circle .ar-pipe-ph { width:102px; height:102px; border-radius:50%; }
.ar-pipe-m-node .ar-pipe-m-label { color:#1a5fd8; font-weight:800; font-size:1rem; text-align:center; }
.ar-pipe-m-allohd { text-align:center; margin-bottom:0.9rem; }
.ar-pipe-m-allohd .eyebrow { display:block; font-size:0.8rem; font-weight:800; letter-spacing:0.2em; color:#2f7ef0; margin-bottom:0.1rem; }
.ar-pipe-m-allohd .name { font-size:1.3rem; font-weight:800; color:#1a5fd8; line-height:1.1; }
.ar-pipe-m-mod { display:flex; align-items:center; gap:0.9rem; background:#fff; border:1px solid #dbe6f6; border-radius:14px; padding:0.65rem 0.75rem; margin-bottom:0.6rem; }
.ar-pipe-m-mod:last-child { margin-bottom:0; }
.ar-pipe-m-modimg { flex:0 0 auto; width:78px; height:78px; border-radius:50%; background:#fff; border:2.5px solid #1a5fd8; display:flex; align-items:center; justify-content:center; }
.ar-pipe-m-modimg .ar-pipe-img, .ar-pipe-m-modimg .ar-pipe-ph { width:68px; height:68px; border-radius:50%; }
.ar-pipe-m-modtext b { display:block; color:#1a5fd8; font-weight:800; font-size:0.95rem; line-height:1.15; }
.ar-pipe-m-modtext span { display:block; color:#475569; font-size:0.8rem; margin-top:0.15rem; line-height:1.25; }
.ar-pipe-m-fep .ar-pipe-img, .ar-pipe-m-fep .ar-pipe-ph { width:100%; height:150px; margin-bottom:0.6rem; }
.ar-pipe-m-fep :last-child { margin-bottom:0; }
@media (max-width:900px){
  .ar-pipe-wrap { display:none; }
  .ar-pipe-m { display:flex; flex-direction:column; }
}

/* 벤치마크 테이블 */
.ar-btable { width:100%; border-collapse:collapse; font-size:0.9rem; }
.ar-btable th { background:#0A1628; color:#fff; padding:0.7rem 1rem; text-align:left; font-weight:700; font-size:0.8rem; }
.ar-btable td { padding:0.65rem 1rem; border-bottom:1px solid rgba(0,0,0,0.06); color:#334155; }
.ar-btable tr:nth-child(even) td { background:rgba(15,23,42,0.02); }
.ar-btable tr.is-highlight td { background:rgba(37,99,235,0.08); font-weight:800; color:#1E40AF; }
.ar-btable__wrap { overflow-x:auto; border-radius:12px; border:1px solid rgba(0,0,0,0.08); }

/* 비교 카드 (Deep MolScan) */
.ar-compare { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:var(--space-6); }
@media (max-width:760px){ .ar-compare { grid-template-columns:1fr; } }
.ar-compare__card { border-radius:16px; padding:1.5rem; border:1px solid rgba(0,0,0,0.08); background:#fff; }
.ar-compare__card--warn { border-color:rgba(220,38,38,0.25); background:linear-gradient(180deg,rgba(254,242,242,0.6),#fff); }
.ar-compare__card--ok { border-color:rgba(16,185,129,0.3); background:linear-gradient(180deg,rgba(236,253,245,0.6),#fff); }
.ar-compare__title { font-weight:800; font-size:1.05rem; color:#0A1628; margin-bottom:0.2rem; }
.ar-compare__sub { font-size:0.8rem; color:#64748B; margin-bottom:1rem; }
.ar-tag-off { display:inline-flex; align-items:center; gap:0.35rem; background:rgba(220,38,38,0.1); color:#b91c1c; font-weight:700; font-size:0.8rem; padding:0.3rem 0.7rem; border-radius:9999px; margin:0.2rem 0.2rem 0 0; }
.ar-tag-safe { display:inline-flex; align-items:center; gap:0.4rem; background:rgba(16,185,129,0.12); color:#047857; font-weight:700; font-size:0.85rem; padding:0.4rem 0.9rem; border-radius:9999px; }

/* ===== Small Molecule 사이클 개요 로드맵 ===== */
.ar-cycle { display:flex; align-items:stretch; justify-content:center; gap:0.5rem; flex-wrap:wrap; margin-top:var(--space-8); }
.ar-cycle__stage { flex:1 1 240px; max-width:320px; background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:16px; padding:1.4rem 1.25rem; text-align:center; box-shadow:0 2px 14px rgba(15,23,42,0.05); }
.ar-cycle__num { font-size:1.9rem; font-weight:800; line-height:1; background:linear-gradient(135deg,#38BDF8,#6366F1); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.ar-cycle__label { font-weight:700; color:#0A1628; margin-top:0.5rem; font-size:0.98rem; }
.ar-cycle__sub { font-size:0.78rem; color:#64748B; margin-top:0.25rem; line-height:1.4; }
.ar-cycle__arrow { display:flex; align-items:center; color:#94A3B8; font-size:1.4rem; flex:0 0 auto; }
@media(max-width:820px){ .ar-cycle__arrow{ transform:rotate(90deg); width:100%; justify-content:center; padding:0.25rem 0; } }

/* 스테이지 헤더 (큰 번호) */
.ar-stagehdr { margin-bottom:var(--space-8); }
.ar-stagehdr__num { font-size:1.3em; font-weight:800; background:linear-gradient(135deg,#38BDF8,#6366F1); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; margin-right:0.5rem; }
.ar-stagehdr__body { flex:1; }

/* 파트너 로고 행 */
.ar-plogos { display:flex; flex-wrap:wrap; gap:2.5rem; align-items:center; justify-content:center; margin-top:var(--space-8); padding:var(--space-6) 0; border-top:1px solid rgba(0,0,0,0.08); }
.ar-plogos img { height:34px; width:auto; opacity:0.85; filter:grayscale(15%); }
.ar-plogos__text { font-weight:800; font-size:1.15rem; color:#E60012; letter-spacing:-0.02em; }

/* ===== SM: 사이클 밴드 배경 ===== */
.ar-cycle-band { background:linear-gradient(180deg,#eef4ff 0%, #f7f9fc 100%); border-top:1px solid rgba(37,99,235,0.1); border-bottom:1px solid rgba(37,99,235,0.1); }
/* figure 프레임 (분자 이미지 구분) */
.ar-figframe { border-radius:20px; padding:1.5rem; background:radial-gradient(circle at 50% 40%, #10233f 0%, #0a1628 70%); box-shadow:0 20px 50px rgba(10,22,40,0.25); position:relative; overflow:hidden; }
.ar-figframe::after { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size:32px 32px; pointer-events:none; }
.ar-figframe img { position:relative; display:block; margin:0 auto; }
.ar-figframe__cap { position:relative; text-align:center; margin-top:0.75rem; font-size:0.75rem; color:rgba(255,255,255,0.6); letter-spacing:0.03em; }
/* 엔진 컴팩트 칩 (de-emphasized) */
.ar-engchips { display:flex; flex-wrap:wrap; gap:0.5rem; justify-content:center; margin-top:var(--space-6); }
.ar-engchip { background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:9999px; padding:0.45rem 0.95rem; font-size:0.82rem; font-weight:600; color:#334155; }
.ar-engchip b { color:var(--color-brand); font-weight:800; }
/* 코어 테크 헤더 */
.ar-coretech-hdr { text-align:center; margin-bottom:var(--space-8); }
/* 강조 혜택 카드 (2개) */
.ar-benefits { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:var(--space-10); max-width:52rem; margin-left:auto; margin-right:auto; }
@media(max-width:640px){ .ar-benefits{ grid-template-columns:1fr; } }
.ar-benefit { display:flex; align-items:center; gap:1rem; background:linear-gradient(135deg, rgba(56,189,248,0.08), rgba(99,102,241,0.08)); border:1px solid rgba(37,99,235,0.18); border-radius:16px; padding:1.35rem 1.5rem; }
.ar-benefit__ico { width:2.5rem; height:2.5rem; border-radius:12px; background:linear-gradient(135deg,#38BDF8,#6366F1); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ar-benefit__txt { font-weight:700; font-size:0.98rem; color:#0A1628; line-height:1.35; }

/* ── End-to-end 파트너 휠 (Stage 03) ───────────────────────────── */
.ar-e2e { display:grid; grid-template-columns:1fr minmax(320px,440px) 1fr; grid-template-areas:"tl wheel tr" "bl wheel br"; align-items:center; gap:1.75rem 2.75rem; margin:0 0 var(--space-10); }
.ar-e2e__wheel { grid-area:wheel; position:relative; width:100%; max-width:440px; aspect-ratio:1/1; margin:0 auto; }
.ar-e2e__wheel > svg { width:100%; height:100%; display:block; }
.ar-e2e__hub { position:absolute; inset:25%; display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; }
.ar-e2e__cell { display:flex; align-items:center; justify-content:center; padding:5%; }
.ar-e2e__cell--tl { grid-column:1; grid-row:1; }
.ar-e2e__cell--tr { grid-column:2; grid-row:1; }
.ar-e2e__cell--bl { grid-column:1; grid-row:2; }
.ar-e2e__cell--br { grid-column:2; grid-row:2; }
.ar-e2e__cell img { max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.ar-e2e__blk--tl { grid-area:tl; } .ar-e2e__blk--tr { grid-area:tr; }
.ar-e2e__blk--bl { grid-area:bl; } .ar-e2e__blk--br { grid-area:br; }
.ar-e2e__blk--tl, .ar-e2e__blk--bl { text-align:right; }
.ar-e2e__blk--tr, .ar-e2e__blk--br { text-align:left; }
.ar-e2e__seg { font-size:1.55rem; font-weight:800; line-height:1.15; margin-bottom:0.5rem; }
.ar-e2e__d { font-size:0.95rem; line-height:1.6; color:#566579; margin:0; max-width:21rem; }
.ar-e2e__blk--tl .ar-e2e__d, .ar-e2e__blk--bl .ar-e2e__d { margin-left:auto; }
@media (max-width:920px) {
  .ar-e2e { grid-template-columns:1fr 1fr; grid-template-areas:"wheel wheel" "tl tr" "bl br"; gap:1.5rem 2rem; }
  .ar-e2e__wheel { max-width:360px; }
  .ar-e2e__blk { text-align:center !important; }
  .ar-e2e__d { margin-left:auto !important; margin-right:auto; }
}
@media (max-width:560px) {
  .ar-e2e { grid-template-columns:1fr; grid-template-areas:"wheel" "tl" "tr" "br" "bl"; }
  .ar-e2e__seg { font-size:1.4rem; }
}

/* ── Allomorphic Antibody — 워크플로우 파이프라인 ─────────────── */

/* 모듈 카드 (figure 포함) */
.ab-mods { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-bottom:var(--space-12); }
@media (max-width:820px){ .ab-mods { grid-template-columns:1fr; } }
.ab-mod { background:#fff; border:1px solid rgba(0,0,0,0.07); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; box-shadow:0 2px 14px rgba(15,23,42,0.05); }
/* 모든 모듈 미디어: 16:9 박스 꽉 채움 (영상·이미지 통일) */
.ab-mod__fig { aspect-ratio:16/9; padding:0; min-height:0; overflow:hidden; background:#fff; display:block; }
.ab-mod__fig img, .ab-mod__fig video, .ab-mod__video { width:100%; height:100%; object-fit:cover; display:block; border-radius:0; }
.ab-mod__body { padding:1.25rem 1.5rem 1.5rem; }
.ab-mod__name { font-weight:800; font-size:1.1rem; color:var(--color-brand); margin-bottom:0.5rem; }
.ab-mod__desc { font-size:0.9rem; line-height:1.6; color:#475569; margin:0; }
.ab-mod__citation { margin-top:0.7rem; font-size:0.72rem; font-style:italic; color:#94A3B8; }

/* Antibody 헤더 히어로 (텍스트 + de novo 구조) */
.ab-hero { display:grid; grid-template-columns:1.05fr 0.95fr; align-items:center; gap:var(--space-10); margin-bottom:var(--space-12); }
.ab-hero__fig { margin:0; display:flex; flex-direction:column; align-items:center; }
.ab-hero__fig img { max-width:360px; width:100%; height:auto; filter:drop-shadow(0 20px 60px rgba(26,101,240,0.3)) drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
@media (max-width:820px){
  .ab-hero { grid-template-columns:1fr; text-align:center; }
  .ab-hero .section-subtitle { justify-content:center; }
  .ab-hero__fig { order:-1; }
  .ab-hero__fig img { max-width:300px; }
}

/* Developability 통계 */
.ab-devhead { text-align:center; margin:var(--space-12) 0 var(--space-6); }
.ab-devhead h3 { font-size:1.15rem; color:var(--color-navy-900); margin:0 0 0.3rem; }
.ab-devhead span { font-size:0.78rem; font-weight:600; letter-spacing:0.08em; color:#94A3B8; text-transform:uppercase; }
.ab-dev { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; max-width:56rem; margin:0 auto; }
@media (max-width:640px){ .ab-dev { grid-template-columns:1fr 1fr; } }
.ab-devcard { text-align:center; padding:1.25rem 0.75rem; background:linear-gradient(180deg,rgba(37,99,235,0.055),rgba(99,102,241,0.03)); border:1px solid rgba(37,99,235,0.13); border-radius:16px; }
.ab-devcard__v { font-size:1.8rem; font-weight:800; color:var(--color-brand); line-height:1; }
.ab-devcard__l { font-size:0.78rem; color:#64748B; margin-top:0.45rem; line-height:1.35; }

/* ══════════ AD3 플랫폼 페이지 ══════════ */
/* Hero */
.ad3-hero { display:grid; grid-template-columns:1fr 1.05fr; align-items:center; gap:var(--space-10); }
.ad3-hero__shot img { width:100%; height:auto; display:block; filter:drop-shadow(0 30px 70px rgba(0,0,0,0.45)); }
.ad3-hero__brand { font-size:clamp(3.5rem,9vw,6rem); font-weight:900; line-height:0.95; letter-spacing:-0.02em; margin:0.2rem 0 0.4rem; }
.ad3-hero__tag { font-size:clamp(1.25rem,2.6vw,1.9rem); font-weight:800; color:#fff; line-height:1.2; margin:0 0 var(--space-4); }
@media (max-width:900px){ .ad3-hero { grid-template-columns:1fr; } .ad3-hero__shot { max-width:560px; margin:0 auto; } }

/* Strengths */
.ad3-strengths { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-top:var(--space-10); }
@media (max-width:900px){ .ad3-strengths { grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .ad3-strengths { grid-template-columns:1fr; } }
.ad3-strength { background:#fff; border:1px solid rgba(0,0,0,0.07); border-radius:16px; padding:1.5rem; box-shadow:0 2px 14px rgba(15,23,42,0.05); }
.ad3-strength__ic { width:2.75rem; height:2.75rem; border-radius:13px; background:linear-gradient(135deg,#38BDF8,#6366F1); display:flex; align-items:center; justify-content:center; margin-bottom:0.9rem; }
.ad3-strength__t { font-weight:800; color:var(--color-navy-900); font-size:1.02rem; margin-bottom:0.4rem; }
.ad3-strength__d { font-size:0.88rem; line-height:1.6; color:#566579; margin:0; }

/* Flagship row */
.ad3-flag { display:grid; grid-template-columns:1fr 1.15fr; align-items:center; gap:var(--space-10); margin-bottom:var(--space-12); }
.ad3-flag:last-child { margin-bottom:0; }
.ad3-flag--rev .ad3-flag__copy { order:2; }
.ad3-flag--rev .ad3-flag__media { order:1; }
.ad3-flag__tag { display:inline-block; font-size:0.8rem; font-weight:800; letter-spacing:0.02em; color:var(--color-brand); background:rgba(37,99,235,0.09); border-radius:9999px; padding:0.3rem 0.85rem; margin-bottom:0.9rem; }
.ad3-flag__title { font-size:clamp(1.35rem,2.4vw,1.85rem); font-weight:800; color:var(--color-navy-900); line-height:1.2; margin:0 0 var(--space-3); }
.ad3-flag__desc { font-size:0.98rem; line-height:1.7; color:#475569; margin:0 0 var(--space-4); }
.ad3-flag__link { display:inline-flex; align-items:center; gap:5px; font-weight:700; color:var(--color-brand); font-size:0.92rem; text-decoration:none; }
.ad3-flag__link:hover { text-decoration:underline; }
@media (max-width:900px){
  .ad3-flag { grid-template-columns:1fr; gap:var(--space-6); }
  .ad3-flag--rev .ad3-flag__copy { order:2; }
  .ad3-flag--rev .ad3-flag__media { order:1; }
}

.ad3-flag__media { display:flex; flex-direction:column; gap:1rem; }
/* Video facade (click-to-load YouTube) — clean gradient, no external thumbnail */
.ad3-video { position:relative; aspect-ratio:16/9; width:100%; border-radius:16px; overflow:hidden; cursor:pointer; background:linear-gradient(135deg,#0A1628 0%,#14264D 55%,#1E3A8A 100%); box-shadow:0 18px 50px rgba(15,23,42,0.28); }
.ad3-video::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 42%, rgba(56,189,248,0.16), transparent 60%); transition:opacity 0.2s; }
.ad3-video:hover::before { opacity:0.6; }
.ad3-video__play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:66px; height:66px; border-radius:50%; background:rgba(37,99,235,0.92); display:flex; align-items:center; justify-content:center; box-shadow:0 8px 26px rgba(37,99,235,0.5); transition:transform 0.2s, background 0.2s; z-index:1; padding-left:4px; }
.ad3-video:hover .ad3-video__play { transform:translate(-50%,-50%) scale(1.08); background:#1A65F0; }
.ad3-video__label { position:absolute; left:0; right:0; bottom:16px; text-align:center; color:#fff; font-size:0.82rem; font-weight:700; letter-spacing:0.02em; z-index:1; text-shadow:0 1px 6px rgba(0,0,0,0.5); }
.ad3-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* docs 스틸 (영상 아래 보조 이미지) */
.ad3-still { margin:0; border-radius:14px; overflow:hidden; border:1px solid rgba(0,0,0,0.08); box-shadow:0 3px 14px rgba(15,23,42,0.07); background:#fff; }
.ad3-still img { display:block; width:100%; height:auto; }
.ad3-still figcaption { font-size:0.76rem; font-weight:600; color:#64748B; padding:0.5rem 0.85rem; border-top:1px solid rgba(0,0,0,0.05); background:#F8FAFC; }

/* Suite categories */
.ad3-suite { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:var(--space-10); }
@media (max-width:900px){ .ad3-suite { grid-template-columns:1fr; max-width:34rem; margin-left:auto; margin-right:auto; } }
.ad3-cat { background:#fff; border:1px solid rgba(0,0,0,0.07); border-radius:18px; overflow:hidden; box-shadow:0 2px 14px rgba(15,23,42,0.05); display:flex; flex-direction:column; }
.ad3-cat__fig { aspect-ratio:16/10; background:linear-gradient(180deg,#EEF2F8,#E2E8F2); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ad3-cat__fig img { width:100%; height:100%; object-fit:cover; }
.ad3-cat__fig[data-empty] { min-height:120px; }
.ad3-cat__body { padding:1.35rem 1.5rem 1.5rem; }
.ad3-cat__name { font-weight:800; font-size:1.15rem; color:var(--color-navy-900); }
.ad3-cat__desc { font-size:0.88rem; line-height:1.55; color:#64748B; margin:0.3rem 0 0.9rem; }
.ad3-cat__mods { display:flex; flex-wrap:wrap; gap:0.4rem; }
.ad3-modchip { font-size:0.8rem; font-weight:600; color:#334155; background:#F1F5F9; border:1px solid #E2E8F0; border-radius:8px; padding:0.28rem 0.6rem; }

/* Workspace screenshot placeholder */
.ad3-shot { aspect-ratio:16/10; border-radius:16px; overflow:hidden; box-shadow:0 18px 50px rgba(15,23,42,0.22); background:#EEF2F8; }
.ad3-shot img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.ad3-shot[data-empty] { display:flex; align-items:center; justify-content:center; border:2px dashed #CBD5E1; box-shadow:none; }
.ad3-shot[data-empty] span { color:#94A3B8; font-size:0.85rem; font-weight:600; }
.ad3-wslist { list-style:none; padding:0; margin:var(--space-2) 0 0; display:flex; flex-direction:column; gap:0.55rem; }
.ad3-wslist li { position:relative; padding-left:1.6rem; font-size:0.9rem; color:#475569; line-height:1.5; }
.ad3-wslist li::before { content:''; position:absolute; left:0; top:0.5em; width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,#38BDF8,#6366F1); }

/* App & Database */
.ad3-appdb { display:grid; grid-template-columns:1.4fr 1fr; gap:var(--space-10); }
@media (max-width:820px){ .ad3-appdb { grid-template-columns:1fr; gap:var(--space-8); } }
.ad3-appdb__h { font-size:1.3rem; font-weight:800; color:var(--color-navy-900); margin:0 0 0.2rem; }
.ad3-appdb__sub { font-size:0.9rem; color:#64748B; margin:0 0 var(--space-4); }
.ad3-appgrp { margin-bottom:1rem; }
.ad3-appgrp__label { display:block; font-size:0.72rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:#94A3B8; margin-bottom:0.45rem; }
.ad3-chips { display:flex; flex-wrap:wrap; gap:0.4rem; }
.ad3-chip { font-size:0.8rem; font-weight:600; color:#334155; background:#fff; border:1px solid #E2E8F0; border-radius:8px; padding:0.3rem 0.65rem; }
.ad3-chip--db { background:linear-gradient(135deg,rgba(56,189,248,0.1),rgba(99,102,241,0.08)); border-color:rgba(37,99,235,0.2); color:var(--color-brand); font-weight:700; }

/* ── Discovery: service row (small molecule) ── */
.ad3-svc { display:grid; grid-template-columns:1fr 1.12fr; align-items:center; gap:var(--space-10); margin-bottom:var(--space-12); }
.ad3-svc:last-child { margin-bottom:0; }
.ad3-svc--rev .ad3-svc__copy { order:2; }
.ad3-svc--rev .ad3-svc__gallery { order:1; }
@media (max-width:900px){ .ad3-svc { grid-template-columns:1fr; gap:var(--space-6); } .ad3-svc--rev .ad3-svc__copy { order:2; } .ad3-svc--rev .ad3-svc__gallery { order:1; } }
.ad3-btns { display:flex; gap:0.7rem; flex-wrap:wrap; margin-top:var(--space-5); }
.ad3-btn-ghost { display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:0.9rem; color:var(--color-brand); background:transparent; border:1.5px solid rgba(37,99,235,0.28); border-radius:9999px; padding:0.6rem 1.15rem; text-decoration:none; transition:background 0.2s, border-color 0.2s; }
.ad3-btn-ghost:hover { background:rgba(37,99,235,0.07); border-color:var(--color-brand); }
.ad3-svc__name { font-size:clamp(1.6rem,2.8vw,2.1rem); font-weight:800; color:var(--color-navy-900); line-height:1.1; margin:0; }
.ad3-svc__sub { font-size:1.02rem; font-weight:700; color:var(--color-brand); line-height:1.4; margin:0.5rem 0 var(--space-3); }
.ad3-svc__gallery { display:flex; flex-direction:column; gap:0.8rem; }
/* Small molecule 서비스 — 카피 상단 + 이미지 3장 나열 */
.ad3-svc2 { margin-bottom:var(--space-12); }
.ad3-svc2:last-child { margin-bottom:0; }
.ad3-svc2__copy { text-align:center; max-width:60rem; margin:0 auto var(--space-6); }
.ad3-svc2__copy .ad3-svc__name { margin:0 0 0.4rem; }
.ad3-svc2__copy .ad3-btns { justify-content:center; }
.ad3-svc2__figs { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; }
@media (max-width:820px){ .ad3-svc2__figs { grid-template-columns:1fr; max-width:34rem; margin:0 auto; } }
.ad3-svc2__figs .ad3-still { display:flex; flex-direction:column; }
.ad3-svc2__figs .ad3-still img { width:100%; height:auto; display:block; }
.ad3-svc2__figs .ad3-still figcaption { margin-top:auto; }
.ad3-fig-row { display:grid; grid-template-columns:1fr 1fr; gap:0.8rem; }
.ad3-still--main img { min-height:180px; object-fit:cover; object-position:top; }

/* ── Discovery: module cards (biologics / antibody) ── */
.ad3-mods { display:grid; grid-template-columns:1fr 1fr; gap:1.75rem; margin-top:var(--space-10); }
@media (max-width:820px){ .ad3-mods { grid-template-columns:1fr; max-width:36rem; margin-left:auto; margin-right:auto; } }
/* 단일 카드(De Novo) — 중앙 정렬, 과도하게 넓지 않게 */
.ad3-mods--single { grid-template-columns:minmax(0,660px); justify-content:center; margin-bottom:1.75rem; }

/* My Workspace — 헤더 + 풀폭 스크린샷 */
.ad3-ws__head { max-width:52rem; margin:0 auto var(--space-8); text-align:center; }
.ad3-ws__head .ad3-modcard__name { display:inline-flex; }
.ad3-ws__chips { display:flex; flex-wrap:wrap; gap:0.5rem; justify-content:center; margin-top:var(--space-4); }
.ad3-ws__shot { margin:0; border-radius:18px; overflow:hidden; border:1px solid rgba(0,0,0,0.08); box-shadow:0 20px 55px rgba(15,23,42,0.16); }
.ad3-ws__shot img { display:block; width:100%; height:auto; }
.ad3-ws__shot[data-empty] { aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; border:2px dashed #CBD5E1; box-shadow:none; }
.ad3-ws__shot[data-empty] span { color:#94A3B8; font-weight:600; }
.ad3-modcard { background:#fff; border:1px solid rgba(0,0,0,0.07); border-radius:20px; overflow:hidden; box-shadow:0 4px 20px rgba(15,23,42,0.06); display:flex; flex-direction:column; }
.ad3-modcard__struct { height:340px; background:radial-gradient(circle at 50% 40%, #FFFFFF, #F2F6FF); display:flex; align-items:center; justify-content:center; padding:1.75rem; }
.ad3-modcard__struct img { max-width:94%; max-height:100%; width:auto; object-fit:contain; filter:drop-shadow(0 10px 22px rgba(15,23,42,0.12)); }
@media (max-width:820px){ .ad3-modcard__struct { height:300px; } }
/* 뷰어 스크린샷 = 앱 창 프레임 */
.ad3-modcard__struct--shot { background:#0f1b30; padding:0; align-items:stretch; }
.ad3-modcard__struct--shot img { max-width:100%; max-height:100%; width:100%; height:100%; object-fit:cover; object-position:center; filter:none; }
/* GNB 포함 앱 스크린샷 (자연 비율, 앱 화면 그대로) */
.ad3-modcard__shot { border-bottom:1px solid rgba(0,0,0,0.06); background:#fff; }
.ad3-modcard__shot img { display:block; width:100%; height:auto; }
/* 전역 alt-기반 드롭섀도우 규칙(img[alt*="Peptide"] 등)이 카드 이미지에 새는 것 차단 */
.ad3-modcard img, .ad3-immuno img, .ad3-still img { filter:none !important; }
/* head-first 카드(immuno/epitope/cross): chip+설명 위, 이미지 아래 세로 */
.ad3-modcard--hf .ad3-still { margin-top:0.9rem; }
.ad3-modcard--hf .ad3-still img { width:100%; height:auto; }
/* with_UI: 뷰어+테이블 앱 화면 + 앱이름 오버레이 칩 */
.ad3-modcard__appwin { position:relative; border-bottom:1px solid rgba(0,0,0,0.06); background:#fff; }
.ad3-modcard__appwin img { display:block; width:100%; height:auto; }
.ad3-appwin__chip { position:absolute; top:14px; left:14px; display:inline-flex; align-items:center; gap:7px; background:rgba(255,255,255,0.94); backdrop-filter:blur(4px); border:1px solid rgba(15,23,42,0.1); border-radius:9999px; padding:0.35rem 0.85rem 0.35rem 0.7rem; font-size:0.85rem; font-weight:800; color:var(--color-navy-900); box-shadow:0 4px 14px rgba(15,23,42,0.12); }
.ad3-appwin__dot { width:9px; height:9px; border-radius:50%; background:linear-gradient(135deg,#38BDF8,#6366F1); flex-shrink:0; }
.ad3-modcard__cap { font-size:0.8rem; color:#94A3B8; margin:1rem 0 0; }

/* Immunogenicity — 풀폭 카드 (서열+플롯) */
.ad3-immuno { background:#fff; border:1px solid rgba(0,0,0,0.07); border-radius:20px; box-shadow:0 4px 20px rgba(15,23,42,0.06); padding:1.75rem 1.9rem 1.9rem; margin-top:1.75rem; }
.ad3-immuno__head { margin-bottom:1.25rem; }
.ad3-immuno__desc { font-size:0.92rem; line-height:1.6; color:#566579; margin:0.7rem 0 0; max-width:48rem; }
.ad3-immuno__figs { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; align-items:stretch; }
@media (max-width:820px){ .ad3-immuno__figs { grid-template-columns:1fr; } }
/* 두 이미지 높이 동일 (contain) — 종류(구조/표/플롯) 달라도 정렬 안정 */
.ad3-immuno__figs .ad3-still { display:flex; flex-direction:column; }
.ad3-immuno__figs .ad3-still img { height:190px; width:100%; object-fit:contain; background:#fff; }
/* 테이블 이미지: 박스를 가로·세로 꽉 채움 (가로형이라 상·하 여백만 미세하게 트림) */
.ad3-immuno__figs .ad3-still--fill img { object-fit:cover; object-position:center; }
.ad3-immuno__figs .ad3-still figcaption { margin-top:auto; }
.ad3-modcard__body { padding:1.4rem 1.6rem 1.6rem; }
.ad3-modcard__name { display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:0.92rem; color:var(--color-brand); background:linear-gradient(135deg, rgba(56,189,248,0.12), rgba(99,102,241,0.1)); border:1px solid rgba(37,99,235,0.22); border-radius:9999px; padding:0.4rem 0.95rem; letter-spacing:0.01em; }
.ad3-modcard__name::before { content:''; width:9px; height:9px; border-radius:50%; background:linear-gradient(135deg,#38BDF8,#6366F1); flex-shrink:0; }
.ad3-modcard__desc { font-size:0.9rem; line-height:1.55; color:#566579; margin:0.35rem 0 1rem; }
.ad3-still--metrics { border-radius:12px; }
.ad3-modcard .ad3-still--metrics img { height:170px; width:100%; object-fit:cover; object-position:center; background:#fff; }
.ad3-alsoin { text-align:center; margin:var(--space-8) 0 0; font-size:0.9rem; color:#64748B; display:flex; align-items:center; justify-content:center; gap:0.5rem; flex-wrap:wrap; }
