/* =========================================================
   Startseite / Hero / Intro
   ========================================================= */

.hero {
    min-height: auto;

    padding: 25px 80px 18px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: calc(100% - var(--sidebar-width));
    max-width: 1180px;
    box-sizing: border-box;
}

.badge {
    width: fit-content;

    padding: 8px 14px;
    margin-bottom: 18px;

    border: 1px solid rgba(74, 163, 255, 0.35);
    border-radius: 999px;

    color: var(--accent);
    background: rgba(74, 163, 255, 0.08);

    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0;

    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-title-main {
    display: block;

    font-size: clamp(3rem, 7.2vw, 6.4rem);

    white-space: nowrap;
}

.hero-title-sub {
    display: block;

    margin-top: 0.12em;

    font-size: clamp(1.7rem, 3.6vw, 3.25rem);
    letter-spacing: -0.045em;

    color: var(--text);

    white-space: nowrap;
}

.hero p {
    max-width: 760px;

    margin: 22px 0 24px;

    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.5;
}

.btn {
    width: fit-content;

    padding: 13px 24px;

    border-radius: 8px;

    color: #06101e;
    background: linear-gradient(135deg, var(--accent), #8ed0ff);

    text-decoration: none;
    font-weight: 800;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(74, 163, 255, 0.22);
}

.container {
    padding: 8px 80px 34px;

    width: calc(100% - var(--sidebar-width));
    max-width: 1180px;
    box-sizing: border-box;
}

.container h2 {
    text-align: center;

    font-size: 2.4rem;
    margin-bottom: 48px;
}

.intro-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;

    padding: 28px 36px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background:
        linear-gradient(180deg, rgba(16, 24, 49, 0.88), rgba(11, 16, 32, 0.82));

    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.intro-kicker {
    margin-bottom: 10px;

    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.intro-panel h2 {
    margin: 0 0 14px;

    text-align: left;
    font-size: clamp(1.65rem, 2.6vw, 2.45rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.intro-panel p {
    max-width: 1180px;

    margin: 0 0 10px;

    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Statusbox auf der Startseite */
.intro-status {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;

    width: fit-content;
    max-width: 100%;

    margin-top: 18px;
    padding: 14px 16px;

    border: 1px solid rgba(74, 163, 255, 0.22);
    border-radius: 14px;

    background: rgba(74, 163, 255, 0.07);
}

.intro-status-label {
    margin-bottom: 8px;

    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.intro-status-content {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
}

.intro-status-pill {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border: 1px solid rgba(74, 163, 255, 0.32);
    border-radius: 999px;

    color: #06101e;
    background: linear-gradient(135deg, var(--accent), #8ed0ff);

    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.intro-status strong {
    color: var(--text);
    font-size: 0.96rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.card {
    min-height: 230px;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: linear-gradient(180deg, var(--panel-light), var(--panel));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.card h3 {
    margin-top: 0;

    color: var(--accent-2);
}

.card p {
    color: var(--muted);
    line-height: 1.6;
}

/* =========================================================
   Startseite - Mitwirken Hinweis
   ========================================================= */

.intro-team-note {
    margin-top: 26px;
    padding: 18px 20px;

    background: rgba(74, 163, 255, 0.055);

    border: 1px solid rgba(74, 163, 255, 0.22);
    border-left: 4px solid rgba(74, 163, 255, 0.65);
    border-radius: 16px;
}

.intro-team-label {
    margin-bottom: 10px;

    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.intro-team-note p {
    margin: 0;

    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.intro-team-note strong {
    color: #dce8ff;
    font-weight: 850;
}

/* =========================================================
   Startseite - Aufbau Hinweis
   ========================================================= */

.intro-build-note {
    margin-top: 22px;
    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 4px solid rgba(74, 163, 255, 0.55);
    border-radius: 16px;
}

.intro-build-label {
    margin-bottom: 8px;

    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.intro-build-note p {
    margin: 0;

    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}