:root {
    --bg-primary: #000000;
    --bg-secondary: #0B0B0B;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --accent-gold: #D4AF37;
    --border-color: #1F1F1F;
    --font-family: 'Inter', sans-serif;

    --section-padding-desktop: 96px;
    --section-padding-mobile: 64px;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-gold);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding-desktop) 0;
}

.text-center {
    text-align: center;
}

.text-secondary {
    color: var(--text-secondary);
}

.eyebrow {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--text-secondary);
    color: var(--bg-primary);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-full-width {
    width: 100%;
}

/* Base Panel */
.panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Scroll Indicator */
.scroll-indicator-container {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.5s ease;
    text-decoration: none;
}

.scroll-indicator-container.hidden-on-scroll {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator-container {
        /* Extra padding to avoid mobile browser address/navigation bars */
        bottom: 80px;
    }

    .scroll-indicator-icon {
        /* Slightly more noticeable bounce on mobile */
        animation: bounce-mobile 2s infinite ease-in-out;
    }

    @keyframes bounce-mobile {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-12px);
        }

        60% {
            transform: translateY(-6px);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-indicator-icon {
        animation: none;
    }
}