
/* Identische öffentliche Landingpage-Optik wie index.php, erweitert für die Infoseite. */
.landing-page {
    background:
        radial-gradient(circle at 12% 4%, rgba(245, 184, 73, 0.12), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(245, 184, 73, 0.08), transparent 24%),
        #05070c;
}

.fi-hero {
    width: min(1480px, calc(100% - 48px));
    margin: 28px auto 34px;
    min-height: clamp(520px, 48vw, 720px);
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(24px, 3vw, 46px);
    align-items: center;
    padding: clamp(22px, 3vw, 46px);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(135deg, rgba(5, 8, 14, 0.96), rgba(12, 17, 27, 0.88)),
        radial-gradient(circle at 74% 35%, rgba(255, 183, 66, 0.22), transparent 28%);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
    overflow: hidden;
    position: relative;
}

.fi-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent 22%, rgba(255,255,255,0.025));
}

.fi-hero-copy,
.fi-hero-visual {
    position: relative;
    z-index: 1;
}

.fi-pill {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 9px 14px;
    border-radius: 999px;
    color: #f8d892;
    background: rgba(255, 184, 68, 0.10);
    border: 1px solid rgba(255, 212, 125, 0.26);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.fi-hero h1 {
    margin: 20px 0 16px;
    color: #fff;
    font-size: clamp(2.15rem, 4.4vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    max-width: 820px;
}

.fi-hero p {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 0 16px;
}

.fi-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.fi-hero-stats div {
    padding: 17px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
}

.fi-hero-stats strong {
    display: block;
    color: #f8d892;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.15;
}

.fi-hero-stats span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-weight: 700;
    margin-top: 4px;
}

.fi-hero-visual {
    align-self: stretch;
    min-height: 420px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.fi-hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.fi-feature-grid,
.fi-route-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.fi-feature-card span,
.fi-route-flow strong {
    display: inline-flex;
    color: #f8d892;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.fi-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.fi-info-panel,
.fi-highlight-card,
.fi-final-card {
    padding: clamp(24px, 3vw, 42px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 184, 68, 0.12), rgba(255,255,255,0.045));
    box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.fi-info-panel h2,
.fi-highlight-card h2,
.fi-final-card h2 {
    margin-top: 0;
}

.fi-info-panel p,
.fi-highlight-card p,
.fi-final-card p {
    color: rgba(255,255,255,0.78);
    line-height: 1.72;
}

.fi-check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.fi-check-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    line-height: 1.45;
}

.fi-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f8d892;
    font-weight: 1000;
}

.fi-highlight-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.fi-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 10px;
    min-width: min(420px, 100%);
}

.fi-mini-stats span {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 184, 68, 0.10);
    border: 1px solid rgba(255, 212, 125, 0.22);
    color: #f8d892;
    font-weight: 900;
}

.screenshot-preview-section {
    scroll-margin-top: 32px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.screenshot-teaser {
    overflow: hidden;
}

.screenshot-link {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.06);
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.screenshot-link img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.screenshot-link:hover img,
.screenshot-link:focus img {
    transform: scale(1.035);
    filter: brightness(1.08);
}

.zoom-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(6px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox:target {
    display: flex;
}

.lightbox-close-area {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: min(96vw, 1500px);
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    background: #05070c;
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.lightbox-caption {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    color: #fff;
}

.lightbox-caption span {
    opacity: 0.85;
}

.fi-about-topic-card{text-decoration:none;display:flex;flex-direction:column;gap:8px}.fi-about-topic-card strong{color:#f8d892;font-size:1.04rem}.fi-about-topic-card span{color:rgba(255,255,255,.76);line-height:1.45}

@media (max-width: 1160px) {
    .fi-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fi-hero-visual {
        min-height: 360px;
        order: -1;
    }

    .fi-feature-grid,
    .fi-route-flow,
    .screenshot-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fi-two-col {
        grid-template-columns: 1fr;
    }

    .fi-highlight-card {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .fi-hero {
        width: min(100% - 24px, 680px);
        margin-top: 16px;
        padding: 16px;
        border-radius: 24px;
    }

    .fi-hero-visual {
        min-height: 260px;
        border-radius: 20px;
    }

    .fi-hero h1 {
        font-size: clamp(2rem, 12vw, 3.25rem);
    }

    .fi-hero-stats,
    .fi-feature-grid,
    .fi-route-flow,
    .screenshot-gallery,
    .fi-mini-stats {
        grid-template-columns: 1fr;
    }

    .screenshot-link img {
        height: 230px;
    }

    .lightbox {
        padding: 12px;
    }
}
