/* ==========================================================================
   1604ENT – Global Styles (global.css)
   ==========================================================================
   Contents:
   - Reset & CSS variables
   - Base body & typography
   - Navbar & section nav
   - Fullscreen sections (shared layout)
   - Shared components (slider controls, buttons, etc.)
   - Reduced motion & overflow
   Section-specific styles live in: styles/intro.css, sell-your-music.css,
   vevo-service.css, about.css, contact.css, careers.css, testimonials.css
   ========================================================================== */

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

:root {
    --primary-color: #11100e;
    --accent-color: #1e3a8a;
    --text-color: #ffffff;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --body-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    /* 8px grid system for spacing */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-8: 64px;
    --space-10: 80px;
    /* Dynamic viewport (address bar, notches) – overridden in responsive.css */
    --vh-full: 100vh;
    --vh-full: 100dvh;
}

/* Base body styles – M8: fluid typography with clamp */
body {
    font-family: var(--body-font);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    text-transform: none;
    line-height: 1.4em;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
    height: var(--vh-full, 100vh);
    width: 100vw;
}

/* Apply body font to all text elements */
p, span, div, li, a {
    font-family: var(--body-font);
    font-weight: 300;
    text-transform: none;
    line-height: 1.4em;
}

/* Section text styles */
.section-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

/* Step content text */
.step-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4em;
    opacity: 0.8;
}

/* Benefits list text */
.benefits-list li {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4em;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation styles – Poppins 300 for nav text */
.nav-link {
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Remove underline from all navigation links */
.nav-menu a {
    text-decoration: none;
}

/* Button text - keep current size for UI elements */
.auth-btn,
.signup-btn,
.stores-count,
.app-store-btn {
    font-family: var(--body-font);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section numbers and titles – Poppins 300 */
.section-number,
.section-title {
    font-family: var(--body-font);
    font-weight: 300;
}

/* Content slider counter */
.content-slider-counter {
    font-family: var(--body-font);
    font-weight: 300;
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    body {
        font-size: 1.2rem;
    }

    .section-text,
    .step-content p,
    .benefits-list li {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1.1rem;
    }

    .section-text,
    .step-content p,
    .benefits-list li {
        font-size: 1.1rem;
    }
}

/* Navigation styles */
.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-2) var(--space-10);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    gap: 18rem;
}

.navbar.visible {
    transform: translateY(0);
}

/* Add hover detection area */
.navbar::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: -1;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 19px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link:hover {
    color: #F46C14;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 0;
}

.signup-btn {
    font-family: var(--body-font);
    font-weight: 600;
    background: #F46C14;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    color: #ffffff;
}

.signup-btn:hover {
    background: #ea670f;
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Border Frame – shorter vertical sides (reduced length); bottom inset smaller */
.border-frame {
    position: fixed;
    top: calc(var(--space-5) + var(--space-4));
    left: var(--space-5);
    right: var(--space-5);
    bottom: calc(var(--space-2) + var(--space-3));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 0;
    pointer-events: none;
    z-index: 99;
}

/* Section Navigation */
.section-nav {
    position: fixed;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 30px;
    width: 80px;
    transition: width 0.3s ease;
    overflow: hidden;
}

.section-nav:hover {
    width: 240px;
}

.section-item {
    position: relative;
    cursor: pointer;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    transition: background 0.3s ease;
    background: transparent;
    white-space: nowrap;
    text-decoration: none;
}

.section-number {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    min-width: 40px;
    text-decoration: none;
}

.section-title {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 14px;
    color: #ffffff !important;
    margin-left: 10px;
    white-space: nowrap;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.section-item:hover {
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.section-item:hover .section-number {
    color: #ffffff;
}

.section-item.active {
    background: rgba(255, 107, 0, 0.15);
    text-decoration: none;
}

.section-item.active .section-title {
    color: #F46C14;
}

/* Force titles to stay visible */
.section-nav:hover .section-title,
.section-item:hover .section-title,
.section-item.active .section-title,
.section-nav:not(:hover) .section-title,
.section-item:not(:hover) .section-title {
    color: #ffffff !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Remove the dot styling since we're not using it anymore */
.section-item .dot {
    display: none;
}

/* Mobile section indicator (bottom dots) – visible only when .section-nav is hidden (≤979px) */
.mobile-dots {
    display: none;
    position: fixed;
    bottom: var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    flex-direction: row;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    align-items: center;
    justify-content: center;
}

.mobile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    text-indent: -9999px;
    overflow: hidden;
}

.mobile-dot:hover,
.mobile-dot:focus {
    background: rgba(255, 255, 255, 0.6);
}

.mobile-dot.active {
    background: #F46C14;
    transform: scale(1.2);
}

/* Mobile: floating menu FAB — always reachable without breaking immersion */
.mobile-menu-fab {
    display: none;
}

@media (max-width: 979px) {
    .mobile-menu-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: calc(28px + var(--safe-right));
        bottom: calc(28px + var(--safe-bottom));
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(244, 108, 20, 0.55);
        background: rgba(31, 31, 31, 0.92);
        backdrop-filter: blur(10px);
        color: #F46C14;
        cursor: pointer;
        z-index: 102;
        padding: 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .mobile-menu-fab i {
        font-size: 1.05rem;
        line-height: 1;
        pointer-events: none;
    }

    .mobile-menu-fab:hover,
    .mobile-menu-fab:focus-visible {
        background: rgba(244, 108, 20, 0.15);
        border-color: #F46C14;
        outline: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu-fab {
        bottom: calc(24px + var(--safe-bottom));
        right: calc(24px + var(--safe-right));
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 979px) {
    .mobile-dots {
        display: flex;
    }
}

/* Small screens: section dots sit on border-frame bottom edge */
@media (max-width: 480px) {
    .mobile-dots {
        bottom: calc(12px + var(--safe-bottom));
        transform: translate(-50%, 50%);
        padding: var(--space-1) var(--space-2);
    }
}
@media (max-width: 400px) {
    .mobile-dots {
        bottom: calc(12px + var(--safe-bottom));
        transform: translate(-50%, 50%);
        padding: 6px var(--space-2);
    }
}

/* Section Layouts */
.sections-container {
    height: var(--vh-full, 100vh);
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.fullscreen-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--vh-full, 100vh);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.fullscreen-section.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.text-full { display: inline; }
.text-mobile { display: none; }
.sell-slide2-mobile { display: none; }

@media (max-width: 979px) {
    .text-full { display: none; }
    .text-mobile { display: inline; }
}

/* Section vertical label – slide number + title along left border (Vevo-style) */
.section-vertical-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--heading-font);
    font-size: clamp(0.75rem, 1.1vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 100;
}

.section-vertical-label-line {
    width: 48px;
    height: 2px;
    min-width: 48px;
    background: #F46C14;
    flex-shrink: 0;
}

.section-vertical-label-number {
    font-variant-numeric: tabular-nums;
    color: #F46C14;
    text-transform: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.section-vertical-label-text {
    color: #F46C14;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Content Styles */
.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-10);
    width: 100%;
}

/* Base heading styles – M8: fluid headings with clamp; Poppins, heavier weight than body */
.section-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-heading-gradient {
    background: linear-gradient(135deg, #F46C14, #ff9d5c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subheading {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F46C14, #ff9d5c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Specific slide heading styles – keep within clamp range */
.split-content .section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
}

.split-content .section-subheading {
    font-size: clamp(2rem, 5vw, 3rem);
}

.analytics-content .section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
}

.analytics-content .section-subheading {
    font-size: clamp(2rem, 5vw, 3rem);
}

.section-text {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 600px;
}

/* Button Styles */
.explore-btn {
    font-family: var(--body-font);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: linear-gradient(45deg, #F46C14, #ea670f);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
    align-self: center;
}

.explore-btn:hover {
    background: linear-gradient(45deg, #ea670f, #F46C14);
    transform: translateY(-2px);
}

/* Split Layout */
/* Desktop: row (image/video left, content right). Tablet/mobile: column (image/video top, content bottom). */
.split-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: visible;
}

.split-image {
    flex: 1.3;
    position: relative;
    overflow: visible;
    padding: 0;
    margin: 0;
    margin-left: -40px;
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    border-radius: 0 290px 0 0;
}

.slide img:hover {
    opacity: 1;
}

.slide img.intro-slide-img-grayscale {
    filter: grayscale(100%);
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slide.active img {
    opacity: 0.7;
}

.slide.active img:hover {
    opacity: 1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 45px;
}

.slider-arrows {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.arrow i {
    font-size: 14px;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 8%;
    background: var(--primary-color);
    position: relative;
    margin-right: 40px;
    height: 100vh;
}

/* Remove the curved transition between sections */
.split-image::after {
    display: none;
}

/* Content styling */
.split-content .section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .split-image {
        flex: 1.3;
    }
}

/* Current Slide Number */
.current-slide-number {
    display: none !important;
}

/* Mobile Responsive Updates */
@media screen and (max-width: 979px) {
    .split-layout {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
        margin: 0;
        padding: 0;
        padding-top: 60px; /* Add space for navbar */
    }

    .split-image {
        width: 100%;
        height: var(--mobile-hero-height, 45vh);
        min-height: var(--mobile-hero-min-height, 200px);
        flex: none;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .image-slider {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0 80px 0 0;
    }

    .split-content {
        width: 100%;
        height: calc(50vh - 60px); /* Adjust for navbar space */
        padding: 20px 25px;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Align to top */
    }

    /* Sell-your-music section: video top, content bottom (same split-layout column) */
    .split-layout .video-section {
        flex: none;
        width: 100%;
        height: var(--mobile-hero-height, 45vh);
        min-height: var(--mobile-hero-min-height, 200px);
        margin-left: 0;
    }
    .split-layout .video-section video {
        border-radius: 0 80px 0 0;
    }
    .split-layout .content-section {
        flex: 1;
        min-height: 0;
        margin-right: 0;
        padding: 24px 24px;
        overflow-y: auto;
    }

    .current-slide-number {
        display: none !important;
    }

    .section-nav {
        display: none;
    }

    .slider-controls {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Navbar auto-hide behavior */
    .navbar {
        padding: var(--space-2) var(--space-3);
    }

    .nav-brand img {
        height: 20px;
    }

    .section-heading,
    .section-subheading {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .section-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .explore-btn {
        padding: 12px 25px;
        font-size: 13px;
        width: auto;
        display: inline-flex;
        align-self: flex-start;
    }

    .nav-menu {
        padding: calc(3.5rem + var(--safe-top)) 1.8rem calc(2.5rem + var(--safe-bottom));
        gap: 1.2rem;
        transform: none;
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        pointer-events: none;
    }

    .nav-menu.active {
        clip-path: inset(0 0 0 0);
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-right {
        margin: 0;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .signup-btn {
        width: 200px;
        text-align: center;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .current-slide-number {
        display: none !important;
    }

    .border-frame {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    .split-layout {
        padding-top: 50px; /* Adjust for smaller navbar */
    }

    .split-image {
        height: var(--mobile-hero-height, 40vh);
        min-height: var(--mobile-hero-min-height, 180px);
    }

    .split-content {
        height: calc(50vh - 25px);
        padding: 15px 20px;
    }

    /* Sell-your-music: video/content split on mobile */
    .split-layout .video-section {
        height: var(--mobile-hero-height, 40vh);
        min-height: var(--mobile-hero-min-height, 180px);
    }
    .split-layout .video-section video {
        border-radius: 0 40px 0 0;
    }
    .split-layout .content-section {
        padding: 16px 20px;
    }

    .current-slide-number {
        display: none !important;
    }

    .slider-controls {
        bottom: 20px;
    }

    .dot {
        width: 25px;
    }

    .dot.active {
        width: 35px;
    }

    .section-heading,
    .section-subheading {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }

    .section-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .nav-menu {
        padding: 1.5rem;
        padding-top: 4rem;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .signup-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        width: 180px;
    }

    .border-frame {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .section-content {
        padding: 0 var(--space-3);
    }

    .nav-brand img {
        height: 18px;
    }
}

/* Sub-section Navigation */
.subsection-nav {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 25px;
}

.subsection-btn {
    padding: 0.5rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s var(--transition-smooth);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subsection-btn.active {
    background: var(--text-color);
    color: var(--primary-color);
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 0.875rem;
}

.counter-dots {
    display: flex;
    gap: 0.5rem;
}

.counter-dot {
    width: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--transition-smooth);
}

.counter-dot.active {
    background: var(--text-color);
}

/* 6-store grid: balanced 3×2 on mobile/tablet */
@media (max-width: 979px) {
    #intro .platform-logos,
    .platform-logos-overlay {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        align-items: center;
        gap: 0.65rem 1rem;
    }
}

/* Platform Logos */
.platform-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.4rem, 1vw, 1.25rem);
    margin: 2rem 0;
    align-items: center;
}

.store-logo {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.store-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Specific logo adjustments */
.store-logo.spotify {
    height: 28px;
}

.store-logo.apple {
    height: 24px;
}

.store-logo.amazon {
    height: 24px;
}

.store-logo.youtube {
    height: 24px;
}

.store-logo.tiktok {
    height: 24px;
}

.store-logo.soundcloud {
    height: 30px;
}

/* Stores Button */
.stores-button {
    margin-top: 2rem;
}

.stores-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(45deg, #F46C14, #ea670f);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stores-count:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #ea670f, #F46C14);
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    .platform-logos {
        gap: 2.5rem;
        margin: 2rem 0;
        flex-wrap: wrap;
    }

    .store-logo {
        height: 24px;
    }

    .store-logo.spotify {
        height: 24px;
    }

    .store-logo.apple,
    .store-logo.amazon,
    .store-logo.youtube,
    .store-logo.tiktok {
        height: 20px;
    }

    .store-logo.soundcloud {
        height: 26px;
    }

    .stores-count {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .platform-logos {
        gap: 2rem;
        margin: 1.5rem 0;
    }

    .store-logo {
        height: 20px;
    }

    .store-logo.spotify {
        height: 20px;
    }

    .store-logo.apple,
    .store-logo.amazon,
    .store-logo.youtube,
    .store-logo.tiktok {
        height: 18px;
    }

    .store-logo.soundcloud {
        height: 24px;
    }

    .stores-count {
        padding: 8px 18px;
        font-size: 11px;
    }
}

.nav-menu-close {
    display: none;
}

/* App store buttons: mobile nav drawer only */
.nav-app-stores {
    display: none;
}

/* Nav overlay (mobile menu backdrop) — below site-header so menu stays clickable */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 979px) {
    .nav-overlay {
        z-index: 999;
        transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .nav-overlay:not(.active) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.nav-menu-open .site-header {
        z-index: 1001;
    }
}

@media (min-width: 980px) {
    .nav-overlay {
        display: none !important;
    }
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 979px) {
    .navbar {
        justify-content: space-between;
        align-items: center;
        min-height: 56px;
        padding: 0 20px;
        gap: 0;
        transform: none;
        top: calc(-1 * (56px + var(--safe-top)));
        transition: top 0.4s ease;
    }

    .navbar.visible {
        transform: none;
        top: 0;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .nav-toggle span {
        background: linear-gradient(45deg, #F46C14, #ea670f);
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        padding: calc(3.5rem + var(--safe-top)) 1.8rem calc(2.5rem + var(--safe-bottom));
        background: var(--primary-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 1.2rem;
        transform: none;
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
        pointer-events: none;
    }

    .nav-menu.active {
        clip-path: inset(0 0 0 0);
        pointer-events: auto;
    }

    .nav-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: calc(14px + var(--safe-top));
        right: calc(14px + var(--safe-right));
        width: 44px;
        height: 44px;
        border: 1px solid rgba(244, 108, 20, 0.55);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        color: #F46C14;
        cursor: pointer;
        padding: 0;
        z-index: 2;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu-close i {
        font-size: 1.1rem;
        line-height: 1;
    }

    body.nav-menu-open .mobile-menu-fab {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.nav-menu-open .mobile-dots {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-menu .nav-app-stores {
        display: flex;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff;
        opacity: 1 !important;
        text-align: left;
        text-shadow: none;
    }

    .nav-menu .nav-link.signup-btn {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus-visible {
        color: #ffffff !important;
        opacity: 1 !important;
    }

    .nav-link {
        font-size: 1.2rem;
        color: #fff;
        opacity: 1;
        text-align: left;
    }

    .nav-right {
        margin: 0;
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .signup-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 1rem;
        margin-top: 1rem;
    }

    .current-slide-number {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-toggle {
        right: 15px;
    }

    .navbar {
        min-height: 50px;
    }

    .nav-menu {
        padding: 2rem;
        padding-top: 3.5rem;
    }

    .current-slide-number {
        display: none !important;
    }

    .dot {
        width: 25px;
    }

    .dot.active {
        width: 35px;
    }

    .section-heading,
    .section-subheading {
        font-size: 1.8rem !important;
    }

    .section-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .border-frame {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .nav-brand img {
        height: 18px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-content {
        padding: 0 var(--space-5);
    }

    .section-nav {
        right: 20px;
        padding: 10px;
        width: 60px;
    }

    .section-nav:hover {
        width: 200px;
    }

    .section-number {
        font-size: 14px;
    }

    .section-title {
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .platform-logos {
        gap: 2rem;
    }

    .store-logo {
        height: 35px;
    }

    .store-logo.spotify {
        height: 35px;
    }

    .store-logo.apple {
        height: 25px;
    }

    .store-logo.youtube {
        height: 30px;
    }

    .store-logo.tiktok {
        height: 25px;
    }

    .store-logo.soundcloud {
        height: 31px;
    }

    .store-logo.amazon {
        height: 25px;
    }
}

/* Remove any color overrides */
.section-item:hover .section-title,
.section-item.active .section-title,
.section-nav:hover .section-title {
    color: #ffffff !important;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F46C14;
    font-size: 1.5rem;
    line-height: 1;
}

/* Text Link */
.text-link {
    color: #F46C14;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #ea670f;
}

/* Player Preview */
.player-preview {
    background: rgba(31, 31, 31, 0.95);
    border-radius: 12px;
    padding: 1rem;
    margin: 2rem 0;
    max-width: 400px;
}

.player-preview img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}

.player-controls i {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.player-controls i:hover {
    opacity: 1;
    color: #F46C14;
}

/* Update existing styles */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Responsive updates */
@media (max-width: 979px) {
    .section-subheading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-subheading {
        font-size: 1.5rem;
    }

    .player-controls {
        padding: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-content {
        padding: 0 var(--space-5);
    }

    .section-nav {
        right: 20px;
        padding: 10px;
        width: 60px;
    }

    .section-nav:hover {
        width: 200px;
    }

    .section-number {
        font-size: 14px;
    }

    .section-title {
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .platform-logos {
        gap: 2rem;
    }

    .store-logo {
        height: 35px;
    }

    .store-logo.spotify {
        height: 35px;
    }

    .store-logo.apple {
        height: 25px;
    }

    .store-logo.youtube {
        height: 30px;
    }

    .store-logo.tiktok {
        height: 25px;
    }

    .store-logo.soundcloud {
        height: 31px;
    }

    .store-logo.amazon {
        height: 25px;
    }
}

/* Remove any color overrides */
.section-item:hover .section-title,
.section-item.active .section-title,
.section-nav:hover .section-title {
    color: #ffffff !important;
}

/* Content Slider */
.content-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-slides-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.content-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.content-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Counter - Top Right */
.content-slider-counter {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.content-slider-counter .current {
    color: #ffffff;
}

.content-slider-counter .separator {
    color: #ff6b00;
    opacity: 0.7;
    font-size: 0.7rem;
    margin-top: -2px;
}

.content-slider-counter .total {
    opacity: 0.7;
}

/* Navigation Controls - Bottom */
.content-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.content-slider-counter {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.content-slider-counter .current {
    color: #ffffff;
    font-size: 1.2rem;
}

.content-slider-counter .separator {
    color: #ff6b00;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: -2px;
}

.content-slider-counter .total {
    opacity: 0.7;
    font-size: 1.2rem;
}

.content-slider-controls {
    display: flex;
    gap: 45px;
}

.prev-content,
.next-content {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.next-content {
    border-color: rgba(255, 255, 255, 0.8);
}

.prev-content:hover,
.next-content:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.prev-content svg,
.next-content svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    .content-slider-nav {
        bottom: 45px;
        gap: 25px;
    }

    .content-slider-counter {
        font-size: 1.1rem;
    }

    .prev-content,
    .next-content {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .prev-content svg,
    .next-content svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .content-slider-nav {
        bottom: 35px;
        gap: 20px;
    }

    .content-slider-counter {
        font-size: 1rem;
    }

    .prev-content,
    .next-content {
        width: 40px;
        height: 40px;
    }

    .prev-content svg,
    .next-content svg {
        width: 18px;
        height: 18px;
    }
}

.auth-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.auth-btn {
    font-family: var(--body-font);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.auth-btn.login {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-btn.signup {
    color: #fff;
    background: linear-gradient(45deg, #F46C14, #ea670f);
    border: none;
}

.auth-btn.login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.auth-btn.signup:hover {
    background: linear-gradient(45deg, #ea670f, #F46C14);
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    .auth-buttons {
        gap: 15px;
    }

    .auth-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        gap: 12px;
    }

    .auth-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    font-family: var(--body-font);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li svg {
    color: rgba(255, 255, 255, 0.9);
    min-width: 24px;
    width: 24px;
    height: 24px;
}

.benefits-list li svg circle {
    stroke: #ff6b00;
    opacity: 0.8;
}

.benefits-list li svg path {
    color: #ff6b00;
    transform: scale(0.8);
    transform-origin: center;
}

.benefits-list li strong {
    font-weight: 600;
    color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    .benefits-list li svg {
        min-width: 22px;
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .benefits-list li svg {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }
}

/* App Stores */
.app-stores {
    display: flex;
    gap: 20px;
    margin-top: 2.5rem;
}

.app-store-btn {
    font-family: var(--body-font);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #F46C14, #ea670f);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.app-store-btn:first-child {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-store-btn svg {
    width: 20px;
    height: 20px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn:first-child:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.app-store-btn:last-child:hover {
    background: linear-gradient(45deg, #ea670f, #F46C14);
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    .app-stores {
        gap: 15px;
        margin-top: 2rem;
    }

    .app-store-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .app-store-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .app-stores {
        gap: 12px;
        margin-top: 1.5rem;
    }

    .app-store-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .app-store-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Platform Logos */
.platform-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.4rem, 1vw, 1.25rem);
    margin: 2rem 0;
    align-items: center;
}

.store-logo {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.store-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Specific logo adjustments */
.store-logo.spotify {
    height: 28px;
}

.store-logo.apple {
    height: 24px;
}

.store-logo.amazon {
    height: 24px;
}

.store-logo.youtube {
    height: 24px;
}

.store-logo.tiktok {
    height: 24px;
}

.store-logo.soundcloud {
    height: 30px;
}

/* Analytics Content */
.analytics-content .section-heading {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 2.8rem;
}

.analytics-content .section-subheading {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 2.8rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .analytics-content .section-heading,
    .analytics-content .section-subheading {
        font-size: 2.5rem;
    }

    .platform-logos {
        gap: 2rem;
    }

    .store-logo {
        height: 24px;
    }

    .store-logo.spotify {
        height: 24px;
    }

    .store-logo.apple,
    .store-logo.amazon,
    .store-logo.youtube,
    .store-logo.tiktok {
        height: 22px;
    }

    .store-logo.soundcloud {
        height: 28px;
    }
}

@media (max-width: 979px) {
    .analytics-content .section-heading,
    .analytics-content .section-subheading {
        font-size: 2.2rem;
    }

    .platform-logos {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .store-logo {
        height: 22px;
    }

    .store-logo.spotify {
        height: 22px;
    }

    .store-logo.apple,
    .store-logo.amazon,
    .store-logo.youtube,
    .store-logo.tiktok {
        height: 20px;
    }

    .store-logo.soundcloud {
        height: 26px;
    }
}

@media (max-width: 768px) {
    .analytics-content .section-heading,
    .analytics-content .section-subheading {
        font-size: 1.8rem;
    }

    .platform-logos {
        gap: 1.2rem;
        margin: 1.2rem 0;
    }

    .store-logo {
        height: 20px;
    }

    .store-logo.spotify {
        height: 20px;
    }

    .store-logo.apple,
    .store-logo.amazon,
    .store-logo.youtube,
    .store-logo.tiktok {
        height: 18px;
    }

    .store-logo.soundcloud {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .analytics-content .section-heading,
    .analytics-content .section-subheading {
        font-size: 1.5rem;
    }

    .platform-logos {
        gap: 1rem;
        margin: 1rem 0;
        justify-content: center;
    }

    .store-logo {
        height: 18px;
    }

    .store-logo.spotify {
        height: 18px;
    }

    .store-logo.apple,
    .store-logo.amazon,
    .store-logo.youtube,
    .store-logo.tiktok {
        height: 16px;
    }

    .store-logo.soundcloud {
        height: 21px;
    }
}

/* Video Section Styles */
.video-section {
    flex: 1.3;
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-left: -40px;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
    max-width: 100%;
    border-radius: 0 290px 0 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.video-section video:hover {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    border-radius: 0 290px 0 0;
}

/* Platform Logos Overlay */
.platform-logos-overlay {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.4rem, 1vw, 1rem);
    justify-content: center;
    align-items: center;
    width: min(94%, 680px);
    padding: 0 clamp(8px, 1vw, 12px);
    box-sizing: border-box;
    z-index: 5;
}

.platform-logos-overlay .store-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.platform-logos-overlay .store-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.platform-logos-overlay .store-logo.spotify {
    height: 32px;
}

.platform-logos-overlay .store-logo.apple {
    height: 28px;
}

.platform-logos-overlay .store-logo.amazon {
    height: 28px;
}

.platform-logos-overlay .store-logo.youtube {
    height: 28px;
}

.platform-logos-overlay .store-logo.tiktok {
    height: 28px;
}

.platform-logos-overlay .store-logo.soundcloud {
    height: 34px;
}

/* Responsive adjustments for platform logos overlay */
@media (max-width: 979px) {
    .platform-logos-overlay {
        bottom: 100px;
        gap: 2rem;
    }

    .platform-logos-overlay .store-logo {
        height: 28px;
    }

    .platform-logos-overlay .store-logo.spotify {
        height: 28px;
    }

    .platform-logos-overlay .store-logo.apple,
    .platform-logos-overlay .store-logo.amazon,
    .platform-logos-overlay .store-logo.youtube,
    .platform-logos-overlay .store-logo.tiktok {
        height: 24px;
    }

    .platform-logos-overlay .store-logo.soundcloud {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .platform-logos-overlay {
        bottom: 80px;
        gap: 1.5rem;
        width: 90%;
    }

    .platform-logos-overlay .store-logo {
        height: 24px;
    }

    .platform-logos-overlay .store-logo.spotify {
        height: 24px;
    }

    .platform-logos-overlay .store-logo.apple,
    .platform-logos-overlay .store-logo.amazon,
    .platform-logos-overlay .store-logo.youtube,
    .platform-logos-overlay .store-logo.tiktok {
        height: 20px;
    }

    .platform-logos-overlay .store-logo.soundcloud {
        height: 26px;
    }
}

/* Content Section Styles */
.content-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    margin-right: 40px;
    align-items: flex-start;
    text-align: left;
}

.content-section .section-heading {
    font-size: 2.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
    max-width: 600px;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #c471ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    color: #F46C14;
    min-width: 4rem;
    text-align: center;
}

.step-content {
    max-width: 600px;
}

.step-content h3 {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4em;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 979px) {
    .content-section {
        padding: 40px;
    }

    .content-section .section-heading {
        font-size: 2.8rem;
        max-width: 500px;
    }

    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        max-width: 450px;
    }

    .step-content {
        max-width: 520px;
    }

    .step-content h3 {
        font-size: 1.8rem;
    }

    .step-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px;
    }

    .content-section .section-heading {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .step-content {
        max-width: 100%;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1.1rem;
    }
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.video-play-btn .play-icon,
.video-play-btn .pause-icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-play-btn .play-icon {
    opacity: 0;
    transform: scale(0.8);
}

.video-play-btn .pause-icon {
    opacity: 1;
    transform: scale(1);
}

.video-play-btn.paused .play-icon {
    opacity: 1;
    transform: scale(1);
}

.video-play-btn.paused .pause-icon {
    opacity: 0;
    transform: scale(0.8);
}

/* Sound Button */
.video-sound-btn {
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.video-sound-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.video-sound-btn .sound-on-icon,
.video-sound-btn .sound-off-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-sound-btn:not(.muted) .sound-on-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-sound-btn:not(.muted) .sound-off-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.video-sound-btn.muted .sound-on-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.video-sound-btn.muted .sound-off-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive adjustments for sound button */
@media (max-width: 979px) {
    .video-sound-btn {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .video-sound-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .video-sound-btn {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }

    .video-sound-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Analytics Layout */
.analytics-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    overflow: visible;
}

.analytics-content {
    flex: 1.6;
    text-align: left;
    max-width: none;
    padding-right: 0;
    position: relative;
    z-index: 2;
}

/* iPhone Frame with 3D Effect */
.iphone-frame {
    position: relative;
    width: 290px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 48px;
    padding: 12px;
    margin: 0;
    transform: perspective(1500px) rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 
        25px 60px 125px -25px rgba(0, 0, 0, 0.5),
        10px 30px 40px -10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Dynamic Island */
.iphone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 55%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 3;
}

/* Side button details */
.iphone-frame::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -3px;
    width: 3px;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    box-shadow: 
        0 100px 0 rgba(255, 255, 255, 0.1),
        0 160px 0 rgba(255, 255, 255, 0.1);
}

/* Volume buttons */
.iphone-frame .volume-buttons {
    position: absolute;
    top: 100px;
    left: -3px;
    width: 3px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    box-shadow: 0 80px 0 rgba(255, 255, 255, 0.1);
}

/* Screen content container */
.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

/* iPhone Container */
.iphone-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-width: 300px;
    margin-left: -170px;
}

.iphone-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 280px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0) 70%);
    transform: translateX(-50%) rotateX(45deg);
    filter: blur(15px);
    z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 979px) {
    .analytics-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 20px;
    }

    .analytics-content {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .iphone-frame {
        width: 250px;
        height: 500px;
        transform: none;
    }

    .iphone-container {
        padding: 20px;
        margin: 0 auto;
        min-width: auto;
    }

    .iphone-container::after {
        width: 220px;
        height: 30px;
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .analytics-layout {
        padding: 15px;
    }

    .iphone-frame {
        width: 220px;
        height: 440px;
        border-radius: 36px;
        padding: 10px;
    }

    .iphone-screen,
    .app-screenshot {
        border-radius: 28px;
    }

    .iphone-container {
        padding: 15px;
    }

    .iphone-container::after {
        width: 180px;
        height: 25px;
        bottom: -10px;
    }
}

/* Video Content Overlay */
.video-content-overlay {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.video-heading {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Update Platform Logos Overlay */
.platform-logos-overlay {
    position: static;
    transform: none;
    margin-bottom: 3rem;
}

/* Video CTA Button */
.video-cta {
    font-size: 1rem;
    padding: 15px 40px;
    background: linear-gradient(45deg, #F46C14, #ea670f);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.video-cta:hover {
    background: linear-gradient(45deg, #ea670f, #F46C14);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 979px) {
    .video-content-overlay {
        bottom: 12%;
    }

    .video-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .platform-logos-overlay {
        margin-bottom: 2rem;
    }

    .video-cta {
        font-size: 0.9rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .video-content-overlay {
        bottom: 10%;
    }

    .video-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .platform-logos-overlay {
        margin-bottom: 1.5rem;
    }

    .video-cta {
        font-size: 0.8rem;
        padding: 10px 25px;
    }
}

/* --------------------------------------------------------------------------
   Section nav links & slider controls (shared)
   -------------------------------------------------------------------------- */
.section-nav a {
    text-decoration: none;
}

.next-content.disabled,
.prev-content.disabled {
    pointer-events: none;
}

.content-slider-controls button:disabled {
    opacity: 0.3;
}

.content-slider-controls button {
    transition: opacity 0.3s ease;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Accessibility & layout safety
   -------------------------------------------------------------------------- */
/* M15: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* M16: Prevent horizontal overflow */
body {
    overflow-x: hidden;
}
.sections-container,
.fullscreen-section,
.split-layout {
    max-width: 100vw;
}

/* --------------------------------------------------------------------------
   Desktop navbar: 980px+ – keep menu on one line, tuned logo & buttons
   -------------------------------------------------------------------------- */
@media (min-width: 980px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        padding: var(--space-2) var(--space-10);
        background: rgba(31, 31, 31, 0.95);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        pointer-events: none;
        height: calc(var(--space-5) + var(--space-4) - 1px);
        max-height: calc(var(--space-5) + var(--space-4) - 1px);
        box-sizing: border-box;
        overflow: hidden;
    }

    .site-header.visible {
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar::before {
        display: none;
    }

    .navbar {
        position: static;
        top: auto;
        transform: none !important;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        gap: 0;
        min-height: auto;
        flex: 0 0 auto;
        pointer-events: auto;
    }

    .nav-menu {
        position: static !important;
        inset: auto !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0;
        padding: 0;
        background: transparent;
        transform: none !important;
        clip-path: none !important;
        overflow: visible;
        z-index: auto;
        pointer-events: auto !important;
    }

    .nav-menu-close {
        display: none !important;
    }

    .nav-menu .nav-app-stores {
        display: none !important;
    }

    .nav-menu-bottom {
        display: none !important;
    }

    .navbar {
        justify-content: center;
        padding: 0 var(--space-10);
        gap: 4rem;
        height: 100%;
        align-items: center;
    }

    .nav-brand img {
        height: 18px;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: nowrap;
    }

    .nav-right {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
        color: #ffffff;
        opacity: 1;
        pointer-events: auto;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }

    .site-header a {
        pointer-events: auto;
    }

    .signup-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

/* Slightly wider desktop: restore a bit more spacing when there’s room */
/* Desktop 1100px+: restore full original spacing (centered, original gaps) */
@media (min-width: 1100px) {
    .site-header {
        gap: 18rem;
        padding: var(--space-2) var(--space-10);
    }

    .navbar {
        gap: 18rem;
        padding: 0 var(--space-10);
    }

    .nav-brand img {
        height: 19px;
    }

    .nav-menu {
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .nav-right {
        gap: 2rem;
    }

    .signup-btn {
        padding: 0.6rem 1.8rem;
        font-size: 14px;
    }
} 