.container{
    max-width: var(--wrap);
    margin: 50px auto;
    padding: 0 20px;
}

/* Header branding (index-only for now) */
header .logo-website{
    width: 56px;
    display: block;
}
header .logo-website img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 30px 20px;
    border-radius: 14px;
    background:
      radial-gradient(900px 420px at 12% 0%, rgba(var(--accent-rgb), 0.18), transparent 60%),
      radial-gradient(720px 420px at 92% 110%, rgba(var(--accent2-rgb), 0.12), transparent 55%),
      linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    box-shadow: none;
}
.hero-copy{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-copy h1{
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.hero-copy p{
    color: #A9ACB6;
    max-width: 52ch;
    line-height: 1.6;
}
.hero-cta{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.hero-art{
    width: 40%;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-art img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.10) brightness(0.96);
    transform: scale(1.02);
}
.search-section{
    display: none;
    align-items: center;
    gap: 10px;
    width: calc(100% - 40px);
    color: var(--muted);
    background-color: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    padding: 10px 20px;
    border-radius: 999px;
}
.search-section input{
    background-color: unset;
    border: none;
    width: 100%;
    outline: none;
    color: var(--text);
}
.search-section:focus-within{
    border-color: rgba(var(--accent2-rgb), 0.55);
    box-shadow: 0 0 0 4px rgba(var(--accent2-rgb), 0.12);
}

@media (max-width:1100px) {
    .container{
        padding: 0 16px;
    }
    .hero-copy h1{
        font-size: 40px;
    }
}
@media (max-width:950px) {
    .hero{
        flex-direction: column;
        align-items: start;
    }
    .hero-copy,.hero-art{
        width: 100%;
    }
}
@media (max-width:750px) {
    .hero-copy h1{
        font-size: 34px;
    }
    .hero-cta{
        flex-direction: column;
        align-items: stretch;
    }
}
