/* ============================================
   HERO
   ============================================ */

.hl-hero {
    position: relative;
    padding: 7rem 0 4rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hl-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hl-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hl-hero-orb-1 {
    width: 500px; height: 500px;
    top: -100px; right: -80px;
}

.hl-hero-orb-2 {
    width: 380px; height: 380px;
    bottom: -80px; left: -60px;
    background: rgba(124, 58, 237, 0.05);
}

.hl-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 30%, transparent 70%);
}

.hl-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.hl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(22, 163, 74, 0.07);
    border: 1px solid rgba(22, 163, 74, 0.18);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
}

.hl-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.hl-hero-title .text-gradient {
    display: inline-block;
    line-height: 1.08;
    padding-bottom: 0.08em;
    padding-right: 0.07em;
    background-image: linear-gradient(90deg, var(--blue), var(--purple));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hl-hero-desc {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hl-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
}

.hl-badge-blue   { background: var(--blue-dim);          color: var(--blue);   border: 1px solid rgba(0, 111, 255, 0.18); }
.hl-badge-green  { background: rgba(22, 163, 74, 0.07);  color: var(--green);  border: 1px solid rgba(22, 163, 74, 0.18); }
.hl-badge-purple { background: rgba(124, 58, 237, 0.07); color: var(--purple); border: 1px solid rgba(124, 58, 237, 0.18); }


/* ============================================
   LIVE PANEL
   ============================================ */

.hl-live-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hl-live-panel-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}

.hl-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

.hl-live-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex: 1;
}

.hl-live-time {
    font-size: 0.72rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-3);
}

.hl-live-rows {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hl-live-row {
    display: grid;
    grid-template-columns: 110px 1fr 36px;
    align-items: center;
    gap: 0.75rem;
}

.hl-live-key {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-2);
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
}

.hl-live-bar-wrap {
    height: 5px;
    background: var(--bg-2);
    border-radius: 99px;
    overflow: hidden;
}

.hl-live-bar {
    height: 100%;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), #4f8eff);
    transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
}

.hl-live-bar.hl-bar-purple { background: linear-gradient(90deg, var(--purple), #a78bfa); }
.hl-live-bar.hl-bar-green  { background: linear-gradient(90deg, var(--green), #22c55e); }
.hl-live-bar.is-animated   { width: var(--pct) !important; }

.hl-live-val {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
}

.hl-live-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    font-size: 0.72rem;
    color: var(--text-3);
    font-family: 'JetBrains Mono', monospace;
}

.hl-live-footer i { margin-right: 0.35rem; }

#uptime-counter {
    color: var(--green);
    font-weight: 600;
}


/* ============================================
   SECTIONS
   ============================================ */

.hl-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.hl-section-alt {
    background: var(--bg-2);
}

.hl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hl-section .section-desc { margin-bottom: 0; }


/* ============================================
   HARDWARE CARDS
   ============================================ */

.hl-hw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.hl-hw-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hl-hw-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 111, 255, 0.04);
    border-color: var(--border-md);
    transform: translateY(-5px);
}

.hl-hw-card-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    opacity: 0;
    transition: opacity .3s;
}

.hl-hw-card:hover .hl-hw-card-glow { opacity: 1; }

.hl-hw-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}

.hl-hw-icon {
    width: 40px; height: 40px;
    background: var(--blue-dim);
    border: 1px solid rgba(0, 111, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    color: var(--blue);
    flex-shrink: 0;
}

.hl-hw-info { flex: 1; min-width: 0; }
.hl-hw-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.hl-hw-role { font-size: 0.72rem; color: var(--text-3); margin-top: 0.1rem; }

.hl-hw-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    flex-shrink: 0;
}

.hl-hw-online {
    font-size: 0.68rem;
    color: var(--green);
    font-weight: 600;
}

.hl-hw-specs { padding: 1.1rem 1.5rem; }

.hl-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}

.hl-spec-row:last-child { border-bottom: none; }

.hl-spec-key {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-3);
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
    min-width: 55px;
}

.hl-spec-val {
    font-size: 0.78rem;
    color: var(--text-2);
    text-align: right;
}

.hl-spec-val.uptime-green { color: var(--green); font-weight: 600; }

.hl-hw-footer {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}


/* ============================================
   SERVICE FILTER + GRID (DESKTOP)
   ============================================ */

.hl-srv-filter {
    display: flex;
    gap: 0.4rem;
    align-self: center;
}

.hl-filter-btn {
    background: transparent;
    border: 1px solid var(--border-md);
    color: var(--text-2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
}

.hl-filter-btn:hover,
.hl-filter-btn.active {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
}

.hl-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hl-srv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, border-color .2s, transform .2s, opacity .3s;
    cursor: default;
}

.hl-srv-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--border-md);
    transform: translateY(-1px);
}

.hl-srv-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hl-srv-body { flex: 1; min-width: 0; }

.hl-srv-top {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.15rem;
}

.hl-srv-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.hl-srv-type {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-3);
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 0.08rem 0.4rem;
    border-radius: var(--radius-pill);
    font-family: 'JetBrains Mono', monospace;
}

.hl-srv-desc {
    font-size: 0.72rem;
    color: var(--text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hl-srv-pulse { flex-shrink: 0; }

/* Desktop/Mobile Split */
.hl-srv-mobile-rows { display: none; }
.hl-srv-desktop-grid { display: grid; }


/* ============================================
   GALLERY
   ============================================ */

.hl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.hl-gallery-grid > *:first-child { grid-column: span 2; }
.hl-gallery-grid > *:first-child .hl-gallery-img-wrap { aspect-ratio: 21 / 9; }

.hl-gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.hl-gallery-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--border-md);
}

.hl-gallery-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-2);
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
    text-align: inherit;
}

.hl-gallery-img-wrap:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.hl-gallery-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.hl-gallery-card:hover .hl-gallery-img-wrap img,
.hl-gallery-img-wrap:focus-visible img { transform: scale(1.04); }

.hl-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 1.4rem;
}

.hl-gallery-card:hover .hl-gallery-overlay,
.hl-gallery-img-wrap:focus-visible .hl-gallery-overlay { opacity: 1; }

.hl-gallery-info { padding: 1rem 1.25rem 1.1rem; }

.hl-gallery-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.hl-gallery-desc {
    font-size: 0.77rem;
    color: var(--text-2);
    line-height: 1.6;
}


/* ============================================
   LIGHTBOX
   ============================================ */

.hl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 20, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    backdrop-filter: blur(8px);
}

.hl-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.hl-lightbox-inner {
    position: relative;
    max-width: min(1200px, 92vw);
    max-height: 92vh;
    transform: scale(.96);
    transition: transform .25s ease;
}

.hl-lightbox.open .hl-lightbox-inner { transform: scale(1); }

.hl-lightbox img {
    display: block;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 18px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .45);
}

.hl-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 44px; height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}

.hl-lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.05);
}

body.hl-lightbox-open { overflow: hidden; }


/* ============================================
   GLOBAL POLISH
   ============================================ */

body { overflow-x: hidden; }


/* ============================================
   RESPONSIVE – TABLET (max-width: 991px)
   ============================================ */

@media (max-width: 991px) {
    .hl-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hl-hero-eyebrow,
    .hl-hero-badges { justify-content: center; margin-left: auto; margin-right: auto; }
    .hl-hero-desc   { margin-left: auto; margin-right: auto; }
    .hl-hw-grid     { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================
   RESPONSIVE – SMARTPHONE (max-width: 767px)
   ============================================ */

@media (max-width: 767px) {
    /* Layout */
    .hl-section      { padding: 3.5rem 0; }
    .hl-hero         { padding: 5.5rem 0 3rem; }
    .hl-section-head { flex-direction: column; align-items: flex-start; gap: 1rem; }

    /* Hero */
    .hl-hero-title { font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1.15; }

    /* Live Panel */
    .hl-live-panel-header { padding: 0.75rem 1rem; }
    .hl-live-rows         { padding: 0.85rem 1rem; gap: 0.6rem; }
    .hl-live-row          { grid-template-columns: 85px 1fr 36px; }
    .hl-live-footer       { padding: 0.6rem 1rem; font-size: 0.65rem; }

    /* Hardware */
    .hl-hw-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .hl-gallery-grid { grid-template-columns: 1fr; }
    .hl-gallery-grid > *:first-child { grid-column: auto; }
    .hl-gallery-grid > *:first-child .hl-gallery-img-wrap,
    .hl-gallery-img-wrap { aspect-ratio: 16 / 9; }

    /* Services: Desktop weg, Mobile rein */
    .hl-srv-desktop-grid { display: none !important; }
    .hl-srv-filter       { display: none; }
    .hl-srv-mobile-rows  { display: block; }

    /* Services: Reihen-Label */
    .hl-srv-row-label {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--text-3);
        letter-spacing: 0.07em;
        text-transform: uppercase;
        font-family: 'JetBrains Mono', monospace;
        margin: 0 0 0.6rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    /* Services: Scroll-Wrapper & Blur-Edge */
    .hl-srv-scroll-wrap { position: relative; }

/* Rechter Blur – immer sichtbar solange nicht am Ende */
.hl-srv-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 64px;
    height: calc(100% - 0.9rem);
    background: linear-gradient(to right, transparent, var(--bg-2));
    pointer-events: none;
    z-index: 2;
    transition: opacity .3s ease;
}

.hl-srv-scroll-wrap.is-end::after { opacity: 0; }

/* Linker Blur – erscheint sobald gescrollt wurde */
.hl-srv-scroll-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 64px;
    height: calc(100% - 0.9rem);
    background: linear-gradient(to left, transparent, var(--bg-2));
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity .3s ease;
}

.hl-srv-scroll-wrap.has-scrolled::before { opacity: 1; }

    /* Services: Swipe-Hint */
    .hl-srv-swipe-hint {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-60%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        pointer-events: none;
        opacity: 0;
        animation: swipe-hint 2s cubic-bezier(.4, 0, .6, 1) 0.8s 2 forwards;
    }

    .hl-srv-swipe-hint i {
        font-size: 0.9rem;
        color: var(--blue);
        filter: drop-shadow(0 0 4px rgba(0, 111, 255, 0.4));
    }

    .hl-srv-swipe-hint span {
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-family: 'JetBrains Mono', monospace;
        color: var(--text-3);
    }

    .hl-srv-scroll-wrap.has-scrolled .hl-srv-swipe-hint {
        opacity: 0 !important;
        transition: opacity .2s;
        animation: none;
    }

    @keyframes swipe-hint {
        0%   { opacity: 0;   transform: translateY(-60%) translateX(0); }
        15%  { opacity: 1;   transform: translateY(-60%) translateX(0); }
        50%  { opacity: 1;   transform: translateY(-60%) translateX(-6px); }
        80%  { opacity: 0.6; transform: translateY(-60%) translateX(0); }
        100% { opacity: 0;   transform: translateY(-60%) translateX(0); }
    }

    /* Services: Horizontale Scroll-Reihe */
    .hl-srv-scroll-row {
        display: flex;
        gap: 0.6rem;
        overflow-x: auto;
        padding: 0.15rem 0 0.9rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .hl-srv-scroll-row::-webkit-scrollbar { display: none; }

    /* Services: Kachel */
    .hl-srv-scroll-row .hl-srv-card {
        flex: 0 0 148px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.85rem 0.9rem;
        gap: 0.5rem;
        scroll-snap-align: start;
        position: relative;
    }

    .hl-srv-scroll-row .hl-srv-icon { width: 32px; height: 32px; font-size: 0.8rem; }

    .hl-srv-scroll-row .hl-srv-top { flex-wrap: nowrap; gap: 0.35rem; margin-bottom: 0.2rem; }

    .hl-srv-scroll-row .hl-srv-name {
        font-size: 0.78rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 80px;
    }

    .hl-srv-scroll-row .hl-srv-type { font-size: 0.52rem; padding: 0.06rem 0.32rem; flex-shrink: 0; }

    .hl-srv-scroll-row .hl-srv-desc {
        font-size: 0.67rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }

    .hl-srv-scroll-row .hl-srv-pulse {
        position: absolute;
        bottom: 0.65rem;
        right: 0.7rem;
    }

    /* Steckbrief */
    .steckbrief-section   { min-height: auto !important; padding: 4rem 0 !important; }
    .steckbrief-section::before { display: none; }
    .steckbrief-sticky    { position: relative; height: auto; padding: 0; display: block; }
    .steckbrief-container { height: auto; display: flex; flex-direction: column; gap: 5rem; padding: 0 1.25rem; perspective: none; }
    .sb-stage             { position: relative; inset: auto; opacity: 1 !important; transform: none !important; filter: none !important; pointer-events: auto; display: flex; flex-direction: column; }
    .sb-stage.leaving     { opacity: 1 !important; transform: none !important; }
    .sb-flash, .sb-progress-wrap, .sb-scan-line, .sb-orbs, .sb-scroll-hint { display: none !important; }
    .sb-name-eyebrow, .sb-name-big, .sb-title-sub, .sb-name-tags,
    .sb-intro-label, .sb-intro-sub, .sb-letter, .sb-data-card, .sb-xp-card { opacity: 1 !important; transform: none !important; animation: none !important; }
    .sb-intro             { padding: 0; text-align: center; }
    .sb-intro-sub         { margin-bottom: 0; }
    .sb-photo-stage       { flex-direction: column; text-align: center; gap: 2rem; }
    .sb-photo-left        { margin: 0 auto; display: flex; justify-content: center; }
    .sb-name-big          { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.1; margin-bottom: 0.5rem; }
    .sb-name-tags         { justify-content: center; margin-top: 1rem; }
    .sb-data-grid         { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; perspective: none; }
    .sb-xp-stage          { gap: 1rem; }
    .sb-summary-glow-wrap { animation: sbBorderFlow 4s ease infinite !important; margin-top: 2rem; }
    .sb-summary-stats     { gap: 1.5rem; flex-wrap: wrap; justify-content: space-around; }
    .sb-summary-card      { padding: 2.5rem 1.5rem; }
}


/* ============================================
   RESPONSIVE – KLEINE SMARTPHONES (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    .hl-hw-specs  { padding: 0.85rem 1.1rem; }
    .hl-hw-top    { padding: 1rem 1.1rem; }
    .hl-hw-footer { padding: 0.6rem 1.1rem; }
    .hl-lightbox-close { top: 10px; right: 10px; background: rgba(0, 0, 0, 0.5); }

    /* Steckbrief */
    .steckbrief-container { gap: 4rem; }
    .sb-intro-name        { font-size: clamp(2.5rem, 14vw, 4rem); margin-bottom: 1rem; }
    .sb-data-grid         { grid-template-columns: 1fr; }
    .sb-photo-main        { width: 160px; height: 160px; }
    .sb-xp-card           { padding: 1.25rem; }
    .sb-summary-stat-value { font-size: 1.8rem; }
}


/* ============================================
   RESPONSIVE – SEHR SCHMALE DISPLAYS (max-width: 375px)
   ============================================ */

@media (max-width: 375px) {
    .hl-srv-scroll-row .hl-srv-card { flex: 0 0 132px; }
}