/* ===== Zinance - Design System ===== */

:root {
    --primary: #18181B;
    --accent: #0F766E;
    --accent-hover: #0D6963;
    --accent-light: #F0FDFA;
    --secondary: #27272A;
    --bg: #FFFFFF;
    --surface: #FAFAFA;
    --text: #09090B;
    --text-secondary: #52525B;
    --muted: #A1A1AA;
    --border: #E4E4E7;
    --error: #DC2626;
    --success: #16A34A;
    --accent-amber: #D97706;
    --accent-amber-light: #FEF3C7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.035em;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 900; }
h2 { font-size: clamp(1.625rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 3vw, 1.375rem); }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s;
}

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

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.nav.scrolled {
    border-bottom-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a.active {
    color: var(--text);
    font-weight: 700;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 56px;
    background: var(--bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    filter: grayscale(100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-text h1 .highlight {
    color: var(--accent);
}

.hero-text .subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 460px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-text .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-grid {
        text-align: center;
    }
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
}

.btn-ghost:hover {
    color: var(--text);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* ===== Cards ===== */
.card {
    background: var(--surface);
    border-radius: 2px;
    padding: 2rem;
    transition: opacity 0.15s;
}

.card:hover {
    opacity: 0.85;
}

.card-flat {
    background: var(--surface);
    border-left: 3px solid var(--border);
    padding: 1.5rem 2rem;
}

/* ===== Stats Bar ===== */
.stat-bar {
    width: 100%;
    height: 4px;
    background: var(--border);
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.8s ease-out;
    width: 0;
}

/* ===== Section Headers ===== */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Problem Section ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
}

.problem-grid > * {
    background: var(--bg);
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    padding: 2rem;
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--error);
}

.problem-number {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--error);
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.problem-card p {
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ===== Solution Section ===== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.solution-grid > * {
    background: var(--bg);
}

@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    padding: 2.5rem 2rem;
    transition: background 0.15s;
}

.solution-card:hover {
    background: var(--surface);
}

.solution-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.solution-card h3 {
    margin-bottom: 0.75rem;
}

.solution-card p {
    font-size: 0.875rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
}

.solution-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s;
}

.solution-link:hover svg {
    transform: translateX(3px);
}

/* ===== Feature Preview ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.feature-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Statistics ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.stats-grid > * {
    background: var(--bg);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    padding: 2rem;
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-detail {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* ===== Comparison ===== */
.compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 640px) {
    .compare-table {
        grid-template-columns: 1fr;
    }
}

.compare-col {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
}

.compare-col:first-child {
    border-right: none;
}

@media (max-width: 640px) {
    .compare-col:first-child {
        border-right: 1px solid var(--border);
        border-bottom: none;
    }
}

.compare-col.highlight {
    background: var(--surface);
    border-color: var(--accent);
    position: relative;
}

.compare-col.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.compare-col h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.compare-list {
    list-style: none;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.compare-list li .icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.compare-list li .icon.positive {
    color: var(--accent);
}

.compare-list li .icon.negative {
    color: var(--muted);
}

.compare-list li .icon svg {
    width: 14px;
    height: 14px;
}

/* ===== Review Cards ===== */
.review-card {
    background: var(--surface);
    border-left: 2px solid var(--border);
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
}

.review-stars {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.review-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.review-source {
    font-size: 0.6875rem;
    color: var(--muted);
    margin-top: 0.375rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary);
    padding: 5rem 2rem;
    text-align: center;
    margin: 0 1.5rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--surface);
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.footer-brand span {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-title {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.6875rem;
    color: var(--muted);
}

.footer-ref-toggle {
    font-size: 0.6875rem;
    color: var(--accent);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 600;
}

.footer-references {
    width: 100%;
    padding-top: 1rem;
    display: none;
}

.footer-references.open {
    display: block;
}

.footer-references ul {
    list-style: none;
}

.footer-references li {
    font-size: 0.6875rem;
    color: var(--muted);
    padding: 0.25rem 0 0.25rem 0.75rem;
    border-left: 1px solid var(--border);
    margin-bottom: 0.25rem;
}

/* ===== Scroll Animations (subtle) ===== */
.fade-up {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.25s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Page Header (sub-pages) ===== */
.page-header {
    padding: 6.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-header p {
    font-size: 1rem;
    max-width: 540px;
    color: var(--text-secondary);
}

/* ===== Search Bar ===== */
.search-bar {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.15s;
}

.search-bar input:focus {
    border-color: var(--text);
}

.search-bar input::placeholder {
    color: var(--muted);
}

.search-bar svg {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--muted);
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.tab {
    padding: 0.625rem 1.25rem;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    font-family: inherit;
    margin-bottom: -1px;
}

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

.tab.active {
    color: var(--text);
    font-weight: 700;
    border-bottom-color: var(--text);
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg);
    border-radius: 8px;
    padding: 2rem;
    max-width: 520px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    float: right;
    color: var(--muted);
    transition: color 0.15s;
}

.modal-close:hover {
    color: var(--text);
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.15s;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--text);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    background: var(--border);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 0 1px var(--border);
}

.range-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 0 1px var(--border);
}

/* ===== Skeleton Loading ===== */
.skeleton {
    background: linear-gradient(90deg, var(--border) 25%, var(--surface) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Toast ===== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    transform: translateX(120%);
    transition: transform 0.2s ease;
}

.toast.show {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

.empty-state svg {
    width: 32px;
    height: 32px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* ===== Utilities ===== */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
