﻿:root {
    --bg: #f6fbff;
    --bg-strong: #ffffff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --text: #071120;
    --muted: #536176;
    --line: rgba(8, 20, 39, 0.1);
    --line-strong: rgba(8, 20, 39, 0.16);
    --cyan: #12d7ff;
    --cyan-strong: #05b9e3;
    --magenta: #ff3db7;
    --magenta-strong: #ff198f;
    --blue: #0d1830;
    --shadow: 0 24px 70px rgba(12, 23, 46, 0.12);
    --shadow-soft: 0 18px 50px rgba(12, 23, 46, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

.page-remote-control {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 18%, rgba(80, 220, 255, 0.24), transparent 34%),
        radial-gradient(circle at 84% 20%, rgba(240, 95, 196, 0.22), transparent 32%),
        linear-gradient(135deg, #051827 0%, #0a2940 48%, #13213a 100%);
    color: #f7fbff;
}

.remote-control-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: clamp(80px, 12vw, 150px) 0;
}

.remote-control-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.remote-control-copy .eyebrow {
    margin: 0 0 18px;
    color: rgba(165, 224, 255, 0.78);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.remote-control-copy h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 8vw, 7.7rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.remote-control-copy > p {
    max-width: 560px;
    margin: 28px 0 34px;
    color: rgba(231, 245, 255, 0.76);
    font-size: clamp(1.02rem, 1.6vw, 1.22rem);
    line-height: 1.75;
}

.remote-control-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid rgba(178, 231, 255, 0.46);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #06192b;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.remote-control-panel {
    min-height: 360px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        rgba(4, 19, 34, 0.46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 32px 100px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.remote-control-status {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(72, 211, 255, 0.14);
    color: #9be7ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.remote-control-panel strong {
    display: block;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.05em;
}

.remote-control-panel p,
.remote-control-panel li {
    color: rgba(233, 246, 255, 0.72);
    line-height: 1.68;
}

.remote-control-panel ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.remote-control-panel li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

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

html:has(body.page-services) {
    background:
        linear-gradient(90deg, #f735bf 0%, #f674d1 30%, #fff8fd 50%, #72eff9 70%, #25dff2 100%);
}

html:has(body.page-notices) {
    background:
        radial-gradient(circle at 10% 20%, rgba(189, 108, 88, 0.32), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(54, 124, 160, 0.34), transparent 26%),
        radial-gradient(circle at 48% 82%, rgba(134, 103, 72, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(223, 208, 187, 0.98) 0%, rgba(206, 196, 185, 0.98) 46%, rgba(177, 195, 207, 0.98) 100%);
}

html:has(body.page-service-detail-ai-model) {
    background: #03070d;
}

html:has(body.page-service-detail-ai-video) {
    background:
        radial-gradient(circle at 12% 12%, rgba(232, 113, 154, 0.30), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(255, 203, 156, 0.32), transparent 22%),
        linear-gradient(180deg, #ffe8dc 0%, #d7e2b2 100%);
}

body {
    margin: 0;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans KR", "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(18, 215, 255, 0.15), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 61, 183, 0.12), transparent 30%),
        linear-gradient(180deg, #f9fdff 0%, #f4f9ff 42%, #ffffff 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

main {
    display: block;
    flex: 1 0 auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(18, 215, 255, 0.06), transparent 32%),
        linear-gradient(315deg, rgba(255, 61, 183, 0.05), transparent 28%);
    z-index: -3;
}

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

img {
    display: block;
    max-width: 100%;
}

.company-wordmark {
    display: inline-block;
    color: #000000;
    white-space: nowrap;
    text-wrap: nowrap;
}

.company-wordmark-02-primary {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.25rem, 4.2vw, 3.9rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.company-wordmark-02-primary .company-wordmark-line {
    display: block;
}

.company-wordmark-02-horizontal {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2.8vw, 2.2rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(820px, calc(100% - 40px));
}

.page-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
    z-index: -2;
    animation: float-orb 12s ease-in-out infinite;
}

.orb-cyan {
    top: 92px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(18, 215, 255, 0.22), rgba(18, 215, 255, 0));
}

.orb-magenta {
    left: -100px;
    top: 420px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 61, 183, 0.2), rgba(255, 61, 183, 0));
    animation-delay: -4s;
}

.page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(8, 20, 39, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 20, 39, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
    z-index: -1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(248, 252, 255, 0.58);
    backdrop-filter: blur(22px);
    will-change: background, box-shadow, border-color;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(248, 252, 255, 0.8);
    border-bottom-color: rgba(8, 20, 39, 0.08);
    box-shadow: 0 14px 30px rgba(12, 23, 46, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    transition: padding 180ms ease, gap 180ms ease;
}

.site-header.is-scrolled .header-inner {
    padding: 16px 0;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    justify-self: start;
    transition: gap 180ms ease;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-wordmark .company-wordmark-02-horizontal {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    line-height: 1;
    transition: none;
}

.brand-mark {
    width: 58px;
    height: 72px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: width 180ms ease, height 180ms ease, flex-basis 180ms ease;
}

.site-header.is-scrolled .brand-mark {
    width: 54px;
    height: 66px;
    flex-basis: 54px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3,
.service-card h3,
.hero-surface strong,
.page-hero-note strong,
.proof-card strong,
.contact-info-card strong,
.notice-preview-card h3 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    letter-spacing: -0.03em;
}

.brand-copy strong {
    font-size: 1.05rem;
}

.brand-copy small,
.lead,
.section-head p,
.page-hero-note p,
.hero-kicker,
.proof-card p,
.service-card p,
.service-card li,
.insight-card p,
.notice-preview-card p,
.contact-hub-card p,
.mini-panel p,
.site-footer p,
.footer-grid span,
.footer-grid a,
.content-panel p,
.contact-form-card p,
.contact-info-card span,
.empty-box,
.notice-list-card p {
    color: var(--muted);
}

.wordmark-lab {
    padding-top: 44px;
}

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

.wordmark-card {
    position: relative;
    overflow: hidden;
    min-height: 224px;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(18, 215, 255, 0.05)),
        var(--surface);
    box-shadow: var(--shadow-soft);
}

.wordmark-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -48% auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 61, 183, 0.12), transparent 70%);
    pointer-events: none;
}

.wordmark-card.is-approved {
    border-color: rgba(18, 215, 255, 0.34);
    box-shadow:
        0 0 0 1px rgba(18, 215, 255, 0.16),
        0 22px 54px rgba(12, 23, 46, 0.12);
}

.wordmark-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(8, 20, 39, 0.06);
    color: #47556d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.wordmark-status {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(18, 215, 255, 0.96), rgba(255, 61, 183, 0.92));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.wordmark-sample {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    color: var(--text);
    line-height: 0.94;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.wordmark-sample span {
    display: block;
}

.wordmark-note {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.variant-01 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(2.05rem, 4vw, 3.55rem);
    font-weight: 700;
    letter-spacing: -0.085em;
}

.variant-02 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.25rem, 4.2vw, 3.9rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.variant-03 {
    font-family: "Syne", "Noto Sans KR", sans-serif;
    font-size: clamp(2.05rem, 4vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    background: linear-gradient(90deg, #0c1a34 0%, var(--cyan) 18%, var(--magenta) 55%, #0c1a34 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.variant-04 {
    font-family: "Sora", "Noto Sans KR", sans-serif;
    font-size: clamp(2.25rem, 4.3vw, 3.85rem);
    font-weight: 700;
    letter-spacing: -0.075em;
}

.variant-04 span:last-child {
    margin-left: 1.6rem;
}

.variant-05 {
    font-family: "Outfit", "Noto Sans KR", sans-serif;
    font-size: clamp(1.95rem, 3.6vw, 3.15rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.variant-06 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.075em;
}

.variant-06 span:first-child {
    font-family: "Bricolage Grotesque", "Noto Sans KR", sans-serif;
    font-weight: 800;
}

.variant-06 span:last-child {
    margin-top: 0.18rem;
    font-family: "Fraunces", serif;
    font-weight: 600;
    color: #46546e;
}

.variant-07 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(2rem, 3.9vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.065em;
    color: rgba(7, 17, 32, 0.08);
    -webkit-text-stroke: 1.6px #0c1a34;
}

.variant-08 {
    display: inline-block;
    padding: 0.22rem 0 0.38rem;
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-size: clamp(1.9rem, 3.7vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    border-top: 2px solid rgba(18, 215, 255, 0.8);
    border-bottom: 2px solid rgba(255, 61, 183, 0.78);
}

.variant-09 {
    font-family: "Bricolage Grotesque", "Noto Sans KR", sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    text-shadow: 0 10px 26px rgba(18, 215, 255, 0.12);
}

.variant-10 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    letter-spacing: -0.065em;
}

.variant-10 span:first-child {
    font-family: "Fraunces", serif;
    font-weight: 700;
}

.variant-10 span:last-child {
    margin-top: 0.15rem;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 700;
    color: #3a4a65;
}

.variant-11 {
    font-family: "Sora", "Noto Sans KR", sans-serif;
    font-size: clamp(1.95rem, 3.7vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.09em;
}

.variant-12 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.15rem, 4vw, 3.65rem);
    font-weight: 700;
    letter-spacing: -0.06em;
}

.variant-13 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    background: linear-gradient(90deg, rgba(9, 19, 37, 0.96) 0%, rgba(18, 215, 255, 0.96) 38%, rgba(255, 61, 183, 0.96) 62%, rgba(9, 19, 37, 0.96) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.variant-14 {
    font-family: "Bricolage Grotesque", "Noto Sans KR", sans-serif;
    font-size: clamp(2.1rem, 4.05vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.08em;
}

.variant-14 span:last-child {
    margin-left: 0.85rem;
}

.variant-15 {
    font-family: "Outfit", "Noto Sans KR", sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.85rem);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.variant-16 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4.2vw, 3.7rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    color: #17233d;
}

.variant-17 {
    font-size: clamp(2rem, 3.9vw, 3.35rem);
    letter-spacing: -0.085em;
}

.variant-17 span:first-child {
    font-family: "Syne", "Noto Sans KR", sans-serif;
    font-weight: 800;
}

.variant-17 span:last-child {
    margin-top: -0.1rem;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 700;
}

.variant-18 {
    font-size: clamp(2rem, 4.1vw, 3.55rem);
    letter-spacing: -0.07em;
}

.variant-18 span:first-child {
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-weight: 700;
    color: #516078;
}

.variant-18 span:last-child {
    margin-top: 0.08rem;
    font-family: "Fraunces", serif;
    font-weight: 700;
}

.variant-19 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(2rem, 3.85vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    color: rgba(7, 17, 32, 0.12);
    -webkit-text-stroke: 1.3px #0b1832;
    text-shadow: 0 12px 30px rgba(255, 61, 183, 0.08);
}

.variant-20 {
    font-size: clamp(1.95rem, 3.8vw, 3.2rem);
    letter-spacing: -0.08em;
}

.variant-20 span:nth-child(1) {
    font-family: "Sora", "Noto Sans KR", sans-serif;
    font-weight: 800;
}

.variant-20 span:nth-child(2) {
    margin-left: 0.35rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.68em;
    font-style: italic;
    font-weight: 700;
    color: #7a879a;
}

.variant-20 span:nth-child(3) {
    margin-top: -0.05rem;
    font-family: "Fraunces", serif;
    font-weight: 700;
}

.variant-21 {
    font-family: "Outfit", "Noto Sans KR", sans-serif;
    font-size: clamp(2rem, 3.85vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    background: linear-gradient(90deg, var(--cyan) 0%, #0b1832 18%, #0b1832 82%, var(--magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.variant-22 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(1.85rem, 3.55vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.variant-23 {
    display: inline-block;
    padding: 0.3rem 0.8rem 0.48rem;
    border: 1px solid rgba(12, 24, 50, 0.12);
    border-radius: 18px;
    font-family: "Bricolage Grotesque", "Noto Sans KR", sans-serif;
    font-size: clamp(1.8rem, 3.45vw, 2.95rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.variant-24 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    letter-spacing: -0.07em;
}

.variant-24 span:first-child {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
}

.variant-24 span:last-child {
    margin-top: 0.2rem;
    padding-top: 0.18rem;
    border-top: 2px solid rgba(18, 215, 255, 0.52);
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-weight: 700;
}

.variant-25 {
    font-family: "Syne", "Noto Sans KR", sans-serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    text-shadow:
        0 0 18px rgba(18, 215, 255, 0.18),
        0 0 28px rgba(255, 61, 183, 0.1);
}

.variant-26 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    letter-spacing: -0.07em;
}

.variant-26 span:first-child {
    font-family: "Outfit", "Noto Sans KR", sans-serif;
    font-weight: 800;
}

.variant-26 span:last-child {
    margin-top: 0.14rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: italic;
}

.variant-27 {
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-size: clamp(1.95rem, 3.8vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    text-shadow:
        1px 1px 0 rgba(18, 215, 255, 0.55),
        3px 3px 0 rgba(255, 61, 183, 0.22);
}

.variant-28 {
    display: inline-block;
    padding-bottom: 0.28rem;
    border-bottom: 2px solid rgba(18, 215, 255, 0.72);
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(1.95rem, 3.8vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.08em;
}

.variant-29 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.065em;
}

.variant-29 span:first-child {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 700;
}

.variant-29 span:last-child {
    margin-left: 0.9rem;
    font-family: "Fraunces", serif;
    font-weight: 600;
}

.variant-30 {
    font-family: "Sora", "Noto Sans KR", sans-serif;
    font-size: clamp(2.15rem, 4.1vw, 3.7rem);
    font-weight: 800;
    letter-spacing: -0.11em;
}

.variant-31 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.075em;
}

.variant-31 span:first-child {
    font-family: "Bricolage Grotesque", "Noto Sans KR", sans-serif;
    font-weight: 800;
}

.variant-31 span:last-child {
    margin-left: 1.55rem;
    margin-top: -0.02rem;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 700;
}

.variant-32 {
    font-family: "Outfit", "Noto Sans KR", sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.95rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #30415d;
}

.variant-33 {
    display: inline-block;
    padding: 0.3rem 0;
    border-top: 2px solid rgba(18, 215, 255, 0.58);
    border-bottom: 2px solid rgba(255, 61, 183, 0.54);
    font-family: "Fraunces", serif;
    font-size: clamp(1.95rem, 3.8vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.variant-34 {
    display: inline-block;
    padding: 0.42rem 0.92rem 0.56rem;
    border-radius: 999px;
    background: rgba(8, 20, 39, 0.06);
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-size: clamp(1.7rem, 3.25vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.055em;
}

.variant-35 {
    font-size: clamp(1.95rem, 3.9vw, 3.35rem);
    letter-spacing: -0.07em;
}

.variant-35 span:first-child {
    font-family: "Syne", "Noto Sans KR", sans-serif;
    font-weight: 800;
}

.variant-35 span:last-child {
    margin-top: 0.35rem;
    margin-left: 2rem;
    font-family: "Sora", "Noto Sans KR", sans-serif;
    font-weight: 600;
}

.variant-36 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 3.05rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    word-spacing: 0.12em;
}

.variant-37 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    letter-spacing: -0.075em;
}

.variant-37 span:first-child {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
}

.variant-37 span:last-child {
    margin-top: 0.12rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: #536176;
}

.variant-38 {
    font-family: "Bricolage Grotesque", "Noto Sans KR", sans-serif;
    font-size: clamp(2.1rem, 4.05vw, 3.55rem);
    font-weight: 800;
    letter-spacing: -0.1em;
}

.variant-39 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    letter-spacing: -0.075em;
}

.variant-39 span:first-child {
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-weight: 700;
    color: #657286;
}

.variant-39 span:last-child {
    margin-top: 0.05rem;
    font-family: "Syne", "Noto Sans KR", sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.variant-40 {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(2.05rem, 4vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.085em;
    text-shadow: 0 14px 32px rgba(12, 23, 46, 0.08);
}

.bf-wordmark {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0;
    line-height: 0.9;
}

.bf-wordmark .bf-initial {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: -0.08em;
    background: linear-gradient(135deg, #4fdcff 0%, #7db7ff 35%, #b189f2 68%, #f05fc4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bf-wordmark .bf-rest {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 600;
    color: #16233d;
    letter-spacing: -0.055em;
}

.variant-41 {
    font-size: clamp(2rem, 3.9vw, 3.3rem);
}

.variant-41 .bf-initial {
    font-size: 1.28em;
    margin-right: 0.02em;
}

.variant-42 {
    font-size: clamp(1.95rem, 3.8vw, 3.1rem);
}

.variant-42 .bf-initial {
    font-size: 1.42em;
    line-height: 0.78;
    margin-right: 0.03em;
}

.variant-43 {
    font-size: clamp(2rem, 3.9vw, 3.2rem);
}

.variant-43 .bf-initial {
    font-size: 1.25em;
    text-shadow: 0 10px 20px rgba(79, 220, 255, 0.18);
}

.variant-43 .bf-rest {
    color: #091325;
}

.variant-44 {
    font-size: clamp(1.9rem, 3.7vw, 3.05rem);
}

.variant-44 .bf-initial {
    font-size: 1.32em;
    font-weight: 600;
}

.variant-44 .bf-rest {
    font-family: "Manrope", "Noto Sans KR", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #30405c;
}

.variant-45 {
    font-size: clamp(2rem, 3.85vw, 3.15rem);
}

.variant-45 .bf-initial:first-child {
    transform: translateY(-0.08em);
}

.variant-45 .bf-initial:last-of-type {
    transform: translateY(0.08em);
    margin-right: 0.02em;
}

.variant-46 {
    font-size: clamp(1.95rem, 3.75vw, 3.1rem);
}

.variant-46 .bf-initial {
    font-size: 1.3em;
    text-shadow:
        0 0 16px rgba(79, 220, 255, 0.24),
        0 0 26px rgba(240, 95, 196, 0.12);
}

.variant-46 .bf-rest {
    color: #273752;
}

.variant-47 {
    font-size: clamp(1.95rem, 3.7vw, 3.05rem);
}

.variant-47 .bf-initial {
    background: none;
    color: rgba(7, 17, 32, 0.08);
    -webkit-text-stroke: 1.2px #0b1832;
}

.variant-47 .bf-rest {
    font-weight: 700;
}

.variant-48 {
    font-size: clamp(1.95rem, 3.75vw, 3.1rem);
}

.variant-48 .bf-initial {
    font-size: 1.3em;
}

.variant-48 .bf-initial:first-child {
    margin-right: 0.08em;
}

.variant-48 .bf-initial:last-of-type {
    margin-right: 0.06em;
    margin-left: 0.02em;
}

.variant-49 {
    font-size: clamp(2rem, 3.85vw, 3.15rem);
}

.variant-49 .bf-initial {
    font-size: 1.24em;
}

.variant-49 .bf-rest {
    font-family: "Outfit", "Noto Sans KR", sans-serif;
    font-weight: 600;
    color: #23324c;
}

.variant-50 {
    display: grid;
    justify-items: start;
    font-size: clamp(2rem, 3.9vw, 3.2rem);
    row-gap: 0.12em;
}

.variant-50 .bf-initial {
    font-size: 1.3em;
    line-height: 0.8;
}

.variant-50 .bf-rest {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 600;
    color: #1f304b;
    letter-spacing: -0.05em;
}

.variant-50-line {
    display: inline-flex;
    align-items: baseline;
}

.variant-50-connector {
    margin-left: 0.28rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.42em;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #6a778d;
    text-transform: lowercase;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    min-width: 0;
    justify-self: center;
    transition: gap 180ms ease;
}

.site-header.is-scrolled .main-nav {
    gap: 30px;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    justify-self: end;
    flex-wrap: wrap;
    transition: gap 180ms ease;
}

.site-header.is-scrolled .header-tools {
    gap: 0;
}

.language-menu {
    position: relative;
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 148px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(8, 20, 39, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    list-style: none;
    cursor: pointer;
    transition:
        box-shadow 180ms ease;
}

.site-header.is-scrolled .language-trigger {
    min-width: 148px;
    padding: 8px 16px;
}

.language-trigger::-webkit-details-marker {
    display: none;
}

.language-trigger::after {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-right: 2px solid #516078;
    border-bottom: 2px solid #516078;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms ease;
}

.language-menu[open] .language-trigger::after {
    transform: rotate(-135deg) translateY(-1px);
}

.language-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6a778d;
}

.language-current {
    color: #0f1830;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 30;
    display: grid;
    gap: 8px;
    min-width: 208px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(8, 20, 39, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 56px rgba(12, 23, 46, 0.16);
    backdrop-filter: blur(20px);
}

.language-option {
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #334257;
    text-align: left;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.language-option:hover {
    transform: translateY(-1px);
    background: rgba(18, 215, 255, 0.08);
}

.language-option.active {
    color: #fff;
    background: linear-gradient(135deg, #11c8f1, #ff2fb2);
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    padding: 9px 14px;
    border-radius: 999px;
    line-height: 1;
    font-weight: 700;
    font-size: 1.08rem;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.26)),
        linear-gradient(90deg, rgba(18, 215, 255, 0.16), rgba(255, 61, 183, 0.13));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 10px 26px rgba(12, 23, 46, 0.08);
    opacity: 0;
    transform: scale(0.82);
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    opacity: 1;
    transform: scale(1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
    transform: translateY(-1px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(8, 20, 39, 0.08);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
}

.nav-cta::after {
    display: none;
}

.messages {
    margin-top: 28px;
}

.page-empty {
    min-height: calc(100vh - 260px);
}

.message {
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(18, 215, 255, 0.18);
    background: rgba(18, 215, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.hero-section,
.section,
.page-hero {
    position: relative;
    padding: 92px 0;
}

.page-hero {
    padding-bottom: 56px;
}

.service-blank-page {
    min-height: calc(100svh - 108px);
    padding-top: 72px;
    padding-bottom: 72px;
    isolation: isolate;
    overflow: hidden;
}

.service-blank-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 26%, rgba(255, 58, 176, 0.32), transparent 26%),
        radial-gradient(circle at 38% 78%, rgba(255, 180, 222, 0.18), transparent 24%),
        radial-gradient(circle at 88% 20%, rgba(48, 222, 255, 0.30), transparent 24%),
        radial-gradient(circle at 72% 82%, rgba(142, 237, 255, 0.18), transparent 22%),
        linear-gradient(90deg, #ff5ab9 0%, #fff9fd 48%, #7cecff 100%);
    z-index: 0;
}

.service-blank-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 168, 168, 0.26), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(255, 98, 112, 0.34), transparent 24%),
        radial-gradient(circle at 54% 72%, rgba(172, 19, 36, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 237, 238, 0.96), rgba(255, 191, 197, 0.92) 48%, rgba(225, 104, 118, 0.94) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--service-theme-fade-duration, 10000ms) linear;
    z-index: 0;
}

.service-tail-section {
    background: var(--page-tail-bg, transparent);
}

body.page-services {
    --page-tail-bg: transparent;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    background:
        radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.28), transparent 24%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(90deg, #f735bf 0%, #f674d1 30%, #fff8fd 50%, #72eff9 70%, #25dff2 100%);
}

body.page-services::before {
    content: none;
}

body.page-services .page-orb,
body.page-services .page-grid {
    display: none;
}

body.page-services .service-blank-page {
    background: transparent;
}

body.page-services .service-blank-page::before {
    content: none;
}

body.page-services .service-blank-page::after {
    content: none;
}

body.page-services .service-split-card {
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.58),
        0 34px 76px rgba(28, 45, 74, 0.16);
    backdrop-filter: blur(18px) saturate(1.18);
}

.service-aurora-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    min-height: 100%;
    display: block;
    pointer-events: none;
    filter: saturate(1.24) contrast(1.08);
}

body.page-services .site-header,
body.page-services main,
body.page-services .site-footer {
    position: relative;
}

body.page-services .site-header {
    z-index: 20;
}

body.page-services main,
body.page-services .site-footer {
    z-index: 1;
}

body.page-services .site-footer {
    background: transparent;
}

body.page-services .footer-shell {
    border-color: rgba(255, 255, 255, 0.26);
    background:
        linear-gradient(135deg, rgba(6, 20, 38, 0.86), rgba(7, 36, 54, 0.76)),
        rgba(5, 18, 34, 0.82);
    color: #f2fbff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 24px 58px rgba(2, 20, 38, 0.28);
}

body.page-services .footer-brand p,
body.page-services .footer-grid span,
body.page-services .footer-grid a,
body.page-services .footer-meta {
    color: rgba(226, 242, 251, 0.84);
}

body.page-services .footer-grid h3 {
    color: #ffffff;
}

body.page-service-detail-digital-human {
    --page-tail-bg:
        radial-gradient(circle at 18% 18%, rgba(255, 223, 145, 0.26), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(255, 198, 78, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(255, 250, 233, 0.96), rgba(255, 237, 185, 0.84));
}

body.page-service-detail-vton {
    --page-tail-bg:
        radial-gradient(circle at 16% 18%, rgba(86, 114, 98, 0.12), transparent 30%),
        radial-gradient(circle at 82% 14%, rgba(22, 27, 25, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(206, 214, 209, 0.96), rgba(166, 178, 171, 0.94));
    transition: background 2920ms cubic-bezier(0.22, 0.78, 0.18, 1);
}

body.page-service-detail-ai-video {
    --page-tail-bg:
        radial-gradient(circle at 14% 18%, rgba(255, 58, 116, 0.16), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(63, 215, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #0b0b18 0%, #050711 100%);
}

body.page-contact {
    background:
        radial-gradient(circle at 14% 18%, rgba(52, 191, 176, 0.2), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(130, 232, 221, 0.32), transparent 24%),
        linear-gradient(180deg, rgba(220, 247, 243, 0.95), rgba(197, 239, 232, 0.82));
    --page-tail-bg:
        radial-gradient(circle at 14% 18%, rgba(52, 191, 176, 0.2), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(130, 232, 221, 0.32), transparent 24%),
        linear-gradient(180deg, rgba(220, 247, 243, 0.95), rgba(197, 239, 232, 0.82));
}

.service-blank-surface {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 220px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 108, 196, 0.34), transparent 22%),
        radial-gradient(circle at 84% 72%, rgba(255, 170, 216, 0.34), transparent 26%),
        linear-gradient(145deg, rgba(255, 246, 251, 0.66), rgba(255, 226, 242, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 22px 52px rgba(158, 52, 109, 0.12);
}

.service-split-page {
    display: grid;
    align-items: center;
}

.service-split-shell {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 220px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.service-split-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 22px 52px rgba(158, 52, 109, 0.12);
    backdrop-filter: blur(12px);
    transition:
        transform 1320ms ease,
        box-shadow 1320ms ease,
        border-color 1320ms ease;
}

.service-split-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 30px 70px rgba(158, 52, 109, 0.16);
}

.service-split-card::before {
    content: "";
    position: absolute;
    inset: auto -12% -18% auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    pointer-events: none;
}

.service-split-card-visual {
    background:
        linear-gradient(90deg, rgba(255, 63, 190, 0.2), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 231, 248, 0.38) 58%, rgba(255, 82, 195, 0.18));
}

.service-split-card-visual::before {
    background: radial-gradient(circle, rgba(255, 106, 191, 0.18), rgba(255, 106, 191, 0));
}

.service-split-card-engineering {
    background:
        linear-gradient(270deg, rgba(41, 228, 244, 0.22), transparent 44%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(225, 252, 255, 0.36) 58%, rgba(43, 223, 240, 0.18));
}

.service-split-card-engineering::before {
    background: radial-gradient(circle, rgba(255, 174, 217, 0.2), rgba(255, 174, 217, 0));
}

.service-split-card h1,
.service-split-card h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 0.96;
}

.service-hover-list {
    display: grid;
    gap: 14px;
    align-content: start;
}

.service-hover-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 128px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.46),
        0 10px 24px rgba(158, 52, 109, 0.06);
    overflow: hidden;
    transition:
        transform 1320ms ease,
        background 1320ms ease,
        box-shadow 1320ms ease,
        border-color 1320ms ease;
    text-decoration: none;
}

body.page-services .service-hover-item {
    backdrop-filter: blur(16px) saturate(1.08);
}

.service-hover-copy {
    display: grid;
    align-content: start;
    gap: 6px;
    min-height: 92px;
}

.service-hover-item:hover,
.service-hover-item:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 18px 34px rgba(158, 52, 109, 0.12);
}

.service-split-card-engineering .service-hover-item:hover,
.service-split-card-engineering .service-hover-item:focus-visible,
.service-split-card-engineering .service-hover-item.is-revealed {
    background:
        linear-gradient(145deg, rgba(13, 24, 40, 0.94), rgba(18, 45, 60, 0.86));
    border-color: rgba(98, 216, 255, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 24px 48px rgba(3, 14, 28, 0.3),
        0 0 28px rgba(64, 212, 255, 0.12);
}

.service-split-card-engineering .service-hover-item:hover .service-hover-copy,
.service-split-card-engineering .service-hover-item:focus-visible .service-hover-copy,
.service-split-card-engineering .service-hover-item.is-revealed .service-hover-copy {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(67, 190, 255, 0.1)),
        rgba(5, 14, 25, 0.28);
}

.service-split-card-engineering .service-hover-item:hover .service-hover-label,
.service-split-card-engineering .service-hover-item:focus-visible .service-hover-label,
.service-split-card-engineering .service-hover-item.is-revealed .service-hover-label {
    color: #e8fbff;
}

.service-split-card-engineering .service-hover-item:hover .service-hover-meta,
.service-split-card-engineering .service-hover-item:focus-visible .service-hover-meta,
.service-split-card-engineering .service-hover-item.is-revealed .service-hover-meta {
    color: rgba(209, 238, 248, 0.86);
}

.service-split-card-engineering .service-hover-item:hover .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item:focus-visible .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item.is-revealed .service-hover-meta-secondary {
    color: rgba(181, 218, 232, 0.74);
}

.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:hover,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:focus-visible,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"].is-revealed {
    background:
        radial-gradient(circle at 14% 22%, rgba(58, 142, 255, 0.2), transparent 32%),
        linear-gradient(145deg, rgba(6, 20, 48, 0.97), rgba(9, 42, 88, 0.92));
    border-color: rgba(72, 169, 255, 0.76);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 26px 54px rgba(1, 13, 38, 0.38),
        0 0 34px rgba(55, 144, 255, 0.24);
}

.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:hover .service-hover-copy,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:focus-visible .service-hover-copy,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"].is-revealed .service-hover-copy {
    background:
        linear-gradient(180deg, rgba(71, 169, 255, 0.16), rgba(41, 92, 210, 0.12)),
        rgba(3, 14, 36, 0.38);
}

.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:hover .service-hover-label,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:focus-visible .service-hover-label,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"].is-revealed .service-hover-label {
    color: #ecfbff;
}

.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:hover .service-hover-meta,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:focus-visible .service-hover-meta,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"].is-revealed .service-hover-meta {
    color: rgba(193, 235, 255, 0.9);
}

.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:hover .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"]:focus-visible .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item[data-service-theme="web-data-extraction"].is-revealed .service-hover-meta-secondary {
    color: rgba(153, 209, 235, 0.76);
}

.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:hover,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:focus-visible,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"].is-revealed {
    background:
        linear-gradient(90deg, rgba(86, 230, 255, 0.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(86, 230, 255, 0.09) 1px, transparent 1px),
        radial-gradient(circle at 18% 18%, rgba(92, 255, 221, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(5, 38, 49, 0.97), rgba(9, 67, 76, 0.92));
    background-size: 22px 22px, 22px 22px, auto, auto;
    border-color: rgba(113, 255, 230, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 24px 48px rgba(3, 25, 29, 0.34),
        0 0 34px rgba(74, 255, 218, 0.2);
}

.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:hover .service-hover-copy,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:focus-visible .service-hover-copy,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"].is-revealed .service-hover-copy {
    background:
        linear-gradient(135deg, rgba(87, 238, 255, 0.16), rgba(91, 255, 199, 0.1)),
        rgba(2, 29, 34, 0.38);
}

.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:hover .service-hover-label,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:focus-visible .service-hover-label,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"].is-revealed .service-hover-label {
    color: #effbff;
}

.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:hover .service-hover-meta,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:focus-visible .service-hover-meta,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"].is-revealed .service-hover-meta {
    color: rgba(201, 229, 241, 0.88);
}

.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:hover .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"]:focus-visible .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item[data-service-theme="custom-tools"].is-revealed .service-hover-meta-secondary {
    color: rgba(169, 207, 223, 0.74);
}

.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:hover,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:focus-visible,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"].is-revealed {
    background:
        radial-gradient(circle at 20% 24%, rgba(107, 255, 198, 0.22), transparent 28%),
        radial-gradient(circle at 78% 70%, rgba(166, 105, 255, 0.26), transparent 30%),
        radial-gradient(circle at 58% 18%, rgba(219, 248, 255, 0.12), transparent 18%),
        linear-gradient(90deg, rgba(69, 238, 195, 0.08), rgba(141, 93, 255, 0.16)),
        linear-gradient(145deg, rgba(4, 39, 31, 0.97), rgba(32, 20, 70, 0.92));
    border-color: rgba(124, 255, 212, 0.66);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 24px 48px rgba(5, 18, 28, 0.34),
        0 0 36px rgba(119, 255, 212, 0.18),
        0 0 28px rgba(157, 96, 255, 0.16);
}

.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:hover .service-hover-copy,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:focus-visible .service-hover-copy,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"].is-revealed .service-hover-copy {
    background:
        linear-gradient(180deg, rgba(96, 255, 205, 0.15), rgba(143, 92, 255, 0.12)),
        rgba(6, 20, 30, 0.38);
}

.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:hover .service-hover-label,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:focus-visible .service-hover-label,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"].is-revealed .service-hover-label {
    color: #f0fffa;
}

.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:hover .service-hover-meta,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:focus-visible .service-hover-meta,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"].is-revealed .service-hover-meta {
    color: rgba(205, 239, 229, 0.88);
}

.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:hover .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"]:focus-visible .service-hover-meta-secondary,
.service-split-card-engineering .service-hover-item[data-service-theme="ai-model"].is-revealed .service-hover-meta-secondary {
    color: rgba(171, 216, 205, 0.74);
}

.service-hover-label {
    display: flex;
    align-items: center;
    min-height: 32px;
    color: #7a2d5b;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-hover-meta {
    color: rgba(122, 45, 91, 0.82);
    font-size: 0.84rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.service-hover-meta-secondary {
    color: rgba(122, 45, 91, 0.72);
}

.service-hover-preview {
    display: block;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        max-height 1320ms ease,
        margin-top 1320ms ease,
        opacity 1320ms ease,
        transform 1320ms ease;
}

.service-item-preview {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition:
        transform 1320ms ease,
        box-shadow 1320ms ease,
        background 1320ms ease;
}

.service-item-preview.has-media {
    background:
        linear-gradient(180deg, rgba(255, 252, 254, 0.92), rgba(255, 237, 246, 0.86));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 18px 34px rgba(158, 52, 109, 0.08);
}

.service-item-preview-image,
.service-item-preview-video {
    height: var(--service-preview-height, 220px);
}

.service-item-media {
    position: absolute;
    display: block;
}

.service-item-media-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
}

.service-item-media-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.service-hover-item:hover .service-item-preview,
.service-hover-item:focus-visible .service-item-preview,
.service-hover-item.is-revealed .service-item-preview {
    background: rgba(255, 255, 255, 0.42);
    transform: scale(1.01);
}

.service-hover-item:hover .service-hover-preview,
.service-hover-item:focus-visible .service-hover-preview,
.service-hover-item.is-revealed .service-hover-preview {
    max-height: calc(var(--service-preview-height, 236px) + 8px);
    margin-top: 14px;
    opacity: 1;
    transform: translateY(0);
}

.service-item-preview {
    display: block;
}

.service-preview-media {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.18);
}

.preview-visual-production {
    background:
        linear-gradient(145deg, rgba(255, 242, 249, 0.62), rgba(255, 222, 239, 0.32)),
        linear-gradient(135deg, rgba(255, 104, 190, 0.1), rgba(255, 255, 255, 0));
}

.preview-vton,
.preview-ai-image,
.preview-ai-video,
.preview-digital-human,
.preview-virtual-model {
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 118, 200, 0.22), transparent 26%),
        linear-gradient(145deg, rgba(255, 240, 248, 0.78), rgba(255, 223, 239, 0.42));
}

.preview-digital-human {
    background:
        linear-gradient(145deg, rgba(255, 240, 248, 0.78), rgba(255, 223, 239, 0.42));
    box-shadow: 0 22px 44px rgba(144, 42, 96, 0.16);
}

.service-hover-item:hover .preview-digital-human,
.service-hover-item:focus-visible .preview-digital-human,
.service-hover-item.is-revealed .preview-digital-human {
    transform: scale(1.02);
    box-shadow:
        0 28px 52px rgba(144, 42, 96, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.preview-automation-engineering {
    background:
        linear-gradient(145deg, rgba(255, 244, 250, 0.58), rgba(255, 230, 242, 0.28)),
        linear-gradient(135deg, rgba(255, 146, 208, 0.08), rgba(255, 255, 255, 0));
}

.preview-workflow,
.preview-tools,
.preview-data,
.preview-system,
.preview-web {
    background:
        linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px),
        linear-gradient(145deg, rgba(255, 244, 250, 0.74), rgba(255, 225, 240, 0.38));
    background-size: 24px 24px, 24px 24px, auto;
}

.service-detail-page-showcase {
    overflow: hidden;
}

.service-detail-page-digital-human {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 219, 110, 0.28), transparent 28%),
        radial-gradient(circle at 84% 22%, rgba(255, 184, 61, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(255, 248, 223, 0.96), rgba(255, 235, 174, 0.74));
}

.service-detail-page-showcase::before,
.service-detail-page-showcase::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.service-detail-page-digital-human::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 44px;
    background: radial-gradient(circle, rgba(255, 196, 67, 0.22), rgba(255, 196, 67, 0));
}

.service-detail-page-digital-human::after {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(255, 223, 145, 0.26), rgba(255, 223, 145, 0));
}

.service-detail-page-vton {
    background:
        radial-gradient(circle at 16% 18%, rgba(93, 124, 106, 0.14), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(37, 46, 42, 0.24), transparent 24%),
        radial-gradient(circle at 72% 88%, rgba(66, 86, 75, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(210, 218, 213, 0.98), rgba(176, 187, 181, 0.95));
    transition: background 2920ms cubic-bezier(0.22, 0.78, 0.18, 1);
}

.service-detail-page-vton::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 44px;
    background: radial-gradient(circle, rgba(82, 114, 97, 0.18), rgba(82, 114, 97, 0));
}

.service-detail-page-vton::after {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(101, 134, 116, 0.16), rgba(101, 134, 116, 0));
}

.digital-human-detail-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 28px;
    align-items: start;
}

.digital-human-detail-primary {
    display: grid;
    align-content: start;
    gap: 18px;
}

.digital-human-detail-copy,
.digital-human-artboard {
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 30px 72px rgba(166, 104, 3, 0.14);
    backdrop-filter: blur(12px);
}

.digital-human-detail-copy {
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 38px;
    background:
        linear-gradient(145deg, rgba(255, 252, 242, 0.9), rgba(255, 237, 185, 0.8)),
        rgba(255, 250, 233, 0.78);
}

.digital-human-detail-copy h1 {
    margin: 0;
    font-size: clamp(3.2rem, 5vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    color: #231608;
}

.digital-human-detail-intro {
    margin: 0;
    max-width: 34ch;
    color: #5f4316;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.65;
}

.digital-human-detail-emphasis {
    margin: -4px 0 -2px;
    max-width: 43ch;
    color: #523307;
    font-size: 1rem;
    line-height: 1.7;
}

.digital-human-detail-emphasis strong {
    color: #1f1308;
    font-weight: 800;
}

.digital-human-detail-body {
    margin: -6px 0 2px;
    max-width: 45ch;
    color: #5f4624;
    font-size: 0.98rem;
    line-height: 1.72;
}

.digital-human-mode-grid {
    display: grid;
    gap: 14px;
}

.digital-human-mode-card {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(171, 115, 16, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 244, 207, 0.78)),
        rgba(255, 252, 242, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.digital-human-mode-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 219, 104, 0.68), rgba(255, 190, 70, 0.9));
    color: #4d2d04;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.digital-human-mode-copy {
    display: grid;
    gap: 8px;
}

.digital-human-mode-copy h2 {
    margin: 0;
    font-size: 1.18rem;
    color: #1f1308;
}

.digital-human-mode-copy p {
    margin: 0;
    color: #6d5230;
    line-height: 1.7;
}

.digital-human-detail-visual {
    display: grid;
    align-self: start;
}

.digital-human-artboard {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 24px;
    display: grid;
    align-content: start;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 222, 130, 0.36), transparent 24%),
        radial-gradient(circle at 82% 20%, rgba(255, 198, 78, 0.24), transparent 24%),
        linear-gradient(165deg, rgba(255, 245, 208, 0.9), rgba(255, 220, 140, 0.72));
}

.digital-human-reference-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.digital-human-reference-tab {
    border: 1px solid rgba(150, 99, 10, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 236, 0.78);
    color: #6f531d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 14px;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.digital-human-reference-tab:hover {
    transform: translateY(-1px);
}

.digital-human-reference-tab.is-active {
    background: #5f430f;
    border-color: #5f430f;
    color: #fff7df;
}

.digital-human-artboard::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    pointer-events: none;
}

.digital-human-artboard-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: clamp(520px, 58vw, 780px);
    height: auto;
    aspect-ratio: 10 / 13;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 252, 244, 0.92), rgba(255, 242, 205, 0.82)),
        rgba(255, 250, 233, 0.88);
    border: 1px dashed rgba(150, 99, 10, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 0 0 10px rgba(255, 255, 255, 0.18);
}

.digital-human-artboard-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.digital-human-artboard-placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.digital-human-artboard-placeholder {
    background:
        linear-gradient(180deg, rgba(255, 251, 240, 0.94), rgba(255, 245, 218, 0.94));
}

.digital-human-artboard-placeholder-panel {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(236, 241, 238, 0.96), rgba(211, 220, 215, 0.96));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.018);
    filter: blur(3px) saturate(0.92);
    transition:
        opacity 3040ms cubic-bezier(0.22, 0.78, 0.18, 1),
        transform 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        filter 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        visibility 0s linear 3040ms;
}

.digital-human-artboard-placeholder-panel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(63, 89, 74, 0.16);
    color: #33443a;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.digital-human-artboard-media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background:
        linear-gradient(180deg, rgba(255, 251, 240, 0.94), rgba(255, 245, 218, 0.94));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.018);
    filter: blur(3px) saturate(0.92);
    transition:
        opacity 3040ms cubic-bezier(0.22, 0.78, 0.18, 1),
        transform 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        filter 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        visibility 0s linear 3040ms;
}

.digital-human-artboard-media.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    filter: none;
    transition:
        opacity 3040ms cubic-bezier(0.22, 0.78, 0.18, 1),
        transform 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        filter 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        visibility 0s linear 0s;
}

.digital-human-artboard-placeholder-panel.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    filter: none;
    transition:
        opacity 3040ms cubic-bezier(0.22, 0.78, 0.18, 1),
        transform 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        filter 3920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        visibility 0s linear 0s;
}

.digital-human-artboard-frame.is-transitioning .digital-human-artboard-media.is-visible {
    opacity: 0;
    transform: scale(0.986);
    filter: blur(4px) saturate(0.9);
}

.digital-human-artboard-frame.is-transitioning .digital-human-artboard-placeholder-panel.is-visible {
    opacity: 0;
    transform: scale(0.986);
    filter: blur(4px) saturate(0.9);
}

img.digital-human-artboard-media {
    object-fit: contain;
}

video.digital-human-artboard-media {
    object-fit: contain;
}

body.page-service-detail-digital-human main,
body.page-service-detail-digital-human .site-footer {
    position: relative;
    z-index: 1;
}

body.page-service-detail-digital-human .service-detail-page-digital-human,
body.page-service-detail-digital-human .service-tail-section,
body.page-service-detail-digital-human .site-footer,
body.page-service-detail-digital-human .digital-human-detail-copy,
body.page-service-detail-digital-human .digital-human-artboard,
body.page-service-detail-digital-human .digital-human-artboard-frame,
body.page-service-detail-digital-human .service-related-card,
body.page-service-detail-digital-human .footer-shell {
    position: relative;
    isolation: isolate;
}

body.page-service-detail-digital-human .service-detail-page-digital-human > :not(.service-reference-background),
body.page-service-detail-digital-human .service-tail-section > :not(.service-reference-tail-background),
body.page-service-detail-digital-human .site-footer > :not(.footer-reference-background),
body.page-service-detail-digital-human .digital-human-detail-copy > *,
body.page-service-detail-digital-human .digital-human-artboard > *,
body.page-service-detail-digital-human .digital-human-artboard-frame > *,
body.page-service-detail-digital-human .service-related-card > *,
body.page-service-detail-digital-human .footer-shell > * {
    position: relative;
    z-index: 1;
}

.service-reference-background,
.service-reference-tail-background,
.footer-reference-background,
body.page-service-detail-digital-human .digital-human-detail-copy::after,
body.page-service-detail-digital-human .digital-human-artboard::after,
body.page-service-detail-digital-human .digital-human-artboard-frame::after,
body.page-service-detail-digital-human .service-related-card::after,
body.page-service-detail-digital-human .footer-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 4720ms cubic-bezier(0.22, 0.78, 0.18, 1);
    z-index: 0;
}

.service-reference-background {
    background:
        linear-gradient(135deg, rgba(226, 240, 252, 0.96) 0%, rgba(210, 230, 248, 0.95) 46%, rgba(190, 220, 246, 0.92) 100%);
}

.service-reference-tail-background {
    background:
        linear-gradient(135deg, rgba(220, 236, 250, 0.96) 0%, rgba(203, 227, 247, 0.94) 52%, rgba(186, 217, 243, 0.90) 100%);
}

.footer-reference-background {
    background:
        linear-gradient(135deg, rgba(214, 232, 248, 0.96) 0%, rgba(196, 222, 244, 0.94) 48%, rgba(177, 209, 237, 0.90) 100%);
}

body.page-service-detail-digital-human .digital-human-detail-copy::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(226, 240, 252, 0.95) 0%, rgba(210, 231, 248, 0.93) 58%, rgba(193, 220, 244, 0.90) 100%);
}

body.page-service-detail-digital-human .digital-human-artboard::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(220, 237, 251, 0.94) 0%, rgba(202, 228, 247, 0.92) 56%, rgba(182, 214, 240, 0.88) 100%);
}

body.page-service-detail-digital-human .digital-human-artboard-frame::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(230, 243, 253, 0.96) 0%, rgba(214, 233, 249, 0.94) 58%, rgba(195, 221, 244, 0.91) 100%);
}

body.page-service-detail-digital-human .service-related-card::after,
body.page-service-detail-digital-human .footer-shell::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(224, 239, 251, 0.96) 0%, rgba(206, 229, 247, 0.94) 52%, rgba(186, 217, 241, 0.90) 100%);
}

body.page-service-detail-digital-human .digital-human-detail-copy,
body.page-service-detail-digital-human .digital-human-artboard,
body.page-service-detail-digital-human .digital-human-artboard-frame,
body.page-service-detail-digital-human .service-related-card,
body.page-service-detail-digital-human .footer-shell,
body.page-service-detail-digital-human .footer-shell *,
body.page-service-detail-digital-human .digital-human-reference-tab {
    transition:
        color 4720ms cubic-bezier(0.22, 0.78, 0.18, 1),
        background-color 4720ms cubic-bezier(0.22, 0.78, 0.18, 1),
        border-color 4720ms cubic-bezier(0.22, 0.78, 0.18, 1),
        box-shadow 4720ms cubic-bezier(0.22, 0.78, 0.18, 1);
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-reference-tab {
    background: rgba(223, 239, 252, 0.88);
    border-color: rgba(110, 161, 202, 0.24);
    color: #325a79;
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-reference-tab.is-active {
    background: linear-gradient(135deg, #5a90bd, #86b4db);
    border-color: transparent;
    color: #f8fcff;
}

body.page-service-detail-digital-human.reference-variant-2 .page-orb.orb-cyan {
    background:
        radial-gradient(circle, rgba(119, 191, 239, 0.30), rgba(119, 191, 239, 0));
}

body.page-service-detail-digital-human.reference-variant-2 .page-orb.orb-magenta {
    background:
        radial-gradient(circle, rgba(172, 210, 239, 0.22), rgba(172, 210, 239, 0));
}

body.page-service-detail-digital-human.reference-variant-2 .service-reference-background,
body.page-service-detail-digital-human.reference-variant-2 .service-reference-tail-background,
body.page-service-detail-digital-human.reference-variant-2 .footer-reference-background,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-copy::after,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-artboard::after,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-artboard-frame::after,
body.page-service-detail-digital-human.reference-variant-2 .service-related-card::after,
body.page-service-detail-digital-human.reference-variant-2 .footer-shell::after {
    opacity: 1;
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-copy,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-artboard,
body.page-service-detail-digital-human.reference-variant-2 .service-related-card {
    border-color: rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 34px 84px rgba(78, 129, 177, 0.18);
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-artboard-frame {
    border-color: rgba(121, 173, 214, 0.24);
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-mode-card {
    border-color: rgba(110, 161, 202, 0.18);
    background:
        linear-gradient(135deg, rgba(245, 250, 255, 0.9), rgba(220, 236, 250, 0.86)),
        rgba(233, 244, 253, 0.82);
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-mode-index {
    background: linear-gradient(145deg, rgba(111, 164, 207, 0.88), rgba(77, 132, 179, 0.96));
    color: #f7fbff;
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-copy h1,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-emphasis strong,
body.page-service-detail-digital-human.reference-variant-2 .service-related-card strong,
body.page-service-detail-digital-human.reference-variant-2 .footer-grid h3,
body.page-service-detail-digital-human.reference-variant-2 .footer-meta {
    color: #17395b;
}

body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-intro,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-body,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-detail-emphasis,
body.page-service-detail-digital-human.reference-variant-2 .digital-human-mode-copy p,
body.page-service-detail-digital-human.reference-variant-2 .service-related-card span,
body.page-service-detail-digital-human.reference-variant-2 .footer-grid a,
body.page-service-detail-digital-human.reference-variant-2 .footer-grid span {
    color: #4e7091;
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-reference-tab {
    background: rgba(96, 18, 22, 0.76);
    border-color: rgba(255, 215, 218, 0.18);
    color: #ffd8dc;
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-reference-tab.is-active {
    background: linear-gradient(135deg, #7f131c, #c72d3d);
    border-color: rgba(255, 230, 232, 0.22);
    color: #fff6f7;
}

body.page-service-detail-digital-human.reference-variant-3 .page-orb.orb-cyan {
    background:
        radial-gradient(circle, rgba(195, 43, 64, 0.24), rgba(195, 43, 64, 0));
}

body.page-service-detail-digital-human.reference-variant-3 .page-orb.orb-magenta {
    background:
        radial-gradient(circle, rgba(255, 120, 138, 0.16), rgba(255, 120, 138, 0));
}

body.page-service-detail-digital-human.reference-variant-3 .service-reference-background {
    background:
        linear-gradient(135deg, rgba(46, 8, 12, 0.98) 0%, rgba(106, 18, 28, 0.96) 52%, rgba(28, 4, 8, 0.98) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .service-reference-tail-background {
    background:
        linear-gradient(135deg, rgba(56, 9, 14, 0.98) 0%, rgba(118, 22, 32, 0.96) 50%, rgba(30, 5, 8, 0.98) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .footer-reference-background {
    background:
        linear-gradient(135deg, rgba(42, 8, 12, 0.98) 0%, rgba(92, 16, 25, 0.96) 48%, rgba(24, 4, 7, 0.98) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-copy::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(62, 11, 16, 0.96) 0%, rgba(122, 22, 33, 0.94) 58%, rgba(36, 6, 10, 0.96) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-artboard::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(44, 8, 12, 0.96) 0%, rgba(95, 17, 26, 0.94) 56%, rgba(24, 4, 7, 0.96) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-artboard-frame::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(58, 10, 15, 0.96) 0%, rgba(116, 20, 31, 0.94) 58%, rgba(34, 6, 9, 0.96) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .service-related-card::after,
body.page-service-detail-digital-human.reference-variant-3 .footer-shell::after {
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(50, 9, 14, 0.98) 0%, rgba(102, 18, 28, 0.96) 52%, rgba(28, 5, 8, 0.98) 100%);
}

body.page-service-detail-digital-human.reference-variant-3 .service-reference-background,
body.page-service-detail-digital-human.reference-variant-3 .service-reference-tail-background,
body.page-service-detail-digital-human.reference-variant-3 .footer-reference-background,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-copy::after,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-artboard::after,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-artboard-frame::after,
body.page-service-detail-digital-human.reference-variant-3 .service-related-card::after,
body.page-service-detail-digital-human.reference-variant-3 .footer-shell::after {
    opacity: 1;
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-copy,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-artboard,
body.page-service-detail-digital-human.reference-variant-3 .service-related-card {
    border-color: rgba(255, 216, 220, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 230, 232, 0.08),
        0 34px 84px rgba(37, 2, 8, 0.34);
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-artboard-frame {
    border-color: rgba(255, 218, 222, 0.14);
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-mode-card {
    border-color: rgba(255, 220, 224, 0.1);
    background:
        linear-gradient(135deg, rgba(92, 16, 24, 0.92), rgba(48, 8, 13, 0.9)),
        rgba(44, 7, 11, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 232, 234, 0.06);
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-copy h1,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-emphasis strong,
body.page-service-detail-digital-human.reference-variant-3 .service-related-card strong,
body.page-service-detail-digital-human.reference-variant-3 .footer-grid h3,
body.page-service-detail-digital-human.reference-variant-3 .footer-meta,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-mode-copy h2 {
    color: #fff3f4;
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-intro,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-body,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-detail-emphasis,
body.page-service-detail-digital-human.reference-variant-3 .digital-human-mode-copy p,
body.page-service-detail-digital-human.reference-variant-3 .service-related-card span,
body.page-service-detail-digital-human.reference-variant-3 .footer-grid a,
body.page-service-detail-digital-human.reference-variant-3 .footer-grid span {
    color: #efcfd4;
}

body.page-service-detail-digital-human.reference-variant-3 .digital-human-mode-index {
    background: linear-gradient(145deg, rgba(255, 187, 196, 0.9), rgba(235, 82, 104, 0.92));
    color: #4d0b13;
}

.service-detail-page-vton .digital-human-detail-copy,
.service-detail-page-vton .digital-human-artboard,
.service-detail-page-vton .service-usage-card {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 30px 70px rgba(43, 54, 49, 0.24);
}

body.page-service-detail-vton main,
body.page-service-detail-vton .site-footer {
    position: relative;
    z-index: 1;
}

body.page-service-detail-vton .service-detail-page-vton,
body.page-service-detail-vton .service-tail-section,
body.page-service-detail-vton .site-footer,
body.page-service-detail-vton .digital-human-detail-copy,
body.page-service-detail-vton .digital-human-artboard,
body.page-service-detail-vton .digital-human-artboard-frame,
body.page-service-detail-vton .service-usage-card,
body.page-service-detail-vton .service-related-card,
body.page-service-detail-vton .footer-shell {
    position: relative;
    isolation: isolate;
}

body.page-service-detail-vton .service-detail-page-vton > :not(.service-reference-background),
body.page-service-detail-vton .service-tail-section > :not(.service-reference-tail-background),
body.page-service-detail-vton .site-footer > :not(.footer-reference-background),
body.page-service-detail-vton .digital-human-detail-copy > *,
body.page-service-detail-vton .digital-human-artboard > *,
body.page-service-detail-vton .digital-human-artboard-frame > *,
body.page-service-detail-vton .service-usage-card > *,
body.page-service-detail-vton .service-related-card > *,
body.page-service-detail-vton .footer-shell > * {
    position: relative;
    z-index: 1;
}

body.page-service-detail-vton .service-reference-background,
body.page-service-detail-vton .service-reference-tail-background,
body.page-service-detail-vton .footer-reference-background,
body.page-service-detail-vton .digital-human-detail-copy::after,
body.page-service-detail-vton .digital-human-artboard::after,
body.page-service-detail-vton .digital-human-artboard-frame::after,
body.page-service-detail-vton .service-usage-card::after,
body.page-service-detail-vton .service-related-card::after,
body.page-service-detail-vton .footer-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2920ms cubic-bezier(0.22, 0.78, 0.18, 1);
    z-index: 0;
}

body.page-service-detail-vton .service-reference-background {
    background:
        linear-gradient(135deg, rgba(223, 235, 247, 0.96) 0%, rgba(233, 220, 211, 0.95) 46%, rgba(217, 228, 239, 0.92) 100%);
}

body.page-service-detail-vton .service-reference-tail-background {
    background:
        linear-gradient(135deg, rgba(220, 233, 246, 0.96) 0%, rgba(232, 220, 213, 0.94) 52%, rgba(214, 226, 238, 0.9) 100%);
}

body.page-service-detail-vton .footer-reference-background {
    background:
        linear-gradient(135deg, rgba(216, 230, 243, 0.96) 0%, rgba(230, 219, 213, 0.94) 48%, rgba(210, 223, 236, 0.9) 100%);
}

body.page-service-detail-vton .digital-human-detail-copy::after {
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(232, 241, 252, 0.94), rgba(238, 218, 206, 0.9)),
        rgba(230, 236, 244, 0.88);
}

body.page-service-detail-vton .digital-human-artboard::after {
    border-radius: inherit;
    background:
        linear-gradient(165deg, rgba(223, 238, 252, 0.94), rgba(235, 214, 200, 0.9)),
        rgba(227, 235, 245, 0.88);
}

body.page-service-detail-vton .digital-human-artboard-frame::after {
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(239, 245, 251, 0.94), rgba(236, 220, 208, 0.9)),
        rgba(231, 237, 244, 0.88);
}

body.page-service-detail-vton .service-usage-card::after {
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(235, 242, 250, 0.94), rgba(239, 221, 209, 0.9)),
        rgba(232, 238, 244, 0.88);
}

body.page-service-detail-vton .service-related-card::after {
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(234, 241, 248, 0.94), rgba(238, 222, 210, 0.9)),
        rgba(231, 237, 243, 0.88);
}

body.page-service-detail-vton .footer-shell::after {
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(234, 241, 248, 0.94), rgba(238, 222, 210, 0.9)),
        rgba(231, 237, 243, 0.88);
}

body.page-service-detail-vton .digital-human-detail-copy,
body.page-service-detail-vton .digital-human-artboard,
body.page-service-detail-vton .digital-human-artboard-frame,
body.page-service-detail-vton .service-usage-card,
body.page-service-detail-vton .service-related-card,
body.page-service-detail-vton .footer-shell,
body.page-service-detail-vton .footer-shell *,
body.page-service-detail-vton .digital-human-reference-tab,
body.page-service-detail-vton .service-title-suffix {
    transition:
        color 2920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        background-color 2920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        border-color 2920ms cubic-bezier(0.22, 0.78, 0.18, 1),
        box-shadow 2920ms cubic-bezier(0.22, 0.78, 0.18, 1);
}

.service-detail-page-vton .digital-human-detail-copy {
    align-self: start;
    gap: 16px;
    padding: 32px 34px;
    background:
        linear-gradient(145deg, rgba(236, 241, 238, 0.94), rgba(178, 192, 184, 0.92)),
        rgba(224, 231, 227, 0.94);
    border-color: rgba(255, 255, 255, 0.64);
}

.service-detail-page-vton .digital-human-detail-primary {
    align-self: stretch;
}

.service-detail-page-vton .digital-human-detail-shell {
    align-items: stretch;
}

.service-detail-page-vton .digital-human-detail-copy h1 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    color: #18211d;
}

.service-title-suffix {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 0.36em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(24, 33, 29, 0.68);
}

.service-detail-page-vton .digital-human-detail-intro {
    color: #2c3d34;
}

.service-detail-page-vton .digital-human-detail-body {
    color: #435449;
}

.service-detail-page-vton .digital-human-artboard {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    background:
        radial-gradient(circle at 18% 16%, rgba(114, 151, 131, 0.18), transparent 26%),
        radial-gradient(circle at 82% 20%, rgba(78, 103, 90, 0.16), transparent 24%),
        linear-gradient(165deg, rgba(222, 229, 225, 0.96), rgba(183, 195, 188, 0.94));
    border-color: rgba(255, 255, 255, 0.6);
}

.service-detail-page-vton .digital-human-detail-visual {
    align-self: stretch;
    height: 100%;
}

.service-detail-page-vton .digital-human-artboard-frame {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    background:
        linear-gradient(180deg, rgba(239, 242, 240, 0.95), rgba(199, 209, 203, 0.94)),
        rgba(225, 231, 227, 0.94);
    border: 1px dashed rgba(70, 98, 82, 0.22);
}

.service-detail-page-vton .digital-human-artboard-placeholder {
    background:
        linear-gradient(180deg, rgba(233, 238, 235, 0.96), rgba(212, 220, 216, 0.96));
}

.service-usage-section {
    padding-top: 0;
    margin-top: -10px;
}

.service-usage-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    padding: 28px 32px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 24px 56px rgba(43, 54, 49, 0.18);
}

.service-usage-card-vton {
    background:
        linear-gradient(145deg, rgba(238, 242, 239, 0.94), rgba(186, 198, 191, 0.92)),
        rgba(227, 233, 229, 0.94);
    border-color: rgba(255, 255, 255, 0.66);
}

.service-usage-card .eyebrow {
    margin: 0 0 14px;
}

.service-usage-body {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.85;
    color: #33443a;
}

body.page-service-detail-vton.reference-variant-2 .service-reference-background,
body.page-service-detail-vton.reference-variant-2 .service-reference-tail-background,
body.page-service-detail-vton.reference-variant-2 .footer-reference-background,
body.page-service-detail-vton.reference-variant-2 .digital-human-detail-copy::after,
body.page-service-detail-vton.reference-variant-2 .digital-human-artboard::after,
body.page-service-detail-vton.reference-variant-2 .digital-human-artboard-frame::after,
body.page-service-detail-vton.reference-variant-2 .service-usage-card::after,
body.page-service-detail-vton.reference-variant-2 .service-related-card::after,
body.page-service-detail-vton.reference-variant-2 .footer-shell::after,
body.page-service-detail-vton.reference-variant-3 .service-reference-background,
body.page-service-detail-vton.reference-variant-3 .service-reference-tail-background,
body.page-service-detail-vton.reference-variant-3 .footer-reference-background,
body.page-service-detail-vton.reference-variant-3 .digital-human-detail-copy::after,
body.page-service-detail-vton.reference-variant-3 .digital-human-artboard::after,
body.page-service-detail-vton.reference-variant-3 .digital-human-artboard-frame::after,
body.page-service-detail-vton.reference-variant-3 .service-usage-card::after,
body.page-service-detail-vton.reference-variant-3 .service-related-card::after,
body.page-service-detail-vton.reference-variant-3 .footer-shell::after {
    opacity: 1;
}

body.page-service-detail-vton.reference-variant-2 .digital-human-reference-tab {
    background: rgba(221, 237, 255, 0.94);
    border-color: rgba(110, 154, 208, 0.42);
    color: #2f5376;
}

body.page-service-detail-vton.reference-variant-2 .digital-human-reference-tab.is-active {
    background: linear-gradient(135deg, #5f91c8, #e0a98d);
    border-color: transparent;
    color: #fdfcff;
}

body.page-service-detail-vton.reference-variant-2 {
    --page-tail-bg:
        radial-gradient(circle at 16% 18%, rgba(123, 176, 230, 0.28), transparent 30%),
        radial-gradient(circle at 82% 14%, rgba(240, 192, 164, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(214, 231, 247, 0.98), rgba(233, 210, 194, 0.95));
}

body.page-service-detail-vton.reference-variant-2 .service-reference-background {
    background:
        linear-gradient(135deg, rgba(214, 231, 247, 0.98) 0%, rgba(233, 210, 194, 0.95) 46%, rgba(216, 228, 241, 0.94) 100%);
}

body.page-service-detail-vton.reference-variant-2 .service-reference-tail-background {
    background:
        linear-gradient(135deg, rgba(210, 229, 247, 0.98) 0%, rgba(230, 209, 196, 0.95) 52%, rgba(214, 226, 239, 0.94) 100%);
}

body.page-service-detail-vton.reference-variant-2 .footer-reference-background {
    background:
        linear-gradient(135deg, rgba(205, 225, 244, 0.98) 0%, rgba(226, 206, 194, 0.95) 48%, rgba(210, 222, 236, 0.94) 100%);
}

body.page-service-detail-vton.reference-variant-2 .page-orb.orb-cyan {
    background:
        radial-gradient(circle, rgba(103, 170, 235, 0.36), rgba(103, 170, 235, 0));
}

body.page-service-detail-vton.reference-variant-2 .page-orb.orb-magenta {
    background:
        radial-gradient(circle, rgba(236, 189, 157, 0.32), rgba(236, 189, 157, 0));
}

body.page-service-detail-vton.reference-variant-2 .digital-human-detail-copy,
body.page-service-detail-vton.reference-variant-2 .digital-human-artboard,
body.page-service-detail-vton.reference-variant-2 .service-usage-card,
body.page-service-detail-vton.reference-variant-2 .service-related-card {
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 34px 84px rgba(92, 128, 170, 0.26);
}

body.page-service-detail-vton.reference-variant-2 .digital-human-artboard-frame {
    border-color: rgba(150, 176, 206, 0.3);
}

body.page-service-detail-vton.reference-variant-2 .digital-human-detail-copy h1,
body.page-service-detail-vton.reference-variant-2 .service-usage-card .eyebrow,
body.page-service-detail-vton.reference-variant-2 .service-related-card strong,
body.page-service-detail-vton.reference-variant-2 .footer-grid h3,
body.page-service-detail-vton.reference-variant-2 .footer-meta,
body.page-service-detail-vton.reference-variant-2 .service-title-suffix {
    color: #274561;
}

body.page-service-detail-vton.reference-variant-2 .digital-human-detail-intro,
body.page-service-detail-vton.reference-variant-2 .digital-human-detail-body,
body.page-service-detail-vton.reference-variant-2 .service-usage-body,
body.page-service-detail-vton.reference-variant-2 .service-related-card span,
body.page-service-detail-vton.reference-variant-2 .footer-grid a,
body.page-service-detail-vton.reference-variant-2 .footer-grid span {
    color: #587494;
}

body.page-service-detail-vton.reference-variant-3 .digital-human-reference-tab {
    background: rgba(255, 245, 198, 0.94);
    border-color: rgba(196, 187, 114, 0.42);
    color: #6f6728;
}

body.page-service-detail-vton.reference-variant-3 .digital-human-reference-tab.is-active {
    background: linear-gradient(135deg, #f1d06d, #a7ccea);
    border-color: transparent;
    color: #36434f;
}

body.page-service-detail-vton.reference-variant-3 {
    --page-tail-bg:
        radial-gradient(circle at 16% 18%, rgba(246, 213, 116, 0.28), transparent 30%),
        radial-gradient(circle at 82% 14%, rgba(173, 214, 245, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(247, 236, 183, 0.98), rgba(214, 230, 244, 0.95));
}

body.page-service-detail-vton.reference-variant-3 .service-reference-background {
    background:
        linear-gradient(135deg, rgba(247, 236, 183, 0.98) 0%, rgba(214, 230, 244, 0.95) 46%, rgba(239, 232, 196, 0.94) 100%);
}

body.page-service-detail-vton.reference-variant-3 .service-reference-tail-background {
    background:
        linear-gradient(135deg, rgba(244, 234, 185, 0.98) 0%, rgba(212, 228, 243, 0.95) 52%, rgba(235, 228, 197, 0.94) 100%);
}

body.page-service-detail-vton.reference-variant-3 .footer-reference-background {
    background:
        linear-gradient(135deg, rgba(241, 232, 187, 0.98) 0%, rgba(209, 226, 241, 0.95) 48%, rgba(231, 225, 198, 0.94) 100%);
}

body.page-service-detail-vton.reference-variant-3 .page-orb.orb-cyan {
    background:
        radial-gradient(circle, rgba(156, 206, 245, 0.36), rgba(156, 206, 245, 0));
}

body.page-service-detail-vton.reference-variant-3 .page-orb.orb-magenta {
    background:
        radial-gradient(circle, rgba(247, 214, 118, 0.3), rgba(247, 214, 118, 0));
}

body.page-service-detail-vton.reference-variant-3 .digital-human-detail-copy::after {
    background:
        linear-gradient(145deg, rgba(248, 239, 201, 0.94), rgba(224, 234, 245, 0.9)),
        rgba(241, 237, 214, 0.88);
}

body.page-service-detail-vton.reference-variant-3 .digital-human-artboard::after {
    background:
        linear-gradient(165deg, rgba(245, 236, 194, 0.94), rgba(217, 231, 246, 0.9)),
        rgba(236, 233, 211, 0.88);
}

body.page-service-detail-vton.reference-variant-3 .digital-human-artboard-frame::after {
    background:
        linear-gradient(180deg, rgba(248, 241, 212, 0.94), rgba(223, 234, 244, 0.9)),
        rgba(240, 237, 219, 0.88);
}

body.page-service-detail-vton.reference-variant-3 .service-usage-card::after {
    background:
        linear-gradient(145deg, rgba(247, 239, 207, 0.94), rgba(222, 233, 243, 0.9)),
        rgba(239, 235, 216, 0.88);
}

body.page-service-detail-vton.reference-variant-3 .service-related-card::after {
    background:
        linear-gradient(145deg, rgba(245, 239, 211, 0.94), rgba(220, 232, 243, 0.9)),
        rgba(238, 235, 220, 0.88);
}

body.page-service-detail-vton.reference-variant-3 .digital-human-detail-copy,
body.page-service-detail-vton.reference-variant-3 .digital-human-artboard,
body.page-service-detail-vton.reference-variant-3 .service-usage-card,
body.page-service-detail-vton.reference-variant-3 .service-related-card {
    border-color: rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 34px 84px rgba(183, 170, 111, 0.24);
}

body.page-service-detail-vton.reference-variant-3 .digital-human-artboard-frame {
    border-color: rgba(191, 182, 131, 0.28);
}

body.page-service-detail-vton.reference-variant-3 .digital-human-detail-copy h1,
body.page-service-detail-vton.reference-variant-3 .service-usage-card .eyebrow,
body.page-service-detail-vton.reference-variant-3 .service-related-card strong,
body.page-service-detail-vton.reference-variant-3 .footer-grid h3,
body.page-service-detail-vton.reference-variant-3 .footer-meta,
body.page-service-detail-vton.reference-variant-3 .service-title-suffix {
    color: #5d5527;
}

body.page-service-detail-vton.reference-variant-3 .digital-human-detail-intro,
body.page-service-detail-vton.reference-variant-3 .digital-human-detail-body,
body.page-service-detail-vton.reference-variant-3 .service-usage-body,
body.page-service-detail-vton.reference-variant-3 .service-related-card span,
body.page-service-detail-vton.reference-variant-3 .footer-grid a,
body.page-service-detail-vton.reference-variant-3 .footer-grid span {
    color: #6b7258;
}

.service-detail-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.service-detail-shell-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 1040px;
    margin-inline: auto;
}

.service-detail-visual {
    display: flex;
}

.service-detail-copy,
.service-detail-frame,
.service-related-card {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 22px 52px rgba(158, 52, 109, 0.12);
    backdrop-filter: blur(12px);
}

.service-detail-copy {
    padding: 34px;
}

.service-detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 0.94;
}

.service-detail-intro,
.service-detail-body {
    margin: 0 0 14px;
    font-size: 1.02rem;
    line-height: 1.82;
}

.service-detail-emphasis {
    margin: 0 0 14px;
    font-size: 1.06rem;
    line-height: 1.72;
}

.service-detail-emphasis strong {
    font-weight: 800;
}

.service-detail-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 18px;
}

.service-detail-link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #f8fbff;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 16px 32px rgba(8, 24, 48, 0.16);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-detail-link-pill:hover,
.service-detail-link-pill:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 22px 38px rgba(8, 24, 48, 0.22);
}

.service-detail-link-pill-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0 6px 0 4px;
    padding: 0 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #f8fbff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    vertical-align: middle;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 24px rgba(8, 24, 48, 0.14);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-detail-link-pill-inline:hover,
.service-detail-link-pill-inline:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 16px 28px rgba(8, 24, 48, 0.18);
}

.service-detail-page-web-data-extraction {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(560px, calc(100svh - 136px), 760px);
    background:
        radial-gradient(circle at 14% 18%, rgba(58, 226, 255, 0.14), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(96, 130, 255, 0.11), transparent 22%),
        radial-gradient(circle at 50% 86%, rgba(18, 66, 106, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(8, 18, 28, 0.99), rgba(3, 7, 12, 0.998));
}

.service-detail-page-web-data-extraction.service-blank-page::before {
    background:
        radial-gradient(circle at 12% 22%, rgba(58, 226, 255, 0.18), transparent 22%),
        radial-gradient(circle at 86% 18%, rgba(102, 134, 255, 0.14), transparent 20%),
        radial-gradient(circle at 52% 80%, rgba(15, 80, 122, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(7, 17, 27, 0.985), rgba(3, 7, 12, 0.998));
}

.service-detail-page-web-data-extraction.service-blank-page::after {
    display: none;
}

body.page-service-detail-web-data-extraction {
    background:
        radial-gradient(circle at 14% 10%, rgba(55, 214, 255, 0.08), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(101, 132, 255, 0.07), transparent 20%),
        linear-gradient(180deg, #08111a 0%, #03070c 100%);
    background-attachment: fixed;
}

body.page-service-detail-web-data-extraction::before {
    background:
        linear-gradient(135deg, rgba(65, 224, 255, 0.028), transparent 30%),
        linear-gradient(315deg, rgba(115, 146, 255, 0.026), transparent 30%);
}

body.page-service-detail-web-data-extraction .page-orb.orb-cyan {
    background: radial-gradient(circle, rgba(76, 223, 255, 0.12), rgba(76, 223, 255, 0));
}

body.page-service-detail-web-data-extraction .page-orb.orb-magenta {
    background: radial-gradient(circle, rgba(104, 132, 255, 0.08), rgba(104, 132, 255, 0));
}

body.page-service-detail-web-data-extraction .page-grid {
    background-image:
        linear-gradient(rgba(196, 231, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 231, 255, 0.028) 1px, transparent 1px);
}

body.page-service-detail-web-data-extraction main,
body.page-service-detail-web-data-extraction .site-footer {
    position: relative;
    z-index: 1;
}

body.page-service-detail-web-data-extraction .service-detail-page-web-data-extraction,
body.page-service-detail-web-data-extraction .service-tail-section,
body.page-service-detail-web-data-extraction .site-footer {
    background: transparent;
}

body.page-service-detail-web-data-extraction .service-matrix-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    filter: saturate(1.18) brightness(1.16);
    mix-blend-mode: screen;
}

body.page-service-detail-web-data-extraction .service-extraction-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
}

.service-extraction-scene::before {
    content: "";
    position: absolute;
    inset: 8% 4% 10% 4%;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(109, 255, 238, 0.15), transparent 18%),
        radial-gradient(circle at 50% 50%, transparent 34%, rgba(84, 180, 255, 0.12) 35%, transparent 37%),
        radial-gradient(circle at 50% 50%, transparent 54%, rgba(118, 255, 231, 0.1) 55%, transparent 57%),
        radial-gradient(circle at 50% 50%, transparent 68%, rgba(55, 214, 255, 0.08) 69%, transparent 70%);
    opacity: 0.82;
    filter: blur(0.2px);
    animation: service-code-orbit-pulse 10s ease-in-out infinite;
}

.service-code-orbit {
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(72vw, 1040px);
    aspect-ratio: 1;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    opacity: 0.52;
    background:
        conic-gradient(from 92deg, transparent 0deg, rgba(91, 255, 236, 0.22) 18deg, transparent 44deg, transparent 120deg, rgba(72, 174, 255, 0.16) 150deg, transparent 184deg, transparent 360deg);
    -webkit-mask: radial-gradient(circle, transparent 0 57%, #000 58% 60%, transparent 61%);
    mask: radial-gradient(circle, transparent 0 57%, #000 58% 60%, transparent 61%);
    animation: service-code-orbit-spin 18s linear infinite;
}

.service-code-orbit-b {
    width: min(86vw, 1240px);
    opacity: 0.34;
    background:
        conic-gradient(from 218deg, transparent 0deg, rgba(78, 196, 255, 0.18) 24deg, transparent 58deg, transparent 190deg, rgba(121, 255, 225, 0.14) 220deg, transparent 252deg, transparent 360deg);
    animation-duration: 28s;
    animation-direction: reverse;
}

.service-code-scanline {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(78vw, 1120px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(122, 255, 235, 0.36), transparent);
    box-shadow: 0 0 28px rgba(69, 230, 255, 0.18);
    opacity: 0.58;
    animation: service-code-scanline 5.8s ease-in-out infinite;
}

.service-detail-page-web-data-extraction > :not(.service-matrix-canvas):not(.service-extraction-scene) {
    position: relative;
    z-index: 2;
}

.service-detail-page-web-data-extraction .service-detail-shell-single {
    width: 100%;
}

.service-detail-page-web-data-extraction .service-detail-copy,
.service-detail-page-web-data-extraction .service-related-card {
    border-color: rgba(149, 229, 255, 0.2);
    background:
        linear-gradient(145deg, rgba(10, 20, 31, 0.3), rgba(13, 28, 42, 0.22)),
        rgba(7, 15, 24, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(219, 246, 255, 0.08),
        0 22px 58px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.service-detail-page-web-data-extraction .service-detail-copy {
    width: min(760px, 100%);
    justify-self: center;
    align-self: center;
    padding: clamp(26px, 3vw, 34px) clamp(28px, 4vw, 42px);
    text-align: center;
    justify-items: center;
}

.service-detail-page-web-data-extraction .service-detail-copy .lead,
.service-detail-page-web-data-extraction .service-detail-intro,
.service-detail-page-web-data-extraction .service-detail-emphasis,
.service-detail-page-web-data-extraction .service-detail-body {
    max-width: 28rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.service-detail-page-web-data-extraction .service-detail-copy .lead,
.service-detail-page-web-data-extraction .service-detail-intro,
.service-detail-page-web-data-extraction .service-detail-body {
    line-height: 1.78;
}

.service-detail-page-web-data-extraction .service-detail-copy h1 {
    margin-bottom: 14px;
}

.service-detail-page-web-data-extraction .service-detail-intro,
.service-detail-page-web-data-extraction .service-detail-body,
.service-detail-page-web-data-extraction .service-detail-emphasis {
    margin-bottom: 12px;
}

.service-detail-page-web-data-extraction .tag-row {
    margin-top: 18px;
    justify-content: center;
}

.service-detail-page-web-data-extraction .service-detail-copy h1,
.service-detail-page-web-data-extraction .service-related-card strong {
    color: #effaff;
}

.service-detail-page-web-data-extraction .service-detail-copy .eyebrow,
.service-detail-page-web-data-extraction .service-detail-copy .lead,
.service-detail-page-web-data-extraction .service-detail-intro,
.service-detail-page-web-data-extraction .service-detail-body,
.service-detail-page-web-data-extraction .service-related-card span {
    color: #9fb7c8;
}

.service-detail-page-web-data-extraction .service-detail-emphasis {
    color: #c8f8ff;
    line-height: 1.86;
}

.service-detail-page-web-data-extraction .service-detail-emphasis strong {
    color: #7bffed;
}

body.page-service-detail-web-data-extraction .section-head .eyebrow {
    color: rgba(123, 255, 237, 0.78);
}

body.page-service-detail-web-data-extraction .section-head h2 {
    color: #effaff;
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
}

body.page-service-detail-web-data-extraction .service-related-card {
    border-color: rgba(149, 229, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(10, 20, 31, 0.92), rgba(14, 30, 45, 0.9)),
        rgba(8, 15, 24, 0.9);
}

body.page-service-detail-web-data-extraction .service-related-card strong {
    color: #eafff9;
}

body.page-service-detail-web-data-extraction .service-related-card span {
    color: rgba(178, 211, 209, 0.84);
}

body.page-service-detail-web-data-extraction .service-related-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(219, 246, 255, 0.08),
        0 34px 78px rgba(0, 0, 0, 0.48);
}

body.page-service-detail-web-data-extraction .button.ghost {
    background: rgba(236, 248, 255, 0.92);
    border-color: rgba(199, 236, 255, 0.72);
    color: #0f1b28;
}

body.page-service-detail-web-data-extraction .button.primary {
    background:
        linear-gradient(135deg, rgba(72, 126, 255, 0.96), rgba(22, 214, 255, 0.92));
    border-color: rgba(119, 223, 255, 0.38);
}

body.page-service-detail-web-data-extraction .service-tail-section {
    position: relative;
    z-index: 2;
    background: transparent;
}

body.page-service-detail-web-data-extraction .site-footer {
    position: relative;
    z-index: 2;
    background: transparent;
}

body.page-service-detail-web-data-extraction .footer-shell {
    background:
        linear-gradient(135deg, rgba(7, 14, 22, 0.78), rgba(10, 20, 30, 0.68)),
        rgba(7, 16, 24, 0.52);
    border-color: rgba(181, 255, 239, 0.16);
    backdrop-filter: blur(16px);
}

.service-detail-page-custom-tools {
    display: flex;
    align-items: center;
    min-height: clamp(560px, calc(100svh - 136px), 760px);
    background:
        radial-gradient(circle at 14% 18%, rgba(74, 255, 196, 0.16), transparent 26%),
        radial-gradient(circle at 82% 20%, rgba(78, 214, 255, 0.12), transparent 24%),
        radial-gradient(circle at 52% 82%, rgba(109, 255, 169, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(8, 13, 20, 0.995), rgba(4, 7, 11, 0.998));
}

.service-detail-page-custom-tools.service-blank-page::before {
    background:
        radial-gradient(circle at 16% 22%, rgba(74, 255, 196, 0.14), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(78, 214, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(8, 14, 22, 0.99), rgba(4, 7, 11, 0.998));
}

.service-detail-page-custom-tools.service-blank-page::after {
    display: none;
}

body.page-service-detail-custom-tools {
    background:
        radial-gradient(circle at 14% 12%, rgba(74, 255, 196, 0.06), transparent 20%),
        radial-gradient(circle at 86% 16%, rgba(78, 214, 255, 0.05), transparent 22%),
        linear-gradient(180deg, #081019 0%, #04070b 100%);
}

body.page-service-detail-custom-tools::before {
    background:
        linear-gradient(135deg, rgba(74, 255, 196, 0.022), transparent 30%),
        linear-gradient(315deg, rgba(78, 214, 255, 0.02), transparent 30%);
}

body.page-service-detail-custom-tools .page-grid {
    background-image:
        linear-gradient(rgba(196, 243, 232, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 243, 232, 0.022) 1px, transparent 1px);
}

body.page-service-detail-custom-tools .page-orb.orb-cyan {
    background: radial-gradient(circle, rgba(78, 214, 255, 0.08), rgba(78, 214, 255, 0));
}

body.page-service-detail-custom-tools .page-orb.orb-magenta {
    background: radial-gradient(circle, rgba(74, 255, 196, 0.06), rgba(74, 255, 196, 0));
}

.service-detail-page-custom-tools .service-detail-copy,
.service-detail-page-custom-tools .service-detail-frame,
body.page-service-detail-custom-tools .service-related-card {
    border-color: rgba(159, 246, 224, 0.14);
    background:
        linear-gradient(145deg, rgba(9, 17, 26, 0.92), rgba(12, 24, 34, 0.9)),
        rgba(7, 12, 18, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(219, 255, 246, 0.06),
        0 34px 76px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
}

.service-detail-page-custom-tools .service-detail-copy {
    padding: 40px;
}

.service-detail-page-custom-tools .service-detail-copy .lead,
.service-detail-page-custom-tools .service-detail-intro,
.service-detail-page-custom-tools .service-detail-emphasis,
.service-detail-page-custom-tools .service-detail-body {
    max-width: 39rem;
    word-break: keep-all;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.service-detail-page-custom-tools .service-detail-copy h1,
body.page-service-detail-custom-tools .service-related-card strong {
    color: #f1fbf8;
}

.service-detail-page-custom-tools .service-detail-copy .eyebrow {
    color: rgba(122, 255, 220, 0.82);
}

.service-detail-page-custom-tools .service-detail-copy .lead,
.service-detail-page-custom-tools .service-detail-intro,
.service-detail-page-custom-tools .service-detail-body,
body.page-service-detail-custom-tools .service-related-card span {
    color: #a2b9c3;
}

.service-detail-page-custom-tools .service-detail-emphasis {
    color: #d5fff4;
    line-height: 1.86;
}

.service-detail-page-custom-tools .service-detail-emphasis strong {
    color: #83ffd9;
}

body.page-service-detail-custom-tools .button.ghost {
    background: rgba(240, 252, 248, 0.94);
    border-color: rgba(220, 247, 240, 0.72);
    color: #101c18;
}

body.page-service-detail-custom-tools .button.primary {
    background:
        linear-gradient(135deg, rgba(62, 220, 168, 0.96), rgba(68, 158, 255, 0.92));
    border-color: rgba(148, 255, 228, 0.28);
}

body.page-service-detail-custom-tools .section-head .eyebrow {
    color: rgba(131, 255, 217, 0.74);
}

body.page-service-detail-custom-tools .section-head h2 {
    color: #f1fbf8;
}

body.page-service-detail-custom-tools .service-tail-section {
    background:
        radial-gradient(circle at 14% 18%, rgba(74, 255, 196, 0.06), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(78, 214, 255, 0.05), transparent 22%),
        linear-gradient(180deg, rgba(5, 11, 16, 0.995), rgba(3, 6, 9, 0.998));
}

body.page-service-detail-custom-tools .site-footer {
    background:
        radial-gradient(circle at 12% 12%, rgba(74, 255, 196, 0.05), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(78, 214, 255, 0.04), transparent 22%),
        linear-gradient(180deg, rgba(5, 10, 15, 0.995), rgba(3, 6, 9, 0.998));
}

body.page-service-detail-custom-tools .footer-shell {
    background:
        linear-gradient(135deg, rgba(7, 13, 19, 0.96), rgba(10, 18, 26, 0.95)),
        #070d13;
    border-color: rgba(165, 255, 229, 0.08);
}

.custom-tools-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(74, 255, 196, 0.14), transparent 24%),
        radial-gradient(circle at 78% 20%, rgba(78, 214, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(9, 17, 26, 0.98), rgba(7, 12, 18, 0.995));
    box-shadow:
        inset 0 1px 0 rgba(220, 255, 246, 0.05),
        0 34px 80px rgba(0, 0, 0, 0.5);
    isolation: isolate;
}

.custom-tools-grid,
.custom-tools-editor-shell,
.custom-tools-editor-topbar,
.custom-tools-editor-dot,
.custom-tools-editor-tab,
.custom-tools-editor-sidebar,
.custom-tools-editor-minimap,
.custom-tools-line {
    position: absolute;
    pointer-events: none;
}

.custom-tools-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 243, 232, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 243, 232, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.56;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.82), transparent 88%);
}

.custom-tools-editor-shell {
    inset: 12% 10% 14%;
    border: 1px solid rgba(178, 255, 232, 0.14);
    background:
        linear-gradient(180deg, rgba(14, 24, 36, 0.96), rgba(10, 17, 26, 0.98)),
        rgba(9, 15, 22, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(223, 255, 249, 0.06),
        0 30px 68px rgba(0, 0, 0, 0.34);
    border-radius: 24px;
}

.custom-tools-editor-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22% 14%, rgba(74, 255, 196, 0.08), transparent 24%),
        radial-gradient(circle at 82% 82%, rgba(78, 214, 255, 0.08), transparent 22%);
    pointer-events: none;
}

.custom-tools-editor-topbar {
    left: 10%;
    right: 10%;
    top: 12%;
    height: 13%;
    border-radius: 24px 24px 0 0;
    background:
        linear-gradient(180deg, rgba(20, 31, 43, 0.98), rgba(14, 21, 31, 0.96)),
        rgba(14, 21, 31, 0.96);
    border-bottom: 1px solid rgba(178, 255, 232, 0.08);
}

.custom-tools-editor-dot {
    top: calc(12% + 18px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.custom-tools-editor-dot-a {
    left: calc(10% + 20px);
    background: rgba(255, 111, 111, 0.84);
}

.custom-tools-editor-dot-b {
    left: calc(10% + 40px);
    background: rgba(255, 213, 91, 0.84);
}

.custom-tools-editor-dot-c {
    left: calc(10% + 60px);
    background: rgba(112, 255, 171, 0.84);
}

.custom-tools-editor-tab {
    top: calc(12% + 12px);
    height: 28px;
    border-radius: 10px 10px 0 0;
    background:
        linear-gradient(180deg, rgba(30, 50, 67, 0.95), rgba(18, 29, 40, 0.94)),
        rgba(18, 29, 40, 0.94);
    border: 1px solid rgba(178, 255, 232, 0.1);
    border-bottom: none;
}

.custom-tools-editor-tab-a {
    left: calc(10% + 108px);
    width: 22%;
}

.custom-tools-editor-tab-b {
    left: calc(10% + 108px + 22% + 10px);
    width: 18%;
    opacity: 0.82;
}

.custom-tools-editor-tab-c {
    left: calc(10% + 108px + 22% + 18% + 20px);
    width: 14%;
    opacity: 0.66;
}

.custom-tools-editor-sidebar {
    left: 10%;
    top: calc(12% + 13%);
    bottom: 14%;
    width: 13%;
    border-right: 1px solid rgba(178, 255, 232, 0.08);
    background:
        linear-gradient(180deg, rgba(13, 22, 31, 0.72), rgba(9, 15, 22, 0.78)),
        rgba(9, 15, 22, 0.76);
}

.custom-tools-editor-sidebar::before,
.custom-tools-editor-sidebar::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    height: 8px;
    border-radius: 999px;
    background: rgba(170, 255, 233, 0.18);
}

.custom-tools-editor-sidebar::before {
    top: 18%;
}

.custom-tools-editor-sidebar::after {
    top: 28%;
}

.custom-tools-editor-minimap {
    right: calc(10% + 16px);
    top: calc(12% + 18%);
    bottom: calc(14% + 16px);
    width: 6%;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(151, 242, 220, 0.1), rgba(151, 242, 220, 0.02)),
        rgba(17, 27, 38, 0.62);
    border: 1px solid rgba(178, 255, 232, 0.08);
}

.custom-tools-line {
    left: calc(10% + 18%);
    height: 10px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(108, 255, 210, 0.72), rgba(86, 217, 255, 0.54) 55%, rgba(255, 255, 255, 0.12));
    box-shadow: 0 0 18px rgba(86, 217, 255, 0.09);
}

.custom-tools-line-1 {
    top: calc(12% + 23%);
    width: 42%;
}

.custom-tools-line-2 {
    top: calc(12% + 31%);
    width: 56%;
}

.custom-tools-line-3 {
    top: calc(12% + 39%);
    width: 34%;
}

.custom-tools-line-4 {
    top: calc(12% + 47%);
    width: 62%;
}

.custom-tools-line-5 {
    top: calc(12% + 55%);
    width: 45%;
}

.custom-tools-line-6 {
    top: calc(12% + 63%);
    width: 58%;
}

.custom-tools-line-7 {
    top: calc(12% + 71%);
    width: 30%;
}

body.page-service-detail-ai-model {
    --page-tail-bg:
        radial-gradient(circle at 18% 16%, rgba(87, 255, 208, 0.13), transparent 26%),
        radial-gradient(circle at 84% 12%, rgba(72, 152, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #06111c 0%, #03070d 100%);
    background:
        radial-gradient(circle at 12% 18%, rgba(57, 255, 198, 0.13), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(73, 138, 255, 0.13), transparent 26%),
        linear-gradient(180deg, #06111c 0%, #03070d 100%);
}

body.page-service-detail-ai-model main {
    min-height: 100svh;
    background:
        radial-gradient(circle at 14% 22%, rgba(57, 255, 198, 0.08), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(73, 138, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #06111c 0%, #03070d 100%);
}

.service-detail-page-ai-model {
    background:
        radial-gradient(circle at 18% 20%, rgba(71, 255, 204, 0.20), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(76, 155, 255, 0.18), transparent 26%),
        radial-gradient(circle at 48% 78%, rgba(118, 255, 171, 0.10), transparent 34%),
        linear-gradient(135deg, rgba(5, 18, 30, 0.99), rgba(4, 10, 18, 0.998));
}

.service-detail-page-ai-model.service-blank-page::before {
    background:
        linear-gradient(90deg, rgba(78, 255, 208, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(78, 255, 208, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 46%, rgba(55, 255, 205, 0.08), transparent 36%);
    background-size: 54px 54px, 54px 54px, auto;
    opacity: 0.9;
}

.service-detail-page-ai-model.service-blank-page::after {
    display: none;
}

.service-detail-page-ai-model .service-detail-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: stretch;
}

.service-detail-page-ai-model .service-detail-copy,
.service-detail-page-ai-model .service-detail-frame,
body.page-service-detail-ai-model .service-related-card {
    border-color: rgba(137, 255, 219, 0.16);
    background:
        linear-gradient(145deg, rgba(9, 22, 34, 0.86), rgba(9, 18, 30, 0.80)),
        rgba(5, 12, 20, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(211, 255, 242, 0.08),
        0 34px 82px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.service-detail-page-ai-model .service-detail-copy {
    display: grid;
    align-content: start;
    padding: clamp(28px, 3.4vw, 44px);
}

.service-detail-page-ai-model .service-detail-copy h1 {
    color: #f0fff9;
    letter-spacing: -0.06em;
}

.service-detail-page-ai-model .service-detail-copy .eyebrow {
    color: rgba(113, 255, 220, 0.82);
}

.service-detail-page-ai-model .service-detail-copy .lead {
    max-width: 30rem;
    color: #dffdf3;
    font-size: clamp(1.18rem, 1.7vw, 1.42rem);
    line-height: 1.66;
    font-weight: 700;
    word-break: keep-all;
    text-wrap: pretty;
}

.service-detail-page-ai-model .service-detail-intro,
.service-detail-page-ai-model .service-detail-body,
body.page-service-detail-ai-model .service-related-card span {
    color: #a6bdc8;
    word-break: keep-all;
    text-wrap: pretty;
}

.service-detail-page-ai-model .service-detail-emphasis {
    color: #d8fff5;
    line-height: 1.86;
    word-break: keep-all;
    text-wrap: pretty;
}

.service-detail-page-ai-model .service-detail-emphasis strong {
    color: #71ffdc;
    font-weight: 800;
}

.ai-model-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 10px 0 4px;
}

.ai-model-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(130, 255, 219, 0.13);
    background:
        radial-gradient(circle at 16% 0%, rgba(103, 255, 219, 0.10), transparent 36%),
        linear-gradient(145deg, rgba(15, 33, 48, 0.78), rgba(9, 18, 28, 0.66));
}

.ai-model-feature-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(113, 255, 220, 0.58), transparent);
}

.ai-model-feature-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(113, 255, 220, 0.72);
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.ai-model-feature-card h2 {
    margin: 0 0 8px;
    color: #effff9;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.ai-model-feature-card p {
    margin: 0;
    color: #9eb8c3;
    font-size: 0.9rem;
    line-height: 1.65;
    word-break: keep-all;
}

.service-detail-page-ai-model .service-detail-frame {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

.ai-model-visual-card {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 46%, rgba(90, 255, 217, 0.18), transparent 28%),
        radial-gradient(circle at 24% 26%, rgba(76, 147, 255, 0.12), transparent 24%),
        radial-gradient(circle at 78% 76%, rgba(104, 255, 176, 0.10), transparent 28%),
        linear-gradient(160deg, rgba(8, 23, 36, 0.94), rgba(3, 9, 17, 0.98));
}

.ai-model-visual-card::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 28px;
    border: 1px solid rgba(116, 255, 220, 0.12);
    background-image:
        linear-gradient(rgba(116, 255, 220, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 255, 220, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.ai-model-core {
    position: relative;
    z-index: 2;
    width: min(250px, 48vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(118, 255, 221, 0.35);
    background:
        radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.58), transparent 18%),
        radial-gradient(circle, rgba(93, 255, 218, 0.32), rgba(20, 120, 122, 0.08) 58%, transparent 68%);
    box-shadow:
        0 0 42px rgba(74, 255, 214, 0.22),
        0 0 100px rgba(47, 135, 255, 0.16),
        inset 0 0 40px rgba(149, 255, 225, 0.18);
}

.ai-model-core strong {
    color: #effff9;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(3.4rem, 7vw, 5.6rem);
    letter-spacing: -0.12em;
    text-shadow: 0 0 24px rgba(92, 255, 218, 0.42);
}

.ai-model-core-ring,
.ai-model-core-node,
.ai-model-flow,
.ai-model-signal {
    position: absolute;
    pointer-events: none;
}

.ai-model-core-ring {
    inset: -34px;
    border-radius: 50%;
    border: 1px solid rgba(112, 255, 222, 0.18);
    animation: ai-model-spin 22s linear infinite;
}

.ai-model-core-ring-b {
    inset: -72px;
    border-color: rgba(85, 155, 255, 0.14);
    animation-duration: 34s;
    animation-direction: reverse;
}

.ai-model-core-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #71ffdc;
    box-shadow: 0 0 18px rgba(113, 255, 220, 0.68);
}

.ai-model-core-node-a {
    top: 18%;
    right: 4%;
}

.ai-model-core-node-b {
    left: 2%;
    bottom: 26%;
}

.ai-model-core-node-c {
    right: 18%;
    bottom: 0;
}

.ai-model-flow {
    z-index: 1;
    display: grid;
    gap: 14px;
    width: min(150px, 26vw);
}

.ai-model-flow-left {
    left: 8%;
    top: 22%;
}

.ai-model-flow-right {
    right: 8%;
    bottom: 20%;
}

.ai-model-flow span {
    display: inline-flex;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(117, 255, 220, 0.14);
    background: rgba(7, 23, 35, 0.66);
    color: rgba(218, 255, 246, 0.84);
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.ai-model-signal {
    width: 44%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(113, 255, 220, 0.54), transparent);
    filter: drop-shadow(0 0 8px rgba(113, 255, 220, 0.32));
    animation: ai-model-pulse 3.8s ease-in-out infinite;
}

.ai-model-signal-a {
    --signal-rotate: 10deg;
    left: 12%;
    top: 46%;
    transform: rotate(var(--signal-rotate));
}

.ai-model-signal-b {
    --signal-rotate: -12deg;
    right: 12%;
    top: 54%;
    transform: rotate(var(--signal-rotate));
    animation-delay: -1.8s;
}

body.page-service-detail-ai-model .section-head .eyebrow {
    color: rgba(113, 255, 220, 0.76);
}

body.page-service-detail-ai-model .section-head h2,
body.page-service-detail-ai-model .service-related-card strong,
body.page-service-detail-ai-model .footer-grid h3,
body.page-service-detail-ai-model .footer-meta {
    color: #effff9;
}

body.page-service-detail-ai-model .service-tail-section,
body.page-service-detail-ai-model .site-footer {
    background:
        radial-gradient(circle at 16% 18%, rgba(64, 255, 205, 0.10), transparent 30%),
        radial-gradient(circle at 84% 10%, rgba(71, 147, 255, 0.10), transparent 26%),
        linear-gradient(180deg, rgba(3, 9, 16, 0.995), rgba(2, 5, 10, 0.998));
}

body.page-service-detail-ai-model .footer-shell {
    border-color: rgba(137, 255, 219, 0.12);
    background:
        linear-gradient(145deg, rgba(8, 20, 30, 0.92), rgba(5, 11, 18, 0.94)),
        rgba(5, 12, 18, 0.92);
}

body.page-service-detail-ai-model .footer-brand p,
body.page-service-detail-ai-model .footer-grid a,
body.page-service-detail-ai-model .footer-grid span {
    color: #9eb8c3;
}

body.page-service-detail-ai-model .button.ghost {
    background: rgba(235, 255, 249, 0.94);
    border-color: rgba(195, 255, 238, 0.72);
    color: #07131d;
}

body.page-service-detail-ai-model .button.primary {
    background:
        linear-gradient(135deg, rgba(70, 238, 184, 0.96), rgba(61, 145, 255, 0.92));
    border-color: rgba(141, 255, 222, 0.3);
}

@keyframes ai-model-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ai-model-pulse {
    0%,
    100% {
        opacity: 0.32;
        transform: translateY(0) scaleX(0.92) rotate(var(--signal-rotate, 0deg));
    }
    50% {
        opacity: 1;
        transform: translateY(-4px) scaleX(1.08) rotate(var(--signal-rotate, 0deg));
    }
}

.service-detail-page-ai-image {
    background:
        radial-gradient(circle at 14% 18%, rgba(118, 175, 255, 0.28), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(28, 102, 180, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(18, 73, 138, 0.98), rgba(7, 40, 88, 0.98));
}

.service-detail-page-ai-image::before {
    background:
        radial-gradient(circle at 16% 24%, rgba(118, 175, 255, 0.24), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(27, 102, 180, 0.20), transparent 26%),
        linear-gradient(180deg, rgba(18, 73, 138, 0.98), rgba(7, 40, 88, 0.98));
}

.service-detail-page-ai-image::after {
    display: none;
}

body.page-service-detail-ai-image {
    background:
        radial-gradient(circle at 12% 14%, rgba(102, 174, 255, 0.18), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(33, 112, 204, 0.16), transparent 26%),
        linear-gradient(180deg, #10396b 0%, #08264f 100%);
}

body.page-service-detail-ai-image::before {
    background:
        linear-gradient(135deg, rgba(133, 196, 255, 0.10), transparent 32%),
        linear-gradient(315deg, rgba(44, 118, 205, 0.10), transparent 28%);
}

body.page-service-detail-ai-image .page-orb.orb-cyan {
    background: radial-gradient(circle, rgba(117, 194, 255, 0.28), rgba(117, 194, 255, 0));
}

body.page-service-detail-ai-image .page-orb.orb-magenta {
    background: radial-gradient(circle, rgba(36, 111, 198, 0.24), rgba(36, 111, 198, 0));
}

body.page-service-detail-ai-image .page-grid {
    background-image:
        linear-gradient(rgba(214, 234, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 234, 255, 0.035) 1px, transparent 1px);
}

.service-detail-page-ai-image .service-detail-copy,
.service-detail-page-ai-image .service-detail-frame,
.service-detail-page-ai-image .service-related-card {
    border-color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.94)),
        rgba(248, 251, 255, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 24px 56px rgba(5, 24, 58, 0.24);
}

.service-detail-page-ai-image .service-detail-copy h1,
.service-detail-page-ai-image .service-related-card strong {
    color: #10243e;
}

.service-detail-page-ai-image .service-detail-copy .eyebrow,
.service-detail-page-ai-image .service-detail-copy .lead,
.service-detail-page-ai-image .service-detail-intro,
.service-detail-page-ai-image .service-detail-body,
.service-detail-page-ai-image .service-related-card span {
    color: #416182;
}

.service-detail-page-ai-image .service-detail-emphasis {
    color: #1f436f;
}

.service-detail-page-ai-image .service-detail-link-pill {
    border-color: rgba(20, 76, 142, 0.22);
    background: rgba(22, 94, 179, 0.08);
    color: #123c70;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 16px 34px rgba(9, 36, 76, 0.10);
}

.service-detail-page-ai-image .service-detail-link-pill:hover,
.service-detail-page-ai-image .service-detail-link-pill:focus-visible {
    background: rgba(26, 104, 196, 0.14);
    border-color: rgba(20, 76, 142, 0.34);
    color: #0b2f59;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 20px 42px rgba(9, 36, 76, 0.16);
}

.service-detail-page-ai-image .service-detail-link-pill-inline {
    border-color: rgba(20, 76, 142, 0.22);
    background: rgba(22, 94, 179, 0.08);
    color: #123c70;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 12px 24px rgba(9, 36, 76, 0.10);
}

.service-detail-page-ai-image .service-detail-link-pill-inline:hover,
.service-detail-page-ai-image .service-detail-link-pill-inline:focus-visible {
    background: rgba(26, 104, 196, 0.14);
    border-color: rgba(20, 76, 142, 0.34);
    color: #0b2f59;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 16px 28px rgba(9, 36, 76, 0.16);
}

.service-detail-page-ai-video {
    background:
        radial-gradient(ellipse at 12% 14%, rgba(255, 58, 126, 0.40), transparent 32%),
        radial-gradient(ellipse at 90% 18%, rgba(48, 219, 255, 0.34), transparent 30%),
        radial-gradient(ellipse at 60% 88%, rgba(105, 76, 255, 0.22), transparent 42%),
        linear-gradient(135deg, #070813 0%, #150715 44%, #051827 100%);
}

.service-detail-page-ai-video.service-blank-page::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        repeating-linear-gradient(135deg, rgba(255, 92, 145, 0.05) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 34%);
    background-size: 92px 92px, 92px 92px, auto, auto;
    opacity: 0.86;
}

.service-detail-page-ai-video.service-blank-page::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(0, 0, 0, 0.10)),
        radial-gradient(ellipse at 22% 28%, rgba(255, 82, 138, 0.22), transparent 28%),
        radial-gradient(ellipse at 78% 34%, rgba(80, 215, 255, 0.18), transparent 26%);
    opacity: 0.78;
}

.service-detail-page-ai-video .service-detail-copy,
.service-detail-page-ai-video .service-detail-frame,
.service-detail-page-ai-video .service-related-card {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(14, 15, 32, 0.88), rgba(30, 10, 28, 0.78)),
        rgba(7, 8, 18, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 34px 90px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 85, 142, 0.05);
    backdrop-filter: blur(24px) saturate(1.08);
}

.service-detail-page-ai-video .service-detail-copy h1,
.service-detail-page-ai-video .service-related-card strong {
    color: #fff7fb;
}

.service-detail-page-ai-video .service-detail-copy .eyebrow,
.service-detail-page-ai-video .service-detail-copy .lead,
.service-detail-page-ai-video .service-detail-intro,
.service-detail-page-ai-video .service-detail-body,
.service-detail-page-ai-video .service-related-card span {
    color: #c6d4e5;
}

.service-detail-page-ai-video .service-detail-copy .eyebrow {
    color: rgba(255, 116, 170, 0.84);
}

.service-detail-page-ai-video .service-detail-copy .lead {
    color: #ffeaf3;
}

.service-detail-page-ai-video .service-detail-emphasis {
    color: #f8f3ff;
}

.service-detail-page-ai-video .service-detail-emphasis strong {
    color: #ff79b0;
}

.service-detail-page-ai-video .service-detail-link-pill {
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(255, 94, 150, 0.18), rgba(61, 212, 255, 0.12)),
        rgba(255, 255, 255, 0.06);
    color: #fff3f8;
}

.service-detail-page-ai-video .service-detail-link-pill:hover,
.service-detail-page-ai-video .service-detail-link-pill:focus-visible {
    border-color: rgba(255, 126, 178, 0.36);
    background:
        linear-gradient(135deg, rgba(255, 94, 150, 0.28), rgba(61, 212, 255, 0.18)),
        rgba(255, 255, 255, 0.09);
}

.service-detail-page-ai-video .service-detail-frame {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

.service-detail-page-ai-video .service-detail-frame:not(.has-media)::before,
.service-detail-page-ai-video .service-detail-frame:not(.has-media)::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.service-detail-page-ai-video .service-detail-frame:not(.has-media)::before {
    inset: 40px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(ellipse at 28% 26%, rgba(255, 73, 137, 0.22), transparent 30%),
        radial-gradient(ellipse at 72% 70%, rgba(58, 208, 255, 0.18), transparent 34%);
    background-size: 44px 44px, 44px 44px, auto, auto;
}

.service-detail-page-ai-video .service-detail-frame:not(.has-media)::after {
    left: 10%;
    right: 10%;
    top: 48%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 165, 0.54), rgba(85, 222, 255, 0.42), transparent);
    box-shadow:
        0 0 28px rgba(255, 93, 150, 0.28),
        0 0 46px rgba(63, 214, 255, 0.16);
    transform: rotate(-4deg);
}

body.page-service-detail-ai-video .service-tail-section {
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 76, 132, 0.16), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(54, 211, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(8, 8, 18, 0.99), rgba(5, 6, 14, 0.998));
}

body.page-service-detail-ai-video .site-footer {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 90, 152, 0.12), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(70, 210, 255, 0.10), transparent 22%),
        linear-gradient(180deg, rgba(7, 8, 18, 0.995), rgba(4, 5, 12, 0.998));
}

body.page-service-detail-ai-video .footer-shell {
    background:
        linear-gradient(135deg, rgba(15, 14, 30, 0.92), rgba(32, 10, 30, 0.88)),
        #080913;
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff4f7;
}

body.page-service-detail-ai-video .footer-brand p,
body.page-service-detail-ai-video .footer-grid span,
body.page-service-detail-ai-video .footer-grid a {
    color: rgba(255, 233, 239, 0.8);
}

body.page-service-detail-ai-video .footer-grid h3,
body.page-service-detail-ai-video .footer-meta {
    color: #fff7f9;
}

body.page-service-detail-ai-image .service-tail-section {
    background:
        radial-gradient(circle at 16% 18%, rgba(116, 196, 255, 0.16), transparent 30%),
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #07172b 0%, #081a30 100%);
}

body.page-service-detail-ai-image .service-tail-section .section-head h2 {
    color: #f5fbff;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

body.page-service-detail-ai-image .service-tail-section .service-related-card {
    border-color: rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.92)),
        rgba(246, 251, 255, 0.92);
}

body.page-service-detail-ai-image .service-tail-section .service-related-card strong {
    color: #10243e;
}

body.page-service-detail-ai-image .service-tail-section .service-related-card span {
    color: #416182;
}

body.page-service-detail-ai-video .service-tail-section .section-head h2 {
    color: #fff7fb;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

body.page-service-detail-ai-video .service-tail-section .service-related-card {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(19, 17, 34, 0.9), rgba(37, 12, 35, 0.82)),
        rgba(9, 10, 20, 0.84);
}

body.page-service-detail-ai-video .service-tail-section .service-related-card strong {
    color: #fff7fb;
}

body.page-service-detail-ai-video .service-tail-section .service-related-card span {
    color: rgba(218, 229, 241, 0.82);
}

.service-detail-page-ai-video.service-detail-page-showcase {
    background:
        radial-gradient(ellipse at 18% 12%, rgba(241, 134, 168, 0.68), transparent 34%),
        radial-gradient(ellipse at 84% 18%, rgba(255, 202, 150, 0.58), transparent 30%),
        radial-gradient(ellipse at 62% 88%, rgba(133, 160, 88, 0.32), transparent 42%),
        linear-gradient(135deg, #ffe9dc 0%, #f2bdcf 48%, #d6e0ae 100%);
}

body.page-service-detail-ai-video .service-reference-background {
    background:
        linear-gradient(135deg, rgba(255, 232, 218, 0.98) 0%, rgba(240, 186, 204, 0.96) 48%, rgba(211, 223, 174, 0.98) 100%);
}

.service-detail-page-ai-video-showcase .ai-video-reference-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.94;
    filter: saturate(1.08) contrast(1.03);
}

.service-detail-page-ai-video-showcase::before {
    width: 480px;
    height: 480px;
    right: -140px;
    top: 28px;
    background: radial-gradient(circle, rgba(230, 100, 144, 0.36), rgba(230, 100, 144, 0));
}

.service-detail-page-ai-video-showcase::after {
    width: 420px;
    height: 420px;
    left: -150px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(126, 160, 82, 0.30), rgba(126, 160, 82, 0));
}

body.page-service-detail-ai-video .service-reference-tail-background,
body.page-service-detail-ai-video .footer-reference-background {
    background:
        radial-gradient(circle at 16% 20%, rgba(232, 113, 154, 0.32), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(255, 203, 156, 0.36), transparent 26%),
        linear-gradient(180deg, rgba(255, 231, 218, 0.98), rgba(214, 225, 177, 0.96));
}

.service-detail-page-ai-video .digital-human-detail-copy,
.service-detail-page-ai-video .digital-human-artboard,
.service-detail-page-ai-video .digital-human-mode-card {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(14, 15, 32, 0.88), rgba(31, 10, 30, 0.78)),
        rgba(7, 8, 18, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 34px 90px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 85, 142, 0.05);
    backdrop-filter: blur(24px) saturate(1.08);
}

.service-detail-page-ai-video .digital-human-detail-copy h1,
.service-detail-page-ai-video .digital-human-mode-copy h2,
.service-detail-page-ai-video .service-title-suffix {
    color: #fff7fb;
}

.service-detail-page-ai-video .digital-human-detail-intro,
.service-detail-page-ai-video .digital-human-detail-body,
.service-detail-page-ai-video .digital-human-mode-copy p {
    color: rgba(218, 229, 241, 0.82);
}

.service-detail-page-ai-video .digital-human-detail-emphasis {
    color: #f8f3ff;
}

.service-detail-page-ai-video .digital-human-detail-emphasis strong,
.service-detail-page-ai-video .digital-human-mode-index {
    color: #ff79b0;
}

.service-detail-page-ai-video .digital-human-artboard {
    min-height: 720px;
}

.service-detail-page-ai-video .digital-human-artboard::before {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 98, 158, 0.36), transparent 36%),
        radial-gradient(circle at 74% 78%, rgba(68, 219, 255, 0.24), transparent 38%);
}

.service-detail-page-ai-video .digital-human-artboard-frame {
    max-width: 430px;
    min-height: 620px;
    margin-inline: auto;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(11, 12, 26, 0.96), rgba(23, 9, 25, 0.92)),
        #080913;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 28px 72px rgba(0, 0, 0, 0.42);
}

.service-detail-page-ai-video .digital-human-artboard-placeholder-panel {
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 97, 154, 0.28), transparent 34%),
        radial-gradient(circle at 76% 76%, rgba(67, 216, 255, 0.2), transparent 36%),
        linear-gradient(145deg, rgba(16, 18, 36, 0.94), rgba(31, 11, 31, 0.88));
    color: rgba(255, 244, 249, 0.86);
}

.service-detail-page-ai-video .digital-human-reference-tab {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 94, 150, 0.16), rgba(61, 212, 255, 0.1)),
        rgba(255, 255, 255, 0.06);
    color: #fff3f8;
}

.service-detail-page-ai-video .digital-human-reference-tab:hover,
.service-detail-page-ai-video .digital-human-reference-tab:focus-visible {
    border-color: rgba(255, 126, 178, 0.36);
}

.service-detail-page-ai-video .digital-human-reference-tab.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #ff5c98, #44d9ff);
    color: #07101d;
}

body.page-service-detail-ai-video.reference-variant-2 .service-reference-background,
body.page-service-detail-ai-video.reference-variant-2 .service-reference-tail-background,
body.page-service-detail-ai-video.reference-variant-2 .footer-reference-background {
    background:
        linear-gradient(135deg, rgba(5, 14, 25, 0.99) 0%, rgba(10, 28, 38, 0.97) 48%, rgba(4, 10, 18, 0.995) 100%);
}

body.page-service-detail-ai-video.reference-variant-2 .digital-human-reference-tab.is-active {
    background: linear-gradient(135deg, #29f0ff, #2765ff);
    color: #03111b;
}

body.page-service-detail-ai-video.reference-variant-2 .digital-human-detail-emphasis strong,
body.page-service-detail-ai-video.reference-variant-2 .digital-human-mode-index {
    color: #50e6ff;
}

body.page-service-detail-ai-video.reference-variant-3 .service-reference-background,
body.page-service-detail-ai-video.reference-variant-3 .service-reference-tail-background,
body.page-service-detail-ai-video.reference-variant-3 .footer-reference-background {
    background:
        linear-gradient(135deg, rgba(14, 9, 25, 0.99) 0%, rgba(33, 13, 44, 0.97) 48%, rgba(7, 8, 19, 0.995) 100%);
}

body.page-service-detail-ai-video.reference-variant-3 .digital-human-reference-tab.is-active {
    background: linear-gradient(135deg, #b778ff, #ffbd6d);
    color: #160b22;
}

body.page-service-detail-ai-video.reference-variant-3 .digital-human-detail-emphasis strong,
body.page-service-detail-ai-video.reference-variant-3 .digital-human-mode-index {
    color: #c996ff;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-detail-copy,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-artboard,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-mode-card,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .service-related-card,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .footer-shell {
    border-color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 241, 234, 0.58)),
        rgba(255, 248, 241, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 32px 82px rgba(154, 113, 103, 0.18);
    color: #322321;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-detail-copy h1,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-mode-copy h2,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .service-related-card strong,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .footer-grid h3,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .footer-meta,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .service-title-suffix {
    color: #35201f;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-detail-intro,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-detail-body,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-mode-copy p,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .service-related-card span,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .footer-grid a,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .footer-grid span,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .footer-brand p {
    color: #705d55;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-detail-emphasis {
    color: #513739;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-detail-emphasis strong,
body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-mode-index {
    color: #c76d87;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-artboard-frame {
    border-color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(252, 232, 232, 0.72)),
        #fff8ef;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 28px 72px rgba(155, 112, 103, 0.22);
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-reference-tab {
    border-color: rgba(219, 150, 170, 0.30);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 231, 239, 0.58)),
        rgba(255, 248, 241, 0.58);
    color: #7a4a55;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .digital-human-reference-tab.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #f5b9ca, #fff1dc);
    color: #3b2625;
}

body.page-service-detail-ai-video:not(.reference-variant-2):not(.reference-variant-3) .site-footer {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 211, 224, 0.32), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(255, 241, 218, 0.34), transparent 22%),
        linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(239, 246, 228, 0.96));
}

.service-detail-frame {
    overflow: hidden;
    width: 100%;
    min-height: 100%;
}

.service-detail-frame.has-media {
    padding: 18px;
}

.service-detail-stage {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(145deg, rgba(8, 25, 52, 0.92), rgba(15, 42, 82, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 18px 42px rgba(6, 20, 48, 0.18);
}

.service-detail-media {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: contain;
    background: transparent;
}

.service-detail-frame .service-preview-media {
    min-height: 100%;
    height: 100%;
}

.service-detail-related {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-related-card {
    display: grid;
    gap: 8px;
    padding: 20px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-related-card:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 26px 56px rgba(158, 52, 109, 0.14);
}

.service-related-card strong {
    font-size: 1rem;
}

.service-related-card span {
    color: #8c5877;
    font-size: 0.9rem;
}

@media (max-width: 1080px) {
    .digital-human-detail-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .digital-human-artboard,
    .digital-human-artboard-frame {
        min-height: 520px;
    }
}

@media (max-width: 720px) {
    .digital-human-detail-copy,
    .digital-human-artboard {
        padding: 24px;
        border-radius: 28px;
    }

    .digital-human-detail-copy h1 {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .digital-human-mode-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .digital-human-mode-index {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .digital-human-artboard,
    .digital-human-artboard-frame {
        min-height: 420px;
    }
}

.hero-layout,
.story-layout,
.page-hero-shell,
.contact-layout,
.footer-shell {
    display: grid;
    gap: 28px;
}

.hero-layout {
    align-items: stretch;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.88fr);
}

.story-layout,
.page-hero-shell,
.contact-layout,
.footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.hero-panel,
.proof-card,
.hero-surface,
.service-card,
.insight-card,
.contact-hub-card,
.notice-preview-card,
.notice-list-card,
.contact-form-card,
.contact-info-card,
.mini-panel,
.content-panel,
.page-hero-note,
.empty-box,
.vision-band,
.footer-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero-copy,
.hero-panel,
.content-panel,
.contact-form-card,
.contact-info-card,
.page-hero-note,
.notice-list-card,
.notice-detail-shell,
.vision-band,
.empty-box {
    border-radius: var(--radius-xl);
}

.hero-copy,
.hero-panel,
.content-panel,
.contact-form-card,
.contact-info-card,
.page-hero-note,
.notice-list-card,
.notice-detail-shell,
.vision-band,
.empty-box,
.footer-shell {
    padding: 32px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(18, 215, 255, 0.08) 54%, rgba(255, 61, 183, 0.09)),
        var(--surface);
    animation: rise-in 650ms ease both;
}

.hero-wordmark {
    margin-bottom: 18px;
}

.page-home-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(235, 246, 255, 0.04), rgba(7, 24, 47, 0.08) 38%, rgba(6, 20, 39, 0.22) 100%);
}

body.page-home {
    --page-tail-bg: transparent;
    background:
        radial-gradient(circle at 18% 16%, rgba(103, 228, 255, 0.16), transparent 24%),
        radial-gradient(circle at 82% 20%, rgba(167, 224, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #dff6ff 0%, #7bbfe1 22%, #2f7ca7 48%, #164f78 74%, #0d3556 100%);
}

body.page-home::before {
    background:
        linear-gradient(180deg, rgba(246, 251, 255, 0.08), rgba(8, 28, 58, 0.12) 36%, rgba(5, 16, 34, 0.3) 100%);
}

body.page-home main,
body.page-home .site-footer {
    position: relative;
    z-index: 1;
}

body.page-home .site-footer {
    margin-top: -18px;
    padding-top: 0;
    background: transparent;
    isolation: isolate;
    overflow: visible;
}

body.page-home .site-footer::before {
    content: none;
}

body.page-home .site-footer > :not(.footer-reference-background) {
    position: relative;
    z-index: 1;
}

body.page-home .footer-shell {
    background:
        linear-gradient(135deg, rgba(5, 18, 37, 0.50), rgba(11, 51, 85, 0.34)),
        rgba(7, 24, 47, 0.30);
    border: 1px solid rgba(238, 246, 255, 0.12);
    box-shadow:
        0 26px 64px rgba(5, 18, 37, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(1.06);
    padding-top: 8px;
}

body.page-home .footer-shell::before {
    content: none;
}

body.page-home .footer-shell > * {
    position: relative;
    z-index: 1;
}

body.page-home .hero-section-minimal {
    background: transparent;
    box-shadow: none;
    animation: none;
}

body.page-home .hero-section-minimal::before,
body.page-home .hero-section-minimal::after,
body.page-home .hero-motion-sweep {
    display: none;
}

body.page-home .hero-cinematic-bg {
    animation-duration: 40s;
}

body.page-home .hero-cinematic-bg::before {
    animation-duration: 24s;
}

body.page-home .hero-cinematic-bg::after {
    animation-duration: 30s;
}

body.page-home .hero-motion-stream-a {
    animation-duration: 20s, 14s;
}

body.page-home .hero-motion-stream-b {
    animation-duration: 26s, 16s;
}

body.page-home .hero-motion-rings {
    animation-duration: 30s;
}

.hero-section-minimal {
    --hero-base-a: #082744;
    --hero-base-b: #07192d;
    --hero-theme-accent: rgba(18, 215, 255, 0.24);
    --hero-theme-secondary: rgba(24, 120, 255, 0.16);
    --hero-theme-wash: rgba(255, 255, 255, 0.08);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100svh - 108px);
    padding-top: 72px;
    padding-bottom: 72px;
    background:
        linear-gradient(180deg, rgba(246, 250, 255, 0.28), rgba(243, 248, 255, 0.10) 38%, rgba(241, 248, 255, 0.18) 100%),
        radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.16), transparent 42%);
    box-shadow:
        inset 0 110px 180px rgba(255, 255, 255, 0.12),
        inset 0 -120px 220px rgba(6, 22, 48, 0.04);
    animation: hero-surface-breathe 14s ease-in-out infinite;
    transition:
        background 2000ms ease;
}

.page-home-backdrop .hero-cinematic-bg {
    position: absolute;
    inset: 0;
}

.hero-cinematic-bg {
    position: absolute;
    inset: -8% -4%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    animation: hero-bg-float 22s ease-in-out infinite;
}

.hero-background-video,
.hero-background-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero-background-video {
    object-fit: cover;
    opacity: 0.9;
    filter: saturate(1.1) contrast(1.06) brightness(1.03) blur(2px);
    transform: scale(1.08);
}

.hero-background-canvas {
    opacity: 0.98;
}

.hero-cinematic-bg::before,
.hero-cinematic-bg::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    border-radius: 999px;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.hero-cinematic-bg::before {
    top: 8%;
    left: -18%;
    width: 142%;
    height: min(38vh, 360px);
    background:
        linear-gradient(
            102deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.26) 14%,
            rgba(146, 239, 255, 0.68) 32%,
            rgba(255, 255, 255, 0.52) 45%,
            rgba(86, 175, 255, 0.58) 58%,
            rgba(255, 255, 255, 0) 100%
        );
    filter: blur(18px) saturate(1.2);
    opacity: 0.42;
    transform: rotate(-9deg);
    animation: hero-ribbon-sweep-a 12s cubic-bezier(0.42, 0.08, 0.2, 1) infinite;
    z-index: 1;
}

.hero-cinematic-bg::after {
    right: -16%;
    bottom: 2%;
    width: 132%;
    height: min(34vh, 320px);
    background:
        linear-gradient(
            94deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(194, 160, 255, 0.24) 16%,
            rgba(110, 205, 255, 0.48) 32%,
            rgba(255, 255, 255, 0.36) 48%,
            rgba(92, 154, 255, 0.52) 64%,
            rgba(255, 255, 255, 0) 100%
        );
    filter: blur(22px) saturate(1.18);
    opacity: 0.34;
    transform: rotate(10deg);
    animation: hero-ribbon-sweep-b 15s cubic-bezier(0.42, 0.08, 0.2, 1) infinite;
    z-index: 1;
}

.hero-motion-beam,
.hero-motion-stream,
.hero-motion-sweep,
.hero-motion-rings,
.hero-motion-grain {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.hero-motion-beam {
    border-radius: 999px;
    mix-blend-mode: screen;
    opacity: 0.44;
    filter: blur(24px) saturate(1.08);
    will-change: transform, opacity, filter;
    transition:
        background 2000ms ease,
        opacity 2000ms ease,
        filter 2000ms ease;
}

.hero-motion-beam-a {
    top: -12%;
    left: 4%;
    width: min(32vw, 420px);
    height: 132%;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            color-mix(in srgb, var(--hero-theme-accent) 80%, white 20%) 26%,
            color-mix(in srgb, var(--hero-theme-secondary) 74%, transparent 26%) 56%,
            rgba(255, 255, 255, 0) 100%
        );
    transform: rotate(-18deg);
    animation:
        hero-beam-drift-a 18s ease-in-out infinite,
        hero-beam-flicker 7s linear infinite;
}

.hero-motion-beam-b {
    top: -10%;
    right: 8%;
    width: min(28vw, 360px);
    height: 124%;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            color-mix(in srgb, var(--hero-theme-secondary) 72%, white 18%) 24%,
            color-mix(in srgb, var(--hero-theme-accent) 82%, transparent 18%) 52%,
            rgba(255, 255, 255, 0) 100%
        );
    transform: rotate(22deg);
    animation:
        hero-beam-drift-b 21s ease-in-out infinite,
        hero-beam-flicker 8s linear infinite reverse;
}

.hero-motion-beam-c {
    left: 24%;
    top: 46%;
    width: min(56vw, 760px);
    height: min(20vh, 180px);
    border-radius: 120px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            color-mix(in srgb, var(--hero-theme-accent) 80%, white 20%) 18%,
            color-mix(in srgb, var(--hero-theme-secondary) 68%, transparent 32%) 52%,
            rgba(255, 255, 255, 0) 100%
        );
    filter: blur(22px);
    transform: rotate(-8deg);
    animation:
        hero-beam-pan 16s ease-in-out infinite,
        hero-beam-flicker 6s linear infinite;
}

.hero-motion-stream {
    border-radius: 999px;
    mix-blend-mode: screen;
    opacity: 0.38;
    filter: blur(14px) saturate(1.12);
    will-change: transform, opacity;
    transition:
        background 2000ms ease,
        opacity 2000ms ease;
}

.hero-motion-stream-a {
    top: 20%;
    left: -18%;
    width: 138%;
    height: min(34vh, 320px);
    background:
        linear-gradient(
            102deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.32) 14%,
            color-mix(in srgb, var(--hero-theme-accent) 86%, white 14%) 30%,
            rgba(255, 255, 255, 0.46) 46%,
            color-mix(in srgb, var(--hero-theme-secondary) 82%, transparent 18%) 64%,
            rgba(255, 255, 255, 0) 100%
        );
    transform: rotate(-9deg);
    animation:
        hero-stream-roll-a 11s cubic-bezier(0.35, 0.08, 0.18, 1) infinite,
        hero-beam-flicker 8s linear infinite reverse;
}

.hero-motion-stream-b {
    bottom: 10%;
    left: -12%;
    width: 128%;
    height: min(30vh, 280px);
    background:
        linear-gradient(
            94deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.24) 12%,
            color-mix(in srgb, var(--hero-theme-secondary) 82%, white 18%) 32%,
            rgba(255, 255, 255, 0.34) 50%,
            color-mix(in srgb, var(--hero-theme-accent) 80%, transparent 20%) 68%,
            rgba(255, 255, 255, 0) 100%
        );
    transform: rotate(7deg);
    animation:
        hero-stream-roll-b 14s cubic-bezier(0.45, 0.08, 0.24, 1) infinite,
        hero-beam-flicker 9s linear infinite;
}

.hero-motion-sweep {
    inset: 6% 8% auto 8%;
    height: 64%;
    border-radius: 42px;
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0) 12%,
            rgba(255, 255, 255, 0.34) 20%,
            rgba(255, 255, 255, 0.18) 30%,
            rgba(255, 255, 255, 0.08) 38%,
            rgba(255, 255, 255, 0) 44%
        ),
        linear-gradient(
            118deg,
            rgba(255, 255, 255, 0) 34%,
            color-mix(in srgb, var(--hero-theme-accent) 24%, white 76%) 44%,
            rgba(255, 255, 255, 0) 55%
        );
    mix-blend-mode: screen;
    opacity: 0.42;
    animation: hero-sweep-pan 8s cubic-bezier(0.35, 0.1, 0.25, 1) infinite;
}

.hero-motion-rings {
    inset: 12% 10% 10% 10%;
    background:
        radial-gradient(circle at 54% 42%, rgba(255, 255, 255, 0) 0 18%, rgba(255, 255, 255, 0.12) 18.5% 19.1%, rgba(255, 255, 255, 0) 19.8% 27%, rgba(255, 255, 255, 0.08) 27.4% 27.9%, rgba(255, 255, 255, 0) 28.6% 100%),
        radial-gradient(circle at 38% 62%, rgba(255, 255, 255, 0) 0 14%, color-mix(in srgb, var(--hero-theme-accent) 26%, white 74%) 14.4% 14.9%, rgba(255, 255, 255, 0) 15.4% 100%);
    opacity: 0.18;
    filter: blur(0.2px);
    animation: hero-rings-float 18s ease-in-out infinite;
}

.hero-motion-grain {
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06) 0 1px,
            rgba(255, 255, 255, 0) 1px 6px
        ),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0 0.8px, rgba(255, 255, 255, 0) 0.9px);
    background-size: auto, 24px 24px;
    mix-blend-mode: soft-light;
    opacity: 0.12;
    animation:
        hero-grain-drift 0.9s steps(2) infinite,
        hero-scanline-shift 7s linear infinite;
}

.hero-section-minimal::before,
.hero-section-minimal::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px) brightness(0.9);
    opacity: 0.82;
    z-index: 0;
    will-change: transform, opacity, background;
    transition: background 2000ms ease, opacity 2000ms ease;
}

.hero-section-minimal::before {
    width: min(46vw, 620px);
    height: min(46vw, 620px);
    left: -6%;
    top: 10%;
    background:
        radial-gradient(circle at 34% 34%, color-mix(in srgb, var(--hero-theme-accent) 72%, white 28%), transparent 48%),
        radial-gradient(circle at 68% 62%, color-mix(in srgb, var(--hero-theme-secondary) 62%, transparent 38%), transparent 58%);
    animation:
        hero-orb-drift-a 18s ease-in-out infinite,
        hero-orb-breathe 9s ease-in-out infinite;
}

.hero-section-minimal::after {
    width: min(38vw, 520px);
    height: min(38vw, 520px);
    right: -4%;
    bottom: 4%;
    background:
        radial-gradient(circle at 42% 38%, color-mix(in srgb, var(--hero-theme-secondary) 70%, white 30%), transparent 46%),
        radial-gradient(circle at 70% 66%, color-mix(in srgb, var(--hero-theme-accent) 58%, transparent 42%), transparent 60%);
    animation:
        hero-orb-drift-b 22s ease-in-out infinite,
        hero-orb-breathe 10s ease-in-out infinite reverse;
}

.hero-section-minimal[data-hero-theme-active="digital-human"] {
    --hero-base-a: #5a360e;
    --hero-base-b: #170907;
    --hero-theme-accent: rgba(255, 206, 84, 0.44);
    --hero-theme-secondary: rgba(255, 171, 58, 0.28);
    --hero-theme-wash: rgba(255, 238, 173, 0.18);
}

.hero-section-minimal[data-hero-theme-active="vton"] {
    --hero-theme-accent: rgba(255, 160, 72, 0.42);
    --hero-theme-secondary: rgba(255, 114, 52, 0.26);
    --hero-theme-wash: rgba(255, 220, 173, 0.16);
}

.hero-section-minimal[data-hero-theme-active="ai-image"] {
    --hero-theme-accent: rgba(255, 134, 200, 0.36);
    --hero-theme-secondary: rgba(178, 123, 255, 0.24);
    --hero-theme-wash: rgba(255, 223, 242, 0.16);
}

.hero-section-minimal[data-hero-theme-active="ai-video"] {
    --hero-theme-accent: rgba(83, 202, 255, 0.36);
    --hero-theme-secondary: rgba(61, 134, 255, 0.24);
    --hero-theme-wash: rgba(221, 239, 255, 0.16);
}

.hero-section-minimal[data-hero-theme-active="custom-tools"] {
    --hero-theme-accent: rgba(150, 198, 255, 0.3);
    --hero-theme-secondary: rgba(110, 136, 255, 0.22);
    --hero-theme-wash: rgba(233, 242, 255, 0.14);
}

.hero-section-minimal[data-hero-theme-active="ai-model"] {
    --hero-theme-accent: rgba(110, 221, 255, 0.32);
    --hero-theme-secondary: rgba(96, 167, 255, 0.22);
    --hero-theme-wash: rgba(226, 244, 255, 0.14);
}

.hero-section-minimal[data-hero-theme-active="web-data-extraction"] {
    --hero-theme-accent: rgba(151, 195, 255, 0.3);
    --hero-theme-secondary: rgba(193, 132, 255, 0.22);
    --hero-theme-wash: rgba(239, 236, 255, 0.14);
}

.hero-section-minimal[data-hero-theme-active="web-development"] {
    --hero-theme-accent: rgba(111, 214, 255, 0.32);
    --hero-theme-secondary: rgba(121, 154, 255, 0.22);
    --hero-theme-wash: rgba(229, 244, 255, 0.14);
}

.hero-section-minimal[data-hero-theme-active="system-design"] {
    --hero-theme-accent: rgba(134, 210, 255, 0.32);
    --hero-theme-secondary: rgba(180, 136, 255, 0.22);
    --hero-theme-wash: rgba(236, 237, 255, 0.14);
}

.hero-minimal-shell {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 220px);
    display: grid;
    place-items: center;
}

.hero-minimal-copy {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.hero-minimal-wordmark {
    margin: 0;
    display: grid;
    gap: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4.2rem, 10vw, 8.8rem);
    font-style: italic;
    font-weight: 600;
    line-height: 0.78;
    letter-spacing: -0.06em;
    color: rgba(238, 248, 255, 0.96);
    text-shadow:
        0 10px 34px rgba(5, 18, 38, 0.46),
        0 0 42px rgba(94, 220, 255, 0.18);
}

.hero-minimal-wordmark span:last-child {
    margin-left: clamp(0.8rem, 3vw, 2.8rem);
    color: rgba(202, 230, 255, 0.9);
}

.hero-minimal-kicker {
    margin: 8px 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(176, 236, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(248, 253, 255, 0.1), rgba(210, 241, 255, 0.04)),
        rgba(255, 255, 255, 0.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 14px rgba(108, 221, 255, 0.04);
    backdrop-filter: blur(18px) saturate(1.08);
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(0.9rem, 1.7vw, 1.04rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(225, 244, 255, 0.9);
    text-shadow: 0 0 10px rgba(139, 226, 255, 0.08);
}

.hero-minimal-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 16px;
    max-width: 760px;
    margin-top: 14px;
}

.hero-bubble {
    --bubble-start: rgba(89, 205, 255, 0.9);
    --bubble-mid: rgba(166, 141, 255, 0.8);
    --bubble-end: rgba(255, 118, 196, 0.84);
    --bubble-live-start: color-mix(in srgb, var(--bubble-start) 86%, white 14%);
    --bubble-live-mid: color-mix(in srgb, var(--bubble-mid) 88%, white 12%);
    --bubble-live-end: color-mix(in srgb, var(--bubble-end) 86%, white 14%);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(240, 247, 255, 0.42));
    box-shadow:
        0 14px 34px rgba(12, 23, 46, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #183559;
    backdrop-filter: blur(10px);
    overflow: visible;
    text-decoration: none;
    transition:
        transform 28ms ease,
        box-shadow 14ms ease,
        color 14ms ease,
        filter 14ms ease,
        background 14ms ease,
        border-color 14ms ease;
}

.hero-bubble-group {
    display: inline-grid;
    justify-items: center;
    gap: 6px;
}

.hero-bubble-group-label {
    display: block;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    color: rgba(230, 242, 255, 0.88);
    text-shadow: 0 1px 10px rgba(8, 20, 38, 0.18);
    opacity: 0.96;
}

.hero-bubble::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 0 14px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    transition:
        border-color 14ms ease,
        box-shadow 14ms ease;
}

.hero-bubble::after {
    content: none;
}

.hero-bubble:hover,
.hero-bubble:focus-visible {
    transform: translateY(-2px);
    color: rgba(248, 252, 255, 0.98);
    background:
        linear-gradient(
            135deg,
            var(--bubble-live-start),
            var(--bubble-live-mid) 52%,
            var(--bubble-live-end)
        );
    border-color: color-mix(in srgb, var(--bubble-live-start) 56%, rgba(255, 255, 255, 0.44) 44%);
    box-shadow:
        0 20px 44px color-mix(in srgb, var(--bubble-live-end) 18%, rgba(12, 23, 46, 0.12)),
        0 0 0 1px color-mix(in srgb, var(--bubble-live-start) 52%, white 48%),
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    filter: saturate(1.22);
}

.hero-bubble:hover::before,
.hero-bubble:focus-visible::before {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 24px color-mix(in srgb, var(--bubble-live-end) 28%, transparent 72%);
}

.hero-bubble-digital-human {
    --bubble-start: rgba(71, 216, 255, 0.96);
    --bubble-mid: rgba(119, 162, 255, 0.82);
    --bubble-end: rgba(232, 104, 196, 0.86);
}

.hero-bubble-vton {
    --bubble-start: rgba(123, 223, 255, 0.94);
    --bubble-mid: rgba(104, 191, 255, 0.82);
    --bubble-end: rgba(255, 144, 197, 0.84);
}

.hero-bubble-ai-image {
    --bubble-start: rgba(108, 228, 255, 0.94);
    --bubble-mid: rgba(161, 136, 255, 0.82);
    --bubble-end: rgba(255, 116, 181, 0.86);
}

.hero-bubble-ai-video {
    --bubble-start: rgba(75, 208, 255, 0.94);
    --bubble-mid: rgba(125, 165, 255, 0.82);
    --bubble-end: rgba(255, 137, 173, 0.84);
}

.hero-bubble-custom-tools {
    --bubble-start: rgba(104, 225, 255, 0.92);
    --bubble-mid: rgba(116, 182, 255, 0.82);
    --bubble-end: rgba(255, 150, 213, 0.82);
}

.hero-bubble-data {
    --bubble-start: rgba(94, 219, 255, 0.94);
    --bubble-mid: rgba(96, 170, 255, 0.82);
    --bubble-end: rgba(255, 133, 193, 0.82);
}

.hero-bubble-workflow {
    --bubble-start: rgba(110, 228, 255, 0.92);
    --bubble-mid: rgba(133, 160, 255, 0.82);
    --bubble-end: rgba(255, 120, 184, 0.82);
}

.hero-bubble-web {
    --bubble-start: rgba(96, 219, 255, 0.92);
    --bubble-mid: rgba(127, 170, 255, 0.82);
    --bubble-end: rgba(255, 149, 201, 0.82);
}

.hero-bubble-system {
    --bubble-start: rgba(116, 223, 255, 0.92);
    --bubble-mid: rgba(111, 175, 255, 0.82);
    --bubble-end: rgba(240, 136, 214, 0.82);
}

.hero-wordmark .company-wordmark-02-primary {
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: 0.88;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background:
        radial-gradient(circle at top, rgba(18, 215, 255, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.85));
    animation: rise-in 800ms ease both;
}

.panel-glow {
    position: absolute;
    inset: auto -90px -70px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 61, 183, 0.3), rgba(255, 61, 183, 0));
    pointer-events: none;
}

.hero-surface,
.proof-card,
.service-card,
.insight-card,
.contact-hub-card,
.mini-panel,
.notice-preview-card {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.hero-surface-primary {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(160deg, rgba(8, 20, 39, 0.94), rgba(17, 38, 70, 0.94)),
        linear-gradient(135deg, rgba(18, 215, 255, 0.2), rgba(255, 61, 183, 0.2));
    color: #f7fbff;
}

.hero-surface-primary p,
.hero-surface-primary .surface-label,
.hero-surface-primary strong {
    color: inherit;
}

.hero-surface-grid,
.proof-row,
.hero-direction-grid,
.service-grid,
.notice-preview-grid,
.contact-hub-grid,
.three-up-grid,
.footer-grid,
.contact-info-list {
    display: grid;
    gap: 18px;
}

.hero-surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-row,
.hero-direction-grid,
.service-grid,
.notice-preview-grid,
.contact-hub-grid,
.three-up-grid,
.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow,
.surface-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    color: #116f95;
}

.surface-label {
    color: #3e4c62;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    line-height: 1.08;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.32rem;
    line-height: 1.15;
}

.hero-kicker,
.lead {
    font-size: 1.05rem;
}

.hero-kicker {
    margin-bottom: 10px;
    color: #1d2740;
    font-weight: 600;
}

.lead {
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

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

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, #0f1930, #13254c 46%, #6a30d9 82%, #ff2cb3 100%);
    box-shadow: 0 18px 36px rgba(29, 33, 96, 0.22);
}

.button.ghost {
    border-color: rgba(8, 20, 39, 0.09);
    background: rgba(255, 255, 255, 0.78);
}

.proof-card span,
.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(18, 215, 255, 0.18), rgba(255, 61, 183, 0.16));
    color: #0d274a;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 700;
}

.hero-study {
    padding-top: 24px;
}

.hero-direction-card {
    display: grid;
    gap: 18px;
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
        var(--surface);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.direction-visual {
    position: relative;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.direction-copy {
    display: grid;
    gap: 10px;
}

.direction-copy .service-index {
    margin-bottom: 0;
}

.direction-copy h3 {
    margin-bottom: 0;
}

.direction-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.direction-list li + li {
    margin-top: 6px;
}

.direction-visual-motion {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(18, 215, 255, 0.26), transparent 28%),
        radial-gradient(circle at 80% 82%, rgba(255, 61, 183, 0.24), transparent 26%),
        linear-gradient(145deg, #081224 0%, #111f3f 46%, #1a2552 100%);
}

.direction-screen {
    position: relative;
    width: min(86%, 360px);
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.24);
    color: #eff5ff;
    backdrop-filter: blur(14px);
}

.direction-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.direction-headline {
    margin-top: 56px;
}

.direction-headline strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.direction-headline p {
    max-width: 24ch;
    color: rgba(239, 245, 255, 0.72);
}

.direction-timeline {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.8fr;
    gap: 8px;
    margin-top: 36px;
}

.direction-timeline span {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.direction-timeline span:first-child {
    background: linear-gradient(90deg, rgba(18, 215, 255, 0.95), rgba(255, 61, 183, 0.95));
}

.direction-play {
    position: absolute;
    right: 34px;
    bottom: 30px;
    width: 72px;
    height: 72px;
}

.play-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.05);
    animation: pulse-ring 2.8s ease-in-out infinite;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid rgba(255, 255, 255, 0.95);
    transform: translate(-35%, -50%);
}

.direction-visual-image {
    display: grid;
    align-content: end;
    padding: 24px;
    background:
        radial-gradient(circle at 12% 16%, rgba(18, 215, 255, 0.2), transparent 24%),
        radial-gradient(circle at 88% 20%, rgba(255, 61, 183, 0.16), transparent 24%),
        linear-gradient(180deg, #f6fbff 0%, #e9f5ff 48%, #fff4fb 100%);
}

.image-stack {
    position: relative;
    height: 220px;
}

.image-panel {
    position: absolute;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 46px rgba(12, 23, 46, 0.14);
}

.image-panel-main {
    inset: 0 16% 0 0;
    background:
        radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.52), transparent 24%),
        linear-gradient(145deg, rgba(18, 215, 255, 0.18), rgba(255, 61, 183, 0.16)),
        linear-gradient(145deg, #fdfefe, #edf8ff 58%, #fff2f9);
}

.image-panel-sub {
    width: 128px;
    height: 152px;
    right: 0;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(18, 215, 255, 0.14)),
        #ffffff;
}

.image-panel-sub-left {
    top: 8px;
    transform: rotate(8deg);
}

.image-panel-sub-right {
    bottom: 6px;
    transform: rotate(-8deg);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 61, 183, 0.14)),
        #ffffff;
}

.direction-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.direction-chip-row span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(8, 20, 39, 0.08);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    color: #324158;
}

.direction-visual-hybrid {
    padding: 24px;
    background:
        radial-gradient(circle at 16% 16%, rgba(18, 215, 255, 0.18), transparent 26%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 255, 0.76));
}

.hybrid-copy-card {
    position: relative;
    z-index: 2;
    width: min(74%, 300px);
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 50px rgba(12, 23, 46, 0.12);
    backdrop-filter: blur(14px);
}

.hybrid-copy-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1;
}

.hybrid-signal-grid {
    position: absolute;
    right: 24px;
    bottom: 26px;
    display: grid;
    grid-template-columns: repeat(2, 96px);
    gap: 12px;
}

.hybrid-signal-grid span {
    height: 64px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(18, 215, 255, 0.18), rgba(255, 61, 183, 0.14)),
        rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 30px rgba(12, 23, 46, 0.1);
}

.hybrid-orb {
    position: absolute;
    right: 18px;
    top: 22px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 61, 183, 0.24), rgba(255, 61, 183, 0));
    filter: blur(10px);
}

.signal-bar,
.tag-row,
.contact-inline,
.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.signal-bar span,
.tag-row span,
.tag-row a,
.badge,
.contact-inline a,
.pagination a,
.pagination span {
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(8, 20, 39, 0.08);
    background: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    font-weight: 700;
}

.badge {
    background: rgba(18, 215, 255, 0.14);
    color: #136d90;
}

.tag-row {
    margin-top: 22px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-tinted {
    background: linear-gradient(180deg, rgba(250, 253, 255, 0.74), rgba(244, 250, 255, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.service-card {
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.service-card:hover,
.insight-card:hover,
.notice-preview-card:hover,
.contact-hub-card:hover,
.notice-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 215, 255, 0.34);
    box-shadow: 0 28px 66px rgba(12, 23, 46, 0.14);
}

.service-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.service-video {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(18, 215, 255, 0.12)),
        var(--surface);
}

.service-image {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 61, 183, 0.12)),
        var(--surface);
}

.service-ads {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(18, 215, 255, 0.08) 55%, rgba(255, 61, 183, 0.1)),
        var(--surface);
}

.service-content {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(16, 25, 48, 0.06)),
        var(--surface);
}

.story-stack,
.contact-aside {
    display: grid;
    gap: 18px;
}

.content-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(18, 215, 255, 0.06)),
        var(--surface);
}

.stack-panel {
    display: grid;
    gap: 18px;
}

.mini-panel,
.insight-card,
.contact-hub-card,
.notice-preview-card,
.notice-list-card {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
        var(--surface);
}

.notice-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.notice-preview-card,
.notice-list-card,
.notice-detail-shell {
    display: block;
}

body.page-notices {
    --page-tail-bg:
        radial-gradient(circle at 14% 18%, rgba(118, 214, 255, 0.20), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(219, 158, 255, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(244, 249, 255, 0.98), rgba(239, 245, 255, 0.96));
}

.notice-hero {
    padding-bottom: 44px;
}

.notice-hero-shell {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
}

.notice-hero-copy,
.notice-feature-card,
.notice-sidebar-card,
.notice-feed-card {
    border: 1px solid rgba(255, 255, 255, 0.66);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.86)),
        var(--surface);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 24px 58px rgba(11, 28, 61, 0.1);
}

.notice-hero-copy,
.notice-feature-card,
.notice-sidebar-card,
.notice-feed-card {
    border-radius: var(--radius-xl);
}

.notice-hero-copy {
    padding: 32px;
}

.notice-hero-copy {
    display: grid;
    align-content: start;
    gap: 18px;
}

.notice-feature-section {
    padding-top: 0;
}

.notice-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
    gap: 24px;
}

.notice-feature-card,
.notice-sidebar-card,
.notice-feed-card {
    padding: 28px;
}

.notice-feature-card {
    display: grid;
    gap: 18px;
}

.notice-feature-card h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 0.98;
    color: #0e1d36;
}

.notice-feature-card p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
}

.notice-sidebar-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

.notice-sidebar-list {
    display: grid;
    gap: 12px;
}

.notice-sidebar-item {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(13, 32, 62, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: #10213c;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.notice-sidebar-item:hover,
.notice-sidebar-item:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(18, 95, 174, 0.22);
    box-shadow: 0 16px 32px rgba(11, 28, 61, 0.08);
}

.notice-sidebar-item strong {
    color: #10213c;
    font-size: 1rem;
    line-height: 1.35;
}

.notice-sidebar-item span {
    color: #627390;
    font-size: 0.92rem;
}

.notice-feed-section {
    padding-top: 10px;
}

.notice-feed-head {
    margin-bottom: 24px;
}

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

.notice-feed-card {
    display: grid;
    gap: 16px;
}

.notice-feed-card h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.08;
}

.notice-feed-card h3 a {
    color: #0f1d36;
    text-decoration: none;
}

.notice-feed-card p {
    margin: 0;
    line-height: 1.7;
}

.notice-meta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notice-date {
    color: #60718b;
}

.notice-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #0d6a98;
    text-decoration: none;
}

.notice-action-link::after {
    content: "??;
    font-size: 0.95em;
}

@media (max-width: 980px) {
    .notice-stat-grid,
    .notice-feed-grid {
        grid-template-columns: 1fr;
    }

    .notice-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .notice-hero-copy,
    .notice-feature-card,
    .notice-sidebar-card,
    .notice-feed-card {
        padding: 24px;
    }

    .notice-feature-card h2 {
        font-size: clamp(1.7rem, 7vw, 2.25rem);
    }
}

.notice-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.page-hero-note,
.vision-band {
    background:
        linear-gradient(135deg, rgba(8, 20, 39, 0.94), rgba(17, 38, 70, 0.92) 54%, rgba(132, 57, 221, 0.92)),
        #091426;
    color: #f6fbff;
}

.page-hero-note p,
.vision-band p,
.page-hero-note strong,
.vision-band h2,
.vision-band .eyebrow {
    color: inherit;
}

.vision-band {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 28px;
}

.contact-layout {
    align-items: start;
}

.page-contact .page-hero {
    background: transparent;
    padding-bottom: 36px;
}

.page-contact .page-hero-note,
.page-contact .contact-form-card,
.page-contact .contact-info-card,
.page-contact .mini-panel {
    border-color: rgba(79, 165, 155, 0.22);
    box-shadow:
        0 26px 54px rgba(21, 88, 95, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.page-contact .page-hero-note {
    background:
        linear-gradient(145deg, rgba(244, 255, 253, 0.94), rgba(215, 247, 242, 0.82)),
        rgba(255, 255, 255, 0.9);
}

body.page-contact .page-hero-note strong,
body.page-contact .page-hero-note p {
    color: #23535b;
}

.page-contact .site-footer {
    padding-top: 10px;
}

body.page-contact .footer-shell {
    background:
        radial-gradient(circle at 0% 100%, rgba(130, 232, 221, 0.18), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(52, 191, 176, 0.16), transparent 22%),
        linear-gradient(145deg, rgba(235, 252, 248, 0.96), rgba(208, 242, 236, 0.92)),
        rgba(255, 255, 255, 0.88);
    color: #12353d;
    border-color: rgba(79, 165, 155, 0.22);
    box-shadow:
        0 26px 54px rgba(21, 88, 95, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px);
}

body.page-contact .footer-brand p,
body.page-contact .footer-grid span,
body.page-contact .footer-grid a,
body.page-contact .footer-grid h3 {
    color: #335961;
}

body.page-contact .footer-grid a:hover,
body.page-contact .footer-grid a:focus-visible {
    color: #12353d;
}

body.page-contact .footer-meta {
    border-top: none;
}

body.page-contact .footer-meta span {
    color: #335961;
}

body.page-contact .footer-contact-channel {
    border-color: rgba(79, 165, 155, 0.16);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.page-contact .footer-contact-channel:hover,
body.page-contact .footer-contact-channel:focus-visible {
    border-color: rgba(79, 165, 155, 0.28);
    background: rgba(255, 255, 255, 0.74);
}

body.page-contact .footer-contact-channel__icon {
    background: rgba(79, 165, 155, 0.12);
}

body.page-contact .footer-contact-channel__bars span {
    background: rgba(48, 87, 92, 0.52);
}

body.page-contact .footer-contact-channel--kakao {
    background: linear-gradient(135deg, rgba(255, 229, 0, 0.86), rgba(255, 208, 0, 0.76));
}

body.page-contact .footer-contact-channel--kakao:hover,
body.page-contact .footer-contact-channel--kakao:focus-visible {
    background: linear-gradient(135deg, rgba(255, 229, 0, 0.92), rgba(255, 208, 0, 0.84));
}

.contact-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0;
}

.contact-form-card {
    background:
        radial-gradient(circle at 100% 0%, rgba(92, 214, 199, 0.16), transparent 24%),
        linear-gradient(145deg, rgba(246, 255, 253, 0.96), rgba(218, 245, 240, 0.88)),
        var(--surface);
}

.contact-info-card {
    background:
        radial-gradient(circle at 0% 100%, rgba(130, 232, 221, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(246, 255, 253, 0.94), rgba(223, 247, 243, 0.82)),
        var(--surface);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-channel-link {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    height: 92px;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid rgba(12, 23, 46, 0.08);
    border-radius: 24px;
    background: rgba(255, 247, 197, 0.92);
    color: #111111;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(12, 23, 46, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-channel-link:hover {
    transform: translateY(-2px);
    border-color: rgba(12, 23, 46, 0.14);
    box-shadow: 0 20px 40px rgba(12, 23, 46, 0.1);
}

.contact-channel-link--discord {
    background: rgba(232, 236, 255, 0.94);
}

.contact-channel-link--telegram {
    background: rgba(228, 246, 255, 0.94);
}

.contact-channel-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    border-radius: 24px;
    background: rgba(255, 235, 59, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-channel-icon img {
    width: 30px;
    height: 30px;
    display: block;
}

.contact-channel-icon--discord {
    background: rgba(88, 101, 242, 0.18);
}

.contact-channel-icon--telegram {
    background: rgba(0, 136, 204, 0.16);
}

.contact-channel-copy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
    gap: 0;
    min-width: 0;
    min-height: 72px;
}

.contact-channel-heading {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}

.contact-channel-copy strong {
    font-size: 1.08rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
    white-space: nowrap;
}

.contact-channel-copy small {
    display: none;
}

.contact-example-card {
    background:
        linear-gradient(145deg, rgba(247, 255, 253, 0.94), rgba(222, 247, 243, 0.82)),
        rgba(255, 255, 255, 0.86);
}

.contact-example-card .surface-label {
    margin-bottom: 10px;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #12353d;
}

.contact-example-card strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
    color: #4f6871;
}

.form-head {
    margin-bottom: 14px;
}

.form-head h2 {
    margin: 0;
    font-size: clamp(0.9rem, 1.4vw, 1.5rem);
    line-height: 1.15;
}

.contact-archive-section {
    padding-top: 0;
}

.contact-archive-card {
    display: grid;
    gap: 18px;
    padding: 28px 30px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(145deg, rgba(247, 255, 253, 0.94), rgba(214, 244, 239, 0.86)),
        rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 18px 44px rgba(18, 92, 98, 0.1);
    backdrop-filter: blur(12px);
}

.contact-archive-head {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.contact-archive-head h2 {
    margin: 0;
    font-size: clamp(1.1rem, 1.9vw, 1.75rem);
    color: #12353d;
}

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

.contact-search-form,
.contact-delete-grid {
    display: grid;
    gap: 10px;
}

.contact-search-form {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
}

.contact-search-form input,
.contact-delete-field input {
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(17, 92, 95, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #163f46;
    font: inherit;
}

.contact-search-form input {
    width: min(240px, 42vw);
}

.contact-search-form button,
.contact-delete-button {
    height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(22, 98, 103, 0.96), rgba(26, 141, 137, 0.92));
    color: #f7fffe;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.contact-search-form a {
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(17, 92, 95, 0.12);
    background: rgba(255, 255, 255, 0.76);
    color: #214a52;
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-delete-form {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(17, 92, 95, 0.1);
}

.contact-delete-head {
    display: grid;
    gap: 6px;
}

.contact-delete-head strong {
    color: #12353d;
    font-size: 1rem;
}

.contact-delete-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
}

.contact-delete-field {
    display: grid;
    gap: 6px;
}

.contact-delete-field label {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0f5960;
}

.contact-delete-help {
    margin: 0;
    color: #4a676e;
    font-size: 0.9rem;
}

.contact-archive-table {
    display: grid;
    gap: 7px;
}

.contact-archive-row {
    display: grid;
    grid-template-columns: 58px minmax(80px, 0.6fr) minmax(180px, 1.5fr) minmax(160px, 1.1fr) minmax(110px, 0.7fr);
    gap: 12px;
    align-items: center;
    padding: 11px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(17, 92, 95, 0.08);
}

.contact-archive-row span {
    min-width: 0;
    color: #20464e;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.contact-archive-row--head {
    background: rgba(22, 98, 103, 0.08);
    border-color: rgba(18, 83, 92, 0.1);
}

.contact-archive-row--head span {
    color: #0f5960;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-archive-empty {
    padding: 26px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px dashed rgba(17, 92, 95, 0.16);
    color: #49676f;
    text-align: center;
    font-weight: 600;
}

.contact-archive-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.contact-archive-page {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(17, 92, 95, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #19555d;
    font-size: 0.92rem;
    font-weight: 800;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.contact-archive-page:hover,
.contact-archive-page:focus-visible {
    background: rgba(214, 247, 241, 0.9);
    border-color: rgba(17, 92, 95, 0.22);
    color: #103f46;
    transform: translateY(-1px);
}

.contact-archive-page.is-active {
    background: linear-gradient(135deg, rgba(22, 98, 103, 0.96), rgba(26, 141, 137, 0.92));
    border-color: transparent;
    color: #f4fffe;
}

.contact-archive-page--arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.contact-archive-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.contact-archive-badge--ok {
    background: rgba(39, 174, 96, 0.16);
    color: #167443;
    border: 1px solid rgba(39, 174, 96, 0.22);
}

.contact-archive-badge--pending {
    background: rgba(231, 76, 60, 0.14);
    color: #b82f22;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

@media (max-width: 900px) {
    .contact-archive-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .contact-search-form {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        justify-items: stretch;
    }

    .contact-search-form input {
        width: 100%;
    }

    .contact-delete-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-archive-row {
        grid-template-columns: 58px repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-archive-card {
        padding: 22px 18px;
    }

    .contact-archive-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .contact-archive-row--head {
        display: none;
    }

    .contact-archive-pagination {
        gap: 6px;
        flex-wrap: wrap;
    }

    .contact-archive-page {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
    }

    .contact-delete-grid {
        grid-template-columns: 1fr;
    }
}

.notice-archive-section {
    padding-top: 18px;
}

.notice-archive-card {
    display: grid;
    gap: 18px;
    padding: 30px 30px 26px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 61, 183, 0.05)),
        rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 53, 61, 0.08);
    box-shadow: 0 30px 72px rgba(8, 29, 45, 0.1);
}

.notice-archive-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: end;
}

.notice-archive-head h2 {
    margin: 0;
    font-size: clamp(1.1rem, 1.9vw, 1.75rem);
    color: #12353d;
}

.notice-archive-table {
    display: grid;
    gap: 7px;
}

.notice-archive-row {
    display: grid;
    grid-template-columns: 96px minmax(180px, 1.15fr) minmax(240px, 1.8fr) 128px 80px;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(17, 92, 95, 0.08);
}

.notice-archive-row span {
    min-width: 0;
    color: #20464e;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.36;
    overflow-wrap: anywhere;
}

.notice-archive-row--head {
    background: rgba(22, 98, 103, 0.08);
    border-color: rgba(18, 83, 92, 0.1);
}

.notice-archive-row--head span {
    color: #0f5960;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.notice-archive-title {
    color: #12353d;
    font-weight: 800 !important;
}

.notice-archive-summary {
    color: #4b6770 !important;
}

.notice-archive-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 92, 95, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #19555d;
    font-size: 0.86rem;
    font-weight: 800;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.notice-archive-link:hover,
.notice-archive-link:focus-visible {
    background: rgba(214, 247, 241, 0.9);
    border-color: rgba(17, 92, 95, 0.22);
    color: #103f46;
    transform: translateY(-1px);
}

.notice-archive-empty {
    padding: 26px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px dashed rgba(17, 92, 95, 0.16);
    color: #49676f;
    text-align: center;
    font-weight: 600;
}

.notice-archive-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.notice-archive-badge--pinned {
    background: rgba(18, 215, 255, 0.16);
    color: #066c84;
    border: 1px solid rgba(18, 215, 255, 0.22);
}

.notice-archive-badge--default {
    background: rgba(255, 61, 183, 0.12);
    color: #9b246e;
    border: 1px solid rgba(255, 61, 183, 0.18);
}

body.page-notices {
    --page-tail-bg:
        radial-gradient(circle at 10% 20%, rgba(189, 108, 88, 0.32), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(54, 124, 160, 0.34), transparent 26%),
        radial-gradient(circle at 48% 82%, rgba(134, 103, 72, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(223, 208, 187, 0.98) 0%, rgba(206, 196, 185, 0.98) 46%, rgba(177, 195, 207, 0.98) 100%);
    min-height: 100vh;
    background: var(--page-tail-bg);
}

body.page-notices main {
    position: relative;
    overflow: hidden;
    background: transparent;
}

body.page-notices main::before,
body.page-notices main::after {
    content: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body.page-notices main::before {
    background:
        radial-gradient(circle at 20% 28%, rgba(255, 250, 243, 0.46), transparent 18%),
        radial-gradient(circle at 80% 30%, rgba(243, 248, 252, 0.34), transparent 18%);
    opacity: 0.8;
}

body.page-notices main::after {
    inset: 18px 24px auto;
    height: 220px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06));
    filter: blur(0.5px);
    opacity: 0.7;
}

body.page-notices .notice-archive-section {
    padding-top: 48px;
    padding-bottom: 18px;
    position: relative;
    z-index: 1;
}

body.page-notices .site-footer {
    padding-bottom: clamp(72px, 8vh, 120px);
    background: transparent;
}

body.page-notices .notice-archive-card {
    gap: 20px;
    padding: 28px 28px 24px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(244, 239, 233, 0.8)),
        rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(107, 95, 79, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 24px 56px rgba(32, 29, 25, 0.09);
    backdrop-filter: blur(16px);
}

body.page-notices .notice-archive-head {
    padding-bottom: 4px;
}

body.page-notices .notice-archive-head h1,
body.page-notices .notice-archive-head h2 {
    margin: 0;
    font-size: clamp(1.08rem, 1.75vw, 1.55rem);
    color: #2e2a25;
}

body.page-notices .notice-archive-table {
    gap: 8px;
}

body.page-notices .notice-archive-row {
    padding: 13px 16px;
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid rgba(118, 107, 91, 0.1);
}

body.page-notices .notice-archive-row span {
    color: #3e3934;
    line-height: 1.4;
}

body.page-notices .notice-archive-row--head {
    background: rgba(89, 105, 119, 0.08);
    border-color: rgba(89, 105, 119, 0.12);
}

body.page-notices .notice-archive-row--head span {
    color: #5a6772;
}

body.page-notices .notice-archive-title {
    color: #26221d;
}

body.page-notices .notice-archive-summary {
    color: #675f55 !important;
}

body.page-notices .notice-archive-link {
    border-color: rgba(89, 105, 119, 0.14);
    background: rgba(246, 248, 249, 0.9);
    color: #495964;
}

body.page-notices .notice-archive-link:hover,
body.page-notices .notice-archive-link:focus-visible {
    background: rgba(226, 233, 238, 0.98);
    border-color: rgba(89, 105, 119, 0.24);
    color: #2e3f49;
}

body.page-notices .notice-archive-empty {
    background: rgba(250, 245, 239, 0.82);
    border-color: rgba(118, 107, 91, 0.18);
    color: #655d53;
}

body.page-notices .notice-archive-badge--pinned {
    background: rgba(194, 167, 92, 0.16);
    color: #796120;
    border-color: rgba(194, 167, 92, 0.24);
}

body.page-notices .notice-archive-badge--default {
    background: rgba(89, 105, 119, 0.1);
    color: #55626c;
    border-color: rgba(89, 105, 119, 0.15);
}

@media (max-width: 900px) {
    .notice-archive-row {
        grid-template-columns: 96px minmax(150px, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .notice-archive-card {
        padding: 22px 18px;
    }

    .notice-archive-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .notice-archive-row--head {
        display: none;
    }
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.form-row label {
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(21, 88, 95, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    font: inherit;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(62, 169, 157, 0.72);
    box-shadow: 0 0 0 6px rgba(95, 210, 195, 0.14);
    transform: translateY(-1px);
}

.form-row input[type="checkbox"] {
    width: auto;
    min-height: auto;
}

.field-error {
    color: #ae215f;
    font-size: 0.92rem;
}

.contact-example-list {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.contact-example-list li {
    position: relative;
    padding-left: 16px;
    color: #305660;
    line-height: 1.65;
}

.contact-example-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4ccfbe, #0f6d73);
    transform: translateY(-50%);
}

.notice-detail-section {
    position: relative;
    padding-top: 48px;
    padding-bottom: 28px;
}

.notice-detail-shell {
    display: grid;
    gap: 28px;
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid rgba(118, 107, 91, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(241, 237, 229, 0.78)),
        rgba(255, 255, 255, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 32px 84px rgba(32, 29, 25, 0.13);
    backdrop-filter: blur(18px);
}

.notice-detail-hero {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 3.4vw, 36px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 10%, rgba(194, 167, 92, 0.20), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(54, 124, 160, 0.20), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(248, 242, 232, 0.72));
    border: 1px solid rgba(118, 107, 91, 0.12);
}

.notice-detail-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #6c6257;
    font-size: 0.9rem;
    font-weight: 800;
}

.notice-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(194, 167, 92, 0.18);
    border: 1px solid rgba(194, 167, 92, 0.26);
    color: #6d561d;
}

.notice-detail-badge--default {
    background: rgba(89, 105, 119, 0.10);
    border-color: rgba(89, 105, 119, 0.16);
    color: #4b5a64;
}

.notice-detail-hero h1 {
    max-width: 920px;
    margin: 0;
    color: #231f1a;
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.notice-detail-summary {
    max-width: 860px;
    margin: 0;
    color: #5d554c;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    font-weight: 700;
    line-height: 1.7;
}

.notice-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 24px;
    align-items: start;
}

.notice-detail-content {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.88);
    border: 1px solid rgba(118, 107, 91, 0.10);
}

.notice-detail-content p {
    position: relative;
    margin: 0;
    padding: 0 0 0 18px;
    color: #3e3934;
    font-size: clamp(0.98rem, 1.1vw, 1.06rem);
    font-weight: 650;
    line-height: 1.88;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.notice-detail-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c2a75c, #4c8ca4);
    transform: translateY(-50%);
}

.notice-detail-content p:first-child {
    padding: 18px 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(242, 225, 184, 0.42), rgba(221, 235, 241, 0.44)),
        rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(118, 107, 91, 0.10);
    color: #2d2924;
    font-size: clamp(1.05rem, 1.3vw, 1.18rem);
}

.notice-detail-content p:first-child::before {
    content: none;
}

.notice-detail-aside {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(160deg, rgba(21, 35, 53, 0.94), rgba(35, 52, 70, 0.92)),
        #111d2d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eef6ff;
    box-shadow: 0 24px 58px rgba(20, 32, 48, 0.16);
}

.notice-detail-aside-label {
    color: #e7c85d;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.notice-detail-aside h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.notice-detail-aside ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.notice-detail-aside li {
    position: relative;
    padding-left: 18px;
    color: rgba(238, 246, 255, 0.78);
    font-weight: 700;
    line-height: 1.55;
}

.notice-detail-aside li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.73em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #7bdcf1;
    transform: translateY(-50%);
}

.notice-detail-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 2px;
}

.notice-detail-back-link,
.notice-detail-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
}

.notice-detail-back-link {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(118, 107, 91, 0.14);
    color: #4c4943;
}

.notice-detail-contact-link {
    background: linear-gradient(135deg, #0b5966, #168a91);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(11, 89, 102, 0.22);
}

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

    .notice-detail-aside {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .notice-detail-section {
        padding-top: 28px;
    }

    .notice-detail-shell {
        padding: 18px;
    }

    .notice-detail-hero,
    .notice-detail-content,
    .notice-detail-aside {
        border-radius: 22px;
    }

    .notice-detail-actions {
        display: grid;
    }
}

.text-link {
    position: relative;
    display: inline-flex;
    font-weight: 700;
    color: #0e6f93;
}

.site-footer {
    margin-top: auto;
    padding: 28px 0 44px;
    background: var(--page-tail-bg, transparent);
}

.footer-shell {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    min-height: 166px;
    padding: 18px 28px;
    background:
        linear-gradient(135deg, rgba(8, 20, 39, 0.94), rgba(18, 32, 60, 0.93)),
        #091426;
    color: #eef6ff;
}

.footer-brand p,
.footer-grid span,
.footer-grid a {
    color: rgba(238, 246, 255, 0.74);
}

.footer-brand-mark {
    width: 138px;
    height: 166px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-brand-lockup {
    display: grid;
    justify-items: start;
    gap: 8px;
}

.footer-brand-logo-only {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 10px;
}

.footer-brand-logo-only .text-link {
    display: inline-flex;
}

.footer-right {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    min-width: 0;
}

.footer-grid {
    grid-template-columns: minmax(150px, 176px) 176px;
    align-items: center;
    gap: 18px 24px;
    min-width: 0;
}

.footer-grid h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-grid > div:not(.footer-contact-column) a,
.footer-grid > div:not(.footer-contact-column) span {
    display: block;
    margin-bottom: 8px;
}

.footer-meta {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 8px;
    min-width: 240px;
}

.footer-meta span {
    color: rgba(238, 246, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.5;
}

.footer-contact-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-contact-stack {
    display: grid;
    grid-template-rows: repeat(3, 44px);
    gap: 8px;
    align-content: center;
    justify-items: stretch;
    width: 176px;
    max-width: 176px;
    height: 148px;
    margin: 0;
    justify-self: end;
}

.footer-contact-channel {
    width: 100%;
    height: 44px;
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: rgba(247, 250, 255, 0.88);
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-contact-channel:hover,
.footer-contact-channel:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(5, 10, 24, 0.18);
}

.footer-contact-channel__icon {
    width: 36px;
    height: 36px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 !important;
}

.footer-contact-channel__icon img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.footer-contact-channel__label {
    display: block !important;
    align-items: center;
    min-height: 0;
    white-space: nowrap;
    margin: 0 !important;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-contact-stack .footer-contact-channel *,
.footer-contact-stack .footer-contact-channel {
    margin-bottom: 0 !important;
}

.footer-contact-channel--kakao {
    background: linear-gradient(135deg, rgba(255, 229, 0, 0.92), rgba(255, 208, 0, 0.82));
    border-color: rgba(255, 235, 59, 0.42);
    color: rgba(15, 18, 28, 0.82);
}

.footer-contact-channel--discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(125, 138, 255, 0.14));
}

.footer-contact-channel--telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.16), rgba(89, 188, 240, 0.14));
}

.footer-contact-channel--kakao .footer-contact-channel__icon {
    background: rgba(255, 231, 69, 0.98);
}

.footer-contact-channel--discord .footer-contact-channel__icon {
    background: rgba(196, 202, 255, 0.7);
}

.footer-contact-channel--telegram .footer-contact-channel__icon {
    background: rgba(171, 220, 247, 0.78);
}

.empty-box {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(18, 215, 255, 0.08)),
        var(--surface);
}

.pagination {
    justify-content: center;
    margin-top: 24px;
}

.about-hub-layout,
.about-draft-shell,
.about-draft-copy-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-copy-stack {
    display: grid;
    gap: 16px;
}

.about-copy-stack p {
    margin: 0;
    color: var(--muted);
}

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

.about-draft-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
        var(--surface);
    box-shadow: var(--shadow-soft);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.about-draft-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 215, 255, 0.34);
    box-shadow: 0 28px 66px rgba(12, 23, 46, 0.14);
}

.about-draft-card-visual,
.about-draft-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-draft-index {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #23324c;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-draft-card-art,
.draft-visual-grid,
.draft-visual-signals,
.draft-visual-blueprint,
.draft-visual-glass {
    position: absolute;
    inset: 0;
}

.about-draft-card-art {
    display: grid;
    align-content: end;
    gap: 14px;
    padding: 24px;
}

.about-draft-card-art span {
    display: block;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 36px rgba(12, 23, 46, 0.08);
}

.about-draft-card-art span:nth-child(1) {
    width: 54%;
    height: 68px;
}

.about-draft-card-art span:nth-child(2) {
    width: 72%;
    height: 18px;
}

.about-draft-card-art span:nth-child(3) {
    width: 38%;
    height: 18px;
}

.about-draft-card-copy {
    display: grid;
    gap: 10px;
}

.about-draft-card-copy strong {
    font-size: 1.2rem;
    line-height: 1.15;
}

.about-draft-page {
    position: relative;
    overflow: hidden;
}

.about-draft-page::before {
    content: none;
}

.about-draft-shell {
    position: relative;
    z-index: 1;
    align-items: center;
}

.about-draft-copy {
    display: grid;
    gap: 16px;
}

.about-company-hero {
    border-bottom: none;
}

.about-company-copy-hero {
    padding-bottom: 92px;
}

.about-corporate-hero {
    display: flex;
    align-items: stretch;
    min-height: calc(100svh - 260px);
    padding-top: 72px;
    padding-bottom: 96px;
    background: transparent;
}

.page-about-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-about-backdrop::before,
.page-about-backdrop::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(154px);
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.page-about-backdrop::before {
    left: -18%;
    top: -14%;
    width: 74vw;
    height: 74vw;
    background:
        radial-gradient(circle, rgba(255, 102, 214, 1) 0%, rgba(255, 102, 214, 0.56) 30%, rgba(255, 102, 214, 0.12) 54%, rgba(255, 102, 214, 0) 78%);
}

.page-about-backdrop::after {
    right: -16%;
    bottom: -22%;
    width: 78vw;
    height: 78vw;
    background:
        radial-gradient(circle, rgba(58, 223, 255, 0.96) 0%, rgba(94, 132, 255, 0.56) 32%, rgba(94, 132, 255, 0.14) 56%, rgba(94, 132, 255, 0) 80%);
}

.about-cosmic-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 106, 222, 0.98), transparent 38%),
        radial-gradient(circle at 84% 10%, rgba(66, 232, 255, 0.94), transparent 36%),
        radial-gradient(circle at 76% 62%, rgba(118, 126, 255, 0.76), transparent 42%),
        radial-gradient(circle at 34% 48%, rgba(255, 196, 239, 0.52), transparent 32%),
        radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.24), transparent 18%),
        linear-gradient(180deg, rgba(2, 3, 8, 1), rgba(4, 8, 18, 0.98) 34%, rgba(6, 12, 24, 1));
}

.about-background-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.78;
    mix-blend-mode: screen;
}

.about-cosmic-haze,
.about-cosmic-pulse,
.about-cosmic-grain {
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
}

.about-cosmic-haze {
    mix-blend-mode: screen;
    filter: blur(132px);
    opacity: 1;
    animation: about-cosmic-float 17.4s ease-in-out infinite;
}

.about-cosmic-haze-a {
    left: -4%;
    top: -2%;
    width: 58vw;
    height: 58vw;
    background: radial-gradient(circle, rgba(255, 98, 211, 0.58), rgba(255, 98, 211, 0));
}

.about-cosmic-haze-b {
    right: -2%;
    top: 8%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(33, 215, 255, 0.54), rgba(33, 215, 255, 0));
    animation-delay: -6s;
}

.about-cosmic-haze-c {
    right: 6%;
    bottom: -8%;
    width: 62vw;
    height: 62vw;
    background: radial-gradient(circle, rgba(86, 132, 255, 0.52), rgba(86, 132, 255, 0));
    animation-delay: -11s;
}

.about-cosmic-pulse {
    width: 26vw;
    height: 26vw;
    min-width: 240px;
    min-height: 240px;
    filter: blur(28px);
    opacity: 0.34;
    animation: about-cosmic-pulse 12.6s ease-out infinite;
}

.about-cosmic-pulse-a {
    left: 16%;
    bottom: 12%;
    background:
        radial-gradient(circle, rgba(255, 246, 255, 0.42) 0%, rgba(255, 132, 222, 0.28) 18%, rgba(255, 132, 222, 0.14) 38%, rgba(255, 132, 222, 0) 74%);
}

.about-cosmic-pulse-b {
    right: 12%;
    top: 22%;
    background:
        radial-gradient(circle, rgba(241, 252, 255, 0.38) 0%, rgba(74, 226, 255, 0.28) 18%, rgba(74, 226, 255, 0.14) 38%, rgba(74, 226, 255, 0) 74%);
    animation-delay: -2.1s;
}

.about-cosmic-grain {
    inset: 0;
    border-radius: 0;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.5px),
        radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.28) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.6px),
        radial-gradient(circle at 12% 72%, rgba(255, 255, 255, 0.22) 0 1.2px, transparent 1.8px);
    background-size: 420px 420px, 520px 520px, 460px 460px, 540px 540px;
}

@keyframes about-cosmic-float {
    0%,
    100% {
        transform: translate3d(-18px, 14px, 0) scale(0.19);
    }
    50% {
        transform: translate3d(30px, -26px, 0) scale(1.46);
    }
}

@keyframes about-cosmic-pulse {
    0% {
        transform: scale(0.05);
        opacity: 0.02;
    }
    34% {
        transform: scale(0.88);
        opacity: 0.4;
    }
    58% {
        transform: scale(1.54);
        opacity: 0.24;
    }
    100% {
        transform: scale(2.28);
        opacity: 0;
    }
}

.about-corporate-shell {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: center;
}

.about-corporate-container {
    width: min(1120px, calc(100% - 40px));
}

.about-corporate-main {
    position: relative;
    display: grid;
    gap: 28px;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 34px 38px 36px 44px;
    border-radius: 30px;
    border: none;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    color: #eff7ff;
    overflow: hidden;
}

.about-corporate-main > * {
    position: relative;
    z-index: 1;
}

.about-corporate-main::before {
    content: none;
}

.about-corporate-main::after {
    content: none;
}

.about-corporate-main h1,
.about-corporate-main p {
    color: inherit;
}

.about-corporate-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.about-corporate-headline {
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 22px 24px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.82), rgba(8, 15, 28, 0.68));
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.about-corporate-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(248, 251, 255, 0.96);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-corporate-wordmark {
    margin: 0;
    line-height: 1;
}

.about-corporate-wordmark .company-wordmark-02-primary {
    color: #ffffff;
    font-size: clamp(3.6rem, 6.9vw, 5.9rem);
    line-height: 0.82;
    text-shadow: 0 28px 56px rgba(4, 10, 24, 0.54);
}

.about-corporate-summary {
    display: grid;
    gap: 16px;
    align-self: stretch;
    min-width: 0;
    padding: 22px 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.8), rgba(8, 14, 26, 0.66));
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.about-corporate-keyline {
    margin: 0;
    color: #ffffff;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: clamp(1.28rem, 1.9vw, 1.62rem);
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: -0.03em;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

.about-corporate-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.about-corporate-keywords span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    min-width: 0;
}

.about-corporate-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.about-corporate-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
    align-items: start;
}

.about-corporate-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.08rem;
    line-height: 1.9;
    letter-spacing: -0.02em;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.about-corporate-copy strong {
    color: #f9fdff;
    font-weight: 800;
    text-shadow: 0 10px 22px rgba(7, 21, 44, 0.16);
}

.about-corporate-copy-lead {
    color: #f9fdff;
    font-size: 1.18rem !important;
    line-height: 1.86 !important;
}

.about-corporate-copy-column {
    position: relative;
    padding: 24px 26px 26px;
    min-width: 0;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.82), rgba(8, 14, 26, 0.68));
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.about-corporate-copy-column::before {
    content: none;
}

.about-process-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-process-step-card {
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 22px 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.82), rgba(8, 14, 26, 0.68));
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.about-process-step-card::before {
    content: none;
}

.about-process-step-card strong {
    color: rgba(18, 215, 255, 0.86);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.about-process-step-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.about-process-step-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.98rem;
    line-height: 1.74;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.about-corporate-closing {
    display: flex;
    justify-content: flex-start;
}

.about-corporate-closing span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 12, 24, 0.78);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: min(100%, 100%);
    white-space: normal;
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.about-copy-stack-hero {
    gap: 18px;
    margin-top: 6px;
}

.about-copy-stack-hero p {
    color: rgba(239, 247, 255, 0.9);
    font-size: 1.02rem;
    line-height: 1.9;
}

.about-enterprise-hero {
    padding-bottom: 88px;
}

.about-enterprise-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: end;
}

.about-enterprise-copy {
    display: grid;
    gap: 16px;
    max-width: 760px;
    color: #eff7ff;
}

.about-enterprise-copy .eyebrow,
.about-enterprise-copy .lead,
.about-enterprise-copy h1 {
    color: inherit;
}

.about-enterprise-copy h1 {
    max-width: 10ch;
}

.about-enterprise-tags {
    margin-top: 8px;
}

.about-enterprise-tags span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #eff7ff;
}

.about-enterprise-hero-panel {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 26px 58px rgba(7, 21, 44, 0.24);
    color: #eff7ff;
}

.about-enterprise-hero-panel .eyebrow {
    color: rgba(239, 247, 255, 0.72);
}

.about-enterprise-hero-grid {
    display: grid;
    gap: 14px;
}

.about-enterprise-hero-grid article {
    display: grid;
    gap: 6px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-enterprise-hero-grid article:first-child {
    padding-top: 0;
    border-top: 0;
}

.about-enterprise-hero-grid strong,
.about-enterprise-hero-grid p {
    color: inherit;
}

.about-company-intro {
    display: grid;
    gap: 14px;
}

.about-company-intro-blue {
    max-width: 760px;
    color: #eff7ff;
}

.about-company-intro-blue .eyebrow,
.about-company-intro-blue .lead,
.about-company-intro-blue h1 {
    color: inherit;
}

.about-copy-panel {
    max-width: 760px;
}

.about-enterprise-section {
    padding-top: 84px;
    padding-bottom: 84px;
}

.about-enterprise-summary-shell {
    display: grid;
    gap: 28px;
}

.about-enterprise-head {
    max-width: 760px;
}

.about-enterprise-head h2 {
    max-width: 15ch;
}

.about-enterprise-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.about-main-copy-panel {
    max-width: none;
    padding: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 251, 255, 0.9)),
        var(--surface);
}

.about-enterprise-side-panel {
    padding: 32px;
    background:
        linear-gradient(155deg, rgba(11, 29, 60, 0.96), rgba(23, 61, 110, 0.92)),
        #0d1830;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(8, 20, 39, 0.18);
}

.about-enterprise-side-panel .eyebrow,
.about-enterprise-side-panel h3,
.about-enterprise-side-panel p {
    color: #eff7ff;
}

.about-enterprise-side-panel h3 {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.25;
}

.about-enterprise-bullets {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-enterprise-bullets li {
    position: relative;
    padding-left: 18px;
    color: rgba(239, 247, 255, 0.82);
}

.about-enterprise-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.about-blueprint-hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.about-blueprint-copy .tag-row {
    margin-top: 8px;
}

.about-blueprint-visual {
    min-height: 420px;
}

.about-blueprint-visual-panel {
    position: absolute;
    inset: 28px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 26px 58px rgba(7, 21, 44, 0.24);
}

.about-blueprint-visual-panel strong,
.about-blueprint-visual-panel p,
.about-blueprint-visual-panel .surface-label {
    color: #eff7ff;
}

.about-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.about-metric-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    box-shadow: 0 16px 34px rgba(8, 20, 39, 0.12);
}

.about-metric-label {
    display: block;
    margin-bottom: 6px;
    color: #5b6b84;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-metric-card strong {
    display: block;
    color: #0f1830;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

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

.about-capability-grid-enterprise {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}

.about-capability-card,
.about-process-step {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
        var(--surface);
    box-shadow: var(--shadow-soft);
}

.about-capability-card h3,
.about-process-step h3 {
    margin: 14px 0 10px;
}

.about-capability-card p,
.about-process-step p {
    margin: 0;
    color: var(--muted);
}

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

.about-enterprise-principles-band {
    display: grid;
    gap: 28px;
    padding: 34px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(243, 249, 255, 0.9)),
        var(--surface);
}

.about-process-grid-enterprise {
    align-items: stretch;
}

.about-enterprise-cta-panel {
    text-align: left;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(9, 26, 54, 0.97), rgba(18, 51, 97, 0.92)),
        #0d1830;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 56px rgba(8, 20, 39, 0.18);
}

.about-enterprise-cta-panel .eyebrow,
.about-enterprise-cta-panel h2,
.about-enterprise-cta-panel p {
    color: #eff7ff;
}

.about-enterprise-cta-panel .tag-row {
    margin-top: 20px;
}

.about-enterprise-cta-panel .button-ghost {
    color: #eff7ff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.about-draft-copy .lead {
    max-width: 52ch;
}

.draft-visual-panel,
.draft-visual-quote,
.draft-visual-console,
.draft-visual-minimal,
.draft-visual-premium {
    position: absolute;
    inset: 24px;
    padding: 24px;
    border-radius: 24px;
    display: grid;
    align-content: start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 50px rgba(12, 23, 46, 0.12);
}

.draft-visual-quote span {
    font-size: 4rem;
    line-height: 0.8;
    color: rgba(8, 20, 39, 0.22);
}

.draft-visual-grid,
.draft-visual-signals,
.draft-visual-blueprint,
.draft-visual-glass {
    display: grid;
    place-items: center;
}

.draft-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
}

.draft-visual-grid span,
.draft-visual-signals span,
.draft-visual-blueprint span {
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(12, 23, 46, 0.1);
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.draft-visual-signals {
    grid-template-columns: repeat(2, 110px);
    gap: 16px;
}

.draft-visual-signals span {
    width: 110px;
    height: 90px;
}

.draft-visual-blueprint {
    padding: 28px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 26px 26px;
}

.draft-visual-blueprint span:nth-child(1) {
    position: absolute;
    top: 48px;
    left: 40px;
    width: 180px;
    height: 120px;
}

.draft-visual-blueprint span:nth-child(2) {
    position: absolute;
    right: 36px;
    top: 92px;
    width: 130px;
    height: 86px;
}

.draft-visual-blueprint span:nth-child(3) {
    position: absolute;
    left: 96px;
    bottom: 42px;
    width: 210px;
    height: 52px;
}

.draft-visual-console {
    background: rgba(10, 17, 34, 0.94);
    color: #e7f4ff;
    border-color: rgba(255, 255, 255, 0.08);
}

.draft-visual-console span {
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 1rem;
}

.draft-visual-timeline {
    position: absolute;
    inset: 24px;
    display: grid;
    gap: 18px;
    align-content: center;
}

.draft-visual-timeline span {
    display: block;
    padding: 18px 20px;
    border-left: 4px solid rgba(18, 215, 255, 0.8);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(12, 23, 46, 0.12);
    font-weight: 700;
}

.draft-visual-minimal {
    place-content: center;
    text-align: center;
}

.draft-visual-minimal strong {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.draft-visual-glass div {
    position: absolute;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 48px rgba(12, 23, 46, 0.12);
}

.draft-visual-glass div:nth-child(1) {
    inset: 40px 150px 80px 36px;
}

.draft-visual-glass div:nth-child(2) {
    top: 28px;
    right: 34px;
    width: 150px;
    height: 118px;
}

.draft-visual-glass div:nth-child(3) {
    right: 72px;
    bottom: 30px;
    width: 190px;
    height: 74px;
}

.draft-visual-premium {
    background: linear-gradient(160deg, rgba(11, 17, 31, 0.94), rgba(38, 45, 68, 0.94));
    color: #f6f7fb;
    border-color: rgba(255, 255, 255, 0.08);
}

.visual-mode-executive,
.draft-theme-1.about-draft-page {
    background: linear-gradient(145deg, rgba(234, 245, 255, 0.92), rgba(255, 255, 255, 0.78));
}

.visual-mode-editorial,
.draft-theme-2.about-draft-page {
    background: linear-gradient(145deg, rgba(250, 247, 241, 0.96), rgba(255, 255, 255, 0.84));
}

.visual-mode-grid,
.draft-theme-3.about-draft-page {
    background: linear-gradient(145deg, rgba(240, 247, 255, 0.94), rgba(243, 250, 255, 0.82));
}

.visual-mode-console,
.draft-theme-4.about-draft-page {
    background: linear-gradient(145deg, rgba(10, 17, 34, 0.96), rgba(18, 28, 54, 0.96));
    color: #f1f6ff;
}

.draft-theme-4.about-draft-page .eyebrow,
.draft-theme-4.about-draft-page .lead,
.draft-theme-4.about-draft-page h1,
.draft-theme-4.about-draft-page p,
.draft-theme-4.about-draft-page .tag-row span {
    color: inherit;
}

.visual-mode-timeline,
.draft-theme-5.about-draft-page {
    background: linear-gradient(145deg, rgba(248, 250, 255, 0.94), rgba(255, 247, 251, 0.82));
}

.visual-mode-signals,
.draft-theme-6.about-draft-page {
    background: linear-gradient(145deg, rgba(235, 251, 255, 0.94), rgba(255, 247, 253, 0.84));
}

.visual-mode-minimal,
.draft-theme-7.about-draft-page {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.86));
}

.visual-mode-glass,
.draft-theme-8.about-draft-page {
    background: linear-gradient(145deg, rgba(237, 246, 255, 0.92), rgba(254, 246, 252, 0.86));
}

.visual-mode-blueprint,
.draft-theme-9.about-draft-page {
    background: linear-gradient(145deg, rgba(12, 58, 108, 0.92), rgba(26, 88, 148, 0.94));
    color: #eff7ff;
}

.draft-theme-9.about-draft-page .eyebrow,
.draft-theme-9.about-draft-page .lead,
.draft-theme-9.about-draft-page h1,
.draft-theme-9.about-draft-page p,
.draft-theme-9.about-draft-page .tag-row span {
    color: inherit;
}

.visual-mode-premium,
.draft-theme-10.about-draft-page {
    background: linear-gradient(145deg, rgba(249, 247, 244, 0.95), rgba(238, 235, 230, 0.9));
}

@keyframes float-orb {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, 18px, 0);
    }
}

@keyframes hero-orb-drift-a {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    35% {
        transform: translate3d(24px, 18px, 0) scale(1.04) rotate(3deg);
    }
    70% {
        transform: translate3d(12px, 42px, 0) scale(0.98) rotate(-2deg);
    }
}

@keyframes hero-orb-drift-b {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    30% {
        transform: translate3d(-18px, -14px, 0) scale(1.03) rotate(-4deg);
    }
    65% {
        transform: translate3d(-34px, 16px, 0) scale(0.97) rotate(2deg);
    }
}

@keyframes hero-orb-breathe {
    0%,
    100% {
        opacity: 0.48;
        filter: blur(18px) brightness(0.82);
    }
    50% {
        opacity: 1;
        filter: blur(32px) brightness(1.34);
    }
}

@keyframes hero-surface-breathe {
    0%,
    100% {
        box-shadow:
            inset 0 110px 180px rgba(255, 255, 255, 0.18),
            inset 0 -120px 220px rgba(6, 22, 48, 0.08);
    }
    50% {
        box-shadow:
            inset 0 160px 260px rgba(255, 255, 255, 0.28),
            inset 0 -190px 300px rgba(6, 22, 48, 0.14);
    }
}

@keyframes hero-bg-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-1.2%, 1%, 0) scale(1.02);
    }
}

@keyframes hero-ribbon-sweep-a {
    0% {
        transform: translate3d(-18%, -10%, 0) rotate(-12deg) scaleX(0.9);
        opacity: 0.2;
    }
    18% {
        opacity: 0.62;
    }
    52% {
        transform: translate3d(4%, -2%, 0) rotate(-7deg) scaleX(1.05);
        opacity: 0.9;
    }
    100% {
        transform: translate3d(18%, 10%, 0) rotate(-3deg) scaleX(1.1);
        opacity: 0.18;
    }
}

@keyframes hero-ribbon-sweep-b {
    0% {
        transform: translate3d(16%, 12%, 0) rotate(11deg) scaleX(0.92);
        opacity: 0.16;
    }
    22% {
        opacity: 0.5;
    }
    58% {
        transform: translate3d(-2%, 4%, 0) rotate(6deg) scaleX(1.04);
        opacity: 0.82;
    }
    100% {
        transform: translate3d(-20%, -8%, 0) rotate(2deg) scaleX(1.08);
        opacity: 0.14;
    }
}

@keyframes hero-beam-drift-a {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-18deg) scale(1);
    }
    50% {
        transform: translate3d(34px, 18px, 0) rotate(-11deg) scale(1.08);
    }
}

@keyframes hero-beam-drift-b {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(22deg) scale(1);
    }
    50% {
        transform: translate3d(-38px, 22px, 0) rotate(14deg) scale(1.1);
    }
}

@keyframes hero-beam-pan {
    0%,
    100% {
        transform: translate3d(-5%, 0, 0) rotate(-8deg) scaleX(0.96);
        opacity: 0.74;
    }
    50% {
        transform: translate3d(8%, -8%, 0) rotate(-3deg) scaleX(1.08);
        opacity: 0.96;
    }
}

@keyframes hero-stream-roll-a {
    0% {
        transform: translate3d(-14%, -12%, 0) rotate(-10deg) scaleX(0.92);
        opacity: 0.18;
    }
    16% {
        opacity: 0.56;
    }
    48% {
        transform: translate3d(2%, -4%, 0) rotate(-7deg) scaleX(1.03);
        opacity: 0.88;
    }
    100% {
        transform: translate3d(16%, 8%, 0) rotate(-4deg) scaleX(1.08);
        opacity: 0.14;
    }
}

@keyframes hero-stream-roll-b {
    0% {
        transform: translate3d(14%, 8%, 0) rotate(7deg) scaleX(0.9);
        opacity: 0.14;
    }
    20% {
        opacity: 0.46;
    }
    56% {
        transform: translate3d(-2%, 0, 0) rotate(4deg) scaleX(1.02);
        opacity: 0.82;
    }
    100% {
        transform: translate3d(-18%, -10%, 0) rotate(1deg) scaleX(1.06);
        opacity: 0.1;
    }
}

@keyframes hero-beam-flicker {
    0%,
    100% {
        opacity: 0.82;
    }
    16% {
        opacity: 0.9;
    }
    19% {
        opacity: 0.68;
    }
    24% {
        opacity: 0.94;
    }
    61% {
        opacity: 0.76;
    }
    66% {
        opacity: 0.92;
    }
}

@keyframes hero-sweep-pan {
    0% {
        transform: translate3d(-22%, -4%, 0) rotate(0deg) scaleX(0.8);
        opacity: 0.42;
    }
    50% {
        transform: translate3d(12%, 2%, 0) rotate(2deg) scaleX(1.06);
        opacity: 0.92;
    }
    100% {
        transform: translate3d(28%, -2%, 0) rotate(0deg) scaleX(0.84);
        opacity: 0.26;
    }
}

@keyframes hero-rings-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.36;
    }
    50% {
        transform: translate3d(2%, -3%, 0) scale(1.03);
        opacity: 0.48;
    }
}

@keyframes hero-grain-drift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(-0.4%, 0.5%, 0);
    }
    50% {
        transform: translate3d(0.5%, -0.3%, 0);
    }
    75% {
        transform: translate3d(-0.2%, 0.4%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-scanline-shift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 36px, 6px 8px;
    }
}

@keyframes service-code-orbit-pulse {
    0%,
    100% {
        opacity: 0.46;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.84;
        transform: scale(1.03);
    }
}

@keyframes service-code-orbit-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes service-code-scanline {
    0% {
        opacity: 0;
        transform: translate(-50%, -190px);
    }
    22%,
    70% {
        opacity: 0.62;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 190px);
    }
}

body.page-about,
body:has(.about-corporate-hero) {
    --page-tail-bg: transparent;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 102, 214, 0.26), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(58, 223, 255, 0.22), transparent 26%),
        radial-gradient(circle at 68% 72%, rgba(130, 116, 255, 0.18), transparent 30%),
        radial-gradient(circle at 36% 50%, rgba(255, 196, 245, 0.07), transparent 24%),
        linear-gradient(180deg, #02040a 0%, #040914 38%, #07101d 100%);
    background-attachment: fixed;
    overflow-x: clip;
}

html:has(body.page-about),
html:has(.about-corporate-hero) {
    overflow-x: clip;
}

body.page-about > .page-orb,
body:has(.about-corporate-hero) > .page-orb {
    display: none;
}

body.page-about main,
body:has(.about-corporate-hero) main {
    display: flex;
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
    background: transparent;
}

body.page-about .about-corporate-hero,
body:has(.about-corporate-hero) .about-corporate-hero {
    flex: 1 0 auto;
    display: flex;
    align-items: stretch;
    padding-top: 44px;
    padding-bottom: 36px;
    position: relative;
    z-index: 1;
}

body.page-about .about-corporate-hero > .container,
body:has(.about-corporate-hero) .about-corporate-hero > .container {
    display: flex;
    align-items: stretch;
}

body.page-about .about-corporate-shell,
body:has(.about-corporate-hero) .about-corporate-shell {
    width: 100%;
    display: flex;
    align-items: stretch;
}

body.page-about .about-corporate-main,
body:has(.about-corporate-hero) .about-corporate-main {
    width: 100%;
}

body.page-about .site-footer,
body:has(.about-corporate-hero) .site-footer {
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

body[class] .site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(248, 252, 255, 0.58);
    backdrop-filter: blur(22px);
}

body[class] .site-header.is-scrolled {
    background: rgba(248, 252, 255, 0.8);
    border-bottom-color: rgba(8, 20, 39, 0.08);
    box-shadow: 0 14px 30px rgba(12, 23, 46, 0.08);
}

body[class] .site-footer.site-footer.site-footer {
    background: transparent;
}

body[class] .site-footer .footer-reference-background {
    display: none;
}

body[class] .site-footer .footer-shell.footer-shell {
    background:
        linear-gradient(135deg, rgba(5, 18, 37, 0.50), rgba(11, 51, 85, 0.34)),
        rgba(7, 24, 47, 0.30);
    border: 1px solid rgba(238, 246, 255, 0.12);
    box-shadow:
        0 26px 64px rgba(5, 18, 37, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #eef6ff;
    backdrop-filter: blur(20px) saturate(1.06);
}

body[class] .site-footer .footer-shell.footer-shell::after {
    content: none;
}

body[class] .site-footer .footer-shell .footer-grid h3,
body[class] .site-footer .footer-shell .footer-meta {
    color: #eef6ff;
}

body[class] .site-footer .footer-shell .footer-brand p,
body[class] .site-footer .footer-shell .footer-grid span,
body[class] .site-footer .footer-shell .footer-grid a,
body[class] .site-footer .footer-shell .footer-meta span {
    color: rgba(238, 246, 255, 0.74);
}

body[class] .site-footer .footer-shell .footer-grid a:hover,
body[class] .site-footer .footer-shell .footer-grid a:focus-visible {
    color: rgba(255, 255, 255, 0.96);
}

body[class] .site-footer .footer-shell .footer-contact-channel {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: rgba(247, 250, 255, 0.88);
}

body[class] .site-footer .footer-shell .footer-contact-channel:hover,
body[class] .site-footer .footer-shell .footer-contact-channel:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(5, 10, 24, 0.18);
}

body[class] .site-footer .footer-shell .footer-contact-channel__icon {
    background: rgba(255, 255, 255, 0.2);
}

body[class] .site-footer .footer-shell .footer-contact-channel--kakao {
    background: linear-gradient(135deg, rgba(255, 229, 0, 0.92), rgba(255, 208, 0, 0.82));
    border-color: rgba(255, 235, 59, 0.42);
    color: rgba(15, 18, 28, 0.82);
}

body[class] .site-footer .footer-shell .footer-contact-channel--discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(125, 138, 255, 0.14));
}

body[class] .site-footer .footer-shell .footer-contact-channel--telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.16), rgba(89, 188, 240, 0.14));
}

body[class] .site-footer .footer-shell .footer-contact-channel--kakao .footer-contact-channel__icon {
    background: rgba(255, 231, 69, 0.98);
}

body[class] .site-footer .footer-shell .footer-contact-channel--discord .footer-contact-channel__icon {
    background: rgba(196, 202, 255, 0.7);
}

body[class] .site-footer .footer-shell .footer-contact-channel--telegram .footer-contact-channel__icon {
    background: rgba(171, 220, 247, 0.78);
}

html:has(body.page-hub) {
    background: #060c16;
}

body.page-hub {
    --hub-bg: #060c16;
    --hub-panel: rgba(10, 18, 30, 0.68);
    --hub-panel-strong: rgba(14, 29, 43, 0.82);
    --hub-line: rgba(227, 241, 255, 0.14);
    --hub-line-strong: rgba(255, 255, 255, 0.24);
    --hub-text: #f2f7ff;
    --hub-muted: rgba(226, 239, 255, 0.70);
    --hub-dim: rgba(226, 239, 255, 0.50);
    --hub-cyan: #3be5ff;
    --hub-pink: #ff5ba8;
    --hub-amber: #ffd166;
    --hub-green: #88f0bf;
    color: var(--hub-text);
    background:
        linear-gradient(135deg, rgba(59, 229, 255, 0.18), transparent 30%),
        linear-gradient(315deg, rgba(255, 91, 168, 0.13), transparent 32%),
        linear-gradient(180deg, #060c16 0%, #0e1d2c 48%, #07111d 100%);
    background-attachment: fixed;
}

body.page-hub::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    background-size: 58px 58px, 58px 58px, auto;
    opacity: 0.52;
}

body.page-hub .page-orb {
    display: none;
}

body.page-hub .page-grid {
    opacity: 0.14;
}

body.page-hub main,
body.page-hub .site-footer {
    position: relative;
    z-index: 1;
}

body.page-hub .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(7, 15, 27, 0.68);
    backdrop-filter: blur(22px) saturate(1.12);
}

body.page-hub .site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.16);
    background: rgba(7, 15, 27, 0.86);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

body.page-hub .brand {
    color: var(--hub-text);
}

.hub-brand-wordmark {
    display: inline-block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    color: var(--hub-text);
    white-space: nowrap;
}

body.page-hub .main-nav {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

body.page-hub .main-nav a {
    color: rgba(241, 247, 255, 0.80);
}

body.page-hub .main-nav a:hover,
body.page-hub .main-nav a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

.hub-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 92px);
    display: grid;
    align-items: center;
    padding: clamp(56px, 7vw, 92px) 0 clamp(40px, 5vw, 72px);
    overflow: hidden;
}

.hub-hero::before,
.hub-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    pointer-events: none;
}

.hub-hero::before {
    top: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(59, 229, 255, 0.18) 50%, transparent 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 62%);
    clip-path: polygon(0 15%, 100% 0, 100% 78%, 0 100%);
    opacity: 0.56;
}

.hub-hero::after {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.42), rgba(59, 229, 255, 0.34), transparent);
}

.hub-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: center;
}

.hub-hero-copy {
    max-width: 780px;
}

.hub-kicker,
.hub-section-kicker,
.hub-company-status {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hub-kicker {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.06);
}

.hub-title {
    margin: 24px 0 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 8.2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.86;
    color: #ffffff;
    overflow-wrap: anywhere;
    text-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.hub-lead {
    max-width: 690px;
    margin: 26px 0 0;
    color: var(--hub-muted);
    font-size: 1.08rem;
    line-height: 1.86;
    overflow-wrap: anywhere;
}

.hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hub-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-action:hover,
.hub-action:focus-visible {
    transform: translateY(-2px);
}

.hub-action-primary {
    color: #07111d;
    border-color: rgba(255, 209, 102, 0.72);
    background: linear-gradient(135deg, #ffd166, #54e7ff 58%, #ffffff 100%);
    box-shadow: 0 18px 34px rgba(59, 229, 255, 0.16);
}

.hub-action-secondary {
    color: var(--hub-text);
    background: rgba(255, 255, 255, 0.07);
}

.hub-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 700px;
    margin: 34px 0 0;
}

.hub-metrics div {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.hub-metrics dt {
    margin: 0 0 4px;
    color: var(--hub-dim);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hub-metrics dd {
    margin: 0;
    color: var(--hub-text);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.hub-system-map {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(14, 29, 43, 0.84), rgba(8, 17, 29, 0.72));
    box-shadow:
        0 32px 86px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.hub-system-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
}

.hub-map-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 164px;
    height: 164px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(59, 229, 255, 0.20), rgba(255, 91, 168, 0.14)),
        rgba(4, 12, 22, 0.76);
    transform: translate(-50%, -50%);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.30);
}

.hub-map-core img {
    width: 70px;
    height: auto;
}

.hub-map-core span {
    align-self: end;
    color: #ffffff;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0;
}

.hub-map-rail {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 229, 255, 0.52), rgba(255, 209, 102, 0.40), transparent);
    transform-origin: center;
}

.hub-map-rail-one {
    transform: translate(-50%, -50%) rotate(28deg);
}

.hub-map-rail-two {
    transform: translate(-50%, -50%) rotate(-31deg);
}

.hub-map-node {
    position: absolute;
    display: grid;
    gap: 4px;
    min-width: 168px;
    max-width: 210px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(8, 18, 30, 0.82);
    backdrop-filter: blur(14px);
}

.hub-map-node strong {
    color: #ffffff;
    font-size: 0.96rem;
    line-height: 1.2;
}

.hub-map-node span {
    color: var(--hub-dim);
    font-size: 0.76rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.hub-map-node-active {
    left: 8%;
    top: 14%;
    border-color: rgba(59, 229, 255, 0.38);
}

.hub-map-node-future {
    right: 8%;
    top: 22%;
    border-color: rgba(255, 91, 168, 0.32);
}

.hub-map-node-lab {
    right: 14%;
    bottom: 13%;
    border-color: rgba(255, 209, 102, 0.34);
}

.hub-section {
    padding: clamp(72px, 9vw, 120px) 0;
    position: relative;
}

.hub-section-heading {
    max-width: 840px;
    margin-bottom: 32px;
}

.hub-section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
    gap: 42px;
    align-items: end;
}

.hub-section-heading h2,
.hub-contact-shell h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.hub-section-heading p:not(.hub-section-kicker),
.hub-section-heading-split > p {
    margin: 0;
    color: var(--hub-muted);
    line-height: 1.75;
}

.hub-section-kicker {
    color: var(--hub-amber);
}

.hub-company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.88fr));
    gap: 14px;
}

.hub-company-card,
.hub-capability,
.hub-model-steps article {
    min-width: 0;
    border: 1px solid var(--hub-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
        var(--hub-panel);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.hub-company-card {
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 22px;
}

.hub-company-card-primary {
    background:
        linear-gradient(135deg, rgba(59, 229, 255, 0.16), rgba(255, 91, 168, 0.10)),
        var(--hub-panel-strong);
    border-color: rgba(59, 229, 255, 0.25);
}

.hub-company-visual {
    display: grid;
    place-items: center;
    width: 96px;
    height: 116px;
    margin-bottom: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.hub-company-visual img {
    width: 58px;
    height: auto;
}

.hub-company-status {
    color: var(--hub-cyan);
}

.hub-company-card-future .hub-company-status {
    color: var(--hub-pink);
}

.hub-company-card h3,
.hub-capability h3 {
    margin: 12px 0 0;
    color: #ffffff;
    font-family: "Space Grotesk", "Noto Sans KR", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.22;
}

.hub-company-card p:not(.hub-company-status) {
    margin: 16px 0 0;
    color: var(--hub-muted);
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.hub-company-linkline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--hub-dim);
    font-size: 0.84rem;
    line-height: 1.35;
}

.hub-company-linkline span,
.hub-company-linkline a {
    overflow-wrap: anywhere;
}

.hub-company-linkline a {
    color: #ffffff;
    font-weight: 800;
}

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

.hub-capability {
    padding: 22px;
}

.hub-capability span {
    color: var(--hub-green);
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.hub-capability p {
    margin: 14px 0 0;
    color: var(--hub-muted);
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.hub-operating-model {
    padding-top: 24px;
}

.hub-model-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 38px;
    align-items: start;
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hub-model-shell .hub-section-heading {
    margin-bottom: 0;
}

.hub-model-steps {
    display: grid;
    gap: 12px;
}

.hub-model-steps article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
}

.hub-model-steps span {
    color: var(--hub-amber);
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.hub-model-steps p {
    margin: 0;
    color: var(--hub-muted);
    line-height: 1.62;
}

.hub-contact-band {
    padding: 22px 0 84px;
}

.hub-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 209, 102, 0.14), rgba(59, 229, 255, 0.10), rgba(255, 91, 168, 0.08)),
        rgba(8, 18, 30, 0.74);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.20);
}

body.page-hub .site-footer {
    margin-top: 0;
    padding-top: 0;
    background: transparent;
}

@media (max-width: 1080px) {
    .hub-hero {
        min-height: 0;
        padding-top: 62px;
    }

    .hub-hero-shell {
        grid-template-columns: 1fr;
    }

    .hub-title {
        font-size: 6.3rem;
    }

    .hub-system-map {
        min-height: 430px;
    }

    .hub-section-heading-split,
    .hub-model-shell {
        grid-template-columns: 1fr;
    }

    .hub-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-company-card-primary {
        grid-column: 1 / -1;
    }

    .hub-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.page-hub .header-inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
    }

    body.page-hub .header-tools {
        display: none;
    }

    body.page-hub .main-nav {
        justify-self: end;
        gap: 6px;
        padding: 4px;
    }

    body.page-hub .main-nav a {
        min-height: 30px;
        padding: 0 8px;
        font-size: 0.76rem;
    }

    .hub-brand-wordmark {
        font-size: 1.14rem;
    }

    .hub-hero {
        padding-top: 46px;
    }

    .hub-title {
        font-size: 4.5rem;
        line-height: 0.9;
    }

    .hub-lead {
        font-size: 1rem;
    }

    .hub-metrics,
    .hub-company-grid,
    .hub-capability-grid,
    .hub-contact-shell {
        grid-template-columns: 1fr;
    }

    .hub-section-heading h2,
    .hub-contact-shell h2 {
        font-size: 2.1rem;
    }

    .hub-system-map {
        display: grid;
        gap: 10px;
        min-height: 0;
        padding: 14px;
    }

    .hub-system-map::before {
        opacity: 0.38;
    }

    .hub-map-core,
    .hub-map-node {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        min-width: 0;
        transform: none;
    }

    .hub-map-core {
        height: 128px;
    }

    .hub-map-rail {
        display: none;
    }

    .hub-company-card {
        min-height: 0;
    }

    .hub-model-steps article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hub-contact-shell .hub-action {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .hub-brand-wordmark {
        font-size: 1rem;
    }

    body.page-hub .main-nav {
        gap: 4px;
    }

    body.page-hub .main-nav a {
        padding: 0 6px;
        font-size: 0.70rem;
    }

    .hub-hero {
        padding-top: 34px;
    }

    .hub-title {
        font-size: 3.35rem;
    }

    .hub-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hub-action {
        width: 100%;
        min-height: 46px;
    }

    .hub-section {
        padding: 56px 0;
    }

    .hub-section-heading h2,
    .hub-contact-shell h2 {
        font-size: 1.72rem;
    }

    .hub-company-card,
    .hub-capability,
    .hub-contact-shell {
        padding: 18px;
    }

    .hub-contact-band {
        padding-bottom: 58px;
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.74;
    }
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 14px;
        padding: 16px 0;
    }

    .header-tools {
        justify-content: flex-end;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 1.02rem;
    }

    .brand-wordmark .company-wordmark-02-horizontal {
        font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    }

    .hero-layout,
    .story-layout,
    .page-hero-shell,
    .contact-layout,
    .footer-shell,
    .vision-band {
        grid-template-columns: 1fr;
    }

    .proof-row,
    .hero-direction-grid,
    .notice-preview-grid,
    .contact-hub-grid,
    .three-up-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-meta {
        justify-items: start;
        min-width: 0;
    }

    .footer-shell {
        gap: 22px;
        min-height: 0;
        padding: 22px;
    }

    .footer-brand-mark {
        width: 108px;
        height: 130px;
    }

    .footer-grid {
        gap: 14px;
    }

    .footer-contact-column {
        justify-content: flex-start;
    }

    .footer-contact-stack {
        justify-self: start;
        width: 168px;
        max-width: 168px;
        height: auto;
        grid-template-rows: repeat(3, 42px);
    }

    body[class] .site-footer .footer-shell.footer-shell {
        grid-template-columns: clamp(72px, 11vw, 108px) minmax(0, 1fr);
        align-items: center;
        gap: clamp(14px, 2vw, 22px);
        padding: 20px 22px;
    }

    body[class] .site-footer .footer-brand-mark {
        width: clamp(72px, 11vw, 108px);
        height: clamp(88px, 13vw, 130px);
    }

    body[class] .site-footer .footer-right {
        grid-template-columns: minmax(132px, 1fr) minmax(214px, auto);
        align-items: center;
        gap: 14px;
    }

    body[class] .site-footer .footer-grid {
        grid-template-columns: minmax(70px, 90px) minmax(140px, 168px);
        align-items: center;
        gap: 10px 12px;
    }

    body[class] .site-footer .footer-contact-column {
        justify-content: flex-end;
    }

    body[class] .site-footer .footer-contact-stack {
        justify-self: end;
        width: 156px;
        max-width: 156px;
        grid-template-rows: repeat(3, 40px);
        gap: 7px;
    }

    body[class] .site-footer .footer-contact-channel {
        height: 40px;
        grid-template-columns: 32px minmax(0, 1fr);
        padding: 0 10px;
        font-size: 0.86rem;
    }

    body[class] .site-footer .footer-contact-channel__icon {
        width: 32px;
        height: 32px;
    }

    .service-grid,
    .contact-info-list,
    .hero-surface-grid {
        grid-template-columns: 1fr;
    }

    .about-hub-layout,
    .about-draft-shell,
    .about-draft-copy-grid,
    .about-draft-grid,
    .about-capability-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .service-split-shell {
        grid-template-columns: 1fr;
    }

    .service-detail-shell,
    .service-detail-related {
        grid-template-columns: 1fr;
    }

    .wordmark-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand tools"
            "nav nav";
        align-items: start;
    }

    .brand {
        grid-area: brand;
        justify-content: flex-start;
    }

    .main-nav {
        grid-area: nav;
        width: 100%;
        gap: 18px 22px;
        justify-content: flex-start;
        justify-self: start;
    }

    .header-tools {
        grid-area: tools;
        justify-content: flex-end;
        justify-self: end;
        gap: 10px;
    }

    .language-trigger {
        min-width: 132px;
        padding: 7px 14px;
    }
}

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 24px, 100%);
    }

    .header-inner {
        gap: 12px;
        padding: 12px 0;
    }

    .header-tools {
        justify-content: flex-end;
        justify-self: end;
    }

    .main-nav {
        gap: 12px 16px;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 8px 10px;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 40px;
        height: 52px;
        flex-basis: 40px;
    }

    .brand-wordmark .company-wordmark-02-horizontal {
        font-size: clamp(1.08rem, 4vw, 1.28rem);
    }

    .hero-section-minimal {
        min-height: calc(100svh - 128px);
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .service-split-card {
        padding: 28px;
        border-radius: 26px;
    }

    .service-split-card h1,
    .service-split-card h2 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .service-hover-item {
        padding: 14px;
        min-height: 120px;
    }

    .service-hover-item:hover,
    .service-hover-item:focus-visible {
        transform: translateY(-1px);
    }

    .service-hover-copy {
        min-height: 84px;
    }

    .service-hover-label {
        font-size: 0.92rem;
    }

    .service-hover-meta {
        font-size: 0.78rem;
    }

    .service-detail-copy,
    .service-detail-frame {
        border-radius: 24px;
    }

    .service-detail-frame {
        min-height: 320px;
    }

    .service-detail-frame .service-preview-media {
        min-height: 320px;
    }

    .service-extraction-scene::before {
        inset: 16% 2% 14% 2%;
    }

    .service-code-orbit {
        width: min(116vw, 720px);
    }

    .service-code-scanline {
        width: min(112vw, 700px);
    }

    .about-corporate-main {
        padding: 28px 24px 28px 30px;
        border-radius: 24px;
    }

    .about-corporate-main::before {
        left: 14px;
        top: 22px;
        bottom: 22px;
    }

    .about-corporate-main::after {
        top: 14px;
        right: 14px;
        width: 76px;
    }

    .about-corporate-wordmark .company-wordmark-02-primary {
        font-size: clamp(3rem, 10vw, 4.8rem);
    }

    .about-corporate-head,
    .about-corporate-copy-grid,
    .about-process-band {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-minimal-shell {
        min-height: clamp(500px, calc(100svh - 240px), 580px);
    }

    .hero-minimal-wordmark {
        font-size: clamp(3.25rem, 16vw, 5.3rem);
        line-height: 0.82;
    }

    .hero-minimal-kicker {
        letter-spacing: 0.22em;
    }

    .hero-minimal-bubbles {
        gap: 12px;
        margin-top: 10px;
    }

    .hero-bubble {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.88rem;
    }

    .wordmark-grid {
        grid-template-columns: 1fr;
    }

    .wordmark-card {
        min-height: 0;
        padding: 24px 22px 22px;
    }

    .language-menu {
        width: auto;
    }

    .language-trigger {
        min-width: 122px;
        width: auto;
        gap: 8px;
        padding: 7px 12px;
    }

    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
    }

    .language-label {
        display: none;
    }
}

@media (max-width: 520px) {
    .site-header {
        backdrop-filter: blur(14px);
    }

    .header-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "nav"
            "tools";
        gap: 10px;
        padding: 12px 0;
    }

    .brand {
        justify-self: start;
    }

    .brand-wordmark .company-wordmark-02-horizontal {
        font-size: 1.08rem;
    }

    .main-nav {
        gap: 10px 16px;
        justify-content: flex-start;
    }

    .main-nav a {
        font-size: 0.98rem;
    }

    .language-trigger {
        min-width: 102px;
        padding: 7px 12px;
    }

    .language-current {
        font-size: 0.96rem;
    }

    .header-tools {
        justify-content: flex-start;
        justify-self: start;
    }

    .footer-brand-mark {
        width: 88px;
        height: 106px;
    }

    .hero-section,
    .section,
    .page-hero {
        padding: 72px 0;
    }

    .hero-section-minimal {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .service-split-shell {
        min-height: calc(100svh - 180px);
        gap: 18px;
    }

    .service-split-card {
        padding: 24px 20px;
    }

    .service-hover-item {
        padding: 13px 14px;
        min-height: 112px;
    }

    .service-hover-item:hover,
    .service-hover-item:focus-visible {
        transform: none;
    }

    .service-hover-label {
        font-size: 0.88rem;
    }

    .service-hover-copy {
        min-height: 80px;
    }

    .service-hover-meta {
        font-size: 0.76rem;
    }

    .service-hover-preview {
        transform: translateY(6px);
    }

    .service-item-preview {
        height: 180px;
        border-radius: 22px;
    }

    .service-item-media-image {
        inset: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-radius: 16px;
    }

    .service-detail-copy {
        padding: 24px 20px;
    }

    .service-detail-copy h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .service-related-card {
        padding: 18px;
    }

    .about-corporate-main {
        padding: 24px 20px 24px 24px;
        gap: 14px;
    }

    .about-corporate-main::after {
        width: 62px;
        height: 24px;
    }

    .about-corporate-copy p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-corporate-copy-lead {
        font-size: 1.04rem !important;
        line-height: 1.78 !important;
    }

    .about-corporate-summary {
        padding: 18px 16px 16px;
        border-radius: 20px;
    }

    .about-process-step-card {
        padding: 16px 18px 18px;
        gap: 8px;
    }

    .about-process-step-card h2 {
        font-size: 1.08rem;
    }

    .about-process-step-card p {
        font-size: 0.88rem;
    }

    .about-corporate-keywords {
        gap: 8px;
    }

    .about-corporate-keywords span,
    .about-corporate-closing span {
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .about-corporate-wordmark .company-wordmark-02-primary {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-section-minimal::before {
        inset: 8% 4% 14% 4%;
        border-radius: 28px;
    }

    .hero-minimal-shell {
        min-height: clamp(400px, calc(100svh - 230px), 500px);
    }

    .hero-minimal-wordmark {
        font-size: clamp(3rem, 15vw, 4.7rem);
        line-height: 0.84;
    }

    .hero-minimal-wordmark span:last-child {
        margin-left: 0.35rem;
    }

    .hero-minimal-kicker {
        min-height: 40px;
        padding: 0 16px;
        font-size: 0.82rem;
        letter-spacing: 0.18em;
    }

    .hero-minimal-bubbles {
        max-width: min(330px, 100%);
        gap: 10px;
    }

    .hero-bubble {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .direction-visual {
        min-height: 280px;
    }

    .direction-screen,
    .hybrid-copy-card {
        width: 100%;
    }

    .hybrid-signal-grid {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 18px;
    }

    .hero-copy,
    .hero-panel,
    .content-panel,
    .contact-form-card,
    .contact-info-card,
    .page-hero-note,
    .about-blueprint-visual-panel,
    .notice-list-card,
    .notice-detail-shell,
    .vision-band,
    .empty-box,
    .footer-shell {
        padding: 24px;
    }

    body[class] .site-footer .footer-shell.footer-shell {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 8px;
        padding: 12px;
    }

    body[class] .site-footer .footer-brand-mark {
        width: 52px;
        height: 64px;
    }

    body[class] .site-footer .footer-right {
        grid-template-columns: minmax(96px, 1fr) minmax(134px, auto);
        gap: 8px;
    }

    body[class] .site-footer .footer-grid {
        grid-template-columns: minmax(48px, 58px) 88px;
        gap: 6px;
    }

    body[class] .site-footer .footer-grid h3 {
        margin-bottom: 5px;
        font-size: 0.72rem;
    }

    body[class] .site-footer .footer-grid > div:not(.footer-contact-column) a,
    body[class] .site-footer .footer-grid > div:not(.footer-contact-column) span {
        margin-bottom: 5px;
    }

    body[class] .site-footer .footer-meta {
        gap: 4px;
    }

    body[class] .site-footer .footer-meta span,
    body[class] .site-footer .footer-grid span,
    body[class] .site-footer .footer-grid a {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    body[class] .site-footer .footer-contact-stack {
        width: 88px;
        max-width: 88px;
        grid-template-rows: repeat(3, 30px);
        gap: 5px;
    }

    body[class] .site-footer .footer-contact-channel {
        height: 30px;
        grid-template-columns: 22px minmax(0, 1fr);
        column-gap: 4px;
        padding: 0 6px;
        border-radius: 11px;
        font-size: 0.68rem;
    }

    body[class] .site-footer .footer-contact-channel__icon {
        width: 22px;
        height: 22px;
        border-radius: 8px;
    }

    body[class] .site-footer .footer-contact-channel__icon img {
        width: 13px;
        height: 13px;
    }

    .about-metric-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.15rem, 12vw, 3.6rem);
    }
}

@media (max-width: 760px) {
    body.page-about,
    body:has(.about-corporate-hero) {
        overflow-x: hidden;
    }

    body.page-about .about-corporate-hero > .container,
    body:has(.about-corporate-hero) .about-corporate-hero > .container,
    .about-corporate-shell,
    .about-corporate-container,
    .about-corporate-main,
    .about-corporate-headline,
    .about-corporate-summary,
    .about-corporate-copy-grid,
    .about-corporate-copy-column,
    .about-process-band,
    .about-process-step-card {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-corporate-container {
        width: 100%;
    }

    .about-corporate-wordmark,
    .about-corporate-copy p,
    .about-process-step-card p {
        overflow-wrap: anywhere;
    }

    .service-detail-page-ai-model .service-detail-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-detail-page-ai-model .service-detail-frame {
        min-height: 430px;
    }

    .ai-model-flow {
        display: none;
    }

    .ai-model-core {
        width: min(210px, 58vw);
    }
}

@media (max-width: 520px) {
    .service-detail-page-ai-model .service-detail-frame {
        min-height: 340px;
    }

    .ai-model-core {
        width: min(190px, 62vw);
    }
}

body.page-hub-compact main {
    display: flex;
    flex: 1 0 auto;
}

.page-hub-gate .site-header {
    display: none;
}

.page-hub-compact .hub-hero-compact {
    width: 100%;
    min-height: 100svh;
    padding: clamp(18px, 4vw, 48px) 0;
}

.page-hub-gate .hub-hero-compact {
    display: flex;
    align-items: stretch;
}

.hub-gate-layout {
    display: grid;
    align-content: center;
    width: 100%;
}

.hub-gate-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 30px);
    min-height: min(680px, calc(100svh - 96px));
    align-items: stretch;
}

.hub-gate-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: clamp(410px, 70svh, 640px);
    padding: clamp(24px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
        rgba(7, 17, 29, 0.82);
    box-shadow:
        0 34px 92px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(22px) saturate(1.08);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.hub-gate-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.92;
    transition: opacity 180ms ease, transform 180ms ease;
}

.hub-gate-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 44%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
    pointer-events: none;
}

.hub-gate-card-btf {
    border-color: rgba(59, 229, 255, 0.26);
}

.hub-gate-card-btf::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(59, 229, 255, 0.25), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(123, 95, 255, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(11, 47, 64, 0.82), rgba(11, 19, 36, 0.90));
}

.hub-gate-card-festa {
    border-color: rgba(255, 209, 102, 0.27);
}

.hub-gate-card-festa::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 79, 179, 0.23), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 209, 102, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(46, 9, 26, 0.86), rgba(18, 8, 27, 0.90));
}

.hub-gate-card:hover,
.hub-gate-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow:
        0 42px 108px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hub-gate-card:hover::before,
.hub-gate-card:focus-visible::before {
    opacity: 1;
    transform: scale(1.025);
}

.hub-gate-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(520px, 82%);
}

.hub-gate-logo-btf {
    width: min(440px, 72%);
}

.hub-gate-logo-festa {
    width: min(820px, 112%);
}

.hub-gate-logo img,
.hub-gate-logo svg {
    width: 100%;
    height: auto;
    max-height: min(360px, 58svh);
}

.hub-gate-logo-btf img {
    width: min(390px, 100%);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.hub-gate-logo-festa img,
.hub-gate-logo-festa svg {
    width: min(1380px, 240%);
    max-width: none;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.30));
}

@media (max-width: 1080px) {
    .page-hub-compact .hub-hero-compact {
        min-height: 0;
    }

    .hub-gate-shell {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .page-hub-compact .hub-hero-compact {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hub-gate-layout {
        align-content: start;
    }

    .hub-gate-shell {
        grid-template-columns: 1fr;
    }

    .hub-gate-card {
        min-height: clamp(300px, 42svh, 380px);
    }

    .hub-gate-logo {
        width: min(380px, 82%);
    }
}

@media (max-width: 520px) {
    .page-hub-compact .hub-hero-compact {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .hub-gate-shell {
        width: min(100% - 24px, 1180px);
        gap: 12px;
    }

    .hub-gate-card {
        min-height: 310px;
        padding: 24px;
    }

    .hub-gate-logo {
        width: min(300px, 82%);
    }

    .hub-gate-logo-festa {
        width: min(400px, 112%);
    }

    .hub-gate-logo-btf img {
        width: min(260px, 100%);
    }

    .hub-gate-logo-festa img,
    .hub-gate-logo-festa svg {
        width: min(820px, 240%);
    }
}

