:root {
    --primary-color: #F87060; /* Warm coral/orange */
    --secondary-color: #102542; /* Deep premium navy */
    --bg-color: #FDFBF7; /* Warm white/cream */
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background blob animations for premium feel */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(circle at 15% 50%, rgba(248, 112, 96, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(16, 37, 66, 0.05), transparent 25%);
}

.glass-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(248, 112, 96, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite alternate;
}

.glass-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(251, 219, 134, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-icon {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
}

.lang-toggle {
    display: flex;
    background: rgba(16, 37, 66, 0.05);
    border-radius: 20px;
    padding: 4px;
    cursor: pointer;
    position: relative;
}

.lang-option {
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--secondary-color);
    opacity: 0.6;
}

.lang-option.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    opacity: 1;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 5%;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

@media (min-width: 992px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        padding: 6rem 5%;
    }
}

.hero-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: slideUp 0.8s ease-out;
}

@media (min-width: 992px) {
    .hero-content {
        flex: 1.3;
        max-width: 800px;
    }
}

.badge {
    background: rgba(248, 112, 96, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(248, 112, 96, 0.2);
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

@media (min-width: 992px) {
    .headline {
        font-size: 4.5rem;
    }
}

.subheadline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.waitlist-form {
    display: flex;
    width: 100%;
    max-width: 450px;
    gap: 10px;
    flex-direction: column;
}

@media (min-width: 576px) {
    .waitlist-form {
        flex-direction: row;
    }
}

.waitlist-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
    background: white;
}

.waitlist-form input:focus {
    border-color: var(--primary-color);
}

.waitlist-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 112, 96, 0.3);
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 112, 96, 0.4);
    background: #f16050;
}

.hero-visual {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeIn 1s ease-out 0.3s both;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(16, 37, 66, 0.1);
    transition: transform 0.5s ease;
}

.image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    animation: float-card 4s ease-in-out infinite alternate;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .card-1 { left: 0; top: -5%; }
    .card-2 { right: 0; bottom: -5%; }
}

@keyframes float-card {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; scale: 0.95; }
    to { opacity: 1; scale: 1; }
}

/* Language Transition Classes */
.fade-out {
    opacity: 0;
    transform: translateY(-5px);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.lang-animating {
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}
