/* =========================================
   한얼그룹 - Samsung Careers inspired theme
   ========================================= */

:root {
    --ink: #0a0a0a;
    --ink-2: #1f1f1f;
    --text: #2a2a2a;
    --muted: #6b6b6b;
    --line: #e5e5e5;
    --line-soft: #f0f0f0;
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --bg-dark: #0a0a0a;
    --accent: #1428a0;
    --container: 1320px;
    --pad-x: clamp(24px, 5vw, 80px);
    --t: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

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

/* =====================
   HEADER
   ===================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--t), background 0.3s var(--t);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 var(--pad-x);
    max-width: 1600px;
    margin: 0 auto;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 700;
}
.logo-mark {
    width: 36px; height: 36px;
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}
.logo-mark.dark { background: var(--ink); }
.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
@media (max-width: 700px) {
    .logo-img { height: 38px; }
}

/* ===== 언어 선택기 (네이티브 select 기반 — 깔끔한 단일 컴포넌트) ===== */
.lang-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 6px 12px;
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: all .18s ease;
}
.lang-wrap:hover {
    background: rgba(255,255,255,.9);
    border-color: var(--ink);
}
.lang-globe-ico {
    color: var(--ink);
    opacity: .85;
    pointer-events: none;
}
.lang-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 0;
    padding: 2px 18px 2px 2px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    line-height: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1.5 L6 6 L11 1.5' fill='none' stroke='%231c1c1e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 10px 7px;
}
.lang-select:focus { outline: none; }
.lang-select::-ms-expand { display: none; }
.lang-select option {
    color: var(--ink);
    background: #fff;
    font-weight: 600;
}
@media (max-width: 768px) {
    .lang-wrap { padding: 5px 9px 5px 10px; }
    .lang-select { font-size: 12px; }
}

/* ===== Legacy 커스텀 드롭다운 (다른 페이지 호환용) ===== */
.lang-switcher {
    position: relative;
    display: inline-flex;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px 8px 12px;
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.18s ease;
    line-height: 1;
    white-space: nowrap;
}
.lang-toggle:hover {
    background: rgba(255,255,255,.85);
    border-color: var(--ink);
}
.lang-switcher.open .lang-toggle {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.lang-globe {
    transition: transform .35s ease;
}
.lang-switcher.open .lang-globe {
    transform: rotate(20deg);
}
.lang-chevron {
    transition: transform .25s ease;
    opacity: .65;
}
.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(0,0,0,.06),
        0 16px 40px rgba(0,0,0,.12);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.97);
    transform-origin: top right;
    transition: opacity .2s ease, transform .2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
}
.lang-switcher.open .lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.lang-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: background .12s;
}
.lang-opt:hover { background: rgba(0,0,0,.05); }
.lang-opt .lang-flag {
    font-size: 16px;
    line-height: 1;
}
.lang-opt .lang-check {
    margin-left: auto;
    color: var(--ink);
    font-weight: 900;
    opacity: 0;
    transition: opacity .15s;
}
.lang-opt.active .lang-check { opacity: 1; }
.lang-opt.active { color: var(--ink); font-weight: 800; }

@media (max-width: 768px) {
    .lang-toggle { padding: 6px 12px 6px 10px; font-size: 12px; }
    .lang-menu { min-width: 140px; right: -10px; }
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}
.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s var(--t);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--ink);
    transition: width 0.3s var(--t);
}
.nav-menu a:hover::after { width: 100%; }

.header-cta { display: flex; }
.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: opacity 0.2s var(--t);
}
.link-arrow:hover { opacity: 0.65; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.25s var(--t);
}

/* =====================
   REVEAL
   ===================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--t), transform 0.8s var(--t);
}
[data-reveal].in {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   HERO - VIDEO BANNER
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}
/* 영상 중앙에 YouTube 컨트롤(이전/재생/다음) 가리는 블러 마스크 */
.hero-media::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(280px, 38vw, 560px);
    height: clamp(140px, 18vw, 260px);
    background: radial-gradient(ellipse at center,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.7) 35%,
        rgba(0,0,0,0.3) 70%,
        transparent 100%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}
/* Desktop: YouTube iframe scaled larger than viewport so brand UI bleeds off-screen.
   Mobile: native <video> fallback (iOS Safari blocks iframe autoplay reliably). */
.hero-video {
    position: absolute;
    border: 0;
    pointer-events: none;
    opacity: 0.92;
}
.hero-video-desktop {
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    object-fit: cover;
    /* 화질 보존을 위해 최소 scale만 */
    transform: translate(-50%, -50%) scale(1.12);
}
iframe.hero-video-desktop { object-fit: unset; }
iframe.hero-video-mobile  { object-fit: unset; }
.hero-video-mobile {
    display: none;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1.0)  translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, 1%); }
}
@media (max-width: 768px) {
    .hero-video-desktop { display: none; }
    .hero-video-mobile  { display: block; }
}
.hero-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.fx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: orbFloat 18s ease-in-out infinite;
}
.fx-orb-1 {
    width: 600px; height: 600px;
    background: #1428a0;
    top: -10%; left: -10%;
    animation-delay: 0s;
}
.fx-orb-2 {
    width: 500px; height: 500px;
    background: #0a2540;
    bottom: -15%; right: -8%;
    animation-delay: -6s;
    animation-duration: 22s;
}
.fx-orb-3 {
    width: 380px; height: 380px;
    background: #2d3a8c;
    top: 40%; left: 50%;
    opacity: 0.35;
    animation-delay: -12s;
    animation-duration: 26s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, -60px) scale(1.15); }
    66%      { transform: translate(-60px, 80px) scale(0.9); }
}
.fx-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 200px var(--pad-x) 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(24px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 24px;
    word-break: keep-all;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-headline .hl {
    background: linear-gradient(120deg, #fff 0%, #6b8eff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: clamp(13px, 1vw, 15px);
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.8);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: color 0.25s var(--t);
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.hero-tiles {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-top: 1px solid rgba(255,255,255,0.18);
    margin-top: auto;
}
.tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 18px;
    border-right: 1px solid rgba(255,255,255,0.12);
    min-height: 56px;
    transition: background 0.3s var(--t), color 0.3s var(--t);
    position: relative;
    color: #fff;
    gap: 2px;
}
.tile:last-child { border-right: none; }
.tile-num {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s var(--t);
    line-height: 1;
}
.tile-label {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.tile:hover {
    background: rgba(255,255,255,0.08);
}
.tile:hover .tile-num { color: rgba(255,255,255,0.85); }
.tile-accent {
    background: #1428a0;
}
.tile-accent:hover {
    background: #0d1f80;
}

/* =====================
   COMMON SECTION TYPE
   ===================== */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--ink);
    text-transform: uppercase;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.display-title {
    font-size: clamp(38px, 5.2vw, 76px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--ink);
    word-break: keep-all;
}
.display-title.sm {
    font-size: clamp(32px, 3.8vw, 56px);
    letter-spacing: -1.2px;
    line-height: 1.2;
}
.display-title.light { color: #fff; }
.display-title em {
    font-style: normal;
    background: linear-gradient(120deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* 다크 섹션의 강조 — 오렌지 포인트 강제 */
.display-title.light em,
.display-title em.hl-orange {
    background: none;
    -webkit-text-fill-color: #ff7a18;
    color: #ff7a18;
}
.section-head {
    margin-bottom: 80px;
}
.section-head.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}
.section-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
    justify-self: end;
}

/* =====================
   VISION / OUR STORY
   ===================== */
.vision { padding: 140px 0; border-top: 1px solid var(--line); }
.vision-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    margin-bottom: 100px;
}
.vision-eyebrow-col { padding-top: 12px; }
.vision-content { max-width: 880px; }
.vision-content .display-title { margin-bottom: 48px; }
.vision-lead {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    word-break: keep-all;
}
.vision-lead strong { color: var(--ink); font-weight: 700; }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--line);
}
.stat {
    padding: 40px 24px;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}
.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
}

/* =====================
   BUSINESS
   ===================== */
.business { padding: 140px 0; background: var(--bg-soft); }
.biz-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid var(--line);
}
.biz-feature.reverse > :first-child { order: 2; }
.biz-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--g1), var(--g2));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.biz-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.biz-emoji {
    font-size: clamp(80px, 12vw, 140px);
    filter: grayscale(0.2);
    position: relative;
}
.biz-no {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 24px;
}
.biz-detail h3 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}
.biz-detail p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
    word-break: keep-all;
}
.biz-links { display: flex; flex-wrap: wrap; gap: 20px 28px; }

/* =====================
   SERVICES STRIP (editorial index)
   ===================== */
.services-strip {
    padding: 100px 0 120px;
    border-bottom: 1px solid var(--line);
}
.strip-head {
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 32px;
    row-gap: 10px;
    align-items: end;
}
.strip-head .section-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}
.strip-head .display-title { grid-column: 1; }
.strip-lead {
    grid-column: 2;
    color: var(--muted);
    font-size: 15px;
    justify-self: end;
    align-self: end;
    padding-bottom: 10px;
}
.strip-count {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    background: var(--ink);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 999px;
    vertical-align: middle;
}
.strip-list {
    list-style: none;
    border-top: 1px solid var(--ink);
}
.strip-list li { border-bottom: 1px solid var(--line); }

/* =====================
   BANNER GRID — 프로덕트·서비스 카드
   ===================== */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 28px;
    margin-top: 56px;
}
@media (max-width: 1200px) {
    .banner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 900px) {
    .banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}
@media (max-width: 560px) {
    .banner-grid { grid-template-columns: 1fr; gap: 18px; }
}
.banner-card {
    position: relative;
    display: flex; flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
    transition: transform 0.4s var(--t), box-shadow 0.4s var(--t);
    isolation: isolate;
}
.banner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.banner-card:hover .banner-art svg { transform: scale(1.06); }
.banner-card:hover .banner-arrow { transform: translateX(6px); }

.banner-art {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg1, #0a0a0a) 0%, var(--bg2, #1f1f1f) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.banner-art::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.15) 0%, transparent 50%);
    pointer-events: none;
}
.banner-art svg {
    width: 78%; height: 78%;
    transition: transform 0.5s var(--t);
}
.banner-art.banner-art-video {
    aspect-ratio: 16 / 10;
    padding: 0;
    background: #0d1117;
}
.banner-art.banner-art-video::after { display: none; }
.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--t);
}
.banner-card:hover .banner-video { transform: scale(1.04); }

.banner-body {
    padding: 24px 24px 28px;
    background: #ffffff;
    color: var(--ink);
    flex: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 12px;
    align-items: center;
}
.banner-num {
    grid-row: 1; grid-column: 1;
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--muted);
}
.banner-tag {
    grid-row: 1; grid-column: 2;
    justify-self: end;
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 999px;
}
.banner-tag:empty { padding: 0; }
.banner-tag.tag-live    { color: #fff; background: #dc2626; }
.banner-tag.tag-live::before { content: '● '; font-size: 8px; vertical-align: middle; }
.banner-tag.tag-new     { color: #fff; background: linear-gradient(110deg, #ff2bd6, #7c3aed); }
.banner-tag.tag-official { color: #0a0a0a; background: #fff; border: 1px solid var(--ink); }
.banner-tag.tag-sale    { color: #fff; background: linear-gradient(110deg, #1428a0, #0a2540); }
.banner-tag.tag-free    { color: #fff; background: linear-gradient(110deg, #16a34a, #0d6e36); }
.banner-tag.tag-free::before { content: '★ '; font-size: 9px; vertical-align: middle; }

.banner-cat {
    grid-row: 2; grid-column: 1 / -1;
    margin: 12px 0 4px;
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}
.banner-name {
    grid-row: 3; grid-column: 1 / -1;
    margin: 0 0 8px;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink);
    line-height: 1.25;
}
.banner-desc {
    grid-row: 4; grid-column: 1 / -1;
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    padding-right: 52px;  /* 우하단 화살표(32px) + 여백 — 텍스트 가림 방지 */
}
.banner-arrow {
    position: absolute;
    right: 24px; bottom: 24px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: transform 0.3s var(--t);
}

/* Feature card — 강조 제거, 다른 카드와 완전 균일 (가격 태그만 유지) */
/* .banner-card-feature 클래스는 HTML에 남아있지만 CSS 강조 없음 */

/* CTA placeholder card (8번째 자리) */
.banner-card-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1428a0 100%);
    color: #fff;
    border: 1px solid #30363d;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 32px 28px;
    min-height: 100%;
    transition: transform 0.4s var(--t), box-shadow 0.4s var(--t);
    border-radius: 16px;
}
.banner-card-cta:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.4); }
.banner-card-cta .cta-eyebrow { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.banner-card-cta .cta-title { font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.3; }
.banner-card-cta .cta-desc { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.banner-card-cta .cta-action { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: 13px; font-weight: 700; transition: all .2s; }
.banner-card-cta:hover .cta-action { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }
.banner-card-cta .cta-icon { font-size: 32px; margin-bottom: 14px; }

/* Soon (제작중) variant — 점선 보더 + 회색톤 */
.banner-card-soon {
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a 0px, #1a1a1a 12px,
        #0a0a0a 12px, #0a0a0a 24px
    ) !important;
    border: 2px dashed #30363d !important;
    cursor: default;
}
.banner-card-soon:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #58a6ff !important;
}
.banner-card-soon .cta-eyebrow { color: #f59e0b; }
.banner-card-soon .cta-icon { animation: soonBounce 2s ease-in-out infinite; }
@keyframes soonBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.banner-card-soon .cta-action.soon {
    background: rgba(245,158,11,.15);
    border-color: rgba(245,158,11,.4);
    color: #f59e0b;
    cursor: default;
}

@media (max-width: 560px) {
    .banner-body { padding: 20px 20px 24px; }
    .banner-arrow { right: 20px; bottom: 20px; }
    .banner-desc { padding-right: 44px; }
}

/* =====================================================
   BANNER ANIMATIONS — 제품별 고유 모션
   ===================================================== */

/* 01. 가상매장 — 네온 점멸 + 코인 떠오르기 + 가격태그 흔들림 */
.banner-01 .vm-led-1 { animation: vmLed 1.6s ease-in-out infinite; }
.banner-01 .vm-led-2 { animation: vmLed 1.6s ease-in-out infinite .4s; }
.banner-01 .vm-led-3 { animation: vmLed 1.6s ease-in-out infinite .8s; }
.banner-01 .vm-coin-1 { animation: vmCoin 3s ease-in-out infinite; }
.banner-01 .vm-coin-2 { animation: vmCoin 3s ease-in-out infinite 1s; }
.banner-01 .vm-coin-3 { animation: vmCoin 3s ease-in-out infinite 2s; }
.banner-01 .vm-tag { animation: vmTagSwing 2.6s ease-in-out infinite; transform-origin: 81px 48px; transform-box: fill-box; }
.banner-01 .vm-shelf-a { animation: vmGlow 4s ease-in-out infinite; }
.banner-01 .vm-shelf-b { animation: vmGlow 4s ease-in-out infinite 1.3s; }
.banner-01 .vm-shelf-c { animation: vmGlow 4s ease-in-out infinite 2.6s; }
@keyframes vmLed { 0%, 60%, 100% { opacity: 1; } 70%, 90% { opacity: .15; } }
@keyframes vmCoin {
    0%   { transform: translateY(0); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(-22px); opacity: 0; }
}
@keyframes vmTagSwing {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(8deg); }
}
@keyframes vmGlow {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.35); }
}

/* 02. 쇼핑몰 — 카트 굴러옴 + 가격라인 등장 + +1 떠오르기 + LIVE 점멸 */
.banner-02 .sh-cart { animation: shCartRoll 4s ease-in-out infinite; }
.banner-02 .sh-prod-1 { animation: shProdDrop 4s ease-in-out infinite 1.4s; transform-origin: center; transform-box: fill-box; }
.banner-02 .sh-prod-2 { animation: shProdDrop 4s ease-in-out infinite 1.7s; transform-origin: center; transform-box: fill-box; }
.banner-02 .sh-line-1 { animation: shLineFade 3s ease-in-out infinite; }
.banner-02 .sh-line-2 { animation: shLineFade 3s ease-in-out infinite .3s; }
.banner-02 .sh-line-3 { animation: shLineFade 3s ease-in-out infinite .6s; }
.banner-02 .sh-plus  { animation: shPlusFloat 2.8s ease-out infinite; }
.banner-02 .sh-live  { animation: shLiveBlink 1.2s ease-in-out infinite; }
@keyframes shCartRoll {
    0%   { transform: translateX(-18px); }
    50%  { transform: translateX(0); }
    100% { transform: translateX(-18px); }
}
@keyframes shProdDrop {
    0%, 30% { transform: translateY(-12px) scale(.6); opacity: 0; }
    50%     { transform: translateY(0) scale(1); opacity: 1; }
    100%    { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes shLineFade {
    0%, 100% { opacity: .4; }
    50%      { opacity: 1; }
}
@keyframes shPlusFloat {
    0%   { transform: translate(0, 8px); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translate(0, -10px); opacity: 0; }
}
@keyframes shLiveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.8); }
}

/* 03. 홍콩도매 — 지구 회전 + 점 펄스 + 비행기 경로 이동 */
.banner-03 .hk-globe   { animation: hkGlobeSpin 18s linear infinite; transform-origin: center; transform-box: fill-box; }
.banner-03 .hk-dot-kr  { animation: hkDotPulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.banner-03 .hk-dot-hk  { animation: hkDotPulse 2s ease-in-out infinite 1s; transform-origin: center; transform-box: fill-box; }
.banner-03 .hk-route   { stroke-dasharray: 2 2; animation: hkRouteDash 1.8s linear infinite; }
.banner-03 .hk-plane   { animation: hkPlaneMove 3.5s ease-in-out infinite; }
.banner-03 .hk-box     { animation: hkBoxPulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes hkGlobeSpin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}
@keyframes hkDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 2px currentColor); }
    50%      { transform: scale(1.6); opacity: .7; }
}
@keyframes hkRouteDash {
    to { stroke-dashoffset: -8; }
}
@keyframes hkPlaneMove {
    0%   { transform: translate(6px, -6px) rotate(45deg); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translate(7px, -1px) rotate(70deg); }
    90%  { opacity: 1; }
    100% { transform: translate(3px, 3px) rotate(100deg); opacity: 0; }
}
@keyframes hkBoxPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

/* 04. RESTICK Repair Core — 체크 순차 + LED 점멸 + 커서 깜박 + 키 타이핑 */
.banner-04 .rc-led-r   { animation: rcLed 1.4s ease-in-out infinite; }
.banner-04 .rc-led-y   { animation: rcLed 1.4s ease-in-out infinite .2s; }
.banner-04 .rc-led-g   { animation: rcLed 1.4s ease-in-out infinite .4s; }
.banner-04 .rc-tab-active { animation: rcTabPulse 2.4s ease-in-out infinite; }
.banner-04 .rc-check-1 { animation: rcCheckIn 4s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.banner-04 .rc-check-2 { animation: rcCheckIn 4s ease-out infinite 1s; transform-origin: center; transform-box: fill-box; }
.banner-04 .rc-check-3 { animation: rcCheckIn 4s ease-out infinite 2s; transform-origin: center; transform-box: fill-box; }
.banner-04 .rc-license { animation: rcLicenseGlow 3s ease-in-out infinite; }
.banner-04 .rc-key-text { animation: rcKeyType 4s steps(2) infinite; }
.banner-04 .rc-cursor   { animation: rcBlink 1s steps(2) infinite; }
.banner-04 .rc-phone-dot { animation: rcPhonePulse 1.6s ease-in-out infinite; }
@keyframes rcLed { 0%, 60%, 100% { opacity: 1; } 70%, 90% { opacity: .25; } }
@keyframes rcTabPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .55; }
}
@keyframes rcCheckIn {
    0%, 20% { transform: translateX(-6px); opacity: 0; }
    30%, 100% { transform: translateX(0); opacity: 1; }
}
@keyframes rcLicenseGlow {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.5) drop-shadow(0 0 4px #58a6ff); }
}
@keyframes rcKeyType {
    0%   { opacity: .3; }
    50%  { opacity: 1; }
    100% { opacity: .3; }
}
@keyframes rcBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes rcPhonePulse {
    0%, 100% { r: .5; opacity: 1; }
    50%      { r: 1.2; opacity: .4; }
}

/* 05. 수리가이드 — 페이지 넘김 + 스텝 순차 점등 + 돋보기 이동 */
.banner-05 .rg-page    { animation: rgPageFlip 5s ease-in-out infinite; transform-origin: 32px 36px; transform-box: fill-box; }
.banner-05 .rg-step    { opacity: .55; }
.banner-05 .rg-step-1  { animation: rgStepGlow 4s ease-in-out infinite; }
.banner-05 .rg-step-2  { animation: rgStepGlow 4s ease-in-out infinite 1s; }
.banner-05 .rg-step-3  { animation: rgStepGlow 4s ease-in-out infinite 2s; }
.banner-05 .rg-step-4  { animation: rgStepGlow 4s ease-in-out infinite 3s; }
.banner-05 .rg-magnifier { animation: rgMagMove 6s ease-in-out infinite; }
@keyframes rgPageFlip {
    0%, 60%  { transform: rotateY(0deg); }
    70%, 90% { transform: rotateY(-160deg); }
    100%     { transform: rotateY(0deg); }
}
@keyframes rgStepGlow {
    0%, 30%, 100% { opacity: .55; filter: brightness(1); }
    10%           { opacity: 1; filter: brightness(1.4); }
}
@keyframes rgMagMove {
    0%   { transform: translate(72px, 24px); }
    25%  { transform: translate(82px, 32px); }
    50%  { transform: translate(70px, 42px); }
    75%  { transform: translate(82px, 52px); }
    100% { transform: translate(72px, 24px); }
}

/* 06. 아이폰 수리가이드 — 부품 분해 + 지시선 깜박 + 포인터 이동 */
.banner-06 .ip-screen  { animation: ipScreenLift 5s ease-in-out infinite; transform-origin: center bottom; transform-box: fill-box; }
.banner-06 .ip-battery { animation: ipPartShift 5s ease-in-out infinite .3s; }
.banner-06 .ip-board   { animation: ipPartShift 5s ease-in-out infinite .6s; }
.banner-06 .ip-line-1  { animation: ipLineGlow 3s ease-in-out infinite; }
.banner-06 .ip-line-2  { animation: ipLineGlow 3s ease-in-out infinite 1s; }
.banner-06 .ip-line-3  { animation: ipLineGlow 3s ease-in-out infinite 2s; }
.banner-06 .ip-pointer { animation: ipPointerMove 6s ease-in-out infinite; }
@keyframes ipScreenLift {
    0%, 30%, 100% { transform: translateY(0); }
    50%, 75%      { transform: translateY(-6px); }
}
@keyframes ipPartShift {
    0%, 30%, 100% { transform: translate(0, 0); }
    55%, 80%      { transform: translate(0, 1.5px); }
}
@keyframes ipLineGlow {
    0%, 100% { opacity: .4; stroke-width: .5; }
    50%      { opacity: 1; stroke-width: .8; }
}
@keyframes ipPointerMove {
    0%   { transform: translate(38px, 28px); }
    33%  { transform: translate(64px, 36px); }
    66%  { transform: translate(38px, 44px); }
    100% { transform: translate(38px, 28px); }
}

/* 07. 수리장비 — 스패너 회전 + 인두 연기 + 부품 반짝 */
.banner-07 .tl-wrench  { animation: tlWrenchTwist 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.banner-07 .tl-driver  { animation: tlDriverBob 2s ease-in-out infinite; }
.banner-07 .tl-smoke circle { animation: tlSmokeRise 3s ease-out infinite; }
.banner-07 .tl-smoke circle:nth-child(2) { animation-delay: 1s; }
.banner-07 .tl-smoke circle:nth-child(3) { animation-delay: 2s; }
.banner-07 .tl-tweezer { animation: tlTweezerPinch 2.6s ease-in-out infinite; transform-origin: top center; transform-box: fill-box; }
.banner-07 .tl-part-1  { animation: tlPartSpark 2s ease-in-out infinite; }
.banner-07 .tl-part-2  { animation: tlPartSpark 2s ease-in-out infinite .7s; }
.banner-07 .tl-part-3  { animation: tlPartSpark 2s ease-in-out infinite 1.4s; }
@keyframes tlWrenchTwist {
    0%, 100% { transform: rotate(-10deg); }
    50%      { transform: rotate(10deg); }
}
@keyframes tlDriverBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(2px); }
}
@keyframes tlSmokeRise {
    0%   { transform: translateY(0) scale(.6); opacity: .6; }
    100% { transform: translateY(-12px) scale(1.4); opacity: 0; }
}
@keyframes tlTweezerPinch {
    0%, 100% { transform: scale(1, 1); }
    50%      { transform: scale(.85, 1); }
}
@keyframes tlPartSpark {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
    50%      { filter: brightness(1.5) drop-shadow(0 0 3px currentColor); }
}

/* 08. 한얼디자인 — 셀 컬러 모핑 + 핸들 펄스 + 커서 이동 + 스와치 회전 */
.banner-08 .hd-cell-1 { animation: hdCellMorph 6s ease-in-out infinite; }
.banner-08 .hd-cell-2 { animation: hdCellMorph 6s ease-in-out infinite 1s; }
.banner-08 .hd-cell-3 { animation: hdCellMorph 6s ease-in-out infinite 2s; }
.banner-08 .hd-cell-4 { animation: hdCellMorph 6s ease-in-out infinite 3s; }
.banner-08 .hd-cell-5 { animation: hdCellMorph 6s ease-in-out infinite 4s; }
.banner-08 .hd-cell-6 { animation: hdCellMorph 6s ease-in-out infinite 5s; }
.banner-08 .hd-handle rect { animation: hdHandlePulse 1.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.banner-08 .hd-handle rect:nth-child(2) { animation-delay: .2s; }
.banner-08 .hd-handle rect:nth-child(3) { animation-delay: .4s; }
.banner-08 .hd-handle rect:nth-child(4) { animation-delay: .6s; }
.banner-08 .hd-cursor   { animation: hdCursorPath 6s ease-in-out infinite; }
.banner-08 .hd-sw       { transform-origin: center; transform-box: fill-box; }
.banner-08 .hd-sw-1     { animation: hdSwBounce 1.8s ease-in-out infinite; }
.banner-08 .hd-sw-2     { animation: hdSwBounce 1.8s ease-in-out infinite .3s; }
.banner-08 .hd-sw-3     { animation: hdSwBounce 1.8s ease-in-out infinite .6s; }
@keyframes hdCellMorph {
    0%, 100% { fill: #0a0a0a; }
    16%      { fill: #7c3aed; }
    33%      { fill: #ff2bd6; }
    50%      { fill: #ffd700; }
    66%      { fill: #58a6ff; }
    83%      { fill: #fff; }
}
@keyframes hdHandlePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.6); opacity: .6; }
}
@keyframes hdCursorPath {
    0%   { transform: translate(20px, 20px); }
    25%  { transform: translate(70px, 18px); }
    50%  { transform: translate(72px, 50px); }
    75%  { transform: translate(22px, 52px); }
    100% { transform: translate(20px, 20px); }
}
@keyframes hdSwBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-2px); }
}

/* 08. 한얼북 — 페이지 넘김 + 돋보기 부유 + 책갈피 흔들림 + 골드 스파클 */
.banner-08 .bk-flip   { animation: bkPageFlip 5s ease-in-out infinite; }
.banner-08 .bk-lens   { animation: bkLensFloat 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.banner-08 .bk-mark   { animation: bkMarkSway 3.2s ease-in-out infinite; transform-origin: top center; transform-box: fill-box; }
.banner-08 .bk-spark  { transform-origin: center; transform-box: fill-box; }
.banner-08 .bk-spark-1 { animation: bkSparkTwinkle 2.4s ease-in-out infinite; }
.banner-08 .bk-spark-2 { animation: bkSparkTwinkle 2.4s ease-in-out infinite .8s; }
.banner-08 .bk-spark-3 { animation: bkSparkTwinkle 2.4s ease-in-out infinite 1.6s; }
@keyframes bkPageFlip {
    0%       { transform: rotateY(0deg);   opacity: 1; }
    15%      { transform: rotateY(-15deg); opacity: 1; }
    45%      { transform: rotateY(-160deg); opacity: .85; }
    55%      { transform: rotateY(-180deg); opacity: 0; }
    56%, 99% { transform: rotateY(0deg);   opacity: 0; }
    100%     { transform: rotateY(0deg);   opacity: 1; }
}
@keyframes bkLensFloat {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    50%      { transform: translate(-6px, 4px) rotate(6deg); }
}
@keyframes bkMarkSway {
    0%, 100% { transform: rotate(-2deg); }
    50%      { transform: rotate(3deg); }
}
@keyframes bkSparkTwinkle {
    0%, 100% { transform: scale(.6); opacity: .35; }
    50%      { transform: scale(1.3); opacity: 1; }
}

/* 모션 감소 선호 사용자 — 모든 배너 애니메이션 비활성화 */
@media (prefers-reduced-motion: reduce) {
    .banner-art *, .banner-art {
        animation: none !important;
    }
}
.strip-row {
    display: grid;
    grid-template-columns: 56px 180px 1fr auto 32px;
    align-items: center;
    gap: 24px;
    padding: 22px 8px;
    color: var(--ink);
    position: relative;
    transition: padding 0.35s var(--t), background 0.35s var(--t);
}
.strip-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--ink);
    transition: width 0.35s var(--t);
}
.strip-row:hover { padding-left: 24px; background: var(--bg-soft); }
.strip-row:hover::before { width: 3px; }
.strip-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--muted);
}
.strip-cat {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}
.strip-name {
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink);
}
.strip-tag {
    min-width: 78px;
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}
.strip-tag:empty { min-width: 0; }
.strip-tag.tag-live    { color: #dc2626; }
.strip-tag.tag-live::before    { content: '● '; font-size: 8px; vertical-align: middle; }
.strip-tag.tag-new {
    color: #fff;
    background: linear-gradient(110deg, #ff2bd6, #7c3aed);
    padding: 4px 9px;
    border-radius: 2px;
    letter-spacing: 1.5px;
}
.strip-tag.tag-official {
    color: var(--ink);
    background: #ffd700;
    padding: 4px 9px;
    border-radius: 2px;
}
.strip-arrow {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--ink);
    justify-self: end;
    transition: transform 0.35s var(--t);
}
.strip-row:hover .strip-arrow { transform: translateX(8px); }

.biz-art {
    width: 60%;
    max-width: 320px;
    height: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 880px) {
    .services-strip { padding: 72px 0 88px; }
    .strip-head { grid-template-columns: 1fr; }
    .strip-head .display-title,
    .strip-lead { grid-column: 1; }
    .strip-lead { justify-self: start; padding-bottom: 0; }
    .strip-row {
        grid-template-columns: 36px 1fr auto;
        gap: 14px;
        padding: 18px 6px;
    }
    .strip-num { grid-row: 1 / 3; align-self: center; }
    .strip-cat { grid-column: 2; grid-row: 1; font-size: 10px; }
    .strip-name { grid-column: 2; grid-row: 2; font-size: 17px; }
    .strip-tag  { grid-column: 3; grid-row: 1 / 3; align-self: center; min-width: 0; }
    .strip-arrow { display: none; }
    .strip-row:hover { padding-left: 12px; }
}

/* =====================
   SHOP FEATURE (DARK)
   ===================== */
.shop-feature {
    background: var(--bg-dark);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}
.shop-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(20, 40, 160, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
}
.shop-feature-inner { position: relative; max-width: 880px; }
.shop-feature .section-eyebrow { margin-bottom: 32px; }
.shop-feature .display-title { margin-bottom: 32px; }
.shop-desc {
    font-size: clamp(16px, 1.4vw, 19px);
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 48px;
    word-break: keep-all;
}
.shop-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================
   CULTURE
   ===================== */
.culture { padding: 140px 0; border-top: 1px solid var(--line); }
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
}
.culture-card {
    padding: 48px 32px 48px 0;
    border-right: 1px solid var(--line);
}
.culture-card:not(:first-child) { padding-left: 32px; }
.culture-card:last-child { border-right: none; }
.culture-num {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 24px;
}
.culture-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.culture-card p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    word-break: keep-all;
}

/* =====================
   CONTACT
   ===================== */
.contact { padding: 140px 0; background: var(--bg-soft); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info, .contact-form {
    background: #fff;
    padding: 48px;
    border: 1px solid var(--line);
}
.contact-info h3, .contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.contact-info .contact-lead {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}
.contact-entity {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}
.contact-entity:first-of-type {
    padding-top: 8px;
    border-top: none;
}
.contact-entity .entity-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.contact-entity .entity-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #fff;
    background: #0a0a0a;
    vertical-align: middle;
}
.contact-entity .entity-tag.tag-cn {
    background: linear-gradient(110deg, #dc2626, #fbbf24);
}
.contact-entity .entity-sub {
    font-size: 12px;
    color: var(--muted);
    margin: -2px 0 8px;
    font-weight: 400;
}
.contact-entity .addr-mask {
    color: var(--muted);
    font-style: italic;
    font-size: 12px;
}
.contact-entity .entity-en {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 1.5px;
    margin-left: 6px;
}
.contact-info dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px 24px;
}
.contact-info dt {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.5px;
    padding-top: 2px;
}
.contact-info dd {
    font-size: 15px;
    color: var(--text);
}
.contact-info .note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
}
.contact-form form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ink);
    text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    font-family: inherit;
    font-size: 15px;
    background: transparent;
    color: var(--ink);
    transition: border-color 0.2s var(--t);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--ink);
}
.contact-form button { margin-top: 16px; align-self: flex-start; }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s var(--t);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
}
.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }
.btn-light {
    background: #fff;
    color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* =====================
   VIEW FILTER (nav-driven single-section view)
   ===================== */
body[data-view] main > section { display: none; }
body[data-view="story"] main > section#story,
body[data-view="business"] main > section#business,
body[data-view="affiliates"] main > section#affiliates,
body[data-view="shop"] main > section#shop,
body[data-view="contact"] main > section#contact { display: block; }

/* When filtered, push section below fixed header */
body[data-view] main { padding-top: 76px; }

/* Active nav state */
.nav-menu a { position: relative; transition: color 0.2s var(--t); }
.nav-menu a.active { color: var(--ink); font-weight: 700; }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--ink);
}

/* =====================
   FOOTER - COMPACT
   ===================== */
.site-footer {
    background: #fff;
    color: var(--text);
    border-top: 1px solid var(--line);
}
.site-footer.compact { padding: 24px 0; }
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 1px;
}
.footer-logo .logo-mark { width: 28px; height: 28px; font-size: 11px; border-radius: 6px; }
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s var(--t);
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .tile { border-bottom: 1px solid var(--line); }
    .tile:nth-child(2n) { border-right: none; }
    .biz-feature { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .biz-feature.reverse > :first-child { order: 0; }
    .vision-grid { grid-template-columns: 1fr; gap: 24px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
    .culture-grid { grid-template-columns: 1fr; }
    .culture-card { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
    .culture-card:last-child { border-bottom: none; }
    .culture-card:not(:first-child) { padding-left: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .section-head.split { grid-template-columns: 1fr; gap: 24px; }
    .section-desc { justify-self: start; }
}
@media (max-width: 720px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px var(--pad-x);
        gap: 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        transition: transform 0.3s var(--t);
        box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .header-cta { display: none; }
    .hero-wrap { padding-top: 160px; padding-bottom: 40px; }
    .hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .tile { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); min-height: 48px; padding: 8px 14px; }
    .tile-label { font-size: 14px; }
    .tile:nth-child(2n) { border-right: none; }
    .contact-info, .contact-form { padding: 32px 24px; }
    .contact-info dl { grid-template-columns: 110px 1fr; gap: 12px 14px; }
    .contact-entity { padding: 20px 0; }
    .contact-entity .entity-name { font-size: 16px; margin-bottom: 14px; }
    .footer-row { flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; }
    .footer-links { gap: 16px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-video, .fx-orb, .hero-scroll-line::after { animation: none !important; }
}

/* ============================================================
   🚨 모바일 SVG 아이콘 사이즈 폭발 방지 — 모든 화면 사이즈 적용
   ============================================================ */
.pillar-icon svg, .way-icon svg, .biz-card-icon svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* ============================================================
   MOBILE CLEANUP v2 — 글자 겹침 / 그리드 / 패딩 일괄 정리
   ============================================================ */
@media (max-width: 768px) {
    /* Hero */
    .hero-wrap { padding: 130px var(--pad-x) 0; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 2.5px; margin-bottom: 14px; }
    .hero-headline { font-size: clamp(20px, 4.5vw, 28px); margin-bottom: 16px; letter-spacing: -0.6px; line-height: 1.2; }
    .hero-sub { font-size: 12.5px; margin-bottom: 26px; line-height: 1.65; }
    .hero-scroll { font-size: 11px; letter-spacing: 2px; }
    .hero-scroll-line { width: 36px; }

    /* Hero tiles — 2컬럼 */
    .hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .tile { min-height: 50px; padding: 9px 14px; gap: 1px; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .tile:nth-child(2n) { border-right: none; }
    .tile-num { font-size: 10px; }
    .tile-label { font-size: 13.5px; letter-spacing: -0.2px; }

    /* 서비스 헤더 */
    .services-strip { padding: 60px 0 40px; }
    .strip-head { margin-bottom: 28px; }
    .strip-lead { font-size: 13px; flex-wrap: wrap; gap: 4px 8px; }
    .strip-count { font-size: 11px; }

    /* 배너 그리드: 1컬럼 */
    .banner-grid { grid-template-columns: 1fr !important; gap: 14px; }
    .banner-card { min-height: auto; }
    .banner-art { aspect-ratio: 16 / 9; }
    .banner-name { font-size: 18px; line-height: 1.25; letter-spacing: -0.3px; }
    .banner-desc { font-size: 13px; line-height: 1.55; padding-right: 44px; }
    .banner-num { font-size: 11px; }
    .banner-cat { font-size: 10px; }

    /* Display title 사이즈 안전 */
    .display-title { font-size: clamp(28px, 6.5vw, 44px); letter-spacing: -1px; }
    .display-title.sm { font-size: clamp(24px, 5.5vw, 36px); letter-spacing: -0.6px; line-height: 1.25; }
    .section-eyebrow, .section-eyebrow.accent-orange { font-size: 11px; letter-spacing: 2px; }

    /* Story 페이지 */
    .story-hero { padding: 90px 0 72px; }
    .story-eyebrow { font-size: 10px; padding: 5px 11px; letter-spacing: 2px; margin-bottom: 22px; }
    .story-headline { font-size: clamp(28px, 7vw, 42px); line-height: 1.2; margin-bottom: 18px; }
    .story-sub { font-size: 14px; margin-bottom: 28px; line-height: 1.7; }
    .story-cta { gap: 10px; }
    .btn-orange, .btn-outline { padding: 12px 22px; font-size: 13px; }
    .story-scroll-hint { margin-top: 36px; }

    /* Story 카드 섹션 padding */
    .story-pillars, .story-ways, .story-team { padding: 64px 0; }
    .story-head { margin-bottom: 36px; }
    .story-head-desc { font-size: 14px; line-height: 1.65; }

    /* Pillars / Ways / Number / Team — 모든 카드 패딩 */
    .pillar-card, .way-card, .number-card { padding: 24px 22px; }
    .pillar-title, .way-card h3 { font-size: 17px; }
    .pillar-desc, .way-card p { font-size: 13.5px; }
    .pillar-tag, .way-num, .num-eyebrow { font-size: 10px; }
    .num-big { font-size: 36px; }
    .num-unit { font-size: 14px; }
    /* 🚨 SVG 아이콘 사이즈 강제 — 모바일에서 화면 너비 폭발 방지 */
    .pillar-icon { width: 44px !important; height: 44px !important; margin-bottom: 16px; }
    .pillar-icon svg { width: 22px !important; height: 22px !important; }
    .way-icon { width: 36px !important; height: 36px !important; margin-bottom: 14px; }
    .way-icon svg { width: 100% !important; height: 100% !important; max-width: 36px; max-height: 36px; }

    /* Team */
    .team-card { padding: 26px 22px; }
    .team-quote { font-size: 14px; line-height: 1.7; }
    .team-name { font-size: 13px; }
    .team-role { font-size: 11px; }
    .team-avatar { width: 36px; height: 36px; font-size: 13px; }
    .team-cta-text { font-size: 14px; }

    /* Business */
    .business { padding: 64px 0; }
    .biz-head { margin-bottom: 32px; }
    .biz-head-desc { font-size: 13.5px; }
    .biz-card-content { min-height: auto; padding: 28px 22px; }
    .biz-card-num { font-size: 32px; top: 22px; right: 22px; }
    .biz-card-icon { width: 38px !important; height: 38px !important; margin-bottom: 16px; }
    .biz-card-icon svg { width: 20px !important; height: 20px !important; }
    .biz-card-tag { font-size: 10px; }
    .biz-card-title { font-size: 19px; }
    .biz-card-desc { font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
    .biz-link { font-size: 13px; }

    /* Shop */
    .shop-feature { padding: 64px 0; }
    .shop-head { margin-bottom: 36px; }
    .shop-head-desc { font-size: 13.5px; }
    .shop-card-art { aspect-ratio: 16 / 9; }
    .shop-card-body { padding: 20px 22px 24px; gap: 4px; }
    .shop-card-tag { font-size: 10px; letter-spacing: 2px; }
    .shop-card-name { font-size: 17px; letter-spacing: -0.2px; line-height: 1.3; }
    .shop-card-desc { font-size: 13px; line-height: 1.55; margin: 4px 0 10px; }
    .shop-card-cta { font-size: 12.5px; }

    /* Contact */
    .contact { padding: 64px 0; }
    .contact-head { margin-bottom: 32px; }
    .contact-head-desc { font-size: 13.5px; }
    .company-card { padding: 18px 20px; }
    .company-name { font-size: 16px; line-height: 1.3; word-break: keep-all; }
    .company-name.sm { font-size: 15px; }
    .company-sub { font-size: 12px; }
    .company-info { grid-template-columns: 1fr; gap: 8px 14px; }
    .company-info dt { font-size: 10px; }
    .company-info dd { font-size: 12.5px; }
    .company-badge, .company-flag { font-size: 9px; letter-spacing: 1px; padding: 2px 7px; }
    .tree-connector { width: 50%; height: 18px; }
    .contact-form-wrap { padding: 22px 20px; }
    .form-title { font-size: 17px; }
    .form-sub { font-size: 12px; }
    .form-field span { font-size: 10px; }
    .form-field input, .form-field textarea { font-size: 13px; padding: 9px 11px; }
    .contact-note-small { font-size: 11px; margin-top: 22px; }

    /* Culture (VALUES) */
    .culture { padding: 56px 0; }
    .culture-card h3 { font-size: 17px; }
    .culture-card p { font-size: 13.5px; line-height: 1.6; }

    /* Lang switcher 모바일 — header CTA 와 충돌 방지 */
    .lang-wrap { padding: 4px 9px 4px 10px; }
    .lang-globe-ico { width: 12px; height: 12px; }
    .lang-select { font-size: 11px; padding-right: 16px; background-size: 8px 6px; }

    /* Header CTA */
    .header-cta { display: none; }

    /* Footer */
    .footer-copy { font-size: 12px; }
    .footer-links a { font-size: 12px; }
}

/* 매우 작은 화면 — 추가 안전망 */
@media (max-width: 380px) {
    .hero-headline { font-size: 18px; }
    .hero-sub { font-size: 12px; }
    .tile-label { font-size: 12px; }
    .display-title.sm { font-size: 22px; }
    .banner-name { font-size: 16px; }
    .story-headline { font-size: 24px; }
}

/* ============================================================
   STORY · BUSINESS · SHOP · CONTACT — 통일 다크 미니멀 (v2)
   Linear/Vercel 톤 · 글래스 카드 · 오렌지 액센트 최소화
   ============================================================ */
:root {
    --orange: #ff7a18;
    --orange-strong: #ff5a18;
    --orange-soft: rgba(255,122,24,0.10);
    --bg-dark: #0a0a0b;
    --bg-dark-2: #111114;
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.10);
    --card-border-hover: rgba(255,255,255,0.22);
    --text-1: #fff;
    --text-2: rgba(255,255,255,0.78);
    --text-3: rgba(255,255,255,0.56);
}

/* === HERO === */
.story-hero {
    position: relative;
    padding: 120px 0 100px;
    background: var(--bg-dark);
    color: var(--text-1);
    overflow: hidden;
    isolation: isolate;
}
.story-hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.story-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
.story-orb.orb-a {
    width: 520px; height: 520px;
    top: -120px; left: -160px;
    background: radial-gradient(circle, rgba(255,122,24,0.35) 0%, transparent 70%);
    opacity: 0.5;
    animation: storyOrb 18s ease-in-out infinite;
}
.story-orb.orb-b {
    width: 460px; height: 460px;
    bottom: -180px; right: -160px;
    background: radial-gradient(circle, rgba(255,56,24,0.22) 0%, transparent 70%);
    opacity: 0.3;
    animation: storyOrb 22s ease-in-out infinite reverse;
}
.story-orb.orb-c { display: none; }
@keyframes storyOrb {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(50px,40px) scale(1.15); }
}
.story-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.story-hero-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}
.story-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 26px;
    text-transform: uppercase;
}
.story-headline {
    font-size: clamp(2rem, 5.4vw, 4rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}
.hl-orange {
    background: linear-gradient(180deg, #ff7a18, #ff3818);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.story-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.75;
    color: var(--text-2);
    max-width: 680px;
    margin: 0 auto 40px;
}
.story-cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-orange, .btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: all .25s cubic-bezier(0.22,1,0.36,1);
    letter-spacing: .3px;
    border: 1.5px solid transparent;
}
.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255,122,24,0.30);
}
.btn-orange:hover {
    background: var(--orange-strong);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,122,24,0.42);
}
.btn-outline {
    background: transparent;
    color: var(--text-1);
    border-color: rgba(255,255,255,0.22);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}
.story-scroll-hint {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}
.story-scroll-hint span {
    display: block;
    width: 1px; height: 56px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
    background-size: 100% 200%;
    animation: storyScroll 2.2s ease-in-out infinite;
}
@keyframes storyScroll {
    0%   { background-position: 0% 100%; }
    100% { background-position: 0% -100%; }
}

/* === COMMON SECTION HEAD (다크 통일) === */
.story-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-eyebrow.accent-orange {
    color: var(--text-3);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.display-title.light, .story-head .display-title { color: var(--text-1); }
.story-head-desc {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-2);
}

/* === PILLARS === */
.story-pillars {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-1);
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.pillar-card {
    padding: 32px 26px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    transition: all .3s cubic-bezier(0.22,1,0.36,1);
    position: relative;
}
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    background: rgba(255,255,255,0.04);
}
.pillar-icon {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,122,24,0.10);
    color: var(--orange);
    border-radius: 10px;
    margin-bottom: 22px;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-3);
    margin-bottom: 10px;
}
.pillar-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.pillar-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-2);
}

/* === NUMBERS === */
.story-numbers {
    padding: 100px 0;
    background: var(--bg-dark-2);
    color: var(--text-1);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.number-card {
    padding: 32px 26px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    transition: all .3s ease;
}
.number-card:hover {
    border-color: var(--card-border-hover);
    background: rgba(255,255,255,0.04);
}
.num-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-3);
    margin-bottom: 16px;
}
.num-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}
.num-big {
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--orange);
}
.num-unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-2);
}
.num-label {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.5;
}

/* === WAYS === */
.story-ways {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-1);
}
.way-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.way-card {
    padding: 32px 26px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    transition: all .3s ease;
}
.way-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    background: rgba(255,255,255,0.04);
}
.way-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}
.way-icon {
    width: 36px; height: 36px;
    color: var(--orange);
    margin-bottom: 18px;
}
.way-icon svg { width: 100%; height: 100%; }
.way-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.way-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-2);
}

/* === TEAM === */
.story-team {
    padding: 120px 0;
    background: var(--bg-dark-2);
    color: var(--text-1);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 64px;
}
.team-card {
    padding: 34px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    transition: all .3s ease;
}
.team-card:hover {
    border-color: var(--card-border-hover);
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
}
.team-quote {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-1);
    margin: 0 0 24px;
}
.team-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.team-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,122,24,0.15);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid rgba(255,122,24,0.25);
}
.team-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0;
}
.team-role {
    font-size: 12px;
    color: var(--text-3);
    margin: 2px 0 0;
}
.team-cta {
    text-align: center;
    padding: 28px 0 0;
}
.team-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

/* === Story 반응형 === */
@media (max-width: 1024px) {
    .pillar-grid, .way-grid, .number-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .story-hero { padding: 96px 0 80px; }
    .story-pillars, .story-numbers, .story-ways, .story-team { padding: 72px 0; }
    .pillar-grid, .way-grid, .number-grid, .team-grid { grid-template-columns: 1fr; gap: 16px; }
    .story-head { margin-bottom: 36px; }
    .pillar-card, .way-card, .number-card { padding: 28px 22px; }
    .team-card { padding: 30px 24px; }
    .story-cta { width: 100%; flex-direction: column; align-items: stretch; }
    .btn-orange, .btn-outline { justify-content: center; }
    .num-big { font-size: 48px; }
}

/* ============================================================
   BUSINESS — 다크 미니멀 3카드 통일
   ============================================================ */
.business {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-1);
}
.biz-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.biz-head .section-eyebrow { color: var(--text-3); }
.biz-head .display-title { color: var(--text-1); }
.biz-head-desc {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-2);
}
.biz-head-desc span { display: block; }
.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.biz-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all .3s cubic-bezier(0.22,1,0.36,1);
}
.biz-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,122,24,0.35);
    background: rgba(255,255,255,0.06);
}
.biz-card-bg { display: none; }
.biz-card-content {
    position: relative;
    padding: 36px 30px 30px;
    color: var(--text-1);
    min-height: 360px;
    display: flex;
    flex-direction: column;
}
.biz-card-num {
    position: absolute;
    top: 26px; right: 30px;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-3);
    opacity: 0.4;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
}
.biz-card-icon {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,122,24,0.10);
    border: 1px solid rgba(255,122,24,0.22);
    color: var(--orange);
    border-radius: 10px;
    margin-bottom: 22px;
}
.biz-card-icon svg { width: 22px; height: 22px; }
.biz-card-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #ff7a18;
    margin-bottom: 12px;
}
.biz-card-title {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.biz-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    margin-bottom: 24px;
    flex: 1;
}
.biz-card-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
}
.biz-link {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color .2s ease;
}
.biz-link:hover { color: var(--orange); }

@media (max-width: 1024px) {
    .biz-grid { grid-template-columns: 1fr; gap: 18px; }
    .biz-card-content { min-height: auto; padding: 32px 26px; }
}
@media (max-width: 640px) {
    .business { padding: 72px 0; }
    .biz-head { margin-bottom: 32px; }
    .biz-card-title { font-size: 20px; }
}

/* ============================================================
   OFFICIAL SHOP — 다크 미니멀 듀얼 카드
   ============================================================ */
.shop-feature {
    padding: 120px 0;
    background: var(--bg-dark-2);
    color: var(--text-1);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shop-fx { display: none; }
.shop-orb { display: none; }
@keyframes shopOrb {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(40px,30px) scale(1.15); }
}
.shop-container { position: relative; z-index: 1; }
.shop-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.shop-head .section-eyebrow { color: var(--text-3); }
.shop-head .display-title.light { color: var(--text-1); }
.shop-head .display-title em.hl-orange { color: var(--orange); font-style: normal; background: none; -webkit-text-fill-color: var(--orange); }
.shop-head-desc {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-2);
}
.shop-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-1);
    transition: all .3s cubic-bezier(0.22,1,0.36,1);
}
.shop-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    background: rgba(255,255,255,0.04);
}
.shop-card-art {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--card-border);
    display: flex; align-items: center; justify-content: center;
}
.shop-card-sub .shop-card-art {
    background: rgba(255,255,255,0.02);
}
.shop-card-art svg { width: 100%; height: 100%; display: block; }
.shop-card-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.shop-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-3);
    margin-bottom: 4px;
}
.shop-card-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.3px;
    margin: 0;
}
.shop-card-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-2);
    margin: 4px 0 12px;
}
.shop-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .3px;
}

@media (max-width: 900px) {
    .shop-cards { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
    .shop-feature { padding: 72px 0; }
    .shop-card-body { padding: 22px 22px 26px; }
    .shop-card-name { font-size: 20px; }
}

/* ============================================================
   CONTACT — 다크 미니멀 (모회사 + 자회사 + 문의폼)
   ============================================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-1);
}
.contact-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.contact-head .section-eyebrow { color: var(--text-3); }
.contact-head .display-title { color: var(--text-1); }
.contact-head-desc {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 22px;
    align-items: start;
}
.company-tree {
    display: flex;
    flex-direction: column;
}
.company-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 24px 26px;
    border: 1px solid var(--card-border);
    transition: all .25s ease;
}
.company-card:hover {
    border-color: var(--card-border-hover);
    background: rgba(255,255,255,0.04);
}
.company-parent {
    background: rgba(255,122,24,0.04);
    border-color: rgba(255,122,24,0.22);
}
.company-parent::before { display: none; }
.company-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.company-badge {
    display: inline-block;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
}
.company-badge.parent {
    background: var(--orange);
    color: #fff;
}
.company-badge.sub {
    background: rgba(255,255,255,0.06);
    color: var(--text-2);
    border: 1px solid rgba(255,255,255,0.12);
}
.company-flag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 3px;
}
.company-flag.cn {
    background: rgba(222,41,16,0.18);
    color: #ff9590;
    border: 1px solid rgba(222,41,16,0.3);
}
.company-flag.kr {
    background: rgba(255,255,255,0.06);
    color: var(--text-2);
    border: 1px solid rgba(255,255,255,0.12);
}
.company-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0 0 4px;
    color: var(--text-1);
}
.company-name.sm { font-size: 16px; }
.company-en {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    margin-left: 4px;
    letter-spacing: 1px;
}
.company-sub {
    font-size: 12.5px;
    color: var(--text-3);
    margin: 0 0 16px;
}
.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin: 0;
}
.company-info.compact { gap: 8px 14px; }
.company-info > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.company-info dt {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}
.company-info dd {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    margin: 0;
    letter-spacing: -0.1px;
}

.tree-connector {
    width: 60%;
    margin: 14px auto;
    height: 24px;
    opacity: 0.55;
}
.tree-connector svg { width: 100%; height: 100%; }
.subsidiaries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* 문의폼 */
.contact-form-wrap {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 28px 26px;
    border: 1px solid var(--card-border);
    position: sticky;
    top: 90px;
}
.form-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}
.form-sub {
    font-size: 12.5px;
    color: var(--text-3);
    margin: 0 0 20px;
}
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-field span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-3);
    text-transform: uppercase;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    background: rgba(0,0,0,0.2);
    color: var(--text-1);
    transition: all .2s ease;
    resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(0,0,0,0.35);
    box-shadow: 0 0 0 3px rgba(255,122,24,0.10);
}
.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.contact-note-small {
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-3);
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; gap: 22px; }
    .contact-form-wrap { position: static; }
}
@media (max-width: 640px) {
    .contact { padding: 64px 0; }
    .subsidiaries { grid-template-columns: 1fr; }
    .company-info { grid-template-columns: 1fr; }
    .company-card { padding: 20px 22px; }
}
