/* ========================================
   한국 미래산업 연구소 — Design System
   Institutional Research Archive Style
   ======================================== */

:root {
    --c-primary: #1B2A4A;
    --c-primary-light: #2D4470;
    --c-accent: #C0392B;
    --c-accent-hover: #A93226;
    --c-bg: #FDFCFB;
    --c-bg-alt: #F4F3F1;
    --c-bg-deep: #EBE9E5;
    --c-text: #2B2B2B;
    --c-text-light: #5A5A5A;
    --c-text-muted: #8A8A8A;
    --c-border: #D8D5D0;
    --c-border-light: #EBE8E3;
    --c-white: #FFFFFF;
    --c-warning: #C0392B;

    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Noto Sans KR', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

    --fs-xs: 0.8125rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 1.875rem;
    --fs-3xl: 2.25rem;

    --w-narrow: 680px;
    --w-default: 780px;
    --w-wide: 920px;

    --sp-xs: 0.5rem;
    --sp-sm: 0.75rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4rem;
    --sp-4xl: 6rem;

    --radius: 3px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: var(--fs-base);
    line-height: 1.75;
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover { color: var(--c-accent); }

a:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px;
    border-radius: var(--radius);
}

ul, ol { list-style: none; }

/* ========================================
   Skip Link
   ======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--sp-md);
    padding: var(--sp-xs) var(--sp-md);
    background: var(--c-primary);
    color: var(--c-white);
    font-size: var(--fs-sm);
    border-radius: var(--radius);
    z-index: 1000;
}

.skip-link:focus {
    top: var(--sp-md);
}

/* ========================================
   Warning Bar (for REPLACE placeholders)
   ======================================== */
.warning-bar {
    background: var(--c-warning);
    color: var(--c-white);
    padding: var(--sp-xs) var(--sp-md);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-align: center;
}

/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.container--narrow {
    max-width: var(--w-narrow);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.container--default {
    max-width: var(--w-default);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

/* ========================================
   Site Header
   ======================================== */
.site-header {
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: var(--sp-md) var(--sp-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.site-logo img {
    width: 28px;
    height: 28px;
}

.site-logo span {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: -0.01em;
}

.site-nav { display: flex; align-items: center; }

.nav-list {
    display: flex;
    gap: var(--sp-lg);
    align-items: center;
}

.nav-list a {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    font-weight: 500;
    padding: var(--sp-xs) 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    color: var(--c-primary);
    border-bottom-color: var(--c-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: var(--sp-xs) var(--sp-sm);
    font-size: var(--fs-sm);
    cursor: pointer;
    color: var(--c-text);
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--c-bg);
        border-bottom: 1px solid var(--c-border);
        padding: var(--sp-md) var(--sp-lg);
        gap: var(--sp-xs);
    }

    .nav-list.open { display: flex; }

    .nav-list a {
        display: block;
        padding: var(--sp-sm) 0;
    }
}

/* ========================================
   Hero
   ======================================== */
.hero {
    padding: var(--sp-4xl) 0 var(--sp-3xl);
    border-bottom: 1px solid var(--c-border-light);
}

.hero h1 {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-md);
}

.hero-subtitle {
    font-size: var(--fs-md);
    color: var(--c-text-light);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: var(--sp-lg);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-lg);
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: var(--sp-sm) var(--sp-lg);
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border: 1px solid transparent;
    text-align: center;
}

.btn--primary {
    background: var(--c-primary);
    color: var(--c-white);
}

.btn--primary:hover {
    background: var(--c-primary-light);
    color: var(--c-white);
}

.btn--outline {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn--outline:hover {
    background: var(--c-primary);
    color: var(--c-white);
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: var(--sp-3xl) 0;
}

.section + .section {
    border-top: 1px solid var(--c-border-light);
}

.section-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-sm);
}

.section h2 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: var(--sp-lg);
    line-height: 1.4;
}

.section p {
    margin-bottom: var(--sp-md);
    line-height: 1.8;
}

.section p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Article Blocks
   ======================================== */
.article-lead {
    font-size: var(--fs-md);
    color: var(--c-text);
    line-height: 1.9;
    max-width: var(--w-default);
}

.pull-quote {
    border-left: 3px solid var(--c-accent);
    padding: var(--sp-md) var(--sp-lg);
    margin: var(--sp-xl) 0;
    font-size: var(--fs-md);
    color: var(--c-text-light);
    font-style: italic;
    line-height: 1.8;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--sp-xl) 0;
    font-size: var(--fs-sm);
}

.data-table th {
    background: var(--c-bg-alt);
    text-align: left;
    padding: var(--sp-sm) var(--sp-md);
    font-weight: 600;
    color: var(--c-primary);
    border-bottom: 2px solid var(--c-border);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table td {
    padding: var(--sp-sm) var(--sp-md);
    border-bottom: 1px solid var(--c-border-light);
    vertical-align: top;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table caption {
    caption-side: bottom;
    text-align: left;
    padding: var(--sp-sm) 0;
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
}

/* ========================================
   Lists
   ======================================== */
.content-list {
    padding: 0;
}

.content-list li {
    padding: var(--sp-sm) 0;
    padding-left: var(--sp-lg);
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid var(--c-border-light);
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1em;
    width: 6px;
    height: 6px;
    background: var(--c-primary);
    border-radius: 50%;
}

.numbered-list {
    counter-reset: item;
    padding: 0;
}

.numbered-list li {
    counter-increment: item;
    padding: var(--sp-md) 0;
    padding-left: calc(var(--sp-xl) + var(--sp-sm));
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid var(--c-border-light);
}

.numbered-list li:last-child { border-bottom: none; }

.numbered-list li::before {
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: var(--sp-md);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-primary);
    font-family: var(--font-mono);
}

/* ========================================
   Cards
   ======================================== */
.card {
    border: 1px solid var(--c-border-light);
    padding: var(--sp-lg);
    border-radius: var(--radius);
    background: var(--c-white);
}

.card--featured {
    border-left: 3px solid var(--c-primary);
    padding-left: calc(var(--sp-lg) - 2px);
}

.card h3 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}

.card p {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-sm);
}

.card-meta {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    display: flex;
    gap: var(--sp-md);
}

/* ========================================
   Article Grid
   ======================================== */
.article-grid {
    display: grid;
    gap: var(--sp-xl);
}

@media (min-width: 769px) {
    .article-grid--featured {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }
}

.article-grid .card--featured h3 {
    font-size: var(--fs-lg);
}

.article-grid .card--featured p {
    font-size: var(--fs-base);
}

/* ========================================
   Service Items
   ======================================== */
.service-item {
    padding: var(--sp-xl) 0;
    border-bottom: 1px solid var(--c-border-light);
}

.service-item:last-child { border-bottom: none; }

.service-item h3 {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: var(--sp-sm);
}

.service-item h4 {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-text);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-xs);
}

.service-item p {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    padding: 2px 8px;
    background: var(--c-bg-alt);
    color: var(--c-text-muted);
    border-radius: var(--radius);
    margin-right: 4px;
    margin-bottom: 4px;
}

.exclusion-list {
    background: var(--c-bg-alt);
    padding: var(--sp-lg);
    border-radius: var(--radius);
    margin-top: var(--sp-xl);
}

.exclusion-list h3 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-md);
}

.exclusion-list li {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    padding: var(--sp-xs) 0;
    padding-left: var(--sp-md);
    position: relative;
}

.exclusion-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--c-accent);
    font-weight: 700;
}

/* ========================================
   FAQ
   ======================================== */
.faq-section { }

.faq-item {
    padding: var(--sp-lg) 0;
    border-bottom: 1px solid var(--c-border-light);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}

.faq-item p {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.8;
}

/* ========================================
   Forms
   ======================================== */
.form-group {
    margin-bottom: var(--sp-lg);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--sp-sm) var(--sp-md);
    font-size: var(--fs-base);
    font-family: var(--font-main);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    color: var(--c-text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-group .field-hint {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    margin-top: var(--sp-xs);
}

/* ========================================
   Contact Layout
   ======================================== */
.contact-layout {
    display: grid;
    gap: var(--sp-2xl);
}

@media (min-width: 769px) {
    .contact-layout {
        grid-template-columns: 1fr 300px;
    }
}

.contact-sidebar {
    padding: var(--sp-lg);
    background: var(--c-bg-alt);
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    height: fit-content;
}

.contact-sidebar h3 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: var(--sp-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-sidebar dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--sp-xs) var(--sp-md);
}

.contact-sidebar dt {
    font-weight: 600;
    color: var(--c-text);
    white-space: nowrap;
}

.contact-sidebar dd {
    color: var(--c-text-light);
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    padding: var(--sp-md) 0;
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-xs);
    align-items: center;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: var(--sp-xs);
    color: var(--c-border);
}

.breadcrumb a {
    color: var(--c-text-muted);
}

.breadcrumb a:hover {
    color: var(--c-primary);
}

.breadcrumb [aria-current="page"] {
    color: var(--c-text);
    font-weight: 600;
}

/* ========================================
   Site Footer
   ======================================== */
.site-footer {
    border-top: 1px solid var(--c-border);
    padding: var(--sp-2xl) 0;
    margin-top: var(--sp-3xl);
    background: var(--c-bg-alt);
}

.footer-inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.footer-top {
    display: grid;
    gap: var(--sp-xl);
    margin-bottom: var(--sp-xl);
}

@media (min-width: 769px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-col h4 {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-md);
}

.footer-col p {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-sm);
}

.footer-col a {
    display: block;
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    padding: var(--sp-xs) 0;
}

.footer-col a:hover { color: var(--c-primary); }

.footer-bottom {
    padding-top: var(--sp-lg);
    border-top: 1px solid var(--c-border-light);
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--sp-md);
}

/* ========================================
   Disclaimer Box
   ======================================== */
.disclaimer-box {
    border-left: 3px solid var(--c-accent);
    padding: var(--sp-md) var(--sp-lg);
    background: #FDF6F5;
    margin: var(--sp-xl) 0;
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.disclaimer-box strong {
    display: block;
    margin-bottom: var(--sp-xs);
    color: var(--c-accent);
}

/* ========================================
   Article Header
   ======================================== */
.article-header {
    padding: var(--sp-3xl) 0 var(--sp-xl);
}

.article-header h1 {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.35;
    margin-bottom: var(--sp-md);
    letter-spacing: -0.01em;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-md);
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    padding-top: var(--sp-md);
    border-top: 1px solid var(--c-border-light);
}

.article-meta strong {
    color: var(--c-text-light);
}

.article-summary {
    margin: var(--sp-xl) 0;
    padding: var(--sp-lg);
    background: var(--c-bg-alt);
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    line-height: 1.8;
}

.article-summary h2 {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-sm);
}

.article-body {
    max-width: var(--w-narrow);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.article-body h2 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--c-primary);
    margin-top: var(--sp-2xl);
    margin-bottom: var(--sp-md);
    line-height: 1.4;
}

.article-body h3 {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--c-text);
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}

.article-body p {
    margin-bottom: var(--sp-md);
    line-height: 1.85;
}

.article-body ul,
.article-body ol {
    margin: var(--sp-md) 0;
    padding-left: var(--sp-lg);
}

.article-body li {
    margin-bottom: var(--sp-xs);
    line-height: 1.7;
}

.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }

.article-body a {
    border-bottom: 1px solid var(--c-border);
    transition: border-color 0.2s;
}

.article-body a:hover {
    border-bottom-color: var(--c-primary);
}

.article-hero-img {
    max-width: var(--w-wide);
    margin: 0 auto var(--sp-xl);
    padding: 0 var(--sp-lg);
}

.article-hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Article References */
.article-refs {
    max-width: var(--w-narrow);
    margin: var(--sp-2xl) auto 0;
    padding: var(--sp-lg) var(--sp-lg) 0;
}

.article-refs h2 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-md);
}

.article-refs ol {
    padding-left: var(--sp-lg);
}

.article-refs li {
    font-size: var(--fs-xs);
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-xs);
    list-style: decimal;
}

/* Author Box */
.author-box {
    max-width: var(--w-narrow);
    margin: var(--sp-2xl) auto;
    padding: var(--sp-lg);
    background: var(--c-bg-alt);
    border-radius: var(--radius);
    display: flex;
    gap: var(--sp-md);
    align-items: flex-start;
}

.author-box .author-name {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-text);
}

.author-box .author-desc {
    font-size: var(--fs-xs);
    color: var(--c-text-light);
    line-height: 1.6;
    margin-top: var(--sp-xs);
}

/* Related Articles */
.related-articles {
    max-width: var(--w-narrow);
    margin: 0 auto var(--sp-2xl);
    padding: 0 var(--sp-lg);
}

.related-articles h2 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid var(--c-border-light);
}

.related-articles a {
    display: block;
    padding: var(--sp-sm) 0;
    font-size: var(--fs-sm);
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border-light);
}

.related-articles a:hover { color: var(--c-primary); }

.related-articles ul {
    padding: 0;
    list-style: none;
}

.related-articles li {
    list-style: none;
}

/* Table Caption */
.table-caption {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    margin-top: var(--sp-xs);
    margin-bottom: var(--sp-md);
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-content {
    max-width: var(--w-default);
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-lg) var(--sp-3xl);
}

.legal-content h1 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: var(--sp-xs);
}

.legal-content .legal-date {
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-xl);
}

.legal-content h2 {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--c-primary);
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-sm);
    padding-bottom: var(--sp-xs);
    border-bottom: 1px solid var(--c-border-light);
}

.legal-content p {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-md);
}

.legal-content ul {
    padding-left: var(--sp-lg);
    margin-bottom: var(--sp-md);
}

.legal-content li {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.7;
    margin-bottom: var(--sp-xs);
    list-style: disc;
}

/* ========================================
   404 Page
   ======================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-3xl) var(--sp-lg);
}

.error-page h1 {
    font-size: var(--fs-3xl);
    color: var(--c-primary);
    margin-bottom: var(--sp-md);
}

.error-page p {
    font-size: var(--fs-md);
    color: var(--c-text-light);
    margin-bottom: var(--sp-lg);
}

/* ========================================
   Sensitive Disclosure
   ======================================== */
.sensitive-disclosure {
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border-light);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-xl);
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.sensitive-disclosure strong {
    display: block;
    margin-bottom: var(--sp-xs);
    color: var(--c-primary);
    font-size: var(--fs-base);
}

.sensitive-disclosure ul {
    padding-left: var(--sp-lg);
    margin-top: var(--sp-sm);
}

.sensitive-disclosure li {
    list-style: disc;
    margin-bottom: 2px;
    color: var(--c-text-light);
}

/* ========================================
   Error Feedback
   ======================================== */
.error-feedback {
    border-top: 1px solid var(--c-border-light);
    padding: var(--sp-lg) 0;
    margin-top: var(--sp-xl);
    font-size: var(--fs-xs);
    color: var(--c-text-muted);
}

.error-feedback a {
    color: var(--c-primary);
    border-bottom: 1px solid var(--c-border);
}

/* ========================================
   Print
   ======================================== */
@media print {
    .site-header, .site-footer, .menu-toggle, .btn { display: none; }
    body { font-size: 11pt; color: #000; }
    .container, .container--narrow, .container--default { max-width: 100%; padding: 0; }
}
