/* index.html — hero, vision intro, LP offer */

/* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-content-new {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.hero-logo {
    width: 180px;
    height: auto;
}

.hero-title-new {
    font-family: "Michroma", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--main);
}

.hero-subtitle-new {
    font-family: "Michroma", sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    opacity: 0.9;
    color: var(--main);
    margin: 0;
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-logo { width: 120px; }
    .hero-title-new { font-size: 2.5rem; }
}
