body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--background);
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    mix-blend-mode: screen;
}

main {
    flex: 1;
    position: relative;
    z-index: 1;
}

main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, var(--primary-dark) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, var(--primary-dark) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, var(--background) 0%, var(--background) 100%);
    opacity: 0.7;
    z-index: -2;
}

main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237C3AED' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}

/* Full width layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
    padding: 2rem 0;
    margin: 0;
    min-height: 600px;
}

.products-grid .container {
    max-width: none;
    padding: 0;
}

.product-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 450px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.card-arrow {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.product-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Remove any text decoration from links */
.product-card *,
.minimal-footer a {
    text-decoration: none;
}

/* Remove the primary button styles since we're not using them anymore */
.primary-button {
    display: none;
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Label section */
.product-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 40px;
    margin-bottom: 2rem;
}

.product-label i {
    font-size: 1.1em;
    opacity: 0.8;
}

.product-card:hover .product-label {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Logo/Title section */
.product-icon-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.05);
}

.amionai-logo {
    height: 60px;
}

.mindshare-logo {
    height: 80px;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(135deg, var(--text) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summit-title {
    font-size: 1.75rem;
    white-space: nowrap;
}

/* Description section */
.product-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* CTA section */
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    height: 60px;
}

.primary-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.3);
}

.summit-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.summit-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.summit-logo .product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, var(--text) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Minimal footer */
.minimal-footer {
    padding: 1.5rem 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.minimal-footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.minimal-footer .footer-logo {
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
}

.minimal-footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.minimal-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.minimal-footer-links a:hover {
    color: var(--text);
}

.minimal-footer .social-link {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.minimal-footer .social-link:hover {
    color: var(--text);
}

.minimal-footer .social-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        height: auto;
        padding: 2rem 0;
    }
    
    .product-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 3rem 2rem;
    }
    
    .product-card:last-child {
        border-bottom: none;
    }
    
    .minimal-footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .minimal-footer-left {
        flex-direction: column;
        gap: 1rem;
    }
    
    .minimal-footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .product-card {
        height: auto;
        min-height: 450px;
    }

    .product-subtitle {
        height: auto;
        min-height: 120px;
    }
} 