:root {
    --bg-dark: #020617;
    --text-white: #f1f5f9;
    --text-grey: #94a3b8;
    --gold: #fbbf24;
    --gold-dim: rgba(251, 191, 36, 0.1);
    --gradient: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, #020617 100%);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--gold);
}

/* Scroll Animation Classes */
.scroll-section {
    min-height: 80vh;
    /* Forces long scroll */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
    position: relative;
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Max width for reading comfort */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 70%);
}

.logo {
    aspect-ratio: 1/1;
    width: 25%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.tagline {
    font-size: 1.5rem;
    text-decoration: wavy;
    color: var(--text-grey);
    font-style: italic;
}


.tagline {
    position: relative;
    display: inline-block;
}

.tagline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 6px;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(251, 191, 36, 0.6) 25%,
            rgba(251, 191, 36, 0.9) 50%,
            rgba(251, 191, 36, 0.6) 75%,
            transparent 100%);
    background-size: 200% 100%;
    animation: waveMove 4s ease-in-out infinite;
    border-radius: 10px;
    filter: blur(0.4px);
    opacity: 0.9;
}

@keyframes waveMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- SECTIONS --- */
.divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 30px;
}

/* --- CARDS FOR PROCESS --- */
.process-list {
    text-align: left;
    margin-top: 40px;
}

.process-item {
    border-left: 3px solid var(--gold);
    padding-left: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-item::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
}

.process-item h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* --- QUOTE BOX --- */
.quote-box {
    border: 1px solid var(--gold);
    padding: 50px;
    border-radius: 20px;
    background: var(--gold-dim);
    margin-top: 50px;
}

/* --- FOOTER --- */
footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid #1e293b;
    color: #475569;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
    color: var(--gold);
    font-size: 2rem;
}

@keyframes bounce {

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

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

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

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowFloat {
    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

.hero .logo {
    animation: fadeUp 1.2s ease-out forwards, slowFloat 6s ease-in-out infinite;
}

.hero h1 {
    opacity: 0;
    animation: fadeUp 1.4s ease-out forwards;
    animation-delay: 0.2s;
}

.hero .tagline {
    opacity: 0;
    animation: fadeUp 1.6s ease-out forwards;
    animation-delay: 0.4s;
}

.hero .scroll-hint {
    animation-delay: 1.2s;
}