:root {
    --bg-color: #fafafa;
    --text-color: #111111;
    --text-muted: #666666;
    --accent: #ff9a9e; /* Soft pastel pink */
    --accent-secondary: #a1c4fd; /* Soft pastel blue */
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.5);
    --shadow: rgba(0, 0, 0, 0.05);
}

* {
    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;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Vibrant Mesh Gradient Background */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #fafafa;
    background-image: 
        radial-gradient(at 80% 0%, rgba(255, 154, 158, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(161, 196, 253, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(254, 207, 239, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(253, 235, 113, 0.2) 0px, transparent 50%);
    filter: blur(40px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 6%;
    width: 100%;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Layout */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0 6%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 4rem;
}

.content-left {
    flex: 1;
    max-width: 550px;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Left Content Styles */
.pill-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow);
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--text-color);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Countdown (Clean bubbles) */
.countdown {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Form */
.form-container {
    position: relative;
    max-width: 450px;
}

.input-group {
    display: flex;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 99px;
    padding: 0.375rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(255, 154, 158, 0.15);
    transform: translateY(-2px);
}

input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}

input::placeholder {
    color: #aaaaaa;
}

.btn {
    background: var(--text-color);
    color: #ffffff;
    border: none;
    border-radius: 99px;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent);
    transform: scale(1.02);
}

.success-message {
    position: absolute;
    bottom: -30px;
    left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4CAF50;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Right Content Styles */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-backdrop {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    filter: blur(20px);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.floating {
    animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Glass Card */
.glass-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    padding: 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    z-index: 2;
    animation: floatSoft 6s ease-in-out infinite reverse;
}

.icon-wrap {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-color);
}

.card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: -5%;
    animation-delay: -2s;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.slide-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
        padding: 2rem 6%;
        gap: 3rem;
        text-align: center;
    }
    
    .content-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .subtitle {
        max-width: 90%;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .form-container {
        width: 100%;
        max-width: 400px;
    }
    
    .image-wrapper {
        height: 400px;
    }
    
    .card-1 {
        top: 10%;
        left: 0;
    }
}
