
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');


.hero-particles {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    padding-top: 100px;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo-badge {
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease both;
}

.hero-main-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-main-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-main-subtitle .highlight-text {
    color: #ffffff;
    font-weight: 500;
}


.rotating-text {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    min-width: 320px;
    text-align: left;
}

@media (max-width: 768px) {
    .rotating-text {
        min-width: 240px;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.hero-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-btn-primary i {
    font-size: 0.9rem;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.hero-stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-hint-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 50px; }
    50% { opacity: 0.8; height: 60px; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-particles {
        padding-top: 120px;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats-row {
        gap: 1.5rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat-value {
        font-size: 1.3rem;
    }
}


.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.btn-cosmic-primary {
    position: relative;
    padding: 1.2rem 3rem;
    background: white;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-cosmic-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(255, 255, 255, 0.4);
}

.btn-cosmic-primary.large {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.6s;
}

.btn-cosmic-primary:hover .btn-shine {
    left: 100%;
}

.btn-cosmic-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn-cosmic-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.btn-cosmic-secondary.large {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.metric-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-unit {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover .metric-glow {
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}



.demo-galaxy-section {
    position: relative;
    padding: 5rem 0;
    background: #000000;
    overflow: hidden;
}

.galaxy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.section-cosmic-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 100;
}

.cosmic-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cosmic-label::before {
    display: none;
}

.section-cosmic-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-cosmic-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.demo-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1400px) {
    .demo-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .demo-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .demo-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.captcha-demo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.captcha-demo-card::before {
    display: none;
}

.captcha-demo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.demo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.demo-type-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recaptcha-badge {
    background: rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.3);
    color: #4285f4;
}

.hcaptcha-badge {
    background: rgba(0, 131, 143, 0.15);
    border-color: rgba(0, 131, 143, 0.3);
    color: #00838f;
}

.cloudflare-badge {
    background: rgba(243, 128, 32, 0.15);
    border-color: rgba(243, 128, 32, 0.3);
    color: #f38020;
}

.funcaptcha-badge {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

.geetest-badge {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.awswaf-badge {
    background: rgba(255, 153, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
    color: #ff9900;
}

.tiktok-badge {
    background: rgba(255, 0, 80, 0.15);
    border-color: rgba(255, 0, 80, 0.3);
    color: #ff0050;
}

.imagetext-badge {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.status-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.demo-card-body {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    z-index: 1;
}

.captcha-challenge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-align: center;
}

.captcha-grid-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    width: 100%;
    max-width: 200px;
}

.grid-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.grid-item.selected {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.grid-item.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: bold;
}

.ai-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scanner-beam {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    animation: scanBeam 3s ease-in-out infinite;
}

@keyframes scanBeam {
    0%, 100% { top: 0; opacity: 0; }
    50% { top: 100%; opacity: 1; }
}

.demo-progress {
    margin-bottom: 1rem;
}

.progress-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #22c55e;
    width: 0;
    animation: progressFill 3s ease-in-out forwards;
}

@keyframes progressFill {
    to { width: 100%; }
}

.demo-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #22c55e;
    opacity: 0;
    animation: fadeIn 0.5s ease 3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.demo-result i {
    font-size: 1rem;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: white;
    transform: translateY(-3px);
}

.feature-badge i {
    font-size: 1.2rem;
}



.integration-constellation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.integration-star-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.integration-star-card::before {
    display: none;
}

.integration-star-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.integration-star-card.featured {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.featured-cosmic-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-cosmic-glow {
    display: none;
}

.card-icon-cosmic {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-star-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.integration-star-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.cosmic-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.cosmic-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.cosmic-features i {
    color: #22c55e;
    font-size: 0.7rem;
}


.pricing-galaxy-section {
    position: relative;
    padding: 5rem 0;
    background: #000000;
    overflow: hidden;
}

.pricing-nebula {
    display: none;
}

.pricing-galaxy-section::before {
    display: none;
}

.pricing-galaxy-section::after {
    display: none;
}

.pricing-universe-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.universe-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.universe-tab::before {
    display: none;
}

.universe-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.universe-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.universe-tab.active .tab-icon {
    background: transparent;
    color: #ffffff;
}

.tab-content {
    text-align: left;
}

.tab-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
}

.tab-subtitle {
    display: none;
}

.pricing-cosmos-content {
    position: relative;
    z-index: 100;
}

.pricing-universe-panel {
    display: none;
}

.pricing-universe-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.cosmic-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cosmic-table-wrapper::before {
    display: none;
}

.cosmic-table-wrapper::after {
    display: none;
}

.cosmic-pricing-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.cosmic-pricing-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.cosmic-pricing-table th {
    padding: 1rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cosmic-pricing-table th:first-child {
    text-align: left;
}

.cosmic-pricing-table th:nth-child(2) {
    text-align: left;
}

.cosmic-pricing-table th:last-child {
    text-align: right;
}

.cosmic-pricing-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cosmic-pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.cosmic-pricing-table tbody tr.highlighted-row {
    background: rgba(34, 197, 94, 0.05);
    border-left: 2px solid #22c55e;
}

.cosmic-pricing-table td {
    padding: 0.875rem 1.5rem;
}

.cosmic-pricing-table td:first-child {
    text-align: left;
}

.cosmic-pricing-table td:nth-child(2) {
    text-align: left;
    vertical-align: middle;
}

.cosmic-pricing-table td:last-child {
    text-align: right;
}

.captcha-name {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.captcha-name i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    flex-shrink: 0;
}

.captcha-name .captcha-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
}

.cosmic-pricing-table tbody tr:hover .captcha-name i {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.cosmic-pricing-table tbody tr:hover .captcha-name .captcha-logo {
    background: rgba(255, 255, 255, 0.08);
}

.special-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
}

.price-cosmic {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.pricing-cosmic-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.pricing-cosmic-cta::before {
    display: none;
}

.pricing-cosmic-cta p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-cosmic-cta .btn-cosmic-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 8px;
}


.faq-galaxy-section {
    position: relative;
    padding: 5rem 0;
    background: #000000;
    overflow: hidden;
}

.faq-cosmic-bg {
    display: none;
}

.faq-cosmic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-cosmic-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-cosmic-item {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-cosmic-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.faq-cosmic-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cosmic-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-text {
    flex: 1;
}

.faq-toggle-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #000000;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-cosmic-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-cosmic-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-cosmic-item.active .faq-cosmic-answer {
    max-height: 500px;
}

.faq-cosmic-answer p {
    padding: 0 2.5rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}


.cta-galaxy-section {
    position: relative;
    padding: 6rem 0;
    min-height: 450px;
    background: #000000;
    overflow: hidden;
}

#ctaParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-cosmic-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-cosmic-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cta-cosmic-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-cosmic-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-cosmic-actions .btn-cosmic-primary,
.cta-cosmic-actions .btn-cosmic-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
}


@media (max-width: 768px) {
    .galaxy-hero {
        padding-top: 120px;
    }
    
    .cosmic-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .demo-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-stats-bar {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    
    .pricing-universe-tabs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .universe-tab {
        width: 100%;
        justify-content: center;
    }
    
    .cosmic-table-wrapper {
        padding: 1.5rem;
        overflow-x: auto;
    }
    
    .cosmic-pricing-table {
        min-width: 600px;
    }
    
    .cosmic-pricing-table th,
    .cosmic-pricing-table td {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .captcha-name {
        font-size: 0.85rem;
    }
    
    .captcha-name i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .price-cosmic {
        font-size: 1.3rem;
    }
    
    .faq-cosmic-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-cosmic-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cosmic-title {
        font-size: 2.5rem;
    }
    
    .btn-cosmic-primary,
    .btn-cosmic-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .section-cosmic-title {
        font-size: 2rem;
    }
}


.cloudflare-body {
    min-height: 280px;
}

.cloudflare-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-duration: 1s;
    border-top-color: rgba(255, 255, 255, 0.7);
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-duration: 0.7s;
    border-top-color: rgba(255, 255, 255, 0.4);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cloudflare-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.cloudflare-progress-dots {
    display: flex;
    gap: 0.5rem;
}

.cloudflare-progress-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.cloudflare-progress-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.cloudflare-progress-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}


.funcaptcha-puzzle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 200px;
}

.puzzle-piece {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.puzzle-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(255, 255, 255, 0.7);
}

.puzzle-piece.solved {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}


.demo-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    display: none;
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}


.geetest-badge {
    background: linear-gradient(135deg, #00c9a7, #00b894);
    color: white;
}

.geetest-slider {
    width: 100%;
    max-width: 280px;
    position: relative;
}

.slider-track {
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.slider-puzzle-piece {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: left 0.3s ease;
}

.slider-button {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 40px;
    background: white;
    color: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: left 1.5s ease;
}

.geetest-slider.solving .slider-button {
    left: calc(100% - 55px);
}

.geetest-slider.solving .slider-puzzle-piece {
    left: calc(100% - 50px);
}


.awswaf-badge {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white;
}

.aws-challenge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.aws-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.1);
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 50%;
    font-size: 2.5rem;
    color: #ff9900;
    animation: awsPulse 2s ease-in-out infinite;
}

@keyframes awsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.aws-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.aws-progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.aws-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9900, #ff6600);
    width: 0;
    animation: awsProgress 2s ease-in-out infinite;
}

@keyframes awsProgress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}


.tiktok-badge {
    background: linear-gradient(135deg, #fe2c55, #000000);
    color: white;
}

.tiktok-puzzle {
    width: 100%;
    max-width: 280px;
    position: relative;
}

.tiktok-puzzle-bg {
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.tiktok-puzzle-hole {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.tiktok-puzzle-piece {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(254, 44, 85, 0.3);
    border: 2px solid rgba(254, 44, 85, 0.6);
    border-radius: 8px;
    transition: left 1.5s ease;
}

.tiktok-puzzle.solving .tiktok-puzzle-piece {
    left: calc(100% - 90px);
}


.imagetext-badge {
    background: white;
    color: #000000;
}

.imagetext-display {
    width: 100%;
    max-width: 250px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.distorted-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 8px;
    transform: skewX(-5deg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.noise-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
    background-size: 20px 20px;
    z-index: 1;
}

.imagetext-input {
    width: 100%;
    max-width: 250px;
}

.input-box {
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.input-box::after {
    content: 'A7K9X2';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.imagetext-input.filled .input-box::after {
    opacity: 1;
}


.extension-galaxy-section {
    position: relative;
    padding: 5rem 0;
    background: #000000;
    overflow: hidden;
}

.extension-cosmic-bg {
    display: none;
}

.extension-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.extension-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.extension-hero-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.extension-glow-effect {
    display: none;
}

.extension-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.extension-main-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-ring,
.icon-ring-2 {
    display: none;
}

.extension-main-icon i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
}

.extension-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.extension-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.extension-live-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.live-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon-mini {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #000000;
    border-radius: 12px;
    font-size: 1.2rem;
}

.stat-info {
    text-align: left;
}

.stat-value-live {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label-mini {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.stat-divider-mini {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.extension-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.status-dot-pulse {
    width: 10px;
    height: 10px;
    background: #27c93f;
    border-radius: 50%;
    animation: dotPulseAnim 2s ease-in-out infinite;
    box-shadow: 0 0 10px #27c93f;
}

@keyframes dotPulseAnim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.extension-supported-tools {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tool-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.tool-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tool-badge i {
    font-size: 1rem;
}

.extension-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extension-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.extension-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.extension-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    gap: 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.extension-cta-box::before {
    display: none;
}

.cta-content-box {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-content-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.cta-content-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.cta-buttons-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.cta-buttons-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.cta-buttons-row a {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cta-buttons-row a {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}


@media (max-width: 968px) {
    .extension-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .extension-cta-box {
        flex-direction: column;
        text-align: center;
    }
}


.btn-chrome-add {
    display: none;
}

.cta-buttons-box {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons-row {
    display: flex;
    gap: 0.75rem;
}

.cta-buttons-box .btn-cosmic-primary,
.cta-buttons-box .btn-cosmic-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 8px;
}


@media (max-width: 640px) {
    .cta-buttons-box {
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cta-buttons-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .cta-buttons-row a {
        min-width: 0;
        max-width: none;
        width: 100%;
        justify-content: center;
    }
}


.extension-key-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.key-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.key-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.key-feature-item i {
    color: #22c55e;
    font-size: 0.8rem;
}


.extension-quick-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num-big {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text-small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.mission-statement-section {
    position: relative;
    padding: 3rem 0;
    background: #000000;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-cosmic-bg {
    display: none;
}

.mission-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.mission-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-static-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.2;
}

.mission-animated-text {
    position: relative;
    display: inline-block;
    min-width: 200px;
    height: clamp(2rem, 4vw, 3rem);
}

.mission-word {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    white-space: nowrap;
}

.mission-word.active {
    animation: wordAppear 4s ease-in-out;
}

@keyframes wordAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.mission-cursor {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: white;
    animation: cursorBlink 1s infinite;
    margin-left: 0.25rem;
}

@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .mission-statement-section {
        padding: 3rem 0;
    }
    
    .mission-text-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mission-animated-text {
        min-width: 200px;
        height: clamp(2rem, 5vw, 3rem);
    }
}


.ai-research-section {
    position: relative;
    padding: 5rem 0;
    background: #000000;
    overflow: hidden;
}

.research-cosmic-bg {
    display: none;
}

.research-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.research-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.research-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.research-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.research-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.research-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.legal-notice-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    position: relative;
    z-index: 10;
}

.notice-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notice-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.notice-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
    .research-content-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        margin: 0 auto;
    }
}



.cta-galaxy-section {
    position: relative;
    padding: 5rem 0;
    background: #000000;
    overflow: hidden;
    min-height: 400px;
}

#ctaParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-cosmic-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-cosmic-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cta-cosmic-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-cosmic-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-cosmic-actions .btn-cosmic-primary,
.cta-cosmic-actions .btn-cosmic-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
}


.faq-toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-cosmic-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.15);
}

.faq-cosmic-answer p {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .faq-cosmic-grid {
        grid-template-columns: 1fr;
    }
    
    .research-content-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-cosmic-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-cosmic-content {
        padding: 2rem 1.5rem;
    }
}
