/* ============================================
   WANTED AX v7
   Liquid Glass System — 한글 Pretendard + 영문 Helvetica Neue
   ============================================ */

:root {
  /* Light palette */
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-muted: #F4F4F5;
  --fg: #0A0A0B;
  --fg-muted: #525560;
  --fg-faint: #8A8E99;
  --border-glass: rgba(0, 0, 0, 0.1);
  --border-soft: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  
  /* Wanted accent */
  --wanted-blue: #3366FF;
  --wanted-blue-deep: #1E47D9;
  
  /* Type — 본문 Pretendard, hero display는 Instrument Serif */
  --font-sans: 'Pretendard', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Instrument Serif', 'Pretendard', serif;
  
  /* Layout */
  --gutter: clamp(24px, 4vw, 64px);
  --section: clamp(80px, 11vw, 140px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ============================================
   BACKGROUND — 깔끔한 화이트
   ============================================ */
.bg-layer { display: none; }

/* ============================================
   SURFACE — 화이트 카드 + 연한 회색 테두리
   ============================================ */
.liquid-glass {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  box-shadow: none;
}

.liquid-glass.thicker {
  background: var(--bg-soft);
}

/* ============================================
   LIQUID GLASS DARK — Hero용 진짜 글래스 효과
   ============================================ */
.liquid-glass-dark {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ============================================
   ANIMATED HEADING (글자 단위 stagger)
   ============================================ */
.anim-heading {
  display: flex;
  flex-wrap: wrap;
}

.anim-heading-line {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .anim-heading-line {
    flex-wrap: wrap;
    white-space: normal;
  }
}

.anim-heading-line.center { justify-content: center; }
.anim-heading-line.left { justify-content: flex-start; }

.anim-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.anim-char.shown {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   FADE IN
   ============================================ */
.fade-in {
  opacity: 0;
  transition: opacity 1000ms ease-out;
}

.fade-in.shown { opacity: 1; }

/* Fade-rise: opacity + Y translate (Velorah 스타일) */
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-rise         { animation: fade-rise 0.8s ease-out both; }
.animate-fade-rise-delay   { animation: fade-rise 0.8s ease-out 0.2s both; }
.animate-fade-rise-delay-2 { animation: fade-rise 0.8s ease-out 0.4s both; }

/* ============================================
   PAGE
   ============================================ */
main { position: relative; z-index: 10; }

.page { display: block; }

/* ============================================
   NAV — Hero 위에서는 라이트, 스크롤 후 다크
   ============================================ */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: backdrop-filter 250ms, background 250ms, padding 250ms, border-color 250ms;
  border-bottom: 1px solid transparent;
}

/* 스크롤 내려가면 화이트 글래스 배경 */
.nav-wrap.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px var(--gutter);
}

.nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--fg);
  transition: color 250ms;
}

.nav-brand-logo {
  display: block;
  height: 22px;
  width: auto;
  transition: filter 250ms;
}

.nav-wrap.scrolled .nav-brand {
  color: var(--fg);
}

/* 원형 마크 제거 - Wanted AX 텍스트만 */
.nav-brand-mark {
  display: none;
}

.nav-brand > span:not(.nav-brand-mark) {
  display: inline;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
  margin-right: 0;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 200ms;
}

.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }

/* 스크롤 후 - 동일한 다크 텍스트 유지 */
.nav-wrap.scrolled .nav-links a {
  color: var(--fg-muted);
}

.nav-wrap.scrolled .nav-links a:hover { color: var(--fg); }
.nav-wrap.scrolled .nav-links a.active { color: var(--fg); }

.nav-cta {
  display: inline-block;
  margin-left: 12px;
  padding: 9px 22px;
  background: var(--fg);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 200ms, background 250ms;
}

.nav-cta:hover {
  background: rgba(10, 10, 11, 0.85);
}

/* 스크롤 후 - 동일 유지 */
.nav-wrap.scrolled .nav-cta {
  background: var(--fg);
  color: #FFFFFF;
}

.nav-wrap.scrolled .nav-cta:hover {
  background: rgba(10, 10, 11, 0.85);
}

/* === Dark-hero pages: white GNB until scrolled === */
body.has-dark-hero .nav-wrap:not(.scrolled) .nav-brand {
  color: #FFFFFF;
}

body.has-dark-hero .nav-wrap:not(.scrolled) .nav-brand-logo {
  filter: brightness(0) invert(1);
}

body.has-dark-hero .nav-wrap:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

body.has-dark-hero .nav-wrap:not(.scrolled) .nav-links a:hover,
body.has-dark-hero .nav-wrap:not(.scrolled) .nav-links a.active {
  color: #FFFFFF;
}

body.has-dark-hero .nav-wrap:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.has-dark-hero .nav-wrap:not(.scrolled) .nav-cta:hover {
  background: #FFFFFF;
  color: var(--fg);
  border-color: #FFFFFF;
}

/* ============================================
   햄버거 메뉴 (모바일)
   ============================================ */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 0;
  transition: color 250ms;
}

body.has-dark-hero .nav-wrap:not(.scrolled) .nav-toggle {
  color: #FFFFFF;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 24px var(--gutter);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 0;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px var(--gutter) 64px;
  gap: 4px;
}

.mobile-menu-nav a {
  display: block;
  padding: 20px 4px;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
  transition: color 200ms;
}

.mobile-menu-nav a:hover { color: var(--wanted-blue); }

.mobile-menu-cta {
  margin-top: auto;
  background: var(--fg);
  color: #FFFFFF !important;
  text-align: center;
  border-radius: 100px;
  padding: 18px 32px !important;
  font-size: 15px !important;
  border-bottom: none !important;
}

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 700px) {
  .nav-brand-mark { width: 32px; height: 32px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 130px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* hero-content - 위쪽 공간 다 차지하면서 콘텐츠는 가운데 정렬 */
.hero-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

/* hero-bottom - 진짜 hero 하단에 붙음, GNB 폭 */
.hero-bottom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 0;
  flex-shrink: 0;
}

/* Hero 배경 — 시네마틱 정적 이미지 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('images/home/home_01_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 이미지 로딩 실패 시 백업 다크 톤 */
  background-color: #0A1418;
  overflow: hidden;
}

.hero-video {
  display: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* 이미지 위 오버레이 — 가운데 텍스트 영역만 살짝 어둡게 + 하단 다크 페이드 */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-pill-dot {
  width: 14px;
  height: 14px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  animation: none;
  border-radius: 0;
  position: relative;
}

.hero-pill-dot::before {
  content: "✦";
  color: #C9D4FF;
  font-size: 12px;
  font-weight: 400;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.5vw, 92px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 1100px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* AnimatedHeading 글자 — 고딕 + 화이트 100% 통일 */
.hero h1 .anim-char,
.hero .anim-heading .anim-char {
  color: #FFFFFF !important;
  font-family: var(--font-sans) !important;
}

.hero .anim-heading-line {
  justify-content: center !important;
}

/* 두 번째 라인도 화이트 100% (이전 muted 제거) */
.hero .anim-heading-line:nth-child(2) .anim-char {
  color: #FFFFFF !important;
}

.hero-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 36px;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.hero-meta {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 20px;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 150ms;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 150ms;
}

.btn-primary {
  background: var(--fg);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--wanted-blue);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--fg);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 150ms;
}

.btn:hover .btn-arrow { transform: translateX(2px); }

/* Pill-shaped variant for prominent CTAs */
.btn-pill {
  border-radius: 100px !important;
  padding: 14px 32px;
}

/* Hero tagline pill (large liquid glass) */
.hero-tagline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 64px;
}

.hero-tagline em {
  font-style: normal;
  font-weight: 400;
}

/* Hero trust */
.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-trust-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 600;
}

/* 마퀴 컨테이너 - viewport 풀폭 + hero 하단 밀착 */
.hero-marquee {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  position: relative;
  overflow: hidden;
  padding: 8px 0 0;
}

/* 양끝 페이드 제거 - 깔끔하게 */
.hero-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  align-items: center;
}

.hero-marquee-track:hover { animation-play-state: paused; }

.hero-trust-logos {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-trust-logo {
  font-size: 16px;
  color: var(--fg-faint);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 150ms;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.hero-trust-logo:hover { color: var(--fg); }

.hero-trust-logo img {
  height: 80px;
  width: auto;
  display: block;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 200ms;
}

@media (max-width: 700px) {
  .hero-trust-logo img { height: 58px; }
  .hero-marquee-track { gap: 26px; }
}

.hero-trust-logo:hover img { opacity: 1; }

/* Logos that are already white-on-transparent — skip the invert */
.hero-trust-logo--keep img {
  filter: none;
}

/* Hero 컨텍스트 오버라이드 - 다크 배경 위 화이트 톤 */
.hero .hero-trust-label {
  color: rgba(255, 255, 255, 0.5);
}

.hero .hero-trust-logo {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 200ms;
}

.hero .hero-trust-logo:hover {
  color: #FFFFFF;
}

.hero .btn-primary,
.inner-hero.inner-hero-image .btn-primary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  padding: 18px 48px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 250ms;
  cursor: pointer;
}

.hero .btn-primary::before,
.inner-hero.inner-hero-image .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero .btn-primary:hover,
.inner-hero.inner-hero-image .btn-primary:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.hero .btn-secondary,
.inner-hero.inner-hero-image .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 100px;
  padding: 18px 36px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 250ms;
  cursor: pointer;
}

.hero .btn-secondary::before,
.inner-hero.inner-hero-image .btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%,
    rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%,
    rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero .btn-secondary:hover,
.inner-hero.inner-hero-image .btn-secondary:hover {
  transform: scale(1.03);
  color: #FFFFFF;
}

/* Hide btn-arrow svg on image hero pages (matches home hero — clean text only) */
.inner-hero.inner-hero-image .btn-primary .btn-arrow,
.inner-hero.inner-hero-image .btn-secondary .btn-arrow {
  display: none;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section) var(--gutter);
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: none;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 900px;
  margin: 0 auto 16px;
}

.section-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}

/* ============================================
   PAIN CARDS — 이미지 위 텍스트 오버레이
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 800px) { 
  .pain-grid { 
    grid-template-columns: 1fr;
    gap: 16px;
  } 
}

.pain-card {
  position: relative;
  display: block;
  background: transparent;
  border: none;
  border-radius: 24px;
  padding: 0;
  min-height: auto;
  text-align: left;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: default;
}

/* 이미지 위 다크 그라디언트 오버레이 — 텍스트 가독성 */
.pain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.pain-card-1 {
  background-image: url('images/home/home_02.png?v=3');
  background-position: center;
  background-size: cover;
}
.pain-card-2 { background-image: url('images/home/home_03.png'); }
.pain-card-3 { background-image: url('images/home/home_04.png'); }

.pain-card-dev-1 { background-image: url('images/dev/dev_02.png'); }
.pain-card-dev-2 { background-image: url('images/dev/dev_03.png'); }
.pain-card-dev-3 {
  background-image: url('images/dev/dev_04.png?v=2');
  background-position: center top;
}

.pain-num { display: none; }

/* 카드 내부 콘텐츠 - 하단 좌측 정렬 (이미지 위) */
.pain-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

.pain-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: none;
  letter-spacing: -0.005em;
}

/* 기존 .pain-card-image (사용 안함) */
.pain-card-image,
.pain-card-image-1,
.pain-card-image-2,
.pain-card-image-3 { display: none; }

/* Pain quote — 박스 제거, 텍스트만 가운데 */
.pain-quote {
  margin-top: 96px;
  padding: 0;
  border-radius: 0;
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.pain-quote-text {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 880px;
  margin: 0 auto 16px;
}

.pain-quote-after {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ============================================
   SOLUTION CARDS — Proxima 스타일 (빛 그라디언트 + 큰 타이포)
   ============================================ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-card {
  position: relative;
  border-radius: 24px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 250ms, box-shadow 250ms;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.solution-card::before,
.solution-card::after {
  display: none !important;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.solution-tag { display: none; }

/* Image visual area on top with category label overlay */
.solution-visual {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  overflow: hidden;
}

.solution-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.solution-visual-edu      { background-image: url('images/edu/edu_01_hero.png?v=3'); }
.solution-visual-dev      { background-image: url('images/dev/dev_01_hero.png'); }
.solution-visual-platform { background-image: url('images/platform/platform_01_hero.png'); }

.solution-label {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 2;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

@media (max-width: 700px) {
  .solution-visual { height: 240px; }
  .solution-label { top: 20px; left: 22px; }
}

/* 가짜 UI 박스 - 흰색 카드 + 그림자 */
.fake-ui {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06);
  padding: 18px 20px;
  width: 100%;
  max-width: 280px;
  position: relative;
  font-family: var(--font-sans);
}

.fake-ui-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fake-ui-row + .fake-ui-row { margin-top: 10px; }

.fake-ui-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 10px;
}

.fake-ui-dot.gray {
  background: rgba(0, 0, 0, 0.15);
}

.fake-ui-text {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: #1A1A1A;
}

.fake-ui-text-muted {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

.fake-ui-meta {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.fake-ui-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #FEE2E2;
  color: #DC2626;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
}

.fake-ui-pill.green {
  background: #D1FAE5;
  color: #059669;
}

.fake-ui-pill.blue {
  background: #DBEAFE;
  color: #2563EB;
}

.fake-ui-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.fake-ui-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 12px 0;
}

.fake-ui-bar-track {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 6px;
}

.fake-ui-bar-fill {
  height: 100%;
  background: #1A1A1A;
  border-radius: 100px;
}

.fake-ui-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.fake-ui-grid-cell {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 8px 10px;
}

.fake-ui-grid-cell-label {
  font-size: 9px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
  margin-bottom: 2px;
}

.fake-ui-grid-cell-value {
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 600;
}

.fake-ui-grid-cell-suffix {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

/* Card content area - bottom (title + desc + circular arrow) */
.solution-content {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
}

@media (max-width: 700px) {
  .solution-content { padding: 24px 26px; }
}

.solution-text {
  flex: 1;
  min-width: 0;
}

.solution-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 8px;
  text-align: left;
}

.solution-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  text-align: left;
}

.solution-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: transform 200ms;
}

.solution-card:hover .solution-arrow {
  transform: translateX(2px);
}

/* ============================================
   STATS — 박스 없이 깔끔하게
   ============================================ */
.stats-band {
  padding: 24px var(--gutter) 80px;
}

.stats-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px;
  box-shadow: none;
}

@media (max-width: 800px) {
  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
    row-gap: 24px;
  }
}

.stat {
  padding: 0 24px;
  border-left: 1px solid var(--border-soft);
}

.stat:first-child { border-left: none; padding-left: 0; }

@media (max-width: 800px) {
  .stat { border-left: none; padding-left: 0; padding-right: 0; }
  .stat:nth-child(2) { border-left: 1px solid var(--border-soft); padding-left: 24px; }
}

.stat-value {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* ============================================
   BLOG TEASER
   ============================================ */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) { .blog-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .blog-cards { grid-template-columns: 1fr; } }

.blog-card {
  position: relative;
  display: block;
  border-radius: 24px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-soft);
  transition: transform 350ms ease;
}

.blog-card:hover { transform: scale(1.01); }

/* Dark gradient overlay for text legibility */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Stronger overlay for cards whose images have busy/light bottoms */
[data-route="article-sookmyung-prompthon-2602"].blog-card::after,
[data-route="article-ax-day-2512"].blog-card::after,
[data-route="article-public-service-2512"].blog-card::after {
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.95) 100%);
}

/* Per-card backgrounds */
/* .blog-card-1 ~ 4 fallback removed — image now driven by [data-route] selector below */

/* Override liquid-glass for blog cards (image-based now) */
.blog-card.liquid-glass {
  background-color: var(--bg-soft);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}

.blog-meta {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
}

.blog-cat {
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-title-card {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Hide excerpt — image cards rely on title only for visual cleanliness */
.blog-excerpt {
  display: none;
}

/* ============================================
   DIFFERENCE / SOLUTION cards (Agent Dev)
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
  position: relative;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

/* Dark gradient overlay for text readability */
.diff-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.diff-card-1 { background-image: url('images/dev/dev_05.png?v=2'); }
.diff-card-2 { background-image: url('images/dev/dev_06.png?v=2'); }
.diff-card-3 { background-image: url('images/dev/dev_07.png?v=2'); }

.diff-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.diff-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: -0.005em;
}

/* ============================================
   CHAMPION — banner cards with image background
   ============================================ */
.champion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .champion-grid { grid-template-columns: 1fr; }
}

.champion-card {
  position: relative;
  border-radius: 28px;
  padding: 48px 48px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 280px;
  display: flex;
  align-items: stretch;
  transition: transform 250ms;
}

@media (max-width: 700px) {
  .champion-card { padding: 36px 28px; min-height: 240px; }
}

.champion-card:hover { transform: translateY(-2px); }

a.champion-card {
  text-decoration: none;
  color: inherit;
}

.champion-card.featured {
  background-image: url('images/home/home_05_Champion.png');
  background-color: var(--bg-soft);
}

.champion-card.lab {
  background-image: url('images/home/home_06_Laboratory.png');
  background-color: var(--bg-soft);
}

/* Subtle dark overlay for text readability */
.champion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.champion-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 520px;
}

/* Hide tag + note per simplification */
.champion-tag,
.champion-note {
  display: none;
}

.champion-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.champion-desc {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.005em;
}

.champion-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.champion-list li {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.champion-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.champion-list-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.005em;
}

.champion-list-detail {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.005em;
  line-height: 1.5;
}

.champion-list-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

/* 1개 카드 단독 — 가운데, 폭 제한 */
.champion-grid-single {
  grid-template-columns: 1fr;
}

.champion-more {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 200ms;
}

.champion-card:hover .champion-more {
  border-color: #FFFFFF;
}

@media (max-width: 600px) {
  .champion-list li {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 4px;
  }
  .champion-list-detail {
    grid-column: 1 / -1;
  }
}

.champion-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-sans);
  transition: all 200ms;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  letter-spacing: -0.005em;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}

.champion-cta:hover {
  background: #FFFFFF;
  color: var(--fg);
  border-color: #FFFFFF;
}

/* ============================================
   FINAL CTA — 블랙 배경 + 화이트 텍스트
   ============================================ */
.final-cta {
  padding: 0;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.final-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 140px var(--gutter);
}

.final-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.final-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  letter-spacing: -0.005em;
  line-height: 1.55;
}

/* 3-up CTA grid */
.final-options {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 32px;
}

/* Single-option case — center it with constrained width */
.final-options:has(.final-option:only-child) {
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
}

/* 2개일 때 — 가운데 정렬, 빈 우측 칸 없애기 */
.final-options:has(.final-option:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(240px, 360px));
  justify-content: center;
}

@media (max-width: 800px) {
  .final-options { grid-template-columns: 1fr; }
}

.final-option {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 200ms;
  text-align: left;
  text-decoration: none;
  color: inherit;
}

.final-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.final-option-text {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.005em;
}

.final-option svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
}

.final-option:hover svg {
  color: #FFFFFF;
  transform: translateX(2px);
}

/* Footnote meta */
.final-meta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.005em;
  margin-top: 8px;
}

.final-meta-item::before {
  content: "·";
  margin-right: 6px;
}

/* Hide old single-button layout */
.final-cta-btn { display: none !important; }

/* ============================================
   INNER PAGE HERO (sub pages)
   ============================================ */
.inner-hero {
  padding: 160px var(--gutter) 60px;
  text-align: center;
  position: relative;
}

/* Blog page hero — tighter bottom spacing */
#page-blog .inner-hero {
  padding-bottom: 32px;
}

/* Image-background variant for inner heroes — fullscreen like home */
.inner-hero.inner-hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  padding: 130px var(--gutter) 40px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .inner-hero.inner-hero-image {
    min-height: 90vh;
    background-position: center center;
  }
}

/* Per-page hero backgrounds */
.inner-hero.inner-hero-dev {
  background-image: url('images/dev/dev_01_hero.png');
}

.inner-hero.inner-hero-edu {
  background-image: url('images/edu/edu_01_hero.png?v=3');
}

.inner-hero.inner-hero-platform {
  background-image: url('images/platform/platform_01_hero.png');
}

.inner-hero.inner-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%);
  z-index: 0;
  pointer-events: none;
}

.inner-hero.inner-hero-image .inner-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.inner-hero.inner-hero-image .inner-eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.inner-hero.inner-hero-image .inner-headline {
  color: #FFFFFF;
}

.inner-hero.inner-hero-image .inner-sub {
  color: rgba(255, 255, 255, 0.85);
}

/* === Trust strip INSIDE image hero — pinned at bottom, glass treatment === */
.inner-hero.inner-hero-image .trust-strip-section {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1280px;
  flex-shrink: 0;
}

.inner-hero.inner-hero-image .trust-strip-section .trust-strip {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  margin: 0;
  max-width: 100%;
}

.inner-hero.inner-hero-image .trust-strip-item {
  border-right-color: rgba(255, 255, 255, 0.15);
}

.inner-hero.inner-hero-image .trust-strip-label {
  color: #C4D4FF;
}

.inner-hero.inner-hero-image .trust-strip-value {
  color: #FFFFFF;
}

.inner-hero.inner-hero-image .trust-strip-desc {
  color: rgba(255, 255, 255, 0.7);
}

.inner-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.inner-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  margin-bottom: 28px;
}

.inner-headline {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--fg);
}

.inner-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  letter-spacing: -0.005em;
}

.inner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 16px;
  margin: 64px auto 0;
  max-width: 1280px;
  overflow: hidden;
}

/* ============================================
   ENNOIA SHOWCASE — gradient background + product UI
   ============================================ */
.ennoia-showcase {
  padding: 40px var(--gutter) 80px;
}

.ennoia-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ennoia-showcase-frame {
  position: relative;
  border-radius: 28px;
  background-image: url('images/platform/platform_01_hero.png');
  background-size: cover;
  background-position: center;
  padding: 80px 80px 0;
  overflow: hidden;
}

.ennoia-showcase-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 0;
}

.ennoia-showcase-frame > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .ennoia-showcase-frame { padding: 48px 32px 0; border-radius: 20px; }
}

@media (max-width: 600px) {
  .ennoia-showcase-frame { padding: 32px 20px 0; }
}

.ennoia-showcase-ui {
  width: 100%;
  aspect-ratio: 1040 / 600;
  border-radius: 14px 14px 0 0;
  background-image: url('images/history/img-14-d13b297ac6.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  box-shadow: 0 -4px 32px rgba(20, 30, 80, 0.08), 0 -1px 0 rgba(255, 255, 255, 0.4) inset;
}

/* Standalone trust-strip section (placed below hero) */
.trust-strip-section {
  padding: 0 var(--gutter);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.trust-strip-section .trust-strip {
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.trust-strip-section .trust-strip-value {
  color: var(--fg);
}

.trust-strip-section .trust-strip-desc {
  color: var(--fg-muted);
}

/* Light variant — impactful statistics with box wrapper */
.trust-strip-section-light {
  margin-top: 0;
  padding: 80px var(--gutter) 0;
}

.trust-strip-section-light .trust-strip {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  box-shadow: none;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1280px;
  padding: 40px;
  overflow: hidden;
}

.trust-strip-section-light .trust-strip-item {
  padding: 0 24px;
  border-left: 1px solid var(--border-soft);
  border-right: none;
  border-bottom: none;
}

.trust-strip-section-light .trust-strip-item:first-child {
  border-left: none;
  padding-left: 0;
}

@media (max-width: 800px) {
  .trust-strip-section-light .trust-strip {
    padding: 32px;
    row-gap: 24px;
  }
  .trust-strip-section-light .trust-strip-item {
    padding: 0;
    border-left: none;
  }
  .trust-strip-section-light .trust-strip-item:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
  .trust-strip-section-light .trust-strip-item:nth-child(2) {
    border-left: 1px solid var(--border-soft);
    padding-left: 24px;
  }
}

.trust-strip-section-light .trust-strip-label {
  display: none;
}

.trust-strip-section-light .trust-strip-value {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.trust-strip-section-light .trust-strip-desc {
  font-size: 13.5px;
  color: var(--fg-faint);
  letter-spacing: -0.005em;
  line-height: 1.5;
}

@media (max-width: 800px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }

.trust-strip-item {
  padding: 24px 28px;
  border-right: 1px solid var(--border-soft);
  text-align: left;
}

.trust-strip-item:last-child { border-right: none; }

@media (max-width: 800px) {
  .trust-strip-item:nth-child(2) { border-right: none; }
  .trust-strip-item:nth-child(odd) { border-right: 1px solid var(--border-soft); }
  .trust-strip-item:nth-child(1), .trust-strip-item:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
}

.trust-strip-label {
  font-size: 11px;
  color: var(--wanted-blue);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust-strip-value {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 4px;
}

.trust-strip-desc {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
}

/* ============================================
   JOURNEY (PLATFORM)
   ============================================ */
.journey-section {
  padding: var(--section) var(--gutter);
}

.journey-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

@media (max-width: 900px) { .journey-head { grid-template-columns: 1fr; gap: 24px; } }

.journey-step {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}

.journey-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.journey-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 540px;
  letter-spacing: -0.005em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 250ms;
}

.feature:hover { transform: translateY(-2px); }

.feature-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--bg-soft);
  color: var(--fg-muted);
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* Edu pillars */
.edu-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 800px) { .edu-pillars { grid-template-columns: 1fr; } }

.edu-pillar {
  padding: 48px 40px;
  border-radius: 20px;
  position: relative;
  min-height: 260px;
}

.edu-pillar-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 10px;
}

.edu-pillar-tagline {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-faint);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.edu-pillar-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ============================================
   AX CHAMPION — 교육 탭 (PPTX 7-9 기반)
   diff-table / principle / week-curriculum
   ============================================ */

/* Difference 비교 테이블 */
.diff-table {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
}

.diff-table-row {
  display: grid;
  grid-template-columns: 160px 1fr 1.2fr;
  border-bottom: 1px solid var(--border-soft);
}

.diff-table-row:last-child { border-bottom: none; }

.diff-table-head {
  background: var(--bg-soft);
  font-weight: 600;
}

.diff-table-cell {
  padding: 18px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg);
  letter-spacing: -0.005em;
}

.diff-table-cell--axis {
  color: var(--fg-faint);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.015);
  display: flex;
  align-items: center;
}

.diff-table-cell--wanted {
  font-weight: 600;
  color: var(--fg);
  background: #FAFAFA;
  position: relative;
}

.diff-table-head .diff-table-cell--wanted {
  background: var(--fg);
  color: #FFFFFF;
  font-weight: 700;
}

.diff-table-cell--wanted::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--fg);
  font-weight: 700;
}

.diff-table-head .diff-table-cell--wanted::before { content: ""; margin: 0; }

@media (max-width: 800px) {
  .diff-table-row {
    grid-template-columns: 1fr;
  }
  .diff-table-cell--axis {
    border-bottom: 1px solid var(--border-soft);
  }
  .diff-table-row:not(.diff-table-head) .diff-table-cell:not(.diff-table-cell--axis) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
  }
  .diff-table-head { display: none; }
}

/* 6가지 운영 원칙 카드 */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 900px) { .principle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .principle-grid { grid-template-columns: 1fr; } }

.principle-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px 28px;
}

.principle-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-faint);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.principle-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.principle-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  letter-spacing: -0.005em;
}

/* 4주 커리큘럼 */
.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 900px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .week-grid { grid-template-columns: 1fr; } }

.week-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.week-card--final {
  background: var(--fg);
  border-color: var(--fg);
}

.week-card--final .week-label,
.week-card--final .week-title,
.week-card--final .week-meta,
.week-card--final .week-list li { color: #FFFFFF; }

.week-card--final .week-list li::before { color: rgba(255,255,255,0.5); }

.week-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-faint);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.week-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.week-meta {
  font-size: 12.5px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
  margin: 0 0 18px;
}

.week-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.week-list li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg);
  letter-spacing: -0.005em;
  padding-left: 14px;
  position: relative;
}

.week-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--fg-faint);
}

.curriculum-note {
  max-width: 1280px;
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--fg-faint);
  text-align: center;
  letter-spacing: -0.005em;
}


/* === PROGRAM LINEUP — Level cards (text-only, no image) === */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

@media (max-width: 900px) { .program-grid { grid-template-columns: 1fr; } }

.program-card {
  padding: 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
}

.program-card-body {
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-level {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.program-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 32px;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  letter-spacing: -0.005em;
  padding-left: 24px;
  position: relative;
}

.program-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--fg-faint);
  font-weight: 500;
}

.program-format {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.program-format-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: -0.005em;
}

/* === MEET FRONTIERS === */
.meet-frontiers-section {
  background: transparent;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px) { .meet-grid { grid-template-columns: 1fr; } }

.meet-card {
  position: relative;
  padding: 48px 44px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 250ms;
}

@media (max-width: 700px) { .meet-card { padding: 36px 28px; min-height: 320px; } }

.meet-card:hover { transform: translateY(-2px); }

.meet-card-vod {
  background-image: url('images/edu/edu_02_vod.png');
  background-color: #1a1a2e;
}

.meet-card-consult {
  background-image: url('images/edu/edu_03_Introduction inquiry.png?v=3');
  background-color: var(--bg-soft);
  background-position: center;
  background-size: cover;
}

/* Subtle dark overlay for text readability — same as champion-card */
.meet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

/* All meet-card children sit above the overlay */
.meet-card > * {
  position: relative;
  z-index: 2;
}

.meet-card-title {
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.meet-card-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  flex: 1;
  max-width: 460px;
}

.meet-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.005em;
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 200ms;
  margin-top: auto;
}

.meet-card-cta:hover {
  background: #FFFFFF;
  color: var(--fg);
  border-color: #FFFFFF;
}

/* Agent Dev */
.dev-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) { .dev-process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .dev-process { grid-template-columns: 1fr; } }

.dev-step {
  border-radius: 14px;
  padding: 28px 24px;
}

.dev-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.dev-step-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
}

.dev-step-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

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

@media (max-width: 700px) {
  .usecase-grid { grid-template-columns: 1fr; gap: 16px; }
}

.usecase-card {
  padding: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.usecase-card-visual {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.usecase-img-1 { background-image: url('images/dev/dev_08.png?v=2'); }
.usecase-img-2 { background-image: url('images/dev/dev_09.png?v=2'); }
.usecase-img-3 { background-image: url('images/dev/dev_10.png'); }
.usecase-img-4 { background-image: url('images/dev/dev_11.png'); }
.usecase-img-5 { background-image: url('images/dev/dev_12.png'); }
.usecase-img-6 { background-image: url('images/dev/dev_13.png'); }

.usecase-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
}

.usecase-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.usecase-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usecase-card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.usecase-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fg-faint);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  border-radius: 16px;
  padding: 32px 28px;
}

.testimonial-quote {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* === BEST 3 — recommended starter agents === */
.best3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) { .best3-grid { grid-template-columns: 1fr; } }

.best3-card {
  position: relative;
  border-radius: 24px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease;
  isolation: isolate;
}

.best3-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); }

.best3-rank {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #7C5CFF;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.best3-rank-role {
  font-size: 10.5px;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.12em;
}

.best3-rank-role::before {
  content: "·";
  margin-right: 10px;
  color: inherit;
}

.best3-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 12px;
}

.best3-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
  margin: 0 0 20px;
  flex: 1;
}

/* Review overlay — covers the card on hover/tap. Card size never changes. */
.best3-quote {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 32px 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 250ms ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}

/* Per-card hover background image + dark gradient overlay for white text legibility */
.best3-card:nth-child(1) .best3-quote {
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('images/dev/dev_08.png?v=2');
}
.best3-card:nth-child(2) .best3-quote {
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('images/dev/dev_10.png');
}
.best3-card:nth-child(3) .best3-quote {
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('images/dev/dev_13.png');
}

.best3-card:hover .best3-quote,
.best3-card.is-revealed .best3-quote {
  opacity: 1;
  pointer-events: auto;
}

.best3-quote p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  margin: 0;
  font-style: normal;
}

.best3-quote cite {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.005em;
  font-style: normal;
  font-weight: 500;
}

.best3-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--fg-faint);
  letter-spacing: -0.005em;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

/* Featured rank colors */
.best3-card:nth-child(1) .best3-rank { color: #7C5CFF; }
.best3-card:nth-child(2) .best3-rank { color: #16A34A; }
.best3-card:nth-child(3) .best3-rank { color: #EA580C; }

/* Blog page */
.blog-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.blog-filter {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 150ms;
  font-weight: 500;
}

.blog-filter.active { background: var(--fg); color: #FFFFFF; }
.blog-filter:not(.active):hover { color: var(--fg); }

.blog-list-wrap {
  padding: 40px var(--gutter) 80px;
  border-bottom: 1px solid var(--border-soft);
}

.blog-list {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  margin-bottom: 80px;
  align-items: center;
}

@media (max-width: 900px) { .blog-feature { grid-template-columns: 1fr; gap: 24px; } }

.blog-feature-visual {
  height: 400px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-feature-visual.blog-feat-img {
  border: none;
}

/* Hide the SVG placeholder when image is applied */
.blog-feature-visual.blog-feat-img > svg {
  display: none;
}

.blog-feature h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.blog-feature p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms;
}

.blog-item:hover { transform: translateY(-3px); }

.blog-item-visual {
  position: relative;
  height: 200px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  overflow: hidden;
}

/* .blog-img-N classes removed — never used in HTML (dead code) */

.blog-item .blog-meta {
  margin-bottom: 10px;
}

.blog-item h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.blog-item p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}


/* ============================================
   ARTICLE DETAIL — ElevenLabs-style minimal layout
   ============================================ */

.article-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
}

/* Breadcrumb */
.article-crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}

.article-crumbs a {
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 200ms;
  text-decoration: none;
}

.article-crumbs a:hover { color: var(--fg); }

.article-crumb-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-crumb-back svg {
  transition: transform 200ms;
}

.article-crumb-back:hover svg {
  transform: translateX(-2px);
}

.article-crumbs-sep {
  color: var(--fg-faint);
}

/* Title */
.article-title {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 24px 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Meta line */
.article-meta {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
  margin-bottom: 40px;
}

.article-meta-dot {
  margin: 0 8px;
  color: var(--fg-faint);
}

/* Authors block */
.article-authors-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.article-authors {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.article-authors-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3366FF 0%, #1E47D9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.article-authors-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-authors-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.005em;
}

.article-authors-role {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
}

/* Banner image — full bleed within article column */
.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 56px;
}

@media (max-width: 700px) {
  .article-cover { aspect-ratio: 4 / 3; border-radius: 10px; margin-bottom: 40px; }
}

/* Body — flat paragraph flow, no h2/h3/lists/quotes */
.article-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  margin: 0 0 28px 0;
  letter-spacing: -0.005em;
}

/* Inline article images */
.article-prose figure {
  margin: 40px 0;
}

.article-prose figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.article-prose figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: -0.005em;
  line-height: 1.5;
}

/* End divider */
.article-divider {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin: 56px 0;
}

/* Author card at end (kept simple) */
.article-author-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 32px 0 0;
  border-top: 1px solid var(--border-soft);
  margin-top: 56px;
}

@media (max-width: 600px) {
  .article-author-card { flex-direction: column; gap: 12px; }
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.article-author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 4px 0;
  letter-spacing: -0.015em;
}

.article-author-role {
  font-size: 13px;
  color: var(--fg-faint);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

/* Related articles — kept lightweight */
.article-related {
  background: transparent;
  padding: 80px var(--gutter);
}

.article-related-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.article-related-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.article-related-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.article-related-link {
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: color 200ms;
}

.article-related-link:hover { color: var(--fg); }

.article-related-link {
  text-decoration: none;
}

/* Back to blog list — prominent CTA at end of article */
.article-back-to-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
  text-align: center;
}

.back-to-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 200ms;
}

.back-to-list-btn:hover {
  background: var(--bg-soft);
  transform: translateX(-2px);
}

.back-to-list-btn svg {
  transition: transform 200ms;
}

.back-to-list-btn:hover svg {
  transform: translateX(-2px);
}


/* ============================================
   FOOTER — Orion 스타일 5컬럼 + 화이트
   ============================================ */
.footer {
  padding: 80px var(--gutter) 32px;
  background: #FFFFFF;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 80px;
  padding-bottom: 80px;
  margin-bottom: 32px;
}

@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr auto auto auto; gap: 48px; } }
@media (max-width: 700px)  { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer-brand-name {
  margin-bottom: 14px;
  line-height: 0;
}

.footer-brand-name img {
  display: inline-block;
  height: 24px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 280px;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-faint);
  cursor: pointer;
  transition: color 200ms;
}

.footer-social a:hover { color: var(--fg); }

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--fg);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms;
  letter-spacing: -0.005em;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-faint);
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: -0.005em;
  padding-top: 32px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms;
}

.footer-bottom a:hover { color: var(--fg); }

/* Per-image classes (consolidated) */
/* ============================================
   BLOG IMAGES — Per-article 1:1 mapping
   각 article의 cover / blog list 썸네일 / home teaser 카드를
   article ID 또는 data-route 기반으로 매핑 (13개 unique)
   ============================================ */

/* Common: cover/thumbnail layout (image-set via specific selectors below) */
.article-cover, .blog-item-visual, .blog-card, .blog-feature-visual.blog-feat-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#page-article-ax-whitepaper .article-cover,
[data-route="article-ax-whitepaper"] .blog-item-visual,
[data-route="article-ax-whitepaper"].blog-card,
.blog-feature-visual.blog-feat-img {
  background-image: url('images/blog/blog_01.png');
}

#page-article-sookmyung-prompthon-2602 .article-cover,
[data-route="article-sookmyung-prompthon-2602"] .blog-item-visual,
[data-route="article-sookmyung-prompthon-2602"].blog-card {
  background-image: url('images/blog/blog_02.png');
  background-position: left center;
  background-size: cover;
}

#page-article-ax-champion-2601 .article-cover,
[data-route="article-ax-champion-2601"] .blog-item-visual,
[data-route="article-ax-champion-2601"].blog-card {
  background-image: url('images/blog/blog_03.png');
}

#page-article-ai-hackerthon-2601 .article-cover,
[data-route="article-ai-hackerthon-2601"] .blog-item-visual,
[data-route="article-ai-hackerthon-2601"].blog-card {
  background-image: url('images/blog/blog_04.png');
}

#page-article-ax-partner-2601 .article-cover,
[data-route="article-ax-partner-2601"] .blog-item-visual,
[data-route="article-ax-partner-2601"].blog-card {
  background-image: url('images/blog/blog_05.png');
}

/* 리스트 썸네일 + 홈 teaser: 새 blog_06.png */
[data-route="article-ax-day-2512"] .blog-item-visual,
[data-route="article-ax-day-2512"].blog-card {
  background-image: url('images/blog/blog_06.png');
  background-position: center 35%;
  background-size: cover;
}

/* 아티클 상세(블로그 엔드) 커버: articles/ax-day.jpg */
#page-article-ax-day-2512 .article-cover {
  background-image: url('images/blog/articles/ax-day.jpg');
}

#page-article-public-service-2512 .article-cover,
[data-route="article-public-service-2512"] .blog-item-visual,
[data-route="article-public-service-2512"].blog-card {
  background-image: url('images/blog/blog_07.png');
  background-position: center top;
}

#page-article-prompthon-interview-2509 .article-cover,
[data-route="article-prompthon-interview-2509"] .blog-item-visual,
[data-route="article-prompthon-interview-2509"].blog-card {
  background-image: url('images/blog/blog_08.png');
}

#page-article-tour-prompthon-2507 .article-cover,
[data-route="article-tour-prompthon-2507"] .blog-item-visual,
[data-route="article-tour-prompthon-2507"].blog-card {
  background-image: url('images/blog/blog_09.png');
}

#page-article-worldbank-2507 .article-cover,
[data-route="article-worldbank-2507"] .blog-item-visual,
[data-route="article-worldbank-2507"].blog-card {
  background-image: url('images/blog/blog_10.png');
}

#page-article-enterprise-axalliance-2502 .article-cover,
[data-route="article-enterprise-axalliance-2502"] .blog-item-visual,
[data-route="article-enterprise-axalliance-2502"].blog-card {
  background-image: url('images/blog/blog_11.jpg');
}

#page-article-kyunghee-prompthon-2411 .article-cover,
[data-route="article-kyunghee-prompthon-2411"] .blog-item-visual,
[data-route="article-kyunghee-prompthon-2411"].blog-card {
  background-image: url('images/blog/blog_12.png');
}

#page-article-naver-prompthon-2407 .article-cover,
[data-route="article-naver-prompthon-2407"] .blog-item-visual,
[data-route="article-naver-prompthon-2407"].blog-card {
  background-image: url('images/blog/blog_13.png');
}
