/* LATISGAMEHUB — polished B2B layout */

html {
  scroll-behavior: smooth;
}

.latishub {
  --hub-bg: #070b12;
  --hub-bg-mid: #0c1220;
  --hub-surface: #111827;
  --hub-elevated: #1a2332;
  --hub-border: rgba(255, 255, 255, 0.07);
  --hub-text: #f1f5f9;
  --hub-muted: #b4c8da;
  --hub-accent: #38bdf8;
  --hub-accent-bright: #7dd3fc;
  --hub-accent-dim: #0284c7;
  --hub-accent-glow: rgba(56, 189, 248, 0.22);
  --hub-warm: #fb923c;
  --hub-radius: 16px;
  --hub-radius-lg: 22px;
  --hub-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 12px 24px -8px rgba(0, 0, 0, 0.45);
  --hub-shadow-lg: 0 20px 50px -20px rgba(0, 0, 0, 0.55);
  --hub-font: "Noto Sans KR", "Segoe UI", system-ui, -apple-system, sans-serif;
  --hub-display: "Outfit", "Noto Sans KR", system-ui, sans-serif;
  margin: 0;
  background: var(--hub-bg);
  color: var(--hub-text);
  font-family: var(--hub-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.latishub * {
  box-sizing: border-box;
  word-break: inherit;
  overflow-wrap: inherit;
}

/* keep-all은 띄어쓰기가 있는 한국어에 맞춘 값 — 일본어/중국어는 띄어쓰기가 없어
   keep-all을 적용하면 문장 전체가 하나의 "단어"로 취급되어 줄바꿈 시 임의의
   지점(주로 맨 끝 한두 글자)에서 강제로 잘리는 문제가 생긴다. 해당 언어에서는
   브라우저 기본 CJK 줄바꿈(글자 단위)을 쓰도록 되돌린다. */
html:lang(ja) *,
html:lang(zh) * {
  word-break: normal !important;
}

/* word-break: normal이 되면 글자 단위로 어디서든 줄바꿈이 가능해지는 대신,
   문단 끝에 한두 글자만 남는 "외톨이 줄"이 자주 생긴다. text-wrap: pretty는
   브라우저가 문단 전체를 다시 살펴 그런 외톨이 줄이 생기지 않도록 줄바꿈
   지점을 조정해준다(제목처럼 아주 짧은 텍스트는 위의 .hub-hero__title처럼
   더 강한 text-wrap: balance를 개별 지정하면 이 규칙보다 우선 적용된다). */
:lang(ja),
:lang(zh) {
  text-wrap: pretty;
}

.hub-container {
  width: min(1080px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Header ---------- */
.hub-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.92) 0%, rgba(7, 11, 18, 0.78) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--hub-border);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.hub-header--scrolled {
  background: rgba(7, 11, 18, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hub-header--scrolled .hub-header__inner {
  min-height: 56px;
  padding: 0.65rem 0;
}

.hub-header--scrolled .hub-brand__logo {
  height: 34px;
}

.hub-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1080px, 100% - 2.5rem);
  margin-inline: auto;
  padding: 1rem 0;
  min-height: 64px;
  transition: min-height 0.25s, padding 0.25s;
}

.hub-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--hub-text);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}

.hub-brand__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: height 0.25s;
}

.hub-brand__text {
  background: linear-gradient(135deg, #fff 0%, var(--hub-accent-bright) 55%, var(--hub-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.2rem;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
}

.hub-nav__link {
  color: var(--hub-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.hub-nav__link:hover {
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.06);
}

.hub-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hub-border);
  border-radius: 12px;
  background: var(--hub-elevated);
  cursor: pointer;
}

.hub-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--hub-text);
  transition: transform 0.28s ease, opacity 0.2s;
}

.hub-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hub-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.hub-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.hub-nav-lock {
  overflow: hidden;
}

@media (max-width: 900px) {
  .hub-nav-toggle {
    display: flex;
  }

  .hub-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    background: rgba(7, 11, 18, 0.98);
    border-bottom: 1px solid var(--hub-border);
    gap: 0;
    box-shadow: var(--hub-shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }

  .hub-nav.hub-nav--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .hub-nav__link {
    padding: 0.85rem 0.5rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .hub-nav__link:last-child {
    border-bottom: none;
  }
}

/* ---------- Hero ---------- */
.hub-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem 5rem;
  overflow: hidden;
  background: var(--hub-bg);
}

.hub-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* 영상 전환 공백 시 poster 대신 어두운 면이 보이게 */
  background: var(--hub-bg);
}
.hub-hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: var(--hub-bg);
}
.hub-hero__video.is-visible { opacity: 1; }
.hub-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,11,18,0.35) 0%,
    rgba(7,11,18,0.55) 45%,
    rgba(7,11,18,0.88) 100%
  );
}

.hub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -15%, rgba(56, 189, 248, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(251, 146, 60, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, var(--hub-bg) 0%, var(--hub-bg-mid) 45%, #0a101c 100%);
}

.hub-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}
.hub-hero__scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.hub-hero__scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: hub-scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes hub-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

.hub-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.hub-hero__brand {
  margin: 0 0 1.1rem;
  font-family: var(--hub-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hub-accent-bright);
}

.hub-hero__title {
  font-family: var(--hub-display);
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin: 0 0 1.15rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hub-hero__sub {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hub-hero .hub-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #e2e8f0;
}

.hub-hero .hub-btn--ghost:hover {
  border-color: var(--hub-accent-bright);
  color: var(--hub-accent-bright);
  background: rgba(56, 189, 248, 0.08);
}

/* Hero staged reveal */
.hub-hero-stage {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hub-hero-stage--1 { transition-delay: 0.05s; }
.hub-hero-stage--2 { transition-delay: 0.22s; }
.hub-hero-stage--3 { transition-delay: 0.4s; }
.hub-hero-stage--4 { transition-delay: 0.55s; }
.hub-hero-ready .hub-hero-stage {
  opacity: 1;
  transform: translateY(0);
}

/* ── 언어 스위처 ── */
.hub-lang {
  position: relative;
  margin-left: auto;
}
.hub-lang__btn {
  display: flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hub-border);
  border-radius: 8px;
  color: var(--hub-muted);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--hub-font);
}
.hub-lang__btn:hover { border-color: var(--hub-accent); color: var(--hub-accent-bright); }
.hub-lang__btn:focus-visible,
.hub-nav__link:focus-visible,
.hub-btn:focus-visible,
.hub-services__row:focus-visible,
.hub-lang__item:focus-visible {
  outline: 2px solid var(--hub-accent);
  outline-offset: 2px;
}
.hub-lang__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  background: var(--hub-elevated);
  border: 1px solid var(--hub-border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  overflow: hidden;
  min-width: 140px;
  z-index: 200;
}
.hub-lang.open .hub-lang__dropdown { display: block; }
.hub-lang__item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem; color: var(--hub-muted);
  cursor: pointer; transition: background 0.12s, color 0.12s;
  border: none; background: none; width: 100%; text-align: left;
  font-family: var(--hub-font);
}
.hub-lang__item:hover { background: rgba(255,255,255,0.05); color: var(--hub-text); }
.hub-lang__item.active { color: var(--hub-accent-bright); }

.hub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s, border-color 0.18s, background 0.18s, color 0.18s;
}

.hub-btn--lg {
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  border-radius: 14px;
}

.hub-btn--primary {
  background: linear-gradient(135deg, var(--hub-accent) 0%, var(--hub-accent-dim) 100%);
  color: #020617;
  box-shadow: 0 8px 28px var(--hub-accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hub-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 40px rgba(56, 189, 248, 0.35);
}

.hub-btn--ghost {
  border: 1px solid var(--hub-border);
  background: var(--hub-elevated);
  color: var(--hub-text);
}

.hub-btn--ghost:hover {
  border-color: rgba(56, 189, 248, 0.45);
  color: var(--hub-accent-bright);
}

/* ---------- Section shell ---------- */
.hub-section {
  scroll-margin-top: 5.5rem;
  padding: 5rem 1.25rem;
  position: relative;
}

/* ── 스크롤 리빌 애니메이션 ── */
/* 배경 이미지는 항상 보이고, 콘텐츠 요소만 개별 애니메이션 */
.hub-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hub-reveal.hub-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 딜레이 유틸 */
.hub-reveal--d1 { transition-delay: 0.12s; }
.hub-reveal--d2 { transition-delay: 0.25s; }
.hub-reveal--d3 { transition-delay: 0.38s; }
.hub-reveal--d4 { transition-delay: 0.5s; }

.hub-section__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.hub-section__intro--left {
  text-align: left;
  margin-left: 0;
  max-width: 48rem;
}

.hub-section__kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0284c7;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.75rem;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.hub-section__kicker--on-dark {
  color: var(--hub-accent-bright);
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.18);
}

.hub-section__title {
  font-family: var(--hub-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 0.65rem;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-section__title--left {
  text-align: left;
}

.hub-section__lead {
  text-align: center;
  color: #bdd0e0;
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 밝은 섹션에서는 section lead를 어두운 색으로 */
.hub-section--light .hub-section__lead {
  color: #475569;
}

.hub-section__intro--left .hub-section__lead {
  margin-left: 0;
  text-align: left;
}

.hub-value {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hub-value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.hub-value__item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.hub-value__num {
  font-family: var(--hub-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0284c7;
  line-height: 1.3;
  padding-top: 0.15rem;
}

.hub-value__title {
  margin: 0 0 0.45rem;
  font-family: var(--hub-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #0f172a;
  word-break: keep-all;
}

.hub-value__text {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
  word-break: keep-all;
}

.hub-card {
  background: var(--hub-elevated);
  border: 1px solid var(--hub-border);
  border-radius: var(--hub-radius);
  padding: 1.6rem 1.45rem;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.hub-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: var(--hub-shadow);
  transform: translateY(-3px);
}

.hub-card__title {
  font-size: 1.08rem;
  margin: 0 0 0.55rem;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-card__text {
  margin: 0;
  color: #c0d2e2;
  font-size: 0.94rem;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ── 섹션 배경 이미지 (공통) ── */
[data-hub-bg] {
  position: relative;
  overflow: hidden;
}

/* 이미지 레이어 */
[data-hub-bg]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--sec-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* 어두운 섹션용 그라데이션 오버레이 */
[data-hub-bg]:not(.hub-section--light)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 18, 0.68) 0%,
    rgba(7, 11, 18, 0.42) 35%,
    rgba(7, 11, 18, 0.42) 65%,
    rgba(7, 11, 18, 0.75) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* 밝은 섹션용 그라데이션 오버레이 */
[data-hub-bg].hub-section--light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(241, 245, 249, 0.72) 0%,
    rgba(241, 245, 249, 0.55) 40%,
    rgba(241, 245, 249, 0.55) 60%,
    rgba(241, 245, 249, 0.78) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* 콘텐츠는 이미지·오버레이 위에 */
[data-hub-bg] > .hub-container {
  position: relative;
  z-index: 1;
  /* opacity는 hub-reveal 개별 요소로 제어 */
}

.hub-services__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-services__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.45rem 0.35rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, padding 0.2s;
}

.hub-services__row:hover {
  background: rgba(56, 189, 248, 0.06);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hub-services__idx {
  font-family: var(--hub-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hub-accent);
  letter-spacing: 0.04em;
}

.hub-services__title {
  margin: 0 0 0.35rem;
  font-family: var(--hub-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--hub-text);
  word-break: keep-all;
}

.hub-services__desc {
  margin: 0;
  color: #b4c8da;
  font-size: 0.92rem;
  line-height: 1.6;
  word-break: keep-all;
}

.hub-services__more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hub-accent);
  white-space: nowrap;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
}

.hub-services__row:hover .hub-services__more {
  color: var(--hub-accent-bright);
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .hub-services__row {
    grid-template-columns: 2.5rem 1fr;
  }
  .hub-services__more {
    grid-column: 2;
    margin-top: 0.35rem;
  }
  .hub-value__item {
    grid-template-columns: 3rem 1fr;
    gap: 0.85rem;
  }
}

.hub-packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.hub-card--package {
  padding: 2rem 1.75rem;
}

.hub-card--package .hub-btn {
  margin-top: 1.35rem;
}

.hub-stats {
  padding: 3.5rem 1.25rem;
  background: linear-gradient(90deg, var(--hub-surface) 0%, var(--hub-elevated) 50%, var(--hub-surface) 100%);
  border-top: 1px solid var(--hub-border);
  border-bottom: 1px solid var(--hub-border);
}

.hub-stats__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}

.hub-stat__value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--hub-accent);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hub-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--hub-muted);
  line-height: 1.4;
}

.hub-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  max-width: 820px;
  margin-inline: auto;
}

.hub-process__list--timeline {
  gap: 0;
  position: relative;
  padding-left: 0.25rem;
}

.hub-process__list--timeline::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 1.6rem;
  bottom: 1.6rem;
  width: 2px;
  background: linear-gradient(180deg, #0284c7 0%, rgba(2, 132, 199, 0.15) 100%);
}

.hub-process__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.4rem 1.6rem;
  background: var(--hub-elevated);
  border: 1px solid var(--hub-border);
  border-radius: var(--hub-radius);
}

.hub-process__item--timeline {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.35rem 0 1.35rem 0.15rem;
  box-shadow: none;
}

.hub-process__item--timeline .hub-process__num {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0284c7;
  color: #0369a1;
  font-family: var(--hub-display);
  font-size: 0.78rem;
  box-shadow: 0 0 0 6px #f8fafc;
}

.hub-process__item--timeline:first-child .hub-process__num {
  background: #0284c7;
  color: #fff;
}

.hub-process__num {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.82rem;
  color: var(--hub-accent);
  font-weight: 700;
  padding-top: 0.2rem;
}

.hub-process__title {
  margin: 0 0 0.4rem;
  font-family: var(--hub-display);
  font-size: 1.06rem;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-process__desc {
  margin: 0;
  color: var(--hub-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-ref__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}

.hub-ref__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hub-ref__logo span {
  font-family: var(--hub-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
  word-break: keep-all;
}

.hub-ref__logo:hover {
  border-color: rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.hub-testimonials {
  background: var(--hub-surface);
  border-top: 1px solid var(--hub-border);
}

.hub-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}

.hub-card--quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
}

.hub-quote__text {
  margin: 0 0 1.35rem;
  font-size: 0.94rem;
  color: var(--hub-text);
  font-style: normal;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-quote__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hub-quote__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hub-accent-dim), var(--hub-accent));
  color: #020617;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.hub-quote__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

.hub-quote__role {
  font-size: 0.8rem;
  color: var(--hub-muted);
}

.hub-contact {
  padding-bottom: 5.5rem;
}

.hub-contact__box {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--hub-elevated);
  border: 1px solid var(--hub-border);
  border-radius: var(--hub-radius-lg);
  max-width: 560px;
}

.hub-contact__box--elevated {
  box-shadow: var(--hub-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(165deg, var(--hub-elevated) 0%, #151d2e 100%);
}

.hub-contact__title {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hub-contact__sub {
  margin: 0 0 1.6rem;
  color: var(--hub-muted);
  line-height: 1.7;
}

.hub-contact__channels {
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

.hub-contact__link {
  color: var(--hub-accent-bright);
  text-decoration: none;
  font-weight: 600;
}

.hub-contact__link:hover {
  text-decoration: underline;
}

.hub-contact__sep {
  color: var(--hub-muted);
  margin: 0 0.4rem;
}

.hub-contact__phone {
  color: var(--hub-muted);
  text-decoration: none;
}
.hub-contact__phone:hover {
  text-decoration: underline;
}

/* Footer */
.hub-footer {
  padding: 3rem 1.25rem 2.25rem;
  border-top: 1px solid var(--hub-border);
  background: linear-gradient(180deg, #040608 0%, #020305 100%);
}

.hub-footer__inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 720px) {
  .hub-footer__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: start;
  }

  .hub-footer__nav {
    justify-content: flex-end;
  }
}

.hub-footer__brand strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hub-footer__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .hub-footer__logo {
    margin-inline: 0;
  }
}

.hub-footer__tagline {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--hub-muted);
  line-height: 1.5;
  max-width: 320px;
}

.hub-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.hub-footer__nav a {
  color: var(--hub-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.hub-footer__nav a:hover {
  color: var(--hub-accent-bright);
}

.hub-footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: #64748b;
}

/* Light sections */
.hub-section--light {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  color: #1e293b;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hub-section__title--dark {
  color: #0f172a;
}

.hub-section__title--small {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hub-section__lead--dark {
  color: #475569;
}

.hub-card--paper {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.hub-card--paper:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.hub-card__title--dark {
  color: #0f172a;
}

.hub-card__text--muted {
  color: #64748b;
}

.hub-prose {
  max-width: 820px;
}

.hub-lead--dark {
  color: #334155;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  line-height: 1.75;
}

.hub-pill {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(56, 189, 248, 0.08) 100%);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 999px;
  color: #0369a1;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.hub-regbox {
  padding: 1.25rem 1.4rem;
  background: #fff;
  border-radius: var(--hub-radius);
  border: 1px solid rgba(14, 116, 144, 0.18);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.hub-note {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

.hub-note--inline {
  margin-top: 1.25rem;
}

.hub-h3 {
  font-size: 1.12rem;
  color: #0f172a;
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}

.hub-h3--spaced {
  margin-top: 2.75rem;
}

.hub-h4 {
  font-size: 1rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.hub-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #475569;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-list--compact {
  font-size: 0.9rem;
}

.hub-list--numbered {
  list-style: decimal;
}

.hub-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
  margin: 1.5rem 0;
}

.hub-col-card {
  background: #fff;
  padding: 1.2rem 1.3rem;
  border-radius: var(--hub-radius);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.hub-warning {
  font-size: 0.875rem;
  color: #92400e;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  padding: 1.1rem 1.25rem;
  border-radius: var(--hub-radius);
  margin: 1.5rem 0 0;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hub-loc-detail {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hub-border);
}

/* 어두운 배경 섹션 내 hub-h3 텍스트 가시성 보정 */
.hub-loc .hub-h3,
.hub-mkt .hub-h3 {
  color: var(--hub-accent-bright);
}

.hub-loc .hub-h4 {
  color: var(--hub-text);
}

.hub-loc .hub-list {
  color: var(--hub-muted);
}

.hub-loc .hub-list li {
  color: var(--hub-muted);
}

.hub-section--inner {
  max-width: 800px;
  margin-inline: auto;
}

.hub-aipe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.hub-aipe__card {
  background: linear-gradient(165deg, var(--hub-elevated) 0%, #151d2c 100%);
  border: 1px solid var(--hub-border);
  border-radius: var(--hub-radius);
  padding: 1.5rem 1.35rem;
  position: relative;
  overflow: hidden;
}

.hub-aipe__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hub-aipe__step {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hub-accent-bright);
}

.hub-aipe__title {
  margin: 0.4rem 0 0.15rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.hub-aipe__en {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: #98b8ce;
  font-weight: 500;
}

.hub-aipe__desc {
  margin: 0;
  font-size: 0.92rem;
  color: #c0d2e2;
  line-height: 1.65;
}

.hub-loc-effect {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hub-border);
}

.hub-stats__inner--light {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--hub-radius);
  padding: 2rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hub-stat__value--blue {
  color: var(--hub-accent-bright);
}

.hub-stat__label--dark {
  color: var(--hub-muted);
}

.hub-gm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

/* ── CM 운영 프로세스 — 가로 스텝 그리드 ── */
.hub-cm-steps {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--hub-radius);
  overflow: hidden;
}

.hub-cm-step {
  padding: 0.7rem 0.75rem 0.75rem;
  background: rgba(17, 24, 39, 0.7);
  border-right: 1px solid rgba(56, 189, 248, 0.12);
  position: relative;
}

.hub-cm-step:last-child {
  border-right: none;
}

.hub-cm-step__head {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.hub-cm-step__phase {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--hub-accent);
  letter-spacing: 0.04em;
}

.hub-cm-step__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hub-text);
  word-break: keep-all;
  line-height: 1.3;
}

.hub-cm-step__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hub-cm-step__items li {
  font-size: 0.72rem;
  color: #b4c8da;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: break-word;
  padding-left: 0.85rem;
  position: relative;
}

.hub-cm-step__items li::before {
  content: "·";
  position: absolute;
  left: 0.2rem;
  color: var(--hub-accent-dim);
  font-weight: 900;
}

/* 모바일: 2열 → 1열 폴백 */
@media (max-width: 640px) {
  .hub-cm-steps {
    grid-template-columns: 1fr 1fr;
  }
  .hub-cm-step:nth-child(even) {
    border-right: none;
  }
  .hub-cm-step:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(56, 189, 248, 0.12);
  }
  .hub-cm-step {
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  }
}

@media (max-width: 400px) {
  .hub-cm-steps {
    grid-template-columns: 1fr;
  }
  .hub-cm-step {
    border-right: none;
  }
}

.hub-monitor {
  margin-top: 2.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fdba74;
  border-radius: var(--hub-radius);
  box-shadow: 0 4px 20px rgba(251, 146, 60, 0.12);
}

.hub-monitor .hub-h3 {
  margin-top: 0;
}

.hub-monitor .hub-list {
  color: #9a3412;
}

.hub-monitor .hub-lead--dark {
  color: #7c2d12;
}

.hub-mkt-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.hub-mkt-col {
  background: var(--hub-elevated);
  border: 1px solid var(--hub-border);
  border-radius: var(--hub-radius);
  padding: 1.15rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hub-mkt-col:hover {
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: var(--hub-shadow);
}

.hub-mkt-col__title {
  font-size: 0.9rem;
  margin: 0 0 0.55rem;
  color: var(--hub-accent-bright);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hub-strat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
  margin-top: 1rem;
}

.hub-strat-card {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--hub-radius);
  padding: 1.25rem 1.15rem;
  transition: transform 0.2s;
}

.hub-strat-card:hover {
  transform: translateY(-2px);
}

.hub-strat-card__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hub-text);
}

/* 어두운 카드 내 리스트 항목 가시성 보정 */
.hub-mkt-col .hub-list,
.hub-strat-card .hub-list,
.hub-card--service .hub-list,
.hub-card:not(.hub-card--paper) .hub-list {
  color: #b4c8da;
}

.hub-process__item--light:not(.hub-process__item--timeline) {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.hub-process__item--timeline.hub-process__item--light {
  background: transparent;
  border: none;
  box-shadow: none;
}

.hub-process__title--dark {
  color: #0f172a;
}

.hub-process__desc--muted {
  color: #64748b;
}
