:root {
    /* Colors derived from Logo */
    --color-navy: #003366;
    /* Deep blue from outline */
    --color-blue: #0A5499;
    /* Lighter blue */
    --color-orange: #FF9933;
    /* Mawashi orange */
    --color-skin: #FFE5B4;
    /* Skin tone light */
    --color-bg: #F5F7FA;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-white: #ffffff;

    --font-main: 'Outfit', sans-serif;

    --shadow-soft: 0 10px 40px rgba(0, 51, 102, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 51, 102, 0.15);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Decorations */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.globe-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-skin) 0%, rgba(255, 229, 180, 0) 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 84, 153, 0.15) 0%, rgba(10, 84, 153, 0) 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.container {
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header & Logo */
header {
    margin-bottom: 20px;
}

.logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Typography */
.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.highlight {
    color: var(--color-orange);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: rgba(255, 153, 51, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* Coming Soon Badge */
.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 153, 51, 0.1);
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 153, 51, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(5px);
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 40px 24px;
        width: 95%;
    }

    .headline {
        font-size: 2.5rem;
    }

    .logo {
        width: 100px;
    }
}