/* Hero Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Background Texture */
body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Halftone squares pattern */
body::before {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.3;
}

/* Larger squares with halftone effect */
body::after {
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    background-position: -12px -12px;
    opacity: 0.2;
}

/* Black Friday Banner - positioned in hero section */
.bf-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 115, 255, 0.2);
    border: 1px solid rgba(0, 115, 255, 0.4);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: rgb(77, 156, 255);
    margin-bottom: 24px;
    box-shadow: 
        0 0 20px rgba(0, 115, 255, 0.2),
        inset 0 0 0 1px rgba(0, 115, 255, 0.2);
    animation: bf-pulse 2s ease-in-out infinite;
}

.bf-icon {
    font-size: 18px;
}

.bf-text {
    color: rgba(255, 255, 255, 0.9);
}

.bf-text strong {
    color: rgb(77, 156, 255);
    letter-spacing: 0.5px;
}

.bf-code {
    background: rgba(0, 115, 255, 0.3);
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(0, 115, 255, 0.5);
    margin-left: 4px;
}

@keyframes bf-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 115, 255, 0.2),
            inset 0 0 0 1px rgba(0, 115, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 115, 255, 0.35),
            inset 0 0 0 1px rgba(0, 115, 255, 0.4);
    }
}

@media (max-width: 768px) {
    .bf-badge {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .bf-code {
        padding: 3px 8px;
    }
}

/* Ensure all content stays above the texture */
.navbar,
.hero,
.tabbed-interface {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 8, 8, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 150px;
    justify-content: flex-start;
}

.logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links > a:not(.nav-link):not(.get-started-btn) {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.nav-links > a:not(.nav-link):not(.get-started-btn):hover {
    color: white;
}

/* Mobile menu - hidden by default */
.mobile-menu-btn {
    display: none;
}

.mobile-dropdown {
    display: none;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 150px;
    justify-content: flex-end;
    margin-left: 40px;
}

.nav-link {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
padding: 10px 20px;
border-radius: 100px;
border: 1px solid rgba(255, 255, 255, 0.15);
background: rgba(255, 255, 255, 0.05);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}

.nav-link:hover {
color: white;
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-1px);
box-shadow: 
0 4px 12px rgba(0, 0, 0, 0.1),
0 2px 4px rgba(255, 255, 255, 0.05);
}

.get-started-btn {
background: rgb(0, 115, 255);
color: #fff;
padding: 10px 20px;
border-radius: 100px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: all 0.2s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
cursor: pointer;
white-space: nowrap;
box-shadow: 
0 0 20px rgba(0, 115, 255, 0.3),
0 0 40px rgba(0, 115, 255, 0.1),
inset 0 0 0 1px rgba(255, 255, 255, 0.2);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
letter-spacing: 0.3px;
}

.get-started-btn:hover {
    transform: translateY(-1px);
    background: rgb(30, 130, 255);
    box-shadow: 
        0 0 30px rgba(0, 115, 255, 0.4),
        0 0 60px rgba(0, 115, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.get-started-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .navbar {
        top: 8px;
        padding: 8px 12px;
        width: calc(100% - 24px);
    }

    .nav-container {
        padding: 0;
    }

    .logo {
        font-size: 16px;
        gap: 6px;
    }

    .logo img {
        width: 22px !important;
        height: 22px !important;
    }

    .nav-links {
        display: none;
    }

    .get-started-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 160px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
    padding: 0 60px;
}

.hero-text {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    text-align: center;
}

.hero-cta-group {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.hero-cta {
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
}

.hero-cta:first-child {
    background: rgb(0, 115, 255);
    color: #fff;
    border: none;
    box-shadow: 
        0 0 20px rgba(0, 115, 255, 0.5),
        0 0 40px rgba(0, 115, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta:first-child:hover {
    transform: translateY(-1px);
    background: rgb(30, 130, 255);
    box-shadow: 
        0 0 30px rgba(0, 115, 255, 0.6),
        0 0 60px rgba(0, 115, 255, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta.secondary::after {
    content: '→';
    font-size: 20px;
    line-height: 0;
}

.primary-cta {
    background: rgb(0, 115, 255);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(0, 115, 255, 0.3),
        0 0 40px rgba(0, 115, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.primary-cta:hover {
    transform: translateY(-2px);
    background: rgb(30, 130, 255);
    box-shadow: 
        0 0 30px rgba(0, 115, 255, 0.4),
        0 0 60px rgba(0, 115, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.primary-cta:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-arrow {
    font-size: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dashboard Preview */
.dashboard-preview {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 48px;
    perspective: 1500px;
    perspective-origin: center 200px;
}

.dashboard-image-wrapper {
    position: relative;
    border-radius: 12px;
    z-index: 10;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 20px rgba(77, 156, 255, 0.15);
}

.dashboard-image {
    width: 1400px;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .dashboard-preview {
        perspective: none;
    }

    .dashboard-image {
        box-shadow: 
            inset 0 2px 2px rgba(255, 255, 255, 0.15),
            inset 0 -2px 2px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 20px 40px rgba(0, 0, 0, 0.4);
        width: 100%;
        max-width: 1400px;
    }
}

@media (max-width: 1600px) {
    .hero {
        padding: 140px 32px 0;
    }

    .dashboard-preview {
        padding: 0 32px;
    }

    .dashboard-image {
        width: 100%;
        max-width: 1400px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 24px 0;
    }

    .dashboard-preview {
        padding: 0 24px;
    }

    .dashboard-image {
        width: 100%;
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
        align-items: flex-start;
        padding: 0;
    }

    .hero-cta-group {
        margin-left: 0;
        margin-top: 32px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 20px 32px;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: auto;
        margin-top: 24px;
    }

    .hero-cta {
        width: auto;
        text-align: center;
        justify-content: center;
        padding: 12px 28px;
        font-size: 15px;
    }

    .primary-cta {
        padding: 12px 28px;
        font-size: 15px;
    }

    .dashboard-preview {
        padding: 0 8px;
    }

    .dashboard-image {
        transform: none;
        border-radius: 8px;
        width: 100%;
    }

    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
    }

    /* Stack credit pricing grid on mobile */
    .credit-pricing-grid {
        grid-template-columns: 1fr !important;
    }

    /* Voice generator track info */
    .track-info {
        flex-wrap: wrap;
    }

    .track-time {
        margin-left: 0;
    }

    /* Tooltips */
    .tooltip-text {
        max-width: 260px !important;
        white-space: normal !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero-title,
.hero-subtitle,
.hero-cta {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-cta { animation-delay: 0.3s; }

.dashboard-preview {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* Tabbed Interface Styles */
.tabbed-interface {
    max-width: 1600px;
    margin: 160px auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.tabbed-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.tab-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tabbed-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 32px 0 24px 0;
}

.tabbed-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.tabbed-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Sidebar Navigation */
.tab-sidebar {
    flex: 0 0 320px;
    position: sticky;
    top: 120px;
}

.tab-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-button {
    background: rgba(8, 8, 8, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.tab-button:hover {
    background: rgba(8, 8, 8, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px -2px rgba(0, 0, 0, 0.2),
        0 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tab-button.active {
    background: rgba(0, 115, 255, 0.1);
    border-color: rgba(0, 115, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 115, 255, 0.2),
        inset 0 0 0 1px rgba(0, 115, 255, 0.1);
}

.tab-button.active:hover {
    background: rgba(0, 115, 255, 0.15);
    border-color: rgba(0, 115, 255, 0.4);
}

.tab-info {
    flex: 1;
}

.tab-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.tab-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.3;
}

.tab-button.active .tab-info h4 {
    color: rgb(77, 156, 255);
}

.tab-button.active .tab-info p {
    color: rgba(77, 156, 255, 0.8);
}

.coming-soon-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(0, 115, 255, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Area */
.tab-content-area {
    flex: 1;
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.tab-panel.active {
    display: block;
}

.tab-panel-content {
    display: flex;
    gap: 48px;
    align-items: center;
    background: rgba(8, 8, 8, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.15),
        0 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-media {
    flex: 1;
    position: relative;
}

.panel-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.panel-image:hover {
    transform: scale(1.02);
}

.panel-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.panel-video:hover {
    transform: scale(1.02);
}

/* Full-width video styles for Channel Analytics */
.tab-panel-content.full-video {
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.panel-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.15),
        0 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-video-fullwidth {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 24px;
    padding: 48px;
}

.video-overlay.active {
    opacity: 1;
    visibility: visible;
}

.learn-more-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

.learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.learn-more-btn svg {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
    transform: translateX(2px);
}

.learn-more-btn.close-mode {
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: auto;
    width: 32px;
    height: 32px;
    justify-content: center;
    border-radius: 50%;
}

.learn-more-btn.close-mode:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.overlay-content {
    text-align: left;
    max-width: 500px;
    color: white;
    flex: 1;
}

.overlay-content h3 {
    font-size: 32px;
    font-weight: 500;
    color: rgb(77, 156, 255);
    margin: 0 0 16px 0;
    text-shadow: 
        0 0 10px rgba(77, 156, 255, 0.3),
        0 0 20px rgba(77, 156, 255, 0.2);
}

.overlay-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
}

.overlay-content .feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay-content .feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.4;
}

.overlay-content .feature-benefits li::before {
    content: '✓';
    color: rgb(0, 115, 255);
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.overlay-content .panel-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

/* Mobile responsiveness for full-video */
@media (max-width: 768px) {
    .video-overlay {
        padding: 8px;
        justify-content: flex-end;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }

    .overlay-content {
        text-align: left;
        max-width: 200px;
        flex: none;
    }

    .overlay-content h3 {
        font-size: 11px;
        margin-bottom: 3px;
        font-weight: 600;
    }

    .overlay-content p {
        font-size: 8px;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .overlay-content .feature-benefits {
        margin-bottom: 8px;
    }

    .overlay-content .feature-benefits li {
        font-size: 8px;
        margin-bottom: 2px;
    }

    .overlay-content .panel-cta {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        margin-top: 6px;
    }

    .overlay-content .panel-button {
        width: 100%;
        padding: 6px 12px;
        font-size: 8px;
    }

    .learn-more-btn {
        top: 6px;
        right: 6px;
        padding: 4px 8px;
        font-size: 8px;
    }

    .learn-more-btn.close-mode {
        width: 24px;
        height: 24px;
        padding: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Extra small mobile devices (430px width target) */
@media (max-width: 480px) {
    .video-overlay {
        padding: 6px;
    }

    .overlay-content {
        max-width: 180px;
    }

    .overlay-content h3 {
        font-size: 10px;
        margin-bottom: 2px;
        font-weight: 600;
    }

    .overlay-content p {
        font-size: 7px;
        margin-bottom: 4px;
        line-height: 1.0;
    }

    .overlay-content .feature-benefits {
        margin-bottom: 6px;
    }

    .overlay-content .feature-benefits li {
        font-size: 7px;
        margin-bottom: 1px;
    }

    .overlay-content .panel-cta {
        margin-top: 4px;
    }

    .overlay-content .panel-button {
        padding: 5px 10px;
        font-size: 7px;
    }

    .learn-more-btn {
        top: 4px;
        right: 4px;
        padding: 3px 6px;
        font-size: 7px;
    }

    .learn-more-btn.close-mode {
        width: 20px;
        height: 20px;
        padding: 3px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Ultra compact for very small screens (430px) */
@media (max-width: 430px) {
    .video-overlay {
        padding: 4px;
    }

    .overlay-content {
        max-width: 160px;
    }

    .overlay-content h3 {
        font-size: 9px;
        margin-bottom: 1px;
        font-weight: 600;
    }

    .overlay-content p {
        font-size: 6px;
        margin-bottom: 3px;
        line-height: 1.0;
    }

    .overlay-content .feature-benefits {
        margin-bottom: 4px;
    }

    .overlay-content .feature-benefits li {
        font-size: 6px;
        margin-bottom: 1px;
    }

    .overlay-content .panel-cta {
        margin-top: 3px;
    }

    .overlay-content .panel-button {
        padding: 4px 8px;
        font-size: 6px;
    }

    .learn-more-btn {
        top: 3px;
        right: 3px;
        padding: 2px 5px;
        font-size: 6px;
    }

    .learn-more-btn.close-mode {
        width: 18px;
        height: 18px;
        padding: 2px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.coming-soon-blur {
    filter: blur(2px) brightness(0.7);
}

.coming-soon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.coming-soon-badge-large {
    background: rgba(0, 115, 255, 0.9);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.panel-info {
    flex: 1;
}

.panel-info h3 {
    font-size: 32px;
    font-weight: 500;
    color: rgb(77, 156, 255);
    margin: 0 0 16px 0;
    text-shadow: 
        0 0 10px rgba(77, 156, 255, 0.3),
        0 0 20px rgba(77, 156, 255, 0.2);
}

.panel-info p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-benefits li::before {
    content: '✓';
    color: rgb(0, 115, 255);
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.panel-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.panel-button {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.panel-button.primary {
    background: rgb(0, 115, 255);
    color: white;
    box-shadow: 
        0 0 20px rgba(0, 115, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.panel-button.primary:hover {
    background: rgb(30, 130, 255);
    transform: translateY(-1px);
    box-shadow: 
        0 0 30px rgba(0, 115, 255, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.panel-button.primary.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.panel-button.primary.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

.panel-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .tabbed-interface {
        margin: 120px auto;
        padding: 0 24px;
    }

    .tabbed-title {
        font-size: 48px;
    }

    .tabbed-subtitle {
        font-size: 18px;
    }

    .tabbed-content {
        flex-direction: column;
        gap: 32px;
    }

    .tab-sidebar {
        flex: none;
        position: static;
        width: 100%;
    }

    .tab-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 12px;
    }

    .tab-panel-content {
        flex-direction: column;
        padding: 32px;
        gap: 32px;
    }

    .panel-info h3 {
        font-size: 28px;
    }

    .panel-cta {
        flex-direction: column;
        width: 100%;
    }

    .panel-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tabbed-title {
        font-size: 36px;
    }

    .tabbed-subtitle {
        font-size: 16px;
    }

    .tab-nav {
        grid-template-columns: 1fr;
    }

    .tab-button {
        padding: 16px;
    }

    .tab-info h4 {
        font-size: 15px;
    }

    .tab-info p {
        font-size: 13px;
    }

    .tab-panel-content {
        padding: 24px;
    }

    .panel-info h3 {
        font-size: 24px;
    }

    .panel-info p {
        font-size: 16px;
    }

    .feature-benefits li {
        font-size: 15px;
    }
}

/* Add styles for the feature badge */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 115, 255, 0.15);
    border: 1px solid rgba(0, 115, 255, 0.4);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(77, 156, 255);
    margin-bottom: 32px;
    box-shadow: 
        0 0 20px rgba(0, 115, 255, 0.1),
        inset 0 0 0 1px rgba(0, 115, 255, 0.2);
}

.feature-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgb(77, 156, 255);
    border-radius: 50%;
    display: block;
}

/* Ensure content stays above the blur effect */
.feature-image,
.feature-title,
.feature-description {
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 48px;
    transition: all 0.3s ease;
}

.pricing.highlight {
    transform: scale(1.01);
}

@keyframes highlightPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

.pricing.highlight {
    animation: highlightPulse 1s ease-in-out;
}

.pricing-title {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 64px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 400px));
    gap: 24px;
    position: relative;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

.pricing-card {
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    position: relative;
    width: 100%;
    overflow: visible;
}

.pricing-card-inner {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-4px);
    background: rgba(15, 15, 20, 0.95);
    box-shadow: 
        0 8px 32px -2px rgba(0, 0, 0, 0.3),
        0 16px 48px -4px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Top gradient highlight - subtle */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: radial-gradient(ellipse at center top, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 40%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Bottom gradient highlight - subtle */
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: radial-gradient(ellipse at center bottom, 
        rgba(255, 255, 255, 0.01) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Content wrapper to ensure it's above gradients */
.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-card.popular {
    background: rgba(0, 115, 255, 0.08);
    border-color: rgba(0, 115, 255, 0.15);
}

/* Enhanced top gradient for popular card */
.pricing-card.popular::before {
    background: radial-gradient(ellipse at center top, 
        rgba(0, 115, 255, 0.2) 0%,
        rgba(0, 115, 255, 0.1) 40%,
        transparent 100%
    );
}

/* Enhanced bottom gradient for popular card */
.pricing-card.popular::after {
    background: radial-gradient(ellipse at center bottom, 
        rgba(0, 115, 255, 0.15) 0%,
        rgba(0, 115, 255, 0.05) 40%,
        transparent 100%
    );
}

.pricing-card.popular .popular-badge {
    position: absolute;
    top: -32px;
    right: 0;
    background: rgb(0, 115, 255);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 
        0 4px 12px rgba(0, 115, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Card Header */
.card-header {
    position: relative;
    margin-bottom: 24px;
}

/* Current Plan Badge - Hidden */
.current-plan-badge {
    display: none;
}

/* Current Plan Card Styling */
.pricing-card.current-plan {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
}

.pricing-card.current-plan::before {
    background: radial-gradient(ellipse at center top, 
        rgba(34, 197, 94, 0.15) 0%,
        rgba(34, 197, 94, 0.08) 40%,
        transparent 100%
    );
}

.pricing-card.current-plan::after {
    background: radial-gradient(ellipse at center bottom, 
        rgba(34, 197, 94, 0.1) 0%,
        rgba(34, 197, 94, 0.05) 40%,
        transparent 100%
    );
}

.pricing-card.current-plan.popular {
    background: rgba(0, 115, 255, 0.08);
    border-color: rgba(0, 115, 255, 0.15);
}

.pricing-card.current-plan.popular::before {
    background: radial-gradient(ellipse at center top, 
        rgba(0, 115, 255, 0.2) 0%,
        rgba(0, 115, 255, 0.1) 40%,
        transparent 100%
    );
}

.pricing-card.current-plan.popular::after {
    background: radial-gradient(ellipse at center bottom, 
        rgba(0, 115, 255, 0.15) 0%,
        rgba(0, 115, 255, 0.05) 40%,
        transparent 100%
    );
}

.plan-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

.plan-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    letter-spacing: -0.02em;
}

.plan-price span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.annual-total {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.annual-total .amount {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Conflicting toggle styles removed */

/* Unused toggle option styles removed */

.plan-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.5;
}

.plan-cta {
    display: inline-block;
    width: 100%;
    background: rgb(0, 115, 255);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    border: none;
    cursor: pointer;
}

.plan-cta:hover {
    background: rgb(20, 125, 255);
    transform: translateY(-1px);
}

.plan-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing-card.popular .plan-cta {
    background: rgb(0, 115, 255);
    border-color: transparent;
    color: white;
    box-shadow: 
        0 4px 12px rgba(0, 115, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.popular .plan-cta:hover {
    background: rgb(30, 130, 255);
    box-shadow: 
        0 4px 16px rgba(0, 115, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    overflow: visible;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    color: rgb(0, 115, 255);
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    margin-top: 0;
}

.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: help;
    vertical-align: middle;
}

.info-icon {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
    display: block;
}

.info-tooltip:hover .info-icon {
    color: rgb(0, 115, 255);
}

.tooltip-text {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    line-height: 1.3;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
}

.info-tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

.tooltip-text.niche-finder-tooltip {
    white-space: nowrap;
    max-width: 280px;
    text-align: left;
    line-height: 1.6;
}
/* Pricing toggle styles */
/* Old pricing toggle wrapper styles removed */

/* Old pricing toggle styles removed to prevent conflicts */

.savings-tag {
    background: rgba(0, 115, 255, 0.1);
    color: rgb(0, 115, 255);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-left: 8px;
}

/* Testimonials Section Styles */
.testimonials {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 48px;
    overflow: hidden;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 64px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 32px 0;
}

/* Add fade masks */
.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(to right, 
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 20%,
        rgba(0, 0, 0, 0) 100%
    );
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(to left, 
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 20%,
        rgba(0, 0, 0, 0) 100%
    );
}

.testimonial-track {
    display: flex;
    gap: 24px;
    animation: scroll 20s linear infinite;
    width: fit-content;
    padding: 0 150px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(-100% + 100vw));
        opacity: 0.95;
    }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: none;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 
        0 8px 32px -2px rgba(0, 0, 0, 0.2),
        0 16px 48px -4px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 0;
}

@media (max-width: 768px) {
    .testimonials {
        margin: 80px auto;
        padding: 0 24px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonials-carousel::before,
    .testimonials-carousel::after {
        width: 60px;
    }

    .testimonial-track {
        padding: 0 60px;
    }
}

/* FAQ Section Styles */
.faq {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
}

.faq-title {
    text-align: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 48px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    background: #000;
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(0, 115, 255);
    min-width: 40px;
    margin-right: 24px;
}

.faq-question span:not(.faq-toggle-icon) {
    flex: 1;
}

.faq-toggle-icon {
    margin-left: 24px;
    width: 24px;
    height: 24px;
    color: rgb(0, 115, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-toggle-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item:hover .faq-question {
    background: #000;
}

.faq-item.active .faq-question {
    background: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 88px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 20px;
        gap: 16px;
    }

    .faq-number {
        font-size: 1rem;
        min-width: 30px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 66px;
    }
}

/* Footer Styles */
.footer {
    background: rgba(8, 8, 8, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    margin-top: 120px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links .discord {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(88, 101, 242);
}

.footer-links .discord:hover {
    color: rgb(108, 121, 255);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* How It Works Section */
.how-it-works {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works .section-title {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.highlight-blue {
    color: rgb(0, 115, 255);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 8px;
    text-decoration-color: rgba(0, 115, 255, 0.5);
}

.how-it-works .section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: rgba(8, 8, 8, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 20px rgba(0, 115, 255, 0.05); /* Subtle base glow */
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 115, 255, 0.3);
    box-shadow: 
        0 10px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 115, 255, 0.2),
        0 0 30px rgba(0, 115, 255, 0.15); /* Stronger hover glow */
}

.step-badge {
    width: 48px;
    height: 48px;
    background: rgb(0, 115, 255);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 115, 255, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    min-height: 52px;
}

.step-visual {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-content-box {
    width: 100%;
}

/* Visual 1 Styles */
.visual-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.visual-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 115, 255, 0.2);
    border: 1px solid rgba(0, 115, 255, 0.4);
}

.visual-line {
    height: 4px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.visual-text-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid rgb(0, 115, 255);
}

.visual-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.visual-value {
    display: block;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

/* Visual 2 Styles */
.visual-label.small {
    margin-bottom: 12px;
}

.visual-progress-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.visual-progress-bar {
    height: 6px;
    background: rgb(0, 115, 255);
    border-radius: 3px;
    position: relative;
}

.visual-progress-bar.secondary {
    background: rgba(255, 255, 255, 0.2);
}

.visual-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

/* Visual 3 Styles */
.visual-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.visual-list-item:last-child {
    margin-bottom: 0;
}

.visual-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 255, 128, 0.15);
    color: rgb(0, 255, 128);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .how-it-works {
        margin: 80px auto;
        padding: 0 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 24px;
    }
}

/* Visual 2 Styles - Clean Dashboard UI */
.visual-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-label-right {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-channel-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visual-channel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.visual-channel-row:last-child {
    border-bottom: none;
}

.visual-channel-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.visual-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.visual-channel-details {
    flex: 1;
    min-width: 0;
}

.visual-name {
    font-size: 13px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.visual-subtext {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.visual-match-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.visual-match-badge.high {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.visual-match-badge.medium {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

/* Niche Rotator Styles */
.visual-value-container {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: white;
    font-weight: 500;
    gap: 0;
}

.visual-quote {
    color: white;
    flex-shrink: 0;
}

.niche-rotator {
    height: 20px;
    overflow: hidden;
    margin: 0 0;
    position: relative;
    width: 130px;
}

.niche-list {
    display: flex;
    flex-direction: column;
    animation: rotateNiche 12s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.niche-list span {
    height: 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@keyframes rotateNiche {
    0%, 14% { transform: translateY(0); }
    16%, 30% { transform: translateY(-20px); }
    33%, 47% { transform: translateY(-40px); }
    50%, 64% { transform: translateY(-60px); }
    66%, 80% { transform: translateY(-80px); }
    83%, 97% { transform: translateY(-100px); }
    100% { transform: translateY(-120px); }
}

/* Checklist Animation */
@keyframes checkReveal {
    0%, 15% { opacity: 0; transform: translateY(5px); }
    25%, 90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-5px); }
}

.visual-list-item {
    opacity: 0; /* Start hidden */
    animation: checkReveal 6s infinite ease-in-out;
}

.visual-list-item:nth-child(1) { animation-delay: 0s; }
.visual-list-item:nth-child(2) { animation-delay: 1.5s; }
.visual-list-item:nth-child(3) { animation-delay: 3s; }

.visual-check {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visual-list-item:hover .visual-check {
    transform: scale(1.2) rotate(10deg);
    background: rgba(0, 255, 128, 0.25);
}

/* Channel Rotator Animation Styles */
.label-rotator {
    height: 20px;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.label-slide-track {
    display: flex;
    flex-direction: column;
    animation: slideUpChannels 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.label-slide-track .visual-label {
    height: 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.channel-list-rotator {
    height: 170px; /* Adjust based on content height */
    overflow: hidden;
    position: relative;
    margin-top: 12px;
}

.channel-slide-track {
    display: flex;
    flex-direction: column;
    animation: slideUpChannels 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.channel-slide-track .visual-channel-list {
    height: 170px; /* Must match container height */
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
}

@keyframes slideUpChannels {
    0%, 45% { transform: translateY(0); }
    50%, 95% { transform: translateY(-33.333%); }
    100% { transform: translateY(-66.666%); }
}

/* Scroll Fade-In Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for step cards */
.step-card.fade-in-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.step-card.fade-in-on-scroll:nth-child(2) { transition-delay: 0.25s; }
.step-card.fade-in-on-scroll:nth-child(3) { transition-delay: 0.4s; }

/* Header fade in from above */
.fade-in-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Section */
.why-choose {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header .section-title {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.why-header .section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card {
    padding: 40px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    font-family: "DM Sans", sans-serif;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Feature Highlight Row */
.feature-highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-content {
    padding: 60px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-content h3 {
    font-size: 32px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    font-family: "DM Sans", sans-serif;
}

.highlight-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 480px;
}

.highlight-link {
    color: rgb(0, 115, 255); /* Brand Blue */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.highlight-link:hover {
    gap: 12px;
}

.highlight-visual {
    padding: 40px;
    background: radial-gradient(circle at center, rgba(0, 115, 255, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.niche-tags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    transform: rotate(-5deg) scale(1.1); /* Slanted look like screenshot */
}

.niche-tag {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 100px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.niche-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-highlight-row {
        grid-template-columns: 1fr;
    }
    
    .highlight-content {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 24px;
    }
    
    .highlight-visual {
        padding: 40px 24px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 0 24px;
        margin: 80px auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        border-right: 1px solid rgba(255, 255, 255, 0.1); /* Keep right border for consistency in mobile stack */
    }
}

/* Consolidation Visual (App Stack) */
.consolidation-visual {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 1;
}

.app-icon {
    font-size: 18px;
    filter: grayscale(1);
}

/* Positioning and Animation for Orbiting Apps */
.app-card {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Start centered, then transform moves them out */
    translate: -50% -50%; 
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    z-index: 5; /* Base z-index */
}

/* 
   Orbit Logic:
   1. Rotate the container/axis (first rotate)
   2. Move out to radius (translateX)
   3. Counter-rotate the card so text stays upright (second rotate)
*/

.app-elevenlabs {
    --radius: 170px;
    animation: orbit-cw 25s linear infinite;
    animation-delay: -2s;
}

.app-sora {
    --radius: 220px;
    animation: orbit-ccw 30s linear infinite; /* Counter-clockwise */
    animation-delay: -5s;
}

.app-incognito {
    --radius: 150px;
    animation: orbit-cw 20s linear infinite;
    animation-delay: -10s;
}

.app-nano {
    --radius: 200px;
    animation: orbit-cw 28s linear infinite;
    animation-delay: -15s;
}

.app-gemini {
    --radius: 130px;
    animation: orbit-ccw 22s linear infinite; /* Counter-clockwise */
    animation-delay: -8s;
}

/* Keyframes for Clockwise Orbit */
@keyframes orbit-cw {
    0% {
        transform: rotate(0deg) translateX(var(--radius)) rotate(0deg);
        z-index: 12; /* In front */
    }
    25% { z-index: 1; } /* Move behind */
    75% { z-index: 1; }
    75.1% { z-index: 12; } /* Move back in front */
    100% {
        transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg);
        z-index: 12;
    }
}

/* Keyframes for Counter-Clockwise Orbit */
@keyframes orbit-ccw {
    0% {
        transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg);
        z-index: 12;
    }
    25% { z-index: 1; }
    75% { z-index: 1; }
    75.1% { z-index: 12; }
    100% {
        transform: rotate(0deg) translateX(var(--radius)) rotate(0deg);
        z-index: 12;
    }
}

/* Central Algrow Card */
.algrow-central-card {
    position: relative;
    background: rgba(0, 115, 255, 0.15);
    border: 1px solid rgba(0, 115, 255, 0.4);
    padding: 24px 48px;
    border-radius: 20px;
    z-index: 10;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 115, 255, 0.2), 
                0 0 0 1px rgba(0, 115, 255, 0.2),
                inset 0 0 20px rgba(0, 115, 255, 0.1);
    backdrop-filter: blur(12px);
    transform: scale(1.1);
    animation: pulse-glow 3s infinite alternate;
}

.algrow-logo-text {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    background: linear-gradient(to right, #fff, #80c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.algrow-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 40px rgba(0, 115, 255, 0.2), 0 0 0 1px rgba(0, 115, 255, 0.2); }
    100% { box-shadow: 0 0 60px rgba(0, 115, 255, 0.3), 0 0 0 1px rgba(0, 115, 255, 0.4); }
}

/* Update float transforms for animation compatibility */
.app-elevenlabs { --r: -5deg; }
.app-sora { --r: 5deg; }
.app-incognito { --r: 10deg; }
.app-nano { --r: -8deg; }
.app-gemini { --r: 3deg; }

@media (max-width: 768px) {
    .consolidation-visual { height: 280px; }
    .app-card { transform: scale(0.8); }
    .algrow-central-card { transform: scale(0.9); }
}

/* Feature Visuals Styling */
.benefit-visual {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    background: rgba(0, 115, 255, 0.05);
    border: 1px solid rgba(0, 115, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-visual {
    background: rgba(0, 115, 255, 0.1);
    border-color: rgba(0, 115, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 115, 255, 0.15);
    transform: scale(1.05);
}

.viz-svg {
    width: 100%;
    height: 100%;
    padding: 10px;
}

/* Animations for Visuals */
.pulse-dot {
    animation: viz-pulse 2s infinite;
}

.scan-line {
    animation: viz-scan 2.5s ease-in-out infinite;
}

.grow-bar {
    animation: viz-grow 3s ease-out infinite alternate;
    transform-origin: bottom;
}

.sparkle {
    animation: viz-twinkle 2s ease-in-out infinite;
    transform-origin: center;
}

.wave-anim {
    animation: viz-wave 2s ease-in-out infinite alternate;
}

@keyframes viz-pulse {
    0% { opacity: 0.5; r: 3; }
    50% { opacity: 1; r: 4; fill: #5cabff; }
    100% { opacity: 0.5; r: 3; }
}

@keyframes viz-scan {
    0%, 100% { transform: translateY(-15px); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
}

@keyframes viz-grow {
    0% { transform: scaleY(0.5); }
    100% { transform: scaleY(1); }
}

@keyframes viz-twinkle {
    0%, 100% { opacity: 0.5; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

@keyframes viz-wave {
    0% { d: path("M10 30 Q 20 15, 30 30 T 50 30"); }
    100% { d: path("M10 30 Q 20 5, 30 30 T 50 30"); }
}

/* Enhanced Blue Card Styling */
.benefit-card {
    border: 1px solid rgba(255, 255, 255, 0.08); /* Reset to subtle */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card:hover {
    border-color: rgba(0, 115, 255, 0.3); /* Blue border on hover */
    box-shadow: 0 10px 40px -10px rgba(0, 115, 255, 0.15); /* Blue glow */
    transform: translateY(-5px);
}

/* Additional Visual Animations */
.net-node {
    animation: viz-pulse-node 2s infinite alternate;
}

.net-line {
    animation: viz-fade-line 2s infinite alternate;
}

.code-line {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: viz-draw-line 2s ease-out infinite;
}

.extract-check {
    animation: viz-bounce-check 2s infinite;
}

.play-btn {
    animation: viz-pulse-play 2s infinite;
    transform-origin: center;
}

.timeline-bar {
    animation: viz-scan-bar 3s linear infinite;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

@keyframes viz-pulse-node {
    0% { r: 4; opacity: 0.5; }
    100% { r: 5; opacity: 1; fill: #5cabff; }
}

@keyframes viz-fade-line {
    0% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

@keyframes viz-draw-line {
    0% { stroke-dashoffset: 20; opacity: 0; }
    20% { opacity: 1; }
    80% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes viz-bounce-check {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes viz-pulse-play {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes viz-scan-bar {
    0% { transform: translateX(-10px); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(50px); opacity: 0; }
}

/* Staggered Scroll Animations */
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(6) { transition-delay: 0.6s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(7) { transition-delay: 0.7s; }
.benefits-grid .benefit-card.fade-in-on-scroll:nth-child(8) { transition-delay: 0.8s; }

/* Ensure fade-in works */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Q&A Section Styling */
.qa-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 48px;
}

.qa-header {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none; /* Grid will have top border */
}

.qa-title-box {
    flex: 2;
    padding: 60px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.qa-title-box .section-title {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: left;
}

.qa-title-box .section-subtitle {
    font-size: 18px;
    text-align: left;
    max-width: 600px;
    margin: 0;
}

.qa-cta-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 115, 255, 0.05);
}

.qa-cta-link {
    color: #0073ff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.qa-cta-link:hover {
    gap: 16px;
    color: #3395ff;
}

/* Q&A Grid */
.qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.qa-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.qa-item.active {
    background: rgba(0, 115, 255, 0.05);
}

.qa-question {
    width: 100%;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.qa-item.active .qa-question {
    color: #0073ff;
}

.qa-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-icon::before,
.qa-icon::after {
    content: '';
    position: absolute;
    background-color: #0073ff;
    transition: transform 0.3s ease;
}

.qa-icon::before { width: 100%; height: 2px; }
.qa-icon::after { width: 2px; height: 100%; }

.qa-item.active .qa-icon::after {
    transform: rotate(90deg); /* Turns into a line to make minus? No, wait. */
    /* To make X: rotate both 45 and -45? Or to make minus: rotate one to match other? */
    /* Screenshot has + that turns to X probably. */
}

/* If we want + to x */
.qa-item.active .qa-icon {
    transform: rotate(45deg);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
}

.qa-item.active .qa-answer {
    max-height: 200px; /* Adjust if content is longer */
    padding-bottom: 32px;
}

.qa-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .qa-header { flex-direction: column; }
    .qa-title-box { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 40px 24px; }
    .qa-cta-box { padding: 32px; }
    .qa-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .qa-section { padding: 0 24px; margin: 80px auto; }
    .qa-question { padding: 24px; font-size: 16px; }
    .qa-answer { padding: 0 24px; }
    .qa-item.active .qa-answer { padding-bottom: 24px; }
}

/* Q&A Design Fixes */
.qa-section {
    padding: 0 60px; /* Match other sections */
}

.qa-title-box .section-title {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif; /* Explicitly set correct font */
    font-weight: 500;
    letter-spacing: -0.02em;
}

.qa-title-box .section-subtitle {
    font-family: 'Inter', sans-serif; /* Revert to standard clean font */
    color: rgba(255, 255, 255, 0.6);
}

.qa-question {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif; /* Match headers */
    font-size: 20px; /* Slightly larger */
    font-weight: 400; /* Lighter weight looks more premium */
    letter-spacing: -0.01em;
}

.qa-answer p {
    font-family: 'Inter', sans-serif; /* Standard readable font */
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Cleaner Borders & Backgrounds */
.qa-header, .qa-grid, .qa-item, .qa-title-box {
    border-color: rgba(255, 255, 255, 0.08) !important; /* Much subtler borders */
}

.qa-item {
    background: transparent !important; /* Remove dark background */
}

.qa-item:hover {
    background: rgba(255, 255, 255, 0.02) !important; /* Very subtle hover */
}

.qa-cta-box {
    background: transparent !important; /* Clean look */
}

.qa-cta-link {
    font-family: "DM Sans", sans-serif;
}

/* Fix Grid Borders */
.qa-grid {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.qa-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero Badge (Sora 2 Alert) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 16px 6px 6px;
    margin-bottom: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge-new {
    background: #0073ff;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 115, 255, 0.3);
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.badge-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease;
}

.hero-badge:hover .badge-arrow {
    transform: translateX(4px);
    color: white;
}

/* Use Cases Section */
.use-cases-section {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 48px;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 100px;
}

.use-case-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 160px;
}

.use-case-row.reverse {
    flex-direction: row-reverse;
}

.use-case-content {
    flex: 1;
}

.uc-badge {
    display: inline-block;
    background: rgba(0, 115, 255, 0.1);
    color: #0073ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.uc-title {
    font-family: "DM Sans", sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.uc-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.uc-list {
    list-style: none;
    padding: 0;
}

.uc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.uc-list i {
    color: #0073ff;
    font-size: 14px;
}

/* Visual Containers */
.use-case-visual-container {
    flex: 1;
    height: 400px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════
   VISUAL 1: RESEARCH — Typing + Cascade
   ═══════════════════════════════════════════ */
.uc-visual-search {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    position: relative;
}

.search-bar-mock {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'DM Sans', monospace;
    font-size: 14px;
    transition: border-color 0.4s ease;
}

.search-bar-mock:has(.typing-query.done) {
    border-color: rgba(0, 115, 255, 0.3);
}

.search-bar-mock i { color: rgba(255, 255, 255, 0.4); }

.typing-cursor {
    color: #0073ff;
    animation: uc-blink 0.8s step-end infinite;
    font-weight: 300;
}

.typing-query.done + .typing-cursor { display: none; }

@keyframes uc-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.filters-mock {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'DM Sans', monospace;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-tag.visible {
    opacity: 1;
    transform: translateY(0);
}

.filter-tag.highlight {
    background: rgba(0, 115, 255, 0.12);
    border-color: rgba(0, 115, 255, 0.3);
    color: #0073ff;
}

.results-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.result-card {
    display: flex;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-card.visible:hover {
    border-color: rgba(0, 115, 255, 0.2);
    background: rgba(0, 115, 255, 0.03);
}

.res-thumb {
    width: 64px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    flex-shrink: 0;
}

.res-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.res-line {
    height: 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.w-80 { width: 80%; }
.w-40 { width: 40%; }

.res-metric {
    flex-shrink: 0;
}

.metric-up {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    font-family: 'DM Sans', monospace;
}

.metric-up i { font-size: 10px; margin-right: 2px; }

/* Blue scanning line sweeps through results */
.scan-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0073ff, transparent);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.scan-sweep.active {
    animation: uc-scan-down 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes uc-scan-down {
    0%   { top: 0; opacity: 0; }
    10%  { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* ═══════════════════════════════════════════
   VISUAL 2: SORA — Generation Progress
   ═══════════════════════════════════════════ */
.uc-visual-sora {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Generation progress ring */
.gen-progress-ring {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Hide play button when ring is generating */
.sora-frame:has(.gen-progress-ring.active) .play-btn-centered {
    opacity: 0;
    pointer-events: none;
}

.gen-progress-ring svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-fill {
    transition: stroke-dashoffset 0.3s ease;
}

.ring-pct {
    font-size: 14px;
    font-weight: 600;
    color: white;
    font-family: 'DM Sans', monospace;
    z-index: 1;
}

.gen-progress-ring.active {
    opacity: 1;
}

/* When ring is active, swap Generate btn to spinner (ring is inside .sora-frame, card is sibling) */
.sora-frame:has(.gen-progress-ring.active) ~ .prompt-float-card .btn-label { display: none; }
.sora-frame:has(.gen-progress-ring.active) ~ .prompt-float-card .btn-spinner { display: inline-flex; }

.float-gen-btn .btn-spinner { display: none; color: white; }

/* Visual 3: Voice */
.uc-visual-voice {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.audio-track {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.track-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #22c55e;
    text-transform: uppercase;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: uc-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes uc-pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.track-file {
    font-family: 'DM Sans', monospace;
    color: rgba(255, 255, 255, 0.6);
}

.track-time {
    margin-left: auto;
    color: #0073ff;
    font-family: 'DM Sans', monospace;
    font-size: 12px;
}

.time-counter {
    color: white;
    font-weight: 500;
}

/* Live waveform */
.waveform-live {
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.wave-bars-live {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 4px;
}

.wave-playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: #0073ff;
    box-shadow: 0 0 8px rgba(0, 115, 255, 0.6);
    z-index: 1;
}

/* Script with active line highlight */
.script-preview {
    font-family: 'DM Sans', monospace;
    font-size: 13px;
    line-height: 1.8;
    padding-left: 14px;
    border-left: 2px solid rgba(0, 115, 255, 0.15);
    position: relative;
}

.script-line {
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.6s ease, transform 0.6s ease;
}

.script-line.sl-active {
    color: rgba(255, 255, 255, 0.95);
}

.script-line.sl-next {
    color: rgba(255, 255, 255, 0.4);
}

.script-line.sl-future {
    color: rgba(255, 255, 255, 0.2);
}

@keyframes wave-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .use-case-row, .use-case-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 100px;
    }
    
    .use-case-content {
        text-align: center;
    }
    
    .uc-list {
        display: inline-block;
        text-align: left;
    }
    
    .use-case-visual-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .use-cases-section { padding: 0 24px; margin: 100px auto; }
    .uc-title { font-size: 32px; }
    .use-case-visual-container { height: 300px; }
}

/* Typography Fixes & Standardization */
.use-cases-header .section-title,
.uc-title {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif !important;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.use-cases-header .section-subtitle,
.uc-desc {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif !important; /* Matched to Hero Subtitle */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Ensure Use Cases Header matches Why Choose Header exactly */
.use-cases-header .section-title {
    font-size: 48px;
    margin-bottom: 16px;
    color: white;
}

.use-cases-header .section-subtitle {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Update Use Case Row Titles to match feature cards */
.uc-title {
    font-size: 32px; /* Increased for better hierarchy */
    margin-bottom: 16px;
}

.uc-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Standard Blue Text */
.highlight-blue {
    font-family: inherit;
    color: #0073ff;
}

/* Animated Underline (Specific to Headlines) */
.highlight-animated {
    position: relative;
    display: inline-block;
    color: #0073ff;
    text-decoration: none;
}

.highlight-animated::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(90deg, #0073ff 50%, transparent 50%);
    background-size: 20px 3px;
    background-repeat: repeat-x;
    animation: dash-scroll 1s linear infinite;
}

@keyframes dash-scroll {
    0% { background-position: 0 0; }
    100% { background-position: -20px 0; }
}

/* Layered Workflow Visual */
.uc-visual-sora.layered-workflow {
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Morphing frame: landscape → portrait */
.sora-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.sora-frame.portrait-mode {
    left: calc(50% - 112px);
    right: calc(50% - 112px);
    top: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: 0 0 80px rgba(0, 115, 255, 0.15), 0 0 0 1px rgba(0, 115, 255, 0.1);
}

/* Video fills the frame — cover works perfectly once frame is portrait */
.sora-result-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s; /* slight delay so frame morphs first */
    pointer-events: none;
}

.sora-result-video.playing {
    opacity: 1;
}

.sora-bg-video {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.play-btn-centered {
    width: 56px;
    height: 56px;
    background: rgba(0, 115, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 115, 255, 0.15);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn-centered svg {
    margin-left: 3px;
}

.play-btn-centered:hover {
    background: rgba(0, 115, 255, 0.4);
    transform: scale(1.12);
    box-shadow: 0 0 60px rgba(0, 115, 255, 0.3);
}

/* Fake cursor */
.fake-cursor {
    position: absolute;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: top 0.8s cubic-bezier(0.4, 0, 0.2, 1), left 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.fake-cursor.clicking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(0);
    animation: cursor-click-ring 0.5s ease-out forwards;
}

@keyframes cursor-click-ring {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Floating Prompt Card */
.prompt-float-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
    z-index: 6;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.prompt-float-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 115, 255, 0.2);
}

.float-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.float-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.float-label i { color: #ffd700; }

.float-cost {
    font-size: 11px;
    color: #0073ff;
    font-weight: 600;
    background: rgba(0, 115, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.float-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 14px;
    font-family: 'DM Sans', sans-serif;
}

.float-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.float-refs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ref-label-mini {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
}

.ref-dot-img {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.float-gen-btn {
    background: #0073ff;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-gen-btn:hover {
    background: #1a80ff;
    box-shadow: 0 0 20px rgba(0, 115, 255, 0.3);
}

/* Trusted By Section */

/* Global Section Typography Enforcement */
.section-title {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif !important;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif !important; /* Consistent with Hero */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Redesigned Pricing Section */
.pricing-section {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 48px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Toggle Switch */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 24px;
    border-radius: 100px;
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active {
    color: white;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: rgba(0, 115, 255, 0.2);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 115, 255, 0.4);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.toggle-switch.annual::after {
    transform: translateX(20px);
}

.save-badge {
    font-size: 10px;
    background: #0073ff;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.pricing-card {
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 15, 20, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Popular Card Styles */
.pricing-card.popular {
    background: linear-gradient(145deg, rgba(0, 115, 255, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(0, 115, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 115, 255, 0.1);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 60px rgba(0, 115, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #0073ff;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 115, 255, 0.4);
}

/* Card Content */
.plan-name {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-weight: 500;
}

.pricing-card.popular .plan-name {
    color: #0073ff;
}

/* Override: Current plan should have white plan name */
.pricing-card.current-plan .plan-name {
    color: rgba(255, 255, 255, 0.95);
}

.plan-price {
    display: flex;
    align-items: baseline;
    font-family: "DM Sans", sans-serif;
    color: white;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 24px;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.plan-price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-left: 4px;
}

.plan-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 32px;
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-btn.primary {
    background: #0073ff;
    border-color: #0073ff;
    box-shadow: 0 4px 20px rgba(0, 115, 255, 0.3);
}

.plan-btn.primary:hover {
    background: #1a80ff;
    box-shadow: 0 4px 30px rgba(0, 115, 255, 0.5);
}

.plan-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    opacity: 0.7;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-btn:disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-list i {
    color: #0073ff;
    font-size: 12px;
}

.info-i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    cursor: help;
    position: relative;
}

.info-i[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.info-i[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-section { padding: 0 24px; margin: 100px auto; }
}

/* Fix Double Checkmarks */
.feature-list li::before {
    content: none !important;
    display: none !important;
}

/* Improved Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #0073ff, #00c6ff);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 15px rgba(0, 115, 255, 0.4),
        0 0 0 2px rgba(0, 0, 0, 0.8); /* Dark ring to separate from card border */
    z-index: 10;
    white-space: nowrap;
}

/* Ensure Popular Card has enough space at top */
.pricing-card.popular {
    margin-top: 0; /* Reset if needed */
    border-color: rgba(0, 115, 255, 0.4);
}

/* Final CTA & Footer Styles */
.footer-wrapper {
    margin-top: 160px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    /* Clean Blue Section Gradient */
    background: radial-gradient(ellipse at center, rgba(0, 70, 150, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
}

.final-cta::before {
    /* Optional: Enhance with a secondary glow for depth */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 115, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.final-title {
    font-family: "DM Sans", sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.final-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.final-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #0073ff, #00c6ff); /* Clean Blue Gradient */
    color: white;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 115, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for definition */
}

.final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 115, 255, 0.6);
    background: linear-gradient(90deg, #1a80ff, #33d0ff); /* Brighter on hover */
}

/* Main Footer */
.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 48px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    font-family: "DM Sans", sans-serif;
}

.footer-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.nav-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    font-family: "DM Sans", sans-serif;
}

.nav-col a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.nav-col a:hover {
    color: white;
}

.footer-bottom {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .final-title { font-size: 36px; }
    .footer-grid { flex-direction: column; gap: 48px; }
    .footer-nav { flex-wrap: wrap; gap: 40px; width: 100%; }
    .nav-col { flex: 1; min-width: 140px; }
    .main-footer { padding: 60px 24px 32px; }
}
