/* High-End Mobile Luxury System - "Seamless Studio" */

:root {
    /* Palette: Luxury Neutrals (No harsh whites or blacks) */
    --bg-studio-light: #FFFFFF;
    --bg-studio-shadow: #E8E8E6;
    /* Warm stone grey */

    --text-charcoal: #1C1C1E;
    /* Soft Black */
    --text-stone: #57534E;
    /* Warm Grey */
    --accent-crimson: #991B1B;
    /* Deep Red (Restricted usage) */

    /* Metrics */
    --content-width: 680px;
    /* Max width for desktop readability */
    --mobile-gutter: 6vw;
    /* Consistent side spacing */

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-stone);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent horizontal scroll */

    /* Background: Seamless Studio Environment */
    background-color: var(--bg-studio-light);
    background-image:
        radial-gradient(120% 120% at 50% 0%, #FFFFFF 40%, #EFEFEF 100%);
    background-attachment: fixed;
    /* Keeps the 'light' fixed overhead */
}

/* Texture (Optional, Extremely subtle for non-flat feel) */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Layout Container - Seamless Flow */
.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8vh var(--mobile-gutter) 4rem;
    /* 8vh top spacing for "Above Fold" breathable start */
}

/* --- Typography (Editorial Hierarchy) --- */

.headline-container {
    text-align: center;
    margin-bottom: 3.5rem;
    width: 100%;
}

.reveal-text {
    display: block;
    color: var(--accent-crimson);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    /* Luxurious spacing */
    margin-bottom: 2rem;
    opacity: 0.9;
}

.headline-main {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    /* Desktop Size */
    font-weight: 700;
    /* Bold but not Black */
    color: var(--text-charcoal);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.headline-sub {
    font-size: 1.25rem;
    font-weight: 450;
    /* Medium-Light */
    color: var(--text-stone);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 1.5rem;
}

.scarcity-warning {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--accent-crimson);
    font-weight: 600;
    background: rgba(153, 27, 27, 0.04);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Highlights */
.highlight-red {
    color: var(--accent-crimson);
    font-weight: 700;
}

.highlight-gold {
    /* Refined emphasis: Darker text with subtle decoration */
    color: var(--text-charcoal);
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

/* Optional: underline effect for gold highlights? */
.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(250, 204, 21, 0.3);
    z-index: -1;
    border-radius: 2px;
}


/* --- Video Component (Floating Monolith) --- */

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #000;
    border-radius: 24px;
    /* Smooth Apple-radius */
    overflow: hidden;
    margin-bottom: 4rem;

    /* "Levitation" Shadow - No Border */
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Extremely subtle boundary definition */

    transform: translateZ(0);
    /* GPU acceleration */
}

.video-wrapper wistia-player,
.video-wrapper iframe,
.video-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* --- CTA (The Jewel) --- */

.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    /* Bottom clearance */
}

.cta-button {
    background: linear-gradient(to bottom right, #B91C1C, #991B1B);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1.4rem 3.5rem;
    border-radius: 9999px;
    /* Capusle */
    text-transform: uppercase;
    letter-spacing: 0.05em;

    /* Refined Glow */
    box-shadow:
        0 10px 30px -10px rgba(185, 28, 28, 0.5),
        0 4px 6px -1px rgba(185, 28, 28, 0.1);

    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px -10px rgba(185, 28, 28, 0.5),
        0 4px 6px -1px rgba(185, 28, 28, 0.2);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* --- Mobile Specific Optimization (9:16) --- */

@media (max-width: 640px) {
    .container {
        padding: 5vh var(--mobile-gutter) 4rem;
        /* Reduced top padding for smaller screens */
        max-width: 100%;
    }

    /* Layout Flow */
    .headline-container {
        margin-bottom: 2.5rem;
    }

    .reveal-text {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .headline-main {
        font-size: 1.75rem;
        /* 28px - Perfect mobile size */
        line-height: 1.25;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
    }

    .headline-sub {
        font-size: 1.0625rem;
        /* 17px */
        line-height: 1.55;
        color: var(--text-stone);
        margin-bottom: 1.5rem;
    }

    /* Video - Full Width Feel without touching edges */
    .video-wrapper {
        border-radius: 16px;
        margin-bottom: 3rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    }

    /* CTA - Thumb Zone priority */
    .cta-container {
        position: relative;
        /* Ensure it flows naturally */
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    /* Highlight tweaks for mobile legibility */
    .highlight-gold::after {
        height: 6px;
        /* Ensure underline is visible */
        bottom: 2px;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) {
    .container {
        padding-top: 2rem;
    }

    .headline-main {
        font-size: 1.5rem;
    }
}