:root {
    --nordic-white: #fafafa;
    --nordic-sand: #f2ede4;
    --nordic-charcoal: #2c2a29;
    --border-fine: 1px solid #e5dfd5;
    --card-bg: #ffffff;
    --text-muted: #8a8276;
}
body {
    background-color: var(--nordic-white);
    color: var(--nordic-charcoal);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
}
.nordic-header {
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-fine);
    height: 65px;
    position: sticky;
    top: 0;
    z-index: 999;
}
.nordic-logo img {
    height: 38px;
    margin-top: 13px;
}
.nav-link {
    color: var(--nordic-charcoal) !important;
    font-weight: 500;
    font-size: 13px;
}
.nav-link:hover {
    color: var(--text-muted) !important;
}
.nordic-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    box-sizing: border-box;
}
.nordic-panel {
    background: var(--card-bg);
    border: var(--border-fine);
    padding: 24px;
    box-sizing: border-box;
}
.nordic-card {
    background: var(--card-bg);
    border: var(--border-fine);
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.nordic-card:hover {
    border-color: var(--nordic-charcoal);
}
.nordic-btn {
    background: var(--nordic-charcoal);
    color: #ffffff !important;
    border: none;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 24px;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.2s;
}
.nordic-btn:hover {
    opacity: 0.85;
}
.theme-switch-btn {
    width: 16px;
    height: 16px;
    border: 1px solid var(--nordic-charcoal);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: inline-block;
}
.theme-switch-btn:hover {
    background: var(--nordic-charcoal);
}
@media (max-width: 992px) {
    .nordic-grid {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
}
