/* CSS Custom Properties from Figma */
:root {
    --color-purple: rgba(105, 44, 224, 1);
    --color-pink-cta: rgba(242, 65, 112, 1);
    --color-cyan: rgba(36, 210, 229, 1);
    --color-light-purple: rgba(210, 175, 255, 1);
    --color-yellow-green: rgba(202, 246, 27, 1);
    --color-navy: rgba(25, 24, 98, 1);
    --color-white: rgba(255, 255, 255, 1);
    --color-light-cyan: rgba(151, 240, 255, 1);
    --color-gray: rgba(144, 144, 144, 1);
    --font-montserrat: 'Montserrat', sans-serif;
    --font-bebas: 'Bebas Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-montserrat);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-text-zone {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 38%;
    min-width: 500px;
    height: 100%;
    background-color: rgba(105, 44, 224, 1);
    padding: 50px 48px;
    overflow: hidden;
}

.logo-container {
    display: flex;
    align-items: flex-start;
}

.logo-header {
    width: 308px;
    height: 55px;
    object-fit: contain;
}

.hero-headline-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.hero-headline {
    font-family: var(--font-montserrat);
    font-weight: 900;
    font-size: 92px;
    line-height: 78px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(210, 175, 255, 1);
}

.hero-subtitle {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 63px;
    line-height: 67.6px;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    color: rgba(210, 175, 255, 1);
}

.cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
}

.btn-create-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background-color: rgba(242, 65, 112, 1);
    border-radius: 9999px;
    font-family: var(--font-montserrat);
    font-weight: 900;
    font-size: 25px;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.btn-create-account:hover {
    opacity: 0.9;
}

.model-name-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
}

.jerky-icon-hero {
    width: 82px;
    height: 40px;
    object-fit: contain;
}

.model-name-text {
    font-family: var(--font-bebas);
    font-weight: 400;
    font-size: 42px;
    text-transform: uppercase;
    color: rgba(210, 175, 255, 1);
    white-space: nowrap;
}

.hero-visual-zone {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-photo-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-photo-mobile {
    display: none;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(36, 210, 229, 1);
    padding: 120px 100px;
    gap: 100px;
}

.video-bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 760px;
    max-width: 760px;
    flex-shrink: 0;
}

.video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.video-model-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.jerky-icon-video {
    width: 41px;
    height: 21px;
    object-fit: contain;
}

.video-model-text {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    color: var(--color-white);
}

.video-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.video-title {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    color: rgba(202, 246, 27, 1);
}

.over-video-link {
    display: block;
    width: 760px;
    height: 427px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.over-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

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

.lock-icon {
    width: 32px;
    height: 44px;
    flex-shrink: 0;
}

.unlock-text {
    font-family: var(--font-bebas);
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
}

.btn-unlock-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border: 2px solid rgba(202, 246, 27, 1);
    border-radius: 9999px;
    background: transparent;
    font-family: var(--font-montserrat);
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-unlock-video:hover {
    background-color: rgba(202, 246, 27, 0.1);
}

.taste-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding-top: 39px;
    width: 643px;
    flex-shrink: 1;
}

.taste-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.taste-headline {
    font-family: var(--font-montserrat);
    font-weight: 900;
    font-size: 120px;
    line-height: 105px;
    text-transform: uppercase;
    text-align: center;
    color: rgba(151, 240, 255, 1);
}

.logo-video-section {
    width: 374px;
    height: 65px;
    object-fit: contain;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-white);
    padding: 24px 20px;
    gap: 20px;
}

.footer-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    padding-left: 30px;
}

.rta-icon {
    width: 50px;
    height: 17px;
    object-fit: contain;
}

.footer-copyright {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(25, 24, 98, 1);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(25, 24, 98, 1);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 16px;
    color: rgba(25, 24, 98, 1);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        height: 100vh;
    }

    .hero-text-zone {
        width: 100%;
        min-width: unset;
        padding: 29px 28px;
        flex: 1;
    }

    .logo-header {
        width: 200px;
        height: auto;
    }

    .hero-headline {
        font-size: 48px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: 0.64px;
    }

    .cta-container {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding-top: 9px;
    }

    .btn-create-account {
        font-size: 14px;
        padding: 12px 18px;
        white-space: nowrap;
    }

    .model-name-badge {
        gap: 6px;
    }

    .jerky-icon-hero {
        width: 40px;
        height: 20px;
    }

    .model-name-text {
        font-size: 22px;
    }

    .hero-visual-zone {
        width: 100%;
        height: 263px;
        flex: none;
    }

    .hero-photo-desktop {
        display: none;
    }

    .hero-photo-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Video Section Mobile */
    .video-section {
        flex-direction: column;
        padding: 60px 15px;
        gap: 60px;
    }

    .video-bloc {
        width: 100%;
        max-width: 100%;
        flex-shrink: 1;
        gap: 24px;
    }

    .over-video-link {
        width: 100%;
        height: auto;
        aspect-ratio: 760 / 427;
    }

    .unlock-text {
        font-size: 18px;
    }

    .lock-icon {
        width: 24px;
        height: 32px;
    }

    .video-title {
        font-size: 32px;
    }

    .btn-unlock-video {
        font-size: 16px;
        padding: 14px 24px;
    }

    .taste-section {
        width: 100%;
        padding-top: 0;
    }

    .taste-headline {
        font-size: 56px;
        line-height: 50px;
    }

    .logo-video-section {
        width: 220px;
        height: auto;
    }

    /* Footer Mobile */
    .footer {
        background-color: var(--color-white);
        padding: 10px 12px 20px;
        gap: 10px;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        gap: 8px;
    }

    .rta-icon {
        width: 50px;
        height: auto;
    }

    .footer-copyright {
        color: rgba(144, 144, 144, 1);
        font-size: 14px;
        text-align: center;
    }

    .footer-divider {
        background-color: rgba(25, 24, 98, 0.2);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        gap: 8px;
    }

    .footer-link {
        color: rgba(25, 24, 98, 1);
        font-size: 14px;
        text-align: center;
        text-transform: uppercase;
    }
}

@media (min-width: 769px) {
    .hero-text-zone {
        width: 38%;
        min-width: 450px;
    }

    .hero-headline {
        font-size: clamp(60px, 5vw, 92px);
        line-height: clamp(54px, 4.3vw, 78px);
    }

    .hero-subtitle {
        font-size: clamp(42px, 3.5vw, 63px);
    }

    .btn-create-account {
        font-size: clamp(18px, 1.4vw, 25px);
        padding: 16px 24px;
    }

    .model-name-text {
        font-size: clamp(28px, 2.3vw, 42px);
    }

    .jerky-icon-hero {
        width: clamp(50px, 4.5vw, 82px);
        height: auto;
    }

    .video-section {
        padding: 80px 60px;
        gap: 60px;
    }

    .video-bloc {
        width: 50%;
        max-width: 760px;
    }

    .over-video-link {
        width: 100%;
        height: auto;
        aspect-ratio: 760 / 427;
    }

    .taste-section {
        width: 40%;
    }

    .taste-headline {
        font-size: clamp(70px, 6.5vw, 120px);
        line-height: clamp(62px, 5.7vw, 105px);
    }

    .logo-video-section {
        width: clamp(250px, 20vw, 374px);
        height: auto;
    }
}
