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

  html, body { height: 100%; }

  body {
    font-family: 'Pretendard', sans-serif;
  }

  .page {
    display: none;
    min-height: 100vh;
  }

  .page.active {
    display: block;
  }

  .page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #14171c;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }

  .page-transition.is-hidden {
    opacity: 0;
  }

  /* subpages: hero + breadcrumb + sibling tab bar + two-column body */
  .simple-page {
    background: #ffffff;
    min-height: 100vh;
  }

  .simple-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 44px;
    color: #14171c;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }

  .simple-nav .nav-logo {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: inherit;
    text-decoration: none;
  }

  .simple-nav .nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 90px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(20, 23, 28, 0.85);
  }

  .simple-nav .nav-links > a {
    color: inherit;
    text-decoration: none;
  }

  .simple-nav .nav-item {
    position: relative;
    padding: 8px 0;
  }

  .simple-nav .nav-item > a {
    color: inherit;
    text-decoration: none;
  }

  .simple-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 18px 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 130px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(20, 23, 28, 0.14);
    border: 1px solid rgba(20, 23, 28, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .simple-nav .sub-menu a {
    pointer-events: none;
    color: rgba(20, 23, 28, 0.85);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .simple-nav .nav-item:hover .sub-menu a {
    pointer-events: none;
  }

  .simple-nav .sub-menu a:hover {
    opacity: 0.6;
  }

  .simple-nav .nav-item:hover .sub-menu {
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
  }

  .simple-nav .nav-menu-wrap {
    margin-left: 30px;
  }

  .simple-nav .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .simple-nav .nav-menu span {
    width: 20px;
    height: 1px;
    background: #14171c;
    transition: background 0.4s ease;
  }

  .simple-nav .full-menu {
    position: absolute;
    top: 100%;
    left: -60px;
    right: -60px;
    height: 140px;
    z-index: 1;
    background: #ffffff;
    border-top: 1px solid rgba(20, 23, 28, 0.06);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(20, 23, 28, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .simple-nav .full-menu a {
    pointer-events: none;
  }

  .simple-nav .nav-links:has(.nav-menu-wrap:hover) .sub-menu a {
    pointer-events: none;
  }

  .simple-nav .nav-links:has(.nav-menu-wrap:hover) .sub-menu {
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: 2;
  }

  .simple-nav .nav-links:has(.nav-menu-wrap:hover) .full-menu {
    opacity: 0;
  }

  .simple-nav .menu-col {
    display: none;
  }

  .simple-nav .menu-col a {
    color: rgba(20, 23, 28, 0.85);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: none;
  }

  .simple-nav .menu-col a:hover {
    opacity: 0.6;
  }

  @media (max-width: 900px) {
    .simple-nav .nav-links > .nav-item { display: none; }
  }

  .subpage-hero {
    position: relative;
    margin-top: 0;
    height: 420px;
    overflow: visible;
    color: #fff;
    background: #ffffff;
  }

  .subpage-hero .bg-media {
    position: absolute;
    top: 116px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 28px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .subpage-hero--a .bg-media {
    background-image: url('/img/asset-01.jpg');
  }

  .subpage-hero--b .bg-media {
    background-image: url('/img/asset-02.jpg');
  }

  .subpage-hero--a .bg-media,
  .subpage-hero--b .bg-media {
    background-image: none !important;
    background-color: #ffffff !important;
  }

  .subpage-hero .bg-tint {
    display: none;
  }

  .subpage-hero-title {
    position: absolute;
    left: 56px;
    bottom: 76px;
    z-index: 1;
    color: #14171c;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 1px;
    text-align: left;
  }

  .subpage-breadcrumb {
    position: absolute;
    left: 56px;
    bottom: 40px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: rgba(20, 23, 28, 0.5);
  }

  .subpage-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .subpage-breadcrumb a:hover {
    color: #14171c;
  }

  .subpage-breadcrumb .current {
    color: rgba(20, 23, 28, 0.85);
  }

  .subpage-tabs {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 4px;
    background: #f6f7f9;
    border-bottom: 1px solid rgba(20, 23, 28, 0.08);
    overflow-x: auto;
    padding: 0 24px;
  }

  .subpage-tabs a {
    padding: 20px 24px;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(20, 23, 28, 0.5);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .subpage-tabs a:hover {
    color: #14171c;
  }

  .subpage-tabs a.active {
    color: #14171c;
    font-weight: 700;
    border-bottom-color: #14171c;
  }

  .subpage-body {
    max-width: 1080px;
    margin: 0 auto;
    padding: 100px 24px;
    display: flex;
    align-items: center;
    gap: 70px;
  }

  .subpage-info {
    flex: 1;
    max-width: 420px;
    text-align: left;
  }

  .simple-label {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 4px;
    color: #2b7fd1;
    margin-bottom: 16px;
  }

  .simple-title {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.5px;
    color: #14171c;
    margin-bottom: 20px;
  }

  .subpage-divider {
    width: 34px;
    height: 2px;
    background: #14171c;
    margin-bottom: 22px;
  }

  .simple-desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(20, 23, 28, 0.68);
  }

  .subpage-photo {
    flex: 1;
    position: relative;
    height: 380px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(20, 23, 28, 0.14);
  }

  .article-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 24px 120px;
    font-family: 'Pretendard', sans-serif;
  }

  .article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .article-meta .cat { color: #2b7fd1; font-weight: 700; }
  .article-meta .date { color: rgba(20, 23, 28, 0.4); }

  .article-main .article-crumb { justify-content: center; }
  .article-main .article-title { text-align: center; }
  .article-main .article-meta { justify-content: center; margin-bottom: 40px; }

  .num-list { margin: 4px 0 20px; list-style: none; padding: 0; }

  .term-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
  }

  .term-card {
    display: block;
    background: #ffffff;
    border: 1px solid rgba(20, 23, 28, 0.13);
    border-radius: 14px;
    padding: 28px 26px 26px;
    text-decoration: none;
    word-break: keep-all;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .term-card:hover {
    border-color: #2b7fd1;
    box-shadow: 0 6px 20px rgba(20, 23, 28, 0.07);
    transform: translateY(-2px);
  }

  .term-card .tc-cat {
    font-size: 12.5px;
    font-weight: 700;
    color: #2b7fd1;
    letter-spacing: 0.3px;
    margin-bottom: 13px;
  }

  .term-card .tc-title {
    font-size: 17.5px;
    font-weight: 700;
    color: #14171c;
    line-height: 1.45;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }

  .term-card .tc-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72;
    color: rgba(20, 23, 28, 0.62);
    margin: 0;
  }

  @media (max-width: 900px) {
    .term-grid { grid-template-columns: minmax(0, 1fr); }
  }

  .num-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid rgba(20, 23, 28, 0.09);
  }

  .num-item:first-child { border-top: none; padding-top: 6px; }

  .num-item .num {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #2b7fd1;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
  }

  .num-item .num-t {
    font-size: 16.5px;
    font-weight: 700;
    color: #14171c;
    letter-spacing: -0.2px;
    margin-bottom: 9px;
  }

  .num-item .num-body { min-width: 0; }
  .num-item .num-body p:last-child { margin-bottom: 0; }

  .article-lead {
    font-size: 17px;
    line-height: 1.9;
    color: #14171c;
    font-weight: 400;
    margin: 0 0 14px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(20, 23, 28, 0.08);
  }

  .article-wrap h2 {
    position: relative;
    font-size: 24.5px;
    font-weight: 700;
    color: #14171c;
    letter-spacing: -0.4px;
    margin: 44px 0 18px;
    padding-top: 22px;
  }

  .article-wrap h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: #2b7fd1;
  }

  .article-wrap p strong {
    font-weight: 600;
    color: #14171c;
  }

  .term-def strong {
    font-weight: 700;
    color: #2b7fd1;
  }

  .article-wrap h3 {
    font-size: 16px;
    font-weight: 700;
    color: #14171c;
    margin: 32px 0 10px;
  }

  .article-wrap p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.95;
    color: rgba(20, 23, 28, 0.84);
    margin: 0 0 16px;
  }

  .article-table-wrap { overflow-x: auto; margin: 26px 0 12px; }

  .article-table { width: 100%; border-collapse: collapse; font-size: 14px; }

  .article-table th {
    background: #f6f7f9;
    font-weight: 600;
    color: #14171c;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(20, 23, 28, 0.12);
    white-space: nowrap;
  }

  .article-table td {
    padding: 12px 14px;
    font-weight: 300;
    color: rgba(20, 23, 28, 0.78);
    border-bottom: 1px solid rgba(20, 23, 28, 0.07);
    line-height: 1.7;
  }

  .article-faq .q {
    font-size: 15px;
    font-weight: 600;
    color: #14171c;
    margin: 26px 0 8px;
  }

  .article-faq.faq-accordion {
    margin-top: 10px;
    border-top: 1px solid rgba(20, 23, 28, 0.12);
  }

  .faq-item {
    border-bottom: 1px solid rgba(20, 23, 28, 0.12);
  }

  .faq-item > summary {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 19px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15.5px;
    font-weight: 600;
    color: #14171c;
    letter-spacing: -0.3px;
    line-height: 1.55;
    word-break: keep-all;
    transition: color 0.15s ease;
  }

  .faq-item > summary::-webkit-details-marker { display: none; }
  .faq-item > summary::marker { content: ''; }
  .faq-item > summary:hover { color: #2b7fd1; }

  .faq-item > summary::after {
    content: '';
    flex: 0 0 auto;
    margin-left: auto;
    margin-top: 5px;
    width: 13px;
    height: 13px;
    background:
      linear-gradient(#2b7fd1, #2b7fd1) center / 13px 1.5px no-repeat,
      linear-gradient(#2b7fd1, #2b7fd1) center / 1.5px 13px no-repeat;
  }

  .faq-item[open] > summary::after {
    background: linear-gradient(#2b7fd1, #2b7fd1) center / 13px 1.5px no-repeat;
  }

  .faq-item > p {
    margin: 0 0 14px;
    padding-right: 36px;
  }

  .faq-item > p:last-child { margin-bottom: 26px; }

  .article-related {
    margin-top: 74px;
    padding-top: 30px;
    border-top: 1px solid rgba(20, 23, 28, 0.08);
  }

  .article-related .related-label {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: rgba(20, 23, 28, 0.4);
    margin-bottom: 14px;
  }

  .article-related a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 500;
    color: #14171c;
    text-decoration: none;
    border-bottom: 1px solid rgba(20, 23, 28, 0.06);
    transition: opacity 0.2s ease;
  }

  .article-related a:hover { opacity: 0.55; }
  .article-related a .arrow { float: right; color: rgba(20, 23, 28, 0.35); }

  @media (max-width: 768px) {
    .article-wrap { padding: 12px 22px 80px; }
    .article-wrap h2 { font-size: 19px; }
    .article-lead { font-size: 16px; }
  }

  @media (max-width: 900px) {
    .subpage-body {
      flex-direction: column;
      padding: 60px 24px;
      gap: 36px;
    }
    .subpage-info {
      max-width: 100%;
      text-align: center;
    }
    .subpage-divider { margin: 0 auto 22px; }
    .subpage-photo { width: 100%; height: 260px; }
  }

  @media (max-width: 768px) {
    .subpage-hero { height: 300px; margin-top: 0; }
    .subpage-hero .bg-media,
    .subpage-hero .bg-tint { top: 90px; right: 12px; bottom: 12px; left: 12px; }
    .subpage-hero-title { font-size: 26px; left: 28px; bottom: 56px; }
    .subpage-breadcrumb { left: 28px; bottom: 26px; }
    .simple-title { font-size: 26px; }
    .simple-nav { padding: 22px 24px; }
  }


/* ---- page: index (rebuilt: no intro, single full-bleed rolling photo) ---- */
#page-index {
    font-family: 'Pretendard', sans-serif;
    background: #000;
  }

html.page-index-active {
  }

#page-index .hero,
#page-index .idx-panel {
  }

#page-index .idx-why-standalone {
  }

#page-index .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    background: #ffffff;
  }

#page-index .hero-slide2-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.4;
    letter-spacing: -1px;
    color: #ffffff;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    white-space: normal;
  }

@media (max-width: 768px) {
  #page-index .hero-slide2-text { font-size: 34px; max-width: 90%; }
}

#page-index .idx-panel {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 44px;
    text-align: center;
  }

#page-index .idx-panel.tone-a { background: #ffffff; }
#page-index .idx-panel.tone-b { background: #ffffff; }
#page-index .idx-panel.tone-c { background: #ffffff; }
#page-index .idx-project { background: #ffffff; }
#page-index .idx-panel.idx-project {
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 96px 44px 64px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid rgba(20, 23, 28, 0.1);
  }

#page-index { background: #ffffff; }

#page-index .idx-panel.idx-final {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: #000000;
    border-radius: 0;
  }

#page-index .idx-final-card {
    width: 100%;
    height: 0;
    flex: 0 0 auto;
    background: #000000;
    border-radius: 0;
  }

#page-index .idx-final-bottom {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 210px 44px;
    text-align: center;
    box-sizing: border-box;
  }

#page-index .idx-panel-label {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #8a8378;
    margin-bottom: 20px;
  }

#page-index .idx-panel-heading {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.4;
    color: #14171c;
  }

#page-index .idx-final-spotlight {
    position: relative;
    display: inline-block;
    margin-top: 16px;
  }

#page-index .idx-final-spotlight > .idx-panel-heading:not(.idx-panel-heading-glow) {
    color: rgba(255, 255, 255, 0.16);
  }

#page-index .idx-panel-heading-glow {
    position: absolute;
    inset: 0;
    color: #ffffff;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 100%);
    mask-image: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 100%);
  }

#page-index .idx-final-bottom .idx-panel-link {
    display: inline-block;
    margin-top: 0;
    padding: 17px 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease;
  }

#page-index .idx-final-bottom .idx-panel-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
  }

#page-index .idx-final-bottom .idx-panel-link.primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #14171c;
    font-weight: 500;
  }

#page-index .idx-final-bottom .idx-panel-link.primary:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
  }

#page-index .idx-panel-link.primary {
    background: #14171c;
    border-color: #14171c;
    color: #ffffff;
    font-weight: 500;
  }

#page-index .idx-panel-link.primary:hover {
    background: rgba(20, 23, 28, 0.82);
    border-color: rgba(20, 23, 28, 0.82);
  }

.idx-footer {
    background: #000000;
    padding: 72px 44px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

.idx-footer-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
  }

.idx-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

.idx-footer-brand {
    flex: 1 1 280px;
    max-width: 340px;
  }

.idx-footer-logo {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 14px;
  }

.idx-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
  }

.idx-footer-cols {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
  }

.idx-footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 140px;
  }

.idx-footer-col-title {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
  }

.idx-footer-col a,
.idx-footer-col span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    line-height: 1.6;
  }

.idx-footer-col a:hover {
    color: #ffffff;
  }

.idx-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
  }

.idx-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
  }

.idx-footer-copy {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
  }

@media (max-width: 768px) {
  .idx-footer-top { flex-direction: column; gap: 32px; }
  .idx-footer-bottom { flex-direction: column; align-items: flex-start; }
}

#page-index .idx-panel.idx-story {
    height: auto;
    min-height: 0;
    text-align: center;
    align-items: center;
    padding: 140px 44px 88px;
    border-radius: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
    background: #f3f2ef;
  }

#page-index .idx-story-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
  }

#page-index .idx-story-process {
    width: 100%;
    text-align: center;
  }

#page-index .idx-story-process-pin {
    position: relative;
  }

#page-index .idx-story-process-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 68px;
  }

#page-index .idx-story-process-textcol {
    position: relative;
    flex: 0 1 820px;
    max-width: 820px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.9s ease;
  }

#page-index .idx-story-process-textcol.is-in {
    opacity: 1;
  }


#page-index .idx-story-process-textcol .ghost {
    position: relative;
    display: inline-block;
    margin-bottom: 26px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    pointer-events: none;
  }

#page-index .idx-story-process-textcol .ghost .fill-base {
    display: block;
    color: rgba(20, 23, 28, 0.07);
  }

#page-index .idx-story-process-textcol .ghost .fill-top {
    position: absolute;
    inset: 0;
    display: block;
    color: #14171c;
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
    transition: clip-path 0.85s cubic-bezier(0.65, 0, 0.35, 1);
  }

#page-index .idx-story-process-textcol.is-in .ghost .fill-top {
    clip-path: inset(0 0 0 0);
  }

#page-index .idx-story-process-heading {
    position: relative;
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.4;
    letter-spacing: -0.03em;
    text-align: center;
  }

#page-index .idx-story-process-heading .fill-line {
    position: relative;
    display: block;
  }

#page-index .idx-story-process-heading .fill-base {
    display: block;
    color: rgba(20, 23, 28, 0.13);
  }

#page-index .idx-story-process-heading .fill-top {
    position: absolute;
    inset: 0;
    display: block;
    color: #14171c;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    will-change: clip-path;
    transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
    transition-delay: 0.16s;
  }

#page-index .idx-story-process-heading .fill-line[data-dir="rev"] .fill-top {
    clip-path: inset(0 0 0 100%);
  }

#page-index .idx-story-process-heading.is-filled .fill-line .fill-top {
    clip-path: inset(0 0 0 0);
  }

#page-index .idx-story-process-heading .fill-line:nth-child(2) .fill-top {
    transition-delay: 0.31s;
  }

#page-index .idx-story-process-heading .fill-line:nth-child(3) .fill-top {
    transition-delay: 0.3s;
  }

#page-index .idx-story-steps {
    list-style: none;
    width: 100%;
    max-width: 820px;
    margin: 72px auto 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }

#page-index .idx-story-steps li {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

#page-index .idx-story-steps.is-visible li {
    opacity: 1;
    transform: scale(1);
  }

#page-index .idx-story-steps li:nth-child(2) { transition-delay: 0.1s; }
#page-index .idx-story-steps li:nth-child(3) { transition-delay: 0.2s; }
#page-index .idx-story-steps li:nth-child(4) { transition-delay: 0.3s; }

#page-index .idx-story-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 13px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 1px;
    background: rgba(20, 23, 28, 0.14);
  }

#page-index .idx-story-steps .num {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #8a8378;
  }

#page-index .idx-story-steps .name {
    font-size: 16px;
    font-weight: 600;
    color: #14171c;
    letter-spacing: -0.02em;
  }

@media (max-width: 900px) {
  #page-index .idx-story-process-split { flex-direction: column; gap: 40px; }
  #page-index .idx-story-process-textcol { max-width: none; }
  #page-index .idx-story-process-textcol .ghost { font-size: 42px; margin-bottom: 18px; }
  #page-index .idx-story-process-heading { font-size: 28px; }
  #page-index .idx-story-steps { display: grid; grid-template-columns: 1fr 1fr; row-gap: 28px; }
  #page-index .idx-story-steps li:not(:last-child)::after { display: none; }
}

#page-index .idx-panel.idx-works {
    height: auto;
    min-height: 0;
    overflow: visible;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 60px 32px 100px;
    background: #ffffff;
  }

#page-index .idx-works-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
  }

#page-index .idx-works-heading {
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.4;
    color: #14171c;
    max-width: 760px;
    margin: 0 auto 80px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

#page-index .idx-works-heading .accent {
    color: inherit;
  }

#page-index .idx-works-heading .wline-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }

#page-index .idx-works-heading .wline {
    display: inline-block;
    opacity: 0;
    transform: translateX(-90vw);
    transition: opacity 0.35s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  }

#page-index .idx-works-heading .wline[data-dir="right"] {
    transform: translateX(90vw);
    transition-delay: 0.15s;
  }

#page-index .idx-works-heading .wline-wrap.is-visible .wline {
    opacity: 1;
    transform: translateX(0);
  }

#page-index .idx-works-sub {
    margin: 16px auto 0;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(20, 23, 28, 0.55);
  }

#page-index .idx-works-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 12px 22px;
    border: 1px solid rgba(20, 23, 28, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #14171c;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

#page-index .idx-works-all:hover {
    background: rgba(20, 23, 28, 0.05);
    border-color: #14171c;
  }

#page-index .idx-works-list {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 48px;
  }

#page-index .idx-works-item,
#page-index .idx-works-item:link,
#page-index .idx-works-item:visited,
#page-index .idx-works-item:hover,
#page-index .idx-works-item:active {
    flex: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: 0;
    padding: 22px 40px 24px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
    background: #14171c;
    box-shadow: none;
    transition: transform 0.25s ease, background 0.25s ease;
  }

#page-index .idx-works-item:hover,
#page-index .idx-works-item.is-active {
    transform: translateY(-3px);
    background: #1c2128;
  }

#page-index .idx-works-item.item-1,
#page-index .idx-works-item.item-2,
#page-index .idx-works-item.item-3,
#page-index .idx-works-item.item-4 {
    box-shadow: none;
    color: #ffffff;
  }

#page-index .idx-works-item .idx-works-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
  }

#page-index .idx-works-item .idx {
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.48);
  }

#page-index .idx-works-item .label {
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.42);
  }

#page-index .idx-works-item .icon,
#page-index .idx-works-item .eyebrow {
    display: none;
  }

#page-index .idx-works-item .num {
    position: static;
    width: 100%;
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #ffffff;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-sizing: border-box;
  }

#page-index .idx-works-item.item-1 .num,
#page-index .idx-works-item.item-2 .num,
#page-index .idx-works-item.item-3 .num,
#page-index .idx-works-item.item-4 .num {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
  }

#page-index .idx-works-item .content {
    flex: 1;
    min-width: 0;
    margin-top: 0;
  }

#page-index .idx-works-item .desc {
    margin-top: 0;
    max-width: none;
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    display: block;
    overflow: visible;
    word-break: keep-all;
  }

#page-index .idx-works-item.item-1 .desc,
#page-index .idx-works-item.item-2 .desc,
#page-index .idx-works-item.item-3 .desc,
#page-index .idx-works-item.item-4 .desc { color: rgba(255, 255, 255, 0.62); }

@media (max-width: 900px) {
  #page-index .idx-works-heading { font-size: 28px; margin-bottom: 32px; }
  #page-index .idx-works-list { grid-template-columns: 1fr; gap: 20px; }
  #page-index .idx-works-item { flex-direction: column; align-items: flex-start; gap: 0; min-height: 0; }
  #page-index .idx-works-item .num { font-size: 20px; }
}

#page-index .idx-panel.idx-services {
    height: auto;
    min-height: 0;
    overflow: visible;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background: #ffffff;
  }

#page-index .idx-panel.idx-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/img/asset-03.jpg') center/cover no-repeat;
    
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
  }

#page-index .idx-services-sticky-wrap {
    position: relative;
    width: 100%;
    z-index: 1;
  }

#page-index .idx-services-bigtext {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 44px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.35;
    color: #14171c;
    background: transparent;
    z-index: 1;
  }

#page-index .idx-services-cards {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
    width: 100%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 130px 44px 140px;
    display: flex;
    flex-direction: column;
  }

#page-index .idx-services-card {
    width: 100%;
    max-width: 460px;
    margin-bottom: 24vh;
    background: #ffffff;
    border: 1.5px solid #14171c;
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 24px 60px rgba(20, 23, 28, 0.12);
    text-align: left;
  }

#page-index .idx-services-card:last-child { margin-bottom: 0; }

#page-index .idx-services-card:nth-child(odd) { margin-left: 0; margin-right: auto; }
#page-index .idx-services-card:nth-child(even) { margin-left: auto; margin-right: 0; }

#page-index .idx-services-card .cat {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2f8fe0;
    margin-bottom: 14px;
  }

#page-index .idx-services-card .q {
    font-size: 19px;
    font-weight: 700;
    color: #14171c;
    line-height: 1.5;
    margin-bottom: 12px;
  }

#page-index .idx-services-card .desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(20, 23, 28, 0.62);
    line-height: 1.7;
  }

#page-index .idx-panel.idx-blog {
    height: auto;
    min-height: 0;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    padding: 120px 44px;
    background: #ffffff;
  }

#page-index .idx-blog-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
  }

#page-index .idx-blog-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 48px;
  }

#page-index .idx-blog-heading {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #14171c;
    margin-top: 6px;
  }

#page-index .idx-blog-sub {
    margin: 12px auto 0;
    max-width: 480px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(20, 23, 28, 0.55);
  }

#page-index .idx-blog-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid rgba(20, 23, 28, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #14171c;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

#page-index .idx-blog-all:hover {
    background: rgba(20, 23, 28, 0.05);
    border-color: #14171c;
  }

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

#page-index .idx-blog-card {
    display: block;
    color: inherit;
    text-decoration: none;
    text-align: left;
  }

#page-index .idx-blog-thumb {
    position: relative;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
  }


#page-index .idx-blog-thumb.thumb-1 { background: linear-gradient(135deg, rgba(20,23,28,0.55), rgba(20,23,28,0.32)), url('/img/asset-04.jpg') center/cover no-repeat; }
#page-index .idx-blog-thumb.thumb-2 { background: linear-gradient(135deg, rgba(20,23,28,0.55), rgba(20,23,28,0.32)), url('/img/asset-05.jpg') center/cover no-repeat; }
#page-index .idx-blog-thumb.thumb-3 { background: linear-gradient(135deg, rgba(20,23,28,0.55), rgba(20,23,28,0.32)), url('/img/asset-06.jpg') center/cover no-repeat; }
#page-index .idx-blog-thumb.thumb-4 { background: linear-gradient(135deg, rgba(20,23,28,0.55), rgba(20,23,28,0.32)), url('/img/asset-07.jpg') center/cover no-repeat; }
#page-index .idx-blog-thumb.thumb-5 { background: linear-gradient(135deg, rgba(20,23,28,0.55), rgba(20,23,28,0.32)), url('/img/asset-08.jpg') center/cover no-repeat; }
#page-index .idx-blog-thumb.thumb-6 { background: linear-gradient(135deg, rgba(20,23,28,0.55), rgba(20,23,28,0.32)), url('/img/asset-09.jpg') center/cover no-repeat; }

#page-index .idx-blog-thumb .tag {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
  }

#page-index .idx-blog-title {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 700;
    color: #14171c;
    line-height: 1.4;
    transition: color 0.2s ease;
  }

#page-index .idx-blog-card:hover .idx-blog-title {
    color: #2f8fe0;
  }

#page-index .idx-blog-excerpt {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(20, 23, 28, 0.55);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

@media (max-width: 900px) {
  #page-index .idx-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  #page-index .idx-blog-grid { grid-template-columns: 1fr; }
}

#page-index .idx-panel.idx-testimonials {
    height: auto;
    min-height: 0;
    overflow: visible;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 0 44px;
  }

#page-index .idx-testimonials-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
  }

#page-index .idx-testimonials-sticky-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }

#page-index .idx-testimonials-textcol {
    flex: 0 0 40%;
    max-width: 40%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    box-sizing: border-box;
    padding-right: 40px;
    transform: translateY(-60px);
  }

#page-index .idx-testimonials-textcol .idx-panel-label {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

#page-index .idx-testimonials-ghost {
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-52%);
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 168px;
    line-height: 1;
    letter-spacing: 2px;
    color: rgba(20, 23, 28, 0.045);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }

#page-index .idx-testimonials-heading,
#page-index .idx-testimonials-sub {
    position: relative;
    z-index: 1;
  }

#page-index .idx-testimonials-dots {
    display: none;
  }



#page-index .idx-testimonials-heading {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1.15;
    color: #14171c;
    margin-top: 4px;
  }

#page-index .idx-testimonials-sub {
    margin: 22px 0 0;
    max-width: 380px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(20, 23, 28, 0.55);
  }

#page-index .idx-insight-list {
    flex: 1;
    width: auto;
    max-width: 60%;
    min-width: 0;
    padding: 14vh 0 70px;
    border-top: none;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: start;
  }

#page-index .idx-insight-item:nth-child(2n) {
    margin-top: 52px;
  }

#page-index .idx-insight-more {
    grid-column: 1 / -1;
  }

#page-index .idx-insight-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 600;
    color: #14171c;
    text-decoration: none;
  }

#page-index .idx-insight-more .arrow {
    font-size: 14px;
    transition: transform 0.25s ease;
  }

#page-index .idx-insight-more:hover .arrow {
    transform: translateX(4px);
  }

#page-index .idx-insight-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    border-radius: 24px;
    padding: 24px 22px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

#page-index .idx-insight-item:hover {
    opacity: 1;
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(20, 23, 28, 0.18);
  }

#page-index .idx-insight-item.tone-1 { background: linear-gradient(155deg, #4b5563, #1f2937); }
#page-index .idx-insight-item.tone-2 { background: linear-gradient(155deg, #6b7280, #363c46); }
#page-index .idx-insight-item.tone-3 { background: linear-gradient(155deg, #171b22, #303c4d); }
#page-index .idx-insight-item.tone-4 { background: linear-gradient(155deg, #9aa1ac, #4b5563); }
#page-index .idx-insight-item.tone-5 { background: linear-gradient(155deg, #2b2f36, #12141a); }
#page-index .idx-insight-item.tone-6 { background: linear-gradient(155deg, #7d8590, #454b54); }
#page-index .idx-insight-item.tone-7 { background: linear-gradient(155deg, #aab0b8, #5c636d); }
#page-index .idx-insight-item.tone-8 { background: linear-gradient(155deg, #333841, #15171c); }

#page-index .idx-insight-item .num {
    position: absolute;
    top: -10px;
    right: 14px;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 92px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.16);
    pointer-events: none;
    z-index: 0;
  }

#page-index .idx-insight-item .icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 18px;
  }

#page-index .idx-insight-item .icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
  }

#page-index .idx-insight-item .content {
    position: relative;
    z-index: 1;
    min-width: 0;
  }

#page-index .idx-insight-item .title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
  }

#page-index .idx-insight-item .desc {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }

@media (max-width: 900px) {
  #page-index .idx-services-bigtext { font-size: 28px; }
  #page-index .idx-services-cards { grid-template-columns: 1fr; } #page-index .idx-services-card { margin-bottom: 0; }
  #page-index .idx-testimonials-sticky-wrap { flex-direction: column; gap: 8px; }
  #page-index .idx-testimonials-textcol { position: static; height: auto; max-width: 100%; align-items: center; text-align: center; padding: 20px 0 4px; transform: none; }
  #page-index .idx-testimonials-heading { font-size: 32px; }
  #page-index .idx-testimonials-sub { max-width: 100%; }
  #page-index .idx-testimonials-ghost { display: none; }
  #page-index .idx-testimonials-dots { display: none; }
  #page-index .idx-insight-list { width: 100%; max-width: 100%; padding: 6px 0 10px; }
  #page-index .idx-insight-item .desc { display: none; }
  #page-index .idx-why-standalone { padding: 71px 0 41px; }
  #page-index .idx-why-heading { font-size: 24px; }
  #page-index .idx-why-carousel { height: 320px; }
  #page-index .idx-why-slide-title { font-size: 22px; max-width: 100%; }
  #page-index .idx-why-slide-desc { max-width: 100%; }
  #page-index .idx-why-nav { right: 20px; bottom: 20px; }
}


#page-index .idx-why-standalone {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 131px 0 61px;
    margin: -1px 0;
  }

#page-index .idx-why-heading-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 0 44px;
    text-align: left;
  }

#page-index .idx-why-heading {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #14171c;
  }

#page-index .idx-why-carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 520px;
    overflow: hidden;
  }

#page-index .idx-why-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

#page-index .idx-why-slide {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
  }

#page-index .idx-why-slide-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 7, 10, 0.88) 0%, rgba(6, 7, 10, 0.6) 42%, rgba(6, 7, 10, 0.15) 70%, rgba(6, 7, 10, 0) 85%);
  }

#page-index .idx-why-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

#page-index .idx-why-slide-title {
    max-width: 520px;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }

#page-index .idx-why-slide-desc {
    margin-top: 14px;
    max-width: 540px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  }

#page-index .idx-why-slide-eyebrow {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
  }

#page-index .idx-why-slide-rule {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 18px 0;
  }

#page-index .idx-why-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding: 14px 24px;
    background: #ffffff;
    color: #14171c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.25s ease, color 0.25s ease;
  }

#page-index .idx-why-slide-btn:hover {
    background: #2f8fe0;
    color: #ffffff;
  }

#page-index .idx-why-slide.style-split,
#page-index .idx-why-slide.style-graphic {
    display: flex;
    align-items: stretch;
    background-image: none !important;
  }

#page-index .idx-why-split-panel {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6% 0 44px;
    background: #fafafa;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }

#page-index .idx-why-split-eyebrow {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #5b7ba3;
    margin-bottom: 16px;
  }

#page-index .idx-why-split-title {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #14171c;
    line-height: 1.35;
  }

#page-index .idx-why-split-subtitle {
    margin-top: 10px;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(20, 23, 28, 0.4);
  }

#page-index .idx-why-split-rule {
    width: 40px;
    height: 1px;
    background: rgba(20, 23, 28, 0.3);
    margin: 22px 0;
  }

#page-index .idx-why-split-desc {
    max-width: 380px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(20, 23, 28, 0.6);
  }

#page-index .idx-why-split-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding: 14px 24px;
    background: #14171c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.25s ease;
  }

#page-index .idx-why-split-btn:hover {
    background: #2f8fe0;
  }

#page-index .idx-why-split-photo {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 82%, 5% 68%, 1% 54%, 6% 40%, 1% 26%, 5% 12%);
  }

#page-index .idx-why-split-lead {
    margin: 0;
    max-width: 380px;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: #14171c;
  }

#page-index .idx-why-split-desc {
    margin-top: 12px;
  }

#page-index .idx-why-graphic-art {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
  }

#page-index .idx-why-graphic-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(20, 23, 28, 0.22);
    border-radius: 50%;
  }

#page-index .idx-why-orb {
    position: absolute;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(20, 23, 28, 0.16);
  }

#page-index .idx-why-orb svg {
    width: 24px;
    height: 24px;
  }

#page-index .idx-why-orb span {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
  }

#page-index .idx-why-orb.orb-1 { top: 12%; right: 16%; background: #2c3648; color: #ffffff; }
#page-index .idx-why-orb.orb-2 { top: 42%; right: 40%; background: #ffffff; color: #14171c; border: 1px solid rgba(20, 23, 28, 0.1); }
#page-index .idx-why-orb.orb-3 { bottom: 10%; right: 18%; background: #14171c; color: #ffffff; }

@media (max-width: 900px) {
  #page-index .idx-why-slide.style-split,
  #page-index .idx-why-slide.style-graphic {
    flex-direction: column;
  }
  #page-index .idx-why-split-panel { flex: 0 0 auto; max-width: 100%; padding: 28px 24px; }
  #page-index .idx-why-split-photo { flex: 1; min-height: 0; }
  #page-index .idx-why-split-wave { display: none; }
  #page-index .idx-why-graphic-art { flex: 1; min-height: 0; }
  #page-index .idx-why-graphic-ring { width: 200px; height: 200px; }
  #page-index .idx-why-orb { width: 84px; height: 84px; }
  #page-index .idx-why-orb svg { width: 18px; height: 18px; }
}

#page-index .idx-why-nav {
    position: absolute;
    right: 28px;
    bottom: 26px;
    z-index: 3;
    display: flex;
    gap: 10px;
  }

#page-index .idx-why-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(20, 23, 28, 0.2);
    background: rgba(20, 23, 28, 0.05);
    color: #14171c;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }

#page-index .idx-why-nav button:hover {
    background: rgba(20, 23, 28, 0.12);
    border-color: rgba(20, 23, 28, 0.4);
  }

#page-index .idx-why-carousel.on-dark .idx-why-nav button {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

#page-index .idx-why-carousel.on-dark .idx-why-nav button:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75);
  }

#page-index .idx-why-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

#page-index .idx-why-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(20, 23, 28, 0.3);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
  }

#page-index .idx-why-dots button.is-active {
    width: 20px;
    border-radius: 4px;
    background: #14171c;
  }

#page-index .idx-why-carousel.on-dark .idx-why-dots button {
    background: rgba(255, 255, 255, 0.45);
  }

#page-index .idx-why-carousel.on-dark .idx-why-dots button.is-active {
    background: #ffffff;
  }

#page-index .idx-why-logos {
    width: 100%;
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 44px;
  }

#page-index .idx-why-logos-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

#page-index .idx-why-logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: idxPartnerScroll 22s linear infinite;
  }

#page-index .idx-why-logos-viewport:hover .idx-why-logos-track {
    animation-play-state: paused;
  }

#page-index .idx-why-logos-track span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-right: 56px;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.3px;
    color: rgba(20, 23, 28, 0.32);
    white-space: nowrap;
  }

#page-index .idx-why-logos-track span svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    filter: grayscale(1);
    transition: filter 0.25s ease;
  }

#page-index .idx-why-logos-track span:hover svg {
    filter: grayscale(0);
  }

#page-index .idx-project {
    flex-direction: column;
    justify-content: center;
    padding: 60px 44px;
    gap: 0;
  }

#page-index .idx-project-inner {
    align-self: center;
    width: 100%;
    max-width: 1120px;
    text-align: center;
    margin: 0 auto 64px;
  }

#page-index .idx-project-inner .idx-panel-label {
    display: block;
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.28em;
    color: #8a8378;
    margin: 0 0 22px;
    text-align: center;
  }

#page-index .idx-project-heading {
    display: block;
    width: 100%;
    font-family: 'Pretendard', 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #14171c;
    margin: 0 0 20px;
    text-align: center;
  }

#page-index .idx-project-inner .idx-panel-sub {
    display: block;
    width: 100%;
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: #1b1d21;
    text-align: center;
  }

#page-index .idx-project-carousel {
    position: relative;
    width: 100%;
    max-width: none;
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 14px;
  }

#page-index .idx-project-track {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    gap: 14px;
    overflow: hidden;
    padding: 4px 4px 10px;
  }

#page-index .idx-project-track::-webkit-scrollbar {
    display: none;
  }

#page-index .idx-project-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 270px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
  }

#page-index .idx-project-card.is-active {
    flex: 1 1 0;
  }

#page-index .idx-project-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
  }

#page-index .idx-project-card:hover .bg,
#page-index .idx-project-card.is-active .bg {
    transform: scale(1.06);
  }

#page-index .idx-project-card .tag {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

#page-index .idx-carousel-arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(20, 23, 28, 0.2);
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    color: #14171c;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

#page-index .idx-carousel-arrow:hover {
    background: rgba(20, 23, 28, 0.06);
    border-color: #14171c;
  }

#page-index .idx-partner-strip {
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(20, 23, 28, 0.08);
    display: flex;
    align-items: center;
    gap: 30px;
  }

#page-index .idx-partner-label {
    flex: 0 0 auto;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(20, 23, 28, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

#page-index .idx-partner-logos-viewport {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

#page-index .idx-partner-logos {
    display: flex;
    align-items: center;
    width: max-content;
    animation: idxPartnerScroll 26s linear infinite;
  }

#page-index .idx-partner-logos-viewport:hover .idx-partner-logos {
    animation-play-state: paused;
  }

@keyframes idxPartnerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
  }

#page-index .idx-partner-logos span {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 52px;
    padding: 6px 14px;
    margin-right: 16px;
    border-radius: 6px;
    background: transparent;
  }

#page-index .idx-partner-logos img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

@media (max-width: 768px) {
  #page-index .idx-partner-logos span { width: 100px; }
}

@media (max-width: 768px) {
  #page-index .idx-project-heading { font-size: 40px; }
  #page-index .idx-project-inner .idx-panel-sub { font-size: 15px; }
  #page-index .idx-project-track { overflow-x: auto; scroll-snap-type: x mandatory; }
  #page-index .idx-project-card { flex: 0 0 72%; height: 240px; scroll-snap-align: start; }
}

#page-index .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }

#page-index .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

#page-index .typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 0.9em;
    background: currentColor;
    margin-left: 3px;
    vertical-align: -0.1em;
    animation: geoCursorBlink__idx 0.85s step-end infinite;
  }

@media (max-width: 768px) {
  #page-index .idx-panel-heading { font-size: 22px; }
  #page-index .idx-final-bottom { flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 120px 30px; text-align: center; }
  #page-index .idx-panel-heading-glow {
    -webkit-mask-image: radial-gradient(circle 130px at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 100%);
    mask-image: radial-gradient(circle 130px at var(--mx, 50%) var(--my, 50%), #000 0%, transparent 100%);
  }
}

#page-index .bg-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-radius: 0;
    background: url('/img/asset-10.jpg') center/cover no-repeat;
  }

#page-index .bg-slide {
    display: none;
  }

#page-index .bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
  }

#page-index .bg-slide:nth-child(1) { opacity: 1; }
#page-index .bg-slide:nth-child(2), #page-index .bg-slide:nth-child(3) { display: none; }

@keyframes heroSlideFade__idx {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    29%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
  }

#page-index .hero-tint {
    position: absolute;
    top: 116px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 28px;
    background: none;
    display: none;
  }

#page-index .hero-center .hero-title {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 10px;
    white-space: nowrap;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  }

#page-index .hero-center .hero-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    margin-top: 12px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  }

#page-index .hero-center {
    position: absolute;
    top: 50%;
    left: 64px;
    right: 64px;
    transform: translateY(-50%);
    z-index: 4;
    text-align: center;
    color: #ffffff;
    white-space: normal;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

#page-index .hero-center .hero-desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    white-space: normal;
    line-height: 1.6;
    margin-top: 28px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  }

#page-index .hero-center .hero-cta-btn {
    display: inline-block;
    margin-top: 36px;
    padding: 16px 34px;
    border-radius: 999px;
    background: #ffffff;
    color: #14171c;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
  }

#page-index .hero-center .hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
  }

@media (max-width: 768px) {
  #page-index .hero-center { left: 28px; right: 28px; max-width: 88vw; }
  #page-index .hero-center .hero-cta-btn { margin-top: 22px; padding: 13px 26px; font-size: 12.5px; }
  #page-index .hero-center .hero-title { font-size: 30px; letter-spacing: 6px; }
  #page-index .hero-center .hero-subtitle { font-size: 10px; letter-spacing: 3px; }
  #page-index .hero-center .hero-desc { font-size: 13px; margin-top: 18px; }
}

/* ---- page: index top nav (mirrors #page-geo .nav) ---- */
#page-index .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 44px;
    color: #ffffff;
    background: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    transition: background 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  }

#page-index .nav-logo {
    font-family: inherit;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: inherit;
    text-decoration: none;
  }

#page-index .nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 90px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
  }

#page-index .nav-links > a {
    color: inherit;
    text-decoration: none;
  }

#page-index .nav-item {
    position: relative;
    padding: 8px 0;
  }

#page-index .nav-item > a {
    color: inherit;
    text-decoration: none;
  }

#page-index .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 18px 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 130px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(20, 23, 28, 0.14);
    border: 1px solid rgba(20, 23, 28, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

#page-index .sub-menu a {
    pointer-events: none;
    color: rgba(20, 23, 28, 0.85);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: none;
    transition: opacity 0.2s ease;
  }

#page-index .nav-item:hover .sub-menu a {
    pointer-events: none;
  }

#page-index .sub-menu a:hover {
    opacity: 0.6;
  }

#page-index .nav-item:hover .sub-menu {
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
  }

#page-index .nav-menu-wrap {
    margin-left: 30px;
  }

#page-index .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

#page-index .nav-menu span {
    width: 20px;
    height: 1px;
    background: #14171c;
    transition: background 0.4s ease;
  }

#page-index .full-menu {
    position: absolute;
    top: 100%;
    left: -60px;
    right: -60px;
    height: 140px;
    z-index: 1;
    background: #ffffff;
    border-top: 1px solid rgba(20, 23, 28, 0.06);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(20, 23, 28, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

#page-index .full-menu a {
    pointer-events: none;
  }

#page-index .nav-links:has(.nav-menu-wrap:hover) .sub-menu a {
    pointer-events: none;
  }

#page-index .nav-links:has(.nav-menu-wrap:hover) .sub-menu {
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: 2;
  }

#page-index .nav-links:has(.nav-menu-wrap:hover) .full-menu {
    opacity: 0;
  }

#page-index .menu-col {
    display: none;
  }

#page-index .menu-col a {
    color: rgba(20, 23, 28, 0.85);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: none;
    transition: opacity 0.2s ease;
  }

#page-index .menu-col a:hover {
    opacity: 0.6;
  }

@media (max-width: 900px) {
  #page-index .nav-links > .nav-item { display: none; }
}

@media (max-width: 768px) {
  #page-index .nav { padding: 22px 24px; }
}

#page-index .nav.nav-on-light {
    background: #ffffff;
    color: #14171c;
    border-bottom: 1px solid rgba(20, 23, 28, 0.08);
    text-shadow: none;
  }

#page-index .nav.nav-on-light .nav-links {
    color: rgba(20, 23, 28, 0.85);
  }

#page-index .nav.nav-on-light .sub-menu a,
#page-index .nav.nav-on-light .menu-col a {
    color: rgba(20, 23, 28, 0.85);
    text-shadow: none;
  }

#page-index .nav.nav-on-light .nav-menu span {
    background: #14171c;
  }

/* ---- GEOAD hero direction: animated network mark + compact brand lockup ---- */
#page-index .bg-media {
    background: #000000 !important;
    isolation: isolate;
  }

#page-index .bg-media::before {
    content: '';
    position: absolute;
    inset: -4%;
    z-index: 0;
    background-image: url('/img/asset-11.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.62;
    transform: translate3d(-0.5%, 0.3%, 0) scale(1.04);
    animation: geoadNetworkDrift 18s cubic-bezier(0.45, 0, 0.25, 1) infinite alternate;
    will-change: transform, opacity;
  }

#page-index .bg-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 48%, transparent 24%, rgba(0, 0, 0, 0.18) 64%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, transparent 36%, rgba(0, 0, 0, 0.34) 100%);
  }

@keyframes geoadNetworkDrift {
    0% {
      opacity: 0.52;
      transform: translate3d(-0.6%, 0.4%, 0) scale(1.04);
    }
    55% {
      opacity: 0.68;
      transform: translate3d(0.7%, -0.5%, 0) scale(1.085);
    }
    100% {
      opacity: 0.58;
      transform: translate3d(-0.2%, -0.1%, 0) scale(1.055);
    }
  }

#page-index .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
  }

#page-index .nav-logo-mark {
    width: 29px;
    height: 29px;
    display: block;
    object-fit: cover;
    clip-path: inset(11%);
    transform: scale(1.38);
    transition: filter 0.4s ease;
  }

#page-index .nav.nav-on-light .nav-logo-mark {
    filter: invert(1);
  }

#page-index .hero-center {
    top: 62%;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  }

#page-index .hero-center .hero-title {
    font-family: inherit;
    font-weight: 800;
    font-size: clamp(74px, 11.8vw, 180px);
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-shadow: 0 6px 34px rgba(0, 0, 0, 0.82);
  }

#page-index .hero-center .hero-subtitle {
    margin-top: 24px;
    font-size: clamp(11px, 1.25vw, 18px);
    letter-spacing: 0.48em;
    color: rgba(255, 255, 255, 0.88);
  }

#page-index .hero-center .hero-desc {
    margin-top: 28px;
    font-size: clamp(15px, 1.45vw, 21px);
    font-weight: 500;
    text-wrap: balance;
  }

#page-index .hero-center .hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 250px;
    margin-top: 24px;
    padding: 14px 22px;
    font-size: 14px;
  }

#page-index .hero-center .hero-cta-btn svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

#page-index .hero-center .hero-cta-btn:hover svg {
    transform: translateX(4px);
  }

@media (max-width: 768px) {
  #page-index .bg-media::before {
    inset: -7%;
    background-size: auto 88%;
  }

  #page-index .nav-logo {
    gap: 8px;
  }

  #page-index .nav-logo-mark {
    width: 25px;
    height: 25px;
  }

  #page-index .hero-center {
    top: 58%;
    left: 50%;
    right: auto;
    width: calc(100% - 40px);
    max-width: none;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  #page-index .hero-center .hero-title {
    font-size: clamp(52px, 17vw, 76px);
    letter-spacing: 0;
  }

  #page-index .hero-center .hero-subtitle {
    margin-top: 16px;
    font-size: 9px;
    letter-spacing: 0.28em;
    white-space: normal;
  }

  #page-index .hero-center .hero-desc {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  #page-index .hero-center .hero-cta-btn {
    min-width: min(230px, 70vw);
    margin-top: 21px;
    padding: 13px 19px;
    font-size: 13px;
    gap: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #page-index .bg-media::before {
    animation: none;
    opacity: 0.62;
    transform: scale(1.04);
    will-change: auto;
  }

  #page-index .idx-story-process-textcol .ghost .fill-top,
  #page-index .idx-story-process-heading .fill-top {
    clip-path: inset(0 0 0 0);
    transition: none;
    will-change: auto;
  }
}

/* ---- page: geo ---- */
html.page-geo-active {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

#page-geo {
    font-family: 'Pretendard', sans-serif;
    background: #14171c;
  }

#page-geo section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

#page-geo .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

#page-geo /* fixed backdrop shared by every section so the atmosphere carries through the scroll */
  .page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

#page-geo .bg-media {
    position: absolute;
    inset: 0;
    background-image: url('/img/asset-10.jpg');
    background-size: cover;
    background-position: center;

    filter: saturate(1.35) brightness(1.4);
  }

#page-geo .bg-tint {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(10, 12, 16, 0.45) 0%, rgba(14, 17, 24, 0.28) 42%, rgba(16, 20, 28, 0.12) 70%, rgba(18, 22, 30, 0.02) 100%);
  }

#page-geo .bg-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 23, 28, 0) 0%, rgba(20, 23, 28, 0.55) 70%, rgba(20, 23, 28, 0.92) 100%);
  }

#page-geo .bg-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    mix-blend-mode: screen;
  }

#page-geo /* top nav */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 44px;
    color: #fff;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.55), rgba(10, 12, 16, 0));
    transition: background 0.4s ease, color 0.4s ease;
  }

#page-geo .nav-logo {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: inherit;
    text-decoration: none;
  }

#page-geo .nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 90px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
  }

#page-geo .nav-links > a {
    color: inherit;
    text-decoration: none;
  }

#page-geo .nav-item {
    position: relative;
    padding: 8px 0;
  }

#page-geo .nav-item > a {
    color: inherit;
    text-decoration: none;
  }

#page-geo .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 18px 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 130px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(20, 23, 28, 0.14);
    border: 1px solid rgba(20, 23, 28, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

#page-geo .sub-menu a {
    pointer-events: none;
  }

#page-geo .nav-item:hover .sub-menu a {
    pointer-events: none;
  }

#page-geo .sub-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease;
  }

#page-geo .sub-menu a:hover {
    opacity: 0.6;
  }

#page-geo .nav-item:hover .sub-menu {
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
  }

#page-geo .nav-menu-wrap {
    margin-left: 30px;
  }

#page-geo .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

#page-geo .nav-menu span {
    width: 20px;
    height: 1px;
    background: #fff;
    transition: background 0.4s ease;
  }

#page-geo .nav.nav-on-light {
    background: #ffffff;
    color: #14171c;
  }

#page-geo .nav.nav-on-light .nav-links {
    color: rgba(20, 23, 28, 0.85);
  }

#page-geo .nav.nav-on-light .sub-menu a,
#page-geo .nav.nav-on-light .menu-col a {
    color: rgba(20, 23, 28, 0.85);
    text-shadow: none;
  }

#page-geo .nav.nav-on-light .nav-menu span {
    background: #14171c;
  }

#page-geo .full-menu {
    position: absolute;
    top: 100%;
    left: -60px;
    right: -60px;
    height: 140px;
    z-index: 1;
    background: #ffffff;
    border-top: 1px solid rgba(20, 23, 28, 0.06);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(20, 23, 28, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

#page-geo .full-menu a {
    pointer-events: none;
  }

#page-geo .nav-links:has(.nav-menu-wrap:hover) .sub-menu a {
    pointer-events: none;
  }

#page-geo .nav-links:has(.nav-menu-wrap:hover) .sub-menu {
    opacity: 0;
    transform: translate(-50%, 0);
    pointer-events: none;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: 2;
  }

#page-geo .nav-links:has(.nav-menu-wrap:hover) .full-menu {
    opacity: 0;
  }

#page-geo .menu-col {
    display: none;
  }

#page-geo .menu-col a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease;
  }

#page-geo .menu-col a:hover {
    opacity: 0.6;
  }

@media (max-width: 900px) {
  #page-geo .nav-links > .nav-item { display: none; }
}

#page-geo /* content */
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: #fff;
    text-align: center;
  }

#page-geo .breadcrumb {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 60px;
  }

#page-geo .breadcrumb .current {
    color: rgba(255, 255, 255, 0.85);
  }

#page-geo .page-title {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1;
    letter-spacing: 1px;
  }

#page-geo .tagline {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 22px;
  }

#page-geo .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

#page-geo .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
  }

#page-geo .btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
  }

#page-geo .btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
  }

#page-geo .btn-play:hover {
    background: rgba(255, 255, 255, 0.18);
  }

#page-geo .btn-play .play-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }

#page-geo .page-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
  }

#page-geo .divider {
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 34px auto 26px;
  }

#page-geo .headline {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.45;
    max-width: 480px;
    margin: 0 auto;
  }

#page-geo .desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    margin-top: 26px;
  }

#page-geo .scroll-indicator {
    position: absolute;
    right: 44px;
    bottom: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
  }

#page-geo .scroll-indicator .label {
    font-size: 10px;
    letter-spacing: 2px;
  }

#page-geo .scroll-indicator .line {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.7);
  }

#page-geo .hero .scroll-arrow {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    transform: translateX(-50%);
    animation: geoScrollArrowBounce__idx 1.9s ease-in-out infinite;
  }

#page-geo .hero .scroll-arrow span {
    display: block;
    width: 13px;
    height: 13px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
  }

@keyframes geoScrollArrowBounce__idx {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(9px); opacity: 0.95; }
}

#page-geo /* shared full-page sections below hero */
  .panel {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #14171c;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
  }

#page-geo .panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
  }

#page-geo .panel-label {
    position: relative;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 4px;
    color: #2b7fd1;
    margin-bottom: 18px;
  }

#page-geo .panel-heading {
    position: relative;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.4;
    max-width: 640px;
  }

#page-geo .panel-sub {
    position: relative;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(20, 23, 28, 0.65);
    max-width: 480px;
    margin-top: 20px;
  }

#page-geo /* why-geo stats */
  .stat-row {
    position: relative;
    display: flex;
    gap: 70px;
    margin-top: 56px;
    flex-wrap: wrap;
    justify-content: center;
  }

#page-geo .stat-item .num {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #2b7fd1;
  }

#page-geo .stat-item .label {
    font-size: 12px;
    color: rgba(20, 23, 28, 0.55);
    margin-top: 8px;
    letter-spacing: 0.5px;
  }

#page-geo /* process steps */
  .step-row {
    position: relative;
    display: flex;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
    justify-content: center;
  }

#page-geo .step-item {
    width: 220px;
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 23, 28, 0.15);
  }

#page-geo .step-item .num {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(20, 23, 28, 0.4);
    margin-bottom: 10px;
    display: block;
  }

#page-geo .step-item .title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
  }

#page-geo .step-item .desc {
    font-weight: 300;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(20, 23, 28, 0.6);
  }

#page-geo .panel-photo {
    position: relative;
    width: 300px;
    max-width: 80vw;
    height: 170px;
    margin: 28px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(20, 23, 28, 0.16);
  }

#page-geo .panel-photo .bg-media {
    filter: saturate(1.15) brightness(1.05);
  }

#page-geo #why-geo .panel-photo .bg-media {
    background-position: center 25%;
  }

#page-geo #process .panel-photo .bg-media {
    background-position: center 75%;
  }

#page-geo #cta .panel-photo .bg-media {
    background-position: center 50%;
  }

@media (max-width: 768px) {
  #page-geo .panel-photo { display: none; }
}

/* why-geo: side-by-side split, photo on the right */
#page-geo .panel.split {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    text-align: left;
  }

#page-geo .panel.split-reverse {
    flex-direction: row-reverse;
  }

#page-geo .panel.split .panel-text {
    max-width: 460px;
  }

#page-geo .panel.split .panel-heading,
#page-geo .panel.split .panel-sub {
    max-width: none;
  }

#page-geo .panel.split .stat-row,
#page-geo .panel.split .step-row {
    justify-content: flex-start;
  }

#page-geo .panel.split .panel-photo {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    margin: 0;
  }

#page-geo #process.split {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 110px 24px;
  }

#page-geo #process.split .step-row {
    gap: 22px;
    margin-top: 32px;
  }

#page-geo #process.split .step-item {
    width: 190px;
  }

#page-geo #process.split .panel-photo {
    width: 280px;
    height: 340px;
  }

@media (max-width: 1000px) {
  #page-geo .panel.split {
    flex-direction: column;
    text-align: center;
  }
  #page-geo .panel.split .panel-heading,
  #page-geo .panel.split .panel-sub {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  #page-geo .panel.split .stat-row,
  #page-geo .panel.split .step-row {
    justify-content: center;
  }
  #page-geo .panel.split .panel-photo {
    width: 300px;
    height: 170px;
    margin: 24px auto 0;
  }
}

/* cta: simple, clean, centered photo — no overlap with the copy */
#page-geo #cta .panel-photo {
    width: 260px;
    height: 150px;
    margin: 24px auto 0;
  }

#page-geo /* cta */
  .cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding: 14px 30px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    background: #14171c;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

#page-geo .cta-btn:hover {
    opacity: 0.85;
  }

#page-geo /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }

#page-geo .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

#page-geo .typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 0.9em;
    background: currentColor;
    margin-left: 3px;
    vertical-align: -0.1em;
    animation: geoCursorBlink__idx 0.85s step-end infinite;
  }

@keyframes geoCursorBlink__idx {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  #page-geo .page-title { font-size: 56px; }
  #page-geo .headline { font-size: 22px; max-width: 90%; }
  #page-geo .desc { max-width: 90%; }
  #page-geo .nav { padding: 22px 24px; }
  #page-geo .content { width: 90%; }
  #page-geo .panel-heading { font-size: 24px; }
  #page-geo .stat-row, #page-geo .step-row { gap: 32px; }
}

/* ---- page: seo ---- */
#page-seo {
    font-family: 'Pretendard', sans-serif;
    background: #14171c;
  }

#page-seo .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

#page-seo .bg-media {
    position: absolute;
    inset: 0;
    background-image: url('/img/asset-12.jpg');
    background-size: cover;
    background-position: center;

    filter: saturate(0.9) brightness(1.15);
  }

#page-seo .bg-tint {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(10, 12, 16, 0.68) 0%, rgba(14, 17, 24, 0.46) 42%, rgba(16, 20, 28, 0.2) 70%, rgba(18, 22, 30, 0.05) 100%);
  }

#page-seo .bg-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    mix-blend-mode: screen;
  }

#page-seo /* top nav */
  .nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 44px;
    color: #fff;
  }

#page-seo .nav-logo {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: inherit;
    text-decoration: none;
  }

#page-seo .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
  }

#page-seo .nav-links a {
    color: inherit;
    text-decoration: none;
  }

#page-seo .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 30px;
    cursor: pointer;
  }

#page-seo .nav-menu span {
    width: 20px;
    height: 1px;
    background: #fff;
  }

@media (max-width: 900px) {
  #page-seo .nav-links { display: none; }
}

#page-seo /* content */
  .content {
    position: relative;
    z-index: 5;
    padding: 160px 44px 0;
    color: #fff;
  }

#page-seo .breadcrumb {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 60px;
  }

#page-seo .breadcrumb .current {
    color: rgba(255, 255, 255, 0.85);
  }

#page-seo .page-title {
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1;
    letter-spacing: 1px;
  }

#page-seo .page-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
  }

#page-seo .divider {
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 34px 0 26px;
  }

#page-seo .headline {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.45;
    max-width: 480px;
  }

#page-seo .desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    margin-top: 26px;
  }

#page-seo .scroll-indicator {
    position: absolute;
    left: 44px;
    bottom: 40px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
  }

#page-seo .scroll-indicator .label {
    font-size: 10px;
    letter-spacing: 2px;
  }

#page-seo .scroll-indicator .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
  }

@media (max-width: 768px) {
  #page-seo .page-title { font-size: 56px; }
  #page-seo .headline { font-size: 22px; max-width: 90%; }
  #page-seo .desc { max-width: 90%; }
  #page-seo .nav { padding: 22px 24px; }
  #page-seo .content { padding: 50px 24px 0; }
}


:root {
  --blog-img-1: url('/img/asset-13.jpg');
  --blog-img-2: url('/img/asset-14.jpg');
  --blog-img-3: url('/img/asset-15.jpg');
  --blog-img-4: url('/img/asset-16.jpg');
  --blog-img-5: url('/img/asset-17.jpg');
  --blog-img-6: url('/img/asset-18.jpg');
  --term-img-aeo: url('/img/asset-19.jpg');
  --term-img-aeo2: url('/img/asset-20.jpg');
  --term-img-llmo: url('/img/asset-21.jpg');
  --term-img-llmo2: url('/img/asset-22.jpg');
  --term-img-ai-overview: url('/img/asset-23.jpg');
  --term-img-ai-overview2: url('/img/asset-24.jpg');
  --term-img-ai-search: url('/img/asset-25.jpg');
  --term-img-crawler: url('/img/asset-26.jpg');
}
#page-index .idx-panel.idx-blog { background: #14171c; }
#page-index .idx-blog .idx-panel-label { color: rgba(255, 255, 255, 0.4); }
#page-index .idx-blog-heading { color: #ffffff; }
#page-index .idx-blog-sub { color: rgba(255, 255, 255, 0.55); }
#page-index .idx-blog-card { background: #1a1f27; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 40px 36px 36px; transition: border-color 0.2s ease, background 0.2s ease; word-break: keep-all; display: flex; flex-direction: column; }
#page-index .idx-blog-card:hover { border-color: rgba(255, 255, 255, 0.3); background: #1e242d; }
#page-index .idx-blog-cat { font-size: 13px; font-weight: 700; color: #7db3f0; letter-spacing: 0.3px; margin-bottom: 18px; }
#page-index .idx-blog-title { margin-top: 0; font-size: 19.5px; color: #ffffff; }
#page-index .idx-blog-card:hover .idx-blog-title { color: #ffffff; }
#page-index .idx-blog-excerpt { margin-top: 14px; color: rgba(255, 255, 255, 0.55); }
#page-index .idx-blog-go { margin-top: auto; padding-top: 28px; font-size: 13.5px; font-weight: 700; color: #7db3f0; }
#page-index .idx-blog-more .idx-blog-all { background: #ffffff; color: #14171c; border-radius: 999px; padding: 15px 28px; font-weight: 700; }
#page-index .idx-blog-more { display: flex; justify-content: center; margin-top: 56px; }
#page-index .idx-blog-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,16,0.24), rgba(10,12,16,0.04)); z-index: 0; }
#page-index .idx-blog-thumb .tag { z-index: 1; }
#page-index .thumb-1 { background-image: var(--blog-img-1); }
#page-index .thumb-2 { background-image: var(--blog-img-2); }
#page-index .thumb-3 { background-image: var(--blog-img-3); }
#page-index .thumb-4 { background-image: var(--blog-img-4); }
#page-index .thumb-5 { background-image: var(--blog-img-5); }
#page-index .thumb-6 { background-image: var(--blog-img-6); }
.subpage-hero--img { display: none; }
.article-wrap { padding-top: 150px; }
.article-crumb { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.5px; color: rgba(20, 23, 28, 0.45); margin-bottom: 28px; }
.article-crumb a { color: inherit; text-decoration: none; }
.article-crumb a:hover { color: #14171c; }
.article-crumb .cur { color: rgba(20, 23, 28, 0.8); }
.article-title { font-size: 38px; font-weight: 800; color: #14171c; letter-spacing: -0.5px; line-height: 1.25; margin: 0 0 16px; }
.article-wrap { max-width: 1140px; display: grid; grid-template-columns: minmax(0, 760px) 264px; gap: 60px; justify-content: center; align-items: start; }
.article-main { min-width: 0; }
.article-aside { position: sticky; top: 130px; }
.article-toc { border-left: 1px solid rgba(20, 23, 28, 0.1); padding-left: 20px; }
.article-toc .toc-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: rgba(20, 23, 28, 0.4); margin-bottom: 12px; }
.article-toc a { display: block; padding: 6px 0; font-size: 13px; color: rgba(20, 23, 28, 0.55); text-decoration: none; line-height: 1.5; }
.article-toc a:hover { color: #14171c; }
.article-cta { margin-top: 32px; border: 1.5px solid #14171c; border-radius: 12px; padding: 18px 16px; word-break: keep-all; }
.article-cta .t { font-size: 14px; font-weight: 700; color: #14171c; line-height: 1.5; margin-bottom: 5px; }
.article-cta .d { font-size: 12.5px; font-weight: 300; color: rgba(20, 23, 28, 0.6); line-height: 1.65; margin-bottom: 13px; }
.article-cta a { display: block; width: fit-content; margin: 0 auto; font-size: 13px; font-weight: 600; color: #ffffff; background: #14171c; border-radius: 999px; padding: 8px 20px; text-decoration: none; }
.cat-intro { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(20, 23, 28, 0.65); margin: 0 0 34px; word-break: keep-all; }
.cat-item { display: block; padding: 28px 0; border-bottom: 1px solid rgba(20, 23, 28, 0.08); text-decoration: none; word-break: keep-all; }
.cat-item:first-of-type { border-top: 1px solid rgba(20, 23, 28, 0.08); }
.cat-item .ci-cat { font-size: 12.5px; font-weight: 700; color: #2b7fd1; margin-bottom: 8px; }
.cat-item .ci-title { font-size: 18px; font-weight: 700; color: #14171c; margin-bottom: 8px; transition: color 0.2s ease; }
.cat-item:hover .ci-title { color: #2f8fe0; }
.cat-item .ci-desc { font-size: 14.5px; font-weight: 300; line-height: 1.8; color: rgba(20, 23, 28, 0.6); margin: 0; }
.term-def { background: #f6f7f9; border-left: 3px solid #14171c; border-radius: 0 10px 10px 0; padding: 20px 22px; font-size: 15.5px; line-height: 1.9; color: #14171c; margin: 0 0 36px; word-break: keep-all; }
.term-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.term-links a { font-size: 13px; font-weight: 600; color: #14171c; text-decoration: none; border: 1px solid rgba(20, 23, 28, 0.2); border-radius: 999px; padding: 7px 14px; transition: border-color 0.2s ease; }
.term-links a:hover { border-color: #14171c; }
@media (max-width: 1180px) {
  .article-wrap { grid-template-columns: minmax(0, 760px); }
  .article-aside { display: none; }
}
.article-figure { width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; background-size: cover; background-position: center; background-color: #14171c; margin: 0 0 42px; }
.fig-1 { background-image: var(--blog-img-1); }
.fig-2 { background-image: var(--blog-img-2); }
.fig-3 { background-image: var(--blog-img-3); }
.fig-4 { background-image: var(--blog-img-4); }
.fig-5 { background-image: var(--blog-img-5); }
.fig-6 { background-image: var(--blog-img-6); }
.fig-term-aeo { background-image: var(--term-img-aeo); }
.fig-term-aeo2 { background-image: var(--term-img-aeo2); }
.fig-term-llmo { background-image: var(--term-img-llmo); }
.fig-term-llmo2 { background-image: var(--term-img-llmo2); }
.fig-term-ai-overview { background-image: var(--term-img-ai-overview); }
.fig-term-ai-overview2 { background-image: var(--term-img-ai-overview2); }
.fig-term-ai-search { background-image: var(--term-img-ai-search); }
.fig-term-crawler { background-image: var(--term-img-crawler); }
.article-note { font-size: 13.5px; line-height: 1.75; color: #6b7280; margin: -18px 0 34px; word-break: keep-all; }

/* Light red comparison theme */
:root {
  --lr-canvas: #f7f5f1;
  --lr-paper: #fffdfa;
  --lr-ink: #171515;
  --lr-muted: #746e68;
  --lr-wine: #8e151c;
  --lr-wine-deep: #681014;
  --lr-wine-soft: #f1e7e4;
  --lr-line: #d9d2cc;
}

body,
#page-index,
#page-index .idx-panel.tone-a,
#page-index .idx-panel.tone-b,
#page-index .idx-panel.tone-c {
  background: var(--lr-canvas);
  color: var(--lr-ink);
}

.light-red-accent {
  color: var(--lr-wine);
  font: inherit;
}

#page-index .hero,
#page-index .bg-media {
  background: var(--lr-canvas) !important;
}

#page-index .bg-media::before {
  filter: invert(1) grayscale(1) contrast(0.88);
  mix-blend-mode: multiply;
  animation: geoadNetworkDriftLight 18s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

#page-index .bg-media::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(247, 245, 241, 0.04) 0%, rgba(247, 245, 241, 0.22) 54%, rgba(247, 245, 241, 0.9) 100%),
    linear-gradient(180deg, rgba(247, 245, 241, 0.16), transparent 38%, rgba(247, 245, 241, 0.48));
}

@keyframes geoadNetworkDriftLight {
  0% { opacity: 0.1; transform: translate3d(-1.2%, -0.8%, 0) scale(1.04); }
  55% { opacity: 0.17; transform: translate3d(1%, 0.5%, 0) scale(1.075); }
  100% { opacity: 0.13; transform: translate3d(-0.2%, 1%, 0) scale(1.055); }
}

#page-index .nav,
#page-index .nav.nav-on-light {
  color: var(--lr-ink);
  text-shadow: none;
}

#page-index .nav.nav-on-light {
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid rgba(142, 21, 28, 0.1);
  
}

#page-index .nav-links,
#page-index .nav.nav-on-light .nav-links {
  color: rgba(23, 21, 21, 0.82);
}

#page-index .nav-logo-mark,
#page-index .nav.nav-on-light .nav-logo-mark {
  filter: invert(1);
  mix-blend-mode: multiply;
}

#page-index .sub-menu {
  background: rgba(255, 253, 250, 0.98);
  border: 1px solid rgba(142, 21, 28, 0.12);
  box-shadow: 0 18px 42px rgba(78, 40, 34, 0.1);
}

#page-index .sub-menu a {
  color: rgba(23, 21, 21, 0.7);
}

#page-index .sub-menu a:hover {
  color: var(--lr-wine);
}

#page-index .hero-center,
#page-index .hero-center .hero-title {
  color: var(--lr-ink);
  text-shadow: none;
}

#page-index .hero-center .hero-subtitle {
  color: rgba(23, 21, 21, 0.54);
  text-shadow: none;
}

#page-index .hero-center .hero-desc {
  color: rgba(23, 21, 21, 0.88);
  text-shadow: none;
}

#page-index .typewriter-cursor {
  background: var(--lr-wine);
}

#page-index .hero-center .hero-cta-btn {
  background: rgba(255, 253, 250, 0.56);
  color: var(--lr-wine);
  border: 1px solid var(--lr-wine);
  box-shadow: 0 12px 30px rgba(142, 21, 28, 0.08);
}

#page-index .hero-center .hero-cta-btn:hover {
  background: var(--lr-wine);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(142, 21, 28, 0.16);
}

#page-index .idx-panel.idx-story {
  background: #f0ede8;
}

#page-index .idx-story-process-textcol .ghost .fill-base {
  color: rgba(142, 21, 28, 0.08);
}

#page-index .idx-story-process-textcol .ghost .fill-top {
  color: var(--lr-wine);
}

#page-index .idx-story-process-heading .fill-base {
  color: rgba(23, 21, 21, 0.12);
}

#page-index .idx-story-process-heading .fill-top,
#page-index .idx-story-steps .name {
  color: var(--lr-ink);
}

#page-index .idx-story-steps .num {
  color: var(--lr-wine);
}

#page-index .idx-story-steps li:not(:last-child)::after {
  background: rgba(142, 21, 28, 0.2);
}

#page-index .idx-panel.idx-works,
#page-index .idx-panel.idx-services,
#page-index .idx-panel.idx-testimonials,
#page-index .idx-why-standalone {
  background: var(--lr-canvas);
  color: var(--lr-ink);
}

#page-index .idx-works-heading,
#page-index .idx-services-bigtext,
#page-index .idx-testimonials-heading,
#page-index .idx-why-heading {
  color: var(--lr-ink);
}

#page-index .idx-works-heading .accent,
#page-index .idx-panel-label,
#page-index .idx-services-card .cat,
#page-index .idx-insight-more,
#page-index .idx-why-split-eyebrow {
  color: var(--lr-wine);
}

#page-index .idx-works-item,
#page-index .idx-works-item:link,
#page-index .idx-works-item:visited,
#page-index .idx-works-item:hover,
#page-index .idx-works-item:active,
#page-index .idx-works-item.item-1,
#page-index .idx-works-item.item-2,
#page-index .idx-works-item.item-3,
#page-index .idx-works-item.item-4 {
  background: rgba(255, 253, 250, 0.88);
  color: var(--lr-ink);
  border-color: rgba(142, 21, 28, 0.2);
  box-shadow: 0 16px 38px rgba(78, 40, 34, 0.06);
}

#page-index .idx-works-item:hover,
#page-index .idx-works-item.is-active {
  background: var(--lr-paper);
  box-shadow: 0 22px 52px rgba(78, 40, 34, 0.11);
}

#page-index .idx-works-item .idx,
#page-index .idx-works-item .label {
  color: rgba(142, 21, 28, 0.68);
}

#page-index .idx-works-item .num,
#page-index .idx-works-item.item-1 .num,
#page-index .idx-works-item.item-2 .num,
#page-index .idx-works-item.item-3 .num,
#page-index .idx-works-item.item-4 .num {
  color: var(--lr-ink);
  border-bottom-color: var(--lr-line);
}

#page-index .idx-works-item .desc,
#page-index .idx-works-item.item-1 .desc,
#page-index .idx-works-item.item-2 .desc,
#page-index .idx-works-item.item-3 .desc,
#page-index .idx-works-item.item-4 .desc {
  color: rgba(23, 21, 21, 0.62);
}



#page-index .idx-services-card {
  background: rgba(255, 255, 255, 0.96);
  
  -webkit-
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 0;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

#page-index .idx-services-card.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, box-shadow 0.3s ease;
}

#page-index .idx-services-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#page-index .idx-services-card:hover,
#page-index .idx-services-card.is-visible:hover {
  transform: translateY(-6px) scale(1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13), 0 3px 8px rgba(142, 21, 28, 0.08);
}

#page-index .idx-services-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--lr-wine) 0%, rgba(142, 21, 28, 0.6) 50%, rgba(142, 21, 28, 0.15) 100%);
}

#page-index .idx-services-card .cat {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--lr-wine);
  margin: 30px 34px 14px;
}

#page-index .idx-services-card .q {
  color: var(--lr-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0 34px 16px;
}

#page-index .idx-services-card .desc {
  color: rgba(23, 21, 21, 0.52);
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0 34px 32px;
}

#page-index .idx-testimonials-sub {
  color: rgba(23, 21, 21, 0.6);
}

#page-index .idx-panel.idx-blog {
  background: #efeae5;
  color: var(--lr-ink);
}

#page-index .idx-blog-heading,
#page-index .idx-blog-title,
#page-index .idx-blog-card:hover .idx-blog-title {
  color: var(--lr-ink);
}

#page-index .idx-blog-sub,
#page-index .idx-blog-excerpt {
  color: rgba(23, 21, 21, 0.58);
}

#page-index .idx-blog-card,
#page-index .idx-blog-card:hover {
  background: var(--lr-paper);
  border: 1px solid rgba(142, 21, 28, 0.14);
  box-shadow: 0 16px 38px rgba(78, 40, 34, 0.06);
}

#page-index .idx-blog-card:hover {
  border-color: rgba(142, 21, 28, 0.34);
  box-shadow: 0 22px 50px rgba(78, 40, 34, 0.11);
}

#page-index .idx-blog-card.with-thumb {
  overflow: hidden;
}

#page-index .idx-blog-card.with-thumb .idx-blog-thumb {
  flex: 0 0 auto;
  width: calc(100% + 72px);
  height: 190px;
  margin: -40px -36px 28px;
  border-radius: 13px 13px 0 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#page-index .idx-blog-card.with-thumb:hover .idx-blog-thumb {
  transform: scale(1.015);
}

#page-index .idx-blog-card.with-thumb .idx-blog-thumb::after {
  display: none;
}

#page-index .idx-blog-thumb.thumb-light-geo {
  background-image: url('/img/asset-27.jpg');
}

#page-index .idx-blog-thumb.thumb-light-seo {
  background-image: url('/img/asset-28.jpg');
}

#page-index .idx-blog-cat,
#page-index .idx-blog-go {
  color: var(--lr-wine);
}

#page-index .idx-blog-more .idx-blog-all {
  background: var(--lr-wine);
  color: #ffffff;
}

#page-index .idx-testimonials-ghost {
  color: rgba(142, 21, 28, 0.055);
}

#page-index .idx-insight-item.tone-1 { background: linear-gradient(155deg, #a33b40, #681014); }
#page-index .idx-insight-item.tone-2 { background: #f7f1ed; border: 1px solid rgba(142, 21, 28, 0.16); }
#page-index .idx-insight-item.tone-3 { background: #f7f1ed; border: 1px solid rgba(142, 21, 28, 0.16); }
#page-index .idx-insight-item.tone-4 { background: #ead8d4; border: 1px solid rgba(142, 21, 28, 0.1); }
#page-index .idx-insight-item.tone-5 { background: #f7f1ed; border: 1px solid rgba(142, 21, 28, 0.16); }
#page-index .idx-insight-item.tone-6 { background: linear-gradient(155deg, #a33b40, #681014); }
#page-index .idx-insight-item.tone-7 { background: #ead8d4; border: 1px solid rgba(142, 21, 28, 0.1); }
#page-index .idx-insight-item.tone-8 { background: #f7f1ed; border: 1px solid rgba(142, 21, 28, 0.16); }

#page-index .idx-insight-item:is(.tone-2, .tone-3, .tone-4, .tone-5, .tone-7, .tone-8) {
  color: var(--lr-ink);
}

#page-index .idx-insight-item:is(.tone-2, .tone-3, .tone-4, .tone-5, .tone-7, .tone-8) .num {
  color: rgba(142, 21, 28, 0.12);
}

#page-index .idx-insight-item:is(.tone-2, .tone-3, .tone-4, .tone-5, .tone-7, .tone-8) .icon {
  background: rgba(142, 21, 28, 0.1);
}

#page-index .idx-insight-item:is(.tone-2, .tone-3, .tone-4, .tone-5, .tone-7, .tone-8) .icon svg {
  stroke: var(--lr-wine);
}

#page-index .idx-insight-item:is(.tone-2, .tone-3, .tone-4, .tone-5, .tone-7, .tone-8) .title {
  color: var(--lr-ink);
}

#page-index .idx-insight-item:is(.tone-2, .tone-3, .tone-4, .tone-5, .tone-7, .tone-8) .desc {
  color: rgba(23, 21, 21, 0.62);
}

#page-index .idx-insight-item.with-thumb {
  isolation: isolate;
}

#page-index .idx-insight-thumb {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  border-radius: 23px 23px 0 0;
  border-bottom: 1px solid rgba(142, 21, 28, 0.1);
  background-position: center;
  background-size: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#page-index .idx-insight-item.with-thumb:hover .idx-insight-thumb {
  transform: scale(1.015);
}

#page-index .idx-insight-thumb.content-format {
  background-image: url('/img/asset-29.jpg');
}

#page-index .idx-why-split-btn,
#page-index .idx-why-slide-btn {
  background: var(--lr-wine);
  border-color: var(--lr-wine);
  color: #ffffff;
}

#page-index .idx-why-split-btn:hover,
#page-index .idx-why-slide-btn:hover {
  background: var(--lr-wine-deep);
  border-color: var(--lr-wine-deep);
}

#page-index .idx-why-orb.orb-1,
#page-index .idx-why-orb.orb-3 {
  background: var(--lr-wine-deep);
}

#page-index .idx-why-orb.orb-2 {
  background: var(--lr-paper);
  border-color: rgba(142, 21, 28, 0.16);
}

#page-index .idx-why-nav button {
  border-color: rgba(142, 21, 28, 0.35);
  color: var(--lr-wine);
}

#page-index .idx-why-nav button:hover,
#page-index .idx-why-dots button.is-active {
  background: var(--lr-wine);
  border-color: var(--lr-wine);
  color: #ffffff;
}

#page-index .idx-panel.idx-final,
.idx-footer {
  background: var(--lr-wine-soft);
  color: var(--lr-ink);
}

#page-index .idx-panel.idx-final {
  border-top: 1px solid rgba(142, 21, 28, 0.1);
  border-bottom: 1px solid rgba(142, 21, 28, 0.1);
}

#page-index .idx-final-card {
  display: none;
}

#page-index .idx-final-bottom {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  max-width: 1280px;
  padding: 96px 44px;
  background: transparent;
  text-align: left;
}

#page-index .idx-final-spotlight {
  max-width: 760px;
  margin-top: 0;
}

#page-index .idx-final-bottom .idx-panel-heading {
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

#page-index .idx-final-bottom .idx-panel-heading,
#page-index .idx-final-spotlight > .idx-panel-heading:not(.idx-panel-heading-glow),
.idx-footer-logo,
.idx-footer-col-title {
  color: var(--lr-ink);
}

#page-index .idx-final-spotlight .idx-panel-heading-glow {
  color: var(--lr-wine);
}

#page-index .idx-final-bottom .idx-panel-link.primary {
  background: var(--lr-wine);
  border-color: var(--lr-wine);
  color: #ffffff;
}

#page-index .idx-final-bottom .idx-panel-link.primary:hover {
  background: var(--lr-wine-deep);
  border-color: var(--lr-wine-deep);
}

@media (max-width: 768px) {
  #page-index .idx-final-bottom {
    flex-direction: column;
    gap: 30px;
    padding: 72px 24px;
    text-align: center;
  }

  #page-index .idx-final-spotlight {
    max-width: 340px;
  }

  #page-index .idx-final-bottom .idx-panel-heading {
    font-size: 28px;
    line-height: 1.4;
  }
}

.idx-footer {
  border-top: 1px solid rgba(142, 21, 28, 0.14);
}

.idx-footer-desc,
.idx-footer-col a,
.idx-footer-col span,
.idx-footer-legal,
.idx-footer-copy {
  color: rgba(23, 21, 21, 0.58);
}

.idx-footer-col a:hover {
  color: var(--lr-wine);
}

.simple-page,
.simple-nav,
.article-page {
  background: var(--lr-paper);
  color: var(--lr-ink);
}

.simple-nav {
  border-bottom-color: rgba(142, 21, 28, 0.1);
}

.cat-item .ci-cat,
.article-body a,
.term-def strong {
  color: var(--lr-wine);
}

.cat-item:hover .ci-title,
.article-crumb a:hover,
.article-toc a:hover {
  color: var(--lr-wine);
}

.article-cta {
  border-color: var(--lr-wine);
}

.article-cta a {
  background: var(--lr-wine);
}

.term-def {
  background: var(--lr-wine-soft);
  border-left-color: var(--lr-wine);
}

@media (max-width: 768px) {
  #page-index .hero-center .hero-title {
    font-size: clamp(48px, 15.5vw, 68px);
    letter-spacing: -0.035em;
  }
  .article-wrap { padding-top: 118px; }
  .article-title { font-size: 27px; }
  .article-figure { border-radius: 10px; margin-bottom: 30px; }
}

/* Reference-led light hero */
#page-index .reference-hero {
  height: 100svh;
  min-height: 820px;
  overflow: hidden;
  background: #fbfaf8 !important;
}

#page-index .reference-hero::before {
  content: '';
  position: absolute;
  width: 780px;
  height: 780px;
  right: -140px;
  top: 8%;
  border-radius: 50%;
  background: rgba(142, 21, 28, 0.055);
  filter: blur(90px);
  pointer-events: none;
}

#page-index .reference-hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 16%;
  right: 2%;
  bottom: 7%;
  left: 46%;
  background-image: radial-gradient(rgba(142, 21, 28, 0.28) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.34;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 78%);
  pointer-events: none;
  animation: heroDotDrift 12s ease-in-out infinite alternate;
}

#page-index .reference-hero .bg-media {
  display: none !important;
}

#page-index .reference-hero .hero-center {
  top: 50%;
  left: clamp(64px, 5.3vw, 96px);
  right: auto;
  width: min(590px, 40vw);
  max-width: none;
  margin: 0;
  align-items: flex-start;
  text-align: left;
  transform: translateY(-32%);
  z-index: 4;
}

#page-index .reference-hero .hero-center .hero-title {
  font-size: clamp(78px, 8.2vw, 126px);
  font-weight: 750;
  line-height: 0.92;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

#page-index .reference-hero .hero-center .hero-subtitle {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: rgba(23, 21, 21, 0.62);
  white-space: nowrap;
}

#page-index .reference-hero .hero-center .hero-subtitle::before {
  content: '';
  width: 46px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--lr-wine);
}

#page-index .reference-hero .hero-center .hero-desc {
  width: 500px;
  max-width: 100%;
  min-height: 112px;
  margin-top: 52px;
  padding-left: 0;
  border-left: 0;
  font-size: clamp(34px, 2.8vw, 44px);
  font-weight: 680;
  line-height: 1.32;
  letter-spacing: -0.035em;
  color: var(--lr-ink);
  text-wrap: pretty;
}

#page-index .reference-hero .hero-copy {
  width: 500px;
  max-width: 100%;
  margin: 24px 0 0;
  color: rgba(23, 21, 21, 0.72);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

#page-index .reference-hero .typewriter-cursor {
  width: 1px;
  height: 1.05em;
  margin-left: 4px;
}

#page-index .reference-hero .hero-center .hero-cta-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-self: flex-start;
  align-items: center;
  justify-content: normal;
  width: 304px;
  min-width: 304px;
  height: 66px;
  margin-top: 40px;
  padding: 0 28px;
  gap: 24px;
  border: 1px solid var(--lr-wine);
  border-radius: 4px;
  background: var(--lr-wine);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(142, 21, 28, 0.14);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  animation: heroCtaArrive 0.7s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#page-index .reference-hero .hero-center .hero-cta-btn::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -40%;
  bottom: -40%;
  left: -38%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-18deg) translateX(0);
  animation: heroCtaSweep 4.8s 1.4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

#page-index .reference-hero .hero-center .hero-cta-btn > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

#page-index .reference-hero .hero-center .hero-cta-btn > span:first-child {
  position: relative;
  left: auto;
  grid-column: 2;
  white-space: nowrap;
  transform: none;
}

#page-index .reference-hero .hero-center .hero-cta-btn:hover {
  background: var(--lr-wine-deep);
  color: #ffffff;
  border-color: var(--lr-wine-deep);
  box-shadow: 0 20px 42px rgba(91, 14, 19, 0.2);
}

#page-index .reference-hero .hero-center .hero-cta-icon {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-left: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  transform: none;
  transition: transform 0.25s ease;
}

#page-index .reference-hero .hero-center .hero-cta-btn:hover .hero-cta-icon {
  background: transparent;
  color: #ffffff;
  transform: translateX(5px);
}

#page-index .reference-hero .hero-center .hero-cta-icon svg {
  width: 22px;
  height: 22px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#page-index .hero-visual {
  position: absolute;
  z-index: 2;
  top: 118px;
  right: -7%;
  bottom: -2%;
  left: 38%;
  pointer-events: none;
  transform-origin: 58% 52%;
  animation: heroConstellationFloat 6.8s cubic-bezier(0.45, 0, 0.22, 1) infinite alternate;
}

#page-index .hero-visual::before {
  content: '';
  position: absolute;
  inset: 11% 5% 7% 7%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  filter: blur(62px);
}

#page-index .ai-answer-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 36px 38px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--lr-ink);
  box-shadow: 0 30px 70px rgba(61, 32, 27, 0.11);
  
  -webkit-
}

#page-index .ai-card-main {
  z-index: 4;
  top: 17%;
  left: 27%;
  width: 500px;
  height: 394px;
  transform: rotate(6deg);
}

#page-index .ai-card-left {
  z-index: 1;
  top: 4%;
  left: 5%;
  width: 350px;
  height: 270px;
  opacity: 0.38;
  transform: rotate(8deg) scale(0.96);
}

#page-index .ai-card-right {
  z-index: 2;
  top: 36%;
  left: 78%;
  width: 350px;
  height: 270px;
  opacity: 0.34;
  transform: rotate(6deg);
}

#page-index .ai-card-bottom {
  z-index: 2;
  top: 67%;
  left: 28%;
  width: 350px;
  height: 270px;
  opacity: 0.34;
  transform: rotate(7deg);
}

#page-index .ai-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

#page-index .ai-spark {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

#page-index .ai-spark::before,
#page-index .ai-spark::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--lr-wine);
}

#page-index .ai-spark::before {
  width: 5px;
  height: 15px;
  border-radius: 50%;
}

#page-index .ai-spark::after {
  width: 15px;
  height: 5px;
  border-radius: 50%;
}

#page-index .ai-card-question {
  margin-top: 39px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

#page-index .ai-card-lines {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

#page-index .ai-card-lines span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #e5e3e0;
}

#page-index .ai-card-lines span:nth-child(1) { width: 88%; }
#page-index .ai-card-lines span:nth-child(2) { width: 78%; }
#page-index .ai-card-lines span:nth-child(3) { width: 65%; }

#page-index .ai-card-source {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 17px;
  border-radius: 999px;
  background: #f2f0ed;
  font-size: 13px;
}

#page-index .ai-card-source b {
  color: var(--lr-wine);
  font-weight: 500;
}

#page-index .hero-connections {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

#page-index .hero-connections path {
  fill: none;
  stroke: rgba(142, 21, 28, 0.74);
  stroke-width: 1;
  stroke-dasharray: 7 5;
  vector-effect: non-scaling-stroke;
  animation: heroLineFlow 4.2s linear infinite;
}

#page-index .hero-connections circle {
  fill: var(--lr-wine);
}

#page-index .hero-scroll-cue {
  display: none;
}

#page-index .hero-scroll-cue::before {
  content: '';
  width: 1px;
  height: 62px;
  background: linear-gradient(to bottom, rgba(142, 21, 28, 0), rgba(142, 21, 28, 0.72));
}

#page-index .hero-scroll-cue::after {
  content: '';
  width: 5px;
  height: 5px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--lr-wine);
}

#page-index .nav-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(142, 21, 28, 0.75);
  border-radius: 50%;
  color: var(--lr-wine);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

#page-index .nav {
  justify-content: flex-start;
}

#page-index .nav-links {
  margin-left: auto;
}

#page-index .nav-hero-action {
  margin-left: 52px;
}

#page-index .nav-hero-action:hover {
  color: #ffffff;
  background: var(--lr-wine);
  transform: translateY(-2px);
}

#page-index .nav-hero-action svg {
  width: 22px;
  height: 22px;
}

@keyframes heroConstellationFloat {
  0% { transform: translate3d(-1.2%, 1.4%, 0) rotate(-0.5deg); }
  100% { transform: translate3d(1.6%, -1.8%, 0) rotate(0.55deg); }
}

@keyframes heroDotDrift {
  0% { transform: translate3d(-8px, 6px, 0); opacity: 0.24; }
  100% { transform: translate3d(10px, -8px, 0); opacity: 0.38; }
}

@keyframes heroLineFlow {
  to { stroke-dashoffset: -48; }
}

@keyframes heroCtaArrive {
  from { opacity: 0.35; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes heroCtaSweep {
  0%, 64% { transform: skewX(-18deg) translateX(0); }
  100% { transform: skewX(-18deg) translateX(620%); }
}

@media (max-width: 1100px) {
  #page-index .reference-hero .hero-center {
    left: 48px;
    width: 440px;
  }

  #page-index .hero-visual {
    right: -28%;
    left: 40%;
    transform-origin: 48% 50%;
  }

  #page-index .nav-links {
    gap: 44px;
  }
}

@media (max-width: 768px) {
  #page-index .reference-hero {
    min-height: 940px;
  }

  #page-index .reference-hero::after {
    top: 48%;
    right: -34%;
    bottom: 1%;
    left: 10%;
    opacity: 0.26;
  }

  #page-index .nav-hero-action {
    display: none;
  }

  #page-index .reference-hero .hero-center {
    top: 128px;
    left: 24px;
    right: 24px;
    width: auto;
    align-items: flex-start;
    transform: none;
  }

  #page-index .reference-hero .hero-center .hero-title {
    font-size: clamp(50px, 15vw, 62px);
    letter-spacing: -0.04em;
  }

  #page-index .reference-hero .hero-center .hero-subtitle {
    gap: 10px;
    margin-top: 22px;
    font-size: 7px;
    letter-spacing: 0.2em;
  }

  #page-index .reference-hero .hero-center .hero-subtitle::before {
    width: 28px;
  }

  #page-index .reference-hero .hero-center .hero-desc {
    width: 330px;
    min-height: 71px;
    margin-top: 34px;
    font-size: 25px;
    line-height: 1.36;
  }

  #page-index .reference-hero .hero-copy {
    width: 330px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  #page-index .reference-hero .hero-center .hero-cta-btn {
    width: 258px;
    min-width: 258px;
    height: 58px;
    margin-top: 26px;
    padding: 0 22px;
    gap: 18px;
    font-size: 14px;
  }

  #page-index .reference-hero .hero-center .hero-cta-icon {
    right: auto;
    width: auto;
    height: auto;
  }

  #page-index .hero-visual {
    top: 51%;
    right: -76%;
    bottom: -1%;
    left: -8%;
    animation-duration: 8s;
    transform-origin: 43% 45%;
  }

  #page-index .ai-answer-card {
    padding: 24px 25px 21px;
    border-radius: 18px;
  }

  #page-index .ai-card-main {
    top: 13%;
    left: 26%;
    width: 276px;
    height: 224px;
  }

  #page-index .ai-card-left {
    top: 0;
    left: 0;
    width: 220px;
    height: 170px;
  }

  #page-index .ai-card-right {
    top: 39%;
    left: 68%;
    width: 220px;
    height: 170px;
  }

  #page-index .ai-card-bottom {
    top: 57%;
    left: 28%;
    width: 220px;
    height: 175px;
  }

  #page-index .ai-card-label {
    gap: 8px;
    font-size: 10px;
  }

  #page-index .ai-spark {
    width: 11px;
    height: 11px;
  }

  #page-index .ai-spark::before { width: 4px; height: 11px; }
  #page-index .ai-spark::after { width: 11px; height: 4px; }

  #page-index .ai-card-question {
    margin-top: 23px;
    font-size: 14px;
  }

  #page-index .ai-card-lines {
    gap: 8px;
    margin-top: 16px;
  }

  #page-index .ai-card-lines span {
    height: 8px;
  }

  #page-index .ai-card-source {
    gap: 10px;
    padding: 7px 11px;
    font-size: 9px;
  }

  #page-index .hero-connections {
    opacity: 0.6;
  }

  #page-index .hero-scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #page-index .hero-visual,
  #page-index .reference-hero::after,
  #page-index .hero-connections path,
  #page-index .reference-hero .hero-center .hero-cta-btn,
  #page-index .reference-hero .hero-center .hero-cta-btn::before {
    animation: none;
  }
}


#page-index .bg-media::before, #page-index .reference-hero::before, #page-index .hero-visual::before { will-change: filter; }

/* 성능: 레이아웃 속성 무한 애니메이션 제거(스크롤 잭 주범) */
#page-index .reference-hero .hero-center .hero-cta-btn::before { animation: none !important; opacity: 0 !important; }
/* 성능: 전면 배경 드리프트 정지(블렌드+필터 상시 리페인트) */
#page-index .bg-media::before { animation: none !important; }
/* 화면 밖 애니메이션 자동 정지용 */
.anim-paused, .anim-paused *, .anim-paused *::before, .anim-paused *::after { animation-play-state: paused !important; }
/* 성능: 스크롤 중에는 모든 애니메이션 일시정지(멈추면 재개) */
html.is-scrolling *, html.is-scrolling *::before, html.is-scrolling *::after { animation-play-state: paused !important; }
/* 성능: 대형 실시간 블러 글로우를 그라디언트로 치환(스크롤 재래스터 제거) */
#page-index .reference-hero::before { filter: none !important; background: radial-gradient(circle, rgba(142, 21, 28, 0.055) 0%, rgba(142, 21, 28, 0.045) 45%, rgba(142, 21, 28, 0.0) 72%) !important; }
#page-index .hero-visual::before { filter: none !important; background: radial-gradient(circle, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.5) 42%, rgba(255, 255, 255, 0.0) 70%) !important; }

.fig-geo-top5 { background-image: url('/img/geo-top5-cover.jpg'); }
.article-main .co-block { border: 1.5px solid #14171c; border-radius: 16px; padding: 24px 28px 12px; margin: 22px 0; }
.article-main .co-block.co-1 { border-color: var(--lr-wine); }
.article-main .co-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.article-main .co-head h3 { margin: 0; font-size: 18.5px; }
.article-main .co-rank { width: 30px; height: 30px; border-radius: 50%; background: var(--lr-wine); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex: 0 0 auto; }
.article-main .co-site { margin-left: auto; font-size: 13.5px; font-weight: 600; color: var(--lr-wine); text-decoration: none; border: 1px solid rgba(142, 21, 28, 0.35); border-radius: 999px; padding: 5px 13px; white-space: nowrap; }
.article-main .co-site:hover { background: var(--lr-wine-soft); }
@media (max-width: 640px) { .article-main .co-head { flex-wrap: wrap; } .article-main .co-site { margin-left: 42px; } }

.arrow::after { content: "\2192"; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

#page-index .bg-media::before { background-image: url('/img/hero-bg-baked.jpg'); filter: none; mix-blend-mode: normal; opacity: 1; will-change: auto; }
