/* Änderungsprotokoll: 2026-06-26 | workflow-011 | @skill-css-rules, @skill-change-provenance | Migration screen-* Konvention */
/* Home Page */
/* Alle Styles wurden in universelle Widget-Klassen verschoben: */
/* - .content-container, .content-container-margin-top-negative-small, .content-container-padding-small → layout.css */
/* - .widget-hero → widgets-hero.css */
/* - .widget-grid → widgets-grid.css */
/* - .widget-tile, .widget-tile-title, .widget-tile-description → widgets-tiles.css */

/* Hero-Visual: Matrix-Canvas-Animation + statisches Hero-Bild */
.home-hero-visual {
    position: relative;
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 24px;
    aspect-ratio: 3 / 1;
    border-radius: 8px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.1);
    overflow: hidden;
    background: #0d1117;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-visual:hover {
    box-shadow: 0 0 28px rgba(0, 255, 200, 0.15);
}

.home-hero-visual.home-hero-visual-complete .home-hero-canvas {
    opacity: 0;
    pointer-events: none;
}

.home-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-visual.home-hero-visual-complete .home-hero-image {
    opacity: 1;
}

.home-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.home-hero-visual.home-hero-visual-complete:not(.home-hero-visual-playing)::after {
    opacity: 1;
}

.home-hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.home-hero-play-button:hover {
    background: rgba(0, 0, 0, 0.68);
    transform: translate(-50%, -50%) scale(1.06);
}

.home-hero-play-button:focus-visible {
    outline: 1px solid rgba(88, 166, 255, 0.65);
    outline-offset: 2px;
}

.home-hero-play-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.home-hero-play-icon {
    display: block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}

.home-hero-visual.home-hero-visual-reduced .home-hero-canvas {
    display: none;
}

.home-hero-visual.home-hero-visual-reduced .home-hero-image {
    opacity: 1;
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 3 / 1;
}

.home-hero-visual.home-hero-visual-reduced .home-hero-play-button {
    display: none;
}

@media (max-width: 575px) {
    .home-hero-visual {
        max-width: 100%;
        margin-bottom: 24px;
        border-radius: 8px;
    }
}

#home-about,
#home-meetup {
    margin-top: 0;
}

#home-about-intro,
#home-meetup-text {
    margin-bottom: 0.75rem;
}

#home-blog-list {
    list-style: none;
    padding-left: 0;
}

.home-blog-item {
    margin-bottom: 0.5rem;
}

.home-blog-item time {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
