/* Shared security showcase: ticker, shield, countdown (home + wartung) */

/* ── Full-bleed ticker band (home, below hero) ── */
.cl-sec-ticker-band {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(180deg, #081328 0%, #0f1b33 100%);
    border-block: 1px solid rgba(37, 99, 235, 0.18);
}

.cl-sec-ticker-band .cl-sec-ticker-wrap {
    margin-bottom: 0;
}

/* ── Ticker ── */
.cl-sec-ticker-wrap {
    overflow: hidden;
    padding: 14px 0;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.cl-sec-ticker {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: clSecTicker 40s linear infinite;
}

.cl-sec-ticker span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
    white-space: nowrap;
}

.cl-sec-ticker span::before {
    content: '◆';
    margin-right: 10px;
    color: rgba(96, 165, 250, 0.55);
    font-size: 8px;
}

@keyframes clSecTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Shield block ── */
.cl-sec-shield-block {
    text-align: center;
    color: #f1f5f9;
}

.cl-sec-shield-block.cl-home-shield-band {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin: 36px 0 0;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 48px 20px 52px;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(37, 99, 235, 0.22) 0%, transparent 60%),
        linear-gradient(180deg, #0b1525 0%, #111827 48%, #0b1525 100%);
    border-block: 1px solid rgba(37, 99, 235, 0.16);
}

.cl-sec-shield-block.cl-sec-shield-block--visual-only.cl-home-shield-band {
    padding: 28px 20px 32px;
    margin-top: 28px;
}

.cl-sec-shield-block--visual-only .cl-sec-shield-stage {
    margin-bottom: 0;
}

.cl-sec-shield-block--visual-only .cl-sec-shield-inner {
    max-width: none;
}

.cl-sec-shield-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 36px);
    width: 100%;
    max-width: min(920px, 100%);
    margin: 0 auto;
}

.cl-sec-shield-line {
    flex: 1 1 0;
    min-width: 48px;
    max-width: 320px;
    height: 2px;
    position: relative;
    border-radius: 999px;
    overflow: visible;
}

.cl-sec-shield-line--left {
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.08) 35%, rgba(96, 165, 250, 0.45) 100%);
}

.cl-sec-shield-line--right {
    background: linear-gradient(270deg, transparent 0%, rgba(96, 165, 250, 0.08) 35%, rgba(96, 165, 250, 0.45) 100%);
}

.cl-sec-shield-line::before {
    content: '';
    position: absolute;
    inset: -3px 0;
    border-radius: 999px;
    opacity: 0.35;
    filter: blur(4px);
}

.cl-sec-shield-line--left::before {
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5));
}

.cl-sec-shield-line--right::before {
    background: linear-gradient(270deg, transparent, rgba(37, 99, 235, 0.5));
}

.cl-sec-shield-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 56px;
    height: 3px;
    margin-top: -1.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #93c5fd 45%, #fff 50%, #93c5fd 55%, transparent);
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.85), 0 0 28px rgba(37, 99, 235, 0.45);
}

.cl-sec-shield-line--left::after {
    right: -8px;
    animation: clSecLineSweepLeft 2.8s ease-in-out infinite;
}

.cl-sec-shield-line--right::after {
    left: -8px;
    animation: clSecLineSweepRight 2.8s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes clSecLineSweepLeft {
    0% { transform: translateX(0); opacity: 0.15; }
    45% { opacity: 1; }
    100% { transform: translateX(calc(-100% - 48px)); opacity: 0.1; }
}

@keyframes clSecLineSweepRight {
    0% { transform: translateX(0); opacity: 0.15; }
    45% { opacity: 1; }
    100% { transform: translateX(calc(100% + 48px)); opacity: 0.1; }
}

.cl-sec-shield-stage {
    flex: 0 0 auto;
}

.cl-sec-shield-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cl-sec-shield-stage {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.cl-sec-shield {
    position: absolute;
    inset: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    z-index: 4;
    animation: clSecShieldFloat 4s ease-in-out infinite;
}

.cl-sec-shield-path {
    animation: clSecShieldPulse 3s ease-in-out infinite;
}

.cl-sec-shield-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: clSecCheckDraw 1.2s ease 0.6s forwards, clSecCheckGlow 2.5s ease 1.8s infinite;
}

@keyframes clSecCheckDraw { to { stroke-dashoffset: 0; } }
@keyframes clSecCheckGlow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(147, 197, 253, 0.6)); }
    50% { opacity: 0.75; filter: drop-shadow(0 0 12px rgba(147, 197, 253, 1)); }
}
@keyframes clSecShieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes clSecShieldPulse {
    0%, 100% { fill: rgba(37, 99, 235, 0.1); }
    50% { fill: rgba(37, 99, 235, 0.2); }
}

.cl-sec-shield-glow {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
    animation: clSecGlowBreath 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes clSecGlowBreath {
    0%, 100% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}

.cl-sec-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(96, 165, 250, 0.2);
    z-index: 2;
}

.cl-sec-ring--1 { animation: clSecRingExpand 3s ease-out infinite; }
.cl-sec-ring--2 { animation: clSecRingExpand 3s ease-out 1s infinite; }
.cl-sec-ring--3 { animation: clSecRingExpand 3s ease-out 2s infinite; }

@keyframes clSecRingExpand {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.cl-sec-radar {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    opacity: 0.5;
}

.cl-sec-radar::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(37, 99, 235, 0.35) 40deg, transparent 80deg);
    animation: clSecRadar 4s linear infinite;
}

@keyframes clSecRadar { to { transform: rotate(360deg); } }

.cl-sec-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(96, 165, 250, 0.15);
    z-index: 2;
}

.cl-sec-orbit--a { animation: clSecOrbit 12s linear infinite; }
.cl-sec-orbit--b { animation: clSecOrbit 18s linear infinite reverse; }

.cl-sec-orbit span {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.45);
}

@keyframes clSecOrbit { to { transform: rotate(360deg); } }

.cl-sec-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cl-sec-title {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.cl-sec-lead {
    margin: 0 auto 20px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
}

.cl-sec-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(30, 58, 138, 0.5));
    border: 1px solid rgba(96, 165, 250, 0.35);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
    animation: clSecBadgeGlow 3s ease-in-out infinite;
}

@keyframes clSecBadgeGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25); }
    50% { box-shadow: 0 8px 48px rgba(37, 99, 235, 0.45); }
}

.cl-sec-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
}

.cl-sec-count-box {
    min-width: 72px;
    padding: 14px 10px 10px;
    border-radius: 14px;
    background: rgba(15, 27, 51, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cl-sec-count-num {
    display: block;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.cl-sec-count-num.is-tick {
    animation: clSecCountTick 0.35s ease;
}

@keyframes clSecCountTick {
    0% { transform: scale(1.15); color: #60a5fa; }
    100% { transform: scale(1); color: #fff; }
}

.cl-sec-count-label {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.cl-sec-count-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(96, 165, 250, 0.45);
    padding-bottom: 18px;
    animation: clSecSepBlink 1s step-end infinite;
}

@keyframes clSecSepBlink { 50% { opacity: 0.2; } }

.cl-sec-count-box--sec .cl-sec-count-num { color: #60a5fa; }

.cl-sec-progress-wrap {
    max-width: 420px;
    margin: 0 auto;
}

.cl-sec-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.cl-sec-progress-pct {
    color: #60a5fa;
    font-variant-numeric: tabular-nums;
}

.cl-sec-progress-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.cl-sec-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d4ed8, #60a5fa, #2563eb);
    background-size: 200% 100%;
    animation: clSecProgressShimmer 2s linear infinite;
    transition: width 0.8s ease;
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
}

@keyframes clSecProgressShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.cl-sec-progress-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: clSecShine 2.5s ease-in-out infinite;
}

@keyframes clSecShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.cl-sec-progress-hint {
    margin: 10px 0 0;
    font-size: 11px;
    color: rgba(148, 163, 184, 0.75);
    font-family: ui-monospace, "Cascadia Code", monospace;
    min-height: 1.4em;
}

@media (max-width: 640px) {
    .cl-sec-countdown { gap: 4px; }
    .cl-sec-count-box { min-width: 58px; padding: 10px 6px 8px; }
    .cl-sec-count-sep { padding-bottom: 14px; font-size: 1.1rem; }
    .cl-sec-shield-stage { width: 168px; height: 168px; }
    .cl-sec-shield-block.cl-home-shield-band { padding: 36px 16px 40px; }
    .cl-sec-shield-line { max-width: 72px; min-width: 32px; }
    .cl-sec-shield-row { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .cl-sec-ticker,
    .cl-sec-shield,
    .cl-sec-ring,
    .cl-sec-radar::after,
    .cl-sec-orbit,
    .cl-sec-shield-glow,
    .cl-sec-shield-path,
    .cl-sec-progress-fill,
    .cl-sec-progress-shine,
    .cl-sec-launch-badge {
        animation: none !important;
    }
    .cl-sec-shield-check { stroke-dashoffset: 0; }
    .cl-sec-shield-line::after { animation: none; opacity: 0.5; }
}
