/* ════════════════════════════════════════════
   Aimed Bio — Base
   ════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  background: #fff;
}

body {
  width: 1920px;
  font-family: 'Pretendard', -apple-system, sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
  zoom: var(--site-zoom, 1);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; }


/* ════════════════════════════════════════════
   MEGA MENU
   ════════════════════════════════════════════ */
.mega-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 1920px;
  height: 420px;
  background: transparent;
  box-shadow: none;
  z-index: 40;
  opacity: 1;
  pointer-events: none;
}
.mm-top-field {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 118px;
  background: rgba(255,255,255,0.01);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: auto;
}
.mm-banner {
  position: absolute;
  left: 0;
  top: 92px;
  width: 1920px;
  height: 318px;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 66%, rgba(252,252,252,0.94) 100%);
  border-top: 1px solid rgba(230,0,18,0.16);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 28px 70px -34px rgba(0,0,0,0.32);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}
.mm-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 78%, rgba(230,0,18,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(247,247,247,0.72));
  pointer-events: none;
}
.mm-hit {
  position: absolute;
  top: 18px;
  height: 76px;
  background: rgba(255,255,255,0.01);
  z-index: 5;
}
.mm-hit-company { left: 660px; width: 118px; }
.mm-hit-adc { left: 805px; width: 126px; }
.mm-hit-pipeline { left: 955px; width: 152px; }
.mm-hit-research { left: 1125px; width: 132px; }
.mega-menu.visible {
  pointer-events: auto;
}
.mega-menu.visible .mm-top-field {
  opacity: 1;
}
.mega-menu.visible .mm-banner {
  opacity: 1;
  transform: translateY(0);
}

.mm-inner {
  position: absolute;
  left: 120px;
  top: 92px;
  width: 1680px;
  height: 318px;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}
.mega-menu.visible .mm-inner {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mm-intro {
  position: relative;
  width: 482px;
  height: 318px;
  padding-left: 30px;
  padding-top: 54px;
}
.mm-redline {
  position: absolute;
  left: 0;
  top: 50px;
  width: 2px;
  height: 206px;
  background: #e60012;
}
.mm-kicker {
  font-size: 11px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: -0.11px;
  line-height: 1;
  margin-bottom: 16px;
  white-space: nowrap;
}
.mm-intro h2 {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.64px;
  line-height: 1.1;
  margin-bottom: 58px;
  white-space: nowrap;
}
.mm-intro p:last-child {
  width: 386px;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  letter-spacing: -0.14px;
  line-height: 1.45;
}
.mm-links {
  position: relative;
  width: 720px;
  height: 318px;
  padding-top: 54px;
  margin-left: 46px;
}
.mm-heading {
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: -0.11px;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.11);
  margin-bottom: 17px;
}
.mm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 126px;
  row-gap: 27px;
}
.mm-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  letter-spacing: -0.14px;
  line-height: 1;
  transition: color 0.16s ease, transform 0.16s ease;
}
.mm-grid a span {
  font-size: 18px;
  color: #b6b6b6;
  transform: translateY(-1px);
  transition: color 0.16s ease, transform 0.16s ease;
}
.mm-grid a:hover {
  color: #e60012;
  transform: translateX(4px);
}
.mm-grid a:hover span {
  color: #e60012;
  transform: translate(4px, -1px);
}
.mm-mark {
  position: absolute;
  right: 44px;
  bottom: 12px;
  font-size: 92px;
  font-weight: 800;
  color: rgba(230,0,18,0.13);
  letter-spacing: -4.6px;
  line-height: 0.8;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.mega-menu[data-panel="adc"] .mm-mark { color: rgba(230,0,18,0.18); }
.mega-menu[data-panel="pipeline"] .mm-mark { color: rgba(0,0,0,0.08); }
.mega-menu[data-panel="research"] .mm-mark { color: rgba(230,0,18,0.1); }


/* ════════════════════════════════════════════
   SECTION 1 — HERO
   ════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 1920px;
  height: 950px;
  overflow: hidden;
  background: #030514;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 950px;
  object-fit: cover;
  object-position: center center;
  background: #030514 url("assets/figma-hero-bg.png") center center / 1920px 950px no-repeat;
  pointer-events: none;
}

/* Hero logo */
.bio-logo {
  position: absolute;
  left: 53px;
  top: 41px;
  width: 210px;
  height: 42px;
  z-index: 45;
}
.bio-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Nav */
.bio-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 35px;
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 16px 80px;
  border-radius: 30px;
  white-space: nowrap;
  z-index: 45;
}
.nav-item {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.18px;
  cursor: pointer;
  transition: color 0.18s ease, opacity 0.15s;
  position: relative;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #e60012;
  transition: width 0.25s ease;
}
.nav-item:hover::after { width: 100%; }
.nav-item:hover,
.nav-item.active {
  color: #e60012;
  opacity: 1;
}
.nav-item.active::after { width: 100%; }

/* Language switch */
.bio-lang {
  position: absolute;
  left: 1641px;
  top: 51px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.18px;
  cursor: pointer;
  z-index: 45;
}
.lang-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

/* CONTACT US button */
.bio-contact-btn {
  position: absolute;
  right: 53px;
  top: 40px;
  width: 178px;
  height: 43px;
  background: #e60012;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.16px;
  white-space: nowrap;
  z-index: 45;
}
.contact-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}
.bio-contact-btn:hover { background: #c4000f; }

/* Hero headline — center at y=532 (50%+57px of 950px section) */
.hero-headline {
  position: absolute;
  left: 129px;
  top: 448px;
  font-size: 70px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.7px;
  line-height: normal;
  white-space: normal;
  z-index: 2;
}

/* Explore Our Technology button */
.hero-cta {
  position: absolute;
  left: 129px;
  top: 649px;
  background: #e60012;
  border-radius: 34px;
  padding: 8px 30px;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.32px;
  white-space: nowrap;
  transition: background 0.2s;
  z-index: 2;
}
.hero-cta:hover { background: #c4000f; }

/* View Video link */
.hero-video-link {
  position: absolute;
  left: 132px;
  top: 758px;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 121px;
  z-index: 2;
}
.hero-video-link span {
  margin-left: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.18px;
  cursor: pointer;
}
.vv-line {
  width: 121px;
  height: 2px;
  margin-top: 5px;
  object-fit: fill;
}

/* Down-scroll arrow */
.hero-arrow {
  position: absolute;
  left: 132px;
  top: 757px;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.hero-arrow img { width: 100%; height: 100%; }


/* ════════════════════════════════════════════
   90px gap
   ════════════════════════════════════════════ */
.section-gap {
  width: 1920px;
  height: 90px;
  background: #fff;
}


/* ════════════════════════════════════════════
   SECTION 2 — CORE ORBIT
   ════════════════════════════════════════════ */
#core-orbit {
  position: relative;
  width: 1920px;
  height: 1100px;
  background: #fff;
  overflow: visible;
}

.orbit-title {
  position: absolute;
  left: 50%;
  top: 104px;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.8px;
  white-space: nowrap;
}

/* Sphere centered horizontally — 842×842 */
.orbit-wrap {
  position: absolute;
  left: 50%;
  top: 207px;
  transform: translateX(-50%);
  width: 842px;
  height: 842px;
  border-radius: 50%;
  transition: filter 0.45s ease;
}

.orbit-bg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 736px;
  height: 736px;
  object-fit: cover;
  opacity: 0;
  border-radius: 50%;
  z-index: 0;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--orbit-rotation, 0deg));
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  z-index: 2;
}
.orbit-ring img {
  width: 788px;
  height: 797px;
  transform-origin: center;
  position: relative;
  z-index: 2;
}
.orbit-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 842px;
  height: 842px;
  object-fit: cover;
  opacity: 1;
  border-radius: 50%;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.45s ease;
  will-change: transform;
  z-index: 2;
}

/* Orbit label buttons — all use translateX(-50%) to center on x-anchor */
.orbit-label {
  position: absolute;
  padding: 16px 22px;
  border-radius: 28px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.2px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  background: #e60012;
  color: #fff;
  border: 2px solid #e60012;
  z-index: 3;
}
.orbit-label.active {
  background: #fff;
  color: #e60012;
  border: 2px solid #111;
}


#core-orbit[data-orbit-state="adc"] .orbit-main {
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}
#core-orbit[data-orbit-state="pipeline"] .orbit-main {
  transform: translate(-50%, -50%) rotate(12deg) scale(0.985);
}
#core-orbit[data-orbit-state="open"] .orbit-main {
  transform: translate(-50%, -50%) rotate(24deg) scale(1);
}
#core-orbit[data-orbit-state="partnership"] .orbit-main {
  transform: translate(-50%, -50%) rotate(-12deg) scale(0.985);
}

/* ADC Platform — top-center  (center-x ≈ 50%, y=193) */
.ol-top {
  left: calc(50% + 1.5px);
  top: 193px;
  transform: translateX(-50%);
}
/* Pipelines — right  (center-x ≈ 50%+422.5, y=588) */
.ol-right {
  left: calc(50% + 422.5px);
  top: 588px;
  padding: 16px 30px;
  transform: translateX(-50%);
}
/* Open Innovation — bottom-center  (center-x ≈ 50%, bottom=60) */
.ol-bottom {
  left: calc(50% + 1.5px);
  bottom: 60px;
  transform: translateX(-50%);
}
/* Partnership — left  (center-x ≈ 50%-433, y=588) */
.ol-left {
  left: calc(50% - 433px);
  top: 588px;
  padding: 16px 30px;
  transform: translateX(-50%);
}


/* ════════════════════════════════════════════
   SECTION 3 — PLATFORM MESSAGE
   ════════════════════════════════════════════ */
#platform-msg {
  position: relative;
  width: 1920px;
  height: 742px;
  background: #fff;
}

.plat-title {
  position: absolute;
  left: 50%;
  top: 300px;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  text-align: center;
  white-space: nowrap;
}

.plat-sub {
  position: absolute;
  left: 50%;
  top: 404.5px;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 400;
  color: #111;
  letter-spacing: -0.24px;
  text-align: center;
  white-space: nowrap;
}

.plat-btn {
  position: absolute;
  left: 837px;
  top: 479px;
  background: #e60012;
  border-radius: 30px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.16px;
  white-space: nowrap;
  transition: background 0.2s;
}
.plat-btn:hover { background: #c4000f; }


/* ════════════════════════════════════════════
   SECTION 4 — OUR IMPACT
   ════════════════════════════════════════════ */
#our-impact {
  position: relative;
  width: 1920px;
  height: 1240px;
  background: #000;
  overflow: hidden;
}

/* Flipped molecule background — upper-left, flipped upside-down */
.impact-mol-wrap {
  position: absolute;
  left: 70px;
  top: 430px;
  width: 1230px;
  height: 650px;
  transform: scale(1);
  transform-origin: 48% 54%;
  opacity: 0.94;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
              filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(1.05) saturate(1.08);
}
.impact-mol-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
}
#our-impact.impact-active .impact-mol-wrap {
  transform: scale(1.035);
  opacity: 1;
  filter: brightness(1.12) saturate(1.14);
}

/* OUR IMPACT title — center-x ≈ 528px, center-y ≈ 290px */
.impact-title {
  position: absolute;
  left: 82px;
  top: 150px;
  transform: none;
  font-size: 172px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -3.86px;
  white-space: nowrap;
  text-align: center;
  opacity: 0.96;
  pointer-events: none;
}

/* Metric blocks */
.impact-metric {
  position: absolute;
  opacity: 0.92;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
#our-impact.impact-active .impact-metric {
  opacity: 0.92;
  transform: translateY(-10px);
}
#our-impact.impact-active .im2 {
  transition-delay: 0.18s;
}

/* 99.9% — centered around x=1343, y=735 */
.im1 {
  left: 870px;
  top: 548px;
  width: 900px;
}
/* 15 — centered around x=1466, y=1110 */
.im2 {
  left: 1114px;
  top: 830px;
  width: 900px;
}

.im-icon {
  position: absolute;
  left: 0;
  top: -30px;
  width: 179px;
  height: 179px;
}
.im-icon img { width: 100%; height: 100%; }

.im-num {
  position: absolute;
  left: 246px;
  top: -84px;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.im-count {
  font-size: 193px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.93px;
  line-height: 1;
}

.im-unit {
  font-size: 61px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.im-label {
  position: absolute;
  left: auto;
  right: 196px;
  top: 38px;
  font-size: 17px;
  font-weight: 400;
  color: #c8c8c8;
  letter-spacing: -0.35px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.im1 .im-label {
  left: 715px;
  right: auto;
}

.im2 .im-icon {
  left: -36px;
  top: -2px;
}

.im2 .im-num {
  left: 244px;
  top: -76px;
}

.im2 .im-label {
  left: 590px;
  right: auto;
  top: 52px;
}

/* Partner logos strip — scrolling */
.partner-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1920px;
  height: 104px;
  overflow: hidden;
}
.partner-inner {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.partner-logo {
  width: 330px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
  opacity: 0.92;
}
.partner-logo img {
  max-width: 250px;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.partner-aivis {
  width: 350px;
}
.partner-aivis img {
  max-width: 142px;
  max-height: 142px;
  transform: scale(1.35);
  transform-origin: center;
}
.partner-samsung {
  width: 470px;
  justify-content: center;
}
.partner-samsung img {
  max-width: 390px;
  max-height: 86px;
}


/* ════════════════════════════════════════════
   SECTION 5 — PIPELINE LIST
   ════════════════════════════════════════════ */
#pipeline {
  position: relative;
  width: 1920px;
  height: 1200px;
  background: #000;
  border: 1px solid #1a1a1a;
  overflow: hidden;
}

#pipeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.92) 76%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.16) 46%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Background molecule image — left side, faded */
.pl-bg-mol {
  position: absolute;
  left: 0;
  top: 0;
  transform: none;
  width: 1160px;
  height: 790px;
  opacity: 0.62;
  pointer-events: none;
  z-index: 0;
}
.pl-bg-mol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  filter: brightness(0.9) saturate(1.04);
}

/* Top divider line */
.pl-topline {
  position: absolute;
  left: 40px;
  top: 156px;
  width: 1839px;
  height: 1px;
  background: rgba(255,255,255,0.42);
  z-index: 2;
}

/* Title text — right half, top */
.pl-heading {
  position: absolute;
  left: 930px;
  top: 214px;
  transform: none;
  width: 820px;
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.4;
  white-space: normal;
  z-index: 2;
}

/* Pipeline list container */
.pl-list {
  position: absolute;
  left: 930px;
  top: 424px;
  width: 820px;
  z-index: 2;
}

.pl-row {
  position: relative;
  padding: 25px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: background 0.24s ease, transform 0.24s ease;
}

.pl-row:hover,
.pl-row.is-hover {
  background: rgba(230,0,18,0.92);
  transform: translateX(-10px);
}

.pl-row-text {
  flex: 1;
  min-width: 0;
  padding-right: 34px;
}

.pl-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.18px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pl-desc {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.16px;
  line-height: 1.4;
  opacity: 0.7;
  word-break: keep-all;
}

.pl-idx {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.14px;
  white-space: nowrap;
  margin-left: 20px;
  margin-top: 2px;
  opacity: 0.8;
}

.pl-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.pl-more-btn {
  position: absolute;
  left: 930px;
  bottom: 68px;
  background: #fff;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.12px;
  white-space: nowrap;
  transition: background 0.2s;
  z-index: 2;
}
.pl-more-btn:hover { background: #f0f0f0; }


/* ════════════════════════════════════════════
   SECTION 6 — NEWS & PR
   ════════════════════════════════════════════ */
#news-pr {
  position: relative;
  width: 1920px;
  height: 738px;
  background: #000;
  overflow: hidden;
}

/* Vertical accent line */
.news-vline {
  position: absolute;
  left: 250px;
  top: 175px;
  width: 1px;
  height: 121px;
  background: #e60012;
}

/* News section header */
.news-header {
  position: absolute;
  left: 275px;
  top: 175px;
}

.news-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.6;
  white-space: nowrap;
}

.news-sub {
  font-size: 16px;
  font-weight: 400;
  color: #a0a0a0;
  letter-spacing: -0.16px;
  line-height: 1.5;
  margin-top: 8px;
}

/* Prev/Next buttons */
.news-btns {
  position: absolute;
  left: 456px;
  top: 571px;
  display: flex;
  gap: 0;
}

.news-btn {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 24px;
  font-family: 'Preahvihear', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  background: transparent;
}
.news-btn:hover {
  background: #e60012;
  border-color: #e60012;
  color: #fff;
}
.news-next { transform: none; }

/* News cards */
.news-cards {
  position: absolute;
  left: 614px;
  top: 236px;
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card {
  width: 330px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.nc-img {
  width: 330px;
  height: 200px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}
.nc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .nc-img img {
  transform: scale(1.055);
  filter: brightness(1.12);
}

.nc-body {
  width: 330px;
  height: 200px;
  background: #fff;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.nc-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.18px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}

.nc-excerpt {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: -0.14px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.nc-date {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  letter-spacing: -0.12px;
  line-height: 1.4;
}


/* ════════════════════════════════════════════
   SECTION 7 — R&D CENTER
   ════════════════════════════════════════════ */
#rd-center {
  position: relative;
  width: 1920px;
  height: 1140px;
  background: #fff;
  overflow: hidden;
}

/* Image box — right:240 top:254 700×740 rounded:24 */
.rd-img-box {
  position: absolute;
  right: 240px;
  top: 254px;
  width: 700px;
  height: 740px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}
.rd-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rd-img-box:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

/* Text block — left:240 */
.rd-text {
  position: absolute;
  left: 240px;
  top: 287px;
  width: 598px;
}

.rd-label {
  font-size: 20px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: -0.2px;
  margin-bottom: 32px;
}

.rd-title {
  font-size: 54px;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.08px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.rd-desc {
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  letter-spacing: -0.36px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.rd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 58px;
  border: 1px solid #111;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.32px;
  line-height: 1.6;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.rd-btn:hover {
  background: #111;
  color: #fff;
}


/* ════════════════════════════════════════════
   SECTION 8 — CONTACT CTA (red mega banner)
   ════════════════════════════════════════════ */
#contact-cta {
  position: relative;
  width: 1920px;
  height: 375px;
  background: #e60012;
  overflow: hidden;
}

/* Subtle red accent line at top */
.cta-accent {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 1840px;
  height: 2px;
  background: rgba(230, 0, 18, 0.72);
}

/* Logo top-left area */
.cta-logo {
  position: absolute;
  left: 6px;
  top: 43px;
  width: 113px;
  height: 113px;
}
.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Main CTA headline */
.cta-title {
  position: absolute;
  left: 46px;
  top: 193px;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

/* Sub text */
.cta-sub {
  position: absolute;
  left: 46px;
  top: 228px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

/* CTA button */
.cta-btn {
  position: absolute;
  left: 46px;
  bottom: 65px;
  background: #000;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.cta-btn:hover { background: #222; }

/* Contact columns */
.cta-cols {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 100%;
}

.cta-col {
  position: absolute;
  top: 165px;
}

.cc-head {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.16px;
  margin-bottom: 12px;
}

.cc-item {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.14px;
  line-height: 1.8;
}


/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ════════════════════════════════════════════ */
.bio-reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.bio-reveal.revealed {
  opacity: 1;
  transform: none;
}

.bio-reveal.revealed .orbit-title,
.bio-reveal.revealed .plat-title,
.bio-reveal.revealed .plat-sub,
.bio-reveal.revealed .pl-heading,
.bio-reveal.revealed .news-header,
.bio-reveal.revealed .rd-text {
  animation: sectionTextLift 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bio-reveal.revealed .orbit-wrap,
.bio-reveal.revealed .pl-list,
.bio-reveal.revealed .news-cards,
.bio-reveal.revealed .rd-img-box {
  animation: sectionVisualLift 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sectionTextLift {
  from { opacity: 0; filter: blur(6px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes sectionVisualLift {
  from { opacity: 0; filter: saturate(0.85) brightness(0.82); }
  to { opacity: 1; filter: saturate(1) brightness(1); }
}

/* Individual element reveal inside sections */
.el-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.el-reveal.revealed { opacity: 1; transform: none; }


/* ════════════════════════════════════════════
   ABOUT SUB PAGE
   ════════════════════════════════════════════ */
.about-page {
  background: #fff;
}

.about-hero {
  position: relative;
  width: 1920px;
  height: 620px;
  overflow: hidden;
  background: #030514;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 1920px;
  height: 620px;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.82;
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 44%, rgba(0,0,0,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.1) 52%, rgba(0,0,0,0.42) 100%);
}

.about-hero-copy {
  position: absolute;
  left: 240px;
  top: 238px;
  width: 970px;
  color: #fff;
}

.about-kicker,
.about-section-label {
  font-size: 15px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: 0;
  line-height: 1;
}

.about-hero-copy h1 {
  margin-top: 24px;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: 1.16;
}

.about-hero-copy p:last-child {
  width: 760px;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.2px;
  line-height: 1.65;
}

.about-overview {
  width: 1920px;
  padding: 150px 240px 116px;
  background: #fff;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 620px 640px;
  gap: 180px;
  margin-top: 34px;
}

.about-overview h2,
.about-message-text h2,
.about-history h2 {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.04px;
  line-height: 1.22;
}

.about-overview p,
.about-message-text > p:last-child {
  font-size: 19px;
  font-weight: 400;
  color: #484848;
  letter-spacing: -0.19px;
  line-height: 1.8;
}

.about-values {
  width: 1920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fafafa;
}

.about-values article {
  min-height: 320px;
  padding: 66px 72px 62px;
  border-right: 1px solid #ddd;
  background: #fafafa;
  transition: background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-values article:hover {
  background: #e60012;
  border-right-color: #e60012;
  transform: translateY(-6px);
}

.about-values article:first-child {
  padding-left: 240px;
}

.about-values article:last-child {
  border-right: none;
  padding-right: 240px;
}

.about-values span {
  display: block;
  margin-bottom: 44px;
  font-size: 18px;
  font-weight: 700;
  color: #e60012;
  transition: color 0.24s ease;
}

.about-values h3 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.28px;
  transition: color 0.24s ease;
}

.about-values p {
  width: 360px;
  font-size: 17px;
  color: #555;
  letter-spacing: -0.17px;
  line-height: 1.7;
  transition: color 0.24s ease;
}

.about-values article:hover span,
.about-values article:hover h3,
.about-values article:hover p {
  color: #fff;
}

.about-message {
  width: 1920px;
  display: grid;
  grid-template-columns: 780px 1fr;
  gap: 120px;
  padding: 150px 240px;
  background: #fff;
}

.about-message-img {
  width: 780px;
  height: 520px;
  overflow: hidden;
  background: #111;
}

.about-message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-message-img:hover img {
  transform: scale(1.045);
}

.about-message-text {
  padding-top: 34px;
}

.about-message-text h2 {
  margin-top: 28px;
  margin-bottom: 34px;
}

.about-history {
  width: 1920px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 210px;
  padding: 138px 240px 150px;
  background: #050505;
  color: #fff;
}

.about-history h2 {
  margin-top: 28px;
  color: #fff;
}

.about-history ul {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.28);
}

.about-history li {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.about-history strong {
  font-size: 25px;
  font-weight: 700;
  color: #e60012;
}

.about-history span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.18px;
}

.about-footer-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


/* ════════════════════════════════════════════
   LOCATION SUB PAGE
   ════════════════════════════════════════════ */
.location-page {
  background: #fff;
}

.location-hero {
  position: relative;
  width: 1920px;
  height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.18)),
    url("assets/hero-location-hands.png") center 52% / cover no-repeat;
}

.location-hero-copy {
  position: absolute;
  left: 240px;
  top: 216px;
  color: #fff;
  z-index: 2;
}

.location-hero-copy h1 {
  margin-top: 24px;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -1.24px;
  line-height: 1.16;
}

.location-hero-copy p:last-child {
  width: 680px;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.2px;
  line-height: 1.6;
}

.location-info {
  width: 1920px;
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 130px;
  padding: 142px 240px 82px;
  background: #fff;
}

.location-head h2 {
  margin-top: 30px;
  font-size: 52px;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.04px;
  line-height: 1.22;
}

.location-card {
  border-top: 2px solid #111;
}

.location-card dl {
  margin: 0;
}

.location-card div {
  display: grid;
  grid-template-columns: 138px 1fr;
  min-height: 82px;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.location-card dt {
  font-size: 17px;
  font-weight: 700;
  color: #e60012;
}

.location-card dd {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  color: #222;
  letter-spacing: -0.19px;
}

.location-map-wrap {
  width: 1920px;
  padding: 58px 240px 126px;
  background: #fff;
}

.location-map {
  position: relative;
  width: 1440px;
  height: 520px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid #d9d9d9;
}

.kakao-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-map.is-error .kakao-map {
  background:
    linear-gradient(135deg, rgba(230,0,18,0.12), rgba(5,5,5,0.05)),
    #f4f4f4;
}

.map-fallback {
  position: absolute;
  left: 40px;
  bottom: 36px;
  min-width: 430px;
  padding: 22px 28px;
  background: rgba(5,5,5,0.88);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.location-map.is-loaded .map-fallback {
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.location-map.is-error .map-fallback::after {
  content: "지도 서비스 연결 전입니다";
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.13px;
}

.map-fallback a {
  width: max-content;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.72);
}

.map-fallback strong {
  font-size: 16px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: -0.16px;
}

.map-fallback span {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.18px;
}

.location-transport {
  width: 1920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.location-transport article {
  min-height: 330px;
  padding: 68px 72px 64px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.location-transport article:first-child {
  padding-left: 240px;
}

.location-transport article:last-child {
  border-right: none;
  padding-right: 240px;
}

.location-transport span {
  display: block;
  margin-bottom: 44px;
  font-size: 16px;
  font-weight: 700;
  color: #e60012;
}

.location-transport h3 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.28px;
}

.location-transport p {
  width: 360px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.17px;
  line-height: 1.7;
}


/* ════════════════════════════════════════════
   HISTORY SUB PAGE
   ════════════════════════════════════════════ */
.history-page {
  background: #050505;
}

.history-hero {
  position: relative;
  width: 1920px;
  height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.48)),
    url("assets/hero-history-lab.png") center 52% / cover no-repeat;
}

.history-hero-copy {
  position: absolute;
  left: 240px;
  top: 232px;
  width: 980px;
  color: #fff;
  z-index: 2;
}

.history-hero-copy h1 {
  margin-top: 24px;
  font-size: 66px;
  font-weight: 700;
  letter-spacing: -1.32px;
  line-height: 1.14;
}

.history-hero-copy p:last-child {
  width: 820px;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.2px;
  line-height: 1.65;
}

.history-intro {
  width: 1920px;
  padding: 142px 240px 88px;
  background: #fff;
}

.history-intro h2 {
  margin-top: 30px;
  font-size: 54px;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.08px;
  line-height: 1.22;
}

.history-intro > p:last-child {
  width: 760px;
  margin-top: 30px;
  font-size: 19px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: -0.19px;
  line-height: 1.8;
}

.thermo-history {
  --history-progress: 0;
  position: relative;
  width: 1920px;
  min-height: 1820px;
  padding: 120px 240px 170px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.thermo-line {
  position: absolute;
  left: 520px;
  top: 130px;
  width: 3px;
  height: calc(100% - 300px);
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  z-index: 2;
}

.thermo-fill {
  display: block;
  width: 100%;
  height: calc(var(--history-progress) * 100%);
  background: #e60012;
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(230,0,18,0.55);
}

.thermo-runner {
  position: absolute;
  left: 50%;
  top: calc(var(--history-progress) * 100%);
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #e60012;
  box-shadow: 0 0 24px rgba(230,0,18,0.7);
  z-index: 3;
  transition: top 0.08s linear;
}

.history-items {
  position: relative;
  margin-left: 390px;
  width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 74px;
  z-index: 2;
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 64px;
  min-height: 128px;
  padding: 34px 74px 36px 38px;
  border-radius: 0;
  opacity: 0.18;
  transform: translateY(54px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.history-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #e60012 0%, #b70010 48%, rgba(5,5,5,0.94) 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.42s ease;
  z-index: 0;
}

.history-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.history-item.visible {
  opacity: 1;
  transform: translate(12px, 0);
}

.history-item.visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.history-item.visible::after {
  border-color: rgba(255,255,255,0.2);
  opacity: 1;
}

.history-dot {
  display: none;
}

.history-item time {
  position: relative;
  z-index: 2;
  font-size: 54px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -1.08px;
  line-height: 1;
}

.history-month {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ffccd1;
  letter-spacing: 0;
}

.history-item h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.29px;
  line-height: 1.32;
}

.history-item p:last-child {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 720px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.17px;
  line-height: 1.72;
  word-break: keep-all;
}

.history-item.visible p:last-child {
  color: rgba(255,255,255,0.9);
}


/* CERTIFICATION SUB PAGE */
.cert-page {
  background: #fff;
}

.cert-hero {
  position: relative;
  width: 1920px;
  height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.46) 48%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.48)),
    url("/aimedbio/assets/figma-hero-bg.png") center 44% / cover no-repeat;
}

.cert-hero-copy {
  position: absolute;
  left: 240px;
  top: 218px;
  width: 980px;
  color: #fff;
  z-index: 2;
}

.cert-hero-copy h1 {
  margin-top: 24px;
  font-size: 66px;
  font-weight: 700;
  letter-spacing: -1.32px;
  line-height: 1.14;
}

.cert-hero-copy p:last-child {
  width: 760px;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.2px;
  line-height: 1.65;
}

.cert-summary {
  width: 1920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fafafa;
}

.cert-summary article {
  min-height: 360px;
  padding: 72px 70px;
  border-right: 1px solid #ddd;
  transition: background 0.28s ease, transform 0.28s ease;
}

.cert-summary article:first-child { padding-left: 240px; }
.cert-summary article:last-child {
  border-right: none;
  padding-right: 240px;
}

.cert-summary article:hover {
  background: #e60012;
  transform: translateY(-6px);
}

.cert-summary span {
  display: block;
  margin-bottom: 46px;
  font-size: 18px;
  font-weight: 700;
  color: #e60012;
}

.cert-summary h2 {
  margin-bottom: 22px;
  font-size: 31px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.31px;
}

.cert-summary p {
  width: 360px;
  font-size: 17px;
  color: #555;
  letter-spacing: -0.17px;
  line-height: 1.75;
  word-break: keep-all;
}

.cert-summary article:hover span,
.cert-summary article:hover h2,
.cert-summary article:hover p {
  color: #fff;
}

.cert-proof {
  width: 1920px;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 160px;
  padding: 150px 240px 170px;
  background: #050505;
  color: #fff;
}

.cert-proof-head h2 {
  margin-top: 30px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1.04px;
  line-height: 1.24;
}

.cert-proof-list {
  border-top: 1px solid rgba(255,255,255,0.24);
}

.cert-proof-list article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 46px;
  min-height: 138px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  transition: background 0.22s ease, padding 0.22s ease;
}

.cert-proof-list article:hover {
  background: rgba(230,0,18,0.95);
  padding-left: 28px;
}

.cert-proof-list p {
  font-size: 15px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: 0;
}

.cert-proof-list article:hover p { color: #fff; }

.cert-proof-list h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.28px;
}

.cert-proof-list span {
  display: block;
  width: 620px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.17px;
  line-height: 1.72;
  word-break: keep-all;
}

.cert-proof-list article:hover span {
  color: rgba(255,255,255,0.92);
}


/* GLOBAL NETWORK SUB PAGE */
.global-page {
  background: #fff;
}

.global-hero {
  position: relative;
  width: 1920px;
  height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.58) 48%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.48)),
    url("/aimedbio/assets/hero-about-overview.png") center 48% / cover no-repeat;
}

.global-hero-copy {
  position: absolute;
  left: 240px;
  top: 214px;
  width: 980px;
  color: #fff;
  z-index: 2;
}

.global-hero-copy h1 {
  margin-top: 24px;
  font-size: 66px;
  font-weight: 700;
  letter-spacing: -1.32px;
  line-height: 1.14;
}

.global-hero-copy p:last-child {
  width: 760px;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.2px;
  line-height: 1.65;
}

.global-intro {
  width: 1920px;
  padding: 150px 240px 116px;
  background: #fff;
}

.global-intro-grid {
  display: grid;
  grid-template-columns: 640px 670px;
  gap: 170px;
  margin-top: 34px;
}

.global-intro h2,
.global-map-copy h2,
.global-partners-head h2 {
  font-size: 52px;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.04px;
  line-height: 1.22;
}

.global-intro p:last-child,
.global-map-copy p:last-child {
  font-size: 19px;
  font-weight: 400;
  color: #484848;
  letter-spacing: -0.19px;
  line-height: 1.8;
  word-break: keep-all;
}

.global-map {
  width: 1920px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 120px;
  padding: 140px 240px 150px;
  background: #050505;
  color: #fff;
}

.global-map-copy h2 {
  margin-top: 30px;
  color: #fff;
}

.global-map-copy p:last-child {
  width: 520px;
  margin-top: 30px;
  color: rgba(255,255,255,0.72);
}

.network-stage {
  position: relative;
  width: 800px;
  height: 520px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 48% 48%, rgba(230,0,18,0.18), transparent 34%),
    radial-gradient(circle at 68% 30%, rgba(255,255,255,0.08), transparent 24%),
    #080808;
  overflow: hidden;
}

.network-stage::before {
  content: "AIMEDBIO";
  position: absolute;
  left: 42px;
  bottom: -6px;
  font-size: 98px;
  font-weight: 800;
  color: rgba(255,255,255,0.035);
  letter-spacing: -4px;
}

.network-line {
  position: absolute;
  left: 394px;
  top: 254px;
  height: 1px;
  background: linear-gradient(90deg, #e60012, rgba(230,0,18,0));
  transform-origin: left center;
}

.line-us { width: 278px; transform: rotate(-34deg); }
.line-eu { width: 300px; transform: rotate(-9deg); }
.line-cn { width: 258px; transform: rotate(24deg); }
.line-sg { width: 244px; transform: rotate(72deg); }

.network-node {
  position: absolute;
  width: 210px;
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(8px);
  transition: background 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.network-node:hover {
  background: #e60012;
  border-color: #e60012;
  transform: translateY(-6px);
}

.network-node strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.18px;
}

.network-node span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.13px;
  line-height: 1.5;
  word-break: keep-all;
}

.node-kr { left: 295px; top: 218px; border-color: rgba(230,0,18,0.72); }
.node-us { right: 70px; top: 76px; }
.node-eu { right: 42px; top: 226px; }
.node-cn { right: 126px; bottom: 80px; }
.node-sg { left: 320px; bottom: 44px; }

.global-partners {
  width: 1920px;
  padding: 142px 240px 164px;
  background: #fff;
}

.global-partners-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 62px;
}

.partner-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.partner-track article {
  min-height: 330px;
  padding: 42px 32px 46px;
  border-right: 1px solid #ddd;
  transition: background 0.28s ease, transform 0.28s ease;
}

.partner-track article:last-child {
  border-right: none;
}

.partner-track article:hover {
  background: #e60012;
  transform: translateY(-6px);
}

.partner-track span {
  display: block;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 800;
  color: #e60012;
}

.partner-track h3 {
  min-height: 70px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.24px;
  line-height: 1.3;
}

.partner-track p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  letter-spacing: -0.16px;
  line-height: 1.7;
  word-break: keep-all;
}

.partner-track article:hover span,
.partner-track article:hover h3,
.partner-track article:hover p {
  color: #fff;
}
