/* ===================================================================
   AERONA SPACE – WAS ES KANN
   Ersetzt die alte Funktionsseite, die noch die Module der gestrichenen
   Main App zeigte ("Alle Module im Überblick", "Vom Chaos zur Klarheit").
   Jetzt: die zehn Apps, was darunter liegt, und was bewusst fehlt.
   =================================================================== */
.fn-main {
    max-width: 1150px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6rem;
}
/* ---------- Kopfbereich ---------- */
.fn-hero {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.fn-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.28);
    padding: 4px 11px;
    border-radius: 6px;
    margin-bottom: 1.4rem;
}

.fn-hero h1 {
    color: white;
    font-size: clamp(1.9rem, 5.2vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.fn-unter {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 720px;
    margin-bottom: 1.8rem;
}

.fn-hinweis {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.4rem;
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: 14px;
    color: #94a3b8;
    font-size: 0.93rem;
    line-height: 1.78;
}

.fn-hinweis i {
    color: #fbbf24;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.fn-hinweis strong {
    color: #e2e8f0;
}
/* ---------- Abschnitte ---------- */
.fn-block {
    margin-bottom: 4rem;
}

.fn-block__titel {
    color: white;
    font-size: clamp(1.4rem, 3.4vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.fn-block__unter {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 1.8rem;
}

.fn-weiter {
    display: inline-block;
    margin-top: 1.6rem;
    color: #93c5fd;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.fn-weiter::after {
    content: " →";
}

.fn-weiter:hover {
    color: #bfdbfe;
    border-color: #60a5fa;
}
/* ---------- Die zehn Apps ---------- */
.fn-apps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1rem;
}

.fn-app {
    display: block;
    padding: 1.5rem 1.6rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    text-decoration: none;
    min-width: 0;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.fn-app:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.fn-app__kopf {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}

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

.fn-app__kopf h3 {
    color: white;
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0;
    min-width: 0;
}

.fn-app p {
    color: #94a3b8;
    font-size: 0.89rem;
    line-height: 1.75;
    margin: 0;
}
