/* ============================================================
   APEX ENERGY PARTNERS — soulenergy.co.kr-inspired design system
   Light editorial · big typography · mobile-first
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7f8;
  --ink: #101418;
  --ink-70: rgba(16, 20, 24, 0.72);
  --muted: #5d6a75;
  --line: #e7ebee;
  --accent: #00a06a;
  --accent-soft: #e5f6ef;
  --accent-deep: #063f31;
  --dark: #0b1214;
  --dark-2: #10191d;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 72px;
  --container: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --shadow: 0 20px 60px rgba(10, 30, 25, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 64px); }

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  word-break: keep-all;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

::selection { background: var(--accent); color: #fff; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }

.display {
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  font-size: clamp(34px, 6.4vw, 68px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.h-section {
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.lead { font-size: clamp(15px, 2vw, 18px); color: var(--muted); line-height: 1.8; }

.num {
  font-family: "Archivo", sans-serif;
  font-weight: 700; letter-spacing: -0.02em;
}

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s;
  color: #fff;
}
.header__inner {
  max-width: var(--container); margin: 0 auto; height: 100%;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header--solid, .header--open {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.logo { display: flex; flex-direction: column; line-height: 1.15; z-index: 130;width: 10em; }
.logo__img--dark { display: none; }
.header--solid .logo__img--light, .header--open .logo__img--light { display: none; }
.header--solid .logo__img--dark, .header--open .logo__img--dark { display: block; }
.logo strong {
  font-family: "Archivo", sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: 0.06em;
}
.logo span {
  font-family: "Archivo", sans-serif; font-size: 8.5px;
  letter-spacing: 0.3em; opacity: 0.65; text-transform: uppercase;
}

.gnb { display: flex; gap: 8px; }
.gnb > li { position: relative; }
.gnb > li > a {
  display: block; padding: 24px 18px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  transition: color 0.2s;
}
.gnb > li > a:hover { color: var(--accent); }
.gnb .sub {
  position: absolute; top: 100%; left: 50%; translate: -50% 8px;
  display: flex; align-items: stretch; gap: 20px;
  padding: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: 0.25s var(--ease);
  color: var(--ink);
}
.gnb > li:hover .sub, .gnb > li:focus-within .sub { opacity: 1; visibility: visible; translate: -50% 0; }
.sub__links { min-width: 168px; display: flex; flex-direction: column; gap: 2px; white-space: nowrap; }
.sub__links a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-70);
  transition: 0.2s;
}
.sub__links a:hover { background: var(--accent-soft); color: var(--accent-deep); }
.sub__divider { width: 1px; align-self: stretch; background: var(--line); }
.sub__preview { width: 190px; display: flex; flex-direction: column; gap: 10px; }
.sub__preview img { width: 190px; height: 124px; border-radius: 10px; object-fit: cover; }
.sub__preview p { font-size: 12.5px; line-height: 1.6; color: var(--muted); white-space: normal; }

.header__cta {
  display: inline-block; padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  background: var(--accent); color: #fff !important;
  transition: 0.25s;
}
.header__cta:hover { background: var(--accent-deep); }

/* Burger */
.burger {
  display: none; z-index: 130;
  width: 44px; height: 44px; position: relative;
}
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.header--open .burger span:nth-child(1) { top: 21px; rotate: 45deg; }
.header--open .burger span:nth-child(2) { opacity: 0; }
.header--open .burger span:nth-child(3) { top: 21px; rotate: -45deg; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 120;
  background: #fff; color: var(--ink);
  padding: calc(var(--header-h) + 24px) var(--pad) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; translate: 0 -12px;
  transition: 0.35s var(--ease);
}
.drawer.open { opacity: 1; visibility: visible; translate: 0 0; }
.drawer__group { border-bottom: 1px solid var(--line); }
.drawer__group > button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px;
  font-family: "Noto Serif KR", serif;
  font-size: 22px; font-weight: 700; text-align: left;
}
.drawer__group > button::after {
  content: "+"; font-family: "Archivo"; font-weight: 400;
  font-size: 22px; color: var(--muted); transition: 0.25s;
}
.drawer__group.open > button::after { rotate: 45deg; color: var(--accent); }
.drawer__sub { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.drawer__group.open .drawer__sub { max-height: 300px; }
.drawer__sub a {
  display: block; padding: 10px 4px 10px 16px;
  font-size: 16px; color: var(--muted); font-weight: 500;
}
.drawer__sub li:last-child a { padding-bottom: 22px; }
.drawer__foot { margin-top: 32px; display: grid; gap: 10px; font-size: 13.5px; color: var(--muted); }

/* ---------- Hero (main) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: var(--dark);
}
.hero__media {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  animation: kenburns 22s var(--ease) infinite alternate;
}
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
@keyframes kenburns { from { scale: 1; } to { scale: 1.12; } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 10, 0.55) 0%, rgba(5, 12, 10, 0.25) 45%, rgba(5, 12, 10, 0.75) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 140px 0 160px; text-align: center; }
.hero .eyebrow { color: #7fe0bb; justify-content: center; }
.hero .eyebrow::before { background: #7fe0bb; }
.hero__title { color: #fff; }
.hero__title em { font-style: normal; color: #7fe0bb; }
.hero__desc {
  margin: 26px auto 0; max-width: 640px;
  font-size: clamp(15px, 2vw, 18px); line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}
.hero__actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 700;
  transition: 0.3s var(--ease);
}
.btn--fill { background: var(--accent); color: #fff; }
.btn--fill:hover { background: #00b87a; translate: 0 -2px; }
.btn--ghost { border: 1px solid rgba(255, 255, 255, 0.45); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); translate: 0 -2px; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--accent-deep); translate: 0 -2px; }
.btn .arr { transition: translate 0.3s; }
.btn:hover .arr { translate: 4px 0; }

.hero__scroll {
  position: absolute; bottom: 96px; left: 50%; translate: -50% 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: "Archivo"; font-size: 10px; letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}
.hero__scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop { 0% { scale: 1 0; transform-origin: top; } 45% { scale: 1 1; transform-origin: top; } 55% { scale: 1 1; transform-origin: bottom; } 100% { scale: 1 0; transform-origin: bottom; } }

/* ---------- News ticker ---------- */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  background: rgba(8, 14, 12, 0.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex; align-items: center;
}
.ticker__label {
  flex-shrink: 0; padding: 16px 22px;
  font-family: "Archivo"; font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: #7fe0bb; border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.ticker__viewport { overflow: hidden; flex: 1; }
.ticker__track {
  display: flex; gap: 64px; width: max-content;
  padding: 16px 0;
  animation: marquee 36s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__track a { font-size: 13.5px; color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
.ticker__track a span { color: #7fe0bb; margin-right: 10px; font-family: "Archivo"; font-size: 12px; }
@keyframes marquee { to { translate: -50% 0; } }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 12vw, 150px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .lead { color: rgba(255, 255, 255, 0.68); }

.section-head {
  max-width: 780px; margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 20px; }
.section-head.in { max-width: 100%;}

/* ---------- Stats band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.section--dark .stats { border-color: rgba(255, 255, 255, 0.14); }
.stat {
  padding: 36px 20px 8px;
  border-left: 1px solid var(--line);
}
.section--dark .stat { border-color: rgba(255, 255, 255, 0.14); }
.stat:first-child { border-left: 0; }
.stat__value { font-size: clamp(30px, 4.6vw, 56px); line-height: 1.1; }
.stat__value small { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.stat__label { margin-top: 10px; font-size: 14px; color: var(--muted); }
.section--dark .stat__label { color: rgba(255, 255, 255, 0.6); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: 0.4s var(--ease);
}
.card:hover { translate: 0 -6px; box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: scale 0.6s var(--ease); }
.card:hover .card__media img { scale: 1.06; }
.card__body { padding: 26px 26px 30px; }
.card__kicker {
  font-family: "Archivo"; font-size: 20px; font-weight: 700;
  color: var(--accent); letter-spacing: -0.01em;
}
.card__title { margin-top: 8px; font-size: 19px; font-weight: 700; }
.card__desc { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.card__link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--ink);
}
.card__link .arr { color: var(--accent); transition: translate 0.3s; }
.card:hover .card__link .arr { translate: 4px 0; }

/* ---------- Portfolio (projects grid) ---------- */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--dark-2); color: #fff;
  aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end;
}
.pf__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.55; transition: 0.5s var(--ease); }
.pf:hover .pf__bg { opacity: 0.75; scale: 1.05; }
.pf__body { position: relative; z-index: 2; padding: 22px; width: 100%; background: linear-gradient(transparent, rgba(5, 10, 9, 0.85)); }
.pf__mw { font-family: "Archivo"; font-size: 26px; font-weight: 700; color: #7fe0bb; }
.pf__name { font-size: 15.5px; font-weight: 600; margin-top: 2px; }
.pf__tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(6px);
}
.pf__tag--dev { background: var(--accent); }
.pf__hint {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(6px);
  font-size: 16px; font-weight: 700; line-height: 1; color: #fff;
  transition: 0.3s var(--ease);
}
.pf:hover .pf__hint { background: var(--accent); }
.pf__tag ~ .pf__hint { top: 50px; }
.pf__desc {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center;
  padding: 24px; background: rgba(6, 14, 12, 0.92);
  font-size: 13.5px; line-height: 1.75; color: rgba(255, 255, 255, 0.9);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.pf.is-open .pf__desc { opacity: 1; visibility: visible; }
.pf.is-open .pf__hint, .pf.is-open .pf__tag { opacity: 0; visibility: hidden; }
.pf__desc-close {
  position: absolute; top: 12px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 12px;
}

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split .h-section { margin-bottom: 20px; }
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-70); line-height: 1.7; }
.checklist li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 3px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 900;
}
.section--dark .checklist li { color: rgba(255,255,255,0.78); }
.section--dark .checklist li::before { background: rgba(0,160,106,0.25); color: #7fe0bb; }

/* ---------- Page hero (subpages) ---------- */
figure.subpage-media.in { width: 78%; margin: 0px auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.page-hero {
  position: relative; min-height: clamp(380px, 52vh, 520px);
  display: flex; align-items: flex-end;
  color: #fff; background: var(--dark); overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; padding: 140px 0 64px; text-align: center; }
.page-hero .eyebrow { color: #7fe0bb; justify-content: center; }
.page-hero .eyebrow::before { background: #7fe0bb; }
.page-hero__title { font-family: "Noto Serif KR", serif; font-weight: 700; font-size: clamp(34px, 5.6vw, 56px); line-height: 1.25; }
.page-hero__desc { margin: 16px auto 0; max-width: 620px; color: rgba(255,255,255,0.78); font-size: clamp(14px, 1.8vw, 17px); line-height: 1.8; }

/* ---------- Business subpage head (no hero banner: breadcrumb + title on white) ---------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--line); }
.breadcrumb__current { color: var(--ink); font-weight: 600; }

.subpage-head { padding: calc(var(--header-h) + 56px) 0 8px; background: var(--bg); text-align: center; }
.subpage-head__title {
  /*margin-top: 22px;*/
  font-family: "Noto Serif KR", serif; font-weight: 700;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.25;
}
.subpage-head__desc { margin: 18px auto; max-width: 640px; font-size: clamp(14.5px, 1.6vw, 17px); line-height: 1.85; color: var(--ink-70); }


/* ---------- Business subpage full-width media (70-80% width, rounded) ---------- */
.subpage-media { width: 78%; margin: 0px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.subpage-media--gap { margin-top: 120px; }
figure.subpage-medie.in { width: 78%; margin: 120px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.subpage-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.subpage-media--natural img { aspect-ratio: auto; object-fit: contain; }
@media (max-width: 860px) {
  .subpage-media { width: 100%; margin: 40px 0; }
}

/* ---------- Vision loop diagram + unified captions (projects-vision.html) ---------- */
#vision .subpage-media { margin: 0 auto 48px; box-shadow: none; }
#vision .section-head { margin-bottom: 48px; }
.section-head.vision.in {     margin-top: 150px; }
.vision-loop { position: relative; }
.vision-loop__tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 10px 14px;
}
.vision-loop__tag-title { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.vision-loop__tag-desc { margin-top: 4px; font-size: 12px; color: var(--muted); line-height: 1.6; }
.vision-loop__tag--1 { top: 5%; left: 64%; width: 34%; }
.vision-loop__tag--2 { top: 58%; left: 80%; width: 20%; }
.vision-loop__tag--3 { top: 90%; left: 52%; width: 46%; text-align: center; }
.vision-loop__tag--4 { top: 90%; left: 10%; width: 40%; text-align: center; }
.vision-loop__tag--5 { top: 17%; left: 2%; width: 18%; }
@media (max-width: 860px) {
  .vision-loop__tag {
    position: static; width: auto; margin: 0 0 10px;
    background: var(--bg-soft); text-align: left;
  }
}

/* ---------- Climate Intelligence Platform integration cards ---------- */
.platform-card { height: 100%; }
.platform-card .card__body { padding: 30px 24px 32px; }
.platform-card .card__kicker { font-size: 15px; }


/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 44px 44px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
}
.timeline__year { font-family: "Archivo"; font-size: 22px; font-weight: 700; color: var(--accent); }
.timeline__event { margin-top: 6px; font-size: 16.5px; font-weight: 600; }
.timeline__desc { margin-top: 4px; font-size: 14.5px; color: var(--muted); }

/* ---------- Team ---------- */
.team-card {
  text-align: center; padding: 44px 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: 0.35s var(--ease);
  cursor: pointer;
}
#team .grid--4 { gap: 14px; }
.team-card:hover, .team-card:focus-visible { translate: 0 -6px; box-shadow: var(--shadow); border-color: var(--accent); }
.team-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.team-card__avatar {
  width: 88px; height: 88px; margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-soft), #d3f0e4);
  color: var(--accent-deep);
  font-family: "Noto Serif KR", serif; font-size: 30px; font-weight: 700;
  object-fit: cover;
}
.team-card__name { font-size: 20px; font-weight: 700; }
.team-card__role { margin-top: 6px; font-size: 13.5px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; }
ul.team-card__from li { margin-top: 12px; font-size: 12.5px; letter-spacing: -0.01em; white-space: nowrap; color: var(--muted); line-height: 1.7; }
.team-card__more {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
}
.team-card__more .arr { color: var(--accent); transition: translate 0.3s var(--ease); }
.team-card:hover .team-card__more .arr { translate: 4px 0; }

/* ---------- Team detail modal ---------- */
.team-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.team-modal.is-open { visibility: visible; opacity: 1; }
.team-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 20, 18, 0.55); backdrop-filter: blur(3px);
}
.team-modal__panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px; max-height: 86vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow);
  translate: 0 16px; transition: translate 0.35s var(--ease);
}
.team-modal.is-open .team-modal__panel { translate: 0 0; }
.team-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--ink); font-size: 13px;
  transition: 0.25s var(--ease);
}
.team-modal__close:hover { background: var(--accent); color: #fff; }
.team-modal__head { text-align: center; margin-top: 4px; }
.team-modal__avatar {
  width: 96px; height: 96px; margin: 0 auto 20px;
  border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--accent-soft), #d3f0e4);
}
.team-modal__name { font-family: "Noto Serif KR", serif; font-weight: 700; font-size: 24px; }
.team-modal__role { margin-top: 6px; font-size: 13.5px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; }
.team-modal__body { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 14.5px; line-height: 1.85; color: var(--ink-70); }
.team-modal__body h4 { margin-top: 22px; margin-bottom: 10px; font-size: 13px; font-weight: 700; color: var(--ink); }
.team-modal__body ul { display: grid; gap: 10px; }
.team-modal__body li { position: relative; padding-left: 18px; }
.team-modal__body li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
body.modal-open { overflow: hidden; }

/* ---------- Data tables → cards ---------- */
.pipeline { display: grid; gap: 18px; }
.pipe {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px 26px;
  display: grid; grid-template-columns: auto 1fr; gap: 8px 22px; align-items: baseline;
}
.pipe__no {
  grid-row: 1 / span 2;
  font-family: "Archivo"; font-size: 15px; font-weight: 700;
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; align-self: start;
  background: var(--accent-soft); color: var(--accent-deep);
}
.pipe__name { font-size: 18px; font-weight: 700; }
.pipe__specs { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 4px; }
.pipe__specs span { font-size: 13.5px; color: var(--muted); }
.pipe__specs b { color: var(--ink); font-weight: 600; margin-left: 6px; }
.pipe__mw { font-family: "Archivo"; font-weight: 700; color: var(--accent); font-size: 17px; }

/* ---------- Dev pipeline (funding + project cards) ---------- */
.devpipe { margin-top: 8px; }
.devpipe__sub { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.devpipe__sub:not(:first-child) { margin-top: 44px; }

.devpipe-fund { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.devpipe-fund__item {
  flex: 1 1 220px; display: flex; align-items: baseline; justify-content: center; gap: 10px;
  padding: 20px 24px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep);
}
.devpipe-fund__item span { font-size: 14.5px; font-weight: 600; }
.devpipe-fund__item strong { font-family: "Archivo"; font-size: 22px; font-weight: 700; }
.devpipe-fund__item--fill { background: var(--accent); color: #fff; }

.devpipe-total {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; margin-bottom: 24px;
}
.devpipe-total__box {
  flex: 0 0 auto; min-width: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 28px; border-radius: var(--radius-sm); background: var(--dark); color: #fff; text-align: center;
}
.devpipe-total__label { font-size: 13px; color: rgba(255,255,255,0.6); }
.devpipe-total__value { font-family: "Archivo"; font-size: 30px; font-weight: 700; }
.devpipe-total__unit { font-size: 13px; color: rgba(255,255,255,0.75); }
.devpipe-total ul { flex: 1 1 320px; display: grid; gap: 10px; align-self: center; }
.devpipe-total li {
  position: relative; padding-left: 16px; font-size: 14px; color: var(--muted); line-height: 1.7;
}
.devpipe-total li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.devpipe-total li strong { color: var(--ink); font-weight: 700; }

.devpipe-group { display: flex; gap: 20px; align-items: stretch; }
.devpipe-group + .devpipe-group { margin-top: 20px; }
.devpipe-group__label {
  flex: 0 0 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; padding: 20px 12px; border-radius: var(--radius-sm); background: var(--dark-2); color: #fff;
}
.devpipe-group__label strong { font-size: 16px; font-weight: 700; }
.devpipe-group__label span { font-size: 12.5px; color: rgba(255,255,255,0.6); }
.devpipe-cards { flex: 1; min-width: 0; display: grid; gap: 16px; }
.devpipe-cards--3 { grid-template-columns: repeat(3, 1fr); }
.devpipe-cards--4 { grid-template-columns: repeat(4, 1fr); }

.devpipe-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 22px 24px; transition: 0.35s var(--ease);
}
.devpipe-card:hover { translate: 0 -4px; box-shadow: var(--shadow); }
.devpipe-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.devpipe-card__no {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-family: "Archivo"; font-size: 13px; font-weight: 700;
  background: var(--accent-soft); color: var(--accent-deep);
}
.devpipe-card__head h4 { font-size: 16px; font-weight: 700; }
.devpipe-card dl { display: grid; gap: 6px; }
.devpipe-card dl div { display: flex; gap: 10px; font-size: 13px; }
.devpipe-card dt { flex: 0 0 62px; color: var(--muted); }
.devpipe-card dd { color: var(--ink); font-weight: 600; }
.devpipe-card ul { display: grid; gap: 8px; }
.devpipe-card ul li { position: relative; padding-left: 14px; font-size: 13px; color: var(--ink); line-height: 1.6; }
.devpipe-card ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- Steps (strategy) ---------- */
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px;
  transition: 0.35s var(--ease);
}
.step:hover { translate: 0 -6px; box-shadow: var(--shadow); }
.step__no {
  font-family: "Archivo"; font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--accent);
}
.step__period { margin-top: 4px; font-size: 12.5px; color: var(--muted); }
.step__title { margin-top: 14px; font-size: 20px; font-weight: 700; line-height: 1.45; }
.step__sub { margin-top: 8px; font-size: 14px; color: var(--accent-deep); font-weight: 600; }
.step ul { margin-top: 18px; display: grid; gap: 10px; }
.step ul li {
  position: relative; padding-left: 16px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.step ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.step--media { display: flex; align-items: center; gap: 32px; }
.step--media .step__body { flex: 1; min-width: 0; }
.step--media .step__media {
  flex: 0 0 200px; align-self: stretch;
  border-radius: var(--radius-sm); overflow: hidden;
}
.step--media .step__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Pillar (photo-background mission/vision) ---------- */
.pillar {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3.4;
  isolation: isolate;
}
.pillar__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: 0.6s var(--ease); z-index: -2;
}
.pillar:hover .pillar__bg { transform: scale(1.06); }
.pillar__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,20,18,0.55) 0%, rgba(10,20,18,0.2) 35%, rgba(10,20,18,0.75) 100%);
}
.pillar__body { position: relative; height: 100%; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
.pillar__no {
  font-family: "Archivo"; font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  color: #00a06a;
}
.pillar__title { margin-top: auto; font-size: 22px; font-weight: 700; line-height: 1.4; }
.pillar__desc { margin-top: 14px; font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,0.8); }
.pillar__list { margin-top: 14px; display: grid; gap: 9px; }
.pillar__list li {
  position: relative; padding-left: 16px;
  font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.82);
}
.pillar__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: #fff; opacity: 0.75; }
.pillar--tall { aspect-ratio: 4 / 3.9; }
.pillar--rect { aspect-ratio: 16 / 9; }
.pillar__more {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: #fff;
}
.pillar__more .arr { color: #7fe0bb; transition: translate 0.3s; }
.pillar:hover .pillar__more .arr { translate: 4px 0; }

/* ---------- Media / news list ---------- */
.news-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.news-filter button {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--muted);
  transition: 0.25s;
}
.news-filter button.active, .news-filter button:hover {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
.news-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; align-items: center;
  padding: 28px 8px; border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.news-item:first-child { border-top: 1px solid var(--ink); }
.news-item:hover { background: var(--bg-soft); }
.news-item__meta { display: grid; gap: 6px; }
.news-item__cat {
  width: fit-content; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep);
}
.news-item__date { font-family: "Archivo"; font-size: 12.5px; color: var(--muted); }
.news-item__title { font-size: 18px; font-weight: 700; }
.news-item__desc { margin-top: 6px; font-size: 14px; color: var(--muted); }
.news-item__arr { font-size: 20px; color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 6vw, 72px); }
.contact-info { display: grid; gap: 28px; align-content: start; }
.contact-info__item h4 {
  font-family: "Archivo"; font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.contact-info__item p, .contact-info__item a { font-size: 15.5px; line-height: 1.9; color: var(--ink-70); display: block; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 15px; background: var(--bg-soft);
  transition: 0.25s; outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 150px; resize: vertical; }
.form__note { font-size: 12.5px; color: var(--muted); }

/* ---------- Map ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 460px; border: 0; }

.contact-panel {
  display: flex; gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--line);
}
.contact-panel__title { flex: 0 0 140px; font-size: 20px; font-weight: 700; }
.contact-panel__grid {
  flex: 1; display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}
.contact-panel__item--wide { grid-column: span 2; }
.contact-panel__item h4 {
  font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 8px;
}
.contact-panel__item p, .contact-panel__item a {
  font-size: 15px; line-height: 1.8; color: var(--ink-70); display: block;
}
.contact-panel__subway { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.contact-panel__subway:last-child { margin-bottom: 0; }
.subway-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 700; color: #fff; flex: none;
}
.subway-badge--line2 { background: #00a84d; }

/* ---------- Partners ---------- */
.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.partner {
  display: grid; place-items: center; padding: 30px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff;
  transition: 0.3s;
}
.partner:hover { border-color: var(--ink); }
.partner__logo {
  width: 88px; height: 44px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s;
}
.partner__logo--lg { width: 116px; height: 58px; }
.partner:hover .partner__logo { filter: grayscale(0%) opacity(1); }

/* ---------- Big CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--accent-deep); color: #fff;
  text-align: center; padding: clamp(80px, 12vw, 140px) 0;
}
.cta::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 184, 122, 0.35), transparent 55%),
              radial-gradient(circle at 75% 70%, rgba(127, 224, 187, 0.18), transparent 50%);
}
.cta__inner { position: relative; z-index: 2; }
.cta .h-section { color: #fff; }
.cta p { margin: 18px auto 36px; max-width: 520px; color: rgba(255,255,255,0.75); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.65); padding: 72px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .logo { color: #fff; margin-bottom: 22px; }
.footer__contact { font-size: 13.5px; line-height: 2; }
.footer h5 {
  font-family: "Archivo"; font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: #7fe0bb;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 10px; font-size: 14px; }
.footer__links a { transition: 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 12.5px; color: rgba(255, 255, 255, 0.4);
}
.footer__bottom a { transition: 0.2s; }
.footer__bottom a:hover { color: rgba(255, 255, 255, 0.85); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal__updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal p { color: var(--ink-70); margin-bottom: 14px; }
.legal h3 {
  font-family: "Archivo", sans-serif; font-size: 19px; font-weight: 700;
  margin: 40px 0 12px;
}
.legal h3:first-of-type { margin-top: 0; }
.legal ul { margin: 0 0 20px 0; }
.legal ul li {
  position: relative; padding-left: 18px; color: var(--ink-70); margin-bottom: 6px;
}
.legal ul li::before { content: "–"; position: absolute; left: 0; color: var(--muted); }
.legal blockquote {
  margin: 16px 0 20px; padding: 20px 24px;
  background: var(--bg-soft); border-left: 3px solid var(--accent);
  border-radius: 8px; color: var(--ink); font-weight: 600; line-height: 1.8;
}
.legal__placeholder {
  padding: 64px 24px; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--radius); font-size: 15px;
}

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; translate: 0 36px; transition: opacity 0.9s var(--ease), translate 0.9s var(--ease); }
[data-reveal].in { opacity: 1; translate: 0 0; }
[data-reveal="left"] { translate: -40px 0; }
[data-reveal="left"].in { translate: 0 0; }
[data-reveal="right"] { translate: 40px 0; }
[data-reveal="right"].in { translate: 0 0; }
.stagger > * { opacity: 0; translate: 0 32px; transition: opacity 0.8s var(--ease), translate 0.8s var(--ease); }
.stagger.in > * { opacity: 1; translate: 0 0; }
.stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .stagger > * { opacity: 1; translate: 0 0; transition: none; }
  .hero__media { animation: none; }
  .ticker__track { animation-duration: 90s; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .gnb, .header__cta { display: none; }
  .burger { display: block; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .devpipe-cards--3, .devpipe-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 62px; --radius: 16px; }
  .hero__inner { padding: 120px 0 150px; }
  .step--media { flex-direction: column; }
  .step--media .step__media { flex: 0 0 auto; width: 100%; aspect-ratio: 16 / 9; }
  .hero__scroll { display: none; }
  .ticker__label { padding: 13px 14px; }
  .ticker__track { padding: 13px 0; }
  .stats { grid-template-columns: 1fr 1fr; border-top: 0; }
  .stat { border-left: 0; border-top: 1px solid var(--line); padding: 26px 4px 4px; }
  .section--dark .stat { border-color: rgba(255,255,255,0.14); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .pillar--rect { aspect-ratio: 4 / 3.4; }
  .pf-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pf__mw { font-size: 20px; }
  .pf__name { font-size: 13px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { flex-direction: column; gap: 16px; }
  .contact-panel__grid { grid-template-columns: 1fr 1fr; }
  .contact-panel__item--wide { grid-column: span 2; }
  .form__row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 12px; }
  .news-item__meta { display: flex; align-items: center; gap: 14px; }
  .news-item__arr { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .partners { grid-template-columns: 1fr 1fr; }
  .pipe { grid-template-columns: 1fr; }
  .pipe__no { grid-row: auto; }
  .devpipe-total { flex-direction: column; }
  .devpipe-group { flex-direction: column; }
  .devpipe-group__label { flex-direction: row; justify-content: center; }
  .devpipe-cards--3, .devpipe-cards--4 { grid-template-columns: 1fr; }
  .map-embed iframe { height: 320px; }
}

/* ---------- Back-to-top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0; visibility: hidden; translate: 0 12px;
  transition: 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; translate: 0 0; }
.to-top:hover { background: var(--accent); }
@media (max-width: 640px) {
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
