:root {
    --bg-primary: #080C14;
    --bg-secondary: #0D1321;
    --bg-surface: rgba(13, 22, 38, 0.75);
    --bg-surface-elevated: rgba(19, 31, 54, 0.85);
    --bg-panel-overlay: rgba(6, 11, 20, 0.92);
    --text-primary: #F0F6FC;
    --text-secondary: #8B9BB4;
    --text-muted: #8B9BB4;
    --accent-cyan: #00F0FF;
    --accent-cyan-glow: rgba(0, 240, 255, 0.35);
    --accent-emerald: #10B981;
    --accent-amber: #F59E0B;
    --accent-red: #EF4444;
    --accent-blue: #3B82F6;
    --border-subtle: rgba(148, 163, 184, 0.12);
    --border-active: rgba(0, 240, 255, 0.45);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-muted {
    color: var(--text-muted) !important;
}

.hud-dark-theme {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center top;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
}

a:hover {
    color: #67e8f9;
}

/* ===== header ===== */
.hud-site-header {
    background-color: #080C14;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 1030;
    position: sticky;
    top: 0;
    width: 100%;
}

.hud-site-header .hud-navbar {
    background-color: #080C14;
    padding: 0.85rem 0;
}

.hud-site-header .hud-brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.hud-site-header .hud-brand-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F0F6FC;
    line-height: 1.1;
}

.hud-site-header .hud-brand-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: #00F0FF;
    font-weight: 500;
}

.hud-site-header .hud-toggler {
    border: 1px solid rgba(0, 240, 255, 0.35);
    background-color: #0D1321;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    box-shadow: none;
}

.hud-site-header .hud-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
    outline: none;
}

.hud-site-header .hud-toggler-icon {
    font-size: 1.35rem;
    color: #00F0FF;
    display: block;
}

.hud-site-header .hud-nav-list {
    gap: 0.25rem;
}

/* Header navigation: single row on desktop, no wrapping */
@media (min-width: 992px) {
    .hud-site-header .hud-nav-collapse {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .hud-site-header .hud-nav-list {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }
    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.6rem !important;
    }
}

/* Burger menu: ensure collapsed state is hidden / shown reliably (mobile only) */
@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse:not(.show) {
        display: none !important;
    }
    .hud-site-header .hud-nav-collapse.show {
        display: block !important;
    }
}

.hud-site-header .hud-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #8B9BB4 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.hud-site-header .hud-nav-link:hover,
.hud-site-header .hud-nav-link:focus {
    color: #00F0FF !important;
    background-color: rgba(0, 240, 255, 0.06);
}

.hud-site-header .hud-cta-btn {
    background-color: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.15rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.hud-site-header .hud-cta-btn:hover,
.hud-site-header .hud-cta-btn:focus {
    background-color: #00F0FF;
    color: #080C14;
}

@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse {
        background-color: #0D1321;
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 6px;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .hud-site-header .hud-nav-list {
        gap: 0.15rem;
        margin-bottom: 0.75rem !important;
    }

    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
    }

    .hud-site-header .hud-header-action {
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(148, 163, 184, 0.12);
    }

    .hud-site-header .hud-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== hero ===== */
.stockpoint-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stockpoint-hero__bg-wrap {
    z-index: 1;
    pointer-events: none;
}

.stockpoint-hero__video {
    opacity: 0.28;
    filter: saturate(1.2) contrast(1.1);
}

.stockpoint-hero__scrim {
    background: radial-gradient(circle at 50% 30%, rgba(8, 12, 20, 0.45) 0%, rgba(8, 12, 20, 0.94) 100%);
}

.stockpoint-hero__grid {
    background-size: 32px 32px;
    background-image: linear-gradient(to right, rgba(0, 240, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
}

.stockpoint-hero .container {
    z-index: 2;
}

.stockpoint-hero__card {
    background: rgba(13, 22, 38, 0.88);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 240, 255, 0.08);
}

.stockpoint-hero__corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: #00F0FF;
    pointer-events: none;
}

.stockpoint-hero__corner--tl {
    top: -1px;
    start: -1px;
    left: -1px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.stockpoint-hero__corner--tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.stockpoint-hero__corner--bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.stockpoint-hero__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.stockpoint-hero__telemetry-tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 4px;
}

.stockpoint-hero__pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00F0FF;
    display: inline-block;
    box-shadow: 0 0 8px #00F0FF;
}

.stockpoint-hero__tag-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #00F0FF;
    font-weight: 600;
}

.stockpoint-hero__hud-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
}

.stockpoint-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.stockpoint-hero__subtitle {
    font-size: clamp(0.92rem, 1.25vw, 1.15rem);
    line-height: 1.6;
    color: #BAC7D5;
    max-width: 860px;
}

.stockpoint-hero__stat-pill {
    background: rgba(19, 31, 54, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
}

.stockpoint-hero__stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stockpoint-hero__stat-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #F0F6FC;
}

.stockpoint-hero .text-cyan {
    color: #00F0FF;
}

.stockpoint-hero__btn-primary {
    background: #00F0FF;
    color: #080C14;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    border: 1px solid #00F0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
}

.stockpoint-hero__btn-primary:hover,
.stockpoint-hero__btn-primary:focus {
    background: #5df7ff;
    color: #080C14;
    border-color: #5df7ff;
}

.stockpoint-hero__btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stockpoint-hero__btn-secondary:hover,
.stockpoint-hero__btn-secondary:focus {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.6);
}

@media (max-width: 767.98px) {
    .stockpoint-hero__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .stockpoint-hero__subtitle {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    .stockpoint-hero__stat-val {
        font-size: 0.8rem;
    }
}

/* ===== core_concepts ===== */
.core-concepts-section {
    background-color: #080C14;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.core-concepts-section__badge {
    background-color: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
}

.core-concepts-section__status-dot {
    width: 6px;
    height: 6px;
    background-color: #00F0FF;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

.core-concepts-section__badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #00F0FF;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.core-concepts-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #F0F6FC;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.core-concepts-section__lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8B9BB4;
    font-size: 1rem;
    line-height: 1.6;
}

.core-concepts-section__nav-tabs {
    background-color: rgba(13, 22, 38, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 4px;
}

.core-concepts-section__tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.core-concepts-section__tab-btn:hover {
    color: #F0F6FC;
    border-color: rgba(0, 240, 255, 0.3);
    background-color: rgba(0, 240, 255, 0.04);
}

.core-concepts-section__tab-btn.active {
    color: #00F0FF;
    background-color: rgba(0, 240, 255, 0.12);
    border-color: #00F0FF;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.15);
}

.core-concepts-section__card {
    background-color: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.core-concepts-section__card:hover {
    border-color: rgba(0, 240, 255, 0.6);
    background-color: rgba(19, 31, 54, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.core-concepts-section__icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 3px;
    color: #00F0FF;
    font-size: 1.35rem;
}

.core-concepts-section__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.core-concepts-section__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
}

.core-concepts-section__card-link {
    color: #F0F6FC;
    text-decoration: none;
    transition: color 0.15s ease;
}

.core-concepts-section__card-link:hover {
    color: #00F0FF;
}

.core-concepts-section__card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #8B9BB4;
    font-size: 0.88rem;
    line-height: 1.55;
}

.core-concepts-section .border-secondary-subtle {
    border-color: rgba(148, 163, 184, 0.12) !important;
}

.core-concepts-section__metric-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #8B9BB4;
}

.core-concepts-section__action-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.core-concepts-section__action-btn:hover {
    background-color: #00F0FF;
    color: #080C14;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.core-concepts-section__action-btn i {
    transition: transform 0.2s ease;
}

.core-concepts-section__action-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .core-concepts-section__title {
        font-size: 1.35rem;
    }

    .core-concepts-section__card-title {
        font-size: 1.05rem;
    }

    .core-concepts-section__tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== field_materials ===== */
.stockpoint-materials {
    background-color: #080C14;
    color: #F0F6FC;
    position: relative;
}

.stockpoint-materials .stockpoint-materials__tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
}

.stockpoint-materials .stockpoint-materials__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00F0FF;
    display: inline-block;
}

.stockpoint-materials .stockpoint-materials__tag-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #00F0FF;
}

.stockpoint-materials .stockpoint-materials__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: #F0F6FC;
}

.stockpoint-materials .stockpoint-materials__subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #8B9BB4;
    max-width: 640px;
}

.stockpoint-materials .stockpoint-materials__filter-btn {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.stockpoint-materials .stockpoint-materials__filter-btn:hover,
.stockpoint-materials .stockpoint-materials__filter-btn.active {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    color: #00F0FF;
}

.stockpoint-materials .stockpoint-materials__card {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.stockpoint-materials .stockpoint-materials__card:hover {
    border-color: rgba(0, 240, 255, 0.6);
}

.stockpoint-materials .stockpoint-materials__img-container {
    height: 170px;
    overflow: hidden;
    background-color: #0D1321;
}

.stockpoint-materials .stockpoint-materials__img-link {
    height: 100%;
}

.stockpoint-materials .stockpoint-materials__img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.stockpoint-materials .stockpoint-materials__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(6, 11, 20, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.stockpoint-materials .stockpoint-materials__category-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #10B981;
    letter-spacing: 0.03em;
}

.stockpoint-materials .stockpoint-materials__author-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    color: #8B9BB4;
}

.stockpoint-materials .stockpoint-materials__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
}

.stockpoint-materials .stockpoint-materials__title-link {
    color: #F0F6FC;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stockpoint-materials .stockpoint-materials__title-link:hover {
    color: #00F0FF;
}

.stockpoint-materials .stockpoint-materials__card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #8B9BB4;
}

.stockpoint-materials .stockpoint-materials__btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.stockpoint-materials .stockpoint-materials__btn:hover {
    background: #00F0FF;
    color: #080C14;
}

@media (max-width: 767.98px) {
    .stockpoint-materials .stockpoint-materials__title {
        font-size: 16px;
        hyphens: auto;
    }

    .stockpoint-materials .stockpoint-materials__card-title {
        font-size: 14px;
        hyphens: auto;
    }

    .stockpoint-materials .stockpoint-materials__filter-btn {
        font-size: 0.72rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ===== featured_case_the_part_was_in_stock ===== */
.case-study-distance {
    background-color: #080C14;
    color: #F0F6FC;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12)
}

.case-study-distance__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.3rem 0.65rem;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase
}

.case-study-distance__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #8B9BB4;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 0.3rem 0.65rem;
    display: inline-flex;
    align-items: center
}

.case-study-distance__title {
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
}

.case-study-distance__lead {
    color: #8B9BB4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 880px;
    margin-bottom: 0
}

.case-study-distance__card {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
    padding: 1.5rem;
    position: relative;
    backdrop-filter: blur(12px)
}

.case-study-distance__card-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding-bottom: 0.85rem
}

.case-study-distance__card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: #F0F6FC;
    font-weight: 600;
    display: inline-flex;
    align-items: center
}

.case-study-distance__mono-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(0, 240, 255, 0.2)
}

.case-study-distance__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.case-study-distance__timeline-item {
    display: flex;
    gap: 1rem;
    position: relative
}

.case-study-distance__step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.case-study-distance__step-body {
    flex-grow: 1
}

.case-study-distance__step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.case-study-distance__step-text {
    font-size: 0.88rem;
    color: #8B9BB4;
    line-height: 1.55;
    margin-bottom: 0
}

.case-study-distance__metric-box {
    background: rgba(19, 31, 54, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1rem
}

.case-study-distance__metric-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
    text-transform: uppercase
}

.case-study-distance__metric-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700
}

.case-study-distance__metric-sub {
    font-size: 0.78rem;
    color: #8B9BB4;
    margin-top: 0.4rem;
    display: block
}

.case-study-distance__progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    overflow: hidden;
    margin-top: 0.35rem
}

.case-study-distance__progress-bar {
    height: 100%
}

.case-study-distance__callout {
    background: rgba(0, 240, 255, 0.04);
    border-left: 3px solid #00F0FF;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    border-right: 1px solid rgba(0, 240, 255, 0.15);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15)
}

.case-study-distance__callout-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    flex-shrink: 0
}

.case-study-distance__callout-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #F0F6FC;
    margin-bottom: 0.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.case-study-distance__callout-text {
    font-size: 0.85rem;
    color: #8B9BB4;
    line-height: 1.5
}

.case-study-distance__interactive-panel {
    background: rgba(13, 22, 38, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.03)
}

.case-study-distance__panel-title {
    color: #F0F6FC;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.case-study-distance__panel-text {
    color: #8B9BB4;
    font-size: 0.9rem;
    line-height: 1.5
}

.case-study-distance__toggle-group {
    display: flex;
    gap: 0.5rem
}

.case-study-distance__toggle-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: all 0s;
    display: inline-flex;
    align-items: center
}

.case-study-distance__toggle-btn:hover {
    color: #F0F6FC;
    border-color: rgba(0, 240, 255, 0.5)
}

.case-study-distance__toggle-btn.active {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    color: #00F0FF;
    font-weight: 700
}

.case-study-distance__stat-card {
    background: rgba(19, 31, 54, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 1.15rem
}

.case-study-distance__stat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.35rem
}

.case-study-distance__stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #00F0FF;
    margin-bottom: 0.25rem
}

.case-study-distance__stat-desc {
    font-size: 0.82rem;
    color: #8B9BB4;
    line-height: 1.4
}

.case-study-distance__btn-primary {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.case-study-distance__btn-primary:hover {
    background: #00F0FF;
    color: #080C14;
    border-color: #00F0FF
}

.case-study-distance__btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.75rem 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.case-study-distance__btn-secondary:hover {
    border-color: #00F0FF;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.05)
}

@media(max-width:767.98px) {
    .case-study-distance__title {
        font-size: 1.25rem;
        hyphens: auto
    }

    .case-study-distance__panel-title {
        font-size: 1.05rem;
        hyphens: auto
    }

    .case-study-distance__step-title {
        font-size: 0.95rem
    }

    .case-study-distance__callout-title {
        font-size: 0.9rem
    }

    .case-study-distance__btn-primary,
    .case-study-distance__btn-secondary {
        width: 100%
    }
}

/* ===== point_of_use_inventory_questions_for_teams_working_with_fastenal ===== */
.brand-support-fastenal-section {
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.brand-support-fastenal-section .hud-panel {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.brand-support-fastenal-section .telemetry-dot {
    width: 8px;
    height: 8px;
    background-color: #00F0FF;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

.brand-support-fastenal-section .telemetry-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: #00F0FF;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-support-fastenal-section .telemetry-divider {
    color: #4E5D78;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.brand-support-fastenal-section .telemetry-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
}

.brand-support-fastenal-section .section-title {
    font-size: clamp(1.4rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: #F0F6FC;
    letter-spacing: -0.02em;
}

.brand-support-fastenal-section .lead-copy {
    font-size: 1rem;
    line-height: 1.65;
    color: #8B9BB4;
}

.brand-support-fastenal-section .hud-callout {
    background: rgba(0, 240, 255, 0.04);
    border-left: 3px solid #00F0FF;
    border-radius: 0 6px 6px 0;
}

.brand-support-fastenal-section .hud-callout-icon {
    font-size: 1.5rem;
    color: #00F0FF;
    line-height: 1;
}

.brand-support-fastenal-section .callout-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: #F0F6FC;
}

.brand-support-fastenal-section .callout-body {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #8B9BB4;
}

.brand-support-fastenal-section .metric-card {
    background: rgba(19, 31, 54, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
}

.brand-support-fastenal-section .metric-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #8B9BB4;
    letter-spacing: 0.06em;
}

.brand-support-fastenal-section .metric-icon {
    font-size: 1rem;
    color: #00F0FF;
}

.brand-support-fastenal-section .metric-value {
    font-size: 1rem;
    font-weight: 600;
    color: #F0F6FC;
}

.brand-support-fastenal-section .metric-note {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #8B9BB4;
}

.brand-support-fastenal-section .interactive-container {
    background: rgba(6, 11, 20, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
}

.brand-support-fastenal-section .border-hud-subtle {
    border-color: rgba(148, 163, 184, 0.12) !important;
}

.brand-support-fastenal-section .matrix-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #F0F6FC;
}

.brand-support-fastenal-section .matrix-subheading {
    font-size: 0.8rem;
    color: #8B9BB4;
}

.brand-support-fastenal-section .hud-tab-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #8B9BB4;
    border-radius: 4px;
    cursor: pointer;
}

.brand-support-fastenal-section .hud-tab-btn.active {
    background: rgba(0, 240, 255, 0.12);
    border-color: #00F0FF;
    color: #00F0FF;
}

.brand-support-fastenal-section .diagnostic-item {
    background: rgba(19, 31, 54, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 6px;
}

.brand-support-fastenal-section .diag-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: #F0F6FC;
}

.brand-support-fastenal-section .diag-text {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #8B9BB4;
}

.brand-support-fastenal-section .status-indicator-amber {
    color: #F59E0B;
    font-size: 1rem;
}

.brand-support-fastenal-section .status-indicator-emerald {
    color: #10B981;
    font-size: 1rem;
}

.brand-support-fastenal-section .status-indicator-cyan {
    color: #00F0FF;
    font-size: 1rem;
}

.brand-support-fastenal-section .footer-tech-icon {
    color: #00F0FF;
    font-size: 1.1rem;
}

.brand-support-fastenal-section .footer-guidance-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #8B9BB4;
}

.brand-support-fastenal-section .hud-action-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00F0FF;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
}

.brand-support-fastenal-section .hud-action-btn:hover {
    background: rgba(0, 240, 255, 0.22);
    color: #FFFFFF;
    border-color: #00F0FF;
}

@media (max-width: 767.98px) {
    .brand-support-fastenal-section .section-title {
        font-size: 1.15rem;
        hyphens: auto;
    }

    .brand-support-fastenal-section .matrix-heading {
        font-size: 0.95rem;
    }

    .brand-support-fastenal-section .callout-heading {
        font-size: 0.95rem;
    }

    .brand-support-fastenal-section .hud-action-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== mro_dictionary ===== */
.mro-dictionary-section {
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    overflow: hidden
}

.mro-dictionary-section .mro-dict-hud-badge {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 2px
}

.mro-dictionary-section .mro-dict-led {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #00F0FF;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.8)
}

.mro-dictionary-section .mro-dict-badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #00F0FF;
    letter-spacing: 0.08em;
    font-weight: 600
}

.mro-dictionary-section .mro-dict-title {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2
}

.mro-dictionary-section .mro-dict-subtitle {
    color: #8B9BB4;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 680px
}

.mro-dictionary-section .mro-dict-filter-group {
    background: rgba(13, 19, 33, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 0.4rem;
    border-radius: 4px
}

.mro-dictionary-section .mro-dict-filter-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center
}

.mro-dictionary-section .mro-dict-filter-btn:hover {
    color: #F0F6FC;
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05)
}

.mro-dictionary-section .mro-dict-filter-btn.active {
    background: rgba(0, 240, 255, 0.12);
    border-color: #00F0FF;
    color: #00F0FF;
    font-weight: 600
}

.mro-dictionary-section .mro-dict-card {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 3px;
    position: relative
}

.mro-dictionary-section .mro-dict-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.03)
}

.mro-dictionary-section .mro-dict-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #00F0FF;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.25rem
}

.mro-dictionary-section .mro-dict-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #F0F6FC
}

.mro-dictionary-section .mro-dict-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #8B9BB4;
    background: rgba(19, 31, 54, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase
}

.mro-dictionary-section .mro-dict-definition {
    color: #8B9BB4;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 1rem 0;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(0, 240, 255, 0.4)
}

.mro-dictionary-section .mro-dict-card-footer {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.08)
}

.mro-dictionary-section .mro-dict-link {
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.02em
}

.mro-dictionary-section .mro-dict-link:hover {
    color: #FFFFFF;
    text-decoration: underline
}

.mro-dictionary-section .mro-dict-callout {
    background: rgba(13, 22, 38, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 3px;
    max-width: 880px;
    width: 100%
}

.mro-dictionary-section .mro-dict-callout-icon {
    font-size: 1.75rem;
    color: #00F0FF
}

.mro-dictionary-section .mro-dict-callout-desc {
    color: #8B9BB4;
    font-size: 0.85rem
}

.mro-dictionary-section .mro-dict-cta-btn {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 600
}

.mro-dictionary-section .mro-dict-cta-btn:hover {
    background: #00F0FF;
    color: #080C14
}

.mro-dictionary-section .js-dict-item.is-hidden {
    display: none
}

@media(max-width:767.98px) {
    .mro-dictionary-section .mro-dict-title {
        font-size: 16px;
        hyphens: auto
    }

    .mro-dictionary-section .mro-dict-name {
        font-size: 14px
    }

    .mro-dictionary-section .mro-dict-filter-group {
        flex-direction: column;
        width: 100%
    }

    .mro-dictionary-section .mro-dict-filter-btn {
        width: 100%;
        justify-content: center
    }

    .mro-dictionary-section .mro-dict-callout {
        text-align: center
    }

    .mro-dictionary-section .mro-dict-callout-desc {
        font-size: 0.8rem
    }
}

/* ===== book_a_consultation ===== */
.hud-consultation-section {
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.hud-consultation-section .hud-diagnostic-frame {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.hud-consultation-section .hud-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.hud-consultation-section .hud-title {
    color: #F0F6FC;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
}

.hud-consultation-section .hud-lead-text {
    color: #8B9BB4;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hud-consultation-section .telemetry-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: #00F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 3px;
}

.hud-consultation-section .telemetry-item-title {
    color: #F0F6FC;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.hud-consultation-section .telemetry-item-desc {
    color: #8B9BB4;
    font-size: 0.85rem;
    line-height: 1.45;
}

.hud-consultation-section .telemetry-status-box {
    background: rgba(6, 11, 20, 0.75);
    border: 1px dashed rgba(148, 163, 184, 0.2);
    border-radius: 3px;
}

.hud-consultation-section .status-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
}

.hud-consultation-section .status-ping {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 600;
}

.hud-consultation-section .status-meta {
    font-size: 0.8rem;
    color: #8B9BB4;
    line-height: 1.4;
}

.hud-consultation-section .text-emerald {
    color: #10B981 !important;
}

.hud-consultation-section .hud-form-wrapper {
    background: rgba(6, 11, 20, 0.92);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 1.75rem;
    border-radius: 3px;
    position: relative;
}

.hud-consultation-section .terminal-indicator {
    width: 8px;
    height: 8px;
    background: #00F0FF;
    border-radius: 50%;
    box-shadow: 0 0 8px #00F0FF;
}

.hud-consultation-section .form-block-title {
    color: #F0F6FC;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.hud-consultation-section .protocol-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.06);
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 2px;
}

.hud-consultation-section .hud-form-label {
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    display: block;
    font-weight: 500;
}

.hud-consultation-section .hud-form-control {
    width: 100%;
    background: #0D1321;
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: #F0F6FC;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
    border-radius: 2px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hud-consultation-section .hud-form-control:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
    background: #131F36;
    color: #F0F6FC;
}

.hud-consultation-section .hud-form-control::placeholder {
    color: #8B9BB4;
    opacity: 0.9;
    font-size: 0.82rem;
}

.hud-consultation-section .hud-select-wrapper {
    position: relative;
}

.hud-consultation-section .hud-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.2rem;
    cursor: pointer;
}

.hud-consultation-section .hud-select option {
    background-color: #0D1321;
    color: #F0F6FC;
}

.hud-consultation-section .select-arrow-icon {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #00F0FF;
    font-size: 1.1rem;
}

.hud-consultation-section .hud-radio-card {
    background: #0D1321;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.hud-consultation-section .hud-radio-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
}

.hud-consultation-section .hud-radio-card.active {
    border-color: #00F0FF;
    background: rgba(0, 240, 255, 0.08);
    box-shadow: inset 0 0 0 1px #00F0FF;
}

.hud-consultation-section .radio-title {
    color: #F0F6FC;
    font-size: 0.88rem;
    font-weight: 600;
}

.hud-consultation-section .radio-subtitle {
    color: #8B9BB4;
    font-size: 0.75rem;
}

.hud-consultation-section .hud-radio-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.12);
    padding: 0.2rem 0.45rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.hud-consultation-section .hud-slot-card {
    display: block;
    background: #0D1321;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 3px;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.hud-consultation-section .hud-slot-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
}

.hud-consultation-section .hud-slot-card.active {
    border-color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: inset 0 0 0 1px #00F0FF;
}

.hud-consultation-section .slot-time {
    font-family: 'JetBrains Mono', monospace;
    color: #F0F6FC;
    font-size: 0.85rem;
    font-weight: 700;
}

.hud-consultation-section .slot-zone {
    color: #8B9BB4;
    font-size: 0.7rem;
}

.hud-consultation-section .hud-textarea {
    resize: vertical;
    min-height: 85px;
}

.hud-consultation-section .hud-submit-btn {
    background: #00F0FF;
    border: 1px solid #00F0FF;
    color: #080C14;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}

.hud-consultation-section .hud-submit-btn:hover {
    background: #5ef5ff;
    color: #080C14;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

@media (max-width: 767.98px) {
    .hud-consultation-section .hud-diagnostic-frame {
        padding: 1.25rem;
    }

    .hud-consultation-section .hud-form-wrapper {
        padding: 1.25rem;
    }

    .hud-consultation-section .hud-title {
        font-size: 1.25rem;
    }

    .hud-consultation-section .form-block-title {
        font-size: 1rem;
    }
}

/* ===== trusted_by ===== */
.stockpoint-trusted-strip {
    background-color: #080C14;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    position: relative;
}

.stockpoint-trusted-strip__wrapper {
    background: rgba(13, 22, 38, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 4px;
    position: relative;
}

.stockpoint-trusted-strip__wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 12px;
    width: 24px;
    height: 2px;
    background: #00F0FF;
}

.stockpoint-trusted-strip__wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 12px;
    width: 24px;
    height: 2px;
    background: #00F0FF;
}

.stockpoint-trusted-strip__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #10B981;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.stockpoint-trusted-strip__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.35;
    color: #8B9BB4;
}

.stockpoint-trusted-strip__brand-card {
    background: rgba(19, 31, 54, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 3px;
    padding: 0.65rem 0.5rem;
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0s, background 0s;
}

.stockpoint-trusted-strip__brand-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
    background: rgba(19, 31, 54, 0.65);
}

.stockpoint-trusted-strip__brand-svg {
    width: 100%;
    max-width: 84px;
    height: 18px;
    color: #4E5D78;
    opacity: 0.85;
    transition: color 0s, opacity 0s;
}

.stockpoint-trusted-strip__brand-card:hover .stockpoint-trusted-strip__brand-svg {
    color: #8B9BB4;
    opacity: 1;
}

.stockpoint-trusted-strip__brand-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #64748B;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.stockpoint-trusted-strip__brand-card:hover .stockpoint-trusted-strip__brand-name {
    color: #00F0FF;
}

@media (max-width: 767.98px) {
    .stockpoint-trusted-strip__brand-card {
        padding: 0.5rem 0.25rem;
        min-height: 56px;
    }

    .stockpoint-trusted-strip__title {
        font-size: 0.75rem;
        text-align: center;
    }

    .stockpoint-trusted-strip__brand-name {
        font-size: 0.55rem;
    }

    .stockpoint-trusted-strip__brand-svg {
        max-width: 68px;
        height: 16px;
    }
}

/* ===== what_is_included_vs_what_is_not ===== */
.sp-scope-block {
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.sp-scope-block__badge {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 4px;
}

.sp-scope-block__status-dot {
    width: 6px;
    height: 6px;
    background-color: #00F0FF;
    border-radius: 50%;
    box-shadow: 0 0 8px #00F0FF;
    display: inline-block;
}

.sp-scope-block__badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #00F0FF;
    font-weight: 600;
}

.sp-scope-block__title {
    color: #F0F6FC;
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.sp-scope-block__lead {
    color: #8B9BB4;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.sp-scope-block__card {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 6px;
    position: relative;
}

.sp-scope-block__card--included {
    border-top: 3px solid #10B981;
}

.sp-scope-block__card--excluded {
    border-top: 3px solid #EF4444;
}

.sp-scope-block__card-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.sp-scope-block__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.sp-scope-block__icon-box--included {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.sp-scope-block__icon-box--excluded {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.sp-scope-block__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}

.sp-scope-block__tag--included {
    color: #10B981;
}

.sp-scope-block__tag--excluded {
    color: #EF4444;
}

.sp-scope-block__card-title {
    color: #F0F6FC;
    font-size: 1.25rem;
    font-weight: 700;
}

.sp-scope-block__count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #8B9BB4;
    background: rgba(19, 31, 54, 0.9);
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    white-space: nowrap;
}

.sp-scope-block__item {
    background: rgba(19, 31, 54, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 4px;
}

.sp-scope-block__item-icon {
    font-size: 1.2rem;
    line-height: 1.3;
    flex-shrink: 0;
    margin-top: 1px;
}

.sp-scope-block__item-icon--included {
    color: #10B981;
}

.sp-scope-block__item-icon--excluded {
    color: #EF4444;
}

.sp-scope-block__item-heading {
    color: #F0F6FC;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.sp-scope-block__item-desc {
    color: #8B9BB4;
    font-size: 0.82rem;
    line-height: 1.5;
}

.sp-scope-block__card-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.sp-scope-block__btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
}

.sp-scope-block__btn--primary {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
}

.sp-scope-block__btn--primary:hover,
.sp-scope-block__btn--primary:focus {
    background: #00F0FF;
    color: #080C14;
    border-color: #00F0FF;
}

.sp-scope-block__btn--secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #F0F6FC;
}

.sp-scope-block__btn--secondary:hover,
.sp-scope-block__btn--secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #F0F6FC;
    color: #F0F6FC;
}

@media (max-width: 767.98px) {
    .sp-scope-block__title {
        font-size: 16px;
        hyphens: auto;
    }

    .sp-scope-block__card-title {
        font-size: 14px;
    }

    .sp-scope-block__item-heading {
        font-size: 13px;
    }

    .sp-scope-block__item-desc {
        font-size: 12px;
    }

    .sp-scope-block__btn {
        font-size: 0.75rem;
        padding: 0.65rem 1rem;
    }
}

/* ===== footer ===== */
.hud-footer {
    background-color: #080C14;
    color: #8B9BB4;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hud-footer .hud-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.6) 50%, transparent 100%);
}

.hud-footer .hud-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #F0F6FC;
    letter-spacing: -0.02em;
}

.hud-footer .hud-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.hud-footer .hud-footer-desc {
    color: #8B9BB4;
    font-size: 0.9rem;
    max-width: 360px;
}

.hud-footer .hud-status-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    gap: 0.5rem;
}

.hud-footer .hud-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.hud-footer .hud-status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #10B981;
    letter-spacing: 0.05em;
}

.hud-footer .hud-footer-heading {
    color: #F0F6FC;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hud-footer .hud-footer-link {
    color: #8B9BB4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link i {
    font-size: 1rem;
    color: #4E5D78;
    margin-right: 0.25rem;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link:hover {
    color: #00F0FF;
}

.hud-footer .hud-footer-link:hover i {
    color: #00F0FF;
}

.hud-footer .hud-footer-contact-panel {
    background: rgba(13, 22, 38, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
    padding: 1.25rem;
}

.hud-footer .hud-contact-icon {
    color: #00F0FF;
    font-size: 1.1rem;
}

.hud-footer .hud-contact-val {
    font-size: 0.88rem;
    color: #8B9BB4;
}

.hud-footer .hud-footer-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.1);
}

.hud-footer .hud-footer-copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
}

.hud-footer .hud-legal-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
    text-decoration: none;
}

.hud-footer .hud-legal-link:hover {
    color: #00F0FF;
    text-decoration: underline;
}

.hud-footer .hud-legal-separator {
    color: #4E5D78;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .hud-footer .hud-footer-heading {
        font-size: 0.88rem;
    }

    .hud-footer .hud-footer-brand-text {
        font-size: 1.1rem;
    }

    .hud-footer .hud-footer-desc {
        font-size: 0.85rem;
    }

    .hud-footer .hud-footer-contact-panel {
        padding: 1rem;
    }
}

/* ===== PAGE: brand-support ===== */
.fastenal-review-page { background-color: #080C14; color: #F0F6FC; font-family: 'Plus Jakarta Sans', sans-serif; }
.fastenal-review-page__hud-header { border-bottom: 1px solid rgba(148, 163, 184, 0.12); padding-bottom: 1.5rem; }
.fastenal-review-page__badge { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #00F0FF; background: rgba(0, 240, 255, 0.08); border: 1px solid rgba(0, 240, 255, 0.3); padding: 0.25rem 0.6rem; border-radius: 2px; text-transform: uppercase; }
.fastenal-review-page__status { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #10B981; display: inline-flex; align-items: center; gap: 0.4rem; }
.fastenal-review-page__status-dot { width: 8px; height: 8px; background-color: #10B981; border-radius: 50%; display: inline-block; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }
.fastenal-review-page__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #F0F6FC; line-height: 1.25; }
.fastenal-review-page__lead { color: #8B9BB4; font-size: 1.05rem; line-height: 1.6; max-width: 950px; }
.fastenal-review-page__panel { background: rgba(13, 22, 38, 0.85); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 4px; position: relative; overflow: hidden; }
.fastenal-review-page__panel-head { background: rgba(19, 31, 54, 0.6); border-bottom: 1px solid rgba(148, 163, 184, 0.12); padding: 1rem 1.5rem; display: flex; align-items: center; }
.fastenal-review-page__h2 { font-size: 1.25rem; font-weight: 600; color: #F0F6FC; line-height: 1.3; }
.fastenal-review-page__h3 { font-size: 1.1rem; font-weight: 600; color: #F0F6FC; line-height: 1.3; }
.fastenal-review-page__panel-body { padding: 1.5rem; }
.fastenal-review-page__metric-card { background: rgba(19, 31, 54, 0.5); border: 1px solid rgba(148, 163, 184, 0.12); border-left: 3px solid #00F0FF; padding: 1rem; border-radius: 2px; height: 100%; }
.fastenal-review-page__metric-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #8B9BB4; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.fastenal-review-page__metric-sub { font-size: 0.85rem; color: #8B9BB4; line-height: 1.4; }
.fastenal-review-page__image-wrap { border: 1px solid rgba(0, 240, 255, 0.25); border-radius: 4px; overflow: hidden; background: #060B14; }
.fastenal-review-page__img { width: 100%; height: 220px; object-fit: cover; display: block; }
.fastenal-review-page__callout { background: rgba(0, 240, 255, 0.04); border-left: 3px solid #00F0FF; padding: 0.85rem 1rem; }
.fastenal-review-page__inline-link { color: #00F0FF; text-decoration: underline; text-underline-offset: 3px; }
.fastenal-review-page__inline-link:hover { color: #8B9BB4; }
.fastenal-review-page__telemetry-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #8B9BB4; background: rgba(255, 255, 255, 0.05); padding: 0.2rem 0.5rem; border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 2px; }
.fastenal-review-page__label { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: #8B9BB4; text-transform: uppercase; display: block; }
.fastenal-review-page__select { background-color: #0D1321; border: 1px solid rgba(148, 163, 184, 0.3); color: #F0F6FC; font-size: 0.9rem; padding: 0.6rem 0.85rem; border-radius: 4px; }
.fastenal-review-page__select:focus { background-color: #0D1321; color: #F0F6FC; border-color: #00F0FF; box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.25); }
.fastenal-review-page__select option { background-color: #0D1321; color: #F0F6FC; }
.fastenal-review-page__result-box { background: rgba(6, 11, 20, 0.95); border: 1px solid rgba(0, 240, 255, 0.4); border-radius: 4px; }
.fastenal-review-page__result-sub { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: #8B9BB4; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 0.25rem; }
.fastenal-review-page__list { list-style: none; }
.fastenal-review-page__list-item { display: flex; align-items: flex-start; padding: 0.75rem 0; border-bottom: 1px solid rgba(148, 163, 184, 0.08); font-size: 0.92rem; color: #8B9BB4; }
.fastenal-review-page__list-item:last-child { border-bottom: none; }
.fastenal-review-page__data-table-wrapper { overflow-x: auto; }
.fastenal-review-page__table { border-collapse: separate; border-spacing: 0 6px; font-size: 0.88rem; }
.fastenal-review-page__table th { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: #8B9BB4; padding: 0.5rem 0.75rem; text-transform: uppercase; border-bottom: 1px solid rgba(148, 163, 184, 0.2); }
.fastenal-review-page__table td { background: rgba(19, 31, 54, 0.5); color: #F0F6FC; padding: 0.75rem; border: 1px solid rgba(148, 163, 184, 0.1); }
.fastenal-review-page__action-strip { background: rgba(13, 22, 38, 0.9); border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 4px; }
.fastenal-review-page__action-icon { width: 44px; height: 44px; border-radius: 4px; background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); display: flex; align-items: center; justify-content: center; color: #00F0FF; font-size: 1.4rem; flex-shrink: 0; }
.fastenal-review-page__btn-primary { background: rgba(0, 240, 255, 0.15); border: 1px solid #00F0FF; color: #00F0FF; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; padding: 0.6rem 1.25rem; text-transform: uppercase; font-weight: 600; border-radius: 2px; }
.fastenal-review-page__btn-primary:hover { background: #00F0FF; color: #080C14; }
.fastenal-review-page__btn-secondary { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(148, 163, 184, 0.3); color: #F0F6FC; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; padding: 0.6rem 1.25rem; text-transform: uppercase; border-radius: 2px; }
.fastenal-review-page__btn-secondary:hover { background: rgba(255, 255, 255, 0.12); color: #FFFFFF; border-color: #F0F6FC; }
.text-cyan { color: #00F0FF !important; }
.text-emerald { color: #10B981 !important; }
@media (max-width: 767.98px) {
  .fastenal-review-page__title { font-size: 1.125rem; hyphens: auto; }
  .fastenal-review-page__h2 { font-size: 1rem; }
  .fastenal-review-page__h3 { font-size: 0.875rem; }
}

/* ===== PAGE: criticality-analysis ===== */
.mro-criticality-section {
  background-color: #080C14;
  color: #F0F6FC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

.mro-criticality-section__badge {
  background-color: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.35);
}

.mro-criticality-section__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00F0FF;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  display: inline-block;
}

.mro-criticality-section__badge-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #00F0FF;
  text-transform: uppercase;
}

.mro-criticality-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #F0F6FC;
  letter-spacing: -0.02em;
}

.mro-criticality-section__subtitle {
  color: #8B9BB4;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 800px;
}

.mro-criticality-section__toolbar {
  background-color: rgba(13, 22, 38, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.mro-criticality-section__input-icon {
  background-color: #080C14;
  border-color: rgba(148, 163, 184, 0.25);
  color: #00F0FF;
}

.mro-criticality-section__search-input {
  background-color: #080C14;
  border-color: rgba(148, 163, 184, 0.25);
  color: #F0F6FC;
  font-size: 0.9rem;
}

.mro-criticality-section__search-input:focus {
  background-color: #080C14;
  border-color: #00F0FF;
  color: #F0F6FC;
  box-shadow: 0 0 0 0.2rem rgba(0, 240, 255, 0.15);
}

.mro-criticality-section__search-input::placeholder {
  color: #8B9BB4;
  opacity: 1;
}

.mro-criticality-section__filter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8B9BB4;
  letter-spacing: 0.05em;
}

.mro-criticality-section__filter-btn {
  background-color: rgba(19, 31, 54, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #8B9BB4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: none;
}

.mro-criticality-section__filter-btn:hover,
.mro-criticality-section__filter-btn.active {
  background-color: rgba(0, 240, 255, 0.12);
  border-color: #00F0FF;
  color: #00F0FF;
}

.mro-criticality-card {
  background-color: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: none;
}

.mro-criticality-card:hover {
  border-color: rgba(0, 240, 255, 0.45);
}

.mro-criticality-card__media {
  height: 220px;
  background-color: #0D1321;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.mro-criticality-card__tag {
  background-color: rgba(8, 12, 20, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.mro-criticality-card__tag-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #00F0FF;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.mro-criticality-card__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #8B9BB4;
}

.mro-criticality-card__author i,
.mro-criticality-card__date i {
  color: #00F0FF;
}

.mro-criticality-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.mro-criticality-card__title-link {
  color: #F0F6FC;
  text-decoration: none;
}

.mro-criticality-card__title-link:hover {
  color: #00F0FF;
}

.mro-criticality-card__excerpt {
  color: #8B9BB4;
  font-size: 0.925rem;
  line-height: 1.6;
}

.mro-criticality-card__footer {
  border-color: rgba(148, 163, 184, 0.1) !important;
}

.mro-criticality-card__status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #10B981;
}

.mro-criticality-card__btn {
  background-color: rgba(0, 240, 255, 0.1);
  border: 1px solid #00F0FF;
  color: #00F0FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.mro-criticality-card__btn:hover {
  background-color: #00F0FF;
  color: #080C14;
  border-color: #00F0FF;
}

.mro-criticality-section__empty-state {
  background-color: rgba(13, 22, 38, 0.6);
  border: 1px dashed rgba(148, 163, 184, 0.25);
}

.mro-criticality-section__empty-icon {
  color: #00F0FF;
}

.mro-criticality-section__reset-btn {
  background-color: rgba(0, 240, 255, 0.15);
  border: 1px solid #00F0FF;
  color: #00F0FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
}

.mro-criticality-section__reset-btn:hover {
  background-color: #00F0FF;
  color: #080C14;
}

@media (max-width: 767.98px) {
  .mro-criticality-section__title {
    font-size: 1.45rem;
    hyphens: auto;
  }
  .mro-criticality-card__title {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .mro-criticality-card__media {
    height: 180px;
  }
}

/* ===== PAGE: inventory-management ===== */
.inventory-grid-section{background-color:#080C14;min-height:600px;font-family:'Plus Jakarta Sans',sans-serif}.inventory-grid-section .hud-telemetry-pill{display:inline-flex;align-items:center;padding:0.25rem 0.65rem;border-radius:4px;background-color:rgba(0,240,255,0.06);border:1px solid rgba(0,240,255,0.2);font-size:0.75rem;color:#00F0FF;letter-spacing:0.08em}.inventory-grid-section .hud-main-title{font-size:clamp(1.5rem,2.5vw,2.25rem);font-weight:700;line-height:1.2;color:#F0F6FC}.inventory-grid-section .hud-sub-desc{font-size:0.95rem;color:#8B9BB4;line-height:1.5}.inventory-grid-section .hud-search-addon{background-color:#0D1321;border-color:rgba(148,163,184,0.2)}.inventory-grid-section .hud-search-input{background-color:#0D1321;border-color:rgba(148,163,184,0.2);color:#F0F6FC;font-size:0.875rem}.inventory-grid-section .hud-search-input:focus{background-color:#131F36;border-color:#00F0FF;box-shadow:0 0 8px rgba(0,240,255,0.25);color:#F0F6FC}.inventory-grid-section .hud-search-input::placeholder{color:#4E5D78;opacity:1}.inventory-grid-section .hud-filter-btn-group .btn-outline-info{color:#8B9BB4;border-color:rgba(0,240,255,0.25);font-family:'JetBrains Mono',monospace;font-size:0.75rem;text-transform:uppercase;padding:0.5rem 0.9rem}.inventory-grid-section .hud-filter-btn-group .btn-outline-info:hover,.inventory-grid-section .hud-filter-btn-group .btn-outline-info.active{background-color:rgba(0,240,255,0.15);color:#00F0FF;border-color:#00F0FF}.inventory-grid-section .hud-card{background-color:rgba(13,22,38,0.85);backdrop-filter:blur(8px);border:1px solid rgba(148,163,184,0.15);transition:border-color 0.2s ease,box-shadow 0.2s ease;border-radius:6px;overflow:hidden}.inventory-grid-section .hud-card:hover{border-color:rgba(0,240,255,0.5);box-shadow:0 4px 20px rgba(0,240,255,0.08)}.inventory-grid-section .hud-card-media{height:200px;background-color:#0D1321;overflow:hidden}.inventory-grid-section .hud-img-fluid{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease}.inventory-grid-section .hud-card:hover .hud-img-fluid{transform:scale(1.03)}.inventory-grid-section .hud-protocol-id{font-size:0.75rem;letter-spacing:0.05em}.inventory-grid-section .hud-card-title{font-size:1.25rem;font-weight:600;line-height:1.3}.inventory-grid-section .hud-card-title a{color:#F0F6FC;transition:color 0.2s ease}.inventory-grid-section .hud-card-title a:hover{color:#00F0FF}.inventory-grid-section .hud-action-btn{font-size:0.75rem;padding:0.35rem 0.75rem;letter-spacing:0.05em;border-color:#00F0FF;color:#00F0FF}.inventory-grid-section .hud-action-btn:hover{background-color:#00F0FF;color:#080C14}.inventory-grid-section .hud-no-results-alert{background-color:#0D1321;border:1px dashed rgba(148,163,184,0.3);border-radius:6px}@media (max-width:767.98px){.inventory-grid-section .hud-main-title{font-size:1.25rem}.inventory-grid-section .hud-card-media{height:180px}}

/* ===== PAGE: on-site-placement ===== */
.placement-matrix-section {
  background-color: #080C14;
  position: relative;
}

.placement-matrix-section .placement-telemetry-tag {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 4px;
}

.placement-matrix-section .placement-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00F0FF;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

.placement-matrix-section .placement-hud-stat {
  background: rgba(13, 22, 38, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.placement-matrix-section .placement-controls {
  background: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.placement-matrix-section .placement-search-wrapper {
  position: relative;
}

.placement-matrix-section .placement-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}

.placement-matrix-section .placement-search-input {
  background-color: #0D1321;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #F0F6FC;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 0.9rem;
  border-radius: 4px;
}

.placement-matrix-section .placement-search-input:focus {
  background-color: #131F36;
  border-color: #00F0FF;
  color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.placement-matrix-section .placement-search-input::placeholder {
  color: #8B9BB4;
  opacity: 1;
}

.placement-matrix-section .placement-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 6px;
  border: none;
  background: transparent;
}

.placement-matrix-section .placement-search-clear:hover {
  color: #00F0FF;
}

.placement-matrix-section .placement-filter-btn {
  background: rgba(19, 31, 54, 0.6);
  color: #8B9BB4;
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
}

.placement-matrix-section .placement-filter-btn:hover {
  background: rgba(0, 240, 255, 0.1);
  color: #00F0FF;
  border-color: rgba(0, 240, 255, 0.4);
}

.placement-matrix-section .placement-filter-btn.active {
  background: rgba(0, 240, 255, 0.15);
  color: #00F0FF;
  border-color: #00F0FF;
  box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2);
}

.placement-matrix-section .placement-hud-card {
  background: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.placement-matrix-section .placement-hud-card:hover {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.placement-matrix-section .placement-card-media {
  height: 190px;
  background-color: #0D1321;
  overflow: hidden;
}

.placement-matrix-section .placement-image-link {
  width: 100%;
  height: 100%;
}

.placement-matrix-section .placement-card-img {
  height: 100%;
  object-fit: cover;
}

.placement-matrix-section .placement-media-badge {
  background: rgba(6, 11, 20, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #F0F6FC;
  font-size: 0.7rem;
  border-radius: 2px;
}

.placement-matrix-section .placement-media-status {
  background: rgba(6, 11, 20, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #8B9BB4;
  font-size: 0.65rem;
  border-radius: 2px;
}

.placement-matrix-section .placement-live-indicator {
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.placement-matrix-section .placement-card-title {
  font-size: 1.15rem;
  line-height: 1.35;
}

.placement-matrix-section .placement-title-link:hover {
  color: #00F0FF !h2-hover;
}

.placement-matrix-section .placement-card-action {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.4);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.placement-matrix-section .placement-card-action:hover {
  background: rgba(0, 240, 255, 0.2);
  color: #FFFFFF !important;
  border-color: #00F0FF;
}

.placement-matrix-section .placement-no-results > div {
  background: rgba(13, 22, 38, 0.85);
}

@media (max-width: 767.98px) {
  .placement-matrix-section h1 {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .placement-matrix-section h2 {
    font-size: 1rem;
    hyphens: auto;
  }
  .placement-matrix-section .placement-card-media {
    height: 160px;
  }
}

/* ===== PAGE: about ===== */
.spf-about-section {
  background-color: #080C14;
  color: #F0F6FC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

.spf-about-section .spf-telemetry-badge {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 4px;
  color: #00F0FF;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.spf-about-section .spf-telemetry-subbadge {
  color: #00F0FF;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.spf-about-section .spf-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  display: inline-block;
  box-shadow: 0 0 6px #10B981;
}

.spf-about-section .spf-main-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #F0F6FC;
  letter-spacing: -0.02em;
}

.spf-about-section .spf-lead-text {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 900px;
}

.spf-about-section .spf-hud-card {
  background: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 6px;
  position: relative;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.spf-about-section .spf-hud-card:hover {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.spf-about-section .spf-card-corner-tl {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #00F0FF;
  border-left: 2px solid #00F0FF;
}

.spf-about-section .spf-card-corner-br {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #00F0FF;
  border-right: 2px solid #00F0FF;
}

.spf-about-section .spf-card-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #F0F6FC;
  line-height: 1.3;
}

.spf-about-section .spf-subheading {
  font-size: 1.05rem;
  font-weight: 600;
}

.spf-about-section .spf-pane-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.spf-about-section .spf-card-body {
  font-size: 0.95rem;
  line-height: 1.65;
}

.spf-about-section .spf-subtext {
  font-size: 0.875rem;
  line-height: 1.5;
}

.spf-about-section .spf-cyan-icon {
  color: #00F0FF;
  font-size: 1.35rem;
}

.spf-about-section .spf-emerald-icon {
  color: #10B981;
  font-size: 1.35rem;
}

.spf-about-section .spf-cyan-text {
  color: #00F0FF;
}

.spf-about-section .spf-emerald-text {
  color: #10B981;
}

.spf-about-section .spf-callout-panel {
  background: rgba(0, 240, 255, 0.04);
  border-left: 3px solid #00F0FF;
  border-radius: 0 4px 4px 0;
}

.spf-about-section .spf-metrics-list .spf-metric-row {
  border-color: rgba(148, 163, 184, 0.1) !important;
  font-size: 0.875rem;
}

.spf-about-section .spf-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #8B9BB4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.spf-about-section .spf-tab-btn:hover {
  color: #F0F6FC;
  border-color: rgba(0, 240, 255, 0.5);
}

.spf-about-section .spf-tab-btn.active {
  background: rgba(0, 240, 255, 0.12);
  border-color: #00F0FF;
  color: #00F0FF;
}

.spf-about-section .spf-matrix-display {
  background: rgba(6, 11, 20, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 4px;
}

.spf-about-section .spf-matrix-header {
  font-size: 0.75rem;
  color: #8B9BB4;
  letter-spacing: 0.06em;
}

.spf-about-section .spf-matrix-item {
  border-color: rgba(148, 163, 184, 0.1) !important;
  font-size: 0.825rem;
}

.spf-about-section .spf-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00F0FF;
  font-size: 1.25rem;
}

.spf-about-section .spf-btn-primary {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid #00F0FF;
  color: #00F0FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.spf-about-section .spf-btn-primary:hover {
  background: #00F0FF;
  color: #080C14;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.spf-about-section .spf-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #F0F6FC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.spf-about-section .spf-btn-secondary:hover {
  border-color: #00F0FF;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.06);
}

@media (max-width: 767.98px) {
  .spf-about-section .spf-main-title {
    font-size: 1.45rem;
  }
  .spf-about-section .spf-card-heading {
    font-size: 1.15rem;
  }
  .spf-about-section .spf-pane-title {
    font-size: 1.1rem;
  }
  .spf-about-section .spf-tab-btn {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* ===== PAGE: contact ===== */
.stockpoint-contact-section { background-color: #080C14; color: #8B9BB4; font-family: 'Plus Jakarta Sans', sans-serif; position: relative; } .stockpoint-contact-section__badge { background: rgba(0, 240, 255, 0.08); border: 1px solid rgba(0, 240, 255, 0.35); padding: 0.35rem 0.75rem; border-radius: 2px; } .stockpoint-contact-section__badge-dot { width: 6px; height: 6px; background-color: #00F0FF; border-radius: 50%; display: inline-block; margin-right: 0.5rem; box-shadow: 0 0 6px #00F0FF; } .stockpoint-contact-section__badge-text { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #00F0FF; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; } .stockpoint-contact-section__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.25; } .stockpoint-contact-section__subtitle { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; } .stockpoint-contact-section__lead { font-size: 1rem; color: #8B9BB4; max-width: 820px; line-height: 1.6; } .stockpoint-contact-section__desc { font-size: 0.9rem; color: #8B9BB4; line-height: 1.5; } .stockpoint-contact-section__panel, .stockpoint-contact-section__form-card { background: rgba(13, 22, 38, 0.85); border: 1px solid rgba(148, 163, 184, 0.16); position: relative; border-radius: 4px; } .stockpoint-contact-section__panel::before, .stockpoint-contact-section__form-card::before { content: ''; position: absolute; top: -1px; left: -1px; width: 10px; height: 10px; border-top: 2px solid #00F0FF; border-left: 2px solid #00F0FF; } .stockpoint-contact-section__panel::after, .stockpoint-contact-section__form-card::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 10px; height: 10px; border-bottom: 2px solid #00F0FF; border-right: 2px solid #00F0FF; } .stockpoint-contact-section__icon-box { width: 42px; height: 42px; background: rgba(0, 240, 255, 0.08); border: 1px solid rgba(0, 240, 255, 0.3); display: flex; align-items: center; justify-content: center; color: #00F0FF; font-size: 1.25rem; border-radius: 2px; } .stockpoint-contact-section__label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #4E5D78; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.25rem; } .stockpoint-contact-section__val { font-size: 0.95rem; font-weight: 500; } .stockpoint-contact-section__val-link { font-size: 0.95rem; font-weight: 500; text-decoration: none; color: #F0F6FC; transition: color 0.15s ease-in-out; } .stockpoint-contact-section__val-link:hover { color: #00F0FF; text-decoration: underline; } .stockpoint-contact-section__val-link--highlight { color: #10B981; font-weight: 600; } .stockpoint-contact-section__val-link--highlight:hover { color: #34D399; } .stockpoint-contact-section__hud-status-card { background: rgba(6, 11, 20, 0.92); border-left: 3px solid #00F0FF; border-top: 1px solid rgba(148, 163, 184, 0.1); border-right: 1px solid rgba(148, 163, 184, 0.1); border-bottom: 1px solid rgba(148, 163, 184, 0.1); } .stockpoint-contact-section__status-title { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #8B9BB4; font-weight: 600; letter-spacing: 0.05em; } .stockpoint-contact-section__status-pill { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.4); color: #10B981; padding: 0.15rem 0.45rem; border-radius: 2px; font-weight: 700; letter-spacing: 0.05em; } .stockpoint-contact-section__status-desc { font-size: 0.825rem; color: #8B9BB4; line-height: 1.45; } .stockpoint-contact-section__form-label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #8B9BB4; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.45rem; display: block; } .stockpoint-contact-section__input, .stockpoint-contact-section__select, .stockpoint-contact-section__textarea { background-color: #060B14; border: 1px solid rgba(148, 163, 184, 0.25); color: #F0F6FC; font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: 2px; outline: none; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } .stockpoint-contact-section__input:focus, .stockpoint-contact-section__select:focus, .stockpoint-contact-section__textarea:focus { border-color: #00F0FF; box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.35); background-color: #09101D; color: #FFFFFF; } .stockpoint-contact-section__input::placeholder, .stockpoint-contact-section__textarea::placeholder { color: #64748B; opacity: 1; } .stockpoint-contact-section__select option { background-color: #0D1321; color: #F0F6FC; } .stockpoint-contact-section__security-text { font-size: 0.8rem; color: #8B9BB4; } .stockpoint-contact-section .text-cyan { color: #00F0FF; } .stockpoint-contact-section__submit-btn { background: rgba(0, 240, 255, 0.12); border: 1px solid #00F0FF; color: #00F0FF; font-family: 'JetBrains Mono', monospace; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.85rem 1.75rem; text-transform: uppercase; cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease; border-radius: 2px; min-height: 48px; } .stockpoint-contact-section__submit-btn:hover { background-color: #00F0FF; color: #080C14; } @media (max-width: 767.98px) { .stockpoint-contact-section__title { font-size: 1.35rem; hyphens: auto; } .stockpoint-contact-section__subtitle { font-size: 1.15rem; hyphens: auto; } }

/* ===== PAGE: privacy ===== */
.stockpoint-privacy-section {
  background-color: #080C14;
  color: #F0F6FC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

.stockpoint-privacy-section .privacy-hud-header {
  background: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 4px;
  position: relative;
  backdrop-filter: blur(12px);
}

.stockpoint-privacy-section .hud-status-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
}

.stockpoint-privacy-section .hud-timestamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #8B9BB4;
  display: inline-flex;
  align-items: center;
}

.stockpoint-privacy-section .privacy-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #F0F6FC;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.stockpoint-privacy-section .privacy-lead-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #8B9BB4;
  max-width: 950px;
}

.stockpoint-privacy-section .privacy-toc-panel {
  background: rgba(13, 22, 38, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 4px;
  top: 2rem;
  backdrop-filter: blur(10px);
}

.stockpoint-privacy-section .toc-header-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #F0F6FC;
}

.stockpoint-privacy-section .badge-node {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

.stockpoint-privacy-section .privacy-toc-nav .toc-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #8B9BB4;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 2px;
  border-left: 2px solid transparent;
  background: transparent;
}

.stockpoint-privacy-section .privacy-toc-nav .toc-link:hover,
.stockpoint-privacy-section .privacy-toc-nav .toc-link.active {
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.06);
  border-left-color: #00F0FF;
}

.stockpoint-privacy-section .system-notice-card {
  background: rgba(6, 11, 20, 0.6);
  border: 1px dashed rgba(0, 240, 255, 0.3);
  border-radius: 3px;
}

.stockpoint-privacy-section .notice-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00F0FF;
}

.stockpoint-privacy-section .notice-description {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #8B9BB4;
}

.stockpoint-privacy-section .privacy-card {
  background: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 4px;
  position: relative;
}

.stockpoint-privacy-section .privacy-card:hover {
  border-color: rgba(0, 240, 255, 0.35);
}

.stockpoint-privacy-section .hud-card-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: #00F0FF;
  pointer-events: none;
}

.stockpoint-privacy-section .hud-card-corner.tl {
  top: 0;
  left: 0;
  border-top: 2px solid #00F0FF;
  border-left: 2px solid #00F0FF;
}

.stockpoint-privacy-section .hud-card-corner.br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #00F0FF;
  border-right: 2px solid #00F0FF;
}

.stockpoint-privacy-section .section-numeric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.stockpoint-privacy-section .privacy-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #F0F6FC;
}

.stockpoint-privacy-section .privacy-text {
  color: #8B9BB4;
  font-size: 0.95rem;
  line-height: 1.65;
}

.stockpoint-privacy-section .telemetry-item-box {
  background: rgba(19, 31, 54, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 3px;
}

.stockpoint-privacy-section .telemetry-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: #F0F6FC;
  margin-bottom: 0.5rem;
}

.stockpoint-privacy-section .telemetry-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #8B9BB4;
}

.stockpoint-privacy-section .text-cyan {
  color: #00F0FF !important;
}

.stockpoint-privacy-section .callout-hud-block {
  background: rgba(0, 240, 255, 0.04);
  border-left: 3px solid #00F0FF;
  border-radius: 0 4px 4px 0;
}

.stockpoint-privacy-section .callout-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #00F0FF;
}

.stockpoint-privacy-section .callout-text {
  font-size: 0.88rem;
  color: #8B9BB4;
  line-height: 1.55;
}

.stockpoint-privacy-section .rights-badge {
  background: rgba(19, 31, 54, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #F0F6FC;
}

.stockpoint-privacy-section .contact-hud-panel {
  background: rgba(19, 31, 54, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 4px;
}

.stockpoint-privacy-section .contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00F0FF;
  letter-spacing: 0.05em;
}

.stockpoint-privacy-section .contact-sub {
  font-size: 0.85rem;
  color: #8B9BB4;
}

.stockpoint-privacy-section .btn-hud-action {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid #00F0FF;
  color: #00F0FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}

.stockpoint-privacy-section .btn-hud-action:hover {
  background: #00F0FF;
  color: #080C14;
}

@media (max-width: 767.98px) {
  .stockpoint-privacy-section .privacy-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .stockpoint-privacy-section .privacy-card-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .stockpoint-privacy-section .telemetry-title {
    font-size: 0.875rem;
  }
  .stockpoint-privacy-section .privacy-toc-panel {
    position: static;
    margin-bottom: 1.5rem;
  }
}

/* Legacy terms/disclaimer classes reused inside privacy-section layout */
.stockpoint-privacy-section .sp-block-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  display: inline-block;
}
.stockpoint-privacy-section .sp-inline-link {
  color: #00F0FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.stockpoint-privacy-section .sp-inline-link:hover {
  color: #F0F6FC;
}
.stockpoint-privacy-section .sp-sub-card {
  background: rgba(19, 31, 54, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 3px;
}
.stockpoint-privacy-section .sp-sub-title {
  color: #F0F6FC;
  font-size: 0.95rem;
}
.stockpoint-privacy-section .sp-hud-callout {
  background: rgba(6, 11, 20, 0.6);
  border: 1px dashed rgba(0, 240, 255, 0.25);
  border-radius: 3px;
}
.stockpoint-privacy-section .sp-callout-neutral {
  border-color: rgba(148, 163, 184, 0.25);
}
.stockpoint-privacy-section .sp-callout-title {
  color: #F0F6FC;
  font-size: 0.9rem;
}
.stockpoint-privacy-section .sp-callout-text {
  color: #8B9BB4;
}
.stockpoint-privacy-section .sp-hud-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.stockpoint-privacy-section .sp-hud-table {
  width: 100%;
  min-width: 480px;
  font-size: 0.85rem;
  color: #8B9BB4;
}
.stockpoint-privacy-section .sp-hud-table th {
  color: #00F0FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-color: rgba(0, 240, 255, 0.2);
}
.stockpoint-privacy-section .sp-hud-table td {
  border-color: rgba(148, 163, 184, 0.1);
}
.stockpoint-privacy-section .sp-contact-action-box {
  background: rgba(13, 22, 38, 0.75);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 4px;
}
.stockpoint-privacy-section .sp-hud-btn {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid #00F0FF;
  color: #00F0FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.15rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.stockpoint-privacy-section .sp-hud-btn:hover {
  background: #00F0FF;
  color: #080C14;
}

/* Prevent horizontal scroll on mobile for policy pages */
@media (max-width: 767.98px) {
  .stockpoint-privacy-section {
    overflow-x: hidden;
  }
  .stockpoint-privacy-section .privacy-card {
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .stockpoint-privacy-section .sp-hud-table {
    font-size: 0.75rem;
  }
}

/* ===== PAGE: terms ===== */
.sp-terms-section{background-color:#080C14;color:#F0F6FC;font-family:'Plus Jakarta Sans',sans-serif;position:relative;overflow-x:hidden;min-height:80vh}.sp-terms-section .sp-terms-header-card{background:rgba(13,22,38,0.85);border:1px solid rgba(0,240,255,0.2);border-radius:4px;position:relative;box-shadow:0 8px 32px rgba(0,0,0,0.4)}.sp-terms-section .sp-terms-header-card::before{content:'';position:absolute;top:0;left:0;width:32px;height:2px;background:#00F0FF}.sp-terms-section .sp-hud-badge{font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:#00F0FF;background:rgba(0,240,255,0.08);border:1px solid rgba(0,240,255,0.3);padding:0.35rem 0.75rem;letter-spacing:0.06em;display:inline-flex;align-items:center;gap:0.5rem}.sp-terms-section .sp-status-dot{width:6px;height:6px;border-radius:50%;background:#10B981;box-shadow:0 0 8px #10B981;display:inline-block}.sp-terms-section .sp-hud-timestamp{font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:#8B9BB4}.sp-terms-section .sp-terms-main-title{font-size:clamp(1.5rem,2.8vw,2.25rem);font-weight:700;color:#F0F6FC;letter-spacing:-0.02em;line-height:1.25}.sp-terms-section .sp-terms-lead{color:#8B9BB4;font-size:1.05rem;line-height:1.6;max-width:980px}.sp-terms-section .sp-toc-card{background:rgba(13,22,38,0.75);border:1px solid rgba(148,163,184,0.15);border-radius:4px;top:2rem}.sp-terms-section .sp-hud-label{font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:#8B9BB4;letter-spacing:0.08em;font-weight:600}.sp-terms-section .sp-toc-title{color:#F0F6FC;font-weight:600}.sp-terms-section .sp-search-wrapper{position:relative}.sp-terms-section .sp-search-icon{position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#8B9BB4;font-size:0.9rem}.sp-terms-section .sp-hud-input{background:#0D1321;border:1px solid rgba(148,163,184,0.25);color:#F0F6FC;font-family:'JetBrains Mono',monospace;font-size:0.85rem;padding:0.6rem 0.75rem 0.6rem 2.2rem;border-radius:2px}.sp-terms-section .sp-hud-input:focus{background:#131F36;border-color:#00F0FF;color:#F0F6FC;box-shadow:0 0 0 2px rgba(0,240,255,0.2)}.sp-terms-section .sp-hud-input::placeholder{color:#4E5D78;opacity:1}.sp-terms-section .sp-toc-link{display:flex;align-items:center;gap:0.75rem;padding:0.6rem 0.75rem;color:#8B9BB4;text-decoration:none;font-size:0.875rem;border-left:2px solid transparent;background:transparent;transition:background 0.15s ease,color 0.15s ease,border-color 0.15s ease}.sp-terms-section .sp-toc-link:hover{color:#00F0FF;background:rgba(0,240,255,0.04);border-left-color:rgba(0,240,255,0.5)}.sp-terms-section .sp-toc-link.active{color:#00F0FF;background:rgba(0,240,255,0.08);border-left-color:#00F0FF;font-weight:600}.sp-terms-section .sp-toc-num{font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:#4E5D78}.sp-terms-section .sp-toc-link.active .sp-toc-num{color:#00F0FF}.sp-terms-section .sp-terms-content-card{background:rgba(13,22,38,0.75);border:1px solid rgba(148,163,184,0.12);border-radius:4px}.sp-terms-section .sp-terms-block{position:relative;scroll-margin-top:2rem}.sp-terms-section .sp-block-badge{font-family:'JetBrains Mono',monospace;font-size:0.7rem;color:#00F0FF;letter-spacing:0.08em}.sp-terms-section .sp-section-heading{font-size:clamp(1.2rem,2vw,1.45rem);color:#F0F6FC;font-weight:700;letter-spacing:-0.01em}.sp-terms-section .sp-terms-paragraph{color:#8B9BB4;font-size:0.95rem;line-height:1.7}.sp-terms-section .text-secondary-custom{color:#8B9BB4}.sp-terms-section .sp-inline-link{color:#00F0FF;text-decoration:underline;text-underline-offset:3px}.sp-terms-section .sp-inline-link:hover{color:#F0F6FC}.sp-terms-section .sp-sub-card{background:rgba(19,31,54,0.5);border:1px solid rgba(148,163,184,0.12);border-radius:2px}.sp-terms-section .sp-sub-title{color:#F0F6FC;font-weight:600}.sp-terms-section .sp-hud-callout{background:rgba(0,240,255,0.04);border-left:3px solid #00F0FF;border-radius:0 2px 2px 0}.sp-terms-section .sp-hud-callout.sp-callout-neutral{background:rgba(148,163,184,0.04);border-left-color:#8B9BB4}.sp-terms-section .sp-callout-title{color:#F0F6FC}.sp-terms-section .sp-callout-text{color:#8B9BB4;line-height:1.6}.sp-terms-section .sp-hud-table-wrapper{background:rgba(19,31,54,0.3);border:1px solid rgba(148,163,184,0.12);border-radius:2px;overflow-x:auto}.sp-terms-section .sp-hud-table{color:#8B9BB4;font-size:0.875rem}.sp-terms-section .sp-hud-table thead th{background:rgba(13,22,38,0.9);color:#4E5D78;font-family:'JetBrains Mono',monospace;font-size:0.75rem;letter-spacing:0.05em;border-bottom:1px solid rgba(0,240,255,0.2);padding:0.75rem 1rem}.sp-terms-section .sp-hud-table tbody td{border-bottom:1px solid rgba(148,163,184,0.08);padding:0.75rem 1rem;color:#F0F6FC;vertical-align:middle}.sp-terms-section .sp-hud-list{padding-left:1.25rem;color:#8B9BB4;font-size:0.95rem;line-height:1.6}.sp-terms-section .sp-contact-action-box{background:rgba(19,31,54,0.7);border:1px solid rgba(0,240,255,0.25);border-radius:2px}.sp-terms-section .sp-hud-btn{background:rgba(0,240,255,0.12);border:1px solid #00F0FF;color:#00F0FF;font-family:'JetBrains Mono',monospace;font-size:0.85rem;font-weight:600;padding:0.6rem 1.25rem;letter-spacing:0.04em;text-transform:uppercase;border-radius:2px}.sp-terms-section .sp-hud-btn:hover{background:#00F0FF;color:#080C14;border-color:#00F0FF}.sp-terms-section .text-cyan{color:#00F0FF!important}.sp-terms-section .text-emerald{color:#10B981!important}.sp-terms-section .text-critical{color:#EF4444!important}@media(max-width:767.98px){.sp-terms-section .sp-terms-main-title{font-size:18px}.sp-terms-section .sp-section-heading{font-size:16px}.sp-terms-section .sp-sub-title{font-size:14px}.sp-terms-section .sp-terms-paragraph,.sp-terms-section .sp-hud-list{hyphens:auto;font-size:0.9rem}}

/* ===== PAGE: disclaimer ===== */
.disclaimer-page { background-color: #080C14; color: #8B9BB4; font-family: 'Plus Jakarta Sans', sans-serif; min-height: 100vh; position: relative; } .disclaimer-page__header-card { background: rgba(13, 22, 38, 0.85); border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 4px; position: relative; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); } .disclaimer-page__header-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #00F0FF; } .disclaimer-page__status-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0, 240, 255, 0.08); border: 1px solid rgba(0, 240, 255, 0.3); padding: 0.3rem 0.75rem; border-radius: 2px; } .disclaimer-page__status-dot { width: 8px; height: 8px; border-radius: 50%; background: #00F0FF; box-shadow: 0 0 8px rgba(0, 240, 255, 0.8); } .disclaimer-page__status-text { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; color: #00F0FF; letter-spacing: 0.08em; } .disclaimer-page__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #F0F6FC; line-height: 1.25; } .disclaimer-page__subtitle { font-size: 1rem; color: #8B9BB4; line-height: 1.6; max-width: 900px; } .disclaimer-page__sidebar { top: 2rem; z-index: 10; } .disclaimer-page__nav-card { background: rgba(13, 22, 38, 0.75); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 4px; } .disclaimer-page__nav-heading { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; font-weight: 700; color: #F0F6FC; letter-spacing: 0.08em; } .disclaimer-page__nav-icon { color: #00F0FF; font-size: 1.1rem; } .disclaimer-page__search-box .input-group-text { background: #0D1321; border: 1px solid rgba(148, 163, 184, 0.25); color: #00F0FF; border-radius: 4px 0 0 4px; } .disclaimer-page__search-input { background: #080C14; border: 1px solid rgba(148, 163, 184, 0.25); color: #F0F6FC; font-size: 0.875rem; border-radius: 0 4px 4px 0; } .disclaimer-page__search-input::placeholder { color: #4E5D78; opacity: 1; } .disclaimer-page__search-input:focus { background: #080C14; border-color: #00F0FF; color: #F0F6FC; box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2); } .disclaimer-page__nav-list { border-radius: 2px; overflow: hidden; } .disclaimer-page__nav-item { background: transparent; border: 1px solid transparent; color: #8B9BB4; font-size: 0.85rem; font-weight: 500; padding: 0.65rem 0.85rem; transition: background 0.15s ease, color 0.15s ease; border-radius: 2px; margin-bottom: 2px; } .disclaimer-page__nav-item:hover { background: rgba(0, 240, 255, 0.05); color: #00F0FF; } .disclaimer-page__nav-item.active { background: rgba(0, 240, 255, 0.12); color: #00F0FF; border-left: 3px solid #00F0FF; font-weight: 600; } .disclaimer-page__nav-num { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; opacity: 0.75; margin-right: 0.35rem; } .disclaimer-page__telemetry-meta { border-color: rgba(148, 163, 184, 0.12) !important; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; } .disclaimer-page__meta-label { color: #4E5D78; } .disclaimer-page__meta-val { color: #8B9BB4; font-weight: 600; } .disclaimer-page__section-card { background: rgba(13, 22, 38, 0.75); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 4px; position: relative; transition: border-color 0.2s ease; } .disclaimer-page__section-card:hover { border-color: rgba(0, 240, 255, 0.4); } .disclaimer-page__card-corner-tl { position: absolute; top: 0; left: 0; width: 8px; height: 8px; border-top: 2px solid #00F0FF; border-left: 2px solid #00F0FF; } .disclaimer-page__card-corner-br { position: absolute; bottom: 0; right: 0; width: 8px; height: 8px; border-bottom: 2px solid #00F0FF; border-right: 2px solid #00F0FF; } .disclaimer-page__section-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 700; color: #00F0FF; background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); padding: 0.2rem 0.5rem; border-radius: 2px; } .disclaimer-page__section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; color: #F0F6FC; } .disclaimer-page__h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: #F0F6FC; margin-top: 1rem; } .disclaimer-page__section-icon { font-size: 1.5rem; color: #4E5D78; } .disclaimer-page__body-text p { font-size: 0.95rem; line-height: 1.7; color: #8B9BB4; margin-bottom: 1rem; } .disclaimer-page__body-text p:last-child { margin-bottom: 0; } .disclaimer-page__callout { background: rgba(245, 158, 11, 0.05); border-left: 3px solid #F59E0B; border-radius: 0 4px 4px 0; color: #F0F6FC; font-size: 0.9rem; line-height: 1.6; } .disclaimer-page__callout-title { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; letter-spacing: 0.04em; color: #F59E0B; } .disclaimer-page__callout p { color: #8B9BB4; } .disclaimer-page__list { font-size: 0.95rem; line-height: 1.8; color: #8B9BB4; } .disclaimer-page__list li::marker { color: #00F0FF; } .disclaimer-page__btn-action { background: rgba(0, 240, 255, 0.12); border: 1px solid #00F0FF; color: #00F0FF; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.75rem 1.5rem; border-radius: 2px; transition: all 0.2s ease; } .disclaimer-page__btn-action:hover, .disclaimer-page__btn-action:focus { background: #00F0FF; color: #080C14; box-shadow: 0 0 16px rgba(0, 240, 255, 0.4); } .disclaimer-page__btn-secondary { background: rgba(148, 163, 184, 0.08); border: 1px solid rgba(148, 163, 184, 0.25); color: #F0F6FC; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 2px; transition: all 0.2s ease; } .disclaimer-page__btn-secondary:hover, .disclaimer-page__btn-secondary:focus { background: rgba(148, 163, 184, 0.18); color: #00F0FF; border-color: rgba(0, 240, 255, 0.4); } .disclaimer-page__empty-state { background: rgba(13, 22, 38, 0.75); border: 1px dashed rgba(148, 163, 184, 0.2); border-radius: 4px; }

.hud-comment-card {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    color: #F0F6FC;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.hud-comment-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
    background: rgba(19, 31, 54, 0.85);
}

.hud-avatar-wrapper {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.hud-comment-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: block;
}

.hud-status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #080C14;
    background-color: #4E5D78;
}

.hud-status-indicator.active {
    background-color: #10B981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.hud-user-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #F0F6FC;
}

.hud-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hud-badge-cyan {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
}

.hud-badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00F0FF;
}

.hud-meta-info {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
}

.hud-code-tag {
    color: #8B9BB4;
}

.hud-meta-dot {
    color: #4E5D78;
    font-size: 0.6rem;
}

.hud-timestamp {
    color: #8B9BB4;
}

.hud-icon-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #8B9BB4;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
}

.hud-icon-btn:hover {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.05);
}

.hud-comment-body {
    position: relative;
}

.hud-comment-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #F0F6FC;
    margin: 0;
}

.hud-comment-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.hud-action-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hud-action-btn:hover {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.08);
}

.hud-action-btn.active {
    color: #00F0FF;
    border-color: #00F0FF;
    background: rgba(0, 240, 255, 0.12);
}

.hud-telemetry-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
    display: inline-flex;
    align-items: center;
}

.hud-telemetry-badge .text-emerald {
    color: #10B981 !important;
}

.hud-comment-reply-container {
    margin-left: 2.25rem;
    margin-top: 1rem;
    position: relative;
}

@media (max-width: 768px) {
    .hud-comment-reply-container {
        margin-left: 1rem;
    }
}

.hud-thread-line {
    position: absolute;
    left: -1.25rem;
    top: -1rem;
    bottom: 50%;
    width: 1.25rem;
    border-left: 1px solid rgba(0, 240, 255, 0.25);
    border-bottom: 1px solid rgba(0, 240, 255, 0.25);
    border-bottom-left-radius: 4px;
}

@media (max-width: 768px) {
    .hud-thread-line {
        left: -0.65rem;
        width: 0.65rem;
    }
}

.hud-avatar-wrapper.reply-size {
    width: 36px;
    height: 36px;
}

.hud-comment-avatar.reply-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hud-badge-muted {
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #8B9BB4;
}

.hud-badge-dot.muted {
    background: #8B9BB4;
}

.hud-reply-target {
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
}

.hud-telemetry-node {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #4E5D78;
}


/* ===== PAGE TEMPLATE: criticality-analysis ===== */
.hud-site-header {
    background-color: #080C14;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 1030;
    position: sticky;
    top: 0;
    width: 100%;
}

.hud-site-header .hud-navbar {
    background-color: #080C14;
    padding: 0.85rem 0;
}

.hud-site-header .hud-brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.hud-site-header .hud-brand-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F0F6FC;
    line-height: 1.1;
}

.hud-site-header .hud-brand-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: #00F0FF;
    font-weight: 500;
}

.hud-site-header .hud-toggler {
    border: 1px solid rgba(0, 240, 255, 0.35);
    background-color: #0D1321;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    box-shadow: none;
}

.hud-site-header .hud-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
    outline: none;
}

.hud-site-header .hud-toggler-icon {
    font-size: 1.35rem;
    color: #00F0FF;
    display: block;
}

.hud-site-header .hud-nav-list {
    gap: 0.25rem;
}

/* Header navigation: single row on desktop, no wrapping */
@media (min-width: 992px) {
    .hud-site-header .hud-nav-collapse {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .hud-site-header .hud-nav-list {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }
    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.6rem !important;
    }
}

/* Burger menu: ensure collapsed state is hidden / shown reliably (mobile only) */
@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse:not(.show) {
        display: none !important;
    }
    .hud-site-header .hud-nav-collapse.show {
        display: block !important;
    }
}

.hud-site-header .hud-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #8B9BB4 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.hud-site-header .hud-nav-link:hover,
.hud-site-header .hud-nav-link:focus {
    color: #00F0FF !important;
    background-color: rgba(0, 240, 255, 0.06);
}

.hud-site-header .hud-cta-btn {
    background-color: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.15rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.hud-site-header .hud-cta-btn:hover,
.hud-site-header .hud-cta-btn:focus {
    background-color: #00F0FF;
    color: #080C14;
}

@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse {
        background-color: #0D1321;
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 6px;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .hud-site-header .hud-nav-list {
        gap: 0.15rem;
        margin-bottom: 0.75rem !important;
    }

    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
    }

    .hud-site-header .hud-header-action {
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(148, 163, 184, 0.12);
    }

    .hud-site-header .hud-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

.hud-detail-hero {
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hud-detail-hero__grid {
    background-size: 32px 32px;
    background-image: linear-gradient(to right, rgba(0, 240, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    pointer-events: none;
}

.hud-detail-hero__card {
    background: rgba(13, 22, 38, 0.88);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 240, 255, 0.05);
}

.hud-detail-hero__corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: #00F0FF;
    pointer-events: none;
}

.hud-detail-hero__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.hud-detail-hero__corner--tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.hud-detail-hero__corner--bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.hud-detail-hero__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.hud-detail-hero__breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.hud-detail-hero__bc-link {
    color: #8B9BB4;
    text-decoration: none;
}

.hud-detail-hero__bc-link:hover {
    color: #00F0FF;
}

.hud-detail-hero .breadcrumb-item+.breadcrumb-item::before {
    color: #4E5D78;
    content: "/";
}

.hud-detail-hero__telemetry-tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 4px;
}

.hud-detail-hero__pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00F0FF;
    box-shadow: 0 0 6px #00F0FF;
}

.hud-detail-hero__tag-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #00F0FF;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hud-detail-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.hud-detail-hero__subtitle {
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    color: #BAC7D5;
    line-height: 1.6;
    max-width: 900px;
}

.hud-detail-body {
    background-color: #080C14;
    color: #8B9BB4;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hud-detail-article {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
}

.hud-detail-article__corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #00F0FF;
    pointer-events: none;
}

.hud-detail-article__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.hud-detail-article__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.hud-detail-article__media-wrap {
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 8px;
    overflow: hidden;
    background: #0D1321;
}

.hud-detail-article__image {
    display: block;
    object-fit: cover;
    max-height: 420px;
}

.hud-detail-article__media-caption {
    background: rgba(8, 12, 20, 0.95);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
}

.hud-detail-article__caption-text {
    color: #BAC7D5;
}

.hud-detail-article__caption-metric {
    color: #4E5D78;
}

.hud-detail-article__content h1,
.hud-detail-article__content h2,
.hud-detail-article__content h3,
.hud-detail-article__content h4,
.hud-detail-article__content h5 {
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.hud-detail-article__h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.hud-detail-article__h3 {
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.hud-detail-article__p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #BAC7D5;
}

.hud-detail-article__callout {
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid #00F0FF;
    border-radius: 4px;
}

.hud-detail-article__callout-title {
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hud-detail-article__callout-text {
    font-size: 0.88rem;
    color: #BAC7D5;
    line-height: 1.55;
}

.hud-detail-article__feature-item {
    font-size: 0.92rem;
    color: #BAC7D5;
    line-height: 1.55;
}

.hud-interactive-matrix {
    background: rgba(19, 31, 54, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 8px;
}

.hud-interactive-matrix__title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: #F0F6FC;
    letter-spacing: 0.04em;
}

.hud-interactive-matrix__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00F0FF;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.hud-interactive-matrix__desc {
    font-size: 0.88rem;
    color: #8B9BB4;
}

.hud-matrix-tab-btn {
    background: rgba(8, 12, 20, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.hud-matrix-tab-btn:hover,
.hud-matrix-tab-btn.active {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    color: #00F0FF;
}

.hud-matrix-pill {
    background: rgba(8, 12, 20, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 6px;
}

.hud-matrix-pill__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #8B9BB4;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.hud-matrix-pill__text {
    font-size: 0.85rem;
    color: #BAC7D5;
    line-height: 1.5;
}

.hud-action-box {
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 8px;
}

.hud-action-box__title {
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.hud-action-box__subtitle {
    color: #8B9BB4;
    font-size: 0.85rem;
}

.hud-btn-primary {
    background: #00F0FF;
    color: #080C14 !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.6rem 1.15rem;
    border-radius: 4px;
    border: 1px solid #00F0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
    cursor: pointer;
}

.hud-btn-primary:hover,
.hud-btn-primary:focus {
    background: #5df7ff;
    border-color: #5df7ff;
    color: #080C14 !important;
}

.hud-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #F0F6FC !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.6rem 1.15rem;
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.hud-btn-secondary:hover,
.hud-btn-secondary:focus {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF !important;
    border-color: rgba(0, 240, 255, 0.6);
}

.hud-sidebar-widget {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
}

.hud-sidebar-widget__corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #00F0FF;
    pointer-events: none;
}

.hud-sidebar-widget__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.hud-sidebar-widget__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.hud-sidebar-widget__title {
    color: #F0F6FC;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hud-sidebar-widget__desc {
    font-size: 0.82rem;
    color: #8B9BB4;
    line-height: 1.5;
}

.hud-sidebar-nav__link {
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: #BAC7D5;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hud-sidebar-nav__link:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.4);
    color: #00F0FF;
}

.hud-sidebar-nav__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #4E5D78;
}

.hud-sidebar-nav__link:hover .hud-sidebar-nav__tag {
    color: #00F0FF;
}

.hud-telemetry-param {
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.hud-telemetry-param__key {
    color: #8B9BB4;
}

.hud-telemetry-param__val {
    color: #F0F6FC;
    font-weight: 600;
}

.hud-form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: #8B9BB4;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.hud-input {
    background-color: #080C14 !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    color: #F0F6FC !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    border-radius: 4px;
}

.hud-input::placeholder {
    color: #4E5D78 !important;
}

.hud-input:focus {
    background-color: #080C14 !important;
    border-color: #00F0FF !important;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2) !important;
    color: #F0F6FC !important;
}

.text-cyan {
    color: #00F0FF !important;
}

.text-emerald {
    color: #10B981 !important;
}

.hud-footer {
    background-color: #080C14;
    color: #8B9BB4;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hud-footer .hud-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.6) 50%, transparent 100%);
}

.hud-footer .hud-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #F0F6FC;
    letter-spacing: -0.02em;
}

.hud-footer .hud-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.hud-footer .hud-footer-desc {
    color: #8B9BB4;
    font-size: 0.9rem;
    max-width: 360px;
}

.hud-footer .hud-status-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    gap: 0.5rem;
}

.hud-footer .hud-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.hud-footer .hud-status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #10B981;
    letter-spacing: 0.05em;
}

.hud-footer .hud-footer-heading {
    color: #F0F6FC;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hud-footer .hud-footer-link {
    color: #8B9BB4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link i {
    font-size: 1rem;
    color: #4E5D78;
    margin-right: 0.25rem;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link:hover {
    color: #00F0FF;
}

.hud-footer .hud-footer-link:hover i {
    color: #00F0FF;
}

.hud-footer .hud-footer-contact-panel {
    background: rgba(13, 22, 38, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
    padding: 1.25rem;
}

.hud-footer .hud-contact-icon {
    color: #00F0FF;
    font-size: 1.1rem;
}

.hud-footer .hud-contact-val {
    font-size: 0.88rem;
    color: #8B9BB4;
}

.hud-footer .hud-footer-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.1);
}

.hud-footer .hud-footer-copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
}

.hud-footer .hud-legal-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
    text-decoration: none;
}

.hud-footer .hud-legal-link:hover {
    color: #00F0FF;
    text-decoration: underline;
}

.hud-footer .hud-legal-separator {
    color: #4E5D78;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .hud-detail-hero__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .hud-detail-hero__subtitle {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .hud-detail-article__h2 {
        font-size: 1rem;
    }

    .hud-detail-article__h3 {
        font-size: 0.875rem;
    }

    .hud-footer .hud-footer-heading {
        font-size: 0.88rem;
    }

    .hud-footer .hud-footer-brand-text {
        font-size: 1.1rem;
    }

    .hud-footer .hud-footer-desc {
        font-size: 0.85rem;
    }

    .hud-footer .hud-footer-contact-panel {
        padding: 1rem;
    }
}

/* ===== PAGE TEMPLATE: inventory-management ===== */
.hud-site-header {
    background-color: #080C14;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 1030;
    position: sticky;
    top: 0;
    width: 100%;
}

.hud-site-header .hud-navbar {
    background-color: #080C14;
    padding: 0.85rem 0;
}

.hud-site-header .hud-brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.hud-site-header .hud-brand-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F0F6FC;
    line-height: 1.1;
}

.hud-site-header .hud-brand-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: #00F0FF;
    font-weight: 500;
}

.hud-site-header .hud-toggler {
    border: 1px solid rgba(0, 240, 255, 0.35);
    background-color: #0D1321;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    box-shadow: none;
}

.hud-site-header .hud-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
    outline: none;
}

.hud-site-header .hud-toggler-icon {
    font-size: 1.35rem;
    color: #00F0FF;
    display: block;
}

.hud-site-header .hud-nav-list {
    gap: 0.25rem;
}

/* Header navigation: single row on desktop, no wrapping */
@media (min-width: 992px) {
    .hud-site-header .hud-nav-collapse {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .hud-site-header .hud-nav-list {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }
    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.6rem !important;
    }
}

/* Burger menu: ensure collapsed state is hidden / shown reliably (mobile only) */
@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse:not(.show) {
        display: none !important;
    }
    .hud-site-header .hud-nav-collapse.show {
        display: block !important;
    }
}

.hud-site-header .hud-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #8B9BB4 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.hud-site-header .hud-nav-link:hover,
.hud-site-header .hud-nav-link:focus,
.hud-site-header .hud-nav-link.active {
    color: #00F0FF !important;
    background-color: rgba(0, 240, 255, 0.06);
}

.hud-site-header .hud-cta-btn {
    background-color: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.15rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.hud-site-header .hud-cta-btn:hover,
.hud-site-header .hud-cta-btn:focus {
    background-color: #00F0FF;
    color: #080C14;
}

@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse {
        background-color: #0D1321;
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 6px;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .hud-site-header .hud-nav-list {
        gap: 0.15rem;
        margin-bottom: 0.75rem !important;
    }

    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
    }

    .hud-site-header .hud-header-action {
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(148, 163, 184, 0.12);
    }

    .hud-site-header .hud-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

.stockpoint-detail-page {
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
}

.stockpoint-detail-hero {
    background-color: #080C14;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.stockpoint-detail-hero__grid {
    background-size: 32px 32px;
    background-image: linear-gradient(to right, rgba(0, 240, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    pointer-events: none;
}

.stockpoint-breadcrumb {
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
}

.stockpoint-breadcrumb__link {
    color: #8B9BB4;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stockpoint-breadcrumb__link:hover {
    color: #00F0FF;
}

.stockpoint-breadcrumb__separator {
    color: #4E5D78;
}

.stockpoint-breadcrumb__item.active {
    color: #00F0FF;
}

.stockpoint-detail-header-card {
    position: relative;
    background: rgba(13, 22, 38, 0.88);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 240, 255, 0.06);
}

.stockpoint-detail-header-card__corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: #00F0FF;
    pointer-events: none;
}

.stockpoint-detail-header-card__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.stockpoint-detail-header-card__corner--tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.stockpoint-detail-header-card__corner--bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.stockpoint-detail-header-card__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.stockpoint-detail-tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 4px;
}

.stockpoint-detail-tag__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #00F0FF;
    box-shadow: 0 0 8px #00F0FF;
}

.stockpoint-detail-tag__text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #00F0FF;
    font-weight: 600;
}

.stockpoint-detail-meta__item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
}

.stockpoint-detail-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #FFFFFF;
}

.stockpoint-detail-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #BAC7D5;
}

.stockpoint-media-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background-color: #0D1321;
}

.stockpoint-media-frame__img {
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.stockpoint-media-frame__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 12, 20, 0.92) 0%, transparent 100%);
}

.stockpoint-media-frame__caption {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #BAC7D5;
}

.stockpoint-callout {
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid #00F0FF;
    border-radius: 0 6px 6px 0;
    padding: 1.25rem 1.5rem;
}

.stockpoint-callout__icon {
    color: #00F0FF;
    font-size: 1.4rem;
    line-height: 1;
}

.stockpoint-callout__title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: #F0F6FC;
    letter-spacing: 0.03em;
}

.stockpoint-callout__text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #BAC7D5;
}

.stockpoint-section-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F0F6FC;
    letter-spacing: -0.01em;
}

.stockpoint-article-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #BAC7D5;
}

.stockpoint-data-matrix {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    overflow: hidden;
}

.stockpoint-data-matrix__header {
    background: rgba(19, 31, 54, 0.85);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.stockpoint-data-matrix__title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #F0F6FC;
}

.stockpoint-data-matrix__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.stockpoint-hud-table {
    color: #F0F6FC;
    font-size: 0.85rem;
}

.stockpoint-hud-table thead th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
    background-color: rgba(8, 12, 20, 0.6);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    padding: 0.75rem 1rem;
}

.stockpoint-hud-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    vertical-align: middle;
    background-color: transparent;
    color: #BAC7D5;
}

.stockpoint-status-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.stockpoint-status-pill--active {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.stockpoint-status-pill--review {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stockpoint-status-pill--stable {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stockpoint-step-item {
    background: rgba(19, 31, 54, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
}

.stockpoint-step-item__number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #00F0FF;
    line-height: 1;
    min-width: 28px;
}

.stockpoint-step-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #F0F6FC;
}

.stockpoint-step-item__desc {
    font-size: 0.88rem;
    color: #BAC7D5;
    line-height: 1.5;
}

.stockpoint-interactive-widget {
    background: rgba(13, 22, 38, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 8px;
}

.stockpoint-widget-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: #F0F6FC;
}

.stockpoint-widget-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #00F0FF;
}

.stockpoint-widget-instruction {
    font-size: 0.88rem;
    color: #BAC7D5;
}

.stockpoint-form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: 0.04em;
}

.stockpoint-select-field,
.stockpoint-input-field {
    background-color: #0D1321;
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #F0F6FC;
    padding: 0.55rem 0.85rem;
    border-radius: 4px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.15s ease;
}

.stockpoint-select-field:focus,
.stockpoint-input-field:focus {
    border-color: #00F0FF;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.stockpoint-input-field::placeholder {
    color: #64748B;
}

.stockpoint-sim-output {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 6px;
}

.stockpoint-sim-output__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #8B9BB4;
    letter-spacing: 0.06em;
}

.stockpoint-sim-output__status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #10B981;
    font-weight: 600;
}

.stockpoint-sim-output__verdict {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #00F0FF;
}

.stockpoint-sim-output__note {
    font-size: 0.82rem;
    color: #BAC7D5;
    line-height: 1.45;
}

.stockpoint-hero__btn-primary {
    background: #00F0FF;
    color: #080C14;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #00F0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.stockpoint-hero__btn-primary:hover,
.stockpoint-hero__btn-primary:focus {
    background: #5df7ff;
    color: #080C14;
    border-color: #5df7ff;
}

.stockpoint-hero__btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.75rem 1.4rem;
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.stockpoint-hero__btn-secondary:hover,
.stockpoint-hero__btn-secondary:focus {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.6);
}

.stockpoint-sidebar-panel {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
}

.stockpoint-sidebar-panel--cta {
    background: rgba(13, 22, 38, 0.9);
    border-color: rgba(0, 240, 255, 0.3);
}

.stockpoint-sidebar-heading {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #F0F6FC;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stockpoint-sidebar-link {
    color: #8B9BB4;
    text-decoration: none;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.stockpoint-sidebar-link:hover {
    background-color: rgba(0, 240, 255, 0.08);
    color: #F0F6FC;
}

.stockpoint-sidebar-link__title {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.3;
    color: #F0F6FC;
}

.stockpoint-sidebar-link__meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #8B9BB4;
}

.stockpoint-spec-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
}

.stockpoint-spec-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: #F0F6FC;
}

.stockpoint-cta-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    color: #00F0FF;
    letter-spacing: 0.08em;
}

.stockpoint-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stockpoint-cta-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #BAC7D5;
}

.border-bottom-subtle {
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.border-top-subtle {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.text-cyan {
    color: #00F0FF !important;
}

.hud-footer {
    background-color: #080C14;
    color: #8B9BB4;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hud-footer .hud-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.6) 50%, transparent 100%);
}

.hud-footer .hud-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #F0F6FC;
    letter-spacing: -0.02em;
}

.hud-footer .hud-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.hud-footer .hud-footer-desc {
    color: #8B9BB4;
    font-size: 0.9rem;
    max-width: 360px;
}

.hud-footer .hud-status-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    gap: 0.5rem;
}

.hud-footer .hud-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.hud-footer .hud-status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #10B981;
    letter-spacing: 0.05em;
}

.hud-footer .hud-footer-heading {
    color: #F0F6FC;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hud-footer .hud-footer-link {
    color: #8B9BB4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link i {
    font-size: 1rem;
    color: #4E5D78;
    margin-right: 0.25rem;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link:hover {
    color: #00F0FF;
}

.hud-footer .hud-footer-link:hover i {
    color: #00F0FF;
}

.hud-footer .hud-footer-contact-panel {
    background: rgba(13, 22, 38, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
    padding: 1.25rem;
}

.hud-footer .hud-contact-icon {
    color: #00F0FF;
    font-size: 1.1rem;
}

.hud-footer .hud-contact-val {
    font-size: 0.88rem;
    color: #8B9BB4;
}

.hud-footer .hud-footer-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.1);
}

.hud-footer .hud-footer-copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
}

.hud-footer .hud-legal-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
    text-decoration: none;
}

.hud-footer .hud-legal-link:hover {
    color: #00F0FF;
    text-decoration: underline;
}

.hud-footer .hud-legal-separator {
    color: #4E5D78;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .stockpoint-detail-title {
        font-size: 1.15rem;
        hyphens: auto;
    }

    .stockpoint-section-heading {
        font-size: 1rem;
    }

    .stockpoint-callout__title {
        font-size: 0.875rem;
    }

    .hud-footer .hud-footer-heading {
        font-size: 0.88rem;
    }

    .hud-footer .hud-footer-brand-text {
        font-size: 1.1rem;
    }

    .hud-footer .hud-footer-desc {
        font-size: 0.85rem;
    }

    .hud-footer .hud-footer-contact-panel {
        padding: 1rem;
    }
}

/* ===== PAGE TEMPLATE: on-site-placement ===== */
.hud-site-header {
    background-color: #080C14;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 1030;
    position: sticky;
    top: 0;
    width: 100%;
}

.hud-site-header .hud-navbar {
    background-color: #080C14;
    padding: 0.85rem 0;
}

.hud-site-header .hud-brand-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.hud-site-header .hud-brand-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F0F6FC;
    line-height: 1.1;
}

.hud-site-header .hud-brand-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: #00F0FF;
    font-weight: 500;
}

.hud-site-header .hud-toggler {
    border: 1px solid rgba(0, 240, 255, 0.35);
    background-color: #0D1321;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    box-shadow: none;
}

.hud-site-header .hud-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
    outline: none;
}

.hud-site-header .hud-toggler-icon {
    font-size: 1.35rem;
    color: #00F0FF;
    display: block;
}

.hud-site-header .hud-nav-list {
    gap: 0.25rem;
}

/* Header navigation: single row on desktop, no wrapping */
@media (min-width: 992px) {
    .hud-site-header .hud-nav-collapse {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .hud-site-header .hud-nav-list {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }
    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.6rem !important;
    }
}

/* Burger menu: ensure collapsed state is hidden / shown reliably (mobile only) */
@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse:not(.show) {
        display: none !important;
    }
    .hud-site-header .hud-nav-collapse.show {
        display: block !important;
    }
}

.hud-site-header .hud-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #8B9BB4 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.hud-site-header .hud-nav-link:hover,
.hud-site-header .hud-nav-link:focus,
.hud-site-header .hud-nav-link.active {
    color: #00F0FF !important;
    background-color: rgba(0, 240, 255, 0.06);
}

.hud-site-header .hud-cta-btn {
    background-color: rgba(0, 240, 255, 0.12);
    border: 1px solid #00F0FF;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.15rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.hud-site-header .hud-cta-btn:hover,
.hud-site-header .hud-cta-btn:focus {
    background-color: #00F0FF;
    color: #080C14;
}

@media (max-width: 991.98px) {
    .hud-site-header .hud-nav-collapse {
        background-color: #0D1321;
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: 6px;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .hud-site-header .hud-nav-list {
        gap: 0.15rem;
        margin-bottom: 0.75rem !important;
    }

    .hud-site-header .hud-nav-link {
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
    }

    .hud-site-header .hud-header-action {
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(148, 163, 184, 0.12);
    }

    .hud-site-header .hud-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

.stockpoint-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: #080C14;
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stockpoint-hero__bg-wrap {
    z-index: 1;
    pointer-events: none;
}

.stockpoint-hero__scrim {
    background: radial-gradient(circle at 50% 30%, rgba(8, 12, 20, 0.45) 0%, rgba(8, 12, 20, 0.94) 100%);
}

.stockpoint-hero__grid {
    background-size: 32px 32px;
    background-image: linear-gradient(to right, rgba(0, 240, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
}

.stockpoint-hero .container {
    z-index: 2;
}

.stockpoint-hero__card {
    background: rgba(13, 22, 38, 0.88);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 240, 255, 0.08);
}

.stockpoint-hero__hud-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stockpoint-hero__corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: #00F0FF;
    pointer-events: none;
}

.stockpoint-hero__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.stockpoint-hero__corner--tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.stockpoint-hero__corner--bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.stockpoint-hero__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.stockpoint-hero__telemetry-tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 4px;
}

.stockpoint-hero__pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00F0FF;
    display: inline-block;
    box-shadow: 0 0 8px #00F0FF;
}

.stockpoint-hero__tag-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #00F0FF;
    font-weight: 600;
}

.stockpoint-hero__hud-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
}

.stockpoint-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.stockpoint-hero__subtitle {
    font-size: clamp(0.92rem, 1.25vw, 1.15rem);
    line-height: 1.6;
    color: #BAC7D5;
    max-width: 860px;
}

.stockpoint-hero__stat-pill {
    background: rgba(19, 31, 54, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
}

.stockpoint-hero__stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #8B9BB4;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stockpoint-hero__stat-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #F0F6FC;
}

.stockpoint-hero .text-cyan {
    color: #00F0FF;
}

.stockpoint-hero__btn-primary {
    background: #00F0FF;
    color: #080C14;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    border: 1px solid #00F0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
}

.stockpoint-hero__btn-primary:hover,
.stockpoint-hero__btn-primary:focus {
    background: #5df7ff;
    color: #080C14;
    border-color: #5df7ff;
}

.stockpoint-hero__btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #F0F6FC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stockpoint-hero__btn-secondary:hover,
.stockpoint-hero__btn-secondary:focus {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.6);
}

.osp-detail-block {
    background-color: #080C14;
    color: #BAC7D5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.osp-detail-block .text-cyan {
    color: #00F0FF;
}

.osp-detail-block .osp-article-panel {
    background: rgba(13, 22, 38, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    position: relative;
}

.osp-detail-block .osp-article-panel__corner-tl {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #00F0FF;
    border-left: 2px solid #00F0FF;
}

.osp-detail-block .osp-article-panel__corner-br {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #00F0FF;
    border-right: 2px solid #00F0FF;
}

.osp-detail-block .osp-featured-image {
    height: 380px;
    max-height: 450px;
    object-fit: cover;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.osp-detail-block .osp-heading-primary {
    color: #F0F6FC;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.osp-detail-block .osp-heading-secondary {
    color: #F0F6FC;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.3;
}

.osp-detail-block .osp-paragraph {
    color: #BAC7D5;
    font-size: 0.95rem;
    line-height: 1.7;
}

.osp-detail-block .osp-callout {
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid #00F0FF;
    border-radius: 4px;
}

.osp-detail-block .osp-callout-icon {
    color: #00F0FF;
    font-size: 1.5rem;
    line-height: 1;
}

.osp-detail-block .osp-callout-title {
    color: #F0F6FC;
    font-size: 1.05rem;
    font-weight: 600;
}

.osp-detail-block .osp-callout-text {
    color: #8B9BB4;
    font-size: 0.9rem;
    line-height: 1.6;
}

.osp-detail-block .osp-spec-matrix {
    background: rgba(19, 31, 54, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.osp-detail-block .osp-matrix-title {
    color: #F0F6FC;
    font-size: 1.05rem;
    font-weight: 600;
}

.osp-detail-block .osp-matrix-item {
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.osp-detail-block .osp-matrix-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #8B9BB4;
}

.osp-detail-block .osp-matrix-val {
    font-size: 0.85rem;
    color: #00F0FF;
}

.osp-detail-block .osp-checklist-item {
    color: #BAC7D5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.osp-detail-block .osp-tab-btn {
    background: rgba(19, 31, 54, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #8B9BB4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.osp-detail-block .osp-tab-btn:hover,
.osp-detail-block .osp-tab-btn.active {
    background: rgba(0, 240, 255, 0.12);
    border-color: #00F0FF;
    color: #00F0FF;
}

.osp-detail-block .osp-tabs-body {
    background: rgba(19, 31, 54, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.osp-detail-block .osp-tab-content-title {
    color: #F0F6FC;
    font-size: 1.05rem;
    font-weight: 600;
}

.osp-detail-block .osp-tab-text {
    color: #BAC7D5;
    font-size: 0.92rem;
    line-height: 1.6;
}

.osp-detail-block .osp-accordion-item {
    background: rgba(19, 31, 54, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
}

.osp-detail-block .osp-accordion-trigger {
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #F0F6FC;
    transition: background-color 0.15s ease;
}

.osp-detail-block .osp-accordion-trigger:hover {
    background: rgba(0, 240, 255, 0.05);
}

.osp-detail-block .osp-acc-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #F0F6FC;
}

.osp-detail-block .osp-acc-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    transition: transform 0.2s ease;
}

.osp-detail-block .osp-accordion-trigger.collapsed .osp-acc-icon {
    transform: rotate(-90deg);
}

.osp-detail-block .osp-accordion-content {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.osp-detail-block .osp-acc-text {
    color: #8B9BB4;
    font-size: 0.9rem;
    line-height: 1.6;
}

.osp-detail-block .osp-sidebar-card {
    background: rgba(13, 22, 38, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.osp-detail-block .osp-sidebar-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #F0F6FC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.osp-detail-block .osp-sidebar-link {
    color: #8B9BB4;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.osp-detail-block .osp-sidebar-link:hover {
    color: #00F0FF;
    transform: translateX(3px);
}

.osp-detail-block .osp-badge-tag {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
}

.osp-detail-block .osp-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00F0FF;
    display: inline-block;
    box-shadow: 0 0 6px #00F0FF;
}

.osp-detail-block .osp-badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    color: #00F0FF;
    letter-spacing: 0.05em;
}

.osp-detail-block .osp-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #BAC7D5;
    font-weight: 600;
}

.osp-detail-block .osp-input,
.osp-detail-block .osp-textarea {
    background-color: #080C14;
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #F0F6FC;
    font-size: 0.88rem;
    border-radius: 4px;
}

.osp-detail-block .osp-input:focus,
.osp-detail-block .osp-textarea:focus {
    background-color: #0D1321;
    border-color: #00F0FF;
    color: #F0F6FC;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

.osp-detail-block .osp-input::placeholder,
.osp-detail-block .osp-textarea::placeholder {
    color: #4E5D78;
    font-size: 0.82rem;
}

.osp-detail-block .osp-submit-btn {
    background: #00F0FF;
    color: #080C14;
    border: 1px solid #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.osp-detail-block .osp-submit-btn:hover,
.osp-detail-block .osp-submit-btn:focus {
    background: #5df7ff;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.hud-footer {
    background-color: #080C14;
    color: #8B9BB4;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hud-footer .hud-footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.6) 50%, transparent 100%);
}

.hud-footer .hud-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #F0F6FC;
    letter-spacing: -0.02em;
}

.hud-footer .hud-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.hud-footer .hud-footer-desc {
    color: #8B9BB4;
    font-size: 0.9rem;
    max-width: 360px;
}

.hud-footer .hud-status-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    gap: 0.5rem;
}

.hud-footer .hud-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.hud-footer .hud-status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: #10B981;
    letter-spacing: 0.05em;
}

.hud-footer .hud-footer-heading {
    color: #F0F6FC;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hud-footer .hud-footer-link {
    color: #8B9BB4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link i {
    font-size: 1rem;
    color: #4E5D78;
    margin-right: 0.25rem;
    transition: color 0.15s ease;
}

.hud-footer .hud-footer-link:hover {
    color: #00F0FF;
}

.hud-footer .hud-footer-link:hover i {
    color: #00F0FF;
}

.hud-footer .hud-footer-contact-panel {
    background: rgba(13, 22, 38, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 6px;
    padding: 1.25rem;
}

.hud-footer .hud-contact-icon {
    color: #00F0FF;
    font-size: 1.1rem;
}

.hud-footer .hud-contact-val {
    font-size: 0.88rem;
    color: #8B9BB4;
}

.hud-footer .hud-footer-divider {
    height: 1px;
    background-color: rgba(148, 163, 184, 0.1);
}

.hud-footer .hud-footer-copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
}

.hud-footer .hud-legal-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #8B9BB4;
    text-decoration: none;
}

.hud-footer .hud-legal-link:hover {
    color: #00F0FF;
    text-decoration: underline;
}

.hud-footer .hud-legal-separator {
    color: #4E5D78;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .stockpoint-hero__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .stockpoint-hero__subtitle {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    .stockpoint-hero__stat-val {
        font-size: 0.8rem;
    }

    .osp-detail-block .osp-heading-primary {
        font-size: 1rem;
        hyphens: auto;
    }

    .osp-detail-block .osp-heading-secondary {
        font-size: 0.875rem;
    }

    .osp-detail-block .osp-featured-image {
        height: 220px;
    }

    .hud-footer .hud-footer-heading {
        font-size: 0.88rem;
    }

    .hud-footer .hud-footer-brand-text {
        font-size: 1.1rem;
    }

    .hud-footer .hud-footer-desc {
        font-size: 0.85rem;
    }

    .hud-footer .hud-footer-contact-panel {
        padding: 1rem;
    }
}