/* Planlat Coming Soon Page - Teal Theme */
:root {
    --color-darkest: #162123;
    --color-dark: #1c2a2c;
    --color-mid: #07798C;
    --color-light: #22BBBB;
    --color-lightest: #55d4d4;
    --text-primary: #e1e8e8;
    --text-secondary: #8fb3b5;
    --text-muted: #6c8a8c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-darkest);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-light);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--color-mid);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--color-lightest);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
    width: 100%;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(34, 187, 187, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Title */
.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-lightest) 0%, var(--color-light) 50%, var(--color-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 187, 187, 0.15);
    border: 1px solid rgba(34, 187, 187, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--color-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Description */
.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    border-radius: 16px;
    border: 1px solid rgba(34, 187, 187, 0.2);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: translateY(-5px);
    border-color: var(--color-light);
    box-shadow: 0 10px 30px rgba(34, 187, 187, 0.2);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Email Form */
.notify-section {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.notify-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 1px solid rgba(34, 187, 187, 0.3);
    border-radius: 12px;
    background: var(--color-dark);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--color-light);
    box-shadow: 0 0 20px rgba(34, 187, 187, 0.2);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-mid) 100%);
    border: none;
    border-radius: 12px;
    color: var(--color-darkest);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 187, 187, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(34, 187, 187, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .features {
        gap: 25px;
    }

    .email-form {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }
}