/* 올비전 웹 공통 디자인 시스템 */

:root {
    color-scheme: dark;
    --bg: #070b14;
    --bg-elevated: #0b1220;
    --surface: #0f1728;
    --surface-strong: #131e32;
    --surface-soft: rgba(18, 29, 48, 0.72);
    --line: rgba(148, 163, 184, 0.15);
    --line-strong: rgba(148, 163, 184, 0.28);
    --text: #f8fafc;
    --text-soft: #d7e0ee;
    --muted: #94a3b8;
    --muted-strong: #b8c4d6;
    --accent: #67e8f9;
    --accent-strong: #22d3ee;
    --accent-ink: #03212a;
    --violet: #818cf8;
    --good: #34d399;
    --warning: #fbbf24;
    --danger: #fb7185;
    --danger-strong: #f43f5e;
    --shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.4);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    margin: 0;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 8% -5%, rgba(103, 232, 249, 0.1), transparent 30rem),
        radial-gradient(circle at 95% 10%, rgba(129, 140, 248, 0.08), transparent 34rem), var(--bg);
    color: var(--text);
    font-family:
        Pretendard,
        'Pretendard Variable',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        'Malgun Gothic',
        'Apple SD Gothic Neo',
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
    content: '';
}

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

button,
input,
select {
    font: inherit;
}

button,
a,
input,
select {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
dialog:focus-visible,
[tabindex='-1']:focus-visible {
    outline: 3px solid rgba(103, 232, 249, 0.75);
    outline-offset: 3px;
}

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

.wrap {
    width: min(100%, var(--wrap));
    margin-inline: auto;
    padding-inline: 28px;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 14px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--text);
    color: #07111c;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 0.16s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.accent {
    color: var(--accent);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--good);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

/* 헤더 */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    background: rgba(7, 11, 20, 0.82);
    backdrop-filter: blur(18px) saturate(130%);
}

.header-inner,
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(103, 232, 249, 0.15);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 650;
}

.site-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.55);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
    content: '';
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current='page']::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 140px;
    gap: 10px;
}

.header-skeleton {
    width: 126px;
    height: 38px;
    border-radius: 10px;
    background: rgba(148, 163, 184, 0.09);
}

/* 버튼 */

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 780;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.16s ease,
        background 0.16s ease,
        color 0.16s ease,
        box-shadow 0.16s ease,
        transform 0.08s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    border-color: rgba(103, 232, 249, 0.35);
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.17);
}

.btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: #a5f3fc;
    box-shadow: 0 16px 38px rgba(34, 211, 238, 0.23);
}

.btn-secondary {
    border-color: var(--line-strong);
    background: rgba(15, 23, 40, 0.7);
    color: var(--text-soft);
}

.btn-secondary:hover {
    border-color: rgba(103, 232, 249, 0.35);
    background: rgba(19, 30, 50, 0.95);
    color: var(--text);
}

.btn-danger {
    border-color: rgba(251, 113, 133, 0.4);
    background: #c52b47;
    color: #fff;
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.18);
}

.btn-danger:hover {
    background: #cf334f;
}

.btn-sm {
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.btn[disabled] {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
}

/* 랜딩 히어로 */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(52px, 7vw, 96px);
    min-height: 710px;
    padding-block: 86px 98px;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 720px;
    margin: 23px 0 24px;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.08;
    word-break: keep-all;
}

.hero-lede {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.78;
    word-break: keep-all;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    padding: 0;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 13px;
    list-style: none;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-list li span {
    color: var(--good);
    font-weight: 900;
}

.product-preview {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(19, 30, 50, 0.98), rgba(10, 17, 31, 0.98)), var(--surface);
    box-shadow:
        var(--shadow-lg),
        0 0 0 1px rgba(103, 232, 249, 0.03);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.product-preview::before {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.08);
    filter: blur(60px);
    content: '';
}

.preview-topbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 13px 17px;
    border-bottom: 1px solid var(--line);
}

.preview-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
}

.preview-brand img {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: #fff;
}

.preview-badge,
.health-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.07);
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
}

.preview-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 460px;
}

.preview-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 25px;
    border-right: 1px solid var(--line);
    background: rgba(7, 11, 20, 0.36);
}

.preview-nav span {
    width: 29px;
    height: 29px;
    border-radius: 9px;
    background: rgba(148, 163, 184, 0.09);
}

.preview-nav span.active {
    border: 1px solid rgba(103, 232, 249, 0.28);
    background: rgba(103, 232, 249, 0.14);
}

.preview-content {
    padding: 25px;
}

.preview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.preview-heading small,
.preview-heading strong {
    display: block;
}

.preview-heading small {
    color: var(--muted);
    font-size: 10px;
}

.preview-heading strong {
    margin-top: 2px;
    font-size: 15px;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 22px;
}

.preview-metrics article {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(7, 11, 20, 0.4);
}

.preview-metrics span,
.preview-metrics strong,
.preview-metrics small {
    display: block;
}

.preview-metrics span,
.preview-metrics small {
    color: var(--muted);
    font-size: 9px;
}

.preview-metrics strong {
    margin: 5px 0 2px;
    font-size: 12px;
}

.preview-settings {
    display: grid;
    gap: 9px;
    margin-top: 17px;
}

.preview-setting {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(15, 23, 40, 0.74);
}

.preview-setting > span:nth-child(2) strong,
.preview-setting > span:nth-child(2) small {
    display: block;
}

.preview-setting strong {
    font-size: 11px;
}

.preview-setting small {
    color: var(--muted);
    font-size: 9px;
}

.feature-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
}

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

.icon-judge {
    background: transparent;
}

.icon-spam {
    background: transparent;
}

.icon-terror {
    background: transparent;
}

.preview-toggle {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 18px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
}

.preview-toggle::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--muted);
    content: '';
}

.preview-toggle.on {
    background: rgba(52, 211, 153, 0.22);
}

.preview-toggle.on::after {
    left: 16px;
    background: var(--good);
}

/* 공통 랜딩 섹션 */

.stats-section,
.feature-section,
.workflow-section,
.dashboard-showcase,
.commands-section,
.cta-section {
    padding-block: 96px;
}

.stats-section {
    padding-top: 62px;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.section-heading h2 {
    max-width: 720px;
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 880;
    letter-spacing: -0.045em;
    line-height: 1.18;
    word-break: keep-all;
}

.section-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
}

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

.stat {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 40, 0.62);
}

.stat .value,
.stat .label {
    display: block;
}

.stat .value {
    color: var(--text);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 880;
    letter-spacing: -0.035em;
}

.stat .label {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.live-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--muted-strong);
    font-size: 13px;
}

.live-summary strong {
    color: var(--text);
}

.feature-section {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    background: rgba(11, 18, 32, 0.42);
}

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

.feature-card {
    min-height: 356px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 40, 0.74);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 0.18s ease,
        transform 0.18s ease;
}

.feature-card:hover {
    border-color: rgba(103, 232, 249, 0.28);
    transform: translateY(-4px);
}

.feature-card-primary {
    background:
        radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.14), transparent 16rem),
        rgba(15, 23, 40, 0.82);
}

.feature-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 44px;
}

.feature-number {
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.feature-card h3 {
    margin-bottom: 13px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.feature-card p {
    color: var(--muted-strong);
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
}

.feature-card ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    list-style: none;
}

.feature-card li::before {
    margin-right: 8px;
    color: var(--accent);
    content: '—';
}

.workflow-section {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    align-items: start;
    gap: clamp(56px, 9vw, 120px);
}

.workflow-copy {
    position: sticky;
    top: 130px;
}

.workflow-copy h2,
.showcase-copy-block h2 {
    margin: 14px 0 20px;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.045em;
    line-height: 1.18;
    word-break: keep-all;
}

.workflow-copy > p,
.showcase-copy-block > p {
    max-width: 520px;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.85;
    word-break: keep-all;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
}

.text-link:hover {
    color: #a5f3fc;
}

.workflow-steps {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.workflow-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 0 0 42px;
}

.workflow-steps li:not(:last-child)::after {
    position: absolute;
    top: 47px;
    bottom: 5px;
    left: 23px;
    width: 1px;
    background: linear-gradient(var(--line-strong), transparent);
    content: '';
}

.workflow-steps li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 15px;
    background: rgba(103, 232, 249, 0.08);
    color: var(--accent);
    font-size: 14px;
    font-weight: 850;
}

.workflow-steps strong {
    display: block;
    padding-top: 4px;
    font-size: 18px;
}

.workflow-steps p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.dashboard-showcase {
    border-block: 1px solid rgba(148, 163, 184, 0.08);
    background:
        radial-gradient(circle at 20% 50%, rgba(103, 232, 249, 0.06), transparent 26rem),
        rgba(11, 18, 32, 0.48);
}

.dashboard-showcase-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: clamp(56px, 8vw, 110px);
}

.showcase-points {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
    color: var(--muted-strong);
    font-size: 13px;
}

.showcase-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.showcase-points i {
    color: var(--good);
    font-style: normal;
}

.status-demo {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: rgba(10, 17, 31, 0.88);
    box-shadow: var(--shadow-lg);
}

.status-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 21px;
    border-bottom: 1px solid var(--line);
}

.status-demo-head small,
.status-demo-head strong {
    display: block;
}

.status-demo-head small {
    color: var(--muted);
    font-size: 10px;
}

.status-demo-head strong {
    margin-top: 1px;
    font-size: 14px;
}

.status-demo-head > span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(129, 140, 248, 0.1);
    color: #a5b4fc;
    font-size: 9px;
    font-weight: 800;
}

.status-demo-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 17px 21px;
    border-bottom: 1px solid var(--line);
}

.status-demo-row:last-child {
    border-bottom: 0;
}

.status-demo-row > i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--muted);
}

.status-demo-row.healthy > i {
    background: var(--good);
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.08);
}

.status-demo-row.attention > i {
    background: var(--warning);
    box-shadow: 0 0 0 5px rgba(251, 191, 36, 0.08);
}

.status-demo-row strong,
.status-demo-row small {
    display: block;
}

.status-demo-row strong {
    font-size: 13px;
}

.status-demo-row small {
    color: var(--muted);
    font-size: 10px;
}

.status-demo-row b {
    color: var(--muted-strong);
    font-size: 10px;
}

/* 명령어와 CTA */

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

.command-card {
    min-height: 138px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 40, 0.62);
}

.command-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cmd {
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

.command-card .desc {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.aud {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
}

.aud-admin {
    background: rgba(129, 140, 248, 0.11);
    color: #a5b4fc;
}

.aud-member {
    background: rgba(52, 211, 153, 0.1);
    color: #6ee7b7;
}

.command-more {
    margin-top: 22px;
    text-align: center;
}

.cta-section {
    padding-top: 58px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 46px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(103, 232, 249, 0.1), transparent 22rem),
        rgba(15, 23, 40, 0.82);
    box-shadow: var(--shadow-sm);
}

.cta-panel h2 {
    max-width: 680px;
    margin: 12px 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    line-height: 1.2;
    word-break: keep-all;
}

.cta-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.cta-actions {
    flex: 0 0 auto;
}

.site-footer,
.dashboard-footer {
    margin-top: 64px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer .wrap,
.dashboard-footer .wrap {
    display: flex;
    min-height: 110px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    color: var(--text-soft);
    font-size: 13px;
}

.footer-brand small {
    font-size: 10px;
}

/* 로딩 상태 */

.skeleton {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-md);
    background: rgba(148, 163, 184, 0.07);
    color: transparent;
}

.skeleton::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        transparent 25%,
        rgba(255, 255, 255, 0.06) 45%,
        transparent 65%
    );
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
    content: '';
}

.skeleton-panel {
    grid-column: 1 / -1;
    min-height: 120px;
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

/* 대시보드 공통 */

.dashboard-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background:
        radial-gradient(circle at 12% 0%, rgba(103, 232, 249, 0.07), transparent 28rem), var(--bg);
}

.dashboard-main {
    width: 100%;
    flex: 1;
    padding-top: 48px;
    padding-bottom: 76px;
}

.page-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.page-hero h1 {
    margin: 13px 0 8px;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 880;
    letter-spacing: -0.05em;
    line-height: 1.15;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.user-chip {
    display: inline-flex;
    max-width: 180px;
    min-height: 40px;
    align-items: center;
    gap: 9px;
    padding: 5px 10px 5px 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 40, 0.66);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
}

.user-chip img,
.avatar-fallback {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 8px;
}

.avatar-fallback {
    display: grid;
    place-items: center;
    background: rgba(103, 232, 249, 0.11);
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
}

.user-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-skeleton {
    display: grid;
    gap: 24px;
}

.skeleton-summary {
    min-height: 136px;
}

.skeleton-guild {
    min-height: 260px;
}

.skeleton-server-head {
    min-height: 112px;
}

.skeleton-overview {
    min-height: 480px;
}

.skeleton-settings {
    min-height: 580px;
}

.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.summary-card {
    position: relative;
    min-height: 134px;
    overflow: hidden;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 40, 0.72);
}

.summary-card::after {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.035;
    content: '';
}

.summary-card span,
.summary-card strong,
.summary-card small {
    display: block;
}

.summary-label {
    color: var(--muted);
    font-size: 12px;
}

.summary-card strong {
    margin: 7px 0 3px;
    color: var(--text);
    font-size: 30px;
    font-weight: 880;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.summary-card small {
    color: var(--muted);
    font-size: 11px;
}

.summary-positive {
    border-color: rgba(52, 211, 153, 0.22);
    color: var(--good);
}

.summary-attention {
    border-color: rgba(251, 191, 36, 0.2);
    color: var(--warning);
}

.summary-neutral {
    color: var(--accent);
}

.guild-area {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(11, 18, 32, 0.58);
}

.guild-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid var(--line);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
    cursor: pointer;
}

.filter-button small {
    display: inline-grid;
    min-width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    color: var(--muted-strong);
    font-size: 9px;
}

.filter-button:hover,
.filter-button.active {
    border-color: rgba(103, 232, 249, 0.16);
    background: rgba(103, 232, 249, 0.08);
    color: var(--text);
}

.filter-button.active small {
    background: rgba(103, 232, 249, 0.16);
    color: var(--accent);
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
    min-width: min(100%, 260px);
}

.search-icon {
    position: absolute;
    left: 12px;
    z-index: 1;
    color: var(--muted);
    font-size: 16px;
    pointer-events: none;
}

.guild-search,
.settings-search {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px 10px 37px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(7, 11, 20, 0.58);
    color: var(--text);
    font-size: 13px;
}

.guild-search::placeholder,
.settings-search::placeholder {
    color: #68778e;
}

.guild-search:hover,
.settings-search:hover {
    border-color: var(--line-strong);
}

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

.guild-card {
    display: flex;
    min-height: 254px;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 40, 0.7);
    transition:
        border-color 0.16s ease,
        background 0.16s ease,
        transform 0.16s ease;
}

.guild-card:hover {
    border-color: rgba(103, 232, 249, 0.25);
    background: rgba(19, 30, 50, 0.82);
    transform: translateY(-2px);
}

.guild-card.needs-invite {
    background: rgba(12, 18, 30, 0.54);
}

.guild-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.guild-icon,
.guild-icon-fallback {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 15px;
}

.guild-icon {
    object-fit: cover;
}

.guild-icon-fallback {
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.16);
    background: rgba(103, 232, 249, 0.08);
    color: var(--accent);
    font-size: 19px;
    font-weight: 900;
}

.status-badge,
.overview-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.status-badge i,
.overview-status i {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
}

.status-good {
    background: rgba(52, 211, 153, 0.1);
    color: #6ee7b7;
}

.status-muted {
    background: rgba(148, 163, 184, 0.09);
    color: var(--muted);
}

.status-attention {
    background: rgba(251, 191, 36, 0.1);
    color: var(--warning);
}

.guild-info {
    margin-top: 20px;
}

.guild-info .name {
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guild-info .meta {
    display: flex;
    min-height: 24px;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 9px;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

.owner-badge {
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(129, 140, 248, 0.1);
    color: #a5b4fc;
    font-size: 9px;
    font-weight: 800;
}

.guild-card-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.guild-card-action p {
    max-width: 165px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.empty-panel {
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 48px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 40, 0.62);
    text-align: center;
}

.empty-panel.compact {
    min-height: 270px;
    margin: 15px;
    border-style: dashed;
}

.empty-panel-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 17px;
    background: rgba(103, 232, 249, 0.08);
    color: var(--accent);
    font-size: 20px;
    font-weight: 900;
}

.empty-panel h2 {
    max-width: 620px;
    margin: 12px 0 9px;
    font-size: 23px;
    letter-spacing: -0.03em;
}

.empty-panel p {
    max-width: 560px;
    margin: 0 0 23px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
    word-break: keep-all;
}

.login-panel {
    min-height: 420px;
}

.dashboard-footer {
    margin-top: auto;
}

.dashboard-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--muted-strong);
    font-weight: 700;
}

.dashboard-footer a:hover {
    color: var(--accent);
}

/* 서버 헤더와 현황 */

.back-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.back-link:hover {
    color: var(--text);
}

.server-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 0 34px;
}

.server-identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
}

.server-head .guild-icon,
.server-head .guild-icon-fallback {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 27px;
}

.server-title {
    min-width: 0;
}

.server-title h1 {
    overflow: hidden;
    margin: 6px 0 1px;
    font-size: clamp(27px, 4vw, 38px);
    letter-spacing: -0.045em;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.server-title .meta {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.server-head-note {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 11px;
    background: rgba(52, 211, 153, 0.06);
    color: #9ae6c7;
    font-size: 10px;
    font-weight: 750;
    white-space: nowrap;
}

.server-overview {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(103, 232, 249, 0.05), transparent 24rem),
        rgba(11, 18, 32, 0.66);
}

.overview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.overview-heading h2 {
    margin: 9px 0 3px;
    font-size: 26px;
    letter-spacing: -0.035em;
}

.overview-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.overview-status {
    margin-top: 3px;
}

.overview-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 23px;
}

.overview-metric {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 11, 20, 0.42);
}

.overview-metric span,
.overview-metric strong,
.overview-metric small {
    display: block;
}

.overview-metric span,
.overview-metric small {
    color: var(--muted);
    font-size: 10px;
}

.overview-metric strong {
    margin: 5px 0 1px;
    font-size: 23px;
    letter-spacing: -0.035em;
}

.metric-good {
    border-color: rgba(52, 211, 153, 0.17);
}

.metric-attention {
    border-color: rgba(251, 191, 36, 0.17);
}

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

.protection-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 11px;
    min-height: 78px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 40, 0.66);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.protection-card:hover {
    border-color: rgba(103, 232, 249, 0.28);
    background: rgba(19, 30, 50, 0.85);
}

.protection-copy {
    min-width: 0;
}

.protection-copy strong,
.protection-copy small {
    display: block;
}

.protection-copy strong {
    font-size: 12px;
}

.protection-copy small {
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.protection-state {
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.protection-card.enabled .protection-state {
    background: rgba(52, 211, 153, 0.1);
    color: #6ee7b7;
}

.protection-card.disabled .protection-state {
    background: rgba(148, 163, 184, 0.09);
    color: var(--muted);
}

.protection-card.attention .protection-state {
    background: rgba(251, 191, 36, 0.1);
    color: var(--warning);
}

.card-arrow {
    color: var(--muted);
    font-size: 13px;
}

.attention-panel {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.16);
    border-radius: var(--radius-md);
    background: rgba(7, 11, 20, 0.4);
}

.attention-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
}

.attention-panel-head h3 {
    margin: 7px 0 0;
    font-size: 15px;
}

.attention-count {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--warning);
    font-size: 11px;
    font-weight: 850;
}

.attention-list {
    display: grid;
}

.attention-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
}

.attention-item:last-child {
    border-bottom: 0;
}

.attention-item > i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--warning);
}

.attention-item.critical > i {
    background: var(--danger);
}

.attention-item.suggestion > i {
    background: var(--accent);
}

.attention-item strong {
    display: block;
    font-size: 12px;
}

.attention-item p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.attention-action {
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(15, 23, 40, 0.74);
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 760;
    white-space: nowrap;
    cursor: pointer;
}

.attention-action:hover {
    border-color: rgba(103, 232, 249, 0.28);
    color: var(--accent);
}

.attention-panel.all-clear {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-color: rgba(52, 211, 153, 0.16);
}

.attention-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: rgba(52, 211, 153, 0.1);
    color: var(--good);
    font-weight: 900;
}

.attention-copy h3 {
    margin: 7px 0 2px;
    font-size: 14px;
}

.attention-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

/* 서버 설정 */

.settings-shell {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    margin-top: 16px;
}

.settings-sidebar,
.settings-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(11, 18, 32, 0.66);
}

.settings-sidebar {
    position: sticky;
    top: 92px;
    padding: 14px;
}

.sidebar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 4px 12px;
}

.sidebar-title {
    color: var(--text);
    font-size: 12px;
    font-weight: 850;
}

.sidebar-heading small {
    color: var(--muted);
    font-size: 9px;
}

.settings-search-field {
    display: flex;
    width: 100%;
    min-width: 0;
}

.settings-search {
    min-height: 40px;
    font-size: 11px;
}

.category-list {
    display: grid;
    gap: 4px;
    margin-top: 11px;
}

.category-button {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 720;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.14s ease,
        background 0.14s ease,
        color 0.14s ease;
}

.category-button:hover,
.category-button.active {
    border-color: rgba(103, 232, 249, 0.14);
    background: rgba(103, 232, 249, 0.07);
    color: var(--text);
}

.category-button-label {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.category-icon {
    display: inline-grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.08);
    color: var(--muted-strong);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.category-button.active .category-icon {
    background: rgba(103, 232, 249, 0.12);
    color: var(--accent);
}

.category-button small {
    display: inline-grid;
    min-width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
    color: var(--muted);
    font-size: 9px;
}

.sidebar-help {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 13px;
    padding: 11px 9px 3px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
}

.sidebar-help .live-dot {
    width: 6px;
    height: 6px;
    margin-top: 4px;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

.settings-panel {
    min-width: 0;
    overflow: hidden;
}

.settings-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 22px;
}

.settings-panel-head h2 {
    margin: 8px 0 2px;
    font-size: 21px;
    letter-spacing: -0.035em;
}

.settings-panel-head p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.settings-count {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid rgba(103, 232, 249, 0.14);
    border-radius: 999px;
    background: rgba(103, 232, 249, 0.06);
    color: var(--accent);
    font-size: 9px;
    font-weight: 850;
    white-space: nowrap;
}

.settings-policy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    min-height: 43px;
    padding: 10px 22px;
    border-block: 1px solid var(--line);
    background: rgba(7, 11, 20, 0.24);
}

.policy-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 9px;
}

.policy-item .live-dot {
    width: 6px;
    height: 6px;
    box-shadow: none;
}

.policy-alert-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--warning);
}

.settings-list {
    display: grid;
}

.setting-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
    align-items: center;
    gap: 24px;
    min-height: 112px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    transition:
        background 0.15s ease,
        opacity 0.15s ease;
}

.setting-row:last-child {
    border-bottom: 0;
}

.setting-row:hover {
    background: rgba(148, 163, 184, 0.025);
}

.setting-row.pending {
    background: rgba(103, 232, 249, 0.025);
}

.setting-row.disabled {
    opacity: 0.58;
}

.setting-copy {
    min-width: 0;
}

.setting-label-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.setting-label-line .name {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 780;
    letter-spacing: -0.01em;
}

.category-chip,
.risk-chip {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 850;
}

.category-chip {
    background: rgba(103, 232, 249, 0.08);
    color: var(--accent);
}

.risk-chip {
    background: rgba(251, 191, 36, 0.09);
    color: var(--warning);
}

.setting-copy .desc {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.setting-note {
    margin: 5px 0 0;
    color: #a5b4fc;
    font-size: 9px;
    line-height: 1.5;
}

.setting-note-spacer {
    display: none;
}

.setting-control {
    display: grid;
    min-width: 210px;
    justify-items: end;
    gap: 7px;
}

.setting-control select {
    width: min(100%, 250px);
    min-height: 42px;
    padding: 8px 36px 8px 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background-color: rgba(7, 11, 20, 0.66);
    color: var(--text-soft);
    font-size: 11px;
    cursor: pointer;
}

.setting-control select:hover {
    border-color: var(--line-strong);
}

.setting-control select:disabled {
    cursor: not-allowed;
}

.current-value,
.setting-save-state {
    min-height: 18px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
    text-align: right;
}

.setting-save-state {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.setting-save-state.success {
    color: var(--good);
}

.setting-save-state.error {
    color: var(--danger);
}

.setting-save-state.saving {
    color: var(--accent);
}

.setting-save-state i {
    font-style: normal;
    font-weight: 900;
}

.mini-spinner {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(103, 232, 249, 0.2);
    border-top-color: var(--accent);
    border-radius: 999px;
    animation: spin 0.7s linear infinite;
}

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

.readonly-control {
    display: grid;
    justify-items: end;
    gap: 5px;
}

.status-pill {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.06);
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 760;
    white-space: nowrap;
}

.command-hint {
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 8px;
}

.multi-toggle-list {
    display: flex;
    max-width: 490px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.multi-toggle-list.disabled {
    cursor: not-allowed;
}

.multi-toggle-option {
    min-height: 34px;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 11, 20, 0.58);
    color: var(--muted-strong);
    font-size: 9px;
    font-weight: 740;
    cursor: pointer;
    transition:
        border-color 0.14s ease,
        background 0.14s ease,
        color 0.14s ease;
}

.multi-toggle-option:hover {
    border-color: rgba(103, 232, 249, 0.28);
    color: var(--text);
}

.multi-toggle-option.active {
    border-color: rgba(103, 232, 249, 0.3);
    background: rgba(103, 232, 249, 0.1);
    color: var(--accent);
}

.multi-toggle-option:disabled {
    opacity: 0.56;
    cursor: not-allowed;
}

.color-input {
    width: 58px;
    height: 40px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(7, 11, 20, 0.58);
    cursor: pointer;
}

.color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-input::-webkit-color-swatch {
    border: 0;
    border-radius: 6px;
}

.toggle {
    position: relative;
    width: 52px;
    height: 30px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(71, 85, 105, 0.55);
    cursor: pointer;
    transition:
        border-color 0.16s ease,
        background 0.16s ease,
        box-shadow 0.16s ease;
}

.toggle::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #d7e0ee;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.32);
    transition:
        left 0.16s ease,
        background 0.16s ease;
    content: '';
}

.toggle[aria-checked='true'] {
    border-color: rgba(52, 211, 153, 0.45);
    background: rgba(52, 211, 153, 0.28);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.05);
}

.toggle[aria-checked='true']::after {
    left: 27px;
    background: var(--good);
}

.toggle:disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

.empty-state {
    display: grid;
    min-height: 180px;
    place-content: center;
    padding: 32px;
    color: var(--muted);
    text-align: center;
}

.empty-state strong,
.empty-state span {
    display: block;
}

.empty-state strong {
    color: var(--text-soft);
    font-size: 13px;
}

.empty-state span {
    margin-top: 5px;
    font-size: 10px;
}

/* 알림과 확인창 */

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    max-width: min(380px, calc(100vw - 32px));
    padding: 12px 15px;
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 12px;
    background: rgba(12, 24, 35, 0.96);
    color: #b7f7dd;
    box-shadow: var(--shadow-lg);
    font-size: 11px;
    font-weight: 740;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    border-color: rgba(251, 113, 133, 0.3);
    background: rgba(39, 13, 23, 0.97);
    color: #fecdd3;
}

.confirm-dialog {
    width: min(470px, calc(100vw - 30px));
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: #0e1728;
    color: var(--text);
    box-shadow: var(--shadow-lg);
}

.confirm-dialog::backdrop {
    background: rgba(2, 6, 13, 0.78);
    backdrop-filter: blur(6px);
}

.confirm-dialog form {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 24px;
}

.dialog-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 13px;
    background: rgba(251, 191, 36, 0.09);
    color: var(--warning);
    font-weight: 900;
}

.dialog-copy h2 {
    margin: 1px 0 7px;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.dialog-copy p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 12px;
    line-height: 1.7;
    white-space: pre-line;
}

.dialog-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 8px;
}

/* 반응형 */

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 78px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .product-preview {
        width: min(100%, 720px);
        margin-inline: auto;
        transform: none;
    }

    .dashboard-showcase-layout,
    .workflow-layout {
        grid-template-columns: 1fr;
    }

    .workflow-copy {
        position: static;
    }

    .workflow-steps {
        max-width: 760px;
    }

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

    .protection-grid {
        grid-template-columns: 1fr;
    }

    .protection-card {
        grid-template-columns: auto 1fr auto auto;
    }
}

@media (max-width: 860px) {
    .site-nav {
        display: none;
    }

    .header-actions {
        min-width: 0;
    }

    .stats-grid,
    .feature-card-grid,
    .command-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
        min-height: 290px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .section-heading > p {
        max-width: 650px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .settings-shell {
        grid-template-columns: 1fr;
    }

    .settings-sidebar {
        position: static;
    }

    .category-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sidebar-help {
        display: none;
    }

    .overview-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .wrap {
        padding-inline: 18px;
    }

    .header-inner,
    .site-header .wrap {
        min-height: 64px;
        gap: 12px;
    }

    .brand {
        font-size: 17px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .logout-button,
    .user-name {
        display: none;
    }

    .user-chip {
        width: 40px;
        min-width: 40px;
        padding: 5px;
    }

    .hero {
        gap: 48px;
        padding-block: 62px 72px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .hero-lede {
        font-size: 15px;
    }

    .trust-list {
        display: grid;
    }

    .preview-layout {
        grid-template-columns: 48px 1fr;
        min-height: 420px;
    }

    .preview-content {
        padding: 18px 14px;
    }

    .preview-nav {
        padding-top: 20px;
    }

    .preview-nav span {
        width: 24px;
        height: 24px;
    }

    .preview-metrics {
        grid-template-columns: 1fr;
    }

    .preview-metrics article:nth-child(2) {
        display: none;
    }

    .stats-section,
    .feature-section,
    .workflow-section,
    .dashboard-showcase,
    .commands-section,
    .cta-section {
        padding-block: 72px;
    }

    .stats-grid,
    .feature-card-grid,
    .command-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:last-child {
        grid-column: auto;
    }

    .feature-card {
        min-height: 310px;
    }

    .cta-panel {
        padding: 30px 22px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        flex: 1 1 160px;
    }

    .site-footer .wrap,
    .dashboard-footer .wrap {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding-block: 24px;
    }

    .dashboard-main {
        padding-top: 34px;
    }

    .page-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-summary {
        grid-template-columns: 1fr;
    }

    .summary-card {
        min-height: 112px;
    }

    .guild-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .search-field {
        width: 100%;
        min-width: 0;
    }

    .guild-grid {
        grid-template-columns: 1fr;
    }

    .guild-card {
        min-height: 230px;
    }

    .server-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .server-head-note {
        margin-left: 90px;
    }

    .server-overview {
        padding: 18px;
    }

    .overview-heading {
        flex-direction: column;
    }

    .overview-metrics {
        grid-template-columns: 1fr;
    }

    .overview-metric {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .overview-metric strong {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .attention-item {
        grid-template-columns: auto 1fr;
    }

    .attention-action {
        grid-column: 2;
        justify-self: start;
    }

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

    .setting-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 18px;
    }

    .setting-control {
        min-width: 0;
        justify-items: stretch;
    }

    .setting-control select,
    .multi-toggle-list {
        width: 100%;
        max-width: none;
    }

    .multi-toggle-list {
        justify-content: flex-start;
    }

    .toggle,
    .color-input {
        justify-self: start;
    }

    .current-value,
    .setting-save-state,
    .readonly-control {
        justify-items: start;
        justify-content: flex-start;
        text-align: left;
    }

    .toast {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
    }
}

@media (max-width: 430px) {
    .header-actions .btn {
        padding-inline: 11px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .product-preview {
        border-radius: 18px;
    }

    .preview-heading .health-badge {
        display: none;
    }

    .filter-group {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filter-button {
        justify-content: center;
        padding-inline: 6px;
    }

    .guild-card-action {
        align-items: stretch;
        flex-direction: column;
    }

    .guild-card-action p {
        max-width: none;
    }

    .server-identity {
        align-items: flex-start;
    }

    .server-head .guild-icon,
    .server-head .guild-icon-fallback {
        width: 60px;
        height: 60px;
        border-radius: 17px;
    }

    .server-head-note {
        margin-left: 0;
    }

    .category-list {
        grid-template-columns: 1fr;
    }

    .settings-panel-head,
    .settings-policy {
        padding-inline: 18px;
    }

    .confirm-dialog form {
        grid-template-columns: 1fr;
        padding: 21px;
    }

    .dialog-actions {
        grid-column: 1;
    }

    .dialog-actions .btn {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 2026-07 웹사이트 전면 시각 재설계
 * 랜딩은 홍보 페이지의 리듬을, 대시보드는 운영 화면의 가독성을 우선한다.
 * 기존 동작과 상태 색상은 유지하고 각 페이지 안에서만 시각 규칙을 덮어쓴다.
 */

.landing-page,
.dashboard-page {
    --bg: #111722;
    --bg-elevated: #161f2d;
    --surface: #1a2433;
    --surface-strong: #202d40;
    --surface-soft: rgba(25, 35, 50, 0.86);
    --line: rgba(203, 213, 225, 0.14);
    --line-strong: rgba(203, 213, 225, 0.24);
    --text: #f5f7fb;
    --text-soft: #dde5f0;
    --muted: #b9c4d3;
    --muted-strong: #d3dbe6;
    --accent: #829cff;
    --accent-strong: #6f87ef;
    --accent-ink: #ffffff;
    --premium-panel: linear-gradient(145deg, rgba(32, 44, 62, 0.94), rgba(23, 32, 46, 0.94));
    --premium-panel-soft: linear-gradient(145deg, rgba(29, 40, 57, 0.82), rgba(21, 30, 43, 0.82));
    --premium-accent: linear-gradient(135deg, #6f8ff2 0%, #7c72e8 100%);
    font-weight: 500;
    background:
        radial-gradient(circle at 8% -8%, rgba(113, 143, 240, 0.2), transparent 34rem),
        radial-gradient(circle at 92% 4%, rgba(155, 121, 219, 0.14), transparent 32rem),
        linear-gradient(155deg, #151d2a 0%, #101722 48%, #171625 100%);
    background-attachment: fixed;
}

.landing-page {
    --wrap: 1240px;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.5px) 0 0 /
            190px 190px,
        radial-gradient(circle at 74% 36%, rgba(194, 224, 255, 0.44) 0 1px, transparent 1.6px) 0 0 /
            260px 260px,
        radial-gradient(circle at 42% 76%, rgba(152, 188, 255, 0.34) 0 1px, transparent 1.5px) 0 0 /
            330px 330px,
        radial-gradient(ellipse at 86% 4%, rgba(115, 207, 255, 0.38), transparent 29rem),
        radial-gradient(ellipse at 70% 27%, rgba(48, 116, 255, 0.28), transparent 38rem),
        radial-gradient(ellipse at 12% 45%, rgba(27, 88, 207, 0.22), transparent 36rem),
        radial-gradient(ellipse at 91% 70%, rgba(120, 81, 211, 0.17), transparent 34rem),
        linear-gradient(
            90deg,
            rgba(3, 10, 29, 0.68) 0%,
            rgba(4, 15, 39, 0.4) 52%,
            rgba(5, 13, 34, 0.16) 100%
        ),
        url('/assets/olvision-cosmic-brand-v1.png?v=20260712a') center top / cover no-repeat,
        linear-gradient(145deg, #06122c 0%, #092854 34%, #101c42 62%, #11142b 100%);
    background-attachment: fixed;
}

.dashboard-page {
    --wrap: 1440px;
    background: #121319;
}

.landing-page::before,
.dashboard-page::before {
    display: none;
}

.landing-page button:focus-visible,
.landing-page a:focus-visible,
.landing-page input:focus-visible,
.landing-page select:focus-visible,
.dashboard-page button:focus-visible,
.dashboard-page a:focus-visible,
.dashboard-page input:focus-visible,
.dashboard-page select:focus-visible {
    outline-color: rgba(79, 131, 255, 0.9);
}

.dashboard-page .site-header {
    border-bottom-color: rgba(221, 229, 242, 0.1);
    background: rgba(17, 24, 35, 0.78);
    box-shadow: 0 12px 40px rgba(4, 8, 16, 0.14);
    backdrop-filter: blur(22px) saturate(135%);
}

.dashboard-page .header-inner,
.dashboard-page .site-header .wrap {
    min-height: 78px;
}

.landing-page .site-header {
    position: relative;
    top: auto;
    padding-inline: 20px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.landing-page .header-inner,
.landing-page .site-header .wrap {
    width: min(100%, var(--wrap));
    min-height: 70px;
    padding: 9px 14px 9px 18px;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
    transition:
        color 0.24s ease,
        border-color 0.24s ease,
        border-radius 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease;
}

.landing-page .site-header.is-scrolled {
    position: fixed;
    top: 12px;
    right: 0;
    left: 0;
    animation: landing-header-float-in 0.3s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

@keyframes landing-header-float-in {
    from {
        opacity: 0;
        transform: translateY(-120%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page .site-header.is-scrolled .header-inner,
.landing-page .site-header.is-scrolled .wrap {
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(247, 249, 253, 0.94);
    color: #1b2331;
    box-shadow:
        0 18px 48px rgba(3, 8, 18, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(24px) saturate(145%);
}

.landing-page .brand,
.dashboard-page .brand {
    gap: 11px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.landing-page .brand-mark,
.dashboard-page .brand-mark {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
}

.dashboard-page .site-nav {
    gap: 34px;
    color: #a8afbb;
    font-size: 14px;
}

.landing-page .site-nav {
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 720;
    letter-spacing: -0.005em;
    transition: color 0.24s ease;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a[aria-current='page'] {
    color: #ffffff;
}

.landing-page .site-header.is-scrolled .site-nav {
    color: #3f4a5c;
}

.landing-page .site-header.is-scrolled .site-nav a:hover,
.landing-page .site-header.is-scrolled .site-nav a[aria-current='page'] {
    color: #111827;
}

.landing-page .site-header:not(.is-scrolled) .btn-primary {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(8, 27, 63, 0.34);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.landing-page .site-nav a::after,
.dashboard-page .site-nav a::after {
    bottom: 4px;
    background: #4f83ff;
}

.landing-page .mobile-section-nav {
    display: none;
}

.landing-page main section[id] {
    scroll-margin-top: 96px;
}

.landing-page .btn,
.dashboard-page .btn {
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 820;
    box-shadow: none;
}

.landing-page .btn-sm,
.dashboard-page .btn-sm {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
}

.landing-page .btn-primary,
.dashboard-page .btn-primary {
    border-color: rgba(151, 167, 255, 0.32);
    background: var(--premium-accent);
    color: #fff;
    box-shadow: 0 14px 32px rgba(76, 91, 190, 0.24);
}

.landing-page .btn-primary:hover,
.dashboard-page .btn-primary:hover {
    border-color: rgba(176, 187, 255, 0.52);
    background: linear-gradient(135deg, #7a98f5 0%, #8779eb 100%);
    box-shadow: 0 18px 38px rgba(76, 91, 190, 0.3);
}

.landing-page .btn-secondary,
.dashboard-page .btn-secondary {
    border-color: rgba(221, 229, 242, 0.2);
    background: rgba(29, 40, 57, 0.46);
    color: #e1e6ef;
}

.landing-page .btn-secondary:hover,
.dashboard-page .btn-secondary:hover {
    border-color: rgba(109, 152, 255, 0.62);
    background: rgba(79, 131, 255, 0.08);
    color: #fff;
}

.landing-page .section-kicker,
.landing-page .eyebrow,
.dashboard-page .section-kicker {
    color: #79a2ff;
    font-size: 12px;
    letter-spacing: 0.16em;
}

/* 랜딩: 한 문장과 실제 대시보드 예시 */

.landing-page .hero {
    position: relative;
    isolation: isolate;
    display: block;
    overflow-x: clip;
    min-height: auto;
    padding-block: clamp(72px, 7vw, 102px) 76px;
}

.landing-page .hero::before {
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -260px;
    width: 760px;
    height: 620px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(139, 215, 255, 0.18), transparent 48%),
        conic-gradient(
            from 205deg,
            transparent 0deg,
            rgba(88, 143, 255, 0.14) 58deg,
            rgba(167, 139, 250, 0.1) 104deg,
            transparent 164deg
        );
    filter: blur(24px);
    opacity: 0.86;
    transform: rotate(-10deg);
    content: '';
}

.landing-page .hero-heading {
    display: block;
}

.landing-page .hero-copy {
    max-width: 1060px;
    min-width: 0;
}

.landing-page .hero .eyebrow {
    color: #9da6b4;
    font-weight: 700;
    text-transform: none;
}

.landing-page .hero h1 {
    max-width: 1060px;
    margin: 21px 0 0;
    font-size: clamp(56px, 5.7vw, 76px);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 1.07;
}

.landing-page .hero h1 .accent {
    color: #9aafff;
}

.landing-page .hero-intro {
    display: grid;
    grid-template-columns: minmax(0, 650px) auto;
    align-items: end;
    justify-content: space-between;
    gap: 42px;
    margin-top: 43px;
}

.landing-page .hero-lede {
    margin: 0;
    color: #a8b0bd;
    font-size: 17px;
    font-weight: 560;
    line-height: 1.75;
}

.landing-page .hero-actions {
    justify-content: flex-end;
}

.landing-page .hero-dashboard-preview {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    align-items: center;
    gap: clamp(38px, 5vw, 72px);
    overflow: hidden;
    margin-top: 56px;
    padding: 46px 50px;
    border: 1px solid rgba(151, 170, 230, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(121, 151, 242, 0.2), transparent 42%),
        radial-gradient(circle at 96% 90%, rgba(151, 119, 218, 0.13), transparent 38%),
        linear-gradient(105deg, rgba(15, 25, 44, 0.82), rgba(12, 20, 36, 0.58)),
        url('/assets/olvision-cosmic-brand-v1.png?v=20260712a') center / cover no-repeat,
        var(--premium-panel);
    box-shadow:
        0 32px 80px rgba(5, 10, 20, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.landing-page .hero-dashboard-preview:hover {
    border-color: rgba(153, 175, 255, 0.42);
    box-shadow:
        0 38px 92px rgba(5, 10, 20, 0.34),
        0 0 0 1px rgba(143, 163, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
    transform: translateY(-3px);
}

.landing-page .hero-dashboard-preview:focus-visible {
    outline-offset: 6px;
}

.landing-page .demo-preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: #aebeff;
    font-size: 14px;
    font-weight: 800;
}

.landing-page .demo-preview-cta b {
    transition: transform 0.2s ease;
}

.landing-page .hero-dashboard-preview:hover .demo-preview-cta b {
    transform: translateX(4px);
}

.landing-page .hero-preview-copy > strong,
.landing-page .hero-preview-copy > p {
    display: block;
}

.landing-page .hero-preview-copy > strong {
    max-width: 420px;
    margin-top: 16px;
    color: #f5f7fb;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 1.14;
}

.landing-page .hero-preview-copy > p {
    max-width: 420px;
    margin: 18px 0 0;
    color: #9da6b4;
    font-size: 15px;
    line-height: 1.75;
    word-break: keep-all;
}

.landing-page .demo-preview-description span {
    display: block;
}

.landing-page .balanced-copy > span {
    display: block;
}

.landing-page .hero-dashboard-preview .status-demo {
    margin: 0;
    border-color: rgba(221, 229, 242, 0.16);
    background: rgba(20, 28, 41, 0.84);
    box-shadow: 0 24px 56px rgba(5, 9, 17, 0.24);
}

.landing-page .feature-section,
.landing-page .workflow-section,
.landing-page .commands-section,
.landing-page .cta-section {
    padding-block: 92px;
}

.landing-page .section-heading h2 {
    max-width: 760px;
    font-size: clamp(36px, 4.2vw, 54px);
    line-height: 1.12;
}

.landing-page .section-heading > p {
    color: #c2c9d5;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

.landing-page .feature-section {
    border-top: 0;
    background:
        radial-gradient(circle at 14% 8%, rgba(103, 126, 222, 0.12), transparent 30rem),
        linear-gradient(180deg, rgba(26, 35, 49, 0.44), rgba(19, 27, 40, 0.18));
}

.landing-page .feature-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2vw, 30px);
    border: 0;
}

.landing-page .feature-card,
.landing-page .feature-card-primary {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(202, 213, 233, 0.15);
    border-radius: 28px;
    background: #141d2d;
    box-shadow:
        0 24px 60px rgba(5, 10, 20, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.landing-page .feature-card::before,
.landing-page .feature-card::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: '';
}

.landing-page .feature-card::before {
    z-index: -2;
    background-position: center;
    background-size: cover;
    opacity: 0.8;
    transition: transform 0.4s ease;
}

.landing-page .feature-card::after {
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(13, 21, 36, 0.2) 0%,
        rgba(13, 21, 36, 0.72) 43%,
        rgba(13, 21, 36, 0.97) 72%
    );
}

.landing-page .feature-card-judge::before {
    background-image: url('/assets/olvision-card-judge-v2.png');
}

.landing-page .feature-card-spam::before {
    background-image: url('/assets/olvision-card-spam-v2.png');
}

.landing-page .feature-card-terror::before {
    background-image: url('/assets/olvision-card-terror-v2.png');
}

.landing-page .feature-card > * {
    position: relative;
    z-index: 1;
}

.landing-page .feature-card:hover {
    border-color: rgba(155, 177, 255, 0.34);
    background: #141d2d;
    box-shadow: 0 30px 70px rgba(5, 10, 20, 0.24);
    transform: translateY(-5px);
}

.landing-page .feature-card:hover::before {
    transform: scale(1.035);
}

.landing-page .feature-card-top {
    margin-bottom: 56px;
}

.landing-page .feature-number {
    color: #9ca5b3;
    font-size: 12px;
}

.landing-page .feature-card h3 {
    font-size: 24px;
}

.landing-page .feature-card p {
    color: #aab2be;
    font-size: 15px;
    font-weight: 560;
}

.landing-page .feature-card ul {
    color: #8f98a5;
    font-size: 14px;
    font-weight: 540;
}

.landing-page .workflow-section {
    border-top: 0;
}

.landing-page .workflow-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
}

.landing-page .workflow-copy h2 {
    font-size: clamp(36px, 4.2vw, 52px);
}

.landing-page .workflow-copy > p {
    color: #a7afbb;
    font-size: 16px;
    font-weight: 560;
}

.landing-page .workflow-steps li {
    grid-template-columns: 58px 1fr;
    padding-bottom: 48px;
}

.landing-page .workflow-steps li:not(:last-child)::after {
    top: 57px;
    left: 28px;
}

.landing-page .workflow-steps li > span {
    width: 58px;
    height: 58px;
    border-color: rgba(79, 131, 255, 0.34);
    border-radius: 16px;
    background: rgba(79, 131, 255, 0.1);
    color: #79a2ff;
    font-size: 16px;
}

.landing-page .workflow-steps strong {
    font-size: 20px;
}

.landing-page .workflow-steps p {
    color: #929aa8;
    font-size: 15px;
    font-weight: 540;
}

.landing-page .status-demo {
    border-color: rgba(221, 229, 242, 0.17);
    border-radius: 18px;
    background: var(--premium-panel-soft);
    box-shadow: 0 24px 60px rgba(5, 10, 20, 0.22);
}

.landing-page .status-demo-head {
    padding: 22px 24px;
}

.landing-page .status-demo-head small,
.landing-page .status-demo-row small,
.landing-page .status-demo-row b {
    font-size: 12px;
}

.landing-page .status-demo-head strong,
.landing-page .status-demo-row strong {
    font-size: 15px;
}

.landing-page .status-demo-row {
    padding: 21px 24px;
}

.landing-page .command-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border: 0;
}

.landing-page .command-grid > .empty-state {
    grid-column: 1 / -1;
}

.landing-page .command-card {
    min-height: 168px;
    padding: 24px;
    border: 1px solid rgba(202, 213, 233, 0.13);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(30, 41, 58, 0.72), rgba(22, 31, 45, 0.72));
    box-shadow: 0 16px 38px rgba(5, 10, 20, 0.13);
}

.landing-page .cmd {
    color: #79a2ff;
    font-size: 14px;
}

.landing-page .command-card .desc {
    color: #969eaa;
    font-size: 14px;
    font-weight: 550;
}

.landing-page .aud {
    font-size: 11px;
}

.landing-page .cta-panel {
    padding: 54px 58px;
    border: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.12), transparent 28rem),
        linear-gradient(100deg, rgba(52, 78, 165, 0.74), rgba(70, 55, 146, 0.58)),
        url('/assets/olvision-cosmic-brand-v1.png?v=20260712a') center 42% / cover no-repeat,
        linear-gradient(135deg, #5d7edb 0%, #7365cf 100%);
    box-shadow: 0 30px 76px rgba(49, 55, 130, 0.3);
}

.landing-page .cta-panel .section-kicker,
.landing-page .cta-panel p {
    color: #f7f9ff;
}

.landing-page .cta-panel h2 {
    color: #fff;
}

.landing-page .cta-panel .btn-primary {
    border-color: #fff;
    background: #fff;
    color: #23468f;
}

.landing-page .cta-panel .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.landing-page .cta-panel a:focus-visible {
    outline-color: #fff;
    outline-offset: 4px;
}

.landing-page .site-footer,
.dashboard-page .dashboard-footer {
    border-top-color: rgba(221, 229, 242, 0.1);
    color: #8d96a4;
}

/* 어두운 우주 배경 위 보조 문구도 본문으로 읽을 수 있는 대비를 유지한다. */
.landing-page .hero .eyebrow,
.landing-page .hero-lede,
.landing-page .hero-preview-copy > p,
.landing-page .feature-number,
.landing-page .feature-card p,
.landing-page .feature-card ul,
.landing-page .workflow-copy > p,
.landing-page .workflow-steps p,
.landing-page .command-card .desc,
.landing-page .site-footer {
    color: #c2cbd8;
}

.dashboard-page .page-hero p,
.dashboard-page .summary-label,
.dashboard-page .summary-card small,
.dashboard-page .filter-button,
.dashboard-page .guild-info .meta,
.dashboard-page .guild-card-action p,
.dashboard-page .dashboard-footer,
.server-page .back-link,
.server-page .server-title .meta,
.server-page .overview-heading p,
.server-page .overview-metric span,
.server-page .overview-metric small,
.server-page .attention-item p,
.server-page .settings-panel-head p,
.server-page .policy-item,
.server-page .setting-copy .desc {
    color: #bdc7d5;
}

.dashboard-page .guild-search::placeholder,
.dashboard-page .settings-search::placeholder {
    color: #aeb9c8;
}

/* 우주 히어로의 인디고를 이어받아 아래 섹션을 미세하게 다른 다크 톤으로 구분한다. */
.landing-page .feature-section,
.landing-page .workflow-section,
.landing-page .commands-section,
.landing-page .cta-section,
.landing-page .site-footer {
    color: #f5f7fb;
}

.landing-page .feature-section {
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 20%, rgba(66, 92, 180, 0.16), transparent 34rem),
        linear-gradient(180deg, #141823 0%, #17264a 58%, #244eb5 100%);
}

.landing-page .workflow-section {
    background:
        radial-gradient(circle at 86% 12%, rgba(91, 119, 218, 0.14), transparent 32rem),
        linear-gradient(180deg, #244eb5 0%, #172d62 11%, #111d33 30%, #0f1829 100%);
}

.landing-page .commands-section {
    border-top: 1px solid rgba(151, 170, 213, 0.1);
    background:
        radial-gradient(circle at 12% 18%, rgba(65, 91, 169, 0.12), transparent 30rem),
        linear-gradient(180deg, #111a2b 0%, #0d1626 100%);
}

.landing-page .cta-section {
    border-top: 1px solid rgba(151, 170, 213, 0.08);
    background:
        radial-gradient(circle at 78% 70%, rgba(90, 75, 178, 0.1), transparent 34rem),
        linear-gradient(180deg, #0d1626 0%, #0b1423 100%);
}

.landing-page .site-footer {
    background: #09111e;
}

.landing-page .feature-section .section-kicker,
.landing-page .workflow-section .section-kicker,
.landing-page .commands-section .section-kicker {
    color: #8facff;
}

.landing-page .feature-section .section-kicker {
    color: #9eb6ff;
}

.landing-page .feature-section .section-heading h2,
.landing-page .workflow-copy h2,
.landing-page .commands-section .section-heading h2,
.landing-page .workflow-steps strong {
    color: #ffffff;
}

.landing-page .feature-section .section-heading > p,
.landing-page .workflow-copy > p,
.landing-page .workflow-steps p,
.landing-page .commands-section .section-heading > p,
.landing-page .command-card .desc,
.landing-page .site-footer {
    color: #b9c4d4;
}

.landing-page .feature-section .section-heading > p {
    color: #d6deeb;
}

.landing-page .feature-card,
.landing-page .feature-card-primary {
    min-height: 430px;
    padding: 28px;
    border-color: rgba(15, 23, 42, 0.22);
    border-radius: 22px;
    background: #101217;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16);
}

.landing-page .feature-card::before {
    background-position: center top;
    background-size: auto 72%;
    background-repeat: no-repeat;
    opacity: 1;
}

.landing-page .feature-card::after {
    background: linear-gradient(
        180deg,
        rgba(16, 18, 23, 0.04) 0%,
        rgba(16, 18, 23, 0.2) 34%,
        rgba(16, 18, 23, 0.94) 61%,
        #101217 76%,
        #101217 100%
    );
}

.landing-page .feature-card h3 {
    color: #ffffff;
    font-size: 25px;
}

.landing-page .feature-card p,
.landing-page .feature-card ul {
    color: #c5ccda;
}

.landing-page .feature-card:hover {
    border-color: rgba(67, 103, 255, 0.48);
    background: #101217;
    box-shadow: 0 30px 70px rgba(24, 47, 130, 0.22);
}

.landing-page .feature-card-top {
    margin-bottom: 230px;
}

.landing-page .feature-number {
    color: #dbe5ff;
    font-weight: 800;
}

.landing-page .workflow-steps li > span {
    border-color: rgba(143, 172, 255, 0.34);
    background: linear-gradient(145deg, rgba(56, 83, 151, 0.42), rgba(29, 45, 79, 0.72));
    color: #aec0ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.landing-page .workflow-steps li:not(:last-child)::after {
    background: linear-gradient(#536eaf, rgba(83, 110, 175, 0.16));
}

.landing-page .command-card {
    border-color: rgba(153, 174, 219, 0.16);
    background: linear-gradient(145deg, #152036 0%, #111a2c 100%);
    box-shadow:
        0 16px 38px rgba(3, 8, 18, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.landing-page .command-card:nth-child(3n + 2) {
    background: linear-gradient(145deg, #171f35 0%, #121929 100%);
}

.landing-page .command-card:nth-child(3n) {
    background: linear-gradient(145deg, #122237 0%, #101a2b 100%);
}

.landing-page .command-card:hover {
    border-color: rgba(127, 158, 239, 0.38);
    box-shadow:
        0 22px 46px rgba(3, 8, 18, 0.32),
        0 0 0 1px rgba(116, 145, 224, 0.06) inset;
    transform: translateY(-3px);
}

.landing-page .cmd {
    color: #91adff;
}

.landing-page .aud {
    color: #c7d2e2;
    background: rgba(130, 150, 190, 0.16);
}

.landing-page .site-footer {
    margin-top: 0;
    border-top-color: rgba(151, 170, 213, 0.12);
}

.landing-page .footer-brand strong {
    color: #f2f5fa;
}

.landing-page .footer-brand small {
    color: #9eabba;
}

@media (prefers-reduced-motion: no-preference) {
    .landing-page [data-reveal-delay='1'] {
        --reveal-delay: 90ms;
    }

    .landing-page [data-reveal-delay='2'] {
        --reveal-delay: 180ms;
    }

    html.motion-ready .landing-page [data-reveal] {
        opacity: 0;
        filter: blur(8px);
        transform: translate3d(0, 24px, 0);
        transition:
            opacity 0.7s cubic-bezier(0.2, 0.72, 0.2, 1),
            filter 0.7s cubic-bezier(0.2, 0.72, 0.2, 1),
            transform 0.7s cubic-bezier(0.2, 0.72, 0.2, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: opacity, filter, transform;
    }

    html.motion-ready .landing-page [data-reveal].is-visible {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }

    .landing-page .hero h1 .accent {
        background: linear-gradient(110deg, #91aaff 0%, #d1c8ff 46%, #96b3ff 78%);
        background-clip: text;
        background-size: 220% 100%;
        color: transparent;
        animation: landing-accent-shimmer 8s ease-in-out infinite alternate;
        -webkit-background-clip: text;
    }

    .landing-page .hero-dashboard-preview::before {
        position: absolute;
        z-index: 0;
        inset: -55% -25%;
        pointer-events: none;
        background: radial-gradient(
            circle,
            rgba(93, 137, 242, 0.2) 0%,
            rgba(93, 137, 242, 0.05) 38%,
            transparent 68%
        );
        opacity: 0.7;
        transform: translate3d(-12%, -4%, 0) scale(0.94);
        animation: landing-preview-ambient 12s ease-in-out infinite alternate;
        content: '';
    }

    .landing-page .hero-dashboard-preview > * {
        position: relative;
        z-index: 1;
    }

    html.motion-ready .landing-page .hero-dashboard-preview .status-demo-row {
        opacity: 0;
        transform: translate3d(14px, 0, 0);
    }

    html.motion-ready .landing-page .hero-dashboard-preview.is-visible .status-demo-row {
        animation: landing-preview-row-in 0.55s cubic-bezier(0.2, 0.72, 0.2, 1) both;
    }

    html.motion-ready
        .landing-page
        .hero-dashboard-preview.is-visible
        .status-demo-row:nth-child(2) {
        animation-delay: 0.28s;
    }

    html.motion-ready
        .landing-page
        .hero-dashboard-preview.is-visible
        .status-demo-row:nth-child(3) {
        animation-delay: 0.4s;
    }

    html.motion-ready
        .landing-page
        .hero-dashboard-preview.is-visible
        .status-demo-row:nth-child(4) {
        animation-delay: 0.52s;
    }

    .landing-page .hero-dashboard-preview.is-visible .status-demo-row.healthy > i {
        animation: landing-status-pulse 3.2s ease-in-out 0.9s infinite;
    }

    .landing-page .btn > span[aria-hidden='true'] {
        transition: transform 0.24s ease;
    }

    .landing-page .btn:hover > span[aria-hidden='true'] {
        transform: translateX(4px);
    }

    @keyframes landing-accent-shimmer {
        from {
            background-position: 100% 50%;
        }

        to {
            background-position: 0% 50%;
        }
    }

    @keyframes landing-preview-ambient {
        from {
            transform: translate3d(-12%, -4%, 0) scale(0.94);
        }

        to {
            transform: translate3d(14%, 8%, 0) scale(1.06);
        }
    }

    @keyframes landing-preview-row-in {
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes landing-status-pulse {
        0%,
        100% {
            box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.08);
        }

        50% {
            box-shadow: 0 0 0 9px rgba(52, 211, 153, 0.02);
        }
    }
}

/* 대시보드 공통: 본문 폭 복원과 읽을 수 있는 기본 크기 */

.dashboard-page .dashboard-main {
    width: min(100%, var(--wrap));
    padding-top: 58px;
    padding-bottom: 88px;
}

.dashboard-page .page-hero {
    margin-bottom: 42px;
}

.dashboard-page .page-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(44px, 4vw, 58px);
    line-height: 1.08;
}

.dashboard-page .page-hero p {
    color: #a0a8b5;
    font-size: 16px;
}

.dashboard-page .user-chip {
    max-width: 220px;
    min-height: 44px;
    padding: 6px 11px 6px 7px;
    border-radius: 10px;
    border: 1px solid rgba(203, 213, 225, 0.12);
    background: rgba(29, 40, 56, 0.7);
    box-shadow: 0 12px 28px rgba(5, 10, 20, 0.14);
    font-size: 13px;
}

.dashboard-page .demo-user-chip {
    max-width: none;
}

.dashboard-page .demo-mode-badge {
    padding: 3px 7px;
    border: 1px solid rgba(151, 170, 255, 0.22);
    border-radius: 999px;
    background: rgba(119, 139, 232, 0.12);
    color: #aebeff;
    font-size: 10px;
    font-weight: 800;
}

.dashboard-page .user-chip img,
.dashboard-page .avatar-fallback {
    width: 30px;
    height: 30px;
}

.dashboard-page .dashboard-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 32px;
    border-block: 1px solid rgba(221, 229, 242, 0.14);
    background: linear-gradient(90deg, rgba(35, 47, 66, 0.42), rgba(25, 35, 51, 0.18));
}

.dashboard-page .summary-card {
    min-height: 164px;
    padding: 29px 32px;
    border: 0;
    border-right: 1px solid rgba(221, 229, 242, 0.12);
    border-radius: 0;
    background: transparent;
}

.dashboard-page .summary-card:last-child {
    border-right: 0;
}

.dashboard-page .summary-card::after {
    display: none;
}

.dashboard-page .summary-label {
    color: #a5adba;
    font-size: 15px;
}

.dashboard-page .summary-card strong {
    margin: 10px 0 5px;
    font-size: 43px;
}

.dashboard-page .summary-card small {
    color: #89929f;
    font-size: 13px;
}

.dashboard-page .guild-area {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.dashboard-page .guild-toolbar {
    padding: 17px 0;
    border-block: 1px solid rgba(221, 229, 242, 0.14);
    border-bottom-color: rgba(221, 229, 242, 0.14);
}

.dashboard-page .filter-group {
    gap: 8px;
}

.dashboard-page .filter-button {
    min-height: 44px;
    padding: 9px 13px;
    border-radius: 9px;
    color: #9fa7b4;
    font-size: 14px;
}

.dashboard-page .filter-button small {
    min-width: 24px;
    height: 24px;
    font-size: 11px;
}

.dashboard-page .filter-button:hover,
.dashboard-page .filter-button.active {
    border-color: rgba(79, 131, 255, 0.25);
    background: rgba(79, 131, 255, 0.1);
}

.dashboard-page .filter-button.active small {
    background: rgba(79, 131, 255, 0.18);
    color: #96b4ff;
}

.dashboard-page .search-field {
    min-width: min(100%, 300px);
}

.dashboard-page .guild-search,
.dashboard-page .settings-search {
    min-height: 48px;
    border-radius: 10px;
    background: rgba(21, 30, 44, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    font-size: 14px;
}

.dashboard-page .guild-search::placeholder,
.dashboard-page .settings-search::placeholder {
    color: #777f8d;
}

.dashboard-page .guild-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 18px;
    padding: 24px 0 0;
}

.dashboard-page .guild-card {
    min-height: 260px;
    padding: 26px;
    border-color: rgba(221, 229, 242, 0.13);
    border-radius: 18px;
    background: var(--premium-panel-soft);
    box-shadow:
        0 18px 44px rgba(5, 10, 20, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.dashboard-page .guild-card:hover {
    border-color: rgba(79, 131, 255, 0.38);
    background: linear-gradient(145deg, rgba(40, 54, 76, 0.94), rgba(27, 38, 55, 0.94));
    box-shadow: 0 24px 54px rgba(5, 10, 20, 0.24);
    transform: translateY(-2px);
}

.dashboard-page .guild-card.needs-invite {
    background: linear-gradient(145deg, rgba(26, 35, 49, 0.84), rgba(20, 28, 41, 0.84));
}

.dashboard-page .guild-icon,
.dashboard-page .guild-icon-fallback {
    width: 58px;
    height: 58px;
    border-radius: 16px;
}

.dashboard-page .guild-icon-fallback {
    border-color: rgba(79, 131, 255, 0.25);
    background: rgba(79, 131, 255, 0.1);
    color: #8eafff;
    font-size: 21px;
}

.dashboard-page .status-badge,
.dashboard-page .overview-status {
    padding: 7px 11px;
    font-size: 12px;
}

.dashboard-page .guild-info {
    margin-top: 24px;
}

.dashboard-page .guild-info .name {
    display: -webkit-box;
    overflow: hidden;
    font-size: 22px;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dashboard-page .guild-info .meta {
    margin-top: 8px;
    color: #9ca5b2;
    font-size: 14px;
}

.dashboard-page .owner-badge {
    padding: 4px 8px;
    font-size: 11px;
}

.dashboard-page .guild-card-action {
    gap: 18px;
    padding-top: 24px;
}

.dashboard-page .guild-card-action p {
    max-width: 235px;
    color: #929ba8;
    font-size: 14px;
    line-height: 1.6;
}

.dashboard-page .empty-panel {
    border-color: rgba(221, 229, 242, 0.14);
    background: var(--premium-panel-soft);
    box-shadow: 0 22px 54px rgba(5, 10, 20, 0.18);
}

.dashboard-page .empty-panel h2 {
    font-size: 27px;
}

.dashboard-page .empty-panel p {
    font-size: 15px;
}

.dashboard-page .empty-panel-icon {
    border-color: rgba(79, 131, 255, 0.25);
    background: rgba(79, 131, 255, 0.1);
    color: #8eafff;
}

.dashboard-page .dashboard-skeleton .guild-grid {
    padding-top: 0;
}

.dashboard-page .dashboard-footer .wrap {
    min-height: 116px;
    font-size: 13px;
}

/* 서버 설정: 요약은 펼치고 설정만 하나의 주 표면으로 유지 */

.server-page .back-link {
    margin-bottom: 14px;
    color: #9ea7b4;
    font-size: 14px;
}

.server-page .server-head {
    gap: 32px;
    padding: 22px 0 42px;
}

.server-page .server-head .guild-icon,
.server-page .server-head .guild-icon-fallback {
    width: 82px;
    height: 82px;
    border-radius: 22px;
}

.server-page .server-title h1 {
    margin-top: 7px;
    font-size: clamp(36px, 3.6vw, 46px);
    white-space: normal;
    overflow-wrap: anywhere;
}

.server-page .server-title .meta {
    margin-top: 5px;
    color: #9fa8b5;
    font-size: 14px;
}

.server-page .server-head-note {
    min-height: 42px;
    padding: 10px 13px;
    border-radius: 10px;
    font-size: 12px;
}

.server-page .server-overview {
    padding: 36px 0;
    border: 0;
    border-block: 1px solid rgba(221, 229, 242, 0.14);
    border-radius: 0;
    background: transparent;
}

.server-page .overview-heading h2 {
    margin: 11px 0 5px;
    font-size: 32px;
}

.server-page .overview-heading p {
    color: #9da6b3;
    font-size: 15px;
}

.server-page .overview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
    border-block: 1px solid rgba(221, 229, 242, 0.12);
}

.server-page .overview-metric {
    min-height: 124px;
    padding: 24px;
    border: 0;
    border-right: 1px solid rgba(221, 229, 242, 0.11);
    border-radius: 0;
    background: transparent;
}

.server-page .overview-metric:last-child {
    border-right: 0;
}

.server-page .overview-metric span,
.server-page .overview-metric small {
    color: #9099a6;
    font-size: 13px;
}

.server-page .overview-metric strong {
    margin: 7px 0 3px;
    font-size: 31px;
}

.server-page .protection-grid {
    gap: 12px;
    margin-top: 18px;
}

.server-page .protection-card {
    min-height: 102px;
    gap: 14px;
    padding: 18px;
    border-color: rgba(221, 229, 242, 0.13);
    border-radius: 14px;
    background: var(--premium-panel-soft);
    box-shadow: 0 14px 34px rgba(5, 10, 20, 0.14);
}

.server-page .protection-card:hover {
    border-color: rgba(79, 131, 255, 0.38);
    background: linear-gradient(145deg, rgba(40, 54, 76, 0.94), rgba(27, 38, 55, 0.94));
}

.server-page .protection-card .feature-icon {
    width: 34px;
    height: 34px;
}

.server-page .protection-copy strong {
    font-size: 16px;
}

.server-page .protection-copy small {
    margin-top: 2px;
    font-size: 12px;
}

.server-page .protection-state {
    padding: 5px 8px;
    font-size: 11px;
}

.server-page .attention-panel {
    margin-top: 22px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(27, 37, 52, 0.9), rgba(20, 29, 42, 0.9));
}

.server-page .attention-panel-head {
    padding: 21px 22px;
}

.server-page .attention-panel-head h3 {
    font-size: 18px;
}

.server-page .attention-item {
    gap: 15px;
    padding: 19px 22px;
}

.server-page .attention-item strong {
    font-size: 15px;
}

.server-page .attention-item p {
    margin-top: 4px;
    color: #969fac;
    font-size: 13px;
}

.server-page .attention-action {
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 13px;
}

.server-page .attention-panel.all-clear {
    padding: 22px;
}

.server-page .attention-icon {
    width: 48px;
    height: 48px;
}

.server-page .attention-copy h3 {
    font-size: 17px;
}

.server-page .attention-copy p {
    font-size: 13px;
}

.server-page .settings-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.server-page .settings-sidebar,
.server-page .settings-panel {
    border-color: rgba(221, 229, 242, 0.14);
    border-radius: 16px;
    background: var(--premium-panel-soft);
    box-shadow:
        0 24px 58px rgba(5, 10, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.server-page .settings-sidebar {
    top: 100px;
    padding: 20px;
}

.server-page .sidebar-heading {
    padding: 2px 2px 16px;
}

.server-page .sidebar-title {
    font-size: 16px;
}

.server-page .sidebar-heading small {
    font-size: 12px;
}

.server-page .settings-search {
    font-size: 14px;
}

.server-page .category-list {
    gap: 6px;
    margin-top: 14px;
}

.server-page .category-button {
    min-height: 50px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.server-page .category-button:hover,
.server-page .category-button.active {
    border-color: rgba(79, 131, 255, 0.26);
    background: rgba(79, 131, 255, 0.1);
}

.server-page .category-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 13px;
}

.server-page .category-button.active .category-icon {
    background: rgba(79, 131, 255, 0.16);
    color: #94b2ff;
}

.server-page .category-button small {
    min-width: 24px;
    height: 24px;
    font-size: 11px;
}

.server-page .sidebar-help {
    gap: 10px;
    margin-top: 16px;
    padding: 15px 8px 3px;
    font-size: 12px;
}

.server-page .settings-panel-head {
    padding: 29px 30px;
}

.server-page .settings-panel-head h2 {
    margin: 10px 0 4px;
    scroll-margin-top: 104px;
    font-size: 30px;
}

.server-page .settings-panel-head p {
    color: #9aa3b0;
    font-size: 14px;
}

.server-page .settings-count {
    min-height: 32px;
    padding: 6px 10px;
    border-color: rgba(79, 131, 255, 0.24);
    background: rgba(79, 131, 255, 0.09);
    color: #92b1ff;
    font-size: 12px;
}

.server-page .settings-policy {
    min-height: 54px;
    gap: 10px 24px;
    padding: 12px 30px;
    background: rgba(19, 27, 40, 0.72);
}

.server-page .policy-item {
    color: #9ca5b2;
    font-size: 12px;
}

.server-page .setting-row {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 34px;
    min-height: 136px;
    padding: 25px 30px;
}

.server-page .setting-row:hover {
    background: linear-gradient(90deg, rgba(119, 145, 231, 0.06), transparent 72%);
}

.server-page .setting-row.pending {
    background: rgba(79, 131, 255, 0.05);
}

.server-page .setting-label-line {
    gap: 8px;
}

.server-page .setting-label-line .name {
    font-size: 16px;
}

.server-page .category-chip,
.server-page .risk-chip {
    min-height: 25px;
    padding: 4px 8px;
    font-size: 11px;
}

.server-page .category-chip {
    background: rgba(79, 131, 255, 0.1);
    color: #94b2ff;
}

.server-page .setting-copy .desc {
    margin-top: 7px;
    color: #a0a9b6;
    font-size: 14px;
    line-height: 1.65;
}

.server-page .setting-note {
    margin-top: 7px;
    color: #aebdff;
    font-size: 12px;
    line-height: 1.55;
}

.server-page .setting-control {
    min-width: 280px;
    gap: 9px;
}

.server-page .setting-control select {
    width: min(100%, 360px);
    min-height: 48px;
    padding-inline: 13px 40px;
    border-radius: 10px;
    background-color: rgba(18, 27, 40, 0.9);
    font-size: 14px;
}

.server-page .current-value,
.server-page .setting-save-state {
    min-height: 20px;
    font-size: 12px;
}

.server-page .readonly-control {
    gap: 7px;
}

.server-page .status-pill {
    min-height: 36px;
    padding: 7px 11px;
    font-size: 12px;
}

.server-page .command-hint {
    font-size: 11px;
}

.server-page .multi-toggle-list {
    gap: 8px;
}

.server-page .multi-toggle-option {
    min-height: 41px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(18, 27, 40, 0.82);
    font-size: 12px;
}

.server-page .multi-toggle-option:hover {
    border-color: rgba(79, 131, 255, 0.35);
}

.server-page .multi-toggle-option.active {
    border-color: rgba(79, 131, 255, 0.42);
    background: rgba(79, 131, 255, 0.12);
    color: #9ab6ff;
}

.server-page .setting-kind-multiSelect {
    grid-template-columns: 1fr;
}

.server-page .setting-kind-multiSelect .setting-control {
    justify-items: start;
}

.server-page .setting-kind-multiSelect .multi-toggle-list {
    max-width: none;
    justify-content: flex-start;
}

.server-page .empty-state strong {
    font-size: 16px;
}

.server-page .empty-state span {
    font-size: 14px;
}

.server-page .toggle {
    width: 58px;
    height: 34px;
}

.server-page .toggle::after {
    top: 4px;
    width: 24px;
    height: 24px;
}

.server-page .toggle[aria-checked='true']::after {
    left: 28px;
}

.server-page .color-input {
    width: 64px;
    height: 44px;
}

.dashboard-page .toast {
    padding: 14px 17px;
    border-radius: 10px;
    font-size: 13px;
}

.dashboard-page .confirm-dialog {
    width: min(520px, calc(100vw - 30px));
}

.dashboard-page .dialog-copy h2 {
    font-size: 22px;
}

.dashboard-page .dialog-copy p {
    font-size: 14px;
}

@media (max-width: 1080px) {
    .landing-page .hero-intro {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-intro {
        align-items: start;
        gap: 28px;
    }

    .landing-page .hero-actions {
        justify-content: flex-start;
    }

    .landing-page .hero-dashboard-preview {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .landing-page .hero-preview-copy > p {
        max-width: 620px;
    }

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

    .landing-page .workflow-layout {
        grid-template-columns: 1fr;
    }

    .landing-page .workflow-copy {
        position: static;
    }

    .server-page .settings-shell {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 18px;
    }

    .server-page .setting-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .server-page .setting-control {
        min-width: 0;
        justify-items: start;
    }

    .server-page .current-value,
    .server-page .setting-save-state,
    .server-page .readonly-control {
        justify-items: start;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 860px) {
    .landing-page .mobile-section-nav {
        display: flex;
        width: min(calc(100% - 40px), var(--wrap));
        min-height: 46px;
        align-items: center;
        gap: 26px;
        overflow-x: auto;
        margin: 8px auto 0;
        padding-inline: 18px;
        border: 1px solid rgba(202, 213, 233, 0.14);
        border-radius: 18px;
        background: rgba(20, 28, 41, 0.88);
        color: #c0cad8;
        box-shadow: 0 14px 34px rgba(3, 8, 18, 0.16);
        backdrop-filter: blur(20px) saturate(130%);
        font-size: 13px;
        font-weight: 700;
        scrollbar-width: none;
    }

    .landing-page .mobile-section-nav::-webkit-scrollbar {
        display: none;
    }

    .landing-page .mobile-section-nav a {
        display: inline-flex;
        min-height: 44px;
        flex: 0 0 auto;
        align-items: center;
    }

    .landing-page main section[id] {
        scroll-margin-top: 126px;
    }

    .landing-page .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .feature-card,
    .landing-page .feature-card-primary,
    .landing-page .feature-card:last-child {
        min-height: 340px;
        border-right: 0;
        border-bottom: 1px solid rgba(202, 213, 233, 0.14);
        border-radius: 24px;
    }

    .landing-page .feature-card-top {
        margin-bottom: 42px;
    }

    .server-page .settings-shell {
        grid-template-columns: 1fr;
    }

    .server-page .settings-sidebar {
        position: static;
    }

    .server-page .category-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .server-page .sidebar-help {
        display: none;
    }
}

@media (max-width: 700px) {
    .landing-page .wrap,
    .dashboard-page .wrap {
        padding-inline: 20px;
    }

    .landing-page .header-inner,
    .landing-page .site-header .wrap,
    .dashboard-page .header-inner,
    .dashboard-page .site-header .wrap {
        min-height: 66px;
    }

    .landing-page .site-header.is-scrolled {
        top: 8px;
    }

    .landing-page .site-header {
        padding-inline: 10px;
    }

    .landing-page .header-inner,
    .landing-page .site-header .wrap {
        width: 100%;
        padding-inline: 12px;
        border-radius: 20px;
    }

    .landing-page .brand,
    .dashboard-page .brand {
        font-size: 18px;
    }

    .landing-page .brand-mark,
    .dashboard-page .brand-mark {
        width: 34px;
        height: 34px;
    }

    .landing-page .header-actions .btn {
        min-height: 42px;
        padding-inline: 13px;
        font-size: 13px;
    }

    .landing-page .mobile-section-nav {
        gap: 22px;
        width: 100%;
        padding-inline: 16px;
        border-radius: 16px;
    }

    .landing-page .hero {
        padding-block: 56px 64px;
    }

    .landing-page .hero h1 {
        font-size: clamp(36px, 10vw, 43px);
        line-height: 1.11;
    }

    .landing-page .hero h1 br {
        display: none;
    }

    .landing-page .hero-lede {
        font-size: 16px;
    }

    .landing-page .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .landing-page .hero-dashboard-preview {
        gap: 28px;
        margin-top: 40px;
        padding: 28px 24px;
        border-radius: 20px;
    }

    .landing-page .hero-preview-copy > strong {
        font-size: 30px;
    }

    .landing-page .feature-section,
    .landing-page .workflow-section,
    .landing-page .commands-section,
    .landing-page .cta-section {
        padding-block: 64px;
    }

    .landing-page .section-heading h2 {
        font-size: 36px;
    }

    .landing-page .command-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .feature-card,
    .landing-page .feature-card-primary {
        padding: 28px;
    }

    .landing-page .workflow-steps li {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .landing-page .workflow-steps li > span {
        width: 50px;
        height: 50px;
    }

    .landing-page .workflow-steps li:not(:last-child)::after {
        top: 49px;
        left: 24px;
    }

    .landing-page .cta-panel {
        padding: 36px 24px;
    }

    .dashboard-page .dashboard-main {
        padding-top: 38px;
        padding-bottom: 68px;
    }

    .dashboard-page .page-hero {
        gap: 24px;
        margin-bottom: 32px;
    }

    .dashboard-page .page-hero h1 {
        font-size: 40px;
    }

    .dashboard-page .page-hero p {
        font-size: 15px;
    }

    .dashboard-page .dashboard-summary {
        grid-template-columns: 1fr;
    }

    .dashboard-page .summary-card {
        min-height: 130px;
        padding: 23px 2px;
        border-right: 0;
        border-bottom: 1px solid rgba(221, 229, 242, 0.12);
    }

    .dashboard-page .summary-card:last-child {
        border-bottom: 0;
    }

    .dashboard-page .summary-card strong {
        font-size: 38px;
    }

    .dashboard-page .guild-toolbar {
        gap: 14px;
    }

    .dashboard-page .guild-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-page .guild-card {
        min-height: 250px;
        padding: 22px;
    }

    .server-page .server-head-note {
        margin-left: 0;
    }

    .server-page .server-overview {
        padding-block: 30px;
    }

    .server-page .overview-metrics {
        grid-template-columns: 1fr;
    }

    .server-page .overview-metric {
        min-height: 104px;
        border-right: 0;
        border-bottom: 1px solid rgba(221, 229, 242, 0.11);
    }

    .server-page .overview-metric:last-child {
        border-bottom: 0;
    }

    .server-page .attention-item {
        grid-template-columns: auto 1fr;
    }

    .server-page .attention-action {
        grid-column: 2;
    }

    .server-page .category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .server-page .settings-panel-head,
    .server-page .settings-policy,
    .server-page .setting-row {
        padding-inline: 20px;
    }

    .server-page .setting-control,
    .server-page .setting-control select,
    .server-page .multi-toggle-list {
        width: 100%;
        max-width: none;
    }

    .server-page .toggle,
    .server-page .color-input {
        justify-self: start;
    }
}

@media (max-width: 440px) {
    .landing-page .hero h1 {
        font-size: 38px;
    }

    .landing-page .hero-dashboard-preview {
        padding: 24px 18px;
    }

    .landing-page .hero-preview-copy > strong {
        font-size: 27px;
    }

    .landing-page .status-demo-row {
        grid-template-columns: auto 1fr;
    }

    .landing-page .status-demo-row b {
        grid-column: 2;
        justify-self: start;
    }

    .dashboard-page .filter-group {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .dashboard-page .filter-button {
        justify-content: center;
        padding-inline: 6px;
    }

    .dashboard-page .guild-card-action {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-page .guild-card-action p {
        max-width: none;
    }

    .server-page .server-head .guild-icon,
    .server-page .server-head .guild-icon-fallback {
        width: 64px;
        height: 64px;
        border-radius: 17px;
    }

    .server-page .server-title h1 {
        font-size: 34px;
    }

    .server-page .category-list {
        grid-template-columns: 1fr;
    }

    .server-page .settings-panel-head {
        flex-direction: column;
    }
}

/* Codex식 제품 무대: 다크 흐름 사이에서 실제 작동 화면을 빛으로 분리한다. */

.landing-page .hero-pattern {
    background:
        radial-gradient(
            ellipse 52% 64% at var(--pattern-x) var(--pattern-y),
            rgb(70 88 148 / 0.34) 0%,
            rgb(36 44 73 / 0.18) 42%,
            transparent 73%
        ),
        radial-gradient(ellipse 34% 46% at 18% 12%, rgb(111 123 190 / 0.14), transparent 76%),
        linear-gradient(130deg, #111319 0%, #191c27 50%, #12141b 100%);
}

.landing-page .hero-pattern::before {
    z-index: 1;
}

.landing-page .hero-pattern::after {
    position: absolute;
    z-index: 0;
    inset: -18%;
    pointer-events: none;
    background:
        radial-gradient(ellipse 26% 34% at 34% 24%, rgb(177 191 255 / 0.11), transparent 74%),
        radial-gradient(ellipse 30% 38% at 78% 38%, rgb(106 125 219 / 0.12), transparent 76%);
    content: '';
    filter: blur(38px);
    transform: translate3d(
        calc(0px - var(--pattern-shift-x)),
        calc(0px - var(--pattern-shift-y)),
        0
    );
}

.landing-page .hero-pattern > span {
    z-index: 2;
}

.landing-page .demo-story-intro {
    position: relative;
    overflow: hidden;
    padding-block: clamp(124px, 13vw, 176px);
    border-top: 1px solid #2b2d35;
    background:
        radial-gradient(circle at 50% 120%, rgb(95 113 193 / 0.16), transparent 42%), #090a0d;
    color: #f5f6f9;
    text-align: center;
}

.landing-page .demo-story-intro::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgb(120 162 255 / 0.08), transparent);
    opacity: 0.5;
    content: '';
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 48%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 48%, transparent);
}

.landing-page .demo-story-intro .wrap {
    position: relative;
    z-index: 1;
}

.landing-page .demo-story-intro h2 {
    max-width: 1040px;
    margin: 22px auto 0;
    color: #f3f4f8;
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 820;
    letter-spacing: -0.063em;
    line-height: 1.04;
}

.landing-page .demo-story-intro h2 span {
    background: linear-gradient(105deg, #f4f5f8 10%, #dbe3ff 56%, #839fff 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .demo-story-intro p {
    max-width: 650px;
    margin: 30px auto 0;
    color: #a3a6b0;
    font-size: 16px;
    line-height: 1.78;
}

.landing-page .protection-demo-section,
.landing-page .protection-demo-section-judge,
.landing-page .protection-demo-section-spam {
    padding-block: clamp(112px, 11vw, 154px);
    background: #090a0d;
}

.landing-page .protection-demo-section-spam {
    border-top-color: #24262d;
    background: #0c0d11;
}

.landing-page .protection-demo-layout {
    grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.58fr);
    gap: clamp(42px, 4vw, 56px);
}

.landing-page .protection-demo-figure {
    padding: clamp(18px, 2vw, 24px);
    overflow: hidden;
    border: 1px solid rgb(219 226 255 / 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 12%, rgb(232 237 255 / 0.82), transparent 30%),
        radial-gradient(circle at 84% 20%, rgb(151 169 238 / 0.74), transparent 36%),
        linear-gradient(135deg, #7182c7 0%, #b6c4f1 48%, #59649d 100%);
    box-shadow:
        0 34px 100px rgb(0 0 0 / 0.34),
        0 0 80px rgb(92 114 207 / 0.1);
}

.landing-page .protection-demo-section-spam .protection-demo-figure {
    background:
        radial-gradient(circle at 76% 14%, rgb(235 229 255 / 0.8), transparent 31%),
        radial-gradient(circle at 16% 82%, rgb(123 145 231 / 0.72), transparent 36%),
        linear-gradient(140deg, #596ab2 0%, #b9c4ed 48%, #6a609b 100%);
}

.landing-page .protection-demo-frame {
    border-color: rgb(255 255 255 / 0.18);
    border-radius: 15px;
    background: #17181d;
    box-shadow: 0 22px 58px rgb(16 19 31 / 0.36);
}

.landing-page .protection-demo-figure figcaption {
    margin-top: 13px;
    color: rgb(18 22 36 / 0.72);
    font-size: 11px;
    font-weight: 680;
    text-align: left;
}

.landing-page .protection-demo-copy h2 {
    color: #f7f8fb;
    font-size: clamp(40px, 4.25vw, 54px);
}

.landing-page .protection-demo-copy > p {
    color: #adb0bb;
}

.landing-page .cta-section {
    padding-block: clamp(110px, 11vw, 150px);
    background: #090a0d;
}

.landing-page .cta-panel {
    min-height: 390px;
    align-items: center;
    padding: clamp(48px, 7vw, 82px);
    border-color: rgb(255 255 255 / 0.32);
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 8%, rgb(246 247 255 / 0.78), transparent 34%),
        radial-gradient(circle at 86% 78%, rgb(94 114 204 / 0.38), transparent 42%),
        linear-gradient(135deg, #bcc9f2 0%, #8fa3e5 48%, #6d78ba 100%);
    color: #10131c;
    box-shadow: 0 36px 100px rgb(0 0 0 / 0.26);
}

.landing-page .cta-panel .section-kicker {
    color: #28478d;
}

.landing-page .cta-panel h2 {
    color: #10131c;
}

.landing-page .cta-panel p {
    color: rgb(16 19 28 / 0.68);
}

.landing-page .cta-panel .btn-primary {
    border-color: #10131c;
    background: #10131c;
    color: #ffffff;
}

.landing-page .cta-panel .btn-primary:hover {
    border-color: #272c3a;
    background: #272c3a;
    color: #ffffff;
}

.landing-page .cta-panel .btn-secondary {
    border-color: rgb(16 19 28 / 0.34);
    background: rgb(255 255 255 / 0.12);
    color: #10131c;
}

.landing-page .cta-panel .btn-secondary:hover {
    border-color: rgb(16 19 28 / 0.58);
    background: rgb(255 255 255 / 0.24);
    color: #10131c;
}

@media (min-width: 861px) {
    .landing-page .protection-demo-section-judge .protection-demo-layout {
        grid-template-columns: minmax(0, 1.58fr) minmax(310px, 0.72fr);
    }
}

@media (max-width: 860px) {
    .landing-page .protection-demo-layout,
    .landing-page .protection-demo-section-judge .protection-demo-layout {
        grid-template-columns: 1fr;
    }

    .landing-page .protection-demo-figure {
        padding: 16px;
        border-radius: 20px;
    }
}

@media (max-width: 700px) {
    .landing-page .demo-story-intro {
        padding-block: 94px;
    }

    .landing-page .demo-story-intro h2 {
        font-size: 44px;
        line-height: 1.07;
    }

    .landing-page .demo-story-intro p {
        font-size: 15px;
    }

    .landing-page .protection-demo-section,
    .landing-page .protection-demo-section-judge,
    .landing-page .protection-demo-section-spam {
        padding-block: 88px;
    }

    .landing-page .protection-demo-figure {
        padding: 10px;
        border-radius: 17px;
    }

    .landing-page .protection-demo-frame {
        border-radius: 11px;
    }

    .landing-page .protection-demo-figure figcaption {
        padding-inline: 3px;
        margin-top: 10px;
    }

    .landing-page .cta-panel {
        min-height: 0;
        padding: 48px 26px;
        border-radius: 20px;
    }
}

@media (max-width: 440px) {
    .landing-page .demo-story-intro h2 {
        font-size: 39px;
    }
}

/* 실제 Discord 작동 화면 */

.landing-page .protection-demo-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 108px;
    border-top: 1px solid rgba(151, 170, 213, 0.1);
    background:
        radial-gradient(circle at 84% 48%, rgba(82, 111, 222, 0.18), transparent 34rem),
        radial-gradient(circle at 10% 12%, rgba(113, 76, 190, 0.1), transparent 28rem),
        linear-gradient(180deg, #0d1626 0%, #141823 100%);
    color: #f7f9fc;
}

.landing-page .protection-demo-section::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -16rem;
    width: 42rem;
    height: 42rem;
    border: 1px solid rgba(132, 158, 244, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 7rem rgba(79, 105, 194, 0.025),
        0 0 0 14rem rgba(79, 105, 194, 0.018);
    transform: translateY(-50%);
    content: '';
}

.landing-page .protection-demo-section-judge {
    background:
        radial-gradient(circle at 16% 52%, rgba(111, 84, 210, 0.16), transparent 34rem),
        radial-gradient(circle at 88% 10%, rgba(70, 102, 207, 0.12), transparent 28rem),
        linear-gradient(180deg, #141823 0%, #0d1626 100%);
}

.landing-page .protection-demo-section-judge::before {
    right: auto;
    left: -16rem;
}

.landing-page .protection-demo-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
    align-items: center;
    gap: clamp(54px, 7vw, 96px);
}

.landing-page .protection-demo-copy {
    max-width: 440px;
}

.landing-page .protection-demo-section .section-kicker {
    color: #9eb6ff;
}

.landing-page .protection-demo-copy h2 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(42px, 4.5vw, 60px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.08;
    word-break: keep-all;
}

.landing-page .protection-demo-copy > p {
    margin: 24px 0 0;
    color: #c4cedc;
    font-size: 16px;
    font-weight: 560;
    line-height: 1.8;
    word-break: keep-all;
}

.landing-page .protection-demo-flow {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.landing-page .protection-demo-flow li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(157, 179, 230, 0.13);
    border-radius: 15px;
    background: rgba(23, 33, 51, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.landing-page .protection-demo-flow li > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(145, 169, 244, 0.25);
    border-radius: 12px;
    background: rgba(91, 115, 203, 0.13);
    color: #aebeff;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
}

.landing-page .protection-demo-flow strong,
.landing-page .protection-demo-flow small {
    display: block;
}

.landing-page .protection-demo-flow strong {
    color: #f7f9fc;
    font-size: 14px;
}

.landing-page .protection-demo-flow small {
    margin-top: 3px;
    color: #9eabba;
    font-size: 12px;
    line-height: 1.55;
}

.landing-page .protection-demo-figure {
    min-width: 0;
    margin: 0;
}

.landing-page .protection-demo-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(179, 195, 236, 0.2);
    border-radius: 25px;
    background: #0b0d12;
    box-shadow:
        0 42px 90px rgba(3, 7, 17, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}

.landing-page .protection-demo-frame::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    content: '';
}

.landing-page .protection-demo-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 44px;
    padding-inline: 17px;
    border-bottom: 1px solid rgba(208, 217, 237, 0.09);
    background: #11151d;
    color: #a8b2c1;
    font-size: 11px;
}

.landing-page .protection-demo-bar > strong {
    color: #dce3ed;
    font-size: 11px;
    letter-spacing: -0.01em;
}

.landing-page .protection-demo-bar > span:last-child {
    justify-self: end;
}

.landing-page .protection-demo-dots {
    display: flex;
    gap: 6px;
}

.landing-page .protection-demo-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4a5260;
}

.landing-page .protection-demo-dots i:first-child {
    background: #ef7185;
}

.landing-page .protection-demo-dots i:nth-child(2) {
    background: #e8b85f;
}

.landing-page .protection-demo-dots i:last-child {
    background: #6ac99d;
}

.landing-page .protection-demo-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    background: #0b0d12;
    object-fit: cover;
}

.landing-page .protection-demo-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(207, 218, 241, 0.16);
    border-radius: 999px;
    background: rgba(10, 14, 21, 0.78);
    color: #d7dfeb;
    box-shadow: 0 8px 22px rgba(2, 6, 14, 0.22);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 750;
}

.landing-page .protection-demo-figure figcaption {
    margin-top: 14px;
    color: #939eae;
    font-size: 12px;
    text-align: right;
}

@media (max-width: 1080px) {
    .landing-page .protection-demo-layout {
        grid-template-columns: minmax(280px, 0.78fr) minmax(500px, 1.22fr);
        gap: 42px;
    }
}

@media (min-width: 861px) {
    .landing-page .protection-demo-section-judge .protection-demo-copy {
        grid-column: 2;
    }

    .landing-page .protection-demo-section-judge .protection-demo-figure {
        grid-row: 1;
        grid-column: 1;
    }
}

@media (max-width: 860px) {
    .landing-page .protection-demo-section {
        padding-block: 88px;
    }

    .landing-page .protection-demo-layout {
        grid-template-columns: 1fr;
    }

    .landing-page .protection-demo-copy {
        max-width: 700px;
    }

    .landing-page .protection-demo-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-page .protection-demo-flow li {
        grid-template-columns: 1fr;
        align-content: start;
    }
}

@media (max-width: 700px) {
    .landing-page .protection-demo-section {
        padding-block: 72px;
    }

    .landing-page .protection-demo-copy h2 {
        font-size: 40px;
    }

    .landing-page .protection-demo-flow {
        grid-template-columns: 1fr;
    }

    .landing-page .protection-demo-flow li {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .landing-page .protection-demo-frame {
        border-radius: 19px;
    }

    .landing-page .protection-demo-bar {
        grid-template-columns: 1fr auto;
    }

    .landing-page .protection-demo-bar > strong {
        display: none;
    }
}

@media (max-width: 440px) {
    .landing-page .protection-demo-copy h2 {
        font-size: 36px;
    }

    .landing-page .protection-demo-copy > p {
        font-size: 15px;
    }

    .landing-page .protection-demo-badge {
        right: 10px;
        bottom: 10px;
    }

    .landing-page .protection-demo-figure figcaption {
        text-align: left;
    }
}

/* 랜딩 편집 디자인: 실제 화면과 제품 문장을 중심으로 절제한다. */

.landing-page {
    --editorial-accent: #f06a49;
    --editorial-bg: #0d0e10;
    --editorial-panel: #121316;
    --editorial-line: #2b2d31;
    --editorial-paper: #e9e7e0;
    --wrap: 1180px;
    background: var(--editorial-bg);
    color: #f3f1eb;
}

.landing-page .site-header,
.landing-page .site-header.is-scrolled {
    position: sticky;
    z-index: 50;
    top: 0;
    padding-inline: 0;
    border: 0;
    border-bottom: 1px solid var(--editorial-line);
    background: rgba(13, 14, 16, 0.94);
    box-shadow: none;
    animation: none;
    backdrop-filter: blur(14px);
}

.landing-page .header-inner,
.landing-page .site-header .wrap,
.landing-page .site-header.is-scrolled .header-inner,
.landing-page .site-header.is-scrolled .wrap {
    min-height: 68px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #f3f1eb;
    box-shadow: none;
    backdrop-filter: none;
}

.landing-page .brand {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.landing-page .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.landing-page .site-nav,
.landing-page .site-header.is-scrolled .site-nav {
    color: #aaa9a4;
    font-size: 13px;
    font-weight: 650;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a[aria-current='page'],
.landing-page .site-header.is-scrolled .site-nav a:hover,
.landing-page .site-header.is-scrolled .site-nav a[aria-current='page'] {
    color: #ffffff;
}

.landing-page .site-nav a::after {
    bottom: 1px;
    height: 1px;
    background: var(--editorial-accent);
}

.landing-page .btn {
    min-height: 46px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 760;
}

.landing-page .btn-primary,
.landing-page .site-header .btn-primary,
.landing-page .site-header:not(.is-scrolled) .btn-primary,
.landing-page .site-header.is-scrolled .btn-primary {
    border-color: var(--editorial-accent);
    background: var(--editorial-accent);
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
}

.landing-page .btn-primary:hover,
.landing-page .site-header .btn-primary:hover {
    border-color: #ff8264;
    background: #ff7655;
    box-shadow: none;
    transform: translateY(-1px);
}

.landing-page .btn-secondary {
    border-color: #4a4b4f;
    background: transparent;
    color: #e5e2da;
}

.landing-page .btn-secondary:hover {
    border-color: #8c8c89;
    background: #17181b;
    color: #ffffff;
}

.landing-page .section-kicker,
.landing-page .eyebrow,
.landing-page .feature-section .section-kicker,
.landing-page .workflow-section .section-kicker,
.landing-page .commands-section .section-kicker {
    color: var(--editorial-accent);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.13em;
}

.landing-page .hero .eyebrow,
.landing-page .protection-demo-section .section-kicker {
    color: var(--editorial-accent);
}

.landing-page .hero {
    overflow: visible;
    padding-block: clamp(92px, 10vw, 132px) 84px;
}

.landing-page .hero::before {
    display: none;
}

.landing-page .hero-copy {
    max-width: 980px;
}

.landing-page .hero h1 {
    max-width: 980px;
    margin-top: 20px;
    color: #f4f1e9;
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 820;
    letter-spacing: -0.06em;
    line-height: 1.06;
}

.landing-page .hero h1 .accent,
html.motion-ready .landing-page .hero h1 .accent {
    background: none;
    color: #f4f1e9;
    animation: none;
    -webkit-text-fill-color: currentColor;
}

.landing-page .hero-intro {
    grid-template-columns: minmax(0, 600px) auto;
    margin-top: 42px;
}

.landing-page .hero-lede {
    color: #b6b3ac;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
}

.landing-page .hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 18px 0;
    margin: 58px 0 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
    color: #8f8e89;
    font-size: 12px;
    list-style: none;
}

.landing-page .hero-trust-line li {
    display: flex;
    align-items: center;
}

.landing-page .hero-trust-line li:not(:last-child)::after {
    width: 1px;
    height: 12px;
    margin-inline: 18px;
    background: #393a3e;
    content: '';
}

.landing-page .hero-dashboard-preview {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 72px;
    margin-top: 0;
    padding: 46px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: color 0.18s ease;
}

.landing-page .hero-dashboard-preview:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.landing-page .hero-dashboard-preview::before {
    display: none;
}

.landing-page .hero-preview-copy > strong {
    max-width: 650px;
    margin-top: 13px;
    color: #f3f1eb;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 760;
    line-height: 1.18;
}

.landing-page .hero-preview-copy > p {
    margin-top: 14px;
    color: #9e9d98;
    font-size: 14px;
    line-height: 1.7;
}

.landing-page .demo-preview-cta {
    margin-top: 20px;
    color: var(--editorial-accent);
    font-size: 13px;
}

.landing-page .hero-demo-facts {
    display: grid;
    min-width: 260px;
    border-top: 1px solid #3b3c40;
}

.landing-page .hero-demo-facts span {
    padding: 13px 0;
    border-bottom: 1px solid #3b3c40;
    color: #bbb9b2;
    font-size: 13px;
    text-align: right;
}

.landing-page .protection-demo-section,
.landing-page .protection-demo-section-judge {
    padding-block: 104px;
    border-top: 1px solid var(--editorial-line);
    background: var(--editorial-bg);
}

.landing-page .protection-demo-section-spam {
    background: #111214;
}

.landing-page .protection-demo-section::before,
.landing-page .protection-demo-section-judge::before {
    display: none;
}

.landing-page .protection-demo-layout {
    grid-template-columns: minmax(290px, 0.7fr) minmax(580px, 1.3fr);
    gap: clamp(54px, 7vw, 92px);
}

@media (min-width: 861px) {
    .landing-page .protection-demo-section-judge .protection-demo-layout {
        grid-template-columns: minmax(580px, 1.3fr) minmax(290px, 0.7fr);
    }
}

.landing-page .protection-demo-copy h2 {
    color: #f3f1eb;
    font-size: clamp(38px, 4.2vw, 52px);
    font-weight: 780;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.landing-page .protection-demo-copy > p {
    color: #aaa8a2;
    font-size: 15px;
    font-weight: 480;
}

.landing-page .protection-demo-flow {
    gap: 0;
    border-bottom: 1px solid var(--editorial-line);
}

.landing-page .protection-demo-flow li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
    border: 0;
    border-top: 1px solid var(--editorial-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.landing-page .protection-demo-flow li > span {
    display: block;
    width: auto;
    height: auto;
    padding-top: 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--editorial-accent);
    font-size: 10px;
}

.landing-page .protection-demo-flow strong {
    color: #e8e5de;
    font-size: 14px;
    font-weight: 680;
}

.landing-page .protection-demo-flow small {
    color: #858580;
}

.landing-page .protection-demo-frame {
    border-color: #34363a;
    border-radius: 5px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.landing-page .protection-demo-frame::after {
    display: none;
}

.landing-page .protection-demo-bar {
    min-height: 40px;
    border-bottom-color: #2b2d31;
    background: #17191d;
}

.landing-page .protection-demo-dots i {
    width: 7px;
    height: 7px;
    background: #55575c;
}

.landing-page .protection-demo-dots i:first-child,
.landing-page .protection-demo-dots i:nth-child(2),
.landing-page .protection-demo-dots i:last-child {
    background: #55575c;
}

.landing-page .protection-demo-badge {
    border-color: #4a4b4f;
    border-radius: 2px;
    background: rgba(13, 14, 16, 0.88);
    color: #cac7c0;
    box-shadow: none;
    backdrop-filter: none;
}

.landing-page .protection-demo-figure figcaption {
    color: #7f7f7b;
}

.landing-page .feature-section {
    padding-block: 108px;
    color: #171717;
    background: var(--editorial-paper);
}

.landing-page .feature-section .section-kicker {
    color: #bd4d32;
}

.landing-page .feature-section .section-heading h2 {
    color: #171717;
    font-weight: 780;
}

.landing-page .feature-section .section-heading > p {
    color: #555550;
    font-weight: 500;
}

.landing-page .feature-card-grid {
    gap: 0;
    border-top: 1px solid #aaa79f;
    border-bottom: 1px solid #aaa79f;
}

.landing-page .feature-card,
.landing-page .feature-card-primary {
    min-height: 270px;
    padding: 28px 30px 32px;
    border: 0;
    border-right: 1px solid #aaa79f;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.landing-page .feature-card:last-child {
    border-right: 0;
}

.landing-page .feature-card::before,
.landing-page .feature-card::after {
    display: none;
}

.landing-page .feature-card:hover {
    border-color: #aaa79f;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    transform: none;
}

.landing-page .feature-card-top {
    margin-bottom: 92px;
}

.landing-page .feature-number {
    color: #817f79;
}

.landing-page .feature-card h3 {
    color: #171717;
    font-size: 22px;
    font-weight: 750;
}

.landing-page .feature-card p,
.landing-page .feature-card ul {
    color: #5e5b55;
    font-weight: 500;
}

.landing-page .workflow-section {
    padding-block: 108px;
    background: #111214;
}

.landing-page .workflow-copy h2,
.landing-page .workflow-steps strong {
    color: #f3f1eb;
}

.landing-page .workflow-copy > p,
.landing-page .workflow-steps p {
    color: #9b9993;
}

.landing-page .workflow-steps {
    border-bottom: 1px solid var(--editorial-line);
}

.landing-page .workflow-steps li {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 23px 0;
    border-top: 1px solid var(--editorial-line);
}

.landing-page .workflow-steps li:not(:last-child)::after {
    display: none;
}

.landing-page .workflow-steps li > span {
    display: block;
    width: auto;
    height: auto;
    padding-top: 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--editorial-accent);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
}

.landing-page .workflow-steps strong {
    font-size: 18px;
}

.landing-page .commands-section {
    padding-block: 108px;
    border-top: 1px solid var(--editorial-line);
    background: var(--editorial-bg);
}

.landing-page .command-card,
.landing-page .command-card:nth-child(3n + 2),
.landing-page .command-card:nth-child(3n) {
    min-height: 158px;
    border-color: #303236;
    border-radius: 4px;
    background: var(--editorial-panel);
    box-shadow: none;
}

.landing-page .command-card:hover {
    border-color: #6d6e70;
    box-shadow: none;
    transform: none;
}

.landing-page .cmd {
    color: #f1886d;
}

.landing-page .command-card .desc {
    color: #9e9c96;
}

.landing-page .aud {
    border: 1px solid #3d3f43;
    border-radius: 2px;
    background: transparent;
    color: #aaa8a2;
}

.landing-page .cta-section {
    padding-block: 104px;
    border-top: 1px solid var(--editorial-line);
    background: #0a0b0c;
}

.landing-page .cta-panel {
    padding: 54px 58px;
    border-radius: 4px;
    background: var(--editorial-accent);
    box-shadow: none;
}

.landing-page .cta-panel .section-kicker,
.landing-page .cta-panel h2,
.landing-page .cta-panel p {
    color: #20110d;
}

.landing-page .cta-panel .btn-primary {
    border-color: #17110f;
    background: #17110f;
    color: #ffffff;
}

.landing-page .cta-panel .btn-secondary {
    border-color: rgba(32, 17, 13, 0.5);
    background: transparent;
    color: #20110d;
}

.landing-page .site-footer {
    border-top-color: #25262a;
    background: #090a0b;
}

.landing-page .footer-brand strong {
    color: #e8e5de;
}

@media (prefers-reduced-motion: no-preference) {
    html.motion-ready .landing-page [data-reveal] {
        filter: none;
        transform: translate3d(0, 12px, 0);
        transition:
            opacity 0.45s ease,
            transform 0.45s ease;
    }
}

@media (max-width: 860px) {
    .landing-page .mobile-section-nav {
        width: 100%;
        min-height: 42px;
        gap: 24px;
        margin: 0;
        padding-inline: 20px;
        border: 0;
        border-top: 1px solid var(--editorial-line);
        border-radius: 0;
        background: #0d0e10;
        box-shadow: none;
        backdrop-filter: none;
    }

    .landing-page .hero-intro,
    .landing-page .hero-dashboard-preview {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-actions {
        justify-content: flex-start;
    }

    .landing-page .hero-dashboard-preview {
        gap: 34px;
    }

    .landing-page .hero-demo-facts {
        min-width: 0;
    }

    .landing-page .hero-demo-facts span {
        text-align: left;
    }

    .landing-page .protection-demo-section-judge .protection-demo-copy,
    .landing-page .protection-demo-section-judge .protection-demo-figure {
        grid-row: auto;
        grid-column: auto;
    }

    .landing-page .protection-demo-flow {
        grid-template-columns: 1fr;
    }

    .landing-page .protection-demo-flow li {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .landing-page .feature-card,
    .landing-page .feature-card-primary,
    .landing-page .feature-card:last-child {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid #aaa79f;
        border-radius: 0;
    }

    .landing-page .feature-card:last-child {
        border-bottom: 0;
    }

    .landing-page .feature-card-top {
        margin-bottom: 58px;
    }
}

@media (max-width: 700px) {
    .landing-page .site-header,
    .landing-page .site-header.is-scrolled {
        padding-inline: 0;
    }

    .landing-page .header-inner,
    .landing-page .site-header .wrap,
    .landing-page .site-header.is-scrolled .header-inner,
    .landing-page .site-header.is-scrolled .wrap {
        padding-inline: 20px;
        border-radius: 0;
    }

    .landing-page .hero {
        padding-block: 76px 64px;
    }

    .landing-page .hero h1 {
        font-size: 43px;
    }

    .landing-page .hero-trust-line {
        display: grid;
        gap: 8px;
    }

    .landing-page .hero-trust-line li:not(:last-child)::after {
        display: none;
    }

    .landing-page .protection-demo-section,
    .landing-page .protection-demo-section-judge,
    .landing-page .feature-section,
    .landing-page .workflow-section,
    .landing-page .commands-section,
    .landing-page .cta-section {
        padding-block: 76px;
    }

    .landing-page .protection-demo-frame {
        border-radius: 4px;
    }

    .landing-page .cta-panel {
        padding: 38px 26px;
        border-radius: 4px;
    }
}

@media (max-width: 440px) {
    .landing-page .hero h1 {
        font-size: 38px;
    }

    .landing-page .protection-demo-copy h2 {
        font-size: 34px;
    }
}

/* 핵심 기능은 빈 표가 아니라 읽을 수 있는 제품 카드로 보여 준다. */

.landing-page .feature-section {
    color: #f3f1eb;
    background: #101113;
}

.landing-page .feature-section .section-kicker {
    color: var(--editorial-accent);
}

.landing-page .feature-section .section-heading h2 {
    color: #f3f1eb;
    font-size: clamp(36px, 4vw, 50px);
}

.landing-page .feature-section .section-heading > p {
    color: #a3a19b;
}

.landing-page .feature-card-grid {
    gap: 14px;
    border: 0;
}

.landing-page .feature-card,
.landing-page .feature-card-primary {
    min-height: 330px;
    padding: 28px;
    border: 1px solid #303236;
    border-top: 2px solid #4a4c51;
    border-radius: 7px;
    background: #17181b;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.landing-page .feature-card-primary {
    border-top-color: var(--editorial-accent);
}

.landing-page .feature-card:last-child {
    border-right: 1px solid #303236;
}

.landing-page .feature-card:hover {
    border-color: #5a5c61;
    border-top-color: var(--editorial-accent);
    background: #1b1c20;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.landing-page .feature-card-top {
    padding-bottom: 17px;
    margin-bottom: 44px;
    border-bottom: 1px solid #2d2f33;
}

.landing-page .feature-number {
    color: var(--editorial-accent);
    font-weight: 760;
}

.landing-page .feature-short-label {
    color: #8f8e89;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.landing-page .feature-card h3 {
    color: #f3f1eb;
    font-size: 22px;
}

.landing-page .feature-card p {
    color: #aaa8a2;
}

.landing-page .feature-card ul {
    gap: 7px;
    margin-top: 20px;
    color: #888883;
    font-size: 12px;
    line-height: 1.55;
}

.landing-page .feature-card li::before {
    color: #696a6e;
}

@media (max-width: 860px) {
    .landing-page .feature-card-grid {
        gap: 12px;
    }

    .landing-page .feature-card,
    .landing-page .feature-card-primary,
    .landing-page .feature-card:last-child {
        min-height: 0;
        border: 1px solid #303236;
        border-top: 2px solid #4a4c51;
        border-radius: 7px;
    }

    .landing-page .feature-card-primary {
        border-top-color: var(--editorial-accent);
    }
}

/* 히어로 배경은 외부 이미지 없이 CSS로 만든 반응형 보안 신호 패턴이다. */

.landing-page .hero {
    position: relative;
    isolation: isolate;
}

.landing-page .hero > :not(.hero-pattern) {
    position: relative;
    z-index: 1;
}

.landing-page .hero-pattern {
    --pattern-x: 76%;
    --pattern-y: 28%;
    --pattern-shift-x: 0px;
    --pattern-shift-y: 0px;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 58% 72% at var(--pattern-x) var(--pattern-y),
            rgb(38 63 84 / 0.42) 0%,
            rgb(21 34 47 / 0.2) 40%,
            transparent 72%
        ),
        radial-gradient(ellipse 42% 50% at 8% 14%, rgb(35 43 55 / 0.24), transparent 74%),
        linear-gradient(126deg, #090b0e 0%, #101620 52%, #0a0d12 100%);
    border-bottom: 1px solid rgb(112 132 151 / 0.1);
    transform: translateX(-50%);
}

.landing-page .hero-pattern > span {
    position: absolute;
    display: block;
    pointer-events: none;
}

.landing-page .hero-pattern-mesh {
    inset: -120px;
    background:
        repeating-linear-gradient(
            60deg,
            transparent 0 47px,
            rgb(146 170 192 / 0.075) 48px,
            rgb(146 170 192 / 0.075) 49px,
            transparent 50px 96px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent 0 47px,
            rgb(146 170 192 / 0.075) 48px,
            rgb(146 170 192 / 0.075) 49px,
            transparent 50px 96px
        ),
        radial-gradient(circle, rgb(177 196 213 / 0.2) 0 1px, transparent 1.6px);
    background-position:
        var(--pattern-shift-x) var(--pattern-shift-y),
        calc(0px - var(--pattern-shift-x)) var(--pattern-shift-y),
        var(--pattern-shift-x) var(--pattern-shift-y);
    background-size:
        auto,
        auto,
        48px 48px;
    opacity: 0.54;
    transform: translate3d(
            calc(0px - var(--pattern-shift-x)),
            calc(0px - var(--pattern-shift-y)),
            0
        )
        rotate(-2deg) scale(1.04);
    transition: opacity 0.28s ease;
    -webkit-mask-image: radial-gradient(
        ellipse 72% 84% at var(--pattern-x) var(--pattern-y),
        #000 2%,
        rgb(0 0 0 / 0.84) 38%,
        transparent 82%
    );
    mask-image: radial-gradient(
        ellipse 72% 84% at var(--pattern-x) var(--pattern-y),
        #000 2%,
        rgb(0 0 0 / 0.84) 38%,
        transparent 82%
    );
    will-change: transform, opacity;
}

.landing-page .hero-pattern-signal {
    inset: 0;
    background: repeating-radial-gradient(
        circle at var(--pattern-x) var(--pattern-y),
        transparent 0 54px,
        rgb(240 106 73 / 0.13) 55px,
        transparent 56px 110px
    );
    opacity: 0.34;
    transition: opacity 0.28s ease;
    -webkit-mask-image: radial-gradient(
        circle 390px at var(--pattern-x) var(--pattern-y),
        #000 0%,
        rgb(0 0 0 / 0.76) 48%,
        transparent 100%
    );
    mask-image: radial-gradient(
        circle 390px at var(--pattern-x) var(--pattern-y),
        #000 0%,
        rgb(0 0 0 / 0.76) 48%,
        transparent 100%
    );
}

.landing-page .hero-pattern-trace {
    top: var(--pattern-y);
    left: var(--pattern-x);
    width: 7px;
    height: 7px;
    border: 1px solid rgb(255 145 116 / 0.86);
    border-radius: 50%;
    background: rgb(240 106 73 / 0.58);
    box-shadow:
        0 0 0 9px rgb(240 106 73 / 0.06),
        0 0 44px 18px rgb(240 106 73 / 0.09);
    opacity: 0.52;
    transform: translate(-50%, -50%);
    transition: opacity 0.28s ease;
}

.landing-page .hero-pattern.is-pointer-active .hero-pattern-mesh {
    opacity: 0.72;
}

.landing-page .hero-pattern.is-pointer-active .hero-pattern-signal {
    opacity: 0.7;
}

.landing-page .hero-pattern.is-pointer-active .hero-pattern-trace {
    opacity: 0.9;
}

.landing-page .hero-pattern-trace::before,
.landing-page .hero-pattern-trace::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(240 106 73 / 0.3), transparent);
    content: '';
    transform: translate(-50%, -50%);
}

.landing-page .hero-pattern-trace::before {
    width: 74px;
    height: 1px;
}

.landing-page .hero-pattern-trace::after {
    width: 1px;
    height: 74px;
    background: linear-gradient(transparent, rgb(240 106 73 / 0.3), transparent);
}

@media (max-width: 700px) {
    .landing-page .hero-pattern {
        --pattern-x: 78%;
        --pattern-y: 22%;
    }

    .landing-page .hero-pattern-mesh {
        opacity: 0.38;
    }

    .landing-page .hero-pattern-signal,
    .landing-page .hero-pattern-trace {
        opacity: 0.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-page .hero-pattern-mesh {
        transform: rotate(-2deg) scale(1.04);
        will-change: auto;
    }
}

/* 랜딩 리듬 재설계: 한 문장, 얇은 경계, 실제 화면이 중심인 다크 제품 페이지. */

.landing-page {
    --editorial-accent: #78a2ff;
    --editorial-bg: #15161c;
    --editorial-panel: #1b1c22;
    --editorial-panel-strong: #202129;
    --editorial-line: #2e3038;
    --editorial-paper: #f1f3f8;
    --wrap: 1180px;
    overflow-x: clip;
    background: var(--editorial-bg);
    color: var(--editorial-paper);
}

.landing-page::before {
    display: none;
}

.landing-page .site-header,
.landing-page .site-header.is-scrolled {
    top: 0;
    min-height: 68px;
    border-bottom: 1px solid rgb(255 255 255 / 0.075);
    background: rgb(21 22 28 / 0.86);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(125%);
}

.landing-page .header-inner,
.landing-page .site-header .wrap,
.landing-page .site-header.is-scrolled .header-inner,
.landing-page .site-header.is-scrolled .wrap {
    min-height: 68px;
    padding-inline: 28px;
}

.landing-page .brand {
    color: #f7f8fb;
    font-size: 18px;
    font-weight: 820;
}

.landing-page .brand-mark {
    width: 32px;
    height: 32px;
    border: 1px solid rgb(255 255 255 / 0.74);
    border-radius: 7px;
    box-shadow: none;
}

.landing-page .site-nav,
.landing-page .site-header.is-scrolled .site-nav {
    color: #9da0aa;
    font-size: 13px;
    font-weight: 680;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a[aria-current='page'],
.landing-page .site-header.is-scrolled .site-nav a:hover,
.landing-page .site-header.is-scrolled .site-nav a[aria-current='page'] {
    color: #f7f8fb;
}

.landing-page .site-nav a::after {
    background: var(--editorial-accent);
}

.landing-page .btn {
    min-height: 46px;
    padding-inline: 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 760;
}

.landing-page .btn-primary,
.landing-page .site-header .btn-primary,
.landing-page .site-header:not(.is-scrolled) .btn-primary,
.landing-page .site-header.is-scrolled .btn-primary {
    border-color: #78a2ff;
    background: #78a2ff;
    color: #0d1422;
    box-shadow: none;
}

.landing-page .btn-primary:hover,
.landing-page .site-header .btn-primary:hover {
    border-color: #93b5ff;
    background: #93b5ff;
    color: #09101d;
    box-shadow: 0 10px 28px rgb(74 119 221 / 0.18);
}

.landing-page .btn-secondary {
    border-color: #373942;
    background: rgb(25 26 32 / 0.64);
    color: #eceef4;
}

.landing-page .btn-secondary:hover {
    border-color: #5c606d;
    background: #202129;
    color: #ffffff;
}

.landing-page .section-kicker,
.landing-page .eyebrow,
.landing-page .feature-section .section-kicker,
.landing-page .workflow-section .section-kicker,
.landing-page .commands-section .section-kicker,
.landing-page .hero .eyebrow,
.landing-page .protection-demo-section .section-kicker {
    color: var(--editorial-accent);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.15em;
}

.landing-page .hero {
    display: block;
    min-height: 0;
    padding-block: clamp(112px, 11vw, 150px) 0;
    text-align: center;
}

.landing-page .hero-copy {
    max-width: 1040px;
    margin-inline: auto;
}

.landing-page .hero h1 {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #f4f5f8;
    font-size: clamp(58px, 6.4vw, 84px);
    font-weight: 850;
    letter-spacing: -0.065em;
    line-height: 1.03;
}

.landing-page .hero h1 .accent,
html.motion-ready .landing-page .hero h1 .accent {
    background: linear-gradient(106deg, #f4f5f8 8%, #dce5ff 54%, #78a2ff 100%);
    background-clip: text;
    color: transparent;
    animation: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .hero-intro {
    display: flex;
    max-width: 720px;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin: 30px auto 0;
}

.landing-page .hero-lede {
    max-width: 680px;
    margin: 0;
    color: #aeb1bb;
    font-size: 17px;
    line-height: 1.78;
    text-align: center;
}

.landing-page .hero-actions {
    justify-content: center;
    margin-top: 28px;
}

.landing-page .hero-trust-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    padding: 0;
    margin: clamp(94px, 10vw, 128px) 0 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
    color: #92959f;
    font-size: 12px;
}

.landing-page .hero-trust-line li {
    min-height: 62px;
    justify-content: center;
    padding: 16px 20px;
    text-align: center;
}

.landing-page .hero-trust-line li:not(:last-child) {
    border-right: 1px solid var(--editorial-line);
}

.landing-page .hero-trust-line li:not(:last-child)::after {
    display: none;
}

.landing-page .hero-dashboard-preview {
    grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.95fr);
    gap: 72px;
    align-items: center;
    margin: 0;
    padding: 42px 0 52px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.landing-page .hero-dashboard-preview:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.landing-page .hero-preview-copy > strong {
    max-width: 560px;
    margin-top: 12px;
    color: #f1f2f6;
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.landing-page .hero-preview-copy > p {
    margin-top: 13px;
    color: #9598a2;
    font-size: 14px;
}

.landing-page .demo-preview-cta {
    margin-top: 17px;
    color: var(--editorial-accent);
    font-size: 13px;
    font-weight: 760;
}

.landing-page .hero-demo-facts {
    display: grid;
    min-width: 0;
    overflow: hidden;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #343640;
    border-radius: 16px;
    background: rgb(29 30 37 / 0.82);
}

.landing-page .hero-demo-facts span {
    min-height: 92px;
    justify-content: center;
    padding: 22px 12px;
    border: 0;
    color: #b9bbc4;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.landing-page .hero-demo-facts span + span {
    border-left: 1px solid #343640;
}

.landing-page .hero-pattern {
    border-bottom-color: rgb(120 162 255 / 0.09);
    background:
        radial-gradient(
            ellipse 54% 68% at var(--pattern-x) var(--pattern-y),
            rgb(48 68 112 / 0.32) 0%,
            rgb(27 35 55 / 0.18) 42%,
            transparent 73%
        ),
        linear-gradient(130deg, #12141a 0%, #181b25 48%, #13151c 100%);
}

.landing-page .hero-pattern::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgb(152 174 222 / 0.17) 0 1px, transparent 1.35px);
    background-size: 28px 28px;
    content: '';
    -webkit-mask-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.64) 58%, transparent 94%);
    mask-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.64) 58%, transparent 94%);
}

.landing-page .hero-pattern-mesh {
    background:
        repeating-linear-gradient(
            60deg,
            transparent 0 47px,
            rgb(126 153 211 / 0.055) 48px,
            rgb(126 153 211 / 0.055) 49px,
            transparent 50px 96px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent 0 47px,
            rgb(126 153 211 / 0.055) 48px,
            rgb(126 153 211 / 0.055) 49px,
            transparent 50px 96px
        );
    opacity: 0.42;
}

.landing-page .hero-pattern.is-pointer-active .hero-pattern-mesh {
    opacity: 0.62;
}

.landing-page .hero-pattern-signal {
    background: repeating-radial-gradient(
        circle at var(--pattern-x) var(--pattern-y),
        transparent 0 54px,
        rgb(120 162 255 / 0.12) 55px,
        transparent 56px 110px
    );
    opacity: 0.28;
}

.landing-page .hero-pattern.is-pointer-active .hero-pattern-signal {
    opacity: 0.62;
}

.landing-page .hero-pattern-trace {
    border-color: rgb(151 182 255 / 0.9);
    background: rgb(120 162 255 / 0.65);
    box-shadow:
        0 0 0 9px rgb(120 162 255 / 0.06),
        0 0 44px 18px rgb(120 162 255 / 0.09);
}

.landing-page .hero-pattern-trace::before {
    background: linear-gradient(90deg, transparent, rgb(120 162 255 / 0.32), transparent);
}

.landing-page .hero-pattern-trace::after {
    background: linear-gradient(transparent, rgb(120 162 255 / 0.32), transparent);
}

.landing-page .protection-demo-section,
.landing-page .protection-demo-section-judge,
.landing-page .protection-demo-section-spam,
.landing-page .feature-section,
.landing-page .workflow-section,
.landing-page .commands-section,
.landing-page .cta-section {
    padding-block: clamp(104px, 10vw, 138px);
    border-top: 1px solid var(--editorial-line);
    background: #17181e;
    color: #f1f2f6;
}

.landing-page .protection-demo-section-spam,
.landing-page .workflow-section,
.landing-page .cta-section {
    background: #15161c;
}

.landing-page .protection-demo-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.42fr);
    gap: clamp(52px, 6vw, 78px);
    align-items: center;
}

.landing-page .protection-demo-copy h2 {
    max-width: 520px;
    margin-top: 16px;
    color: #f2f3f7;
    font-size: clamp(38px, 4.1vw, 50px);
    font-weight: 810;
    letter-spacing: -0.052em;
    line-height: 1.08;
}

.landing-page .protection-demo-copy > p {
    max-width: 510px;
    margin-top: 22px;
    color: #a7aab4;
    font-size: 16px;
    line-height: 1.78;
}

.landing-page .protection-demo-flow {
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid #30323a;
}

.landing-page .protection-demo-flow li {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 17px 0;
    border: 0;
    border-bottom: 1px solid #30323a;
    border-radius: 0;
    background: transparent;
}

.landing-page .protection-demo-flow li > span {
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--editorial-accent);
    font-size: 11px;
    font-weight: 800;
}

.landing-page .protection-demo-flow strong {
    color: #e9eaf0;
    font-size: 14px;
}

.landing-page .protection-demo-flow small {
    margin-top: 3px;
    color: #858993;
    font-size: 12px;
}

.landing-page .protection-demo-frame {
    overflow: hidden;
    border: 1px solid #383a45;
    border-radius: 18px;
    background: #1d1e25;
    box-shadow: 0 28px 74px rgb(0 0 0 / 0.26);
}

.landing-page .protection-demo-frame::after {
    border-color: rgb(120 162 255 / 0.1);
}

.landing-page .protection-demo-bar {
    min-height: 43px;
    border-bottom: 1px solid #32343d;
    background: #1d1e24;
    color: #a7aab4;
}

.landing-page .protection-demo-badge {
    border-color: rgb(120 162 255 / 0.26);
    background: rgb(22 28 43 / 0.88);
    color: #bfd0ff;
}

.landing-page .protection-demo-figure figcaption {
    color: #777b85;
}

.landing-page .feature-section {
    background: #17181e;
}

.landing-page .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 72px;
    align-items: end;
}

.landing-page .feature-section .section-heading h2,
.landing-page .commands-section .section-heading h2 {
    max-width: 700px;
    margin-top: 15px;
    color: #f2f3f7;
    font-size: clamp(40px, 4.5vw, 54px);
    font-weight: 810;
    letter-spacing: -0.052em;
    line-height: 1.08;
}

.landing-page .feature-section .section-heading > p,
.landing-page .commands-section .section-heading > p {
    color: #9fa2ac;
    font-size: 15px;
    line-height: 1.76;
}

.landing-page .feature-card-grid {
    gap: 16px;
    margin-top: 62px;
    border: 0;
}

.landing-page .feature-card,
.landing-page .feature-card-primary,
.landing-page .feature-card:last-child {
    min-height: 310px;
    padding: 28px;
    border: 1px solid #343640;
    border-radius: 16px;
    background: #1d1e24;
    box-shadow: none;
}

.landing-page .feature-card-primary {
    border-color: rgb(120 162 255 / 0.46);
}

.landing-page .feature-card:hover {
    border-color: #515462;
    background: #202128;
    box-shadow: 0 20px 48px rgb(0 0 0 / 0.16);
    transform: translateY(-3px);
}

.landing-page .feature-card-top {
    padding-bottom: 18px;
    margin-bottom: 38px;
    border-bottom: 1px solid #30323a;
}

.landing-page .feature-number {
    color: var(--editorial-accent);
}

.landing-page .feature-short-label {
    color: #858993;
}

.landing-page .feature-card h3 {
    color: #f0f1f5;
    font-size: 22px;
}

.landing-page .feature-card p {
    color: #a3a6af;
}

.landing-page .feature-card ul {
    color: #858993;
}

.landing-page .workflow-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 9vw, 124px);
}

.landing-page .workflow-copy h2 {
    max-width: 480px;
    margin-top: 15px;
    color: #f2f3f7;
    font-size: clamp(40px, 4.3vw, 52px);
    font-weight: 810;
    letter-spacing: -0.052em;
    line-height: 1.08;
}

.landing-page .workflow-copy > p {
    margin-top: 22px;
    color: #9fa2ac;
    font-size: 15px;
}

.landing-page .workflow-steps {
    border-top: 1px solid #343640;
}

.landing-page .workflow-steps li {
    min-height: 0;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid #343640;
    border-radius: 0;
    background: transparent;
}

.landing-page .workflow-steps li:not(:last-child)::after {
    display: none;
}

.landing-page .workflow-steps li > span {
    border-color: rgb(120 162 255 / 0.34);
    background: rgb(120 162 255 / 0.08);
    color: #9fbbff;
}

.landing-page .workflow-steps strong {
    color: #eceef3;
}

.landing-page .workflow-steps p {
    color: #8f929c;
}

.landing-page .commands-section {
    background: #17181e;
}

.landing-page .command-grid {
    gap: 14px;
    margin-top: 56px;
}

.landing-page .command-card,
.landing-page .command-card:nth-child(3n + 2),
.landing-page .command-card:nth-child(3n) {
    min-height: 148px;
    border: 1px solid #343640;
    border-radius: 14px;
    background: #1d1e24;
    box-shadow: none;
}

.landing-page .command-card:hover {
    border-color: #515462;
    background: #202128;
    box-shadow: none;
    transform: translateY(-2px);
}

.landing-page .cmd {
    color: #a9c0ff;
}

.landing-page .aud {
    border-color: #393c46;
    background: transparent;
    color: #8d909a;
}

.landing-page .command-card .desc {
    color: #9da0aa;
}

.landing-page .cta-panel {
    padding: clamp(44px, 6vw, 72px);
    border: 1px solid #373a45;
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 18%, rgb(120 162 255 / 0.12), transparent 34%), #1c1d24;
    color: #f2f3f7;
    box-shadow: none;
}

.landing-page .cta-panel .section-kicker,
.landing-page .cta-panel h2,
.landing-page .cta-panel p {
    color: inherit;
}

.landing-page .cta-panel p {
    color: #9da0aa;
}

.landing-page .cta-panel .btn-primary {
    border-color: #78a2ff;
    background: #78a2ff;
    color: #0d1422;
}

.landing-page .cta-panel .btn-secondary {
    border-color: #41444f;
    background: transparent;
    color: #eceef4;
}

.landing-page .site-footer {
    border-top: 1px solid var(--editorial-line);
    background: #121319;
    color: #858892;
}

.landing-page .footer-brand strong {
    color: #e9eaf0;
}

@media (min-width: 861px) {
    .landing-page .protection-demo-section-judge .protection-demo-layout {
        grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.78fr);
    }

    .landing-page .protection-demo-section-judge .protection-demo-copy {
        grid-row: 1;
        grid-column: 2;
    }

    .landing-page .protection-demo-section-judge .protection-demo-figure {
        grid-row: 1;
        grid-column: 1;
    }
}

@media (max-width: 960px) {
    .landing-page .hero-dashboard-preview {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .landing-page .section-heading,
    .landing-page .workflow-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 860px) {
    .landing-page .mobile-section-nav {
        min-height: 45px;
        border-top: 1px solid var(--editorial-line);
        border-radius: 0;
        background: #15161c;
        box-shadow: none;
    }

    .landing-page .protection-demo-layout,
    .landing-page .protection-demo-section-judge .protection-demo-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .landing-page .protection-demo-section-judge .protection-demo-copy,
    .landing-page .protection-demo-section-judge .protection-demo-figure {
        grid-row: auto;
        grid-column: auto;
    }

    .landing-page .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .feature-card,
    .landing-page .feature-card-primary,
    .landing-page .feature-card:last-child {
        min-height: 0;
        border: 1px solid #343640;
        border-radius: 16px;
    }
}

@media (max-width: 700px) {
    .landing-page .header-inner,
    .landing-page .site-header .wrap,
    .landing-page .site-header.is-scrolled .header-inner,
    .landing-page .site-header.is-scrolled .wrap {
        padding-inline: 20px;
    }

    .landing-page .hero {
        padding-block: 82px 0;
    }

    .landing-page .hero h1 {
        font-size: clamp(40px, 11.5vw, 50px);
        letter-spacing: -0.055em;
        line-height: 1.06;
    }

    .landing-page .hero-lede {
        font-size: 15px;
        line-height: 1.72;
    }

    .landing-page .hero-trust-line {
        grid-template-columns: 1fr;
        margin-top: 76px;
    }

    .landing-page .hero-trust-line li {
        min-height: 48px;
    }

    .landing-page .hero-trust-line li:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--editorial-line);
    }

    .landing-page .hero-dashboard-preview {
        padding-block: 34px 44px;
    }

    .landing-page .hero-demo-facts {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-demo-facts span {
        min-height: 52px;
        padding: 16px;
        text-align: left;
    }

    .landing-page .hero-demo-facts span + span {
        border-top: 1px solid #343640;
        border-left: 0;
    }

    .landing-page .protection-demo-section,
    .landing-page .protection-demo-section-judge,
    .landing-page .protection-demo-section-spam,
    .landing-page .feature-section,
    .landing-page .workflow-section,
    .landing-page .commands-section,
    .landing-page .cta-section {
        padding-block: 84px;
    }

    .landing-page .protection-demo-copy h2,
    .landing-page .feature-section .section-heading h2,
    .landing-page .workflow-copy h2,
    .landing-page .commands-section .section-heading h2 {
        font-size: 38px;
    }

    .landing-page .protection-demo-frame {
        border-radius: 13px;
    }

    .landing-page .feature-card-grid,
    .landing-page .command-grid {
        margin-top: 42px;
    }

    .landing-page .cta-panel {
        padding: 38px 26px;
        border-radius: 16px;
    }
}

@media (max-width: 440px) {
    .landing-page .hero h1 {
        font-size: 40px;
    }

    .landing-page .hero h1 br {
        display: block;
    }

    .landing-page .hero-preview-copy > strong {
        font-size: 27px;
    }

    .landing-page .protection-demo-copy h2,
    .landing-page .feature-section .section-heading h2,
    .landing-page .workflow-copy h2,
    .landing-page .commands-section .section-heading h2 {
        font-size: 34px;
    }
}

/* DKCC의 어두운 흐름 위에 Codex식 밝은 제품 무대를 확실히 고정한다. */

.landing-page .protection-demo-figure figcaption {
    color: rgb(13 18 31 / 0.78);
    text-shadow: 0 1px 0 rgb(255 255 255 / 0.18);
}

.landing-page .cta-panel {
    min-height: 390px;
    align-items: center;
    padding: clamp(48px, 7vw, 82px);
    border-color: rgb(255 255 255 / 0.34);
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 8%, rgb(248 249 255 / 0.84), transparent 34%),
        radial-gradient(circle at 86% 78%, rgb(92 112 204 / 0.4), transparent 42%),
        linear-gradient(135deg, #c4cff2 0%, #93a7e8 48%, #707cbd 100%);
    color: #10131c;
    box-shadow: 0 36px 100px rgb(0 0 0 / 0.26);
}

.landing-page .cta-panel .section-kicker {
    color: #28478d;
}

.landing-page .cta-panel h2 {
    color: #10131c;
}

.landing-page .cta-panel p {
    color: rgb(16 19 28 / 0.7);
}

.landing-page .cta-panel .btn-primary {
    border-color: #10131c;
    background: #10131c;
    color: #ffffff;
}

.landing-page .cta-panel .btn-primary:hover {
    border-color: #292f3e;
    background: #292f3e;
    color: #ffffff;
}

.landing-page .cta-panel .btn-secondary {
    border-color: rgb(16 19 28 / 0.36);
    background: rgb(255 255 255 / 0.12);
    color: #10131c;
}

.landing-page .cta-panel .btn-secondary:hover {
    border-color: rgb(16 19 28 / 0.58);
    background: rgb(255 255 255 / 0.24);
    color: #10131c;
}

@media (max-width: 700px) {
    .landing-page .cta-panel {
        min-height: 0;
        padding: 48px 26px;
        border-radius: 20px;
    }
}

/* 단계 번호는 장식이 아니라 흐름의 기준점으로 보이게 한다. */

.landing-page .workflow-steps li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding-block: 28px;
}

.landing-page .workflow-steps li > span {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: linear-gradient(145deg, #e7ecff 8%, #86a5ff 82%);
    background-clip: text;
    color: transparent;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 38px;
    font-variant-numeric: tabular-nums;
    font-weight: 760;
    letter-spacing: -0.09em;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .workflow-steps strong {
    padding-top: 0;
}

/* 실제 촬영 화면이라는 설명은 밝은 무대 위에서도 또렷하게 읽힌다. */

.landing-page .protection-demo-figure figcaption {
    padding-inline: 2px;
    margin-top: 14px;
    color: rgb(9 13 24 / 0.92);
    font-size: 13px;
    font-weight: 760;
    letter-spacing: -0.012em;
    line-height: 1.45;
    text-shadow: 0 1px 0 rgb(255 255 255 / 0.28);
}

@media (max-width: 700px) {
    .landing-page .workflow-steps li {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        padding-block: 24px;
    }

    .landing-page .workflow-steps li > span {
        font-size: 31px;
    }

    .landing-page .protection-demo-figure figcaption {
        padding-inline: 3px;
        margin-top: 11px;
        font-size: 12px;
    }
}

/* 공홈과 대시보드가 같은 CSS 보안 신호 패턴을 공유한다. */

body.dashboard-page {
    --dashboard-accent: #78a2ff;
    --dashboard-line: #30323a;
    position: relative;
    isolation: isolate;
    overflow-x: clip;
    background: #121319;
    background-attachment: initial;
    color: #f2f3f7;
}

.dashboard-page .dashboard-pattern {
    --pattern-x: 72%;
    --pattern-y: 20%;
    --pattern-shift-x: 0px;
    --pattern-shift-y: 0px;
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 56% 66% at var(--pattern-x) var(--pattern-y),
            rgb(48 68 112 / 0.3) 0%,
            rgb(27 35 55 / 0.17) 43%,
            transparent 74%
        ),
        radial-gradient(ellipse 38% 46% at 8% 14%, rgb(35 43 55 / 0.2), transparent 76%),
        linear-gradient(130deg, #111319 0%, #181b25 48%, #12141b 100%);
}

.dashboard-page .dashboard-pattern::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgb(152 174 222 / 0.17) 0 1px, transparent 1.35px);
    background-position: var(--pattern-shift-x) var(--pattern-shift-y);
    background-size: 28px 28px;
    content: '';
    opacity: 0.72;
    -webkit-mask-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.7) 64%, transparent 98%);
    mask-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.7) 64%, transparent 98%);
}

.dashboard-page .dashboard-pattern > span {
    position: absolute;
    display: block;
    pointer-events: none;
}

.dashboard-page .dashboard-pattern-mesh {
    inset: -140px;
    background:
        repeating-linear-gradient(
            60deg,
            transparent 0 47px,
            rgb(126 153 211 / 0.055) 48px,
            rgb(126 153 211 / 0.055) 49px,
            transparent 50px 96px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent 0 47px,
            rgb(126 153 211 / 0.055) 48px,
            rgb(126 153 211 / 0.055) 49px,
            transparent 50px 96px
        );
    background-position:
        var(--pattern-shift-x) var(--pattern-shift-y),
        calc(0px - var(--pattern-shift-x)) var(--pattern-shift-y);
    opacity: 0.42;
    transform: translate3d(
            calc(0px - var(--pattern-shift-x)),
            calc(0px - var(--pattern-shift-y)),
            0
        )
        rotate(-2deg) scale(1.04);
    transition: opacity 0.28s ease;
    -webkit-mask-image: radial-gradient(
        ellipse 76% 88% at var(--pattern-x) var(--pattern-y),
        #000 2%,
        rgb(0 0 0 / 0.84) 42%,
        transparent 86%
    );
    mask-image: radial-gradient(
        ellipse 76% 88% at var(--pattern-x) var(--pattern-y),
        #000 2%,
        rgb(0 0 0 / 0.84) 42%,
        transparent 86%
    );
    will-change: transform, opacity;
}

.dashboard-page .dashboard-pattern-signal {
    inset: 0;
    background: repeating-radial-gradient(
        circle at var(--pattern-x) var(--pattern-y),
        transparent 0 54px,
        rgb(120 162 255 / 0.12) 55px,
        transparent 56px 110px
    );
    opacity: 0.28;
    transition: opacity 0.28s ease;
    -webkit-mask-image: radial-gradient(
        circle 420px at var(--pattern-x) var(--pattern-y),
        #000 0%,
        rgb(0 0 0 / 0.76) 48%,
        transparent 100%
    );
    mask-image: radial-gradient(
        circle 420px at var(--pattern-x) var(--pattern-y),
        #000 0%,
        rgb(0 0 0 / 0.76) 48%,
        transparent 100%
    );
}

.dashboard-page .dashboard-pattern-trace {
    top: var(--pattern-y);
    left: var(--pattern-x);
    width: 7px;
    height: 7px;
    border: 1px solid rgb(151 182 255 / 0.9);
    border-radius: 50%;
    background: rgb(120 162 255 / 0.65);
    box-shadow:
        0 0 0 9px rgb(120 162 255 / 0.06),
        0 0 44px 18px rgb(120 162 255 / 0.09);
    opacity: 0.52;
    transform: translate(-50%, -50%);
    transition: opacity 0.28s ease;
}

.dashboard-page .dashboard-pattern-trace::before,
.dashboard-page .dashboard-pattern-trace::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(120 162 255 / 0.32), transparent);
    content: '';
    transform: translate(-50%, -50%);
}

.dashboard-page .dashboard-pattern-trace::before {
    width: 74px;
    height: 1px;
}

.dashboard-page .dashboard-pattern-trace::after {
    width: 1px;
    height: 74px;
    background: linear-gradient(transparent, rgb(120 162 255 / 0.32), transparent);
}

.dashboard-page .dashboard-pattern.is-pointer-active .dashboard-pattern-mesh {
    opacity: 0.62;
}

.dashboard-page .dashboard-pattern.is-pointer-active .dashboard-pattern-signal {
    opacity: 0.62;
}

.dashboard-page .dashboard-pattern.is-pointer-active .dashboard-pattern-trace {
    opacity: 0.9;
}

.dashboard-page .site-header {
    z-index: 20;
    border-bottom-color: rgb(255 255 255 / 0.075);
    background: rgb(21 22 28 / 0.86);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(125%);
}

.dashboard-page .dashboard-main,
.dashboard-page .dashboard-footer {
    position: relative;
    z-index: 1;
}

.dashboard-page .dashboard-summary {
    border-color: rgb(255 255 255 / 0.1);
    background: rgb(27 29 38 / 0.68);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
    backdrop-filter: blur(18px) saturate(112%);
}

.dashboard-page .guild-search,
.dashboard-page .settings-search,
.dashboard-page .user-chip {
    border-color: rgb(255 255 255 / 0.12);
    background: rgb(24 26 34 / 0.78);
    backdrop-filter: blur(14px);
}

.dashboard-page .guild-card,
.dashboard-page .guild-card.needs-invite,
.dashboard-page .empty-panel,
.server-page .protection-card,
.server-page .attention-panel,
.server-page .settings-sidebar,
.server-page .settings-panel {
    border-color: rgb(255 255 255 / 0.12);
    background: rgb(27 29 38 / 0.84);
    box-shadow:
        0 22px 54px rgb(0 0 0 / 0.2),
        inset 0 1px 0 rgb(255 255 255 / 0.025);
    backdrop-filter: blur(18px) saturate(112%);
}

.dashboard-page .guild-card:hover,
.server-page .protection-card:hover {
    border-color: rgb(120 162 255 / 0.38);
    background: rgb(31 34 44 / 0.92);
}

.server-page .settings-policy {
    background: rgb(20 22 29 / 0.7);
}

.dashboard-page .dashboard-footer {
    border-top-color: rgb(255 255 255 / 0.075);
    background: rgb(18 19 25 / 0.82);
    backdrop-filter: blur(18px);
}

@media (max-width: 700px), (pointer: coarse) {
    .dashboard-page .dashboard-pattern {
        --pattern-x: 78%;
        --pattern-y: 18%;
    }

    .dashboard-page .dashboard-pattern::before {
        opacity: 0.52;
    }

    .dashboard-page .dashboard-pattern-mesh {
        opacity: 0.28;
    }

    .dashboard-page .dashboard-pattern-signal,
    .dashboard-page .dashboard-pattern-trace {
        opacity: 0.2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-page .dashboard-pattern-mesh {
        transform: rotate(-2deg) scale(1.04);
        will-change: auto;
    }
}

/* 확인창은 대시보드 위에 뜨는 작은 macOS형 올비전 창으로 표시한다. */

.dashboard-page .confirm-dialog {
    width: min(560px, calc(100vw - 30px));
    overflow: hidden;
    padding: 0;
    border: 1px solid rgb(172 184 222 / 0.26);
    border-radius: 22px;
    background: rgb(23 24 31 / 0.98);
    color: #f4f5f8;
    box-shadow:
        0 42px 120px rgb(0 0 0 / 0.58),
        0 0 0 1px rgb(255 255 255 / 0.025) inset;
    backdrop-filter: blur(24px) saturate(120%);
}

.dashboard-page .confirm-dialog::backdrop {
    background: rgb(5 7 12 / 0.72);
    backdrop-filter: blur(16px) saturate(90%);
}

.dashboard-page .confirm-dialog[open] {
    animation: dashboard-dialog-in 0.2s cubic-bezier(0.2, 0.76, 0.24, 1) both;
}

@keyframes dashboard-dialog-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.975);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dashboard-page .confirm-dialog form {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 78px 28px 27px;
    background:
        linear-gradient(rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.08)) 0 51px / 100% 1px
            no-repeat,
        linear-gradient(180deg, #24252d 0 52px, #17181f 52px 100%);
}

.dashboard-page .confirm-dialog form::before {
    position: absolute;
    top: 20px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
        17px 0 #febc2e,
        34px 0 #28c840;
    content: '';
}

.dashboard-page .confirm-dialog form::after {
    position: absolute;
    top: 15px;
    left: 50%;
    color: #d5d7df;
    content: '올비전 설정';
    font-size: 12px;
    font-weight: 760;
    letter-spacing: -0.012em;
    transform: translateX(-50%);
}

.dashboard-page .confirm-dialog .dialog-icon {
    width: 44px;
    height: 44px;
    border-color: rgb(251 191 36 / 0.22);
    border-radius: 13px;
    background: rgb(251 191 36 / 0.09);
    color: #ffd45e;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.035);
}

.dashboard-page .confirm-dialog .dialog-copy h2 {
    margin: 0 0 8px;
    color: #f5f6f9;
    font-size: 21px;
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.28;
}

.dashboard-page .confirm-dialog .dialog-copy p {
    margin: 0;
    color: #b7bac4;
    font-size: 14px;
    line-height: 1.72;
}

.dashboard-page .confirm-dialog .dialog-actions {
    grid-column: 1 / -1;
    gap: 9px;
    margin-top: 10px;
}

.dashboard-page .confirm-dialog .dialog-actions .btn {
    min-width: 82px;
    min-height: 46px;
    border-radius: 11px;
}

.dashboard-page .confirm-dialog .dialog-actions .btn-secondary {
    border-color: rgb(255 255 255 / 0.16);
    background: rgb(255 255 255 / 0.045);
}

.dashboard-page .confirm-dialog .dialog-actions .btn-danger {
    border-color: #d74461;
    background: #d74461;
    color: #ffffff;
    box-shadow: 0 10px 28px rgb(178 36 67 / 0.24);
}

.dashboard-page .confirm-dialog .dialog-actions .btn-danger:hover {
    border-color: #e5526e;
    background: #e5526e;
}

@media (max-width: 700px) {
    .dashboard-page .confirm-dialog {
        width: min(100% - 22px, 560px);
        border-radius: 18px;
    }

    .dashboard-page .confirm-dialog form {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 13px;
        padding: 72px 20px 20px;
    }

    .dashboard-page .confirm-dialog .dialog-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .dashboard-page .confirm-dialog .dialog-copy h2 {
        font-size: 19px;
    }

    .dashboard-page .confirm-dialog .dialog-copy p {
        font-size: 13px;
    }

    .dashboard-page .confirm-dialog .dialog-actions {
        grid-column: 1 / -1;
    }

    .dashboard-page .confirm-dialog .dialog-actions .btn {
        flex: 1;
    }
}

/* 대시보드에서는 화면 맨 왼쪽의 화살표와 기존 홈 메뉴를 함께 제공한다. */

.dashboard-page .header-inner,
.dashboard-page .site-header .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.dashboard-page .header-home-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 16px;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.035);
    color: #d7dae2;
    transform: translateY(-50%);
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
}

.dashboard-page .header-home-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateX(-1px);
}

.dashboard-page .header-home-arrow:hover {
    border-color: rgb(120 162 255 / 0.45);
    background: rgb(120 162 255 / 0.1);
    color: #ffffff;
}

.dashboard-page .header-home-arrow:focus-visible {
    outline-offset: 4px;
}

.dashboard-page .header-actions {
    justify-self: end;
}

/* 체험 안내는 핵심 행동만 남기고 보조 설명 칸을 제거한다. */

.landing-page .hero-dashboard-preview {
    display: block;
}

.landing-page .hero-preview-copy {
    max-width: 620px;
}

/* Guard가 제공하는 단일 슬롯 파트너십 배너. 핵심 대시보드와 독립적으로 숨김 가능하다. */

.dashboard-page .partnership-slot {
    width: 100%;
    margin: 0 0 28px;
}

.server-page .partnership-slot {
    margin-bottom: 20px;
}

.dashboard-page .partnership-slot[hidden] {
    display: none;
}

.dashboard-page .partnership-banner {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(139 168 232 / 0.28);
    border-radius: 20px;
    background: #171a24;
    box-shadow:
        0 22px 60px rgb(0 0 0 / 0.24),
        inset 0 1px 0 rgb(255 255 255 / 0.045);
}

.dashboard-page .partnership-banner::after {
    position: absolute;
    z-index: 2;
    height: 72%;
    inset: auto 0 0;
    background: linear-gradient(transparent, rgb(5 8 15 / 0.72));
    content: '';
    pointer-events: none;
}

.dashboard-page .partnership-trigger {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.dashboard-page .partnership-trigger:focus-visible {
    outline: 3px solid #9ebcff;
    outline-offset: -5px;
}

.dashboard-page .partnership-media-frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
    background: #11141d;
}

.dashboard-page .partnership-poster,
.dashboard-page .partnership-video {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.dashboard-page .partnership-video {
    z-index: 1;
    opacity: 0;
}

.dashboard-page .partnership-video.is-ready {
    opacity: 1;
}

.dashboard-page .partnership-copy {
    position: absolute;
    z-index: 3;
    display: flex;
    max-width: calc(100% - 44px);
    inset: auto auto 18px 22px;
    align-items: center;
    gap: 13px;
    padding: 0;
    text-shadow: 0 1px 8px rgb(0 0 0 / 0.58);
}

.dashboard-page .partnership-banner.has-motion-controls .partnership-copy {
    bottom: 58px;
}

.dashboard-page .partnership-label {
    flex: none;
    padding: 0;
    color: rgb(255 255 255 / 0.74);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dashboard-page .partnership-copy strong {
    overflow: hidden;
    min-width: 0;
    color: #ffffff;
    font-size: clamp(18px, 2.1vw, 27px);
    font-weight: 820;
    letter-spacing: -0.035em;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-page .partnership-intro-action {
    margin-left: auto;
    color: rgb(255 255 255 / 0.76);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.dashboard-page .partnership-controls {
    position: absolute;
    z-index: 4;
    right: 10px;
    bottom: 4px;
    left: 10px;
    display: flex;
    height: 48px;
    align-items: center;
    background: transparent;
    pointer-events: none;
}

.dashboard-page .partnership-seek {
    --partnership-played: 0%;

    width: clamp(72px, 28vw, 220px);
    min-width: 56px;
    height: 44px;
    flex: 0 1 clamp(72px, 28vw, 220px);
    box-sizing: border-box;
    padding: 0 7px;
    margin: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
}

.dashboard-page .partnership-seek::-webkit-slider-runnable-track {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgb(255 255 255 / 0.92) 0 var(--partnership-played),
        rgb(255 255 255 / 0.24) var(--partnership-played) 100%
    );
}

.dashboard-page .partnership-seek::-moz-range-track {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgb(255 255 255 / 0.92) 0 var(--partnership-played),
        rgb(255 255 255 / 0.24) var(--partnership-played) 100%
    );
}

.dashboard-page .partnership-seek::-webkit-slider-thumb {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    appearance: none;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0;
    transition:
        opacity 0.16s ease,
        transform 0.16s ease;
}

.dashboard-page .partnership-seek::-moz-range-thumb {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0;
    transition:
        opacity 0.16s ease,
        transform 0.16s ease;
}

.dashboard-page .partnership-seek:hover::-webkit-slider-thumb,
.dashboard-page .partnership-seek:focus-visible::-webkit-slider-thumb,
.dashboard-page .partnership-seek:hover::-moz-range-thumb,
.dashboard-page .partnership-seek:focus-visible::-moz-range-thumb {
    opacity: 1;
    transform: scale(1.25);
}

.dashboard-page .partnership-seek:disabled {
    cursor: wait;
    opacity: 0.48;
}

.dashboard-page .partnership-seek:focus-visible {
    outline: 2px solid rgb(255 255 255 / 0.85);
    outline-offset: -9px;
}

.dashboard-page .partnership-control-strip {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
}

.dashboard-page .partnership-icon-control {
    display: inline-grid;
    min-width: 44px;
    min-height: 44px;
    padding: 13px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgb(255 255 255 / 0.9);
    cursor: pointer;
    pointer-events: auto;
    place-items: center;
}

.dashboard-page .partnership-icon-control svg {
    width: 17px;
    height: 17px;
    pointer-events: none;
}

.dashboard-page .partnership-icon-control:hover {
    background: transparent;
    color: #ffffff;
}

.dashboard-page .partnership-icon-control:focus-visible {
    outline: 2px solid rgb(255 255 255 / 0.88);
    outline-offset: -9px;
}

.dashboard-page .partnership-media-time {
    margin: 0 3px 0 0;
    color: rgb(255 255 255 / 0.78);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.dashboard-page .partnership-dialog {
    width: min(760px, calc(100vw - 32px));
    max-height: min(820px, calc(100vh - 32px));
    overflow: auto;
    padding: 0;
    border: 1px solid rgb(172 184 222 / 0.3);
    border-radius: 24px;
    background: #17181f;
    color: #f5f6f9;
    box-shadow:
        0 42px 130px rgb(0 0 0 / 0.66),
        0 0 0 1px rgb(255 255 255 / 0.025) inset;
    backdrop-filter: blur(24px) saturate(120%);
}

.dashboard-page .partnership-dialog::backdrop {
    background: rgb(5 7 12 / 0.78);
    backdrop-filter: blur(16px) saturate(90%);
}

.dashboard-page .partnership-dialog[open] {
    animation: dashboard-dialog-in 0.2s cubic-bezier(0.2, 0.76, 0.24, 1) both;
}

.dashboard-page .partnership-dialog-window {
    min-height: 100%;
    background: linear-gradient(180deg, #24252d 0 58px, #17181f 58px 100%);
}

.dashboard-page .partnership-dialog-titlebar {
    position: sticky;
    z-index: 2;
    top: 0;
    display: grid;
    height: 58px;
    grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(36 37 45 / 0.96);
    backdrop-filter: blur(18px);
}

.dashboard-page .partnership-dialog-lights {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
        18px 0 #febc2e,
        36px 0 #28c840;
}

.dashboard-page .partnership-dialog-window-title {
    color: #d5d7df;
    font-size: 12px;
    font-weight: 760;
    letter-spacing: -0.012em;
}

.dashboard-page .partnership-dialog-close {
    justify-self: end;
    min-width: 58px;
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid rgb(255 255 255 / 0.15);
    border-radius: 10px;
    background: rgb(255 255 255 / 0.045);
    color: #f3f4f7;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 730;
}

.dashboard-page .partnership-dialog-close:hover {
    border-color: rgb(255 255 255 / 0.3);
    background: rgb(255 255 255 / 0.09);
}

.dashboard-page .partnership-dialog-close:focus-visible,
.dashboard-page .partnership-dialog-action:focus-visible {
    outline: 3px solid #9ebcff;
    outline-offset: 2px;
}

.dashboard-page .partnership-dialog-body {
    padding: 34px 36px 36px;
}

.dashboard-page .partnership-dialog-body > .partnership-label {
    display: inline-flex;
    margin-bottom: 16px;
}

.dashboard-page .partnership-dialog-body h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 840;
    letter-spacing: -0.045em;
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.dashboard-page .partnership-dialog-lead {
    margin: 12px 0 26px;
    color: #b9becb;
    font-size: 15px;
    line-height: 1.72;
}

.dashboard-page .partnership-dialog-introductions {
    display: grid;
    gap: 12px;
}

.dashboard-page .partnership-dialog-section {
    padding: 20px 21px;
    border: 1px solid rgb(255 255 255 / 0.11);
    border-radius: 16px;
    background: rgb(29 31 40 / 0.92);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.025);
}

.dashboard-page .partnership-dialog-kicker {
    color: #9ebcff;
    font-size: 11px;
    font-weight: 790;
    letter-spacing: 0.06em;
}

.dashboard-page .partnership-dialog-section h3 {
    margin: 7px 0 8px;
    color: #f7f8fb;
    font-size: 21px;
    font-weight: 790;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

.dashboard-page .partnership-dialog-section p {
    margin: 0;
    color: #c0c4ce;
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.dashboard-page .partnership-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / 0.09);
}

.dashboard-page .partnership-dialog-action {
    min-height: 48px;
}

@media (max-width: 700px) {
    .dashboard-page .partnership-slot {
        margin-bottom: 20px;
    }

    .dashboard-page .partnership-media-frame {
        aspect-ratio: 16 / 9;
    }

    .dashboard-page .partnership-banner {
        border-radius: 15px;
    }

    .dashboard-page .partnership-copy {
        gap: 8px;
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }

    .dashboard-page .partnership-banner.has-motion-controls .partnership-copy {
        bottom: 54px;
    }

    .dashboard-page .partnership-label {
        font-size: 9px;
    }

    .dashboard-page .partnership-copy strong {
        font-size: clamp(14px, 4.4vw, 19px);
    }

    .dashboard-page .partnership-intro-action {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .dashboard-page .partnership-seek {
        min-width: 38px;
        padding-inline: 4px;
    }

    .dashboard-page .partnership-controls {
        right: 4px;
        bottom: 1px;
        left: 4px;
    }

    .dashboard-page .partnership-media-time {
        margin-right: 0;
        font-size: 10px;
    }

    .dashboard-page .partnership-dialog {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        border-radius: 18px;
    }

    .dashboard-page .partnership-dialog-titlebar {
        height: 54px;
        grid-template-columns: 58px minmax(0, 1fr) 58px;
        padding: 0 12px;
    }

    .dashboard-page .partnership-dialog-lights {
        width: 9px;
        height: 9px;
        box-shadow:
            14px 0 #febc2e,
            28px 0 #28c840;
    }

    .dashboard-page .partnership-dialog-window-title {
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dashboard-page .partnership-dialog-close {
        min-width: 52px;
        min-height: 40px;
        padding-inline: 9px;
    }

    .dashboard-page .partnership-dialog-body {
        padding: 24px 16px 18px;
    }

    .dashboard-page .partnership-dialog-body h2 {
        font-size: clamp(25px, 9vw, 34px);
    }

    .dashboard-page .partnership-dialog-lead {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .dashboard-page .partnership-dialog-section {
        padding: 17px 16px;
        border-radius: 14px;
    }

    .dashboard-page .partnership-dialog-actions {
        flex-direction: column;
    }

    .dashboard-page .partnership-dialog-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-page .partnership-video,
    .dashboard-page .partnership-controls {
        display: none;
    }

    .dashboard-page .partnership-dialog[open] {
        animation: none;
    }
}

@media (max-width: 860px) {
    .dashboard-page .header-inner,
    .dashboard-page .site-header .wrap {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-left: 68px;
    }
}

@media (min-width: 861px) and (max-width: 1540px) {
    .dashboard-page .header-inner,
    .dashboard-page .site-header .wrap {
        padding-inline: 78px;
    }
}

@media (max-width: 700px) {
    .dashboard-page .demo-mode-badge {
        display: none;
    }

    .dashboard-page .header-home-arrow {
        left: 12px;
        width: 40px;
        height: 40px;
    }

    .dashboard-page .header-home-arrow svg {
        width: 19px;
        height: 19px;
    }
}
