/* WaveSpeed.ai-inspired Homepage Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0d0a15;
    color: white;
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.sign-in-btn {
    padding: 10px 24px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.sign-in-btn:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.7);
    transform: translateY(-1px);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    box-shadow: inset 0 0 100px 50px rgba(0, 0, 0, 0.6);
}
.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

.hero-content-inner {
    background: rgba(13, 10, 21, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 50%;
    min-width: 400px;
    max-width: 600px;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 600px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 14px 32px;
    background: rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.6);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

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

/* About Section */
.about-section {
    background: #0d0a15;
    padding: 40px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

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

.signup-steps {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    position: relative;
    align-items: stretch;
    padding: 16px 0;
    justify-content: space-between;
}

.signup-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
    position: relative;
    z-index: 1;
    padding: 12px 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.signup-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.signup-step:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

.signup-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 5px);
    width: calc(10px);
    height: 2px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.5) 0%, rgba(20, 184, 166, 0.2) 100%);
    z-index: 0;
    transform: translateY(-50%);
}

.signup-step-active:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.9) 0%, rgba(20, 184, 166, 0.5) 100%);
    box-shadow: 0 0 8px rgba(20, 184, 166, 0.6);
    height: 3px;
}

.signup-step-active {
    border: 2px solid rgba(20, 184, 166, 0.5);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3), 0 0 40px rgba(20, 184, 166, 0.1);
}

.signup-step:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.6);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4), 0 0 60px rgba(20, 184, 166, 0.2);
}

.signup-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.8), 0 0 50px rgba(20, 184, 166, 0.6), 0 0 75px rgba(20, 184, 166, 0.4);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(20, 184, 166, 0.5);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.4), 0 0 24px rgba(20, 184, 166, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-number-active {
    border: 2px solid #14b8a6;
    box-shadow: 0 0 16px rgba(20, 184, 166, 0.9), 0 0 32px rgba(20, 184, 166, 0.6), 0 0 48px rgba(20, 184, 166, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
    transform: scale(1.05);
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.step-number-inactive {
    border: 2px solid rgba(20, 184, 166, 0.4);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(20, 184, 166, 0.8), 0 0 40px rgba(20, 184, 166, 0.5), 0 0 60px rgba(20, 184, 166, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(20, 184, 166, 1), 0 0 60px rgba(20, 184, 166, 0.7), 0 0 90px rgba(20, 184, 166, 0.5);
    }
}

.step-content {
    flex: 1;
    text-align: center;
    width: 100%;
}

.step-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.step-title-active {
    color: #14b8a6;
    text-shadow: 0 0 10px rgba(20, 184, 166, 0.8), 0 0 20px rgba(20, 184, 166, 0.5);
    font-weight: 700;
}

.step-title-inactive {
    color: rgba(255, 255, 255, 0.9);
}

.step-cta-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #39ff14;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.8), 0 0 16px rgba(57, 255, 20, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-cta-link:hover {
    color: #7fff00;
    text-shadow: 0 0 15px rgba(57, 255, 20, 1), 0 0 30px rgba(57, 255, 20, 0.8);
    transform: scale(1.05);
}

.step-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
}

.step-subtitle-inactive {
    color: rgba(255, 255, 255, 0.3);
}

.about-video {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding-bottom: 40px;
}

.home-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: none;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.9), inset 0 0 120px rgba(0, 0, 0, 0.7), inset 0 0 180px rgba(0, 0, 0, 0.5);
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Feature Highlights */
.feature-highlights-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 30px 24px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(124, 58, 237, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    border: none;
}

.feature-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 50%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.feature-highlights-section > * {
    position: relative;
    z-index: 1;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.feature-tile {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.15) 0%, rgba(20, 184, 166, 0.1) 30%, rgba(26, 26, 46, 0.25) 50%, rgba(20, 184, 166, 0.1) 70%, rgba(30, 58, 138, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-tile:hover::before {
    left: 100%;
}

.feature-tile:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 16px 48px rgba(102, 51, 153, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.25) 0%, rgba(20, 184, 166, 0.15) 30%, rgba(26, 26, 46, 0.35) 50%, rgba(20, 184, 166, 0.15) 70%, rgba(30, 58, 138, 0.25) 100%);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.4));
    transition: transform 0.3s;
}

.feature-tile:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.feature-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .feature-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-tile {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

.about-tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.tile-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.2) 0%, rgba(26, 26, 46, 0.3) 50%, rgba(30, 58, 138, 0.2) 100%);
    border: 2px dashed rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all 0.3s ease;
}

.tile-placeholder:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.3) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(30, 58, 138, 0.3) 100%);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .about-tiles {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Featured Models Section */
.featured-models {
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: white;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

.model-card {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.15) 0%, rgba(26, 26, 46, 0.25) 50%, rgba(30, 58, 138, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.model-card:hover::before {
    left: 100%;
}

.model-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 16px 48px rgba(102, 51, 153, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.25) 0%, rgba(26, 26, 46, 0.35) 50%, rgba(30, 58, 138, 0.25) 100%);
}

.model-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.model-card:hover .model-image {
    transform: scale(1.05);
}

.model-icon {
    display: none;
}

.model-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.model-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.model-price {
    font-size: 14px;
    color: rgba(102, 126, 234, 0.9);
    margin-top: 12px;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 60px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .sign-in-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .models-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .model-card {
        padding: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

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


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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0d0a15;
    color: white;
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.sign-in-btn {
    padding: 10px 24px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.sign-in-btn:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.7);
    transform: translateY(-1px);
}

.btn-primary {
    padding: 14px 32px;
    background: rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.6);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

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

/* Featured Models Section */
.featured-models {
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: white;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

.model-card {
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.15) 0%, rgba(26, 26, 46, 0.25) 50%, rgba(30, 58, 138, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.model-card:hover::before {
    left: 100%;
}

.model-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 16px 48px rgba(102, 51, 153, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.25) 0%, rgba(26, 26, 46, 0.35) 50%, rgba(30, 58, 138, 0.25) 100%);
}

.model-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.model-card:hover .model-image {
    transform: scale(1.05);
}

.model-icon {
    display: none;
}

.model-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.model-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.model-price {
    font-size: 14px;
    color: rgba(102, 126, 234, 0.9);
    margin-top: 12px;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 60px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .sign-in-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .models-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .model-card {
        padding: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

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


/* Example Videos Hero Section */
.example-videos-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.98) 0%, rgba(30, 20, 60, 0.98) 50%, rgba(26, 15, 46, 0.98) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.example-videos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.example-videos-hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.example-videos-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.example-videos-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin: 0;
}

.example-video-hero-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.example-video-hero-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.example-video-hero-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.example-video-hero-item:hover::before {
    opacity: 1;
}

.example-video-hero-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.example-video-hero-item:hover video {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .example-videos-hero {
        padding: 80px 0;
    }
    
    .example-videos-hero-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .example-videos-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .example-video-hero-item {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .example-videos-hero {
        padding: 60px 0;
    }
    
    .example-videos-hero-content {
        padding: 0 16px;
    }
    
    .example-videos-hero-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .example-videos-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .example-video-hero-item {
        aspect-ratio: 16/9;
        border-radius: 12px;
    }
}

/* Matrix Workflows Hero Section */
.matrix-workflows-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 24px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(30, 58, 138, 0.95) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(168, 85, 247, 0.8);
}

.matrix-workflows-hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.matrix-workflows-hero-text {
    z-index: 2;
}

.matrix-workflows-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.matrix-workflows-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.matrix-workflows-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.matrix-workflows-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Integrated Feature Tiles Section */
.matrix-workflows-features {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.matrix-workflows-features .feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    padding: 0;
}

/* Integrated Videos Section */
.matrix-workflows-videos {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 30px 24px;
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.98) 0%, rgba(50, 25, 60, 0.98) 50%, rgba(35, 15, 50, 0.98) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(168, 85, 247, 0.8);
    box-shadow: 0 -4px 20px rgba(168, 85, 247, 0.4), 0 -2px 10px rgba(139, 92, 246, 0.3);
}

.matrix-workflows-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.matrix-workflows-videos-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.matrix-workflows-videos-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.matrix-workflows-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.matrix-workflows-video-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.matrix-workflows-video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.matrix-workflows-video-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.matrix-workflows-video-item:hover::before {
    opacity: 1;
}

.matrix-workflows-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-workflows-video-item:hover video {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .matrix-workflows-hero {
        padding: 60px 24px 80px;
    }
    
    .matrix-workflows-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .matrix-workflows-hero-title {
        font-size: 32px;
    }
    
    .matrix-workflows-hero-description {
        font-size: 16px;
    }
    
    .matrix-workflows-features {
        padding-top: 40px;
    }
    
    .matrix-workflows-features .feature-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .matrix-workflows-videos {
        padding: 24px 16px;
    }
    
    .matrix-workflows-videos-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .matrix-workflows-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .matrix-workflows-features .feature-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .matrix-workflows-videos {
        padding: 20px 16px;
    }
    
    .matrix-workflows-videos-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .matrix-workflows-videos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .matrix-workflows-video-item {
        border-radius: 12px;
    }
}

/* Wait List CTA Section */
.waitlist-cta {
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waitlist-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    z-index: 0;
}

.waitlist-cta > * {
    position: relative;
    z-index: 1;
}

.waitlist-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.waitlist-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.waitlist-cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.waitlist-cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.15) 0%, rgba(26, 26, 46, 0.25) 50%, rgba(30, 58, 138, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(20, 184, 166, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(20, 184, 166, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.waitlist-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.waitlist-cta-button:hover::before {
    left: 100%;
}

.waitlist-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(20, 184, 166, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 30px rgba(20, 184, 166, 0.5);
    border-color: rgba(20, 184, 166, 0.6);
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.25) 0%, rgba(26, 26, 46, 0.35) 50%, rgba(30, 58, 138, 0.25) 100%);
}

/* Waitlist Popup */
.waitlist-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.waitlist-popup {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(20, 184, 166, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.waitlist-popup-overlay.active .waitlist-popup {
    transform: scale(1);
}

.waitlist-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.waitlist-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.waitlist-popup-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-align: center;
}

.waitlist-popup-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
}

.waitlist-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waitlist-popup-input {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.waitlist-popup-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-popup-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.waitlist-popup-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid #14b8a6;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
    transition: all 0.3s ease;
}

.waitlist-popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.7);
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.waitlist-popup-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.waitlist-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
}

.waitlist-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #14b8a6;
}

.waitlist-message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
}

.waitlist-message.success {
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.5);
    color: #14b8a6;
}

.waitlist-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

.waitlist-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.waitlist-next-steps {
    margin: 32px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.waitlist-next-steps-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.waitlist-steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.waitlist-steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.waitlist-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.waitlist-steps-list li strong {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.waitlist-steps-list li span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.waitlist-steps-list li:last-child {
    margin-bottom: 0;
}

.waitlist-id-verification-section {
    margin: 32px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.waitlist-verification-title {
    font-size: 22px;
    font-weight: 600;
    color: #14b8a6;
    margin-bottom: 16px;
    text-align: center;
}

.waitlist-verification-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.waitlist-terms-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.waitlist-terms-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    font-weight: 600;
}

.waitlist-terms-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.waitlist-terms-list li {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.waitlist-terms-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #ffc107;
    font-weight: bold;
    font-size: 18px;
}

.waitlist-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.waitlist-verify-button {
    text-align: center;
    text-decoration: none;
    display: block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(20, 184, 166, 0.8), 0 0 40px rgba(20, 184, 166, 0.4);
    }
}

.waitlist-complete-later-btn {
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-complete-later-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}










































