/** Shopify CDN: Minification failed

Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 22:33 Unexpected ","
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 24:18 Unexpected "{"
Line 24:27 Expected ":"
Line 25:18 Unexpected "{"
Line 25:27 Expected ":"
Line 26:18 Unexpected "{"
... and 22 more hidden warnings

**/
/* START_SECTION:logo-hero (INDEX:30) */
/* =====================================================
   SHOPIFY FULL-WIDTH BREAKOUT - COMPLETE RESET
   ===================================================== */

/* 1. THE NUCLEAR OPTION - Force full viewport width */
#shopify-section-{{ section.id }},
#shopify-section-{{ section.id }} > *,
#shopify-section-{{ section.id }} .page-width,
#shopify-section-{{ section.id }} .shopify-section,
#shopify-section-{{ section.id }} .section-{{ section.id }},
#shopify-section-{{ section.id }} .content,
#ShopifySection-{{ section.id }},
[data-section-id="{{ section.id }}"] {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* 2. Kill any parent container constraints */
#shopify-section-{{ section.id }},
#shopify-section-{{ section.id }} .section-{{ section.id }},
#shopify-section-{{ section.id }} .shopify-section,
.section-{{ section.id }} {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* 3. Force the main wrapper to be true viewport width */
.firstline-landing-wrapper {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    overflow: hidden !important;
    background: #000000 !important;
}

/* 4. Hide Shopify default header/footer on this page */
#shopify-section-header,
#shopify-section-footer,
.site-header,
.site-footer,
.header-wrapper,
.footer-wrapper,
.shopify-section-header,
.shopify-section-footer,
header:not(.fl-header),
footer:not(.fl-footer) {
    display: none !important;
}

/* 5. Reset body/html for this section */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.firstline-landing-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* =====================================================
   HEADER
   ===================================================== */
.fl-header {
    background: #000000;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: 0 !important;
    border-bottom: 1px solid rgba(40, 184, 179, 0.4);
    box-shadow: 
        0 4px 20px rgba(40, 184, 179, 0.25),
        0 8px 40px rgba(40, 184, 179, 0.1);
}

.fl-header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.fl-header__logo {
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fl-header__logo:hover {
    transform: scale(1.03);
}

.fl-header__logo img {
    max-width: 170px;
    width: 100%;
    height: auto;
    display: block;
}

.fl-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef3d93 0%, #d62a7d 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.fl-header__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fl-header__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 61, 147, 0.35);
    border-color: rgba(255, 255, 255, 0.15);
}

.fl-header__btn:hover::before {
    opacity: 1;
}

/* =====================================================
   MAIN LAYOUT - DESKTOP GRID
   ===================================================== */
.fl-wrapper {
    display: grid;
    grid-template-columns: 1fr minmax(450px, 650px) 1fr;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    min-height: calc(100vh - 81px);
    margin: 0 !important;
    padding: 0 !important;
}

/* Side Columns */
.fl-side-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    width: 100%;
    padding: 0;
}

.fl-side-column--left {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.fl-side-column--right {
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

/* Carousel Containers */
.fl-carousel-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.fl-carousel-wrap .owl-carousel,
.fl-carousel-wrap .owl-stage-outer,
.fl-carousel-wrap .owl-stage,
.fl-carousel-wrap .owl-item {
    height: 100% !important;
}

.fl-carousel-wrap .owl-carousel img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}

.fl-carousel-wrap:hover .owl-carousel img {
    transform: scale(1.03);
}

.fl-carousel-wrap .owl-dots,
.fl-carousel-wrap .owl-nav {
    display: none !important;
}

/* =====================================================
   CENTER CONTENT
   ===================================================== */
.fl-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #060404;
    text-align: center;
    padding-right: clamp(1rem, 2.5vw, 2rem);
    padding-bottom: clamp(2rem, 4vh, 4rem);
    padding-left: clamp(1rem, 2.5vw, 2rem);
    padding-top: calc(20px + clamp(3rem, 5vh, 5rem));
    position: relative;
    width: 100%;
    height: 100%;
}

.fl-home__logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
    display: block;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fl-home__logo:hover {
    transform: scale(1.05) rotate(-1deg);
}

.fl-home__subtitle {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 3;
}

.fl-home__subtitle em {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-style: italic;
    color: #28b8b3;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(40, 184, 179, 0.15);
}

.fl-home__subtitle span {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-style: italic;
    color: #28b8b3;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
    letter-spacing: -0.01em;
}

.fl-home__secondary {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: clamp(1.25rem, 3vh, 2rem);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 3;
    max-width: 360px;
}

.fl-home__secondary strong {
    font-weight: 700;
    color: #fff;
    display: block;
    margin-top: 0.25rem;
}

/* =====================================================
   BRAND CARDS & FOLLOW BUTTONS
   ===================================================== */
.fl-center-follow-btns {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.fl-brand-card {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 2.5vh, 1.75rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.fl-brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.fl-brand-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.fl-brand-card:hover::before {
    opacity: 1;
}

/* Firstline Card */
.fl-firstline-card::before {
    background: radial-gradient(circle at 50% 0%, rgba(255, 43, 140, 0.12), transparent 70%);
}

.fl-firstline-card:hover {
    background: rgba(255, 43, 140, 0.06);
    border-color: rgba(255, 43, 140, 0.45);
    box-shadow: 
        0 12px 40px rgba(255, 43, 140, 0.18),
        0 0 0 1px rgba(255, 43, 140, 0.2);
}

/* WavEnforcer Card */
.fl-wavenforcer-card::before {
    background: radial-gradient(circle at 50% 0%, rgba(0, 210, 210, 0.12), transparent 70%);
}

.fl-wavenforcer-card:hover {
    background: rgba(0, 210, 210, 0.06);
    border-color: rgba(0, 210, 210, 0.45);
    box-shadow: 
        0 12px 40px rgba(0, 210, 210, 0.18),
        0 0 0 1px rgba(0, 210, 210, 0.2);
}

.fl-brand-card img {
    max-width: 140px;
    width: 100%;
    height: 36px;
    object-fit: contain;
    margin-bottom: clamp(1rem, 2vh, 1.25rem);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.fl-brand-card:hover img {
    transform: scale(1.08);
}

/* Follow Button */
.fl-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: normal;
    text-align: center;
    word-break: break-word;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.fl-follow-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fl-follow-btn:hover svg {
    transform: scale(1.15);
}

/* Firstline Button Hover */
.fl-firstline-card:hover .fl-follow-btn {
    background: linear-gradient(135deg, #ff2b8c, #e91e7c) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 43, 140, 0.4) !important;
    transform: translateY(-1px);
}

.fl-firstline-card:hover .fl-follow-btn svg {
    fill: #fff !important;
}

/* WavEnforcer Button Hover */
.fl-wavenforcer-card:hover .fl-follow-btn {
    background: linear-gradient(135deg, #00d2d2, #00b8b8) !important;
    border-color: transparent !important;
    color: #000 !important;
    box-shadow: 0 6px 20px rgba(0, 210, 210, 0.4) !important;
    transform: translateY(-1px);
}

.fl-wavenforcer-card:hover .fl-follow-btn svg {
    fill: #000 !important;
}

/* =====================================================
   KLAVIYO FORM CONTAINER
   ===================================================== */
.fl-form-section {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.fl-form-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.fl-form-container > div[class*="klaviyo-form"] {
    width: 100% !important;
    max-width: 100% !important;
}

/* =====================================================
   SOCIAL ICONS
   ===================================================== */
.fl-social-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(1rem, 2vw, 1.5rem) !important;
    list-style: none !important;
    padding: 0 !important;
    margin: clamp(1.5rem, 3.5vh, 2rem) 0 0 0 !important;
    flex-shrink: 0 !important;
    position: relative;
    z-index: 3;
}

.fl-social-icons li {
    flex-shrink: 0;
}

.fl-social-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.fl-social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(40, 184, 179, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fl-social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    background: rgba(40, 184, 179, 0.1);
    border-color: rgba(40, 184, 179, 0.3);
    box-shadow: 0 8px 20px rgba(40, 184, 179, 0.15);
    color: #28b8b3;
}

.fl-social-icons a:hover::before {
    opacity: 1;
}

.fl-social-icons svg {
    width: 22px !important;
    height: 22px !important;
    fill: currentColor !important;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.fl-social-icons a:hover svg {
    transform: scale(1.1);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes flFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fl-animate-in {
    animation: flFadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.fl-delay-1 { animation-delay: 0.1s; }
.fl-delay-2 { animation-delay: 0.2s; }
.fl-delay-3 { animation-delay: 0.3s; }
.fl-delay-4 { animation-delay: 0.4s; }
.fl-delay-5 { animation-delay: 0.5s; }
.fl-delay-6 { animation-delay: 0.6s; }

/* =====================================================
   RESPONSIVE - TABLET & SMALL DESKTOP
   ===================================================== */
@media (max-width: 1024px) {
    .fl-wrapper {
        grid-template-columns: 1fr minmax(380px, 500px) 1fr;
    }

    .fl-home__subtitle em {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .fl-home__subtitle span {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }
}

/* =====================================================
   RESPONSIVE - MOBILE (Stacked Layout)
   ===================================================== */
@media (max-width: 768px) {
    .fl-header__logo img {
        max-width: 130px;
    }

    .fl-header__btn {
        min-height: 40px;
        padding: 0 1rem;
        font-size: 0.6875rem;
    }

    .fl-wrapper {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        width: 100vw !important;
    }

    /* Side columns become horizontal image strip */
    .fl-side-column {
        display: flex;
        flex-direction: row;
        width: 100vw !important;
        height: 220px;
        order: 2;
    }

    .fl-side-column--left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .fl-side-column--right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .fl-carousel-wrap {
        flex: 1;
        height: 100%;
    }

    /* Middle content */
    .fl-middle {
        order: 1;
        width: 100%;
        height: auto;
        min-height: auto;
        padding-top: calc(10px + 2.5rem);
        padding-right: 1.25rem;
        padding-bottom: 2rem;
        padding-left: 1.25rem;
    }

    .fl-home__logo {
        max-width: 130px;
    }

    .fl-home__subtitle em {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .fl-home__subtitle span {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }

    /* ===== CARDS: Stack logo above button for mobile ===== */
    .fl-center-follow-btns {
        flex-direction: column !important;
        gap: 1.5rem; /* Increased gap between cards */
        max-width: 100%;
        padding: 0 1rem;
    }

    .fl-brand-card {
        flex-direction: column !important; /* Stacked layout */
        justify-content: center;
        align-items: center;
        padding: 1.75rem 1.5rem; /* Increased padding / height */
    }

    .fl-brand-card img {
        margin-bottom: 1.25rem; /* Restore margin to space from button */
        margin-right: 0;
        max-width: 180px; /* Larger logo on mobile */
        height: 42px;
    }

    .fl-follow-btn {
        width: 100% !important; /* Take full width of card */
        flex-shrink: 0;
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem; /* Increased font size */
        white-space: normal; /* Fixes text cut-off */
    }

    .fl-form-section {
        padding: 0 0.5rem;
    }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE
   ===================================================== */
@media (max-width: 480px) {
    .fl-header {
        padding: 0.75rem 0;
    }

    .fl-header__wrap {
        gap: 0.75rem;
    }

    .fl-header__logo img {
        max-width: 110px;
    }

    .fl-header__btn {
        min-height: 36px;
        padding: 0 0.75rem;
        font-size: 0.625rem;
        border-radius: 8px;
    }

    .fl-side-column {
        height: 180px;
    }

    .fl-middle {
        padding-right: 1rem;
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        padding-top: calc(10px + 2rem);
    }

    .fl-home__logo {
        max-width: 110px;
        margin-bottom: 0.75rem;
    }

    .fl-home__subtitle em {
        font-size: 3rem;
    }

    .fl-home__subtitle span {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .fl-home__secondary {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    /* ===== CARDS: Tighter gap but still perfectly stacked ===== */
    .fl-center-follow-btns {
        flex-direction: column !important;
        gap: 1.25rem; /* Nice clear gap between the two boxes */
        padding: 0 0.75rem;
    }

    .fl-brand-card {
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        padding: 1.5rem 1.25rem; /* Maintains good height */
        min-width: 0;
    }

    .fl-brand-card img {
        margin-bottom: 1rem;
        margin-right: 0;
        max-width: 160px; /* Slightly larger logos for small screens */
        height: 38px;
    }

    .fl-follow-btn {
        width: 100% !important; /* Keeps the button wide */
        flex-shrink: 0;
        padding: 0.875rem 1rem;
        font-size: 0.8125rem; /* Larger, readable font */
        white-space: normal;
    }

    .fl-follow-btn svg {
        width: 18px;
        height: 18px;
    }

    .fl-social-icons a {
        width: 42px !important;
        height: 42px !important;
    }

    .fl-social-icons svg {
        width: 20px !important;
        height: 20px !important;
    }
}

/* =====================================================
   FIX: Remove header border on mobile so it doesn't cut images
   ===================================================== */
@media (max-width: 768px) {
    .fl-header {
        border-bottom: none !important;
        box-shadow: none !important;
    }

    /* Optional: subtle separator between header and content instead */
    .fl-wrapper {
        border-top: 1px solid rgba(40, 184, 179, 0.1);
    }

    /* Remove borders between side columns that create visual cuts */
    .fl-side-column--left {
        border-bottom: none !important;
    }

    .fl-side-column--right {
        border-top: none !important;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .firstline-landing-wrapper *,
    .firstline-landing-wrapper *::before,
    .firstline-landing-wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* END_SECTION:logo-hero */
