/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir', 'Avenir Next', -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    opacity: 0.8;
}

/* =====================
   Background Video
   ===================== */
.bg-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

/* =====================
   Sections (shared)
   ===================== */
.section {
    position: relative;
    width: 100%;
    min-width: 0;
}

.section-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    z-index: 0;
}

/* =====================
   Section 1: Hero
   ===================== */
.hero-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0 40px;
}

.hero-content {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-video-container {
    flex-shrink: 0;
    width: 398px;
    height: 570px;
    overflow: hidden;
    border-radius: 4px;
}

.hero-video {
    width: 100%;
    display: block;
}

.hero-text {
    flex: 1;
}

.title {
    font-family: 'Inknut Antiqua', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
    margin-bottom: 33px;
}

.tagline {
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
    margin-bottom: 44px;
}

.tagline:last-child,
.tagline.coming-soon {
    margin-bottom: 0;
}

.coming-soon {
    margin-top: -34px;
    margin-bottom: 10px;
}

/* =====================
   Section 2: Signup
   ===================== */
.signup-section {
    padding: 30px 0 40px;
}

.signup-section .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-form {
    display: flex;
    width: 685px;
    max-width: 100%;
    height: 50px;
    margin-bottom: 11px;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 0 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    outline: none;
    border-right: none;
}

.signup-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signup-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.8);
}

.signup-form button {
    padding: 0 30px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 600;
    background: rgb(65, 65, 65);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.signup-form button:hover {
    background: rgb(85, 85, 85);
}

.signup-text {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.01em;
    margin-top: 20px;
}

.thank-you-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 30px 50px;
    font-size: 20px;
    text-align: center;
    border-radius: 4px;
    z-index: 1000;
}

/* =====================
   Section 3: Description
   ===================== */
.description-section {
    padding: 30px 0 31px;
}

.description-text {
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

.description-text em {
    font-style: italic;
}

.description-text p {
    margin-bottom: 1.5em;
}

.description-text p:last-child {
    margin-bottom: 0;
}

/* =====================
   Section 4: Video + Daylight
   ===================== */
.video-section {
    padding: 43px 0 30px;
}

.video-section .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.youtube-wrapper {
    width: 480px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 19px;
}

.youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.daylight-text {
    font-size: 23px;
    font-weight: 700;
    font-style: italic;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

.daylight-text p {
    margin-bottom: 1.5em;
}

.daylight-text p:last-child {
    margin-bottom: 0;
}

/* =====================
   Section 5: Contact
   ===================== */
.contact-section {
    padding: 26px 0 27px;
}

.contact-text {
    font-size: 23px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

.contact-text a {
    color: #fff;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 980px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hero-video-container {
        width: 300px;
        height: 482px;
    }

    .hero-text {
        padding-top: 0;
    }

    .title {
        font-size: 32px;
    }

    .tagline {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .coming-soon {
        margin-top: -20px;
    }

    .signup-form {
        width: 100%;
    }

    .signup-text {
        font-size: 20px;
    }

    .description-text {
        font-size: 20px;
    }

    .youtube-wrapper {
        width: 100%;
    }

    .daylight-text {
        font-size: 20px;
    }

    .contact-text {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .hero-video-container {
        width: 250px;
        height: 402px;
    }

    .title {
        font-size: 26px;
    }

    .tagline {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .coming-soon {
        margin-top: -14px;
    }

    .signup-text {
        font-size: 17px;
    }

    .description-text {
        font-size: 17px;
    }

    .daylight-text {
        font-size: 17px;
    }

    .contact-text {
        font-size: 17px;
    }
}
