:root {
    --dark: #000000;
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.9);
    --accent-orange: rgba(255, 127, 36, 0.8);
    --accent-pink: rgba(255, 36, 229, 0.8);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2 {
    font-family: 'Days One', sans-serif;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 2.6rem 2rem 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: fadeIn 1.2s ease-out 0s both;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 100%);
}

.overlay-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    flex: 1;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5vh;
}

.main-logo {
    width: 175.5px;
    height: 16.5px;
    object-fit: contain;
    flex-shrink: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.headline-container {
    position: relative;
    text-align: center;
    margin-bottom: auto; /* push content down */
    margin-top: 6.25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.headline-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 110%;
    max-width: 1155px;
    z-index: -1;
    pointer-events: none;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -1.6px;
    color: #ffffff;
    text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 1205px;
}

.coming-soon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-orange);
    border-radius: 100px;
    box-shadow: 0px 0px 10px 1px rgba(255, 127, 36, 0.3);
    padding: 0.7rem 2.1rem;
    margin-top: 15vh;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.coming-soon-content {
    text-align: center;
}

.coming-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.coming-title {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--accent-orange) 11.5%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* standard property for fallback */
    color: transparent;
}

/* Story Section */
.story-section {
    position: relative;
    width: 100%;
    min-height: auto;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 8rem;
    overflow: hidden;
}

.story-heading {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.34rem);
    letter-spacing: -1px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 6rem;
    width: 70%;
    max-width: 894px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-content {
    position: relative;
    width: 70%;
    max-width: 1160px;
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-section.is-visible .story-heading,
.story-section.is-visible .story-content p {
    opacity: 1;
    transform: translateY(0);
}

.story-section.is-visible .story-heading {
    transition-delay: 0.1s;
}

.story-section.is-visible .story-content p:nth-of-type(1) { transition-delay: 0.3s; }
.story-section.is-visible .story-content p:nth-of-type(2) { transition-delay: 0.5s; }
.story-section.is-visible .story-content p:nth-of-type(3) { transition-delay: 0.7s; }
.story-section.is-visible .story-content p:nth-of-type(4) { transition-delay: 0.9s; }

/* Footer */
footer {
    background-color: var(--dark);
    padding: 2rem;
    text-align: center;
}

.copyright {
    color: #ffffff;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline-container {
        margin-bottom: 3rem;
    }
    .coming-soon {
        padding: 0.56rem 1.4rem;
    }
    .coming-subtitle {
        font-size: 0.7rem;
    }
    .coming-title {
        font-size: 1.26rem;
    }
    .story-section {
        padding: 2rem 1.5rem 4rem;
    }
    .story-heading {
        margin-bottom: 3rem;
        width: 85%;
    }
    .story-content {
        width: 85%;
        font-size: 1.15rem;
    }
}
