body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}
.glass-menu {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    background: transparent;
    box-shadow: none;
    z-index: 100;
}
.inner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    padding: 20px;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}
.logo {
    font-size: 1.7rem;
    font-weight: 500;
    color: #23272f;
    letter-spacing: 1px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.glass-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background: rgba(220, 220, 220, 0.5);
    color: #23272f;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.glass-btn:hover {
    background: rgba(200, 200, 200, 0.7);
}
@media (max-width: 1000px) {
    .inner-flex {
        max-width: 98vw;
        padding: 16px 8px;
    }
    .logo {
        font-size: 1.2rem;
    }
    .glass-btn {
        font-size: 0.95rem;
        padding: 7px 12px;
    }
}
@media (max-width: 600px) {
    .inner-flex {
        margin: 15px;
    }
}
.center-headline {
    margin-top: 180px;
    margin-bottom: 40px;
    font-size: 3.5rem;
    font-weight: 500;
    color: #23272f;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.hero-image-placeholder {
    display: block;
    width: 90vw;
    max-width: 900px;
    height: 380px;
    margin: 0 auto 40px auto;
    background: #e0e0e0;
    border-radius: 18px;
    border: 2px dashed #bdbdbd;
    box-sizing: border-box;
}
.subtext {
    max-width: 700px;
    margin: 120px auto 200px auto;
    padding: 0 20px;
    color: #bbb;
    font-size: 1.5rem;
    text-align: center;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
.image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    animation: float 6s ease-in-out infinite;
}

.bottom-image {
    margin-top: 80px;
    margin-bottom: 80px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    transition: opacity 500ms linear;
}

.desktop-image {
    display: block;
    width: 100%;
}

.mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .image {
        margin: 0;
    }

    .bottom-image {
        padding: 0 20px;
        box-sizing: border-box;
        margin-top: 60px;
        margin-bottom: 60px;
    }
} 