/* Cyclopes Page Specific Styles */

.cyclopes-page {
    background-color: var(--section-dark);
}

/* Hero Section */
.cyclopes-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 0 100px;
    background-color: var(--section-dark);
    overflow: visible;
    margin-top: 80px;
    padding-top: 40px;
    min-height: 600px;
}

.cyclopes-hero .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.cyclopes-hero .page-title {
    font-family: var(--font-inter);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-teal);
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    letter-spacing: 2px;
}

.network-graphic {
    position: absolute;
    opacity: 0.6;
    pointer-events: none;
}

.network-left {
    left: 0;
    top: 10%;
    width: 532px;
    height: auto;
}

.network-right {
    right: 0;
    bottom: 10%;
    width: 483px;
    height: auto;
}

.hero-card {
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: var(--light-beige);
    border-radius: 50px;
    border: 1px solid var(--text-gray);
    border-right: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    min-height: 350px;
    max-height: 400px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    padding: 0;
    justify-self: center;
}

.hero-card-content {
    padding: 36px 40px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 36px;
}

.hero-card-content h1 {
    font-family: var(--font-inter);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.hero-card-content p {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 27px;
    margin: 0;
}

.hero-card-content .btn-primary {
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 100px;
    margin-bottom: 28px;
    display: inline-block;
    text-decoration: none;
}

.hero-card-content .btn-primary:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    
}

.hero-card-visual {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: brightness(1.1) contrast(1.1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Cyclopes Description Section */
.cyclopes-description {
    background-color: var(--section-dark);
    padding: 30px 0 60px;
}

.cyclopes-title {
    font-family: var(--font-inter);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-teal);
    text-align: center;
    margin-bottom: 40px;
}

.cyclopes-text {
    font-family: var(--font-inter);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 28.8px;
    letter-spacing: -0.48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Features Section */
.cyclopes-features {
    background-color: var(--section-dark);
    padding: 80px 0;
}

.features-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--light-beige);
    padding: 40px 32px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-inter);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.24px;
}

.feature-card p {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 24px;
    margin: 0;
}

/* Use Cases Section */
.use-cases {
    background-color: var(--section-dark);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.use-cases-title {
    font-family: var(--font-inter);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 60px;
}

.use-cases-grid {
    position: relative;
    min-height: 600px;
}

.use-case-card {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 32px;
    max-width: 380px;
    position: absolute;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.use-case-1 {
    top: 0;
    left: 0;
}

.use-case-2 {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.use-case-card:hover.use-case-2 {
    transform: translateX(-50%) translateY(-5px);
}

.use-case-3 {
    top: 300px;
    left: 0;
}

.use-case-card h3 {
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 24px;
}

.use-case-card p {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 24px;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 1600px) {
    .hero-card {
        max-width: 1400px;
        min-height: 400px;
        max-height: 450px;
    }
    
    .hero-card-content h1 {
        font-size: 52px;
    }
    
    .hero-card-content p {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .features-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .network-left,
    .network-right {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-card-content {
        padding: 40px 30px;
    }
    
    .hero-card-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-card-content p {
        font-size: 16px;
    }
    
    .hero-card-visual {
        min-height: 300px;
    }
    
    .cyclopes-text {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .features-grid-three {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        min-height: auto;
    }
    
    .use-case-card {
        position: relative;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .use-case-1,
    .use-case-2,
    .use-case-3 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .network-left,
    .network-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-card-content h1 {
        font-size: 28px;
    }
    
    .cyclopes-title,
    .use-cases-title {
        font-size: 32px;
    }
    
    .use-case-card h3 {
        font-size: 24px;
    }
}