/* ===================================================================
   AERONA SPACE – WAS ES KANN, TEIL 2
   Fortsetzung von funktionen.css (300-Zeilen-Regel).
   Was unter den Apps liegt, was es nie geben wird, wo es laufen soll.
   =================================================================== */

/* ---------- Was unter den Apps liegt ---------- */
.fn-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0.9rem;
}

.fn-teil {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.5rem 1.6rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    min-width: 0;
}

.fn-teil i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.13);
    color: #93c5fd;
    font-size: 1rem;
}

.fn-teil h3 {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.45rem;
}

.fn-teil p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.78;
}

/* ---------- Was es nie geben wird ---------- */
.fn-nie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0.9rem;
}

/* Bewusst in Rot-Grau statt Blau: das sind Absagen, keine Funktionen. */
.fn-nie__punkt {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.5rem 1.6rem;
    background: rgba(148, 163, 184, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    min-width: 0;
}

.fn-nie__punkt i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    font-size: 1rem;
}

.fn-nie__punkt h3 {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.45rem;
}

.fn-nie__punkt p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.78;
}

/* ---------- Wo es laufen soll ---------- */
.fn-wo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.fn-plattform {
    padding: 1.7rem 1.6rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    min-width: 0;
}

.fn-plattform i {
    font-size: 1.7rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
}

.fn-plattform h3 {
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fn-plattform p {
    color: #94a3b8;
    font-size: 0.87rem;
    line-height: 1.7;
}

/* Das eigentliche Ziel hebt sich ab. */
.fn-plattform--ziel {
    background: rgba(59, 130, 246, 0.07);
    border-color: rgba(59, 130, 246, 0.28);
}

.fn-plattform--ziel i,
.fn-plattform--ziel h3 {
    color: #93c5fd;
}

.fn-satz {
    margin-top: 1.2rem;
    padding: 1.3rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(59, 130, 246, 0.5);
    border-radius: 0 14px 14px 0;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.fn-satz strong {
    color: #e2e8f0;
}

/* ---------- Mobil ---------- */
@media (max-width: 768px) {
    .fn-main {
        padding: 1.5rem 1.1rem 4rem;
    }

    .fn-apps,
    .fn-system,
    .fn-nie {
        grid-template-columns: 1fr;
    }

    .fn-teil,
    .fn-nie__punkt {
        padding: 1.2rem 1.2rem;
        gap: 0.9rem;
    }
}
