/**
 * Schnappnot Starportal — CSS
 * Phase 184: Grundstruktur.
 * Phase 185: Header + Mobile-Navigation.
 */

/* ── Reset + Base ────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.scl-sp {
    font-family: var(--font-family-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text, #1f2937);
    background: var(--bg, #fff);
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── Container ───────────────────────────────────────────────────────────── */

.scl-sp-container {
    max-width: var(--scl-width-wide, 1320px);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Phase 215: Two-Column Layout Utility ────────────────────────────────── */

.scl-sp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 768px) {
    .scl-sp-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Section Title ───────────────────────────────────────────────────────── */

.scl-sp-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text, #111827);
    margin-bottom: 24px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Header / Navigation                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-header {
    background: var(--bg, #fff);
    border-bottom: 1px solid var(--border, #e5e7eb);
    position: relative;
    z-index: 100;
}
.scl-sp-header__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 56px;
    gap: 16px;
}

/* Brand */
.scl-sp-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.scl-sp-brand__icon {
    font-size: 1.3rem;
    color: var(--accent, #7c3aed);
    line-height: 1;
}
.scl-sp-brand__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #111827);
    letter-spacing: -0.01em;
}

/* Desktop Nav */
.scl-sp-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.scl-sp-nav__item {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted, #4b5563);
    text-decoration: none;
    border-radius: var(--radius-sm, 6px);
    transition: background .12s, color .12s;
    white-space: nowrap;
}
.scl-sp-nav__item:hover {
    background: var(--surface, #f3f4f6);
    color: var(--text, #111827);
}

/* Header Actions */
.scl-sp-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.scl-sp-header__cta {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-sm, 6px);
    text-decoration: none;
    transition: background .12s;
    white-space: nowrap;
}
.scl-sp-header__cta--account {
    background: var(--button-bg, var(--accent, #4f46e5));
    color: var(--button-text, #fff);
}
.scl-sp-header__cta--account:hover {
    background: var(--accent-hover, #4338ca);
}

/* Mobile Toggle */
.scl-sp-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    flex-shrink: 0;
}
.scl-sp-mobile-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text, #374151);
    border-radius: 1px;
}

/* Mobile Panel */
.scl-sp-mobile-panel {
    padding: 8px 24px 16px;
    background: var(--bg, #fff);
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.scl-sp-mobile-panel[hidden] {
    display: none;
}
.scl-sp-mobile-panel__item {
    display: block;
    padding: 10px 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text, #374151);
    text-decoration: none;
    border-bottom: 1px solid var(--surface, #f3f4f6);
}
.scl-sp-mobile-panel__item:last-child {
    border-bottom: none;
}
.scl-sp-mobile-panel__item:hover {
    color: var(--accent, #4f46e5);
}
.scl-sp-mobile-panel__item--cta {
    color: var(--accent, #4f46e5);
    font-weight: 600;
    margin-top: 8px;
    border-bottom: none;
}

/* Responsive: Header */
@media (max-width: 768px) {
    .scl-sp-nav { display: none; }
    .scl-sp-header__actions { display: none; }
    .scl-sp-mobile-toggle { display: flex; margin-left: auto; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Hero (Phase 186)                                                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-hero {
    background: linear-gradient(135deg, var(--accent, #4f46e5) 0%, var(--accent, #7c3aed) 100%);
    color: var(--button-text, #fff);
    padding: 72px 24px 56px;
    text-align: center;
}
.scl-sp-hero__inner {
    max-width: 700px;
    margin: 0 auto;
}
.scl-sp-hero__eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0.7;
    margin-bottom: 12px;
}
.scl-sp-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}
.scl-sp-hero__text {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 28px;
    line-height: 1.55;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.scl-sp-hero__ctas {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* USP-Leiste */
.scl-sp-hero__usp {
    display: flex;
    justify-content: center;
    gap: 8px 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.scl-sp-hero__usp-item {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.72;
    white-space: nowrap;
    padding-left: 16px;
    position: relative;
}
.scl-sp-hero__usp-item::before {
    content: '·';
    position: absolute;
    left: 0;
    opacity: 0.5;
    font-weight: 700;
}
.scl-sp-hero__usp-item:first-child { padding-left: 0; }
.scl-sp-hero__usp-item:first-child::before { display: none; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.scl-sp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--radius, 8px);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, box-shadow .15s, transform .1s;
    white-space: nowrap;
}
.scl-sp-btn--primary {
    background: var(--button-bg, var(--accent, #4f46e5));
    color: var(--button-text, #fff);
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0,0,0,.12));
}
.scl-sp-btn--primary:hover {
    background: var(--accent-hover, #6d28d9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.16);
}
.scl-sp-btn--secondary {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.scl-sp-btn--secondary:hover {
    background: rgba(255,255,255,.25);
}
.scl-sp-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.25);
}
.scl-sp-btn--ghost:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* System-Stats (Phase 189)                                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-stats {
    padding: 36px 0;
    background: var(--bg, #fff);
}
.scl-sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
}
.scl-sp-stat-card {
    text-align: center;
    padding: 20px 12px;
    background: var(--surface, #f9fafb);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius, 12px);
}
.scl-sp-stat-card__value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent, #4f46e5);
    line-height: 1.1;
    margin-bottom: 4px;
}
.scl-sp-stat-card__label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted, #6b7280);
    line-height: 1.3;
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* News-Teaser (Phase 215)                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-news {
    padding: 0;
}
.scl-sp-news__card {
    background: var(--card-bg, var(--surface, #f9fafb));
    border: 1px solid var(--card-border, var(--border, #e5e7eb));
    border-radius: var(--card-radius, var(--radius, 12px));
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0,0,0,.06));
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.scl-sp-news__body {
    flex: 1;
    min-width: 0;
}
.scl-sp-news__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent, #8b5cf6);
    background: var(--accent-dim, #ede9fe);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.scl-sp-news__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text, #111827);
    line-height: 1.35;
    margin-bottom: 8px;
}
.scl-sp-news__excerpt {
    font-size: 0.88rem;
    color: var(--muted, #4b5563);
    line-height: 1.55;
    margin-bottom: 10px;
}
.scl-sp-news__meta {
    font-size: 0.78rem;
    color: var(--muted, #9ca3af);
    margin-bottom: 12px;
}
.scl-sp-news__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #4f46e5);
    text-decoration: none;
    transition: color .12s;
}
.scl-sp-news__link:hover {
    color: var(--accent-hover, #4338ca);
}
@media (max-width: 640px) {
    .scl-sp-news__card { padding: 20px; flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Conversion: Eigene Adresse sichern (Phase 207)                              */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-claim {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--accent, #4f46e5) 0%, var(--accent-hover, #6d28d9) 100%);
    color: #fff;
}
.scl-sp-claim__inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}
.scl-sp-claim__title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #fff;
}
.scl-sp-claim__url {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 2px 10px;
    border-radius: var(--radius-sm, 6px);
    font-family: monospace;
    letter-spacing: -0.01em;
}
.scl-sp-claim__text {
    font-size: 0.95rem;
    opacity: 0.88;
    line-height: 1.55;
    margin-bottom: 24px;
}
.scl-sp-claim__cta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Phase 212: Live-Claim-Eingabe */
.scl-sp-claim__input-row {
    display: flex;
    align-items: center;
    max-width: 440px;
    margin: 0 auto 0;
    border-radius: var(--radius, 10px);
    overflow: hidden;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.25);
    transition: border-color .2s;
}
.scl-sp-claim__input-row:focus-within {
    border-color: rgba(255,255,255,.6);
}
.scl-sp-claim__prefix {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    padding: 12px 0 12px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-family-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', monospace);
    letter-spacing: -0.01em;
}
.scl-sp-claim__field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 14px 12px 2px;
    min-width: 0;
    font-family: inherit;
}
.scl-sp-claim__field::placeholder {
    color: rgba(255,255,255,.35);
    font-weight: 400;
}
.scl-sp-claim__status {
    font-size: 0.82rem;
    min-height: 1.4em;
    margin-top: 8px;
    transition: color .15s;
}
/* Phase 214: shared widget Statusfarben auf dunklem Claim-Hintergrund */
.scl-sp-claim .scl-claim-widget__status--available { color: var(--color-success, #86efac); }
.scl-sp-claim .scl-claim-widget__status--taken,
.scl-sp-claim .scl-claim-widget__status--reserved  { color: var(--color-danger, #fca5a5); }
.scl-sp-claim .scl-claim-widget__status--invalid,
.scl-sp-claim .scl-claim-widget__status--checking  { color: rgba(255,255,255,.55); }
.scl-sp-claim__suggestions {
    font-size: 0.78rem;
    margin-top: 6px;
}
.scl-sp-claim__suggestions-label {
    color: rgba(255,255,255,.55);
    margin-right: 4px;
}
/* Phase 214: shared widget Vorschlag-Buttons auf dunklem Hintergrund */
.scl-sp-claim .scl-claim-widget__sug-btn {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 0 4px 0 0;
    font-size: 0.78rem;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    transition: background .15s;
}
.scl-sp-claim .scl-claim-widget__sug-btn:hover {
    background: rgba(255,255,255,.25);
}
.scl-sp-claim__btn {
    background: var(--button-bg, var(--accent, #4f46e5)) !important;
    color: var(--button-text, #fff) !important;
}

@media (max-width: 640px) {
    .scl-sp-claim { padding: 40px 20px; }
    .scl-sp-claim__title { font-size: 1.25rem; }
    .scl-sp-claim__cta { flex-direction: column; align-items: center; }
    .scl-sp-claim__input-row { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Bereiche / Area Cards                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-areas {
    padding: 56px 0;
    background: var(--surface, #f9fafb);
}
.scl-sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
@media (max-width: 640px) {
    .scl-sp-grid { grid-template-columns: 1fr; }
}
.scl-sp-card {
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    background: var(--card-bg, var(--bg, #fff));
    border: 1px solid var(--card-border, var(--border, #e5e7eb));
    border-radius: var(--card-radius, var(--radius, 12px));
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0,0,0,.06));
    text-decoration: none;
    color: var(--text, #1f2937);
    transition: border-color .18s, box-shadow .18s, transform .15s;
    position: relative;
}
.scl-sp-card--active:hover {
    border-color: var(--accent, rgba(167,139,250,.4));
    box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0,0,0,.12));
    transform: translateY(var(--motion-hover-lift, -3px));
}

/* Building / Coming Soon */
.scl-sp-card--building,
.scl-sp-card--coming_soon {
    opacity: .55;
    cursor: default;
}
.scl-sp-card--building:hover,
.scl-sp-card--coming_soon:hover {
    border-color: var(--border, #e5e7eb);
    box-shadow: none;
    transform: none;
}
.scl-sp-card__icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    line-height: 1;
}
.scl-sp-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text, #111827);
}
.scl-sp-card__desc {
    font-size: 0.85rem;
    color: var(--muted, #6b7280);
    line-height: 1.45;
    flex: 1;
}
.scl-sp-card__badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted, #9ca3af);
    background: var(--surface, #f3f4f6);
    padding: 2px 8px;
    border-radius: 4px;
    align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Neu im System / Recent Feed (Phase 192)                                    */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-recent {
    padding: 56px 0;
    background: var(--bg, #fff);
}
/* Phase 215: In der Two-Col-Discovery weniger Padding */
.scl-sp-two-col .scl-sp-recent,
.scl-sp-discovery .scl-sp-recent {
    padding: 0;
}
.scl-sp-recent-list {
    max-width: 780px;
    margin: 0 auto;
}
.scl-sp-two-col .scl-sp-recent-list {
    max-width: none;
}
.scl-sp-recent-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--surface, #f3f4f6);
    text-decoration: none;
    color: var(--text, #1f2937);
    transition: color .12s;
}
.scl-sp-recent-item:last-child { border-bottom: none; }
.scl-sp-recent-item:hover { color: var(--accent, #4f46e5); }
.scl-sp-recent-item__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--accent, #4f46e5);
    flex-shrink: 0;
}
.scl-sp-recent-item__title {
    font-size: 0.92rem;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.scl-sp-recent-item__meta {
    font-size: 0.75rem;
    color: var(--muted, #9ca3af);
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .scl-sp-recent-item { flex-direction: column; gap: 2px; }
    .scl-sp-recent-item__title { white-space: normal; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Warum Schnappnot                                                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-why {
    padding: 48px 0;
}
.scl-sp-benefits {
    list-style: none;
    max-width: 780px;
    margin: 0 auto;
}
.scl-sp-benefits li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text, #374151);
    border-bottom: 1px solid var(--surface, #f3f4f6);
}
.scl-sp-benefits li:last-child { border-bottom: none; }
.scl-sp-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent, #4f46e5);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Discovery Zone (Phase 208: Showcase + Feed + Claim als Kette)               */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-discovery {
    background: var(--surface, #f9fafb);
}
.scl-sp-discovery__intro {
    padding: 48px 0 0;
    text-align: center;
}
.scl-sp-discovery__subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text, #374151);
    margin-bottom: 12px;
    text-align: center;
}

/* Innere Sektionen: kein eigener Hintergrund wenn in Discovery-Zone */
.scl-sp-discovery .scl-sp-showcase { background: transparent; padding-top: 24px; }
.scl-sp-discovery .scl-sp-recent   { background: transparent; }


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Section Eyebrow (shared across Showcase, Areas, etc.)                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent, #4f46e5);
    text-align: center;
    margin-bottom: 6px;
}
/* Phase 215: In Zwei-Spalten-Layout linksbündig */
.scl-sp-two-col .scl-sp-section-eyebrow,
.scl-sp-two-col .scl-sp-discovery__subtitle,
.scl-sp-two-col .scl-sp-section-title {
    text-align: left;
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Showcase (Phase 187: echte Inhalte)                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-showcase {
    padding: 64px 0;
    background: var(--surface, #f9fafb);
}

.scl-sp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.scl-sp-showcase-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg, var(--bg, #fff));
    border: 1px solid var(--card-border, var(--border, #e5e7eb));
    border-radius: var(--card-radius, var(--radius, 12px));
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0,0,0,.06));
    text-decoration: none;
    color: var(--text, #1f2937);
    transition: border-color .18s, box-shadow .18s, transform .15s;
}
.scl-sp-showcase-card:hover {
    border-color: var(--accent, rgba(167,139,250,.35));
    box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0,0,0,.12));
    transform: translateY(var(--motion-hover-lift, -3px));
}
.scl-sp-showcase-card__image {
    flex-shrink: 0;
}
.scl-sp-showcase-card__image img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius, 10px);
    object-fit: cover;
    background: var(--surface, #f3f4f6);
}
.scl-sp-showcase-card__body {
    flex: 1;
    min-width: 0;
}
.scl-sp-showcase-card__meta {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--accent, #4f46e5);
    display: block;
    margin-bottom: 4px;
}
.scl-sp-showcase-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text, #111827);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.scl-sp-showcase-card__subtitle {
    font-size: 0.78rem;
    color: var(--muted, #6b7280);
    margin-bottom: 6px;
}
.scl-sp-showcase-card__text {
    font-size: 0.82rem;
    color: var(--muted, #9ca3af);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scl-sp-showcase__cta-wrap {
    text-align: center;
    margin-top: 20px;
}

/* Empty-State */
.scl-sp-showcase-empty {
    text-align: center;
    padding: 32px 0;
    color: var(--muted, #9ca3af);
    font-size: 0.9rem;
}
.scl-sp-showcase-empty .scl-sp-btn {
    color: var(--accent, #4f46e5);
    border-color: var(--accent-dim, #c7d2fe);
    background: var(--bg, #fff);
    margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FAQ                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-faq {
    padding: 64px 0;
}
.scl-sp-faq__list {
    max-width: 780px;
    margin: 0 auto;
}
.scl-sp-faq__item {
    border-bottom: 1px solid var(--border, #e5e7eb);
}
.scl-sp-faq__q {
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text, #111827);
    cursor: pointer;
    list-style: none;
}
.scl-sp-faq__q::-webkit-details-marker { display: none; }
.scl-sp-faq__q::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    color: var(--muted, #9ca3af);
    transition: transform .2s;
}
.scl-sp-faq__item[open] .scl-sp-faq__q::after {
    content: '−';
    color: var(--accent, #4f46e5);
}
.scl-sp-faq__a {
    padding: 0 0 16px;
    font-size: 0.9rem;
    color: var(--muted, #6b7280);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Footer (Phase 191)                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-footer {
    padding: 48px 0 32px;
    background: var(--bg, #111827);
    color: var(--muted, #9ca3af);
    font-size: 0.85rem;
}

/* Link-Grid */
.scl-sp-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px 24px;
    margin-bottom: 32px;
}
.scl-sp-footer__group-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted, #6b7280);
    margin: 0 0 10px;
}
.scl-sp-footer__group-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.scl-sp-footer__group-list li {
    margin-bottom: 6px;
}
.scl-sp-footer__group-list a {
    color: var(--text, #d1d5db);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color .12s;
}
.scl-sp-footer__group-list a:hover {
    color: var(--text, #fff);
}

/* Meta (Claim + Legal + Copyright) */
.scl-sp-footer__meta {
    border-top: 1px solid var(--border, #1f2937);
    padding-top: 20px;
    text-align: center;
}
.scl-sp-footer__claim {
    font-size: 0.82rem;
    color: var(--muted, #6b7280);
    margin: 0 0 12px;
    line-height: 1.4;
}
.scl-sp-footer__legal {
    margin-bottom: 8px;
}
.scl-sp-footer__legal a {
    color: var(--muted, #9ca3af);
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.78rem;
}
.scl-sp-footer__legal a:hover {
    color: var(--text, #fff);
    text-decoration: underline;
}
.scl-sp-footer__copy {
    margin: 0;
    font-size: 0.75rem;
    color: var(--muted, #4b5563);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Responsive                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
    .scl-sp-hero { padding: 48px 20px 40px; }
    .scl-sp-hero__title { font-size: 1.6rem; }
    .scl-sp-hero__text { font-size: 0.92rem; }
    .scl-sp-hero__ctas { flex-direction: column; align-items: center; }
    .scl-sp-btn { width: 100%; max-width: 280px; justify-content: center; }
    .scl-sp-hero__usp { flex-direction: column; align-items: center; gap: 4px; }
    .scl-sp-hero__usp-item { padding-left: 0; }
    .scl-sp-hero__usp-item::before { display: none; }
    .scl-sp-section-title { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* Phase 215: Motion Design — edel, ruhig, reduziert                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Section reveal: dezentes Hochschieben + Einblenden */
@keyframes scl-sp-reveal {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.scl-sp-stats,
.scl-sp-showcase,
.scl-sp-recent,
.scl-sp-news,
.scl-sp-areas,
.scl-sp-music,
.scl-sp-leadmagnet,
.scl-sp-why,
.scl-sp-faq {
    animation: scl-sp-reveal .5s ease-out both;
}
/* Staffelung: spätere Sektionen etwas verzögert */
.scl-sp-stats   { animation-delay: .05s; }
.scl-sp-showcase { animation-delay: .1s; }
.scl-sp-recent  { animation-delay: .15s; }
.scl-sp-news    { animation-delay: .2s; }
.scl-sp-areas      { animation-delay: .1s; }
.scl-sp-music      { animation-delay: .1s; }
.scl-sp-leadmagnet { animation-delay: .15s; }
.scl-sp-why        { animation-delay: .15s; }
.scl-sp-faq        { animation-delay: .2s; }

/* Hover lift: preset-konform über shadow-card-hover + motion-hover-lift */
.scl-sp-news__card {
    transition: box-shadow .18s, transform .15s, border-color .18s;
}
.scl-sp-news__card:hover {
    box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0,0,0,.12));
    transform: translateY(var(--motion-hover-lift, -2px));
}

/* prefers-reduced-motion: alles abschalten */
@media (prefers-reduced-motion: reduce) {
    .scl-sp-stats,
    .scl-sp-showcase,
    .scl-sp-recent,
    .scl-sp-news,
    .scl-sp-areas,
    .scl-sp-music,
    .scl-sp-leadmagnet,
    .scl-sp-why,
    .scl-sp-faq {
        animation: none;
    }
    .scl-sp-card:hover,
    .scl-sp-news__card:hover,
    .scl-sp-showcase-card:hover,
    .scl-sp-btn--primary:hover { transform: none; box-shadow: none; }
    .scl-sp-faq__q::after { transition: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Phase 216: Grafik-Slot-Rendering                                            */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Gemeinsame Slot-Bild-Klasse */
.scl-sp-slot-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius, 10px);
    object-fit: cover;
}
.scl-sp-slot-img--16x9 { aspect-ratio: 16 / 9; }
.scl-sp-slot-img--1x1  { aspect-ratio: 1 / 1; }
.scl-sp-slot-img--4x5  { aspect-ratio: 4 / 5; }
.scl-sp-slot-img--9x16 { aspect-ratio: 9 / 16; }

/* Hero-Accent-Grafik */
.scl-sp-hero__accent {
    margin-top: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.scl-sp-hero__accent img {
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow-card, 0 8px 32px rgba(0,0,0,.12));
}

/* News-Visual im News-Card */
.scl-sp-news__visual {
    flex-shrink: 0;
    width: 180px;
    align-self: center;
}
.scl-sp-news__visual img {
    border-radius: var(--radius, 8px);
}
@media (max-width: 640px) {
    .scl-sp-news__visual {
        width: 100%;
        margin-bottom: 12px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Phase 217: Commerce-Kacheln (Etsy/Amazon)                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-card--commerce {
    overflow: hidden;
}
.scl-sp-card__visual {
    margin: -24px -20px 16px;
}
.scl-sp-card__visual img {
    border-radius: 0;
    width: 100%;
}
.scl-sp-card__cta {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #4f46e5);
}
.scl-sp-card--etsy:hover .scl-sp-card__cta { color: #e65100; }
.scl-sp-card--amazon:hover .scl-sp-card__cta { color: #1a73e8; }


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Phase 217: Musik-CTA                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-music {
    padding: 72px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #fff;
}
.scl-sp-music__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.scl-sp-music__headline {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}
.scl-sp-music__text {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.55;
    margin-bottom: 24px;
}
.scl-sp-music__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.scl-sp-music__btn {
    align-self: flex-start;
    background: var(--button-bg, var(--accent, #a78bfa)) !important;
    color: var(--button-text, #fff) !important;
    font-weight: 700;
}
.scl-sp-music__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.scl-sp-music__link {
    font-size: 0.82rem;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 1px;
    transition: color .12s, border-color .12s;
}
.scl-sp-music__link:hover {
    color: #fff;
    border-color: #fff;
}
.scl-sp-music__visual img {
    border-radius: var(--radius, 16px);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
@media (max-width: 768px) {
    .scl-sp-music__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .scl-sp-music__btn { align-self: center; }
    .scl-sp-music__links { justify-content: center; }
    .scl-sp-music__visual { order: -1; max-width: 280px; margin: 0 auto; }
    .scl-sp-music { padding: 48px 0; }
}


/* ═══════════════════════════════════════════════════════════════════════════ */
/* Phase 217: Lead-Magnet / Newsletter                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.scl-sp-leadmagnet {
    padding: 64px 0;
    background: #faf5ff;
}
.scl-sp-leadmagnet__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.scl-sp-leadmagnet__visual {
    width: 200px;
    flex-shrink: 0;
}
.scl-sp-leadmagnet__visual img {
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow-card, 0 8px 24px rgba(0,0,0,.08));
}
.scl-sp-leadmagnet__headline {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text, #1f2937);
    margin-bottom: 6px;
}
.scl-sp-leadmagnet__sub {
    font-size: 0.92rem;
    color: var(--muted, #4b5563);
    margin-bottom: 20px;
}
.scl-sp-leadmagnet__desc {
    font-size: 0.88rem;
    color: var(--muted, #6b7280);
    margin-bottom: 16px;
    line-height: 1.55;
}
.scl-sp-leadmagnet__field-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.scl-sp-leadmagnet__email {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.92rem;
    border: 1.5px solid var(--input-border, #d1d5db);
    border-radius: var(--radius, 8px);
    background: var(--input-bg, #fff);
    outline: none;
    transition: border-color .15s;
    font-family: inherit;
}
.scl-sp-leadmagnet__email:focus {
    border-color: var(--input-focus, var(--accent, #4f46e5));
}
.scl-sp-leadmagnet__submit {
    flex-shrink: 0;
    white-space: nowrap;
}
.scl-sp-leadmagnet__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted, #6b7280);
    line-height: 1.45;
    cursor: pointer;
}
.scl-sp-leadmagnet__consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}
.scl-sp-leadmagnet__consent a {
    color: var(--accent, #4f46e5);
    text-decoration: underline;
}
.scl-sp-leadmagnet__disclaimer {
    font-size: 0.72rem;
    color: var(--muted, #9ca3af);
    margin-top: 8px;
}
/* Phase 218: Result-States */
.scl-sp-leadmagnet__result {
    padding: 14px 18px;
    border-radius: var(--radius, 8px);
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 16px;
}
.scl-sp-leadmagnet__result--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.scl-sp-leadmagnet__result--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
@media (max-width: 768px) {
    .scl-sp-leadmagnet__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .scl-sp-leadmagnet__visual {
        width: 160px;
        margin: 0 auto;
    }
    .scl-sp-leadmagnet__field-row {
        flex-direction: column;
    }
    .scl-sp-leadmagnet__consent {
        text-align: left;
    }
    .scl-sp-leadmagnet { padding: 40px 0; }
}
