:root {
    --site-bg: #f1f4f8;
    --site-surface: #ffffff;
    --site-muted: #5f6b7a;
    --site-border: #d9e1ea;
    --site-primary: #1f6feb;
    --site-primary-dark: #174ea6;
    --site-accent: #0f9d7a;
}

.site-body {
    background: linear-gradient(180deg, #f8fbff 0%, var(--site-bg) 45%, #eef3f8 100%);
    color: #132033;
    min-height: 100vh;
}

.hero-section {
    background: radial-gradient(circle at top right, rgba(31, 111, 235, 0.13), transparent 40%), radial-gradient(circle at bottom left, rgba(15, 157, 122, 0.10), transparent 45%);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 111, 235, 0.2);
    color: var(--site-primary-dark);
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-image-shell {
    padding: 1rem;
    border-radius: 1.1rem;
    background: linear-gradient(165deg, #ffffff 0%, #e8f0fa 100%);
    border: 1px solid var(--site-border);
    box-shadow: 0 14px 35px rgba(18, 38, 63, 0.12);
}

.hero-image {
    border-radius: 0.8rem;
    width: 100%;
    object-fit: cover;
}

.info-card {
    border: 1px solid var(--site-border);
    border-radius: 0.95rem;
    background: var(--site-surface);
    padding: 1.2rem;
    box-shadow: 0 8px 22px rgba(17, 33, 52, 0.08);
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.8rem;
    background: rgba(31, 111, 235, 0.12);
    color: var(--site-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}

.workflow-list {
    margin: 0;
    padding-left: 1.1rem;
}

.workflow-list li {
    margin-bottom: 0.55rem;
}

.feature-panel {
    border: 1px solid var(--site-border);
    background: #f8fbff;
    border-radius: 0.95rem;
    padding: 1.25rem;
}

.feature-panel ul {
    margin: 0;
    padding-left: 1.1rem;
}

.feature-panel li {
    margin-bottom: 0.45rem;
}

.auth-shell {
    max-width: 560px;
    margin: 4rem auto;
}

.auth-card {
    border: 1px solid var(--site-border);
    border-radius: 1rem;
    box-shadow: 0 16px 32px rgba(15, 33, 57, 0.12);
}

.dashboard-card {
    border: 1px solid var(--site-border);
    border-radius: 1rem;
    background: var(--site-surface);
    box-shadow: 0 10px 26px rgba(15, 33, 57, 0.08);
}

.dashboard-section-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.badge-default-profile {
    background: rgba(15, 157, 122, 0.14);
    color: #0f6b54;
    border: 1px solid rgba(15, 157, 122, 0.3);
}

.site-footer {
    margin-top: 2rem;
}

.body-map-shell {
    position: relative;
    border: 1px solid var(--site-border);
    border-radius: 0.9rem;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    max-width: 18rem;
    margin-inline: auto;
}

.interactive-body-map {
    display: block;
    width: 100%;
    height: auto;
}

.svg-map-region {
    fill: rgba(31, 111, 235, 0.02);
    stroke: rgba(15, 33, 57, 0.22);
    stroke-width: 1.1;
    stroke-linejoin: round;
    transition: fill 0.18s ease, stroke 0.18s ease;
    cursor: pointer;
}

.svg-region-link:hover .svg-map-region,
.svg-region-link:focus .svg-map-region {
    fill: rgba(31, 111, 235, 0.18);
    stroke: rgba(31, 111, 235, 0.78);
}

.svg-map-region.is-active {
    fill: rgba(15, 157, 122, 0.28);
    stroke: rgba(15, 107, 84, 0.85);
}

.section-drill-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--site-border);
}

.note-template-panel {
    border: 1px dashed var(--site-border);
    border-radius: 0.75rem;
    background: #f8fbff;
    padding: 0.75rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 2.25rem;
    }

    .auth-shell {
        margin: 2.2rem auto;
    }

    .section-drill-panel .btn,
    .note-template-btn {
        width: 100%;
    }
}
