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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight-text {
    background: linear-gradient(135deg, #0066cc 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.with-text {
    background: linear-gradient(135deg, #ffffff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specialized-ai-text {
    background: linear-gradient(135deg, #0066cc 0%, #0ea5e9 30%, #6366f1 70%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 3rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;

}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 140px;
}

/* Navigation Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0, 170, 255, 0.4));
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

.nav-brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Hero Logo */
.hero-logo {
    margin: 0.5rem 0 2rem 0;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    position: relative;
}

.hero-logo-img {
    height: 360px;
    width: auto;
    filter: drop-shadow(0 0 60px rgba(0, 170, 255, 0.6)) drop-shadow(0 0 30px rgba(0, 170, 255, 0.4)) drop-shadow(0 0 15px rgba(0, 170, 255, 0.3));
    max-width: 90vw;
    max-height: 40vh;
    transition: filter 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #0066cc;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 2rem 60px;
    background: #000000;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}







.hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin: 0.5rem 0 1.5rem 0;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    position: relative;
}

.hero-logo-img {
    height: 360px !important;
    width: auto;
    filter: drop-shadow(0 0 100px rgba(0, 170, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 170, 255, 0.6)) drop-shadow(0 0 30px rgba(0, 170, 255, 0.4)) drop-shadow(0 0 15px rgba(0, 170, 255, 0.2));
    max-width: 90vw;
    max-height: 40vh;
    transition: filter 0.3s ease;
}

/* Removed cheesy floating animation - now clean and professional */

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-main {
    display: block;
    color: #ffffff;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #0066cc 0%, #0ea5e9 30%, #6366f1 70%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 102, 204, 0.5);
}

@keyframes titleShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.about-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.about-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.3));
}

/* Email Form */
.waitlist-form {
    max-width: 550px;
    margin: 0 auto;
}

.email-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 0;
    max-width: 100%;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.premium-input {
    padding: 1.25rem 1.75rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 102, 204, 0.3);
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: #888888;
}

.email-input:focus {
    border-color: #0066cc;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.premium-input:focus {
    border-color: #0066cc;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.3), 0 4px 20px rgba(0, 102, 204, 0.2);
    transform: translateY(-1px);
}

.join-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #0088cc 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.premium-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #0066cc 0%, #0ea5e9 50%, #6366f1 100%);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0 10px 10px 0;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0c7db8 50%, #4f46e5 100%);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.6);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.premium-btn:hover .btn-arrow {
    transform: translateX(3px);
}

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

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}

.value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.value-prop {
    font-size: 0.85rem;
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.2);
    white-space: nowrap;
}

.form-disclaimer {
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.form-success {
    color: #0066cc;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

/* Coming Soon Section */
.coming-soon {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(0, 170, 255, 0.05) 0%, transparent 50%),
        rgba(255, 255, 255, 0.02);
    position: relative;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.roadmap-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 170, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
}

.roadmap-item.active {
    border-color: #0066cc;
    background: rgba(0, 170, 255, 0.1);
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.roadmap-item.active .roadmap-marker {
    background: rgba(0, 170, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
}

.marker-inner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0066cc;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.roadmap-content {
    text-align: center;
}

.roadmap-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0066cc;
    background: rgba(0, 170, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.roadmap-content h4 {
    color: #0066cc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.roadmap-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-content h3 {
    font-family: 'JetBrains Mono', monospace;
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* About Page Styles */
html, body {
    height: auto !important;
    max-height: none !important;
    overflow-y: visible !important;
}

main {
    overflow: visible !important;
    height: auto !important;
}

.about-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.content-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 170, 255, 0.3);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.card-text {
    color: #d0d0d0;
    line-height: 1.7;
}

.founder-story {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.01);
}

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

.founder-text p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.values {
    padding: 5rem 0 15rem 0;
    min-height: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 170, 255, 0.3);
}

.value-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    text-align: center;
}

.contact-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-input, .contact-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-input::placeholder, .contact-textarea::placeholder {
    color: #888;
}

.contact-input:focus, .contact-textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn {
    background: linear-gradient(135deg, #0066cc 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0099ff 0%, #0055bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}

.contact-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 0 1rem;
    }
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer p {
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-logo-img {
        height: 250px;
    }
    
    .hero {
        padding: 100px 1rem 40px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .waitlist-form {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about-logo-img {
        height: 60px;
    }
    
    .value-props {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .roadmap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-input,
    .premium-input {
        border-radius: 10px;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .join-btn,
    .premium-btn {
        border-radius: 10px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .email-input {
        border-radius: 8px;
    }
    
    .join-btn {
        border-radius: 8px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-logo-img {
        height: 180px;
    }
    
    .about-logo-img {
        height: 50px;
    }
    
    .content-card {
        padding: 1.5rem;
    }
}

/* Loading and Interaction States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance Optimizations */
.nav-logo img,
.logo-img {
    will-change: transform;
}

.join-btn,
.nav-link,
.timeline-marker {
    will-change: transform;
}

/* Success Page Styles */
.success-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-hero {
    text-align: center;
    padding: 80px 0;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    color: #0066cc;
    margin-bottom: 30px;
}

.success-icon svg {
    width: 80px;
    height: 80px;
}

.success-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0066cc 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #0066cc;
    color: white;
}

@media (max-width: 768px) {
    .success-title {
        font-size: 2.5rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}

/* Products Page */
.products-page {
    padding: 180px 0 100px;
    background: #000000;
    min-height: calc(100vh - 80px);
}

/* Contact Page */
.contact-page {
    padding: 180px 0 100px;
    background: #000000;
    min-height: calc(100vh - 80px);
}

.products-single {
    max-width: 600px;
    margin: 0 auto;
}

.product-card-featured {
    max-width: 100%;
}

.product-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.product-card-live {
    border: 1px solid rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(15, 15, 15, 0.8) 100%);
}

.product-card-live:hover {
    border-color: rgba(0, 102, 204, 0.5);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}

.product-card-upcoming {
    opacity: 0.8;
}

.product-status {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-live {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 170, 255, 0.1) 100%);
    color: #00aaff;
    border: 1px solid rgba(0, 170, 255, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00aaff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.6);
}

.status-upcoming {
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 170, 255, 0.05) 100%);
    border-radius: 12px;
    color: #0066cc;
}

.product-icon-placeholder {
    background: rgba(255, 255, 255, 0.03);
    color: #666;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: #0066cc;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-card-upcoming .product-tagline {
    color: #666;
}

.product-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.85rem;
    color: #999;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-cta:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.product-cta svg {
    transition: transform 0.3s ease;
}

.product-cta:hover svg {
    transform: translateX(4px);
}

.product-coming-soon {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.product-coming-soon span {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.products-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-footer p {
    color: #999;
    font-size: 1rem;
}

/* Responsive Design for Products */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
}