@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #0e0e0e;
    --primary-color: #00CFEF;
    --secondary-color: #ccff00;
    --text-color: #f0f0f0;
    --text-color-strong: #ffffff;
    --card-bg-color: #161618;
    --systems-section-bg: #1a1a1d;
    --workflow-section-bg: linear-gradient(135deg, #11161e 0%, #0a0d12 100%);
    --live-insights-bg: #10141c;
    --testimonials-bg: #1c1018;
    --border-color: #2a2a2e;
    --header-height: 70px;
    --font-family: 'Inter', sans-serif;
    --glass-bg: rgba(22, 22, 24, 0.65);
    --glass-border: rgba(42, 42, 46, 0.5);
    --pulse-color: var(--primary-color);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-family); background-color: var(--bg-color);
    color: var(--text-color); line-height: 1.7; overflow-x: hidden;
    position: relative;
}

body.modal-open {
    overflow: hidden;
    touch-action: none;
}
.container { width: 90%; max-width: 1140px; margin: 0 auto; padding: 0 15px; }
section { padding: 80px 0; position: relative; }
h1, h2, h3, h4 { color: var(--text-color-strong); font-weight: 700; line-height: 1.3; margin-bottom: 20px; }
h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 50px; }
h3 { font-size: 1.5rem; color: var(--primary-color); }
p { margin-bottom: 15px; font-size: 1rem; }
a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
a:hover { color: var(--secondary-color); }
ul { list-style: none; }

.btn {
    display: inline-block; padding: 12px 28px; font-size: 1rem; font-weight: 600;
    border-radius: 5px; text-transform: uppercase; letter-spacing: 0.5px;
    transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; text-align: center;
}
.btn-primary {
    background-color: var(--primary-color); color: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 207, 239, 0.4), 0 0 20px rgba(0, 207, 239, 0.3);
}
.btn-primary:hover {
    background-color: #00b8d4;
    box-shadow: 0 0 15px rgba(0, 207, 239, 0.6), 0 0 30px rgba(0, 207, 239, 0.4);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color); color: var(--bg-color);
    box-shadow: 0 0 10px rgba(0, 207, 239, 0.4);
}
.btn-hero-secondary:hover {
    background-color: var(--secondary-color); border-color: var(--secondary-color);
    color: var(--bg-color); box-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}
.btn-lime {
    background-color: var(--secondary-color); color: var(--bg-color);
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.4);
}
.btn-lime:hover {
    background-color: #b8e600;
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.6); transform: translateY(-2px);
}

.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 15px 0;
    background-color: rgba(14, 14, 14, 0.85); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-size: 1.8rem; font-weight: 800; color: var(--text-color-strong); }
.site-logo span { color: var(--primary-color); }
.main-nav ul { display: flex; }
.main-nav ul li { margin-left: 25px; }
.main-nav ul li a { color: var(--text-color); font-weight: 500; padding: 5px 0; position: relative; }
.main-nav ul li a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background-color: var(--primary-color); transition: width 0.3s ease;
}
.main-nav ul li a:hover::after, .main-nav ul li a.active::after { width: 100%; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--primary-color); }
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001;
}
.menu-toggle .bar {
    display: block; width: 25px; height: 3px; margin: 5px auto;
    background-color: var(--text-color-strong); transition: all 0.3s ease-in-out; border-radius: 2px;
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#hero {
    min-height: 100vh; display: flex; align-items: center; text-align: center;
    position: relative; overflow: hidden; padding-top: var(--header-height);
    background:
        radial-gradient(circle at 18% 22%, rgba(204, 255, 0, 0.14), transparent 0 24%),
        radial-gradient(circle at 78% 30%, rgba(204, 255, 0, 0.08), transparent 0 20%),
        radial-gradient(circle at 50% 78%, rgba(204, 255, 0, 0.07), transparent 0 22%),
        linear-gradient(180deg, #0a0a0a 0%, #101010 48%, #0d0d0d 100%);
}
#hero-particles,
.hero-particle-glow {
    position: absolute; inset: 0; width: 100%; height: 100%;
}
#hero-particles {
    z-index: 0; display: block; pointer-events: none;
}
.hero-particle-glow {
    z-index: 1; pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, rgba(204, 255, 0, 0.10), transparent 0 30%),
        radial-gradient(circle at 20% 80%, rgba(204, 255, 0, 0.06), transparent 0 18%),
        radial-gradient(circle at 85% 20%, rgba(204, 255, 0, 0.05), transparent 0 16%);
    filter: blur(10px);
    opacity: 0.95;
}
#hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.52), rgba(10, 10, 10, 0.86));
    z-index: 2;
}
#hero .container { position: relative; z-index: 3; }
#hero h1 { font-size: 3.2rem; color: var(--text-color-strong); margin-bottom: 25px; }
#hero .subline { font-size: 1.3rem; color: var(--text-color); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
#hero .cta-buttons .btn { margin: 0 10px; }

#why-spectra { background-color: var(--bg-color); }
#why-spectra .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: left; }
#why-spectra .grid-item {
    background-color: var(--card-bg-color); padding: 25px; border-radius: 8px;
    border: 1px solid var(--border-color); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#why-spectra .grid-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 207, 239, 0.1); }
#why-spectra .grid-item .icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; display: inline-block; }
#why-spectra .grid-item h3 { margin-bottom: 10px; font-size: 1.3rem; color: var(--text-color-strong); }

#systems { background-color: var(--systems-section-bg); }
#systems .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
#systems .card {
    background-color: var(--card-bg-color); padding: 30px; border-radius: 8px;
    border: 1px solid var(--border-color); display: flex; flex-direction: column;
    justify-content: space-between; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#systems .card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 207, 239, 0.15); }
#systems .card .icon { font-size: 2.5rem; margin-bottom: 15px; line-height: 1; }
#systems .card h3 { margin-bottom: 15px; }
#systems .card p { flex-grow: 1; margin-bottom: 20px; font-size: 0.95rem; }
#systems .card .btn { font-size: 0.9rem; padding: 10px 20px; }

#workflow { background: var(--workflow-section-bg); }
#workflow .workflow-visualization-container {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 10px; padding: 30px; background-color: rgba(14,14,14, 0.5);
    border-radius: 12px; border: 1px solid var(--border-color);
    margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
#workflow .workflow-step {
    font-size: 1.1rem; padding: 12px 20px; border-radius: 8px; border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}
#workflow .workflow-step:hover {
    transform: scale(1.05); box-shadow: 0 5px 15px rgba(0, 207, 239, 0.2);
    border-color: var(--primary-color);
}
#workflow .workflow-step.trigger { background-color: rgba(0, 207, 239, 0.1); color: var(--primary-color); border-color: var(--primary-color); }
#workflow .workflow-step.output { background-color: rgba(204, 255, 0, 0.1); color: var(--secondary-color); border-color: var(--secondary-color); }
#workflow .arrow {
    font-size: 1.8rem; color: var(--border-color); font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease; padding: 0 5px;
}
#workflow .workflow-step:hover + .arrow, #workflow .workflow-step.hover-effect + .arrow {
    color: var(--primary-color); transform: scale(1.2);
}
#workflow .cta-center { text-align: center; }

@keyframes vibrate-soft {
    0%, 100% { transform: translateX(0); } 20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); } 60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}
.vibrating-step { animation: vibrate-soft 1s ease-in-out 1; }

#lottie-popup-container {
    position: absolute; background-color: var(--card-bg-color);
    border: 1px solid var(--primary-color); border-radius: 12px;
    padding: 20px; padding-top: 45px; z-index: 1055;
    display: none; flex-direction: column; align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.7); width: 90vw; max-width: 320px;
    transition: opacity 0.3s ease, transform 0.3s ease; opacity: 0;
    transform: translateY(10px) scale(0.95);
}
#lottie-popup-container.visible { display: flex; opacity: 1; transform: translateY(0) scale(1); }
#lottie-popup-description { color: var(--text-color); font-size: 0.9rem; text-align: center; margin-bottom: 0; }
#lottie-popup-close {
    position: absolute; top: 12px; right: 12px; background: transparent;
    border: none; color: var(--primary-color); font-size: 1.8rem;
    font-weight: bold; line-height: 1; cursor: pointer; padding: 5px;
}
#lottie-popup-close:hover { color: var(--secondary-color); }

#use-cases .use-case-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; }
#use-cases .tag {
    background-color: var(--card-bg-color); color: var(--text-color); padding: 10px 20px;
    border-radius: 20px; font-size: 0.9rem; border: 1px solid var(--border-color);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s ease;
    cursor: pointer;
}
#use-cases .tag:hover, #use-cases .tag.active {
    background-color: var(--primary-color); color: var(--bg-color);
    border-color: var(--primary-color); transform: translateY(-3px);
}
.use-case-content-wrapper { margin-top: 30px; }
.use-case-details {
    display: none; background-color: var(--card-bg-color); padding: 30px;
    border-radius: 8px; border: 1px solid var(--border-color);
    text-align: left; animation: fadeIn 0.5s ease-out;
}
.use-case-details.active { display: block; }
.use-case-details h4 { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 10px; border-bottom: 1px solid var(--border-color); padding-bottom: 5px;}
.use-case-details p { font-size: 0.95rem; margin-bottom: 8px;}
.use-case-details strong { color: var(--primary-color); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

#live-insights { background-color: var(--live-insights-bg); }
#live-insights .dashboards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 30px; }
#live-insights .dashboard-placeholder {
    height: 250px;
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-strong);
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}
.dashboard-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}
.dashboard-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at top left, rgba(0, 207, 239, 0.1), transparent 40%),
        radial-gradient(circle at bottom right, rgba(204, 255, 0, 0.05), transparent 50%),
        linear-gradient(rgba(14,14,14,0.3), rgba(14,14,14,0.5));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}
#live-insights .dashboard-placeholder:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 207, 239, 0.15);
}
#live-insights .dashboard-placeholder:hover::before { opacity: 0.8; }
#live-insights .cta-center { text-align: center; }

.spectra-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    background-color: var(--card-bg-color);
    color: var(--text-color);
    padding: 24px;
    max-width: 500px;
    width: min(90vw, 500px);
    max-height: min(92vh, 860px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1050;
}
.spectra-modal::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.spectra-modal .modal-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.spectra-modal h2 {
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    padding: 0 46px 0 0;
}
.spectra-modal .modal-x {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--primary-color);
    background: rgba(0, 207, 239, 0.08);
    color: var(--primary-color);
    font-size: 1.7rem;
    line-height: 1;
    padding: 0;
}
.spectra-modal .modal-x:hover {
    background: rgba(0, 207, 239, 0.18);
    color: var(--text-color-strong);
    transform: scale(1.03);
}
.spectra-modal form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.spectra-modal label {
    font-size: 0.9rem;
    color: var(--text-color-strong);
    margin-bottom: 5px;
    display: block;
}
.spectra-modal input[type="text"],
.spectra-modal input[type="email"],
.spectra-modal input[type="tel"] {
    background-color: #22252a;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.spectra-modal input[type="text"]:focus,
.spectra-modal input[type="email"]:focus,
.spectra-modal input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 207, 239, 0.3);
}
.spectra-modal .modal-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.spectra-modal .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
}
.spectra-modal .form-checkbox input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
}
.spectra-modal .form-checkbox label {
    margin-bottom: 0;
    line-height: 1.65;
    font-weight: 400;
}
.spectra-modal .form-checkbox a { color: var(--primary-color); }
.spectra-modal .form-checkbox a:hover { color: var(--secondary-color); text-decoration: underline; }
.spectra-modal .modal-buttons {
    display: block;
    margin-top: 0;
}
.spectra-modal .modal-submit {
    width: 100%;
    display: block;
    padding: 15px 18px;
    white-space: nowrap;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 207, 239, 0.7); }
    70% { box-shadow: 0 0 10px 15px rgba(0, 207, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 207, 239, 0); }
}
@keyframes subtlePulseBorder {
    0% { border-color: var(--primary-color); box-shadow: 0 0 5px var(--primary-color); }
    50% { border-color: rgba(0, 207, 239, 0.5); box-shadow: 0 0 15px rgba(0, 207, 239, 0.3); }
    100% { border-color: var(--primary-color); box-shadow: 0 0 5px var(--primary-color); }
}
@keyframes skimming {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.skimming-text-effect {
    background-image: linear-gradient(to right, var(--text-color-strong) 0%, var(--text-color-strong) 40%, var(--primary-color) 50%, var(--text-color-strong) 60%, var(--text-color-strong) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: skimming 3s linear infinite;
    display: inline-block;
}
.skimming-text-effect-lime {
    background-image: linear-gradient(to right, var(--text-color-strong) 0%, var(--text-color-strong) 40%, var(--secondary-color) 50%, var(--text-color-strong) 60%, var(--text-color-strong) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: skimming 3s linear infinite;
    display: inline-block;
}

@keyframes headlineGlowBreath {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 207, 239, 0.06), 0 0 22px rgba(0, 207, 239, 0.04);
    }
    50% {
        text-shadow: 0 0 16px rgba(0, 207, 239, 0.16), 0 0 36px rgba(0, 207, 239, 0.08);
    }
}

#hero h1,
#why-spectra h2,
#systems h2,
#workflow h2,
#use-cases h2,
#live-insights h2,
#testimonials h2,
#spectra-discretion h2,
#spectra-leadmagnet h2,
#spectra-team h2,
#ai-governance-seal h2,
#spectra-dominance-strip h2,
#faq h2 {
    position: relative;
    color: var(--text-color-strong);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    #hero h1,
    #why-spectra h2,
    #systems h2,
    #workflow h2,
    #use-cases h2,
    #live-insights h2,
    #testimonials h2,
    #spectra-discretion h2,
    #spectra-leadmagnet h2,
    #spectra-team h2,
    #ai-governance-seal h2,
    #spectra-dominance-strip h2,
    #faq h2 {
        background-image: linear-gradient(
            105deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.96) 36%,
            rgba(0, 207, 239, 0.96) 48%,
            rgba(255, 255, 255, 1) 56%,
            rgba(255, 255, 255, 0.96) 67%,
            rgba(170, 204, 0, 0.92) 79%,
            rgba(255, 255, 255, 0.96) 100%
        );
        background-size: 240% auto;
        background-position: -180% center;
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: skimming 5.8s linear infinite, headlineGlowBreath 5.8s ease-in-out infinite;
    }
}

#hero h1::after,
#why-spectra h2::after,
#systems h2::after,
#workflow h2::after,
#use-cases h2::after,
#live-insights h2::after,
#testimonials h2::after,
#spectra-discretion h2::after,
#spectra-leadmagnet h2::after,
#spectra-team h2::after,
#ai-governance-seal h2::after,
#spectra-dominance-strip h2::after,
#faq h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: min(220px, 42%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 239, 0.75), rgba(170, 204, 0, 0.55), transparent);
    opacity: 0.5;
    pointer-events: none;
}

#hero h1::after {
    bottom: -14px;
    width: min(260px, 50%);
}

@media (prefers-reduced-motion: reduce) {
    #hero h1,
    #why-spectra h2,
    #systems h2,
    #workflow h2,
    #use-cases h2,
    #live-insights h2,
    #testimonials h2,
    #spectra-discretion h2,
    #spectra-leadmagnet h2,
    #spectra-team h2,
    #ai-governance-seal h2,
    #spectra-dominance-strip h2,
    #faq h2 {
        animation: none !important;
        background-position: 50% center;
        text-shadow: none;
    }
}
@keyframes glitch-text {
    0%, 100% { clip-path: inset(0 0 0 0); text-shadow: 0 0 var(--primary-color), 0 0 var(--secondary-color); }
    5% { clip-path: inset(calc(var(--glitch-y, 2)*1%) 0 calc(var(--glitch-x, 5)*1%) 0); text-shadow: -1px -1px var(--primary-color), 1px 1px var(--secondary-color); }
    10% { clip-path: inset(calc(var(--glitch-x, 5)*-0.5%) 0 calc(var(--glitch-y, 2)*0.5%) 0); text-shadow: 1px -1px var(--primary-color), -1px 1px var(--secondary-color); }
    15% { clip-path: inset(calc(var(--glitch-y, 2)*0.5%) 0 calc(var(--glitch-x, 5)*-1%) 0); text-shadow: -1px 1px var(--primary-color), 1px -1px var(--secondary-color); }
    20% { clip-path: inset(0 0 0 0); text-shadow: 0 0 var(--primary-color), 0 0 var(--secondary-color); }
}
@keyframes border-line-anim {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

#spectra-sentinel-view {
    background: #0a0a0c radial-gradient(circle at top left, rgba(0, 207, 239, 0.05), transparent 50%), radial-gradient(circle at bottom right, rgba(204, 255, 0, 0.03), transparent 60%);
    color: var(--secondary-color);
    font-family: 'Courier New', Courier, monospace;
}
#spectra-sentinel-view h2 {
    font-family: var(--font-family);
    color: var(--text-color-strong);
    position: relative;
}
#spectra-sentinel-view h2 .glitch-effect-base-text { color: var(--text-color-strong); }
#spectra-sentinel-view h2.glitch-effect {
    --glitch-x: 3;
    --glitch-y: 6;
    animation: glitch-text 4s infinite steps(1, end) alternate;
}
#spectra-sentinel-view h2.glitch-effect:hover { animation-duration: 0.8s; }
.sentinel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.sentinel-card {
    background-color: rgba(14, 14, 14, 0.7);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sentinel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 207, 239, 0.35);
}
.sentinel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: var(--primary-color);
    animation: border-line-anim 3s infinite linear;
}
.sentinel-card h3 {
    font-family: var(--font-family);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.sentinel-card .status-value {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.sentinel-card .status-value.operational { color: var(--secondary-color); }
.sentinel-card .status-value.low-risk { color: var(--secondary-color); }
.sentinel-card .status-detail {
    font-size: 0.9rem;
    color: #aaa;
    font-family: var(--font-family);
}

#ai-governance-seal { background-color: var(--systems-section-bg); }
.governance-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.governance-points li {
    font-size: 1.05rem;
    color: var(--text-color);
    padding-left: 30px;
    position: relative;
    margin-bottom: 18px;
    line-height: 1.6;
}
.governance-points li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 2px;
}
.governance-seal-visual { display: flex; justify-content: center; align-items: center; }
.seal-placeholder {
    width: 200px;
    height: 230px;
    border: 3px solid var(--primary-color);
    border-radius: 15px 15px 100px 100px / 15px 15px 120px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--primary-color);
    animation: pulse 2.5s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(0, 207, 239, 0.3);
    background: radial-gradient(circle, rgba(0, 207, 239, 0.1) 0%, rgba(0, 207, 239, 0) 70%);
}
.governance-cta { margin-top: 30px; }

#operator-access-beta {
    background: var(--bg-color) url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A1A1D' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}
.access-beta-container {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0 auto;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 207, 239, 0.15);
}
#operator-access-beta h2 { color: var(--text-color-strong); margin-bottom: 15px; }
#operator-access-beta h2 .glitch-effect-base-text { color: var(--text-color-strong); }
.access-beta-form { display: flex; flex-direction: column; gap: 20px; margin-top: 25px; }
.access-beta-form input[type="text"], .access-beta-form input[type="email"] {
    padding: 15px;
    background-color: rgba(34, 37, 42, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.access-beta-form input[type="text"]:focus, .access-beta-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 207, 239, 0.5);
}
.access-beta-form .btn-primary { padding: 15px; font-size: 1.1rem; }
.access-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border: 1px solid var(--secondary-color);
    background-color: var(--card-bg-color);
    color: var(--text-color);
    border-radius: 8px;
    padding: 25px;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
    z-index: 1060;
}
.access-dialog::backdrop {
    background: rgba(14, 14, 14, 0.7);
    backdrop-filter: blur(5px);
}
.access-dialog p { margin-bottom: 20px; }
.access-dialog button {
    background-color: var(--secondary-color);
    color: var(--bg-color);
    border: none;
}

#spectra-discretion {
    background-color: #0A0A0C;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.discretion-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}
.discretion-text h2 { color: var(--text-color-strong); margin-bottom: 25px; }
.discretion-text p { color: var(--text-color); margin-bottom: 30px; font-size: 1.1rem; max-width: 600px; }
.discretion-points li {
    color: var(--text-color); font-size: 1rem; margin-bottom: 15px;
    padding-left: 35px; position: relative; line-height: 1.6;
}
.discretion-points li::before {
    content: '✓'; color: var(--primary-color); font-weight: bold; font-size: 1.2rem;
    position: absolute; left: 0; top: 0; animation: subtlePulseBorder 3s infinite linear;
    border-radius: 50%; width: 24px; height: 24px; display: inline-flex;
    align-items: center; justify-content: center; line-height: 1;
}
.discretion-visual { display: flex; justify-content: center; align-items: center; min-height: 250px; }
.discretion-visual .lottie-placeholder {
    width: 200px; height: 200px; border: 2px dashed var(--primary-color);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    color: var(--primary-color); font-size: 3rem; text-align: center;
    animation: pulse 2s infinite; position: relative;
}
.discretion-cta { margin-top: 40px; text-align: center; }
.discretion-cta .btn-primary { box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color); }
.discretion-cta .btn-primary:hover { box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color); }

#spectra-leadmagnet { background: linear-gradient(135deg, var(--bg-color) 0%, #101218 100%); }
.leadmagnet-container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.leadmagnet-container h2 { color: var(--text-color-strong); margin-bottom: 20px; }
.leadmagnet-container .leadmagnet-intro {
    color: var(--text-color); font-size: 1.1rem; max-width: 700px;
    margin: 0 auto 30px auto; line-height: 1.8;
}
.leadmagnet-form {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    width: 100%; max-width: 500px; margin-bottom: 30px; padding: 30px;
    background-color: var(--card-bg-color); border-radius: 8px;
    border: 1px solid var(--border-color); box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}
.leadmagnet-form .form-group { width: 100%; }
.leadmagnet-form input[type="email"] {
    width: 100%; padding: 15px 20px; font-size: 1rem; background-color: #22252a;
    color: var(--text-color); border: 1px solid var(--border-color); border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.leadmagnet-form input[type="email"]::placeholder { color: #888; }
.leadmagnet-form input[type="email"]:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 207, 239, 0.4);
}
.leadmagnet-form .btn-lime { width: 100%; padding: 15px; font-size: 1.1rem; }
.trust-elements { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.trust-elements .trust-icon {
    display: flex; flex-direction: column; align-items: center;
    color: var(--text-color); font-size: 0.9rem;
}
.trust-elements .trust-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    margin-bottom: 8px; opacity: 0.8;
}
.leadmagnet-disclaimer { font-size: 0.85rem; color: #aaa; max-width: 500px; margin: 0 auto; }

#spectra-team { background-color: var(--bg-color); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.team-card {
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: 10px; padding: 30px 25px;
    text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.team-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 10px; padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease; z-index: -1;
}
.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 207, 239, 0.1), 0 0 20px rgba(204, 255, 0, 0.1);
}
.team-card:hover::before { opacity: 1; }
.team-card .avatar-placeholder {
    width: 120px; height: 120px; border-radius: 50%; background-color: var(--border-color);
    margin: 0 auto 20px auto; display: flex; justify-content: center; align-items: center;
    font-size: 3rem; color: var(--primary-color); background-size: cover;
    background-position: center; border: 3px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 207, 239, 0.3);
}
.team-card h3.member-name { color: var(--text-color-strong); font-size: 1.4rem; margin-bottom: 5px; }
.team-card p.member-title {
    color: var(--primary-color); font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.team-card p.member-focus { color: var(--text-color); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.6; }

#spectra-dominance-strip {
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0a0c 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
#spectra-dominance-strip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 200px;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 239, 0.05), rgba(0, 207, 239, 0.1), rgba(0, 207, 239, 0.05), transparent);
    transform: translateY(-50%) skewX(-20deg);
    opacity: 0.7;
    animation: pulse-strip 10s infinite linear, glitch-strip 15s infinite steps(2, end);
    z-index: 0;
}
@keyframes pulse-strip {
    0% { opacity: 0.3; transform: translateY(-50%) skewX(-20deg) scaleX(1); }
    50% { opacity: 0.7; transform: translateY(-50%) skewX(-20deg) scaleX(1.05); }
    100% { opacity: 0.3; transform: translateY(-50%) skewX(-20deg) scaleX(1); }
}
@keyframes glitch-strip {
    0%, 100% { clip-path: inset(0); }
    25% { clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
    50% { clip-path: inset(0); }
    75% { clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%); }
}
.dominance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}
.counter-card {
    background-color: rgba(22, 22, 24, 0.8);
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.counter-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 207, 239, 0.3);
}
.counter-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px var(--primary-color);
    animation: pulse 2s infinite;
}
.counter-icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: var(--bg-color);
}
.counter-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color-strong);
    margin-bottom: 5px;
}
.counter-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

#testimonials { background-color: var(--testimonials-bg); }
#testimonials .testimonial-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
#testimonials .testimonial-card {
    background-color: var(--card-bg-color);
    padding: 25px; border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}
#testimonials .testimonial-card blockquote { font-style: italic; margin-bottom: 15px; color: var(--text-color); }
#testimonials .testimonial-card cite { font-weight: bold; color: var(--secondary-color); display: block; text-align: right; }

#deep-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-color); text-align: center;
}
#deep-cta h2 { color: var(--bg-color); font-size: 2.5rem; }
#deep-cta .btn {
    margin: 10px; background-color: var(--bg-color); color: var(--primary-color);
    border: 2px solid var(--bg-color);
}
#deep-cta .btn:hover { background-color: transparent; color: var(--bg-color); }
#deep-cta .btn.btn-alt { background-color: transparent; color: var(--bg-color); border: 2px solid var(--bg-color); }
#deep-cta .btn.btn-alt:hover { background-color: var(--bg-color); color: var(--secondary-color); }

#faq .faq-item {
    background-color: var(--card-bg-color); margin-bottom: 15px; border-radius: 5px;
    border: 1px solid var(--border-color);
}
#faq .faq-question {
    padding: 18px 25px; font-weight: 600; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; color: var(--text-color-strong);
}
#faq .faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary-color); transition: transform 0.3s ease; }
#faq .faq-item.active .faq-question::after { transform: rotate(45deg); }
#faq .faq-answer {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.4s ease-out, padding-bottom 0.4s ease-out;
    font-size: 0.95rem; border-top: 1px solid transparent;
}
#faq .faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-color);
}

.site-footer {
    background-color: rgba(26, 26, 29, 0.75); -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); color: #aaa; padding: 50px 0 20px; text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 50px;
}
.site-footer .footer-nav ul { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.site-footer .footer-nav ul li { margin: 0 10px; }
.site-footer .footer-nav ul li a { color: #ccc; font-size: 0.9rem; }
.site-footer .footer-nav ul li a:hover { color: var(--primary-color); }
.site-footer .social-links a { margin: 0 10px; font-size: 1.5rem; color: #ccc; }
.site-footer .social-links a svg {
     width: 24px;
     height: 24px;
     vertical-align: middle;
     fill: currentColor;
}
.site-footer .social-links a:hover { color: var(--primary-color); }
.site-footer .disclaimer { font-size: 0.8rem; max-width: 700px; margin: 20px auto; color: #888; }
.site-footer .copyright { font-size: 0.85rem; margin-top: 20px; }
.site-footer .copyright span { color: var(--primary-color); }
.site-footer address { font-style: normal; color: #bbb; }

@media (max-width: 992px) {
    #hero h1 { font-size: 2.8rem; } #hero .subline { font-size: 1.2rem; }
    h2 { font-size: 2rem; }
    #workflow .workflow-visualization-container { flex-direction: column; gap: 15px;}
    #workflow .arrow { transform: rotate(90deg); margin: 5px 0;}
    #workflow .workflow-step:hover + .arrow,
    #workflow .workflow-step.hover-effect + .arrow { transform: rotate(90deg) scale(1.2); }
    .discretion-content { grid-template-columns: 1fr; text-align: center; }
    .discretion-text p { margin-left: auto; margin-right: auto; }
    .discretion-points li { text-align: left; }
    .governance-content { grid-template-columns: 1fr; text-align: center; }
    .seal-placeholder { margin: 30px auto 0 auto; }
    .dominance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container { width: 95%; } h1 { font-size: 2.5rem; }
    #hero h1 { font-size: 2.5rem; } #hero .subline { font-size: 1.1rem; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px; height: 100vh;
        background-color: var(--bg-color); padding-top: var(--header-height);
        transition: left 0.35s ease-in-out; z-index: 999;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2); border-right: 1px solid var(--border-color);
    }
    .main-nav.active { left: 0; }
    .main-nav ul { flex-direction: column; padding: 20px; }
    .main-nav ul li { margin-left: 0; margin-bottom: 15px; width: 100%; }
    .main-nav ul li a { display: block; padding: 10px; font-size: 1.1rem; border-bottom: 1px solid var(--border-color); }
    .main-nav ul li a::after { display: none; }
    .main-nav ul li:last-child a { border-bottom: none; }
    #why-spectra .grid, #systems .cards-grid, #live-insights .dashboards, #testimonials .testimonial-slider, .team-grid, .sentinel-grid { grid-template-columns: 1fr; }
    #deep-cta .btn { display: block; margin: 15px auto; width: fit-content; }
    #lottie-popup-container { max-width: calc(100vw - 40px); }
    .dominance-grid { grid-template-columns: 1fr; }
    #spectra-dominance-strip::before { height: 150px; }
}
@media (max-width: 480px) {
    body { font-size: 15px; } #hero { min-height: 90vh; }
    #hero h1 { font-size: 2rem; } #hero .subline { font-size: 1rem; }
    #hero .cta-buttons .btn { display: block; margin: 10px auto; width: 80%; }
    h2 { font-size: 1.8rem; margin-bottom: 30px; } section { padding: 60px 0; }
    .btn { padding: 12px 20px; font-size: 0.9rem; }
    #workflow .workflow-step { font-size: 1rem; padding: 10px 15px; }
}

.spectra-modal textarea,
.leadmagnet-form input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    background-color: #22252a;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-family);
}

.spectra-modal textarea {
    min-height: 92px;
    line-height: 1.5;
    resize: vertical;
}

.spectra-modal textarea:focus,
.leadmagnet-form input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 207, 239, 0.4);
}

.spectra-modal .cf-turnstile {
    width: 100%;
    overflow: hidden;
}

.form-status {
    min-height: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
}

.form-status:empty {
    display: none;
}

.form-status[data-state="error"] {
    color: #ff8f8f;
}

.form-status[data-state="success"] {
    color: var(--secondary-color);
}



@media (max-width: 480px) {
    .spectra-modal {
        width: min(94vw, 500px);
        padding: 18px 14px 20px;
    }
    .spectra-modal h2 {
        font-size: 1.95rem;
        padding-right: 40px;
    }
    .spectra-modal .modal-x {
        top: -2px;
        right: -2px;
        width: 36px;
        height: 36px;
        font-size: 1.45rem;
    }
    .spectra-modal .modal-submit {
        font-size: 0.96rem;
        letter-spacing: 0.4px;
    }
}

button[disabled], .btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

button[data-loading="1"], .btn[data-loading="1"] {
    opacity: 0.75;
}

@media (max-width: 768px) {
    #hero h1::after,
    #why-spectra h2::after,
    #systems h2::after,
    #workflow h2::after,
    #use-cases h2::after,
    #live-insights h2::after,
    #testimonials h2::after,
    #spectra-discretion h2::after,
    #spectra-leadmagnet h2::after,
    #spectra-team h2::after,
    #ai-governance-seal h2::after,
    #spectra-dominance-strip h2::after,
    #faq h2::after {
        bottom: -8px;
        width: min(170px, 50%);
    }

    #hero h1::after {
        width: min(190px, 60%);
    }
}


/* Motion override + Im Fokus static underline */
body[data-force-motion="1"] #hero h1,
body[data-force-motion="1"] #why-spectra h2,
body[data-force-motion="1"] #systems h2,
body[data-force-motion="1"] #workflow h2,
body[data-force-motion="1"] #use-cases h2,
body[data-force-motion="1"] #live-insights h2,
body[data-force-motion="1"] #testimonials h2,
body[data-force-motion="1"] #spectra-discretion h2,
body[data-force-motion="1"] #spectra-leadmagnet h2,
body[data-force-motion="1"] #spectra-team h2,
body[data-force-motion="1"] #ai-governance-seal h2,
body[data-force-motion="1"] #faq h2 {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(0, 207, 239, 0.96) 48%, rgba(255, 255, 255, 1) 56%, rgba(255, 255, 255, 0.96) 67%, rgba(170, 204, 0, 0.92) 79%, rgba(255, 255, 255, 0.96) 100%);
    background-size: 240% auto;
    background-position: -180% center;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: skimming 5.8s linear infinite, headlineGlowBreath 5.8s ease-in-out infinite !important;
}

body[data-force-motion="1"] #spectra-dominance-strip {
    padding: 90px 0 70px;
}

body[data-force-motion="1"] #spectra-dominance-strip .container {
    position: relative;
    z-index: 1;
}

body[data-force-motion="1"] #spectra-dominance-strip::before {
    display: none;
    animation: none !important;
}

body[data-force-motion="1"] #spectra-dominance-strip h2 {
    background: none;
    color: var(--text-color-strong);
    -webkit-text-fill-color: initial;
    text-shadow: none;
    animation: none !important;
}

body[data-force-motion="1"] #spectra-dominance-strip h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: min(220px, 42%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 239, 0.75), rgba(170, 204, 0, 0.55), transparent);
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    body[data-force-motion="1"] #spectra-dominance-strip h2::after {
        bottom: -8px;
        width: min(170px, 50%);
    }
}
