/* ============================================
   LED / Neon UX System
   Pulse animations, breathing glows, LED strips,
   neon borders, animated indicators
   ============================================ */

/* ========== KEYFRAMES ========== */

/* Slow breathing neon glow */
@keyframes neonBreathe {
    0%, 100% {
        text-shadow:
            0 0 7px rgba(139, 154, 91, 0.4),
            0 0 20px rgba(139, 154, 91, 0.2),
            0 0 40px rgba(139, 154, 91, 0.1);
    }
    50% {
        text-shadow:
            0 0 10px rgba(163, 177, 103, 0.6),
            0 0 30px rgba(139, 154, 91, 0.35),
            0 0 60px rgba(139, 154, 91, 0.15),
            0 0 80px rgba(139, 154, 91, 0.05);
    }
}

/* Stronger neon pulse for accents */
@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 5px rgba(163, 177, 103, 0.5),
            0 0 15px rgba(139, 154, 91, 0.3),
            0 0 30px rgba(139, 154, 91, 0.15);
        opacity: 1;
    }
    50% {
        text-shadow:
            0 0 10px rgba(163, 177, 103, 0.8),
            0 0 25px rgba(139, 154, 91, 0.5),
            0 0 50px rgba(139, 154, 91, 0.25),
            0 0 80px rgba(139, 154, 91, 0.1);
        opacity: 0.95;
    }
}

/* Box-shadow breathing for cards/elements */
@keyframes glowBreathe {
    0%, 100% {
        box-shadow:
            0 0 5px rgba(139, 154, 91, 0.15),
            0 0 15px rgba(139, 154, 91, 0.08),
            inset 0 0 10px rgba(139, 154, 91, 0.03);
    }
    50% {
        box-shadow:
            0 0 10px rgba(139, 154, 91, 0.3),
            0 0 30px rgba(139, 154, 91, 0.15),
            0 0 60px rgba(139, 154, 91, 0.05),
            inset 0 0 15px rgba(139, 154, 91, 0.05);
    }
}

/* LED dot pulse */
@keyframes ledPulse {
    0%, 100% {
        box-shadow:
            0 0 4px currentColor,
            0 0 10px currentColor;
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 8px currentColor,
            0 0 20px currentColor,
            0 0 40px rgba(139, 154, 91, 0.3);
        transform: scale(1.15);
    }
}

/* Neon border sweep - travels along the border */
@keyframes neonBorderSweep {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* LED strip scanner */
@keyframes ledScan {
    0% { left: -30%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* Underline glow width pulse */
@keyframes lineGlow {
    0%, 100% {
        width: 60px;
        box-shadow:
            0 0 8px var(--pit-500),
            0 0 20px rgba(139, 154, 91, 0.3);
    }
    50% {
        width: 80px;
        box-shadow:
            0 0 12px var(--pit-500),
            0 0 30px rgba(139, 154, 91, 0.5),
            0 0 50px rgba(139, 154, 91, 0.15);
    }
}

/* Flicker effect for that authentic neon feel */
@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.85;
    }
}

/* Scanning LED strip on cards */
@keyframes cardScanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}


/* ========== FONTS ========== */

/* Orbitron for display headings - tech/futuristic feel */
.hero-card-title,
.parent-name,
.hero-stat-value,
.nav-logo-text {
    font-family: 'Orbitron', 'Outfit', sans-serif;
}


/* ========== HERO SECTION ========== */

/* Hero title: breathing neon */
.hero-title {
    animation: neonBreathe 4s ease-in-out infinite;
}

/* Accent text: stronger pulse */
.hero-title .accent {
    text-shadow: none;
    filter:
        drop-shadow(0 0 8px rgba(139, 154, 91, 0.5))
        drop-shadow(0 0 30px rgba(139, 154, 91, 0.2));
    animation: neonFlicker 8s linear infinite;
}

/* Hero card title Orbitron + breathing glow */
.hero-card-title {
    font-family: 'Orbitron', 'Outfit', sans-serif;
    letter-spacing: 0.2em;
    animation: neonPulse 3s ease-in-out infinite;
}

/* Hero stat values: LED counter with pulse */
.hero-stat-value {
    font-family: 'Orbitron', 'Space Mono', monospace;
    animation: neonPulse 4s ease-in-out infinite;
}

/* Stagger stat animations */
.hero-stat:nth-child(1) .hero-stat-value { animation-delay: 0s; }
.hero-stat:nth-child(2) .hero-stat-value { animation-delay: 0.6s; }
.hero-stat:nth-child(3) .hero-stat-value { animation-delay: 1.2s; }

/* Hero badge dot: LED indicator pulse */
.hero-badge-dot {
    color: var(--pit-500);
    animation: ledPulse 2s ease-in-out infinite;
}

/* Hero badge: neon border sweep */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 154, 91, 0.6), transparent);
    background-size: 200% 100%;
    animation: neonBorderSweep 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Hero glass card: breathing glow border */
.hero-glass-card {
    animation: glowBreathe 5s ease-in-out infinite;
}


/* ========== SECTION TITLES ========== */

/* Section title underline: pulsing LED bar */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--pit-500);
    border-radius: 2px;
    animation: lineGlow 3s ease-in-out infinite;
}

/* Centered section headers */
.section-header[style*="text-align: center"] .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Section label text: subtle neon */
.section-label-text {
    text-shadow: 0 0 10px rgba(139, 154, 91, 0.3);
    animation: neonBreathe 6s ease-in-out infinite;
}

/* Section label line: LED bar */
.section-label-line {
    box-shadow: 0 0 8px rgba(139, 154, 91, 0.5);
    animation: glowBreathe 4s ease-in-out infinite;
}


/* ========== NAVIGATION ========== */

/* Nav logo text LED glow */
.nav-logo-text {
    text-shadow:
        0 0 10px rgba(139, 154, 91, 0.3),
        0 0 30px rgba(139, 154, 91, 0.1);
    letter-spacing: 0.15em;
    animation: neonBreathe 5s ease-in-out infinite;
}

/* Nav CTA: pulsing glow */
.nav-cta {
    box-shadow: 0 0 12px rgba(139, 154, 91, 0.15);
    animation: glowBreathe 3s ease-in-out infinite;
}

.nav-cta:hover {
    box-shadow:
        0 0 20px rgba(139, 154, 91, 0.5),
        0 0 50px rgba(139, 154, 91, 0.2),
        0 0 80px rgba(139, 154, 91, 0.08);
    animation: none;
}

/* Nav pill: neon border sweep */
.nav::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(90deg, transparent 30%, rgba(139, 154, 91, 0.4), transparent 70%);
    background-size: 200% 100%;
    animation: neonBorderSweep 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


/* ========== FEATURE CARDS ========== */

/* Card top-line scanner effect on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pit-500), var(--pit-400), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.feature-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(139, 154, 91, 0.5);
}

/* Feature card hover: neon edge glow */
.feature-card:hover {
    box-shadow:
        0 0 10px rgba(139, 154, 91, 0.15),
        0 0 30px rgba(139, 154, 91, 0.08),
        inset 0 1px 0 rgba(139, 154, 91, 0.2);
}

/* Feature icon: breathing glow */
.feature-icon {
    animation: glowBreathe 5s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 2s; }

/* Feature numbers: LED monospace */
.feature-number {
    font-family: 'Orbitron', 'Space Mono', monospace;
    color: var(--pit-400);
    text-shadow: 0 0 10px rgba(139, 154, 91, 0.4);
    letter-spacing: 0.15em;
    animation: neonPulse 5s ease-in-out infinite;
}


/* ========== SECTOR CARDS ========== */

/* Sector icon: LED glow pulse */
.sector-icon {
    animation: glowBreathe 4s ease-in-out infinite;
}

/* Stagger sector card icon animations */
.sector-card:nth-child(1) .sector-icon { animation-delay: 0s; }
.sector-card:nth-child(2) .sector-icon { animation-delay: 0.5s; }
.sector-card:nth-child(3) .sector-icon { animation-delay: 1s; }
.sector-card:nth-child(4) .sector-icon { animation-delay: 1.5s; }
.sector-card:nth-child(5) .sector-icon { animation-delay: 2s; }
.sector-card:nth-child(6) .sector-icon { animation-delay: 2.5s; }

/* Sector card hover: neon edge */
.sector-card:hover {
    border-color: rgba(139, 154, 91, 0.4);
    box-shadow:
        0 0 15px rgba(139, 154, 91, 0.15),
        0 0 40px rgba(139, 154, 91, 0.06),
        inset 0 1px 0 rgba(139, 154, 91, 0.15);
}

/* Sector subtitle: subtle glow */
.sector-sub {
    text-shadow: 0 0 10px rgba(139, 154, 91, 0.2);
}

/* Sector tags: LED pill glow on hover */
.sector-tag {
    transition: all 0.3s ease;
}

.sector-tag:hover {
    background: rgba(139, 154, 91, 0.2);
    box-shadow: 0 0 10px rgba(139, 154, 91, 0.2);
}


/* ========== CORPORATE STRUCTURE ========== */

/* Parent card name: Orbitron + breathing */
.parent-name {
    font-family: 'Orbitron', 'Outfit', sans-serif;
    animation: neonBreathe 4s ease-in-out infinite;
}

/* Parent card: neon border sweep */
.parent-card {
    animation: glowBreathe 6s ease-in-out infinite;
}

/* Parent badge: illuminated pulse */
.parent-badge {
    box-shadow:
        0 0 10px rgba(139, 154, 91, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: glowBreathe 3s ease-in-out infinite;
}

/* Connector node: LED node pulsing */
.connector-bar::before {
    color: var(--pit-500);
    animation: ledPulse 2.5s ease-in-out infinite;
}

/* Connector drop endpoints: staggered LED pulse */
.connector-drop::after {
    color: var(--pit-600);
    animation: ledPulse 3s ease-in-out infinite;
}

.connector-drop:nth-child(1)::after { animation-delay: 0s; }
.connector-drop:nth-child(2)::after { animation-delay: 0.5s; }
.connector-drop:nth-child(3)::after { animation-delay: 1s; }

/* Connector bar: scanning LED light */
.connector-bar {
    overflow: hidden;
    position: relative;
}

.connector-bar::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 30%;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(139, 154, 91, 0.8), transparent);
    border-radius: 3px;
    animation: ledScan 3s ease-in-out infinite;
    filter: blur(1px);
}

/* Division codes: LED readout */
.division-code {
    font-family: 'Orbitron', 'Space Mono', monospace;
    text-shadow: 0 0 8px rgba(139, 154, 91, 0.2);
    letter-spacing: 0.1em;
    animation: neonPulse 6s ease-in-out infinite;
}

.division-card:nth-child(1) .division-code { animation-delay: 0s; }
.division-card:nth-child(2) .division-code { animation-delay: 0.8s; }
.division-card:nth-child(3) .division-code { animation-delay: 1.6s; }

/* Division card: neon bottom line on hover */
.division-card {
    position: relative;
    overflow: hidden;
}

.division-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pit-500), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

.division-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(139, 154, 91, 0.5);
}

/* Division icon: breathing glow */
.division-icon {
    animation: glowBreathe 4s ease-in-out infinite;
}

.division-card:nth-child(1) .division-icon { animation-delay: 0.3s; }
.division-card:nth-child(2) .division-icon { animation-delay: 0.9s; }
.division-card:nth-child(3) .division-icon { animation-delay: 1.5s; }

/* Partners badge dots: LED pulse */
.partners-badge-dot {
    color: var(--pit-500);
    animation: ledPulse 2s ease-in-out infinite;
}

.partners-badge-dot:last-child {
    animation-delay: 1s;
}

/* Partner abbreviation: LED badge with pulse */
.partner-abbr {
    font-family: 'Orbitron', 'Space Mono', monospace;
    text-shadow: 0 0 12px rgba(139, 154, 91, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    animation: glowBreathe 4s ease-in-out infinite;
}

.partner-card:nth-child(1) .partner-abbr { animation-delay: 0s; }
.partner-card:nth-child(2) .partner-abbr { animation-delay: 0.5s; }
.partner-card:nth-child(3) .partner-abbr { animation-delay: 1s; }
.partner-card:nth-child(4) .partner-abbr { animation-delay: 1.5s; }

/* Partner card hover: neon edge */
.partner-card:hover {
    border-color: rgba(139, 154, 91, 0.3);
    box-shadow:
        0 0 10px rgba(139, 154, 91, 0.12),
        0 0 25px rgba(139, 154, 91, 0.05);
}


/* ========== SOLUTIONS ========== */

/* Solution featured: breathing neon border */
.solution-featured {
    animation: glowBreathe 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* LED strip scanner across featured card */
.solution-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 154, 91, 0.6), transparent);
    animation: cardScanLine 4s ease-in-out infinite;
}

/* Solution card hover: neon glow */
.solution-card:hover {
    border-color: rgba(139, 154, 91, 0.3);
    box-shadow:
        0 0 15px rgba(139, 154, 91, 0.12),
        0 0 30px rgba(139, 154, 91, 0.05);
}


/* ========== BUTTONS ========== */

/* Primary button: LED glow + pulse on hover */
.btn-primary {
    position: relative;
    box-shadow:
        0 0 15px rgba(139, 154, 91, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    box-shadow:
        0 0 20px rgba(139, 154, 91, 0.5),
        0 0 50px rgba(139, 154, 91, 0.2),
        0 0 80px rgba(139, 154, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: glowBreathe 1.5s ease-in-out infinite;
}

/* Glass button: neon border on hover */
.btn-glass:hover {
    border-color: rgba(139, 154, 91, 0.5);
    box-shadow:
        0 0 10px rgba(139, 154, 91, 0.15),
        0 0 30px rgba(139, 154, 91, 0.06);
}

/* Form submit: LED pulse on hover */
.form-submit {
    position: relative;
    overflow: hidden;
}

.form-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
}

.form-submit:hover::after {
    animation: cardScanLine 1.5s ease-in-out infinite;
}

.form-submit:hover {
    box-shadow:
        0 0 20px rgba(139, 154, 91, 0.5),
        0 0 50px rgba(139, 154, 91, 0.2),
        0 0 80px rgba(139, 154, 91, 0.08);
}


/* ========== CONTACT ========== */

/* Contact heading: breathing neon */
.contact-info h2 {
    animation: neonBreathe 4s ease-in-out infinite;
}

/* Contact item icons: LED pulse */
.contact-item-icon {
    animation: glowBreathe 4s ease-in-out infinite;
}

.contact-item:nth-child(1) .contact-item-icon { animation-delay: 0s; }
.contact-item:nth-child(2) .contact-item-icon { animation-delay: 1s; }

/* Form input: neon focus glow */
.form-input:focus {
    box-shadow:
        0 0 10px rgba(139, 154, 91, 0.2),
        0 0 30px rgba(139, 154, 91, 0.08);
}


/* ========== FOOTER ========== */

/* Footer top border: LED strip */
.site-footer {
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 5%,
        rgba(139, 154, 91, 0.15) 20%,
        rgba(139, 154, 91, 0.5) 50%,
        rgba(139, 154, 91, 0.15) 80%,
        transparent 95%
    );
    box-shadow: 0 0 15px rgba(139, 154, 91, 0.2);
}

/* Footer bottom border: same LED treatment */
.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 10%,
        rgba(139, 154, 91, 0.3) 40%,
        rgba(139, 154, 91, 0.3) 60%,
        transparent 90%
    );
    box-shadow: 0 0 8px rgba(139, 154, 91, 0.1);
}


/* ========== SCROLL RAIL (variant-3d) ========== */

/* Neon glow on the scroll progress fill */
.scroll-rail-fill {
    box-shadow:
        0 0 6px rgba(139, 154, 91, 0.5),
        0 0 15px rgba(139, 154, 91, 0.25);
}


/* ========== GLASS CARDS GLOBAL ========== */

/* All glass cards: subtle neon border on hover */
.glass:hover {
    border-color: rgba(139, 154, 91, 0.25);
    box-shadow:
        0 0 8px rgba(139, 154, 91, 0.08),
        0 0 20px rgba(139, 154, 91, 0.03);
}


/* ========== INNER PAGE COMPONENTS ========== */

/* Page hero title: breathing neon */
.page-hero-title {
    animation: neonBreathe 4s ease-in-out infinite;
}

/* Stat values: LED counter pulse */
.stat-value {
    font-family: 'Orbitron', 'Space Mono', monospace;
    animation: neonPulse 4s ease-in-out infinite;
}

.stat-card:nth-child(1) .stat-value { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-value { animation-delay: 0.5s; }
.stat-card:nth-child(3) .stat-value { animation-delay: 1s; }
.stat-card:nth-child(4) .stat-value { animation-delay: 1.5s; }

/* Timeline dots: LED pulse */
.timeline-item::before {
    animation: ledPulse 3s ease-in-out infinite;
    color: var(--pit-500);
}

.timeline-item:nth-child(1)::before { animation-delay: 0s; }
.timeline-item:nth-child(2)::before { animation-delay: 0.3s; }
.timeline-item:nth-child(3)::before { animation-delay: 0.6s; }
.timeline-item:nth-child(4)::before { animation-delay: 0.9s; }

/* Timeline year: Orbitron LED readout */
.timeline-year {
    font-family: 'Orbitron', 'Space Mono', monospace;
    text-shadow: 0 0 8px rgba(139, 154, 91, 0.3);
    animation: neonPulse 5s ease-in-out infinite;
}

/* Team avatar: breathing glow */
.team-avatar {
    animation: glowBreathe 5s ease-in-out infinite;
}

.team-card:nth-child(1) .team-avatar { animation-delay: 0s; }
.team-card:nth-child(2) .team-avatar { animation-delay: 0.5s; }
.team-card:nth-child(3) .team-avatar { animation-delay: 1s; }
.team-card:nth-child(4) .team-avatar { animation-delay: 1.5s; }

/* Product code: LED readout */
.product-code {
    font-family: 'Orbitron', 'Space Mono', monospace;
    text-shadow: 0 0 8px rgba(139, 154, 91, 0.2);
    animation: neonPulse 6s ease-in-out infinite;
}

/* Process step number: faint LED */
.process-step-number {
    text-shadow: 0 0 20px rgba(139, 154, 91, 0.15);
}

/* CTA banner: breathing border */
.cta-banner {
    animation: glowBreathe 6s ease-in-out infinite;
}

/* Link card icon: breathing glow */
.link-card-icon {
    animation: glowBreathe 5s ease-in-out infinite;
}

/* Impact card icon: breathing glow */
.impact-icon {
    animation: glowBreathe 5s ease-in-out infinite;
}

/* ========== REDUCED MOTION ========== */

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-card-title,
    .hero-stat-value,
    .hero-badge-dot,
    .partners-badge-dot,
    .parent-name,
    .nav-logo-text,
    .section-label-text,
    .feature-number,
    .feature-icon,
    .sector-icon,
    .division-code,
    .division-icon,
    .partner-abbr,
    .hero-glass-card,
    .parent-card,
    .parent-badge,
    .solution-featured,
    .contact-info h2,
    .contact-item-icon,
    .nav-cta,
    .btn-primary:hover,
    .connector-bar::before,
    .connector-drop::after,
    .section-label-line,
    .section-title::after,
    .page-hero-title,
    .stat-value,
    .timeline-item::before,
    .timeline-year,
    .team-avatar,
    .product-code,
    .cta-banner,
    .link-card-icon,
    .impact-icon {
        animation: none !important;
    }

    .hero-title .accent,
    .connector-bar::after,
    .solution-featured::after,
    .form-submit::after,
    .nav::after,
    .hero-badge::before {
        animation: none !important;
    }
}

/* ============================================
   Light Theme - LED/Neon Toned Down
   Subtle shadows instead of neon glows
   ============================================ */

/* Kill all breathing/neon/glow animations in light mode */
:root[data-theme="light"] .hero-title,
:root[data-theme="light"] .hero-card-title,
:root[data-theme="light"] .hero-stat-value,
:root[data-theme="light"] .parent-name,
:root[data-theme="light"] .nav-logo-text,
:root[data-theme="light"] .section-label-text,
:root[data-theme="light"] .feature-number,
:root[data-theme="light"] .feature-icon,
:root[data-theme="light"] .sector-icon,
:root[data-theme="light"] .division-code,
:root[data-theme="light"] .division-icon,
:root[data-theme="light"] .partner-abbr,
:root[data-theme="light"] .hero-glass-card,
:root[data-theme="light"] .parent-card,
:root[data-theme="light"] .parent-badge,
:root[data-theme="light"] .solution-featured,
:root[data-theme="light"] .contact-info h2,
:root[data-theme="light"] .contact-item-icon,
:root[data-theme="light"] .nav-cta,
:root[data-theme="light"] .connector-bar::before,
:root[data-theme="light"] .connector-drop::after,
:root[data-theme="light"] .section-label-line,
:root[data-theme="light"] .page-hero-title,
:root[data-theme="light"] .stat-value,
:root[data-theme="light"] .timeline-item::before,
:root[data-theme="light"] .timeline-year,
:root[data-theme="light"] .team-avatar,
:root[data-theme="light"] .product-code,
:root[data-theme="light"] .cta-banner,
:root[data-theme="light"] .link-card-icon,
:root[data-theme="light"] .impact-icon {
    animation: none;
}

/* Kill animated pseudo-elements */
:root[data-theme="light"] .hero-title .accent,
:root[data-theme="light"] .connector-bar::after,
:root[data-theme="light"] .solution-featured::after,
:root[data-theme="light"] .form-submit::after,
:root[data-theme="light"] .nav::after,
:root[data-theme="light"] .hero-badge::before {
    animation: none;
}

/* Hero title: clean text, no glow */
:root[data-theme="light"] .hero-title {
    text-shadow: none;
}

:root[data-theme="light"] .hero-title .accent {
    filter: none;
    background: linear-gradient(135deg, var(--pit-500), var(--pit-700));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Section elements: clean shadows */
:root[data-theme="light"] .section-label-text {
    text-shadow: none;
}

:root[data-theme="light"] .section-label-line {
    box-shadow: none;
}

:root[data-theme="light"] .section-title::after {
    box-shadow: none;
}

/* Nav glow: subtle or none */
:root[data-theme="light"] .nav-logo-text {
    text-shadow: none;
}

:root[data-theme="light"] .nav-cta {
    box-shadow: none;
}

:root[data-theme="light"] .nav::after {
    opacity: 0;
}

/* Cards: subtle hover shadows */
:root[data-theme="light"] .feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .feature-card:hover::before {
    box-shadow: none;
}

:root[data-theme="light"] .sector-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .sector-sub {
    text-shadow: none;
}

:root[data-theme="light"] .sector-tag:hover {
    background: rgba(139, 154, 91, 0.15);
    box-shadow: none;
}

/* Corporate structure */
:root[data-theme="light"] .parent-badge {
    box-shadow: none;
}

:root[data-theme="light"] .connector-bar::before {
    box-shadow: 0 0 6px var(--glow-color-subtle);
}

:root[data-theme="light"] .division-code {
    text-shadow: none;
}

:root[data-theme="light"] .division-card:hover::before {
    box-shadow: none;
}

:root[data-theme="light"] .partner-abbr {
    text-shadow: none;
}

:root[data-theme="light"] .partner-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Solutions */
:root[data-theme="light"] .solution-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Buttons: clean shadows */
:root[data-theme="light"] .btn-primary {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

:root[data-theme="light"] .btn-glass:hover {
    border-color: var(--glow-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Footer: clean borders */
:root[data-theme="light"] .site-footer::before {
    background: linear-gradient(90deg, transparent 5%, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.06) 80%, transparent 95%);
    box-shadow: none;
}

:root[data-theme="light"] .footer-bottom::before {
    background: linear-gradient(90deg, transparent 10%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.06) 60%, transparent 90%);
    box-shadow: none;
}

/* Form focus: subtle */
:root[data-theme="light"] .form-input:focus {
    box-shadow: 0 0 0 3px rgba(139, 154, 91, 0.1);
}

:root[data-theme="light"] .form-submit:hover {
    box-shadow: 0 8px 30px rgba(139, 154, 91, 0.2);
}

/* Hero badge: no border sweep */
:root[data-theme="light"] .hero-badge-dot {
    box-shadow: none;
    animation: none;
}

:root[data-theme="light"] .hero-badge::before {
    opacity: 0;
}

/* Partners badge dot */
:root[data-theme="light"] .partners-badge-dot {
    box-shadow: none;
    animation: none;
}

/* Scroll rail */
:root[data-theme="light"] .scroll-rail-fill {
    box-shadow: none;
}

/* Feature numbers: clean */
:root[data-theme="light"] .feature-number {
    text-shadow: none;
    color: #bbbbbb;
}

/* Inner page components */
:root[data-theme="light"] .page-hero-title {
    text-shadow: none;
}

:root[data-theme="light"] .stat-value {
    text-shadow: none;
}

:root[data-theme="light"] .timeline-year {
    text-shadow: none;
}

:root[data-theme="light"] .product-code {
    text-shadow: none;
}

:root[data-theme="light"] .process-step-number {
    text-shadow: none;
}
