:root {
    --bg: #211A2E;
    --accent: #D6B9F1;
    --white: #FFFFFF;

    --content-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    min-height: 100vh;
}

/* ================================
   GLOBAL
================================ */

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ================================
   HERO SECTION
================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__logo {
    margin-bottom: 28px;
}

.hero__logo img {
    width: 300px;
    height: 300px;
}

.wordmark {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: clamp(42px, 6vw, 82px);
    letter-spacing: 0.08em;
    color: var(--white);
}

.wordmark__text {
    display: inline-flex;
    align-items: baseline;
    letter-spacing: 0.12em;
    gap: 0;
}

.wordmark__logo {
    height: 1em;
    width: auto;
    display: inline-block;
    transform: translateY(0.15em);
}

.tagline {
    margin-top: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 1.5vw, 20px);
    letter-spacing: 0.28em;
    color: var(--accent);
}

.scroll-hint {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 0.2em;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.scroll-hint:hover {
    opacity: 1;
}

.arrow {
    font-size: 20px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* ================================
   SECTIONS
================================ */

.section {
    position: relative;
    min-height: 70vh;
    width: min(calc(100% - 80px), var(--content-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(214, 185, 241, 0.25);
}

.section__number {
    position: absolute;
    top: 40px;
    left: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--accent);
    opacity: 0.7;
}

.section__content {
    max-width: 650px;
}

.section__content h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: clamp(42px, 7vw, 100px);
    letter-spacing: 0.04em;
    color: var(--accent);
}

.section__content p {
    margin-top: 32px;
    max-width: 520px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.7;
}

/* ================================
   FOOTER
================================ */

.footer {
    width: min(calc(100% - 80px), var(--content-width));
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(214, 185, 241, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 11px;
    color: var(--white);
}

.footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.7;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__brand img {
    width: 20px;
    height: 20px;
}

.footer__notice {
    font-size: 10px;
    line-height: 1.4;
    opacity: 0.4;
}

/* ================================
   MEDIA QUERIES
================================ */

@media (max-width: 700px) {
    .hero__logo img {
        width: 200px;
        height: 200px;
    }

    .tagline {
        letter-spacing: 0.16em;
    }

    .section {
        width: calc(100% - 40px);
        min-height: 60vh;
    }

    .section__content p {
        font-size: 16px;
    }

    .footer {
        width: calc(100% - 40px);
    }

    .footer__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}