/* ==================== AEVON HOME PAGE ==================== */
.home-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: exclusion;
}

.home-logo {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #fff;
    text-decoration: none;
}

.home-nav-links {
    display: flex;
    gap: 4rem;
}

.home-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.home-nav-links a:hover {
    color: #fff;
}

.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    background: radial-gradient(ellipse at 70% 40%, #0A1A2F 0%, #03050B 70%);
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
}

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #7F9FBF;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-content h1 span {
    color: #7F9FBF;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.4rem;
    color: #B0C8E0;
    max-width: 700px;
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s;
    border-radius: 0;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: #fff;
    color: #03050B;
    border: 1px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #03050B;
    border-color: #fff;
}

.home-section {
    padding: 10rem 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #5A7A9A;
    margin-bottom: 2rem;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 3rem;
    color: #fff;
    line-height: 1.2;
}

.section-title strong {
    font-weight: 600;
    color: #fff;
}

.section-text {
    font-size: 1.3rem;
    color: #A0B8D0;
    max-width: 800px;
    font-weight: 300;
    line-height: 1.6;
}

.layers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}

.layer {
    border-top: 1px solid rgba(127, 159, 191, 0.3);
    padding-top: 2rem;
}

.layer-number {
    font-size: 0.9rem;
    color: #7F9FBF;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.layer h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
}

.layer p {
    color: #8A9FB5;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.infrastructure-block {
    background: rgba(10, 25, 45, 0.3);
    padding: 5rem;
    margin-top: 4rem;
    border: 1px solid rgba(127, 159, 191, 0.15);
}

.infrastructure-block p {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 300;
    color: #E0F0FF;
}

.infrastructure-block strong {
    font-weight: 600;
    color: #fff;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.milestone {
    border-left: 1px solid rgba(127, 159, 191, 0.3);
    padding-left: 2rem;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7F9FBF;
    margin-bottom: 1rem;
}

.milestone p {
    color: #B0C0D0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}

.home-footer {
    padding: 5rem 8% 3rem;
    color: #4A6075;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col p {
    color: #7A8FA5;
    font-weight: 300;
    line-height: 1.6;
}

.footer-logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #7A8FA5;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: #4A6075;
    font-weight: 300;
}

@media (max-width: 900px) {
    .home-nav {
        padding: 1.5rem 5%;
    }
    
    .home-nav-links {
        display: none;
    }
    
    .layers, .roadmap, .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .infrastructure-block p {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        text-align: center;
    }
}