/* 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.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
}

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

/* 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;
}

.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;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 14px 32px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-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: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    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;
    cursor: pointer;
}

.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: 12px;
        padding: 12px 20px;
        width: calc(100% - 24px);
    }

    .nav-container {
        padding: 0;
    }

    .nav-links {
        display: none;
    }

    .get-started-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* 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-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    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;
    padding: 0 48px;
    perspective: 1500px;
    perspective-origin: center 200px;
}

.dashboard-image-wrapper {
    width: 100%;
    max-width: 1600px;
    position: relative;
    transform: 
        rotateX(25deg)
        rotateY(0)
        translateY(-40px)
        translateZ(-100px)
        scale(1.05);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        /* Bevel effect */
        inset 0 2px 2px rgba(255, 255, 255, 0.15),
        inset 0 -2px 2px rgba(0, 0, 0, 0.25),
        /* Base shadow */
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 40px 80px -20px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    position: relative;
    display: block;
}

.dashboard-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    top: 0;
    background: rgb(0, 115, 255);
    opacity: 0.2;
    filter: blur(40px);
    transform-origin: top;
    transform: translateY(-40px);
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.dashboard-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
    z-index: 2;
}

.dashboard-image-wrapper:hover {
    transform: 
        rotateX(20deg)
        rotateY(0)
        translateY(-60px)
        translateZ(-50px)
        scale(1.08);
}

@media (max-width: 768px) {
    .dashboard-preview {
        perspective: none;
    }
    
    .dashboard-image-wrapper, .dashboard-image-wrapper:hover {
        transform: 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);
    }

    .dashboard-image-wrapper::before {
        display: none;
    }
}

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

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

    .dashboard-image {
        max-width: 85%;
    }
}

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

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

    .dashboard-image {
        max-width: 90%;
    }
}

@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: 100px 24px 40px;
    }

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

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

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

    .hero-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

/* 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(255, 255, 255, 0.02);
    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.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    position: relative;
    width: 100%;
}

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

.pricing-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);
}

/* Top gradient highlight */
.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.08) 0%,
        rgba(255, 255, 255, 0.04) 40%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Bottom gradient highlight */
.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.06) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        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;
}

.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;
}

/* Update pricing toggle to show annual by default */
.toggle-switch {
    background: rgba(0, 115, 255, 0.2);
}

.toggle-switch::before {
    left: 26px;
    background: rgb(0, 115, 255);
}

.toggle-option:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.toggle-option:last-child {
    color: white;
}

.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;
}

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

.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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-left: 8px;
    cursor: help;
    transition: all 0.2s ease;
}

.info-tooltip:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing toggle styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-option {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

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

.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.toggle-switch.annual::before {
    left: 26px;
    background: rgb(0, 115, 255);
}

.toggle-switch.annual {
    background: rgba(0, 115, 255, 0.2);
}

.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;
    }
}
