:root {
    color-scheme: light;
    --blue-50: #e8f3ff;
    --blue-100: #c9e2ff;
    --blue-500: #3182f6;
    --blue-600: #1b64da;
    --blue-700: #1957c2;
    --grey-50: #f9fafb;
    --grey-100: #f2f4f6;
    --grey-150: #ebeef1;
    --grey-200: #e5e8eb;
    --grey-300: #d1d6db;
    --grey-400: #b0b8c1;
    --grey-500: #8b95a1;
    --grey-600: #6b7684;
    --grey-700: #4e5968;
    --grey-800: #333d4b;
    --grey-900: #191f28;
    --red-500: #f04452;
    --green-500: #00a05c;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: var(--grey-100);
    --text: var(--grey-900);
    --text-2: var(--grey-700);
    --muted: var(--grey-600);
    --muted-2: var(--grey-500);
    --line: var(--grey-200);
    --line-strong: var(--grey-300);
    --brand: var(--blue-500);
    --brand-press: var(--blue-600);
    --brand-weak: var(--blue-50);
    --radius-m: 12px;
    --radius-l: 14px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-4xl: 32px;
    --shadow-1: 0 1px 2px rgba(2, 9, 40, 0.04), 0 1px 1px rgba(2, 9, 40, 0.04);
    --shadow-2: 0 4px 12px rgba(2, 9, 40, 0.06), 0 1px 2px rgba(2, 9, 40, 0.04);
    --shadow-3: 0 12px 32px rgba(2, 9, 40, 0.10), 0 2px 6px rgba(2, 9, 40, 0.06);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --dur-fast: 120ms;
    --dur-base: 200ms;
    --dur-slow: 320ms;
    --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
}

body.studio-lock { overflow: hidden; }

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

img, svg { vertical-align: middle; }

h1, h2, h3 { letter-spacing: -0.02em; }

.icon { width: 20px; height: 20px; flex: none; }
.icon--sm { width: 16px; height: 16px; }

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

.skip-link {
    position: fixed;
    top: -52px;
    left: 16px;
    z-index: 300;
    padding: 12px 20px;
    background: var(--brand);
    color: #fff;
    border-radius: 0 0 var(--radius-l) var(--radius-l);
    font-weight: 700;
    transition: top var(--dur-base) var(--ease);
}

.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: var(--radius-l);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.btn--small { min-height: 40px; padding: 9px 16px; font-size: 13.5px; border-radius: var(--radius-m); }

.btn--primary { background: var(--brand); color: #fff; font-weight: 700; }
.btn--primary:hover { background: var(--brand-press); }
.btn--primary:active { background: var(--blue-700); }

.btn--line { background: var(--grey-100); color: var(--text); }
.btn--line:hover { background: var(--grey-150); }
.btn--line:active { background: var(--grey-200); }

.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand-weak); }

.btn--invert { background: #fff; color: var(--brand-press); font-weight: 700; }
.btn--invert:hover { background: var(--blue-50); }

.site-head {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-head__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 64px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }

.brand__mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-m);
    background: var(--brand);
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand__logo {
    display: block;
    width: 36px;
    height: 36px;
    flex: none;
    border-radius: var(--radius-m);
    object-fit: cover;
    background: #05070d;
}

.brand__name { font-size: 16.5px; letter-spacing: -0.02em; }
.brand__name em { font-style: normal; color: var(--muted); font-weight: 600; }

.gnb { display: flex; align-items: center; gap: 2px; margin-left: 6px; flex: 1; }

.gnb__link {
    padding: 9px 13px;
    border-radius: var(--radius-m);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.gnb__link:hover { color: var(--text); background: var(--grey-100); }
.gnb__link.is-active { color: var(--brand-press); background: var(--brand-weak); }

.site-head__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.site-head__actions .btn--primary { border-radius: 999px; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: var(--radius-m);
    background: var(--grey-100);
    cursor: pointer;
    position: relative;
}

.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--grey-800);
    transform: translateX(-50%);
    transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}

.nav-toggle__bar { top: 50%; margin-top: -1px; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

.site-main { display: block; }

.site-main > section { width: min(1200px, calc(100% - 48px)); margin-left: auto; margin-right: auto; }

.eyebrow {
    margin: 0 0 12px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: var(--brand-press);
}

.hero { padding: 72px 0 24px; }

.hero__inner { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: 48px; align-items: center; }

.hero__copy h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.22;
    font-weight: 800;
}

.hero__copy h1 strong { color: var(--brand); font-weight: 800; }

.hero__lead { margin: 0 0 28px; max-width: 33em; color: var(--text-2); font-size: 17px; line-height: 1.6; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.hero__actions .btn { border-radius: 999px; min-height: 52px; padding: 14px 26px; }

.hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 10px 40px; margin: 0; justify-content: start; }
.hero__stats div { display: flex; flex-direction: column-reverse; }
.hero__stats dt { color: var(--muted); font-size: 13px; font-weight: 500; }
.hero__stats dd { margin: 0 0 2px; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.hero__stats dd span { font-size: 14px; font-weight: 700; color: var(--muted); margin-left: 2px; }

.hero__art { position: relative; min-height: 420px; }

.mock {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-2xl);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-3);
}

.mock--pc { inset: 6% 18% auto 0; height: 62%; width: 74%; }
.mock--tablet { right: 0; top: 0; width: 34%; height: 46%; transform: rotate(2deg); }
.mock--phone { right: 7%; bottom: 0; width: 26%; height: 48%; border-radius: var(--radius-3xl); transform: rotate(-3deg); }

.mock__bar { display: flex; gap: 5px; }
.mock__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-200); }
.mock__bar i:first-child { background: var(--brand); }

.mock__notch { width: 38%; height: 6px; border-radius: 999px; background: var(--grey-200); margin: 0 auto; }

.mock__hero { flex: 1.2; border-radius: var(--radius-m); background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); opacity: 0.92; }
.mock__hero--alt { background: var(--blue-50); border: 1px solid var(--blue-100); opacity: 1; }
.mock__hero--accent { background: linear-gradient(160deg, var(--blue-100), var(--blue-50)); opacity: 1; }

.mock__row { display: flex; gap: 8px; flex: 0.7; }
.mock__row i { flex: 1; border-radius: 10px; background: var(--grey-100); }
.mock__row--half { flex: 0.5; }
.mock__row--stack { flex-direction: column; flex: 1; }
.mock__pill { height: 14px; width: 62%; border-radius: 999px; background: var(--brand); }

.section { padding: 72px 0 8px; }
.section--flush { padding-top: 24px; }

.section--tint { position: relative; }
.section--tint::before {
    content: "";
    position: absolute;
    inset: 28px -100vw 0;
    background: var(--grey-50);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    pointer-events: none;
}
.section--tint > * { position: relative; }

.section__head { max-width: 720px; margin-bottom: 36px; }
.section__head h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); line-height: 1.3; font-weight: 800; }
.section__lead { margin: 0; color: var(--text-2); font-size: 16px; }
.section__more { margin: 34px 0 0; text-align: center; }

.cat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.cat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-2xl);
    transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), background var(--dur-fast) var(--ease);
}

.cat-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.cat-card:active { background: var(--grey-50); }

.cat-card__icon {
    flex: none;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-xl);
    background: var(--brand-weak);
    color: var(--brand-press);
}

.cat-card__body { flex: 1; min-width: 0; }
.cat-card__name { display: flex; align-items: baseline; gap: 9px; font-size: 18.5px; font-weight: 800; }
.cat-card__name em { font-style: normal; font-size: 12.5px; color: var(--brand-press); font-weight: 700; font-variant-numeric: tabular-nums; }
.cat-card__desc { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; }

.cat-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.cat-card__chips span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    background: var(--grey-100);
    padding: 4px 10px;
    border-radius: 999px;
}

.cat-card__arrow { color: var(--grey-400); transition: transform var(--dur-base) var(--ease), color var(--dur-base) var(--ease); }
.cat-card:hover .cat-card__arrow { transform: translateX(4px); color: var(--brand); }

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

.ex-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.ex-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }

.ex-card__thumb { display: block; padding: 16px 16px 0; }

.ex-thumb {
    display: flex;
    flex-direction: column;
    height: 168px;
    border-radius: var(--radius-l) var(--radius-l) 0 0;
    background: var(--t-bg, #f4f4f4);
    border: 1px solid var(--t-line, rgba(0, 0, 0, 0.08));
    border-bottom: 0;
    overflow: hidden;
}

.ex-thumb__bar { display: flex; gap: 4px; padding: 9px 10px; background: var(--t-surface, #fff); border-bottom: 1px solid var(--t-line, rgba(0, 0, 0, 0.06)); }
.ex-thumb__bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--t-line, rgba(0, 0, 0, 0.14)); }
.ex-thumb__bar i:first-child { background: var(--t-primary, #999); }

.ex-thumb__shot {
    display: block;
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: top;
    transition: transform var(--dur-slow) var(--ease);
}

.ex-card:hover .ex-thumb__shot { transform: scale(1.02); }

.ex-thumb__body { flex: 1; display: flex; flex-direction: column; gap: 7px; padding: 10px; }

.ex-thumb__block { display: block; border-radius: 6px; background: var(--t-surface, #fff); border: 1px solid var(--t-line, rgba(0, 0, 0, 0.05)); flex: 1; }
.ex-thumb__block--hero { flex: 2.4; background: linear-gradient(130deg, var(--t-primary, #999), var(--t-accent, #ccc)); border: 0; opacity: 0.92; }
.ex-thumb__block--accent { background: var(--t-accent, #ccc); border: 0; opacity: 0.8; }

.ex-thumb__row { display: flex; gap: 7px; flex: 1; }
.ex-thumb__row--wide { flex: 0.8; }
.ex-thumb__row .ex-thumb__block { flex: 1; }

[data-thumb="app"] .ex-thumb__body, [data-thumb="crawler"] .ex-thumb__body { flex-direction: row; }
[data-thumb="app"] .ex-thumb__block--hero, [data-thumb="crawler"] .ex-thumb__block--hero { flex: 0.55; opacity: 0.6; }
[data-thumb="app"] .ex-thumb__row, [data-thumb="crawler"] .ex-thumb__row { flex-direction: column; flex: 1.6; }
[data-thumb="landing"] .ex-thumb__block--hero { flex: 3.2; }

.ex-card__body { display: flex; flex-direction: column; gap: 9px; padding: 16px 20px 20px; }

.ex-card__crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; font-size: 12px; font-weight: 500; color: var(--muted); }
.ex-card__crumbs span:not(:last-child):not(.ex-card__badge) { padding-right: 8px; border-right: 1px solid var(--line); }

.ex-card__badge {
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--brand-weak);
    color: var(--brand-press);
    font-weight: 700;
    font-size: 11.5px;
}

.ex-card__title { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.ex-card__title a:hover { color: var(--brand-press); }

.ex-card__summary {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.9em;
}

.ex-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; font-size: 12.5px; color: var(--brand-press); font-weight: 600; }

.ex-card__meta { display: flex; gap: 12px; margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }
.ex-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.ex-card__meta span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--grey-400); }

.ex-card__actions { display: flex; gap: 8px; margin: 8px 0 0; }
.ex-card__actions .btn { flex: 1; }
.ex-card__actions .btn--ghost { background: var(--brand-weak); color: var(--brand-press); font-weight: 700; }
.ex-card__actions .btn--ghost:hover { background: var(--blue-100); }

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

.finder__group { padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-2xl); }

.finder__name { display: flex; align-items: center; gap: 9px; margin: 0 0 14px; font-weight: 800; font-size: 15.5px; }
.finder__icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--brand-weak); color: var(--brand-press); }

.finder__links { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; }
.finder__links a {
    padding: 7px 13px;
    background: var(--grey-100);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.finder__links a:hover { color: var(--brand-press); background: var(--brand-weak); }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }

.steps li { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-2xl); }
.steps__no { display: block; font-size: 13px; font-weight: 800; color: var(--brand); margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.steps strong { display: block; font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }

.why-card { padding: 26px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-2xl); }
.why-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-l); background: var(--brand-weak); color: var(--brand-press); margin-bottom: 16px; }
.why-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.why-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.cta-band { padding: 76px 0; }

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px 48px;
    border-radius: var(--radius-4xl);
    background: var(--brand);
    color: #fff;
}

.cta-band__inner h2 { margin: 0 0 8px; font-size: clamp(21px, 2.6vw, 28px); line-height: 1.3; font-weight: 800; letter-spacing: -0.02em; }
.cta-band__inner p { margin: 0; font-size: 15px; opacity: 0.92; }
.cta-band .btn { flex: none; border-radius: 999px; min-height: 52px; padding: 14px 26px; }

.page-head { padding: 52px 0 8px; }
.page-head h1 { margin: 0 0 12px; font-size: clamp(28px, 3.8vw, 40px); font-weight: 800; }
.page-head__lead { margin: 0; max-width: 46em; color: var(--text-2); font-size: 16px; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: var(--muted); }
.crumbs a:hover { color: var(--brand-press); }
.crumbs > *:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--grey-300); }
.crumbs span { color: var(--text); font-weight: 600; }

.sub-nav, .tag-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 22px 0 0; }

.tag-filter__label { display: inline-flex; align-items: center; gap: 6px; margin-right: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 16px;
    background: var(--grey-100);
    border: 0;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.chip em { font-style: normal; font-size: 11.5px; opacity: 0.72; font-variant-numeric: tabular-nums; }
.chip:hover { background: var(--grey-150); color: var(--text); }
.chip.is-active { background: var(--grey-900); color: #fff; }

.chip--soft { min-height: 34px; padding: 6px 13px; font-size: 12.5px; }
.chip--soft.is-active { background: var(--grey-900); color: #fff; }

.sub-info { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding-top: 26px; }

.sub-info__card { padding: 22px 26px; background: var(--grey-50); border: 1px solid var(--line); border-radius: var(--radius-2xl); }
.sub-info__card h2 { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; font-size: 15px; font-weight: 700; color: var(--brand-press); }
.sub-info__card ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
.sub-info__card li { position: relative; padding-left: 15px; font-size: 13.5px; color: var(--text); }
.sub-info__card li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

.result-count { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.result-count strong { color: var(--brand-press); font-variant-numeric: tabular-nums; }

.empty { padding: 90px 0; text-align: center; }
.empty--page { padding: 130px 0; }
.empty__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: var(--radius-3xl); background: var(--grey-100); color: var(--grey-500); margin: 0 0 22px; }
.empty h1, .empty h2 { margin: 0 0 10px; font-size: 23px; font-weight: 800; }
.empty p { margin: 0 auto; max-width: 34em; color: var(--muted); }
.empty__actions { display: flex; justify-content: center; gap: 10px; margin-top: 26px !important; }

.page-head--detail { padding-bottom: 0; }

.detail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }

.detail-head__badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px; }

.badge {
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--grey-100);
    color: var(--text-2);
    font-size: 12.5px;
    font-weight: 600;
}

.badge--accent { background: var(--brand-weak); color: var(--brand-press); font-weight: 700; }

.detail-head__summary { margin: 0; max-width: 40em; color: var(--text-2); font-size: 16.5px; }
.detail-head__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.detail-head__actions { display: flex; flex-direction: column; gap: 9px; flex: none; }
.detail-head__actions .btn--primary { border-radius: 999px; }

.studio { padding-top: 32px; }

.studio__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border-bottom: 0;
}

.studio__devices {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--grey-100);
    border-radius: var(--radius-l);
}

.studio__device {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 15px;
    border: 0;
    border-radius: var(--radius-m);
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.studio__device em { font-style: normal; font-size: 11px; opacity: 0.65; font-variant-numeric: tabular-nums; }
.studio__device:hover { color: var(--text); }
.studio__device.is-active { background: #fff; color: var(--text); box-shadow: var(--shadow-1); font-weight: 700; }

.studio__tools { display: flex; align-items: center; gap: 12px; }
.studio__hint { margin: 0; font-size: 12.5px; color: var(--muted); }

.studio__fullscreen {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 15px;
    border: 0;
    border-radius: 999px;
    background: var(--grey-900);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease);
}

.studio__fullscreen:hover { background: var(--grey-800); }

.studio__stage {
    display: flex;
    justify-content: center;
    padding: 24px;
    background: var(--grey-100);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: auto;
}

.studio__frame {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-3);
    border: 1px solid var(--line);
    transition: width var(--dur-slow) var(--ease);
}

.studio__stage.is-tablet .studio__frame { width: 768px; }
.studio__stage.is-mobile .studio__frame { width: 390px; }

.studio__frame iframe { display: block; width: 100%; height: 680px; border: 0; background: #fff; }

.studio.is-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 1100;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.studio.is-fullscreen .studio__bar { border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.studio.is-fullscreen .studio__stage { flex: 1; border: 0; border-radius: 0; padding: 20px; min-height: 0; }
.studio.is-fullscreen .studio__frame { height: 100%; display: flex; flex-direction: column; }
.studio.is-fullscreen .studio__frame iframe { height: 100%; flex: 1; }
.studio.is-fullscreen .studio__fullscreen { display: none; }

.studio__close {
    display: none;
    position: absolute;
    top: 10px;
    right: 16px;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-2);
    cursor: pointer;
}

.studio__close:hover { background: var(--grey-100); }
.studio.is-fullscreen .studio__close { display: inline-flex; }

.detail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding-top: 36px; }

.detail-card { padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-2xl); }
.detail-card h2 { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; font-size: 14.5px; font-weight: 700; color: var(--brand-press); }
.detail-card__note { margin: 0 0 10px; font-size: 12.5px; color: var(--muted); }
.detail-card__text { margin: 0 0 10px; font-size: 13.5px; color: var(--text); line-height: 1.65; }
.detail-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.detail-card__chips li { padding: 5px 11px; background: var(--grey-100); border-radius: 999px; font-size: 12.5px; font-weight: 500; color: var(--text-2); }
.detail-card__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.detail-card__list li { position: relative; padding-left: 14px; font-size: 13.5px; }
.detail-card__list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

.detail-desc { padding-top: 44px; }
.detail-desc h2 { margin: 0 0 12px; font-size: 21px; font-weight: 800; }
.detail-desc p { margin: 0; max-width: 52em; color: var(--text-2); font-size: 15.5px; line-height: 1.75; }

.site-foot { margin-top: 72px; border-top: 1px solid var(--line); background: var(--grey-50); }

.site-foot__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
    padding: 44px 0 28px;
}

.site-foot__copy { margin: 14px 0 0; color: var(--muted); font-size: 13px; max-width: 30em; line-height: 1.7; }

.site-foot__nav { display: flex; flex-direction: column; gap: 9px; }
.site-foot__nav a { color: var(--text-2); font-size: 14px; }
.site-foot__nav a:hover { color: var(--brand-press); }

.site-foot__cta p { margin: 0 0 12px; font-weight: 700; }
.site-foot__cta .btn { border-radius: 999px; }

.site-foot__fine {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 12.5px;
}

@media (max-width: 1080px) {
    .ex-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .finder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-grid, .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__art { display: none; }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .detail-head { flex-direction: column; align-items: flex-start; }
    .detail-head__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 860px) {
    .gnb {
        position: fixed;
        inset: 64px 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 12px 20px 18px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-2);
        display: none;
    }
    .gnb.is-open { display: flex; }
    .gnb__link { font-size: 16px; padding: 13px 14px; }
    .nav-toggle { display: block; }
    .cat-grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; padding: 34px 30px; }
    .site-foot__inner { grid-template-columns: 1fr; gap: 26px; }
    .sub-info { grid-template-columns: 1fr; }
    .sub-info__card ul { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .site-head__inner { width: calc(100% - 32px); }
    .site-main > section, .site-foot__inner, .site-foot__fine { width: calc(100% - 32px); }
    .hero { padding-top: 44px; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
    .ex-grid { grid-template-columns: 1fr; }
    .finder { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .why-grid, .detail-grid { grid-template-columns: 1fr; }
    .studio__bar { flex-direction: column; align-items: stretch; }
    .studio__tools { justify-content: space-between; }
    .studio__hint { display: none; }
    .studio__devices { justify-content: stretch; }
    .studio__device { flex: 1; justify-content: center; }
    .studio__stage { padding: 12px; }
    .studio__frame iframe { height: 560px; }
    .ex-card__actions { flex-direction: column; }
    .brand__name em { display: none; }
}

.detail-guide {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 10px;
}

.detail-guide__head h2 { margin: 0 0 8px; font-size: 22px; display: flex; align-items: center; gap: 8px; }
.detail-guide__head p { margin: 0; color: var(--muted); line-height: 1.7; }
.detail-guide__list { margin: 18px 0 0; padding-left: 20px; display: grid; gap: 10px; color: var(--text-2); line-height: 1.7; }

.detail-build {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 34px;
}

.detail-build__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.detail-build__card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-l); background: #fff; box-shadow: var(--shadow-1); }
.detail-build__card h2 { margin: 0 0 14px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.detail-build__card ul, .detail-build__card ol { margin: 0; padding-left: 18px; display: grid; gap: 8px; color: var(--text-2); line-height: 1.7; }

.detail-shots {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 10px 0 44px;
}

.detail-shots__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.detail-shots__item { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; background: #fff; box-shadow: var(--shadow-1); }
.detail-shots__item img { display: block; width: 100%; height: auto; }
.detail-shots__item figcaption { padding: 10px 12px; font-size: 13px; color: var(--muted); text-align: center; }

@media (max-width: 860px) {
    .detail-build__grid, .detail-shots__grid { grid-template-columns: 1fr; }
}

.showroom-page {
    --showroom-global-head-height: 81px;
    --showroom-category-head-height: 51px;
    padding-top: 0;
    background: #fff;
}

body.showroom-page.theme-oao-void {
    background: #fff !important;
    color: var(--text);
    font-family: var(--font);
}

body.showroom-page.theme-oao-void .public-site-header .nav-badge {
    border-color: #4b5054;
    background: #303437;
    color: #e4e7e9;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.showroom-page.theme-oao-void .public-site-header .nav-badge:hover {
    border-color: #697176;
    background: #3b4145;
    color: #ffffff;
}

body.showroom-page.theme-oao-void .public-site-header .nav-badge.active {
    border-color: #3182f6;
    background: #3182f6;
    color: #ffffff;
}

body.showroom-page.theme-oao-void .public-site-header .container-fluid {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
}

body.showroom-page.theme-oao-void .public-site-header .page-nav-badges {
    grid-column: 2 !important;
    justify-content: center !important;
}

body.showroom-page .right-floating-banners {
    display: none !important;
}

.showroom-global-head {
    position: sticky;
    top: 0;
    z-index: 180;
    min-height: var(--showroom-global-head-height);
    background: #080b12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.showroom-global-head__inner {
    width: 100%;
    min-height: var(--showroom-global-head-height);
    padding: 0 clamp(18px, 3vw, 46px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.showroom-global-head__start,
.showroom-global-head__actions,
.showroom-global-brand {
    display: flex;
    align-items: center;
}

.showroom-global-head__start { gap: 12px; }
.showroom-global-head__actions { gap: 8px; }

.showroom-menu-toggle {
    display: grid;
    place-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.showroom-menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.showroom-menu-toggle > span:not(.visually-hidden) { display: block; width: 18px; height: 2px; border-radius: 2px; background: #fff; }

.showroom-global-brand { gap: 9px; color: #fff; }
.showroom-global-brand:hover { color: #fff; }
.showroom-global-brand__mark {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 8px;
    background: #3178f6;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
}
.showroom-global-brand strong { font-size: 16px; font-weight: 800; letter-spacing: 0; }

.showroom-global-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 750;
    letter-spacing: 0;
}
.showroom-global-contact--telegram { background: #168acd; color: #fff; }
.showroom-global-contact--kakao { background: #fee500; color: #2b2010; }

.showroom-category-bar {
    position: sticky;
    top: var(--showroom-global-head-height);
    z-index: 170;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

@media (min-width: 769px) {
    body.showroom-page .showroom-category-bar {
        position: fixed;
        top: var(--showroom-global-head-height);
        right: 0;
        left: 0;
        margin: 0;
    }

    body.showroom-page .site-main {
        padding-top: calc(var(--showroom-global-head-height) + var(--showroom-category-head-height));
    }
}

.showroom-category-bar__inner {
    width: min(1280px, calc(100% - 48px));
    min-height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.showroom-category-bar__title {
    flex: none;
    color: var(--grey-900);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.showroom-category-bar__scroll {
    display: flex;
    align-items: stretch;
    gap: 2px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.showroom-category-bar__scroll::-webkit-scrollbar { display: none; }

.showroom-category-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 13px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 650;
    white-space: nowrap;
    letter-spacing: 0;
}
.showroom-category-link:hover { color: var(--text); }
.showroom-category-link.is-active { color: var(--brand-press); font-weight: 800; }
.showroom-category-link.is-active::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 0;
    left: 13px;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: var(--brand);
}

.showroom-global-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(1, 5, 14, 0.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease);
}
.showroom-global-overlay.is-open { opacity: 1; pointer-events: auto; }

.showroom-global-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 310;
    display: flex;
    flex-direction: column;
    width: min(340px, calc(100vw - 38px));
    padding: 26px 18px 18px;
    background: #0b0f18;
    color: #fff;
    box-shadow: 18px 0 42px rgba(0, 0, 0, 0.28);
    transform: translateX(-102%);
    transition: transform var(--dur-slow) var(--ease);
}
.showroom-global-drawer.is-open { transform: translateX(0); }
.showroom-global-drawer__body { overflow-y: auto; }
.showroom-global-drawer__title { margin: 8px 12px 13px; color: rgba(255, 255, 255, 0.52); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; }
.showroom-global-drawer__nav { display: grid; gap: 4px; }
.showroom-global-drawer__nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 13px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 650;
}
.showroom-global-drawer__nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.showroom-global-drawer__nav a[aria-current="page"] { background: rgba(49, 120, 246, 0.2); color: #8eb9ff; }
.showroom-global-drawer__contacts { display: grid; gap: 8px; margin-top: auto; padding-top: 18px; }
.showroom-global-drawer__contacts a { display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 8px; font-size: 13px; font-weight: 800; }
.showroom-global-drawer__contacts a:first-child { background: #168acd; color: #fff; }
.showroom-global-drawer__contacts a:last-child { background: #fee500; color: #2b2010; }
.showroom-menu-open { overflow: hidden; }

@media (max-width: 768px) {
    .showroom-page {
        --showroom-global-head-height: 60px;
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .showroom-global-head__inner { min-height: var(--showroom-global-head-height); padding: 0 12px; }
    .showroom-global-head__start { gap: 6px; }
    .showroom-menu-toggle { width: 38px; height: 38px; }
    .showroom-global-brand__mark { width: 28px; height: 28px; font-size: 9px; }
    .showroom-global-brand strong { font-size: 15px; }
    .showroom-global-head__actions { gap: 5px; }
    .showroom-global-contact { min-height: 32px; padding: 7px 9px; font-size: 11.5px; }
    .showroom-category-bar__inner { width: 100%; min-height: 46px; gap: 8px; }
    .showroom-category-bar__title { padding-left: 16px; font-size: 12.5px; }
    .showroom-category-bar__scroll { gap: 0; padding-right: 16px; }
    .showroom-category-link { min-height: 46px; padding: 0 11px; font-size: 13px; }
    .showroom-category-link.is-active::after { right: 11px; left: 11px; }
}
