/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;800;900&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --scrim: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55));
}

body {
    font-family: "Inter", system-ui, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--scrim);
    pointer-events: none;
    z-index: 1;
}

/* Video Background */
#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: white;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10vh;
}

.kicker {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(0.7rem, 1.1vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.main-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    font-size: clamp(7.2rem, 14.4vw, 21.6rem);
    letter-spacing: clamp(0.05em, 0.1vw, 0.15em);
    line-height: 0.9;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
    text-align: center;
    margin-bottom: 2rem;
}

.subline {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    line-height: 1.3;
}

.bottom-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10vh;
}

.small-text-left {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(0.7rem, 1.1vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.callout {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-weight: 300;
    font-size: clamp(6rem, 16vw, 22rem);
    letter-spacing: 0.02em;
    text-transform: lowercase;
    line-height: 0.9;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
    text-align: right;
}

/* Video Control Button */
.video-control-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.video-control-btn svg {
    transition: transform 0.3s ease;
}

/* Subscription Section */
.subscription-section {
    background: white;
    padding: 4rem 2rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Mailchimp Form Styling */
#mc_embed_signup h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.indicates-required {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
}

.asterisk {
    color: #e74c3c;
}

.mc-field-group {
    margin-bottom: 1rem;
}

.mc-field-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mc-field-group input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin: 0 auto;
    display: block;
}

.mc-field-group input[type="email"]:focus {
    outline: none;
    border-color: #333;
}

.clear {
    text-align: center;
    margin-top: 1rem;
}

.button {
    padding: 1rem 2rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
}

.button:hover {
    background: #555;
}

#mce-responses {
    margin-top: 1rem;
}

.response {
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
}

#mce-error-response {
    background: #ffe6e6;
    color: #d63031;
    border: 1px solid #fab1a0;
}

#mce-success-response {
    background: #e6ffe6;
    color: #00b894;
    border: 1px solid #55efc4;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    #background-video {
        display: none;
    }
    
    .hero-section {
        background: #000;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-container h2 {
        font-size: 2rem;
    }
    
    .video-control-btn {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .subscription-section {
        padding: 2rem 1rem;
    }
}
