@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
    color-scheme: dark;
    --wt2-bg: #000;
    --wt2-bg-soft: #050505;
    --wt2-panel: rgba(255, 255, 255, 0.04);
    --wt2-panel-strong: rgba(255, 255, 255, 0.07);
    --wt2-line: rgba(255, 255, 255, 0.08);
    --wt2-line-strong: rgba(255, 255, 255, 0.18);
    --wt2-text: #f5f3ef;
    --wt2-muted: #9a9a94;
    --wt2-accent: #f0c86a;
    --wt2-accent-2: #72e0d1;
    --wt2-shell-width: 530px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--wt2-bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--wt2-bg);
    color: var(--wt2-text);
    font-family: "Noto Sans KR", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% -10%, rgba(240, 200, 106, 0.18), transparent 38%),
        radial-gradient(circle at 50% 18%, rgba(114, 224, 209, 0.1), transparent 28%),
        linear-gradient(180deg, #040404 0%, #000 100%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
}

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

.wt2-mobile-shell {
    position: relative;
    z-index: 1;
    width: min(100%, var(--wt2-shell-width));
    min-height: 100dvh;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.98), rgba(0, 0, 0, 0.98));
    border-inline: 1px solid var(--wt2-line);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 40px 80px rgba(0, 0, 0, 0.55);
}

.wt2-mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 16px 12px;
    backdrop-filter: blur(24px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68));
    border-bottom: 1px solid var(--wt2-line);
}

.wt2-mobile-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wt2-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wt2-text);
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wt2-mobile-brand img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.wt2-mobile-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(240, 200, 106, 0.35);
    border-radius: 999px;
    background: rgba(240, 200, 106, 0.08);
    color: var(--wt2-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.wt2-mobile-topmenu {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.wt2-mobile-topmenu::-webkit-scrollbar {
    display: none;
}

.wt2-mobile-topmenu-link,
.wt2-mobile-bottommenu-link {
    color: var(--wt2-muted);
    text-decoration: none;
}

.wt2-mobile-topmenu-link {
    flex: 0 0 auto;
    min-width: 84px;
    padding: 12px 14px;
    border: 1px solid var(--wt2-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wt2-mobile-topmenu-link.is-active {
    color: var(--wt2-text);
    border-color: rgba(240, 200, 106, 0.45);
    background: linear-gradient(180deg, rgba(240, 200, 106, 0.22), rgba(240, 200, 106, 0.08));
    transform: translateY(-1px);
}

.wt2-mobile-main {
    padding: 18px 16px 112px;
}

.wt2-page-stack,
.wt2-content-stack,
.wt2-list-stack,
.wt2-viewer-stack,
.wt2-info-grid {
    display: grid;
    gap: 14px;
}

.wt2-page-hero,
.wt2-page-header,
.wt2-section-card,
.wt2-story-card,
.wt2-nav-card,
.wt2-list-card,
.wt2-viewer-card {
    border: 1px solid var(--wt2-line);
    border-radius: 28px;
    background: linear-gradient(180deg, var(--wt2-panel-strong), var(--wt2-panel));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.wt2-page-hero,
.wt2-page-header {
    padding: 22px 18px 20px;
}

.wt2-page-stack > .wt2-content-stack + .wt2-section-card {
    margin-top: 20px;
}

.wt2-section-card,
.wt2-story-card,
.wt2-nav-card,
.wt2-list-card,
.wt2-viewer-card {
    padding: 18px 16px;
}

.wt2-story-card.is-bee-card,
.wt2-viewer-card.is-bee-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
}

.wt2-page-kicker,
.wt2-section-label {
    margin: 0 0 10px;
    color: var(--wt2-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wt2-page-title,
.wt2-section-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.04em;
}

.wt2-page-title {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 0.96;
}

.wt2-page-hero .wt2-page-title {
    font-size: clamp(24px, 8.4vw, 34px);
}

.wt2-section-title {
    font-size: 22px;
    line-height: 1.05;
}

.wt2-page-copy,
.wt2-detail-copy,
.wt2-nav-card p,
.wt2-list-card p,
.wt2-caption,
.blog-block-caption {
    margin: 12px 0 0;
    color: var(--wt2-muted);
    font-size: 14px;
    line-height: 1.75;
}

.wt2-page-copy a,
.wt2-detail-copy a,
.wt2-rich-copy a,
.wt2-caption a,
.blog-block-caption a {
    color: var(--wt2-accent-2);
}

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

.wt2-action-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--wt2-line-strong);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--wt2-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.wt2-action-pill.is-primary {
    border-color: transparent;
    background: linear-gradient(180deg, var(--wt2-accent), #d3a443);
    color: #0d0d0d;
}

.wt2-info-tile {
    padding: 16px;
    border: 1px solid var(--wt2-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
}

.wt2-info-tile span {
    display: block;
    color: var(--wt2-accent-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wt2-info-tile strong {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.35;
    word-break: break-word;
}

.wt2-info-tile p {
    margin: 8px 0 0;
    color: var(--wt2-muted);
    font-size: 13px;
    line-height: 1.6;
}

.wt2-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.wt2-section-head > div {
    min-width: 0;
}

.wt2-rich-copy {
    color: var(--wt2-text);
    font-size: 15px;
    line-height: 1.85;
}

.wt2-rich-copy > :first-child {
    margin-top: 0;
}

.wt2-rich-copy > :last-child {
    margin-bottom: 0;
}

.wt2-crumb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.wt2-crumb-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--wt2-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--wt2-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.wt2-media-frame,
.wt2-cover-frame {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--wt2-line);
    border-radius: 22px;
}

.wt2-intro-logo-frame {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    border: 0;
    background: transparent;
}

.wt2-story-card.is-bee-card + .wt2-intro-logo-frame {
    margin-top: 30px;
}

.wt2-media-frame img,
.wt2-cover-frame img {
    width: 100%;
    height: auto;
}

.wt2-intro-logo-frame img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.wt2-badge-line,
.wt2-nav-card-meta,
.wt2-list-card-meta {
    display: block;
    color: var(--wt2-accent-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wt2-nav-card,
.wt2-list-card {
    display: block;
    color: var(--wt2-text);
    text-decoration: none;
}

.wt2-nav-card strong,
.wt2-list-card strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.wt2-nav-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--wt2-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wt2-nav-card-arrow::after {
    content: "/";
    color: var(--wt2-text);
}

.wt2-list-card.is-current {
    border-color: rgba(240, 200, 106, 0.35);
    background: linear-gradient(180deg, rgba(240, 200, 106, 0.12), rgba(255, 255, 255, 0.04));
}

.wt2-empty-state {
    padding: 20px 16px;
    border: 1px dashed var(--wt2-line-strong);
    border-radius: 22px;
    color: var(--wt2-muted);
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.wt2-bee-wrap {
    display: grid;
    gap: 0;
    width: 100%;
}

.blog-bee-block {
    position: relative;
    min-height: 260px;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--wt2-bg-soft);
    touch-action: pan-y;
}

.wt2-story-card.is-bee-card .blog-bee-block,
.wt2-viewer-card.is-bee-card .blog-bee-block {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.blog-bee-block.bee-active {
    touch-action: none;
}

.blog-bee-block .blog-bee-thumbnail-preview {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.blog-bee-block canvas[data-slot-id],
.blog-bee-block .blog-bee-thumbnail-preview img {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    display: block;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    object-fit: cover;
}

.blog-bee-block canvas[id^="render_s"] {
    width: 100% !important;
    height: 100% !important;
}

.blog-bee-thumbnail-preview {
    width: 100%;
}

.blog-bee-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.4));
    transition: opacity 0.3s ease;
}

.blog-bee-overlay.fade-out {
    opacity: 0;
}

.blog-bee-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--wt2-accent);
    border-radius: 999px;
    animation: wt2-spin 0.9s linear infinite;
}

.bee-active {
    box-shadow: 0 0 0 1px rgba(240, 200, 106, 0.4), 0 0 0 6px rgba(240, 200, 106, 0.08);
}

.wt2-story-card.is-bee-card .blog-bee-block.bee-active,
.wt2-viewer-card.is-bee-card .blog-bee-block.bee-active {
    box-shadow: none;
}

.wt2-bee-wrap [id^="border-overlay-"] {
    display: none !important;
    border: 0 !important;
}

.wt2-mobile-footer {
    padding: 20px 18px calc(88px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--wt2-line);
    color: rgba(245, 243, 239, 0.58);
    font-size: 12px;
    line-height: 1.7;
}

.wt2-mobile-footer p {
    margin: 0;
}

.wt2-mobile-bottommenu {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 25;
    display: flex;
    gap: 10px;
    width: min(100%, var(--wt2-shell-width));
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.95) 32%, rgba(0, 0, 0, 0.98));
    backdrop-filter: blur(20px);
}

.wt2-mobile-bottommenu-link {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 12px;
    border: 1px solid var(--wt2-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wt2-mobile-bottommenu-link.is-active {
    color: var(--wt2-text);
    border-color: rgba(114, 224, 209, 0.32);
    background: linear-gradient(180deg, rgba(114, 224, 209, 0.2), rgba(114, 224, 209, 0.06));
}

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