/* MistriGrid - Clean Launching Soon Page */

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

:root {
    --primary: #0f2a4a;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --teal: #2dd4bf;
    --amber: #e8913a;
    --success: #10b981;
    --text: #0f2a4a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

/* ========== LAYOUT ========== */
.launch-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle background blobs */
.bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #a5f3fc;
    top: -15%;
    right: -10%;
    animation: drift 20s ease-in-out infinite alternate;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #99f6e4;
    bottom: -10%;
    left: -10%;
    animation: drift 25s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -30px); }
}

/* ========== LOGO ========== */
.launch-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.logo-img {
    height: 56px;
    width: auto;
}

/* ========== MAIN CONTENT ========== */
.launch-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.launch-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.launch-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 36px;
}

/* ========== HIGHLIGHTS ========== */
.launch-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.highlight-icon {
    font-size: 1.1rem;
}

/* ========== FORM ========== */
.launch-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 0;
}

.launch-form-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.launch-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.launch-form input {
    flex: 1 1 180px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--bg);
}

.launch-form input:focus {
    outline: none;
    border-color: var(--teal);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.35);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.45);
}

.form-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== FOOTER ========== */
.launch-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 48px;
    width: 100%;
    max-width: 700px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: left;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-muted);
}

.footer-address strong {
    color: var(--text-light);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    display: flex;
}

.footer-social a:hover {
    color: var(--teal);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .launch-page {
        padding: 32px 20px;
    }

    .launch-content h1 {
        font-size: 1.85rem;
    }

    .launch-subtitle {
        font-size: 1rem;
    }

    .launch-highlights {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .launch-form input {
        flex: 1 1 auto;
    }

    .launch-form-wrapper {
        padding: 24px 20px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 12px;
    }

    .footer-address {
        text-align: center;
        justify-content: center;
    }
}
