/* Base Styles: Variables, Resets, Typography */
/* Content-First Refactor - Phase 4: User Story 2 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;700;900&display=swap');

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

/* Body and Typography */
body {
    font-family: 'Barlow', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #cc0000;
}

/* Typography Styles */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.9;
    color: #fff;
    text-shadow:
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.5),
        0 0 90px rgba(255, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: glitchText 15s ease-in-out infinite;
    animation-delay: 2s;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 100, 100, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 1rem;
    font-weight: 300;
}

.awards-badge {
    font-size: 1rem;
    color: rgba(255, 200, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hook {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* No-Script Styles */
.no-js .accordion-content,
.no-js .process-content,
.no-js .evidence-content,
.no-js .credentials,
.no-js .faq-answer {
    max-height: none;
    opacity: 1;
}

.no-js .accordion-trigger::after {
    display: none;
}
