/* ==========================================================
   Nath Capital - Coming Soon Page
   ========================================================== */

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

:root {
    --primary: #001b48;
    --primary-light: #02457a;
    --accent: #97cadb;
    --accent-light: #d6e8ee;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
}

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--white);
    background-color: var(--primary);
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 27, 72, 0.92) 0%,
        rgba(0, 27, 72, 0.7) 50%,
        rgba(2, 69, 122, 0.55) 100%
    );
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo-wrap {
    animation: fadeInDown 0.8s ease both;
}

.logo {
    height: 64px;
    width: auto;
    display: block;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    padding: 60px 0;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.2s;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 18px;
    border: 1px solid rgba(151, 202, 219, 0.4);
    border-radius: 30px;
    margin-bottom: 24px;
    width: fit-content;
}

.title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.accent {
    background: linear-gradient(120deg, #97cadb 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 560px;
}

/* Notify form */
.notify-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    flex-wrap: wrap;
}

.notify-form input[type='email'] {
    flex: 1;
    min-width: 220px;
    padding: 16px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input[type='email']::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-form input[type='email']:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.notify-form button {
    padding: 16px 32px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(151, 202, 219, 0.25);
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(151, 202, 219, 0.4);
}

.notify-form button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--accent);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

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

/* Footer */
.footer {
    padding-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    animation: fadeIn 1.2s ease both;
    animation-delay: 0.6s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 24px;
    }

    .logo {
        height: 48px;
    }

    .hero {
        padding: 40px 0;
    }

    .subtitle {
        font-size: 1rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form input[type='email'],
    .notify-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .eyebrow {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}
