* , *::before , *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #faf8f4;
    color: #1a1a1a;
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: #e6a800;
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
}

/* Hero Verdict Section */
#hero-verdict {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
}

#verdict-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5vw;
    max-width: 90vw;
}

.verdict-letter {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: clamp(5rem, 15vw, 12rem);
    color: #f5f5f5;
    text-transform: uppercase;
    display: inline-block;
    opacity: 0;
    transform: translate(var(--rand-x, 0), var(--rand-y, 0)) rotate(var(--rand-rot, 0deg)) scale(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--i) * 50ms);
    letter-spacing: -0.02em;
}

.verdict-letter.spacer {
    width: 2vw;
}

.verdict-letter.animate {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
}

/* Review Body */
#review-body {
    background: #faf8f4;
    padding: 4rem 2rem;
}

#review-content {
    max-width: 640px;
    margin: 0 auto;
}

.review-section {
    margin-bottom: 4rem;
}

/* Breakout Headings */
.breakout-heading {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #1a1a1a;
    text-transform: uppercase;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    padding: 2rem calc((100vw - 640px) / 2 + 2rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0d8c8;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Reading Column */
.reading-column {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.reading-column p {
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.reading-column p:last-child {
    margin-bottom: 0;
}

/* Pull Quotes */
.pull-quote {
    font-family: 'Source Serif 4', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.75;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 6px solid #e6a800;
    display: block;
}

/* Final Score Section */
#final-score-section {
    margin: 6rem 0;
}

#final-score {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid #e0d8c8;
    border-bottom: 2px solid #e0d8c8;
    margin: 0 auto;
    max-width: 640px;
}

.score-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.score-number {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 12vw, 10rem);
    color: #e6a800;
    display: inline-block;
}

.score-label {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #666666;
    display: inline-block;
}

.score-summary {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    color: #666666;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.75;
}

/* Footer */
#site-footer {
    background: #f5f5f5;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid #e0d8c8;
}

.footer-brand {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #0a0a0a;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    #review-body {
        padding: 3rem 1rem;
    }

    .breakout-heading {
        font-size: clamp(2rem, 10vw, 4rem);
        padding: 1.5rem 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }

    .verdict-letter {
        font-size: clamp(3rem, 12vw, 8rem);
    }

    #final-score {
        padding: 2rem 1rem;
    }

    #site-footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    #review-body {
        padding: 2rem 1rem;
    }

    .review-section {
        margin-bottom: 3rem;
    }

    .breakout-heading {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .reading-column p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .pull-quote {
        font-size: 1.1rem;
        margin: 1.5rem 0;
        padding-left: 1rem;
    }

    .score-container {
        flex-direction: column;
        gap: 0;
    }

    .score-summary {
        font-size: 0.95rem;
    }
}
