:root {
    --primary: #ff6a00;
    --primary-dark: #db5600;
    --secondary: #0b6d3b;
    --secondary-deep: #084d2a;
    --accent: #d6ff48;
    --dark: #0f1419;
    --light: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f6f9fb;
    --gray: #e9eff2;
    --text: #1e2429;
    --muted: #66727b;
    --line: rgba(255, 255, 255, 0.22);
    --shadow: 0 24px 60px rgba(8, 17, 22, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(214, 255, 72, 0.18), transparent 24%),
        linear-gradient(180deg, #edf4f6 0%, #e5edf1 100%);
    min-height: 100vh;
}

.landing-page {
    position: relative;
}

.landing-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 120px),
        linear-gradient(rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 120px);
    opacity: 0.2;
    pointer-events: none;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

a {
    color: inherit;
}

.hero {
    position: relative;
    color: var(--light);
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(4, 14, 11, 0.78), rgba(4, 14, 11, 0.36)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.64)),
        url("../img/kicker2.jpg") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0, transparent 14%, rgba(255, 255, 255, 0.18) 14%, rgba(255, 255, 255, 0.18) 14.4%, transparent 14.4%, transparent 85.6%, rgba(255, 255, 255, 0.18) 85.6%, rgba(255, 255, 255, 0.18) 86%, transparent 86%),
        linear-gradient(0deg, transparent 0, transparent 21%, rgba(255, 255, 255, 0.12) 21%, rgba(255, 255, 255, 0.12) 21.4%, transparent 21.4%, transparent 78.6%, rgba(255, 255, 255, 0.12) 78.6%, rgba(255, 255, 255, 0.12) 79%, transparent 79%);
    opacity: 0.45;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.35) 0%, rgba(255, 106, 0, 0) 68%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: 88vh;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 360px);
    align-items: end;
    gap: 34px;
    padding: 88px 0 110px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.section-kicker,
.sidecard-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before,
.sidecard-kicker::before {
    content: "";
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
}

.hero h1,
.section-heading h2,
.registration-sidecard h3 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7.2rem);
    line-height: 0.96;
    margin-bottom: 16px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-lead {
    font-size: clamp(1.16rem, 2vw, 1.72rem);
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-meta,
.hero-actions,
.hero-stats {
    display: flex;
    flex-wrap: wrap;
}

.hero-meta {
    gap: 10px;
    margin-top: 28px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-weight: 700;
}

.hero-actions {
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    box-shadow: 0 18px 30px rgba(255, 106, 0, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(5, 12, 17, 0.18);
}

.btn-full-width {
    width: 100%;
}

.hero-stats {
    gap: 14px;
    margin-top: 38px;
}

.hero-stat {
    min-width: 156px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(9, 24, 18, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-stat strong {
    display: block;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--accent);
}

.hero-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.hero-panel {
    padding: 28px 24px;
    border-radius: 28px;
    background: rgba(8, 20, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.panel-kicker {
    margin-bottom: 10px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.panel-title {
    margin-bottom: 22px;
    font-size: 1.5rem;
    line-height: 1.05;
    color: var(--light);
}

.panel-list {
    display: grid;
    gap: 14px;
}

.panel-row {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.panel-row span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.panel-row strong {
    color: var(--light);
    font-size: 1.03rem;
}

main {
    position: relative;
    z-index: 2;
}

section {
    padding: 92px 0;
}

.match-strip {
    margin-top: -54px;
    padding-top: 0;
}

.match-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.strip-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 26px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 32, 23, 0.94) 0%, rgba(10, 26, 18, 0.96) 100%);
    color: var(--light);
    box-shadow: var(--shadow);
}

.strip-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 54px;
    border-radius: 18px;
    background: var(--primary);
    color: var(--light);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.strip-card h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
    color: var(--accent);
}

.strip-card p {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.14), transparent 26%),
        linear-gradient(180deg, var(--secondary-deep) 0%, var(--secondary) 100%);
    color: var(--light);
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0, transparent 11%, rgba(255, 255, 255, 0.07) 11%, rgba(255, 255, 255, 0.07) 11.2%, transparent 11.2%, transparent 88.8%, rgba(255, 255, 255, 0.07) 88.8%, rgba(255, 255, 255, 0.07) 89%, transparent 89%);
    opacity: 0.7;
    pointer-events: none;
}

.section-dark .container,
.registration-section .container {
    position: relative;
    z-index: 1;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading-left {
    max-width: 720px;
    margin-left: 0;
    text-align: left;
}

.section-kicker {
    color: var(--accent);
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.95;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--primary);
}

.section-heading-left h2::after {
    margin-left: 0;
}

.event-description,
.section-intro {
    margin-top: 18px;
    font-size: 1.05rem;
}

.section-dark .event-description {
    color: rgba(255, 255, 255, 0.82);
}

.section-light {
    background:
        radial-gradient(circle at top left, rgba(255, 106, 0, 0.1), transparent 22%),
        linear-gradient(180deg, #fdfefe 0%, #f2f6f8 100%);
}

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

.card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.card-accent {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.36rem;
    color: var(--light);
}

.card p {
    color: rgba(255, 255, 255, 0.8);
}

.registration-section {
    padding-top: 96px;
}

.registration-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: start;
}

.registration-sidecard {
    padding: 28px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, #152119 0%, #111a14 100%);
    color: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 24px;
}

.sidecard-kicker {
    color: var(--accent);
    margin-bottom: 14px;
}

.registration-sidecard h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.96;
    margin-bottom: 18px;
}

.sidecard-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.sidecard-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
}

.sidecard-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.sidecard-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
}

.form-container {
    padding: 38px;
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.form-note {
    margin: 0 0 28px;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--dark);
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d7dee2;
    border-radius: 16px;
    font: inherit;
    background: var(--surface-soft);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--light);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.invalid-field {
    border-color: #d44d4d;
    box-shadow: 0 0 0 4px rgba(212, 77, 77, 0.12);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.alert {
    padding: 18px 20px;
    margin-bottom: 24px;
    border-radius: 18px;
    font-weight: 700;
}

.alert-success {
    background: #e5f7e8;
    color: #1a6f2d;
}

.alert-danger {
    background: #fdecea;
    color: #8a1f1f;
}

.site-footer {
    padding: 42px 0;
    background: var(--dark);
    color: var(--light);
    text-align: center;
}

.footer-links {
    margin: 18px 0;
    opacity: 0.74;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
}

.footer-copy {
    font-size: 0.82rem;
    opacity: 0.58;
}

.legal-page .hero-legal {
    min-height: 46vh;
}

.legal-hero {
    position: relative;
    z-index: 1;
    padding: 72px 0 88px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 700;
}

.back-link::before {
    content: "←";
    font-size: 1.1rem;
}

.legal-section {
    padding-top: 82px;
}

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

.legal-card {
    padding: 28px 26px;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.legal-card-wide {
    grid-column: 1 / -1;
}

.legal-card h2 {
    margin-bottom: 14px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 1.9rem;
    line-height: 0.98;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--dark);
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card p + p {
    margin-top: 14px;
}

.legal-card strong {
    color: var(--text);
}

.legal-card a {
    color: var(--secondary);
    font-weight: 700;
}

.legal-list {
    margin-left: 20px;
    display: grid;
    gap: 8px;
}

/* --- Sidecard Ansprechpartner --- */
.sidecard-contact {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 10px;
}

.sidecard-contact-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.sidecard-contact-item {
    display: grid;
    gap: 2px;
}

.sidecard-contact-item strong {
    font-size: 0.97rem;
    color: var(--light);
}

.sidecard-contact-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.sidecard-contact-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease;
}

.sidecard-contact-link:hover {
    color: var(--accent);
}

/* --- Spielmodus-Grid --- */
.spielmodus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 0;
}

.spielmodus-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.spielmodus-card-accent {
    background: rgba(255, 106, 0, 0.13);
    border-color: rgba(255, 106, 0, 0.26);
}

.spielmodus-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.spielmodus-card h3 {
    margin-bottom: 10px;
    font-size: 1.32rem;
    color: var(--light);
}

.spielmodus-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.spielmodus-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.spielmodus-steps span {
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.spielmodus-arrow {
    background: none !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

/* --- Formular-Feldhint --- */
.field-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.83rem;
    color: var(--muted);
}

@media (max-width: 680px) {
    .spielmodus-grid {
        grid-template-columns: 1fr;
    }
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1080px) {
    .hero-layout,
    .registration-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .registration-sidecard {
        max-width: 100%;
    }

    .registration-sidecard {
        position: static;
    }
}

@media (max-width: 900px) {
    .match-strip-grid,
    .info-grid,
    .form-grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero-layout {
        min-height: auto;
        padding: 74px 0 92px;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 5rem);
    }

    .hero-lead {
        font-size: 1.08rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .strip-card {
        flex-direction: column;
    }

    .form-container {
        padding: 28px 20px;
    }

    .meta-chip,
    .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 14vw, 3.2rem);
    }
}

/* =========================================================
   MICRO-ANIMATIONS
   Alle Animationen sind in prefers-reduced-motion gewrapped.
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {

    /* --- Keyframes --- */
    @keyframes fadeSlideUp {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeSlideRight {
        from { opacity: 0; transform: translateX(32px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes badgePop {
        0%   { transform: scale(0.55); opacity: 0; }
        72%  { transform: scale(1.14); }
        100% { transform: scale(1);   opacity: 1; }
    }

    @keyframes pulseRing {
        0%   { box-shadow: 0 18px 30px rgba(255, 106, 0, 0.24), 0 0 0 0 rgba(255, 106, 0, 0.36); }
        60%  { box-shadow: 0 18px 30px rgba(255, 106, 0, 0.24), 0 0 0 12px rgba(255, 106, 0, 0); }
        100% { box-shadow: 0 18px 30px rgba(255, 106, 0, 0.24), 0 0 0 0 rgba(255, 106, 0, 0); }
    }

    @keyframes spinLoader {
        to { transform: rotate(360deg); }
    }

    @keyframes shimmerLine {
        0%   { background-position: -200% center; }
        100% { background-position: 200% center; }
    }

    /* --- Hero: gestaffelte Eingangsanimationen --- */
    .hero-kicker  { animation: fadeSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both; }
    .hero h1      { animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both; }
    .hero-lead    { animation: fadeSlideUp 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both; }
    .hero-meta    { animation: fadeSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both; }
    .hero-actions { animation: fadeSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.54s both; }
    .hero-stats   { animation: fadeSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.64s both; }
    .hero-panel   { animation: fadeSlideRight 0.70s cubic-bezier(0.22, 1, 0.36, 1) 0.30s both; }

    /* --- Primary-Button: Aufmerksamkeitspuls nach Laden --- */
    .btn-primary {
        animation: pulseRing 2.6s ease-out 1.6s 3;
    }
    .btn-primary:hover,
    .btn-primary:focus-visible {
        animation: none;
    }

    /* --- Alert: Einblenden --- */
    .alert {
        animation: fadeSlideUp 0.40s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* --- Scroll-Reveal: Standardzustand (JS setzt .revealed) --- */
    .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition:
            opacity  0.55s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: none;
    }

    /* Gestaffelte Verzögerung für Kinder-Elemente im Grid */
    .reveal:nth-child(2) { transition-delay: 0.10s; }
    .reveal:nth-child(3) { transition-delay: 0.20s; }

    /* --- Strip-Index-Badge: Pop-Effekt nach Scroll-Reveal --- */
    .strip-card.revealed .strip-index {
        animation: badgePop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
    }

    /* --- Card / Strip-Card: Hover-Lift --- */
    .card,
    .strip-card,
    .legal-card {
        transition: transform 0.24s ease, box-shadow 0.24s ease;
    }
    .card:hover,
    .strip-card:hover,
    .legal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 32px 72px rgba(8, 17, 22, 0.22);
    }

    /* Panel-Rows: subtiler Slide beim Hover */
    .panel-row {
        transition: background 0.18s ease, transform 0.18s ease;
    }
    .panel-row:hover {
        background: rgba(255, 255, 255, 0.11);
        transform: translateX(5px);
    }

    /* --- Meta-Chips: Hover-Scale --- */
    .meta-chip {
        transition: transform 0.2s ease, background 0.2s ease;
    }
    .meta-chip:hover {
        transform: scale(1.05);
        background: rgba(255, 255, 255, 0.18);
    }

    /* --- Back-Link: Hover-Slide --- */
    .back-link {
        transition: gap 0.2s ease, opacity 0.2s ease;
    }
    .back-link:hover {
        gap: 14px;
        opacity: 1;
    }

    /* --- Submit-Button: Loading-Spinner-State --- */
    .btn-loading {
        position: relative;
        color: transparent !important;
        pointer-events: none;
    }
    .btn-loading::after {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        width: 22px;
        height: 22px;
        border: 3px solid rgba(255, 255, 255, 0.35);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spinLoader 0.65s linear infinite;
    }

    /* --- Hero-Stat: Shimmer-Unterstrich beim Hover --- */
    .hero-stat {
        transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .hero-stat:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
    }
    .hero-stat strong {
        background: linear-gradient(
            90deg,
            var(--accent) 0%,
            #f0ff90 40%,
            var(--accent) 80%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-stat:hover strong {
        animation: shimmerLine 0.9s linear both;
    }

    /* --- Input-Focus: sanfte Transformation --- */
    input,
    select,
    textarea {
        transition: border-color 0.2s ease, box-shadow 0.25s ease, background-color 0.2s ease, transform 0.15s ease;
    }
    input:focus,
    select:focus,
    textarea:focus {
        transform: scale(1.01);
    }

    /* --- Sidecard-List-Items: Hover-Indent --- */
    .sidecard-list li {
        transition: padding-left 0.18s ease, color 0.18s ease;
    }
    .sidecard-list li:hover {
        padding-left: 26px;
        color: rgba(255, 255, 255, 0.98);
    }

}
