:root {
    --bg-color: #121212;
    --text-color: #F4F4F4;
    --accent-color: #FF695B;
    --font-primary: 'Inter', sans-serif;
    --spacing-section: 120px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: rgba(244, 244, 244, 0.9);
}

p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: rgba(244, 244, 244, 0.8);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #121212;
    padding: 16px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    /* Slightly rounded, but keeps the tech feel */
    transition: transform var(--transition-speed), background-color var(--transition-speed);
    margin-top: 2rem;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #ff867a;
    /* Lighter shade of accent */
}

/* Sections */
.section,
.hero-section {
    min-height: 80vh;
    /* Takes up most of the viewport per fold */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-section) 0;
}

.hero-section {
    min-height: 90vh;
    justify-content: flex-start;
    padding-top: 32px;
    /* Logo margin from top */
}

.site-logo {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 40px;
    /* Space between logo and headline */
}

/* Specific Stylings */
.highlight-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 2rem;
}

.big-statement {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 3rem;
    line-height: 1.3;
}

.accent-color {
    color: var(--accent-color);
}

.clean-list,
.check-list {
    list-style: none;
    margin-bottom: 3rem;
    padding-left: 0;
}

.clean-list li,
.check-list li {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0;
}

.clean-list li::before {
    content: "•";
    color: var(--accent-color);
    margin-right: 15px;
}

.check-list li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 15px;
}

.negative-list li::before {
    content: "×";
    color: #666;
    margin-right: 15px;
}

.no-nonsense,
.warning-text,
.alert-text {
    font-size: 1.25rem;
    font-weight: 500;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
    margin-top: 2rem;
}

.warning-text {
    border-color: #444;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 60px;
}

footer p {
    font-size: 0.875rem;
    color: #666;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --spacing-section: 80px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section,
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-section {
        padding-top: 32px;
        padding-bottom: 60px;
    }

    .site-logo {
        height: 32px;
        margin-bottom: 24px;
    }
}

.email-display {
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.75;
    color: rgba(244, 244, 244, 0.6);
}

.email-display a {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    color: inherit;
    transition: opacity var(--transition-speed);
}

.email-display a:hover {
    opacity: 1;
}