@charset "UTF-8";
/* ==========================
   Reset (Minimal)
========================== */
:root {
  scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

code,
pre {
  font-size: 0.875rem;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

/* ==========================
   Base (Global defaults)
========================== */
html,
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  background-color: #f9fafb;
}

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

/* ==========================
   Nav-like 리스트 전역 리셋
   - 본문 리스트는 유지
   - 메뉴/내비/브레드크럼/페이지네이션만 점 제거
========================== */
ul.main-nav,
ul.menu, ol.menu,
.gnb ul, .sidemenu ul,
ul.gnb, ul.sidemenu,
ul.breadcrumb, ol.breadcrumb,
ul.pagination, ol.pagination,
ul.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
}

.main-nav > li::marker,
.menu > li::marker,
.gnb li::marker,
.sidemenu li::marker,
.pagination > li::marker,
.footer-links > li::marker {
  content: none;
}

.main-nav li::before,
.menu li::before,
.gnb li::before,
.sidemenu li::before,
.pagination li::before,
.footer-links li::before {
  content: none;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 0.5rem;
  opacity: 0.6;
}

dl, dd {
  margin: 0;
}

th, td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

th {
  text-align: left;
  font-weight: 500;
}

pre {
  padding: 8px 16px;
  border-radius: 6px;
  overflow: auto;
}

blockquote {
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 4px solid #e5e7eb;
  color: #374151;
}

hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}

:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 2px;
}

/* ==========================
   Typography (Low global impact)
   - Global: minimal defaults (avoid component collisions)
   - Prose containers: full rhythm + link decoration
========================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  margin: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a.template-card,
a.template-card:hover {
  color: inherit;
  text-decoration: none;
}

/* ==========================
   Prose / Article Containers
   - 문서 본문에서만 리듬/링크 스타일 강화
========================== */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6,
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6,
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  margin: 0 0 16px;
}
.prose p,
.article-content p,
.post-body p {
  margin: 0 0 16px;
}
.prose a,
.article-content a,
.post-body a {
  color: #4F46E5;
  text-decoration: none;
}
.prose a:hover,
.article-content a:hover,
.post-body a:hover {
  color: #3730A3;
  text-decoration: underline;
}

/* ==========================
   Utilities
========================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #374151;
}

.fw-bold {
  font-weight: 700;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stack > * + * {
  margin-top: 16px;
}

.noselect {
  user-select: none;
}

.pointer {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
/* Motion Tokens (Design System) */
:root {
  --m-dur-1: 0.5s;
  --m-dur-2: 0.65s;
  --m-dur-3: 1s;
  --m-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --m-ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --m-dist-1: 10px;
  --m-dist-2: 14px;
  --m-stag-1: 0.08s;
  --m-stag-2: 0.09s;
  --m-st1: 0.12;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --m-dur-1: 0.01s;
    --m-dur-2: 0.01s;
    --m-dur-3: 0.01s;
    --m-dist-1: 0px;
    --m-dist-2: 0px;
    --m-stag-1: 0s;
    --m-stag-2: 0s;
  }
}
/* =====================================================
   Motion Reveal v1
   - target: [data-m]
   - done: .is-in
   - list: [data-m="stagger"] + [data-m-item]
===================================================== */
/* FOUC guard (m-ready 전에는 모션 숨김 금지) */
html:not(.m-ready) [data-m],
html:not(.m-ready) [data-m-item] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* 단일 요소 기본 */
html.m-ready [data-m] {
  opacity: 0;
  transform: translate3d(0, var(--m-dist-2), 0);
  filter: none;
  transition-property: opacity, transform;
  transition-duration: var(--m-dur-2);
  transition-timing-function: var(--m-ease-out);
  will-change: opacity, transform;
}

html.m-ready [data-m].m-blur {
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  will-change: opacity, transform, filter;
}

html.m-ready [data-m].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

/* 방향별 */
html.m-ready [data-m=fade] {
  transform: none;
}

html.m-ready [data-m=up] {
  transform: translate3d(0, var(--m-dist-2), 0);
}

html.m-ready [data-m=down] {
  transform: translate3d(0, calc(var(--m-dist-2) * -1), 0);
}

html.m-ready [data-m=left] {
  transform: translate3d(calc(var(--m-dist-2) * -1), 0, 0);
}

html.m-ready [data-m=right] {
  transform: translate3d(var(--m-dist-2), 0, 0);
}

html.m-ready [data-m].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

/* stagger 컨테이너는 관찰용 */
html.m-ready [data-m=stagger] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* stagger item */
html.m-ready [data-m-item] {
  opacity: 0;
  transform: translate3d(0, var(--m-dist-1), 0);
  filter: none;
  transition-property: opacity, transform, filter;
  transition-duration: var(--m-dur-2);
  transition-timing-function: var(--m-ease-out);
  will-change: opacity, transform, filter;
}

html.m-ready [data-m-item].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

@media (max-width: 768px) {
  html.m-ready [data-m],
  html.m-ready [data-m-item] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
}
/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  html.m-ready [data-m],
  html.m-ready [data-m].is-in,
  html.m-ready [data-m-item],
  html.m-ready [data-m-item].is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
.container {
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    --container-px: 16px;
  }
}

.container--sm {
  --container-max: 720px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--sm {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--sm {
    --container-px: 16px;
  }
}

.container--md {
  --container-max: 960px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--md {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--md {
    --container-px: 16px;
  }
}

.container--lg {
  --container-max: 1200px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--lg {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--lg {
    --container-px: 16px;
  }
}

.container--xl {
  --container-max: 1440px;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--xl {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--xl {
    --container-px: 16px;
  }
}

.container--fluid {
  --container-max: 100vw;
  --container-px: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
@media (max-width: 768px) {
  .container--fluid {
    --container-px: 20px;
  }
}
@media (max-width: 480px) {
  .container--fluid {
    --container-px: 16px;
  }
}

.container--bleed {
  padding-inline: 0;
}

.container--text {
  max-width: 72ch;
}

/* frontend/layout/_grid.scss
   Grid / Gap / Alignment Utilities
*/
/* =========================
   Basic Grids
========================= */
.grid-cols-1,
.grid-cols-2,
.grid-cols-3,
.grid-cols-4,
.grid-12 {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
  gap: 16px;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1280px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   12 Column Grid
========================= */
.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .col-1 {
    grid-column: auto;
  }
  .col-2 {
    grid-column: auto;
  }
  .col-3 {
    grid-column: auto;
  }
  .col-4 {
    grid-column: auto;
  }
  .col-5 {
    grid-column: auto;
  }
  .col-6 {
    grid-column: auto;
  }
  .col-7 {
    grid-column: auto;
  }
  .col-8 {
    grid-column: auto;
  }
  .col-9 {
    grid-column: auto;
  }
  .col-10 {
    grid-column: auto;
  }
  .col-11 {
    grid-column: auto;
  }
  .col-12 {
    grid-column: auto;
  }
}
/* =========================
   Gap Utilities
   - grid/flex 모두 적용 가능
========================= */
.gap-xs {
  gap: 4px;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

.gap-lg {
  gap: 24px;
}

.gap-xl {
  gap: 32px;
}

.gap-xl-2xl {
  gap: 40px;
}

.gap-2xl {
  gap: 48px;
}

.gap-3xl {
  gap: 64px;
}

.gap-3_5xl {
  gap: 80px;
}

.gap-4xl {
  gap: 96px;
}

.gap-5xl {
  gap: 128px;
}

/* =========================
   Alignment Utilities
========================= */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

/* ===================================================
   Section layout rule (GLOBAL)
=================================================== */
.section {
  --section-bg: #fff;
  background: var(--section-bg);
  padding-block: 120px 120px;
  padding-inline: 0;
}
@media (max-width: 1024px) {
  .section {
    padding-block: 100px 100px;
    padding-inline: 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding-block: 64px 64px;
    padding-inline: 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding-block: 32px 32px;
    padding-inline: 0;
  }
}

.section--muted {
  --section-bg: #f8fafd;
}

.section--brand {
  --section-bg: color-mix(in srgb, var.$color-primary 10%, #fff);
}

.section--dark {
  --section-bg: #0b1220;
}

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

@media (max-width: 1024px) {
  .l-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .l-card-grid {
    grid-template-columns: 1fr;
  }
}
.l-card-grid.is-shift {
  max-width: clamp(780px, 78vw, 1040px);
  margin-left: auto;
}

@media (max-width: 1024px) {
  .l-card-grid.is-shift {
    max-width: none;
    margin-left: 0;
  }
}
/* ==========================================================================
   Global header height token
   - 실무 권장: 전역 토큰은 header가 아니라 core/layout에서 둬도 됨
   - 지금은 복붙 편하게 header-base 상단에 유지
   ========================================================================== */
:root {
  --header-h: 86px;
}

.site-header {
  --header-bg: transparent;
  --header-line: transparent;
  --nav-text: #111827;
  --nav-hover: #4F46E5;
  --nav-muted: #4b5563;
  --nav-gap: clamp(24px, 4vw, 64px);
  --scroll-bg: #ffffff;
  --scroll-line: rgba(17, 24, 39, 0.08);
  --scroll-nav-text: #111827;
  --scroll-nav-muted: #4b5563;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  transition: background 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled, .site-header.header-solid {
  --header-bg: var(--scroll-bg);
  --header-line: var(--scroll-line);
  --nav-text: var(--scroll-nav-text);
  --nav-muted: var(--scroll-nav-muted);
}
.site-header .header-container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100% - 24px * 2, 1400px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .site-header .header-container {
    width: min(100% - 16px * 2, 1400px);
  }
}
.site-header .header-left,
.site-header .header-center,
.site-header .header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header .header-left {
  justify-content: flex-start;
}
.site-header .header-center {
  justify-content: center;
  min-width: 0;
}
.site-header .header-right {
  justify-content: flex-end;
  gap: 8px;
}
.site-header .logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
}
.site-header .logo-link img {
  height: 38px;
  display: block;
  transition: opacity 220ms ease;
}
.site-header .logo-link .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #4F46E5;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .site-header .main-nav {
    display: none;
  }
}
.site-header .main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header .main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 14px 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-header .main-nav .nav-link:hover {
  color: var(--nav-hover);
}
.site-header .sub-nav {
  display: none;
}
.site-header .auth-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 1024px) {
  .site-header .auth-nav {
    display: none;
  }
}
.site-header .auth-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease, opacity 220ms ease;
}
.site-header .auth-item:hover {
  color: var(--nav-hover);
}
.site-header .logout-inline {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.site-header .logout-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--nav-text);
  cursor: pointer;
  transition: color 220ms ease, opacity 220ms ease;
}
.site-header .logout-button:hover {
  color: var(--nav-hover);
}
.site-header .header-cta {
  color: var(--nav-text);
  border: 1px solid currentColor;
  background: transparent;
}
.site-header .header-cta:hover {
  color: var(--nav-hover);
  border-color: var(--nav-hover);
  background-color: #ffffff;
}

.site-header.header-solid {
  --header-bg: #ffffff;
  --header-line: rgba(17, 24, 39, 0.08);
}
.site-header.header-transparent {
  --header-bg: transparent;
  --header-line: rgba(255, 255, 255, 0.28);
}
.site-header.header-dark {
  --nav-text: #ffffff;
  --nav-muted: rgba(255,255,255,.72);
}
.site-header.header-dark .logo-link .logo-text {
  color: var(--nav-text);
}
.site-header.header-light {
  --nav-text: #111827;
  --nav-muted: #4b5563;
}
.site-header.header-light .logo-link .logo-text {
  color: #4F46E5;
}
@media (min-width: calc(1024px + 1px)) {
  .site-header.nav--mega.is-nav-open {
    --header-bg: #ffffff;
    --header-line: rgba(17, 24, 39, 0.08);
    --nav-text: #111827;
    --nav-muted: #4b5563;
    --nav-hover: #4F46E5;
  }
  .site-header.nav--mega.is-nav-open .logo-link .logo-text {
    color: #4F46E5;
  }
}
.site-header:not(.scroll-skin--dark).header-transparent.is-scrolled {
  --header-bg: var(--scroll-bg);
  --header-line: var(--scroll-line);
  --nav-text: var(--scroll-nav-text);
  --nav-muted: var(--scroll-nav-muted);
}
.site-header:not(.scroll-skin--dark).header-transparent.is-scrolled .logo-link .logo-text {
  color: #4F46E5;
}
.site-header.scroll-skin--dark.is-scrolled {
  --header-bg: rgba(0, 0, 0, 0.36);
  --header-line: transparent;
  --nav-text: rgba(255, 255, 255, 0.95);
  --nav-muted: rgba(255, 255, 255, 0.72);
  --nav-hover: #4F46E5;
  background: var(--header-bg);
  border-bottom-color: var(--header-line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.site-header.scroll-skin--dark.is-scrolled .nav-link,
.site-header.scroll-skin--dark.is-scrolled .auth-item,
.site-header.scroll-skin--dark.is-scrolled .logout-button,
.site-header.scroll-skin--dark.is-scrolled .header-cta,
.site-header.scroll-skin--dark.is-scrolled .logo-link .logo-text {
  color: var(--nav-text);
}
.site-header.scroll-skin--dark.is-scrolled .header-cta {
  border-color: currentColor;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .site-header.scroll-skin--dark.is-scrolled .nav-link:hover,
  .site-header.scroll-skin--dark.is-scrolled .auth-item:hover,
  .site-header.scroll-skin--dark.is-scrolled .logout-button:hover {
    color: var(--nav-hover);
  }
  .site-header.scroll-skin--dark.is-scrolled .header-cta:hover {
    color: var(--nav-hover);
    border-color: var(--nav-hover);
    background: rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 1024px) {
  .site-header.header-dark {
    --header-bg: #ffffff;
    --header-line: rgba(17, 24, 39, 0.08);
    --nav-text: #111827;
    --nav-muted: #4b5563;
  }
}

.site-header .mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-header .mobile-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}
.site-header .mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: calc(1000 - 1);
}
.site-header .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.site-header .mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: #ffffff;
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
}
.site-header #mobile-menu:not([hidden]) .mobile-menu__panel {
  transform: translateX(0);
}
.site-header .mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.site-header .mobile-menu__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.site-header .mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header .mobile-menu__close svg {
  width: 18px;
  height: 18px;
  display: block;
}
.site-header .mobile-menu__body {
  padding: 16px;
  overflow: auto;
}
.site-header .mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .mobile-nav__link {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}
.site-header .mobile-sub {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0 0 0 12px;
}
.site-header .mobile-sub__link {
  display: block;
  padding: 10px 8px;
  text-decoration: none;
  color: #374151;
}
.site-header .mobile-auth {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}
.site-header .mobile-auth a, .site-header .mobile-auth button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 8px;
  color: #111827;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.site-header .mobile-nav__item.has-children .mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}
.site-header .mobile-nav__item.has-children.is-open .mobile-sub {
  max-height: 520px;
}
.site-header .mobile-nav__item.has-children.is-open .mobile-nav__chev {
  transform: rotate(180deg);
}
.site-header .mobile-nav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  text-align: left;
}
.site-header .mobile-nav__chev {
  width: 18px;
  height: 18px;
  transition: transform 220ms ease;
}
@media (max-width: 1024px) {
  .site-header .header-center {
    display: none;
  }
  .site-header .mobile-toggle {
    display: inline-flex;
  }
  .site-header .auth-nav {
    display: none;
  }
}

.no-scroll {
  overflow: hidden;
}

/* frontend/layout/header/_header-nav-dropdown.scss */
.site-header.nav--dropdown .main-nav .nav-item.has-children {
  position: relative;
}
.site-header.nav--dropdown .main-nav .sub-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 180px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  --nav-muted: rgba(255, 255, 255, 0.82);
  --nav-hover: #4F46E5;
}
.site-header.nav--dropdown .main-nav .nav-item.has-children.is-open > .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.site-header.nav--dropdown .main-nav .sub-link {
  display: block;
  padding: 8px 16px;
  margin: 2px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header.nav--dropdown .main-nav .sub-link:hover, .site-header.nav--dropdown .main-nav .sub-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
}

/* frontend/layout/header/_header-nav-mega.scss */
.site-header.nav--mega .nav-wrap {
  position: relative;
  --mega-cols: 1;
  --mega-inner-x: 0px;
  --mega-inner-width: 0px;
  --mega-col-width: 0px;
  --mega-col-gap: var(--nav-gap, 64px);
}
.site-header.nav--mega .nav-wrap > .mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 80px);
  width: 100%;
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: calc(1000 + 20);
  --nav-text: #111827;
  --nav-muted: #4b5563;
  --nav-hover: #4F46E5;
}
.site-header.nav--mega.is-nav-open .nav-wrap > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
@media (max-width: 1023px) {
  .site-header.nav--mega .nav-wrap > .mega-panel {
    display: none;
  }
}
.site-header.nav--mega .nav-wrap .mega-surface {
  background: var(--panel-bg, #ffffff);
  border-top: 1px solid var(--header-line, rgba(17, 24, 39, 0.08));
  padding: 24px 0;
}
.site-header.nav--mega .nav-wrap .mega-inner {
  width: min(100% - 24px * 2, 1400px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .site-header.nav--mega .nav-wrap .mega-inner {
    width: min(100% - 16px * 2, 1400px);
  }
}
@media (min-width: 1024px) {
  .site-header.nav--mega .nav-wrap .mega-inner {
    width: var(--mega-inner-width, min(100% - 24px * 2, 1400px));
    margin-left: var(--mega-inner-x, auto);
    margin-right: auto;
  }
}
.site-header.nav--mega .nav-wrap .mega-grid {
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, var(--mega-col-width, 1fr)));
  column-gap: var(--mega-col-gap, var(--nav-gap, 64px));
  row-gap: 24px;
  justify-content: start;
}
.site-header.nav--mega .nav-wrap .mega-link {
  display: block;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--nav-muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.site-header.nav--mega .nav-wrap .mega-link:hover {
  color: var(--nav-hover);
}

/* frontend/layout/_footer.scss
   Footer (Global)
   - .container 기준으로 헤더/본문 라인과 정렬
*/
.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding-block: 48px;
  font-size: 0.875rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #374151;
}
.site-footer .footer-title {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}
.site-footer .footer-text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #d1d5db;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer .footer-text a {
  color: #4F46E5;
  text-decoration: none;
}
.site-footer .footer-text a:hover {
  text-decoration: underline;
}
.site-footer .footer-line {
  display: block;
}
.site-footer .footer-link {
  color: #4F46E5;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer .footer-link:hover {
  text-decoration: underline;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 4px;
}
.site-footer .footer-links li a {
  font-size: 0.75rem;
  color: #d1d5db;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer .footer-links li a:hover {
  color: #4F46E5;
}
.site-footer .footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding-block: 32px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 24px;
  }
  .site-footer .footer-title {
    margin-bottom: 8px;
  }
  .site-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 4px;
  }
  .site-footer .footer-links li {
    margin-bottom: 0;
  }
  .site-footer .footer-bottom {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding-block: 24px;
  }
  .site-footer .footer-grid {
    gap: 24px;
  }
  .site-footer .footer-links {
    grid-template-columns: 1fr;
  }
}

/* frontend/layout/overlay/_popup.scss */
/* ==========================================
   Frontend Global Popup Layer
========================================== */
#popup-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

#popup-layer .popup-window {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  min-width: 280px;
  max-width: min(420px, 90vw);
  max-height: 90vh;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

#popup-layer .popup-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#popup-layer .popup-body {
  flex: 1 1 auto;
  overflow: auto;
}

#popup-layer .popup-body > a,
#popup-layer .popup-body > img {
  display: block;
}

#popup-layer .popup-body img {
  width: 100%;
  height: auto;
  display: block;
}

#popup-layer .popup-bottom {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 12px;
  font-size: 0.875rem;
  background: #f9fafb;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

#popup-layer .popup-dont-show-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #4b5563;
  user-select: none;
  white-space: nowrap;
}

#popup-layer .popup-dont-show-label input[type=checkbox] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #4F46E5;
}

#popup-layer .popup-bottom-close {
  border: 0;
  background: none;
  padding: 4px 8px;
  font-size: 0.875rem;
  color: #4F46E5;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

#popup-layer .popup-bottom-close:hover {
  background: rgba(37, 99, 235, 0.08);
}

#popup-layer .popup-window.popup-hidden {
  display: none;
}

@media (max-width: 480px) {
  #popup-layer .popup-window {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    max-width: 92vw;
    height: auto;
    max-height: 90vh;
  }
  #popup-layer .popup-inner {
    height: auto;
    max-height: 90vh;
  }
}
/* 
 * 시스템 점검 / 서비스 중단 시 노출되는
 * 전체 화면 오버레이 안내 패널(UI 전용, 페이지 대체용)
 */
/* =============================
 * 전체 배경 + 가운데 정렬
 * ============================= */
.system-maint-wrapper {
  min-height: 100vh;
  background: #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
@media (max-width: 480px) {
  .system-maint-wrapper {
    padding: 16px;
  }
}

.system-maint-panel {
  width: min(720px, 100%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(209, 213, 219, 0.9);
  overflow: hidden;
}

.system-maint-header {
  padding: 14px 20px;
  background: linear-gradient(90deg, #4F46E5, #5d55e7);
  color: #f9fafb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-maint-header-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.system-maint-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.system-maint-header-title {
  font-size: 14px;
  font-weight: 700;
}

.system-maint-header-sub {
  font-size: 12px;
  opacity: 0.9;
}

.system-maint-body {
  padding: 22px 22px 20px;
}
@media (max-width: 480px) {
  .system-maint-body {
    padding: 18px 16px 16px;
  }
}

.system-maint-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}
@media (max-width: 480px) {
  .system-maint-title {
    font-size: 18px;
  }
}

.system-maint-message {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.system-maint-desc {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.system-maint-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.system-maint-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
}

.system-maint-btn-primary {
  background: #4F46E5;
  border-color: #4F46E5;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.system-maint-btn-primary:hover {
  background: #4036e3;
  transform: translateY(-1px);
}

.system-maint-btn-outline {
  background: #ffffff;
  color: #4b5563;
  border-color: #d1d5db;
}
.system-maint-btn-outline:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

/* frontend/ui/_index.scss */
/* ===================================================
  Button Component (Common)
  - class: .btn (base)
  - variants: .btn--primary, .btn--ghost, .btn--outline, .btn--soft
  - sizes: .btn--sm, .btn--lg
  - icon: .btn__icon
=================================================== */
:root {
  --btn-h: 48px;
  --btn-px: 18px;
  --btn-radius: 14px;
  --btn-font-size: 15px;
  --btn-font-weight: 600;
  --btn-bg: #4F46E5;
  --btn-fg: #ffffff;
  --btn-bd: transparent;
  --btn-hover-bg: #4F46E5;
  --btn-hover-fg: #ffffff;
  --btn-hover-bd: transparent;
  --btn-soft-bg: rgba(0, 0, 0, 0.06);
  --btn-soft-fg: #000000;
  --btn-soft-bd: transparent;
  --btn-outline-bg: transparent;
  --btn-outline-fg: #000000;
  --btn-outline-bd: rgba(0, 0, 0, 0.18);
  --btn-ghost-bg: transparent;
  --btn-ghost-fg: #000000;
  --btn-ghost-bd: transparent;
  --btn-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  --btn-shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.18);
  --btn-focus: 0 0 0 4px rgba(0, 0, 0, 0.12);
  --btn-gap: 10px;
  --btn-icon-size: 18px;
  --btn-trans: 180ms;
  --btn-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.btn {
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  height: var(--btn-h);
  padding: 0 var(--btn-px);
  border-radius: var(--btn-radius);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: transform var(--btn-trans) var(--btn-ease), box-shadow var(--btn-trans) var(--btn-ease), background var(--btn-trans) var(--btn-ease), color var(--btn-trans) var(--btn-ease), border-color var(--btn-trans) var(--btn-ease), opacity var(--btn-trans) var(--btn-ease);
}
.btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-fg);
  border-color: var(--btn-hover-bd);
  box-shadow: var(--btn-shadow-hover);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--btn-shadow-hover), var(--btn-focus);
}
.btn:disabled, .btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.btn--primary {
  --btn-bg: #4F46E5;
  --btn-fg: #ffffff;
  --btn-bd: transparent;
  --btn-hover-bg: #4F46E5;
  --btn-hover-fg: #ffffff;
  --btn-hover-bd: transparent;
}

.btn--soft {
  --btn-bg: var(--btn-soft-bg);
  --btn-fg: var(--btn-soft-fg);
  --btn-bd: var(--btn-soft-bd);
  --btn-hover-bg: rgba(0, 0, 0, 0.10);
  --btn-hover-fg: var(--btn-soft-fg);
  --btn-hover-bd: var(--btn-soft-bd);
  box-shadow: none;
}
.btn--soft:hover {
  box-shadow: none;
}

.btn--outline {
  --btn-bg: var(--btn-outline-bg);
  --btn-fg: var(--btn-outline-fg);
  --btn-bd: var(--btn-outline-bd);
  --btn-hover-bg: rgba(0, 0, 0, 0.06);
  --btn-hover-fg: var(--btn-outline-fg);
  --btn-hover-bd: rgba(0, 0, 0, 0.26);
  box-shadow: none;
}
.btn--outline:hover {
  box-shadow: none;
}

.btn--ghost {
  --btn-bg: var(--btn-ghost-bg);
  --btn-fg: var(--btn-ghost-fg);
  --btn-bd: var(--btn-ghost-bd);
  --btn-hover-bg: rgba(0, 0, 0, 0.06);
  --btn-hover-fg: var(--btn-ghost-fg);
  --btn-hover-bd: var(--btn-ghost-bd);
  box-shadow: none;
}
.btn--ghost:hover {
  box-shadow: none;
}

.btn--sm {
  --btn-h: 40px;
  --btn-px: 14px;
  --btn-radius: 12px;
  --btn-font-size: 14px;
}

.btn--lg {
  --btn-h: 56px;
  --btn-px: 22px;
  --btn-radius: 16px;
  --btn-font-size: 16px;
}

/* Icon */
.btn__icon {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn__icon svg {
  width: 100%;
  height: 100%;
}

.btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  :root {
    --btn-h: 40px;
    --btn-px: 14px;
    --btn-radius: 12px;
    --btn-font-size: 14px;
    --btn-gap: 8px;
    --btn-icon-size: 16px;
    --btn-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    --btn-shadow-hover: 0 10px 22px rgba(0, 0, 0, 0.16);
  }
  .btn--sm {
    --btn-h: 36px;
    --btn-px: 12px;
    --btn-radius: 11px;
    --btn-font-size: 13px;
  }
  .btn--lg {
    --btn-h: 48px;
    --btn-px: 18px;
    --btn-radius: 14px;
    --btn-font-size: 15px;
  }
  .btn-group {
    gap: 8px;
  }
}
.c-card {
  --card-radius: 12px;
  --card-padding-y: 28px;
  --card-padding-x: 26px;
  --card-shadow: 0 4px 16px rgba(40, 60, 120, 0.09);
  --card-shadow-hover: 0 12px 38px rgba(40, 34, 43, 0.15);
  --card-bg: #232428;
  --card-fg: #ffffff;
  --media-h: 180px;
  --media-w: 42%;
  --hover-translate: -7px;
  --hover-scale: 1.04;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--card-bg);
  color: var(--card-fg);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding-y) var(--card-padding-x);
  min-height: var(--card-min-h, auto);
  cursor: pointer;
  transition: transform 0.16s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.c-card:hover {
  transform: translateY(var(--hover-translate)) scale(var(--hover-scale));
  box-shadow: var(--card-shadow-hover);
  z-index: 2;
}
.c-card:focus-within {
  outline: 2px solid rgba(66, 154, 255, 0.45);
  outline-offset: 2px;
}

.c-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.c-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--card-fg);
}
@media (max-width: 480px) {
  .c-card__title {
    font-size: 1.2rem;
  }
}

.c-card__desc {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.95;
  color: var(--card-fg);
}
@media (max-width: 480px) {
  .c-card__desc {
    font-size: 0.95rem;
  }
}

.c-card__media {
  overflow: hidden;
  border-radius: calc(var(--card-radius) - 2px);
}
.c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-card__icon {
  position: absolute;
  right: 20px;
  bottom: -15px;
  width: 150px;
  height: 150px;
}
.c-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.c-card__footer {
  margin-top: auto;
  padding-top: 14px;
}

.c-card--solid {
  background: var(--card-bg);
}

.c-card--soft {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.c-card--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.c-card--glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.c-card--sm {
  --card-padding-y: 18px;
  --card-padding-x: 18px;
}
.c-card--sm .c-card__title {
  font-size: 1.15rem;
}
.c-card--sm .c-card__desc {
  font-size: 0.95rem;
}

.c-card--lg {
  --card-padding-y: 34px;
  --card-padding-x: 32px;
}
.c-card--lg .c-card__title {
  font-size: 1.8rem;
}
.c-card--lg .c-card__desc {
  font-size: 1.05rem;
}

/* ===== Height modifiers (옵션) ===== */
.c-card--h-xs {
  --card-min-h: 180px;
}

.c-card--h-sm {
  --card-min-h: 220px;
}

.c-card--h-md {
  --card-min-h: 260px;
}

.c-card--h-lg {
  --card-min-h: 300px;
}

.c-card--h-xl {
  --card-min-h: 360px;
}

.c-card--media-top {
  padding: 0;
}
.c-card--media-top .c-card__media {
  height: var(--media-h);
}
.c-card--media-top .c-card__body,
.c-card--media-top .c-card__footer {
  padding: var(--card-padding-y) var(--card-padding-x);
}
.c-card--media-top .c-card__footer {
  padding-top: 0;
}
.c-card--media-top:not(:has(.c-card__media)) {
  padding: var(--card-padding-y) var(--card-padding-x);
}
.c-card--media-top:not(:has(.c-card__media)) .c-card__body,
.c-card--media-top:not(:has(.c-card__media)) .c-card__footer {
  padding: 0;
}

.c-card--media-left {
  flex-direction: row;
  gap: 18px;
}
.c-card--media-left .c-card__media {
  width: var(--media-w);
  min-height: var(--card-min-h, auto);
}
.c-card--media-left .c-card__body {
  flex: 1;
  padding-top: 2px;
}
@media (max-width: 768px) {
  .c-card--media-left {
    flex-direction: column;
  }
  .c-card--media-left .c-card__media {
    width: 100%;
    height: var(--media-h);
    min-height: unset;
  }
}

/* ===================================================
   Variant: media background (이미지 + 오버레이)
   - 뿌연(밀키) 현상 제거: "흰 glow / inset highlight" 제거 + contrast 중심
   - 이미지 디테일 살리고 텍스트 가독성 유지
=================================================== */
.c-card--media-bg {
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.18s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.c-card--media-bg .c-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-card--media-bg .c-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.08) brightness(1.02);
  transform: scale(1.02);
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, filter;
}
.c-card--media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.c-card--media-bg::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.1), transparent 55%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.c-card--media-bg .c-card__body,
.c-card--media-bg .c-card__footer {
  position: relative;
  z-index: 3;
}
.c-card--media-bg:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.c-card--media-bg:hover::after {
  opacity: 0.22;
}
.c-card--media-bg:hover .c-card__media img {
  transform: scale(1.05);
  filter: contrast(1.12) saturate(1.12) brightness(1.04);
}
.c-card--media-bg:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.c-card__kicker {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-fg);
}

@media (hover: none) {
  .c-card--media-bg:hover {
    transform: none;
  }
  .c-card--media-bg:hover::after {
    opacity: 0;
  }
  .c-card--media-bg:hover .c-card__media img {
    transform: scale(1.02);
    filter: contrast(1.1) saturate(1.08) brightness(1.02);
  }
}
.c-card.is-blue {
  --card-bg: #429aff;
}

.c-card.is-purple {
  --card-bg: #846aff;
}

.c-card.is-dark {
  --card-bg: #232428;
}

.c-card.is-mint {
  --card-bg: #11c5bb;
}

.c-card.is-orange {
  --card-bg: #ff862d;
}

.section-header {
  --sh-align: left;
  margin-bottom: var(--sh-gap-y, 64px);
  text-align: var(--sh-align, left);
}
.section-header .section-pretitle {
  color: var(--sh-pretitle-color, #4F46E5);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-title {
  color: var(--sh-title-color, #1f2937);
  font-weight: 700;
  font-size: var(--sh-title-size, clamp(1.75rem, 2.4vw, 2.75rem));
  line-height: var(--sh-title-lh, 1.16);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.section-header .section-subtitle {
  color: var(--sh-subtitle-color, #4b5563);
  font-size: var(--sh-subtitle-size, clamp(1rem, 1.05vw, 1.125rem));
  line-height: var(--sh-subtitle-lh, 1.75);
  margin: 0;
  opacity: 0.96;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}

.section-header.is-left {
  --sh-align: left;
}

.section-header.is-center {
  --sh-align: center;
}

.section-header.is-right {
  --sh-align: right;
}

.section-header .section-title,
.section-header .section-subtitle {
  word-break: keep-all;
  overflow-wrap: normal;
}
.section-header.is-center .section-title,
.section-header.is-center .section-subtitle {
  margin-inline: auto;
}

/* =====================================================
// Preset(Util): Tone
// ===================================================== */
.section-header.sh-tone-default {
  --sh-pretitle-color: #4F46E5;
  --sh-title-color: #111827;
  --sh-subtitle-color: #4b5563;
}

.section-header.sh-tone-muted {
  --sh-pretitle-color: #6b7280;
  --sh-title-color: #111827;
  --sh-subtitle-color: #374151;
}

.section-header.sh-tone-inverse {
  --sh-pretitle-color: rgba(255, 255, 255, 0.75);
  --sh-title-color: #fff;
  --sh-subtitle-color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
// Preset(Util): Gap
// ===================================================== */
.section-header.sh-gap-lg {
  --sh-gap-y: 64px;
}

.section-header.sh-gap-md {
  --sh-gap-y: 48px;
}

.section-header.sh-gap-sm {
  --sh-gap-y: 32px;
}

/* =====================================================
// Preset(Util): Size
// ===================================================== */
.section-header.sh-size-default {
  --sh-title-size: clamp(1.75rem, 2.4vw, 2.75rem);
  --sh-subtitle-size: clamp(1rem, 1.05vw, 1.125rem);
  --sh-subtitle-lh: 1.75;
}

.section-header.sh-size-compact {
  --sh-title-size: clamp(1.4rem, 2.1vw, 2.125rem);
  --sh-title-lh: 1.25;
  --sh-subtitle-size: 1rem;
  --sh-subtitle-lh: 1.8;
}

.section-header.sh-size-hero {
  --sh-title-size: clamp(2rem, 3.2vw, 3.5rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.05rem, 1.1vw, 1.2rem);
  --sh-subtitle-lh: 1.75;
}

/* =====================================================
// Preset(Util): Measure
// ===================================================== */
.section-header.sh-measure-md {
  --sh-measure: 60ch;
}

.section-header.sh-measure-lg {
  --sh-measure: 70ch;
}

/* =====================================================
// Variant Presets (alias: 토큰 조합)
// - util(.section-header.sh-*)이 우선하도록 "특이도 낮게" 유지
// ===================================================== */
.sh-variant-hero {
  --sh-title-size: clamp(2rem, 3.2vw, 3.5rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.05rem, 1.1vw, 1.2rem);
  --sh-subtitle-lh: 1.75;
  --sh-gap-y: 64px;
  --sh-measure: 60ch;
  --sh-pretitle-color: #4F46E5;
  --sh-title-color: #111827;
  --sh-subtitle-color: #4b5563;
}

.sh-variant-hero-inverse {
  --sh-title-size: clamp(2rem, 3.2vw, 3.5rem);
  --sh-title-lh: 1.12;
  --sh-subtitle-size: clamp(1.05rem, 1.1vw, 1.2rem);
  --sh-subtitle-lh: 1.75;
  --sh-gap-y: 64px;
  --sh-measure: 60ch;
  --sh-pretitle-color: rgba(255, 255, 255, 0.75);
  --sh-title-color: #fff;
  --sh-subtitle-color: rgba(255, 255, 255, 0.85);
}

.sh-variant-compact {
  --sh-title-size: clamp(1.4rem, 2.1vw, 2.125rem);
  --sh-title-lh: 1.25;
  --sh-subtitle-size: 1rem;
  --sh-subtitle-lh: 1.8;
  --sh-gap-y: 32px;
  --sh-measure: 60ch;
  --sh-pretitle-color: #6b7280;
  --sh-title-color: #111827;
  --sh-subtitle-color: #374151;
}

.sh-variant-muted {
  --sh-pretitle-color: #6b7280;
  --sh-title-color: #111827;
  --sh-subtitle-color: #374151;
}

.hero {
  --hero-bg: #000;
  --hero-color: #ffffff;
  --hero-overlay: none;
  --hero-pad-y: 0px;
  --hero-pad-x: 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hero-bg);
  color: var(--hero-color);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--hero-overlay);
}
.hero > .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero > .hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  padding-block: var(--hero-pad-y);
  padding-inline: var(--hero-pad-x);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero .hero-content,
.hero .hero-content *,
.hero .hero-buttons,
.hero .hero-buttons * {
  pointer-events: auto;
}

.hero.hero--video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 72vh;
  --hero-poster-pc: none;
  --hero-poster-mobile: var(--hero-poster-pc);
  --hero-video-brightness: 0.95;
  --hero-video-saturate: 0.92;
  --hero-video-contrast: 1.02;
  --hero-bloom: radial-gradient(
    120% 90% at 18% 18%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.00) 60%
  );
  --hero-grade: linear-gradient(
    90deg,
    rgba(3, 5, 9, 0.95) 0%,
    rgba(3, 5, 9, 0.88) 34%,
    rgba(3, 5, 9, 0.62) 60%,
    rgba(3, 5, 9, 0.34) 82%,
    rgba(3, 5, 9, 0.28) 100%
  ),
  linear-gradient(
    180deg,
    rgba(3, 5, 9, 0.40) 0%,
    rgba(3, 5, 9, 0.72) 100%
  );
  --hero-tint: linear-gradient(
    0deg,
    rgba(8, 12, 20, 0.22),
    rgba(8, 12, 20, 0.22)
  );
  --hero-overlay: linear-gradient(
    rgba(8, 12, 20, 0.35),
    rgba(8, 12, 20, 0.35)
  );
  --hero-noise-opacity: 0.02;
}
@media (min-width: 1024px) {
  .hero.hero--video:not(.hero-fullscreen) {
    height: 78vh;
  }
  .hero.hero--video.hero-fullscreen {
    height: 100dvh;
    height: 100vh;
  }
}
@media (max-width: 1023.98px) {
  .hero.hero--video {
    height: clamp(560px, 68vh, 680px);
  }
}
@media (max-width: 767.98px) {
  .hero.hero--video {
    height: clamp(460px, 54svh, 580px);
  }
}
.hero.hero--video > .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero--video > .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--hero-bloom), var(--hero-grade), var(--hero-tint), var(--hero-poster-pc);
  background-position: center, center, center, center;
  background-size: cover, cover, cover, cover;
  background-repeat: no-repeat;
}
.hero.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: var(--hero-noise-opacity);
  mix-blend-mode: normal;
  background-image: url("/assets/images/common/noise-1.png");
  background-repeat: repeat;
  background-size: 180px 180px;
}
.hero.hero--video .hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero--video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(var(--hero-video-brightness)) saturate(var(--hero-video-saturate)) contrast(var(--hero-video-contrast));
  transform: none;
}
.hero.hero--video .hero-video-pc {
  display: block;
}
.hero.hero--video .hero-video-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .hero.hero--video > .hero-bg::before {
    background: var(--hero-bloom), var(--hero-grade), var(--hero-tint), var(--hero-poster-mobile);
  }
  .hero.hero--video .hero-video-pc {
    display: none;
  }
  .hero.hero--video .hero-video-mobile {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 820px;
  --hc-gap: 24px;
  --hc-title-desc-gap: 8px;
  --hc-kicker-title-gap: 8px;
  --hc-buttons-gap: 16px;
  --hc-buttons-mt: 16px;
  --hc-title-lh: 1.12;
  --hc-desc-lh: 1.6;
  --hc-safe-x: clamp(14px, 2.2vw, 28px);
  gap: var(--hc-gap);
  --hc-color: inherit;
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.92;
  --hc-btn-color: var(--hc-color);
  --hc-btn-outline-border: currentColor;
  --hc-btn-ghost-bg: transparent;
  color: var(--hc-color);
}
.hero-content--left {
  align-items: flex-start;
  text-align: left;
  padding-left: var(--hc-safe-x);
}
.hero-content--center {
  align-items: center;
  text-align: center;
}
.hero-content--right {
  align-items: flex-end;
  text-align: right;
  padding-right: var(--hc-safe-x);
}
.hero-content--white {
  --hc-color: #ffffff;
  --hc-btn-outline-border: rgba(255, 255, 255, 0.72);
  --hc-btn-ghost-bg: rgba(255, 255, 255, 0.14);
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.92;
}
.hero-content--dark {
  --hc-color: #111827;
  --hc-btn-outline-border: rgba(0, 0, 0, 0.22);
  --hc-btn-ghost-bg: rgba(0, 0, 0, 0.06);
  --hc-kicker-opacity: 0.85;
  --hc-desc-opacity: 0.9;
}
.hero-content--muted {
  --hc-color: #374151;
  --hc-btn-outline-border: rgba(0, 0, 0, 0.18);
  --hc-btn-ghost-bg: rgba(0, 0, 0, 0.05);
  --hc-kicker-opacity: 0.9;
  --hc-desc-opacity: 0.9;
}

.hero-kicker {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: var(--hc-kicker-opacity, 0.9);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: var(--hc-title-lh);
  color: inherit;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-desc {
  margin: 0;
  margin-top: var(--hc-title-desc-gap);
  font-size: 1.25rem;
  line-height: var(--hc-desc-lh);
  color: inherit;
  opacity: var(--hc-desc-opacity, 0.92);
}

.hero-title + .hero-desc {
  margin-top: var(--hc-title-desc-gap);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-buttons-gap);
  margin-top: var(--hc-buttons-mt);
}
.hero-content--center .hero-buttons {
  justify-content: center;
}
.hero-content--right .hero-buttons {
  justify-content: flex-end;
}
.hero-buttons .btn {
  color: var(--hc-btn-color);
}
.hero-buttons .btn-outline {
  border-color: var(--hc-btn-outline-border);
}
.hero-buttons .btn-ghost {
  background: var(--hc-btn-ghost-bg);
}

@media (max-width: 1023.98px) {
  .hero-content {
    max-width: 720px;
    --hc-gap: 16px;
    --hc-title-desc-gap: 8px;
    --hc-buttons-mt: 8px;
    --hc-safe-x: clamp(16px, 3.2vw, 32px);
  }
  .hero-desc {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .hero-content {
    max-width: 100%;
    --hc-gap: 16px;
    --hc-title-desc-gap: 8px;
    --hc-safe-x: clamp(16px, 4vw, 34px);
  }
  .hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    -webkit-line-clamp: 3;
  }
  .hero-desc {
    display: none;
  }
  .hero-content--left,
  .hero-content--right {
    align-items: flex-start;
    text-align: left;
    padding-left: var(--hc-safe-x);
    padding-right: 0;
  }
}
@media (max-width: 479.98px) {
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.15rem);
  }
  .hero-desc {
    font-size: 0.95rem;
  }
}
.hero.hero--slider {
  position: relative;
  padding: 0;
  height: 72vh;
  --hero-overlay: none;
}
@media (min-width: 1024px) {
  .hero.hero--slider {
    height: 78vh;
  }
  .hero.hero--slider.hero-fullscreen {
    height: 100dvh;
    height: 100vh;
  }
}
@media (max-width: 1023.98px) {
  .hero.hero--slider {
    height: clamp(560px, 68vh, 680px);
  }
}
@media (max-width: 767.98px) {
  .hero.hero--slider {
    height: clamp(460px, 54svh, 580px);
  }
}
.hero.hero--slider .hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero.hero--slider .hero-swiper .swiper,
.hero.hero--slider .hero-swiper .swiper-wrapper,
.hero.hero--slider .hero-swiper .swiper-slide.hero-slide {
  width: 100%;
  height: 100%;
}
.hero.hero--slider .swiper-slide.hero-slide {
  position: relative;
  overflow: hidden;
  --slide-overlay: rgba(0, 0, 0, 0.18);
}
.hero.hero--slider .swiper-slide.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--slide-overlay);
}
.hero.hero--slider .swiper-slide.hero-slide .hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero.hero--slider .hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  pointer-events: none;
}
.hero.hero--slider .hero-nav,
.hero.hero--slider .hero-pagination,
.hero.hero--slider .swiper-pagination {
  z-index: 30;
  pointer-events: auto;
}
.hero.hero--slider .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
.hero.hero--slider .hero-nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(135deg);
}
.hero.hero--slider .hero-prev {
  left: 18px;
}
.hero.hero--slider .hero-prev::before {
  transform: rotate(135deg) translateX(1px) translateY(-1px);
}
.hero.hero--slider .hero-next {
  right: 18px;
}
.hero.hero--slider .hero-next::before {
  transform: rotate(-45deg) translateX(-1px) translateY(1px);
}
.hero.hero--slider .hero-swiper .hero-pagination,
.hero.hero--slider .hero-swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  pointer-events: auto;
}
.hero.hero--slider .hero-swiper .swiper-horizontal > .swiper-pagination-bullets,
.hero.hero--slider .hero-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .hero.hero--slider .hero-nav {
    width: 38px;
    height: 38px;
  }
  .hero.hero--slider .hero-nav::before {
    width: 12px;
    height: 12px;
  }
  .hero.hero--slider .hero-prev {
    left: 10px;
  }
  .hero.hero--slider .hero-next {
    right: 10px;
  }
  .hero.hero--slider .hero-swiper .hero-pagination,
  .hero.hero--slider .hero-swiper .swiper-pagination {
    bottom: 12px;
  }
}

.policy-page {
  padding: 64px 0;
}

.policy-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.policy-title {
  margin: 0 0 32px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.policy-content {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #111827;
}
.policy-content p {
  margin: 0 0 16px;
}
.policy-content ul,
.policy-content ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}
.policy-content li {
  margin: 4px 0;
}
.policy-content hr {
  border: 0;
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  margin: 32px 0;
}
.policy-content h2 {
  margin: 48px 0 16px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}
.policy-content h3 {
  margin: 32px 0 8px;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  color: #111827;
}
.policy-content strong,
.policy-content b {
  font-weight: 700;
}
.policy-content a {
  color: #4F46E5;
  text-underline-offset: 3px;
}
.policy-content a:hover {
  color: #3730A3;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 48px 0;
  }
  .policy-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .policy-content {
    line-height: 1.6;
  }
}
.sub-hero-section {
  --hero-bg: url("/assets/images/frontend/common/hero-default.jpg");
  --hero-position: center center;
  --hero-h: 460px;
  --overlay-start: 0.45;
  --overlay-end: 0.65;
  --sub-hero-title-color: #fff;
  --sub-hero-subtitle-color: #fff;
  --sub-hero-text-color: #fff;
  position: relative;
  min-height: var(--hero-h);
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sub-hero-text-color);
  background-image: var(--hero-bg);
  background-position: var(--hero-position);
  background-size: cover;
  background-repeat: no-repeat;
}
.sub-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, var(--overlay-start)), rgba(0, 0, 0, var(--overlay-end)));
}
.sub-hero-section > .container {
  position: relative;
  z-index: 1;
}
.sub-hero-section h1 {
  margin-bottom: 8px;
  color: var(--sub-hero-title-color);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.sub-hero-section p {
  color: var(--sub-hero-subtitle-color);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}
.sub-hero-section.is-left {
  text-align: left;
}
.sub-hero-section.is-center {
  text-align: center;
}
.sub-hero-section.is-right {
  text-align: right;
}
@media (max-width: 768px) {
  .sub-hero-section {
    padding-top: 64px;
  }
}

.tabbar-wrap {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.tabbar {
  --tab-underline: #111827;
  --underline-thickness: 2px;
  position: relative;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabbar::-webkit-scrollbar {
  display: none;
}
.tabbar[data-sticky=true] {
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 20;
  background: inherit;
}
.tabbar .tabbar__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 2px;
  color: #6b7280;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.tabbar .tabbar__tab:hover, .tabbar .tabbar__tab.is-active {
  color: #111827;
}
.tabbar .tabbar__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--underline-thickness);
  background: var(--tab-underline);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.tabbar .tabbar__tab:hover::after {
  transform: scaleX(1);
}
.tabbar .tabbar__tab.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}
.tabbar .tabbar__indicator {
  display: none;
}

.tabbar-wrap--connected {
  background: transparent;
  border-bottom: 0;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}
.tabbar-wrap--connected .tabbar {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  --tab-bg: rgba(10, 18, 38, .78);
  --tab-bg-hover: rgba(10, 18, 38, .92);
  --tab-line: rgba(255, 255, 255, .14);
  gap: 0;
  background: var(--tab-bg);
  border: 1px solid var(--tab-line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.tabbar-wrap--connected .tabbar .tabbar__tab {
  height: 64px;
  padding: 0 18px;
  min-width: 160px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  border-left: 1px solid var(--tab-line);
}
.tabbar-wrap--connected .tabbar .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--connected .tabbar .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--connected .tabbar .tabbar__tab:hover {
  background: var(--tab-bg-hover);
  color: rgba(255, 255, 255, 0.92);
}
.tabbar-wrap--connected .tabbar .tabbar__tab.is-active {
  background: #fff;
  color: #111827;
}

.tabbar-wrap--heroLine {
  background: #0b1b3a;
}
.tabbar-wrap--heroLine .tabbar {
  gap: 0;
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab {
  height: 64px;
  min-width: 160px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}
.tabbar-wrap--heroLine .tabbar .tabbar__tab.is-active {
  background: #fff;
  color: #111827;
}

.tabbar-wrap--glass {
  background: transparent;
  border-bottom: 0;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}
.tabbar-wrap--glass .tabbar {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.tabbar-wrap--glass .tabbar .tabbar__tab {
  height: 64px;
  padding: 0 18px;
  min-width: 160px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.tabbar-wrap--glass .tabbar .tabbar__tab:first-child {
  border-left: 0;
}
.tabbar-wrap--glass .tabbar .tabbar__tab::after {
  display: none;
}
.tabbar-wrap--glass .tabbar .tabbar__tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
}
.tabbar-wrap--glass .tabbar .tabbar__tab.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .tabbar-wrap--glass .tabbar {
    background: rgba(10, 18, 38, 0.78);
    border-color: rgba(255, 255, 255, 0.14);
  }
}
.tabbar-wrap--glass.is-light .tabbar {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(0, 0, 0, 0.18);
}
.tabbar-wrap--glass.is-light .tabbar__tab {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .tabbar {
    gap: 22px;
  }
}
@media (max-width: 640px) {
  .tabbar {
    gap: 16px;
  }
  .tabbar .tabbar__tab {
    height: 60px;
    font-size: 0.95rem;
  }
  .tabbar-wrap--connected,
  .tabbar-wrap--glass {
    margin-top: -28px;
  }
  .tabbar-wrap--connected .tabbar .tabbar__tab,
  .tabbar-wrap--heroLine .tabbar .tabbar__tab,
  .tabbar-wrap--glass .tabbar .tabbar__tab {
    min-width: 132px;
    padding: 0 14px;
    height: 58px;
  }
}
@media (max-width: 420px) {
  .tabbar .tabbar__tab {
    height: 56px;
    font-size: 0.92rem;
  }
  .tabbar-wrap--connected .tabbar .tabbar__tab,
  .tabbar-wrap--heroLine .tabbar .tabbar__tab,
  .tabbar-wrap--glass .tabbar .tabbar__tab {
    min-width: 118px;
    padding: 0 12px;
  }
}
.basic-slider {
  --bs-radius: 12px;
  --bs-gap: 32px;
  --bs-card-h: 360px;
  --bs-media-h: 360px;
  --bs-ov-from: rgba(0, 0, 0, 0.66);
  --bs-ov-to: rgba(0, 0, 0, 0.00);
}
.basic-slider .basic-slider__wrap {
  margin-top: 48px;
}
.basic-slider .basic-swiper {
  position: relative;
  overflow: visible;
}
.basic-slider .swiper-slide {
  height: auto;
}
.basic-slider .basic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bs-radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
  height: var(--bs-card-h);
}
.basic-slider .basic-card__media {
  width: 100%;
  height: var(--bs-media-h);
}
.basic-slider .basic-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.basic-slider .basic-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 24px;
  background: linear-gradient(to top, var(--bs-ov-from), var(--bs-ov-to));
  z-index: 2;
}
.basic-slider .basic-card__title,
.basic-slider .basic-card__desc {
  color: #fff;
}
.basic-slider .basic-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.basic-slider .basic-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 34ch;
}
.basic-slider .basic-card:hover .basic-card__media img {
  transform: scale(1.06);
}
.basic-slider .basic-swiper__prev,
.basic-slider .basic-swiper__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.basic-slider .basic-swiper__prev {
  left: -12px;
}
.basic-slider .basic-swiper__next {
  right: -12px;
}
.basic-slider .basic-swiper__prev::after,
.basic-slider .basic-swiper__next::after {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
}
.basic-slider .basic-swiper__pagination {
  margin-top: 24px;
  position: static;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .basic-slider {
    --bs-card-h: 340px;
    --bs-media-h: 340px;
  }
  .basic-slider .basic-swiper__prev {
    left: -6px;
  }
  .basic-slider .basic-swiper__next {
    right: -6px;
  }
}
@media (max-width: 767.98px) {
  .basic-slider {
    --bs-card-h: 300px;
    --bs-media-h: 300px;
  }
  .basic-slider .basic-card__desc {
    max-width: 42ch;
  }
  .basic-slider .basic-swiper__prev {
    left: 6px;
  }
  .basic-slider .basic-swiper__next {
    right: 6px;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background: var(--cta-bg, url("/assets/images/frontend/samples/product-02.webp")) center/cover no-repeat;
}
.cta .cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
}
.cta .cta-box {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.cta .cta-box h2 {
  margin-bottom: clamp(12px, 1.2vw, 16px);
  font-size: clamp(24px, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.cta .cta-box p {
  margin: 0 auto clamp(16px, 1.8vw, 24px);
  max-width: 52ch;
  font-size: clamp(15px, 1.15vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.cta .btn--outline {
  --btn-outline-fg: #ffffff;
  --btn-outline-bd: rgba(255, 255, 255, 0.55);
  --btn-hover-bg: rgba(255, 255, 255, 0.12);
  --btn-hover-fg: #ffffff;
  --btn-hover-bd: rgba(255, 255, 255, 0.75);
}
.cta .btn--ghost {
  --btn-ghost-fg: #ffffff;
  --btn-hover-bg: rgba(255, 255, 255, 0.12);
  --btn-hover-fg: #ffffff;
}

.cta.company {
  --cta-bg: url("/assets/images/frontend/samples/company-cta.webp");
}

.cta.academy {
  --cta-bg: url("/assets/images/frontend/samples/academy-cta.webp");
}

.about .section-header {
  margin-bottom: 32px;
  margin-bottom: var(--sh-gap-y, 64px);
  text-align: var(--sh-align, left);
}
.about .section-header .section-pretitle {
  color: var(--sh-pretitle-color, #4F46E5);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-title {
  color: var(--sh-title-color, #1f2937);
  font-weight: 700;
  font-size: var(--sh-title-size, clamp(1.75rem, 2.4vw, 2.75rem));
  line-height: var(--sh-title-lh, 1.16);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-subtitle {
  color: var(--sh-subtitle-color, #4b5563);
  font-size: var(--sh-subtitle-size, clamp(1rem, 1.05vw, 1.125rem));
  line-height: var(--sh-subtitle-lh, 1.75);
  margin: 0;
  opacity: 0.96;
  max-width: var(--sh-measure, 70ch);
  white-space: normal;
  overflow-wrap: anywhere;
}
.about .section-header .section-pretitle {
  color: #4F46E5;
}
.about .features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 40px;
  padding: 0;
  list-style: none;
}
.about .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.about .features li .feature-icon {
  background: #4F46E5;
  color: #ffffff;
  border-radius: 9999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.about .features li .feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}
.about .features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
}
.about .features li:hover .feature-text {
  color: #4F46E5;
}
.about .btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 32px;
  background: #4F46E5;
  color: #ffffff;
  font-weight: 500;
  border-radius: 9999px;
  transition: background 0.2s ease;
}
.about .btn.primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.about .btn.primary:hover {
  background: #3730A3;
  text-decoration: none;
}
.about .about-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about .about-card:hover {
  transform: scale(1.03);
}
.about .about-card .about-image {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-overview-section .about-overview__header {
  max-width: 70ch;
}
.about-overview-section .about-overview__header .section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.about-overview-section .about-overview__header .section-subtitle {
  font-size: 1rem;
  line-height: 1.9;
}
.about-overview-section .about-overview__hero {
  margin: 0 0 64px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.about-overview-section .about-overview__hero-img {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}
.about-overview-section .about-overview__content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .about-overview-section .about-overview__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about-overview-section .about-overview__desc {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
  max-width: 52ch;
}
.about-overview-section .about-overview__bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.about-overview-section .about-overview__bullets li {
  position: relative;
  padding-left: 16px;
  color: #374151;
  line-height: 1.6;
}
.about-overview-section .about-overview__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, #4F46E5 70%, #fff);
}
.about-overview-section .about-overview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-overview-section .meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
}
.about-overview-section .meta-chip .k {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-overview-section .meta-chip .v {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.about-overview-section .profile-card,
.about-overview-section .note-card {
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}
.about-overview-section .profile-card__head {
  padding: 32px;
  border-bottom: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}
.about-overview-section .profile-card__title {
  margin: 0 0 4px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.about-overview-section .profile-card__desc {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
}
.about-overview-section .profile-list {
  margin: 0;
  padding: 0 32px;
  list-style: none;
}
.about-overview-section .profile-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed color-mix(in srgb, rgba(17, 24, 39, 0.08) 70%, transparent);
}
.about-overview-section .profile-list li:last-child {
  border-bottom: 0;
}
.about-overview-section .profile-list li .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
}
.about-overview-section .profile-list li .value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.6;
  word-break: keep-all;
}
.about-overview-section .keyword-row {
  padding: 24px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-overview-section .keyword-row .keyword {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.about-overview-section .note-card {
  margin-top: 24px;
  padding: 32px;
}
.about-overview-section .note-card .note-title {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.about-overview-section .note-card .note-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #374151;
}

.ceo-message-section.modern-style {
  --section-bg: #ffffff;
  --panel: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: rgba(17, 24, 39, 0.08);
  --brand: #4F46E5;
  background: radial-gradient(900px 360px at 15% 0%, color-mix(in srgb, var(--brand) 10%, #fff), transparent 60%), radial-gradient(700px 320px at 90% 20%, color-mix(in srgb, #111827 6%, #fff), transparent 65%), var(--section-bg);
  color: var(--text);
}
.ceo-message-section.modern-style .ceo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .ceo-message-section.modern-style .ceo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.ceo-message-section.modern-style .ceo-visual {
  position: relative;
}
.ceo-message-section.modern-style .ceo-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid color-mix(in srgb, var(--line) 85%, #000);
  background: radial-gradient(900px 420px at 20% 10%, color-mix(in srgb, var(--brand) 10%, #fff), transparent 60%), #f9fafb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ceo-message-section.modern-style .ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.02);
}
.ceo-message-section.modern-style .ceo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.28));
  pointer-events: none;
}
.ceo-message-section.modern-style .ceo-content {
  max-width: 680px;
}
.ceo-message-section.modern-style .ceo-message {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.ceo-message-section.modern-style .ceo-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}
.ceo-message-section.modern-style .ceo-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ceo-message-section.modern-style .ceo-points li {
  border: 1px solid color-mix(in srgb, var(--line) 88%, #000);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 94%, var(--brand));
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .ceo-message-section.modern-style .ceo-points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.ceo-message-section.modern-style .ceo-points strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.ceo-message-section.modern-style .ceo-points span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.ceo-message-section.modern-style .ceo-sign {
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--line) 92%, #000);
  display: grid;
  gap: 4px;
}
.ceo-message-section.modern-style .ceo-sign__name {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.ceo-message-section.modern-style .ceo-sign__meta {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--muted) 90%, #000);
  line-height: 1.6;
}

.feature-section {
  --feature-header-gap: 128px;
  --card-min-h: 300px;
  --feature-overlay-1: rgba(10, 24, 40, 0.62);
  --feature-overlay-2: rgba(10, 24, 40, 0.40);
  --feature-overlay-3: rgba(10, 24, 40, 0.18);
  --feature-overlay-4: rgba(10, 24, 40, 0.00);
}
.feature-section .section-header {
  margin-bottom: var(--feature-header-gap);
}
.feature-section .c-card.c-card--media-bg {
  min-height: var(--card-min-h);
  position: relative;
  overflow: hidden;
}
.feature-section .c-card.c-card--media-bg .c-card__media img {
  filter: brightness(0.88) contrast(1.06);
  transform: scale(1.001);
  transition: transform 260ms ease, filter 260ms ease;
  will-change: transform;
}
.feature-section .c-card.c-card--media-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--feature-overlay-1) 0%, var(--feature-overlay-2) 40%, var(--feature-overlay-3) 70%, var(--feature-overlay-4) 100%);
}
.feature-section .c-card.c-card--media-bg:hover .c-card__media img {
  transform: scale(1.06);
  filter: brightness(0.9) contrast(1.06);
}
.feature-section .c-card.c-card--media-bg .c-card__body {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}
.feature-section .c-card.c-card--media-bg .c-card__kicker {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  letter-spacing: 0.06em;
  text-shadow: inherit;
}
.feature-section .c-card.c-card--media-bg .c-card__desc {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1024px) {
  .feature-section {
    --feature-header-gap: 64px;
    --card-min-h: 240px;
    --feature-overlay-1: rgba(10, 24, 40, 0.56);
    --feature-overlay-2: rgba(10, 24, 40, 0.36);
    --feature-overlay-3: rgba(10, 24, 40, 0.16);
  }
  .feature-section .c-card.c-card--media-bg .c-card__media img {
    filter: brightness(0.9) contrast(1.05);
  }
  .feature-section .c-card.c-card--media-bg:hover .c-card__media img {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .feature-section {
    --feature-header-gap: 48px;
    --card-min-h: auto;
  }
  .feature-section .c-card.c-card--media-bg:hover .c-card__media img {
    transform: scale(1.03);
  }
}
.location-section .location-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.location-section .location-layout.is-map-left {
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 1024px) {
  .location-section .location-layout {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }
}
.location-section .location-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.location-section .location-map iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 52vw, 520px);
  border: 0;
}
@media (max-width: 1024px) {
  .location-section .location-map iframe {
    height: clamp(280px, 60vw, 380px);
  }
}
.location-section .location-panel {
  padding-top: 2px;
}
@media (max-width: 1024px) {
  .location-section .location-panel {
    padding-top: 0;
  }
}
.location-section .location-items {
  display: grid;
  gap: 24px;
}
@media (max-width: 1024px) {
  .location-section .location-items {
    gap: 16px;
  }
}
.location-section .location-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-bottom: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
}
.location-section .location-item:first-child {
  padding-top: 0;
}
.location-section .location-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .location-section .location-item {
    grid-template-columns: 36px 1fr;
    gap: 8px;
    padding: 16px 0;
  }
}
.location-section .location-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4F46E5;
  background: color-mix(in srgb, #4F46E5 10%, #fff);
  border: 1px solid color-mix(in srgb, #4F46E5 18%, rgba(17, 24, 39, 0.08));
}
@media (max-width: 1024px) {
  .location-section .location-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
}
.location-section .location-k {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}
@media (max-width: 1024px) {
  .location-section .location-k {
    margin-bottom: 4px;
  }
}
.location-section .location-v {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.7;
  word-break: keep-all;
}
@media (max-width: 1024px) {
  .location-section .location-v {
    font-size: 0.875rem;
    line-height: 1.6;
    word-break: break-word;
  }
}
.location-section .location-sub {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .location-section .location-sub {
    margin-top: 4px;
    font-size: 0.75rem;
  }
}
.location-section .location-tel {
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, #111827 25%, transparent);
}
.location-section .location-tel:hover {
  color: #4F46E5;
  border-bottom-color: color-mix(in srgb, #4F46E5 60%, transparent);
}
.location-section .location-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 1024px) {
  .location-section .location-actions {
    margin-top: 24px;
    gap: 8px;
  }
  .location-section .location-actions > * {
    flex: 1 1 auto;
  }
}

.biz-primary-section .biz-primary {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .biz-primary-section .biz-primary {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.biz-primary-section .biz-primary__bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.biz-primary-section .biz-primary__bullets li {
  position: relative;
  padding-left: 16px;
  color: #374151;
  line-height: 1.6;
}
.biz-primary-section .biz-primary__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, #4F46E5 70%, #fff);
}
.biz-primary-section .biz-primary__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.biz-primary-section .biz-primary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.biz-primary-section .meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
}
.biz-primary-section .meta-chip .k {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.biz-primary-section .meta-chip .v {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.biz-primary-section .biz-media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, rgba(17, 24, 39, 0.08) 80%, transparent);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.biz-primary-section .biz-media-card .biz-thumb {
  height: 420px;
  background: url("/assets/images/frontend/samples/business1.webp") center/cover no-repeat;
  border: 0;
  box-shadow: none;
}
.biz-primary-section .biz-media-card__bottom {
  padding: 32px;
}
.biz-primary-section .biz-media-card__caption {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: #4b5563;
}
.biz-primary-section .biz-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 480px) {
  .biz-primary-section .biz-stats {
    grid-template-columns: 1fr;
  }
}
.biz-primary-section .stat {
  padding: 16px;
  border-radius: 12px;
  background: color-mix(in srgb, #4F46E5 6%, #fff);
  border: 1px solid color-mix(in srgb, #4F46E5 12%, rgba(17, 24, 39, 0.08));
}
.biz-primary-section .stat .stat__label {
  display: block;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.biz-primary-section .stat .stat__value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.biz-secondary-section {
  /* ======================
     Section Tokens
  ====================== */
  --section-bg: #fff;
  --panel-bg: #fff;
  --card-bg: #fbfcff;
  --border: color-mix(in srgb, rgba(17, 24, 39, 0.08) 92%, #000);
  --text: #111827;
  --muted: #374151;
  --subtle: #6b7280;
  --brand: #4F46E5;
  background: var(--section-bg);
}
.biz-secondary-section .biz-secondary {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.biz-secondary-section .biz-media-stack {
  position: relative;
  border-radius: 16px;
}
.biz-secondary-section .biz-thumb {
  height: 620px;
  overflow: hidden;
  background: url("/assets/images/frontend/samples/business2.webp") center/cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1), 0 2px 10px rgba(15, 23, 42, 0.06);
}
.biz-secondary-section .biz-mini-card {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: min(400px, 92%);
  padding: 48px;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.06);
}
.biz-secondary-section .biz-mini-card__title {
  margin: 0 0 24px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.biz-secondary-section .biz-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.biz-secondary-section .biz-mini-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.biz-secondary-section .biz-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 80%, #fff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, #fff);
}
.biz-secondary-section .biz-secondary__desc {
  margin: 0 0 48px;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--muted);
  max-width: 62ch;
  letter-spacing: -0.01em;
}
.biz-secondary-section .biz-secondary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 48px;
}
.biz-secondary-section .biz-point {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.biz-secondary-section .biz-point__k {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
}
.biz-secondary-section .biz-point__v {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.biz-secondary-section .biz-point__desc {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.biz-secondary-section .biz-secondary__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .biz-secondary-section .biz-secondary {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .biz-secondary-section .biz-mini-card {
    position: static;
    width: 100%;
    margin-top: 32px;
    right: auto;
    bottom: auto;
  }
}
@media (max-width: 768px) {
  .biz-secondary-section .biz-thumb {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .biz-secondary-section .biz-secondary__grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   Academy Sections (NO WRAPPER)
   - Modern spacing / typography / cards
   - No !important
================================================== */
.tone-sky {
  color: #0ea5e9;
}

.tone-orange {
  color: #f59e0b;
}

/* ==================================================
   PROGRAMS (3 color cards)
================================================== */
.academy-programs {
  --section-bg: #f7f8fa;
  background: var(--section-bg);
}
.academy-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 1023.98px) {
  .academy-programs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .academy-programs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.academy-programs__card {
  border-radius: 16px;
  padding: 64px 48px;
  min-height: 280px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.academy-programs__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023.98px) {
  .academy-programs__card {
    padding: 48px 32px;
    min-height: 260px;
  }
}
@media (max-width: 767.98px) {
  .academy-programs__card {
    padding: 32px;
    min-height: auto;
  }
}
.academy-programs__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 0 16px;
}
@media (max-width: 767.98px) {
  .academy-programs__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }
}
.academy-programs__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 767.98px) {
  .academy-programs__title {
    font-size: clamp(20px, 5vw, 26px);
  }
}
.academy-programs__desc {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 767.98px) {
  .academy-programs__desc {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.academy-programs__desc br {
  content: "";
}
.academy-programs__card--elementary {
  background: #ef4444;
}
.academy-programs__card--middle {
  background: #3b82f6;
}
.academy-programs__card--high {
  background: #10b981;
}

.academy-strength {
  --section-bg: #ffffff;
  background: var(--section-bg);
}
.academy-strength__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 1023.98px) {
  .academy-strength__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
}
.academy-strength__content {
  max-width: 52ch;
}
.academy-strength__headline {
  margin: 0 0 16px;
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #111827;
  word-break: keep-all;
}
@media (max-width: 767.98px) {
  .academy-strength__headline {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.35;
  }
}
.academy-strength__lead {
  margin: 0;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.8;
  color: #4b5563;
}
@media (max-width: 767.98px) {
  .academy-strength__lead {
    line-height: 1.75;
  }
}
.academy-strength__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 767.98px) {
  .academy-strength__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.academy-strength__card {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, #e5e7eb 84%, #fff);
  border-radius: 16px;
  padding: 48px;
  min-height: 190px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.academy-strength__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, #0ea5e9 22%, #e5e7eb);
}
@media (max-width: 1023.98px) {
  .academy-strength__card {
    padding: 32px;
    min-height: 180px;
  }
}
@media (max-width: 767.98px) {
  .academy-strength__card {
    min-height: auto;
  }
}
.academy-strength__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, #0ea5e9 10%, #fff);
  border: 1px solid color-mix(in srgb, #0ea5e9 16%, #fff);
  margin: 0 0 16px;
}
.academy-strength__icon i {
  width: 22px;
  height: 22px;
  color: #0ea5e9;
}
.academy-strength__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
}
.academy-strength__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #4b5563;
}

.academy-story {
  --section-bg: #f7f8fa;
  background: var(--section-bg);
}
.academy-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 1023.98px) {
  .academy-story__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
}
.academy-story__media {
  margin: 0;
}
.academy-story__media img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023.98px) {
  .academy-story__media {
    order: 2;
  }
}
.academy-story__content {
  max-width: 56ch;
  margin-inline: auto;
}
@media (max-width: 1023.98px) {
  .academy-story__content {
    order: 1;
  }
}
.academy-story__headline {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #111827;
  word-break: keep-all;
}
@media (max-width: 767.98px) {
  .academy-story__headline {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.35;
  }
}
.academy-story__lead {
  margin: 0 0 32px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.85;
  color: #374151;
}
@media (max-width: 767.98px) {
  .academy-story__lead {
    margin-bottom: 24px;
    line-height: 1.75;
  }
}
.academy-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .academy-story__actions {
    gap: 4px;
  }
}
.academy-story__actions .btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
}
@media (max-width: 767.98px) {
  .academy-story__actions .btn {
    min-height: 46px;
    padding: 0 16px;
  }
}

.academy-steps {
  --section-bg: #ffffff;
  background: var(--section-bg);
}
.academy-steps__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 1023.98px) {
  .academy-steps__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
}
.academy-steps__content {
  max-width: 52ch;
}
.academy-steps__headline {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #111827;
  word-break: keep-all;
}
@media (max-width: 767.98px) {
  .academy-steps__headline {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.35;
  }
}
.academy-steps__lead {
  margin: 0;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.85;
  color: #4b5563;
}
@media (max-width: 767.98px) {
  .academy-steps__lead {
    line-height: 1.75;
  }
}
.academy-steps__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 767.98px) {
  .academy-steps__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.academy-steps__card {
  position: relative;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, #e5e7eb 84%, #fff);
  border-radius: 16px;
  padding: 62px 48px 48px;
  min-height: 190px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.academy-steps__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, #0ea5e9 22%, #e5e7eb);
}
@media (max-width: 1023.98px) {
  .academy-steps__card {
    padding: 46px 32px 32px;
    min-height: 180px;
  }
}
@media (max-width: 767.98px) {
  .academy-steps__card {
    min-height: auto;
  }
}
.academy-steps__badge {
  position: absolute;
  top: -14px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 46px;
  padding: 0 18px;
  border-radius: 16px 16px 6px 6px;
  background: #0ea5e9;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .academy-steps__badge {
    left: 14px;
    height: 44px;
    padding: 0 16px;
  }
}
.academy-steps__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
}
.academy-steps__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #4b5563;
}

/* ==================================================
   CTA (Parallax 느낌)
   - 배경 이미지고정 + overlay + 중앙 컨텐츠
   - 모바일/태블릿에서는 fixed 비활성화 (브라우저 이슈 방지)
================================================== */
.academy-cta {
  /* tokens */
  --cta-bg: url("/assets/images/frontend/samples/academy-cta.webp");
  --cta-min-h: 360px;
  --cta-pad-y: clamp(84px, 8vw, 132px);
  /* overlay tone */
  --cta-ov: 0.58;
  --cta-ov-2: 0.36;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: var(--cta-min-h);
  padding: var(--cta-pad-y) 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 1023.98px) {
  .academy-cta {
    background-attachment: scroll;
    background-position: center 40%;
  }
}
@media (max-width: 767.98px) {
  .academy-cta {
    --cta-min-h: 320px;
    --cta-pad-y: clamp(72px, 10vw, 104px);
  }
}
.academy-cta::before, .academy-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.academy-cta::before {
  background: rgba(0, 0, 0, var(--cta-ov));
}
.academy-cta::after {
  background: radial-gradient(1200px 480px at 55% 35%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, var(--cta-ov-2)));
  mix-blend-mode: normal;
}
.academy-cta .container {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
}
.academy-cta .cta-box {
  max-width: 760px;
  margin-inline: auto;
}
.academy-cta .cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.88);
}
.academy-cta .cta-box p {
  margin: 0 0 32px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  word-break: keep-all;
}
@media (max-width: 767.98px) {
  .academy-cta .cta-box p {
    margin-bottom: 24px;
  }
}
.academy-cta .cta-box .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .academy-cta .cta-box .btn-group {
    width: 100%;
    gap: 4px;
  }
}
.academy-cta .cta-box .btn-group .btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  transition: transform 160ms ease, filter 160ms ease, background-color 160ms ease;
}
@media (max-width: 767.98px) {
  .academy-cta .cta-box .btn-group .btn {
    width: 100%;
    min-height: 50px;
  }
}
.academy-cta .cta-box .btn-group .btn--primary {
  background: color-mix(in srgb, #0ea5e9 86%, #000);
  border: 1px solid color-mix(in srgb, #0ea5e9 30%, rgba(255, 255, 255, 0.5));
  color: #ffffff;
}
.academy-cta .cta-box .btn-group .btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}
.academy-cta .cta-box .btn-group .btn--outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}
.academy-cta .cta-box .btn-group .btn--outline:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.52);
}
