/* MoGo Coming Soon Page Styles */

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

:root {
    --mogo-red: #FF1F35;
    --mogo-dark: #1a1a1a;
    --mogo-gray: #6b7280;
    --mogo-light-gray: #f3f4f6;
    --mogo-border: #e5e7eb;
    --success-green: #10b981;
    --error-red: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--mogo-dark);
    line-height: 1.6;
}

.container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    text-align: center;
}

/* Hero Logo Container - Balanced, professional layout */
.hero-logo-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Logo - Dominant but contained */
.brand-hero {
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    transition: transform 0.3s ease, max-width 0.3s ease;
}

/* Brand Heading Section */
.brand-heading {
    margin-bottom: 24px;
    padding-top: 0;
}

/* Tablet breakpoint */
@media (max-width: 768px) {
    .hero-logo-container {
        padding: 16px 0;
    }

    .brand-hero {
        max-width: 70%;
        max-height: 240px;
    }

    .brand-heading {
        margin-bottom: 20px;
    }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
    .hero-logo-container {
        padding: 20px 0;
    }

    .brand-hero {
        max-width: 85%;
        max-height: 200px;
    }

    .brand-heading {
        margin-bottom: 16px;
    }
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--mogo-dark);
    margin-bottom: 8px;
}

.tagline {
    font-size: 18px;
    color: var(--mogo-gray);
    margin-bottom: 24px;
    font-weight: 400;
}

/* ETA Section */
.eta {
    background: var(--mogo-light-gray);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 40px;
}

.eta p {
    font-size: 16px;
    font-weight: 600;
    color: var(--mogo-dark);
}

/* Form Container */
.form-container {
    text-align: left;
}

.form-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--mogo-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--mogo-gray);
    margin-bottom: 32px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--mogo-dark);
    margin-bottom: 8px;
}

.optional {
    font-weight: 400;
    color: var(--mogo-gray);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid var(--mogo-border);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: var(--mogo-red);
    box-shadow: 0 0 0 3px rgba(255, 31, 53, 0.1);
}

input[type="text"]:invalid,
input[type="email"]:invalid,
input[type="tel"]:invalid {
    border-color: var(--error-red);
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    min-width: 18px;
    min-height: 18px;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--mogo-dark);
}

.checkbox-label a {
    color: var(--mogo-red);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #cc1829;
}

/* Privacy Note */
.privacy-note {
    font-size: 13px;
    color: var(--mogo-gray);
    text-align: center;
    margin: 24px 0;
    padding: 12px;
    background: var(--mogo-light-gray);
    border-radius: 6px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--mogo-red);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover:not(:disabled) {
    background: #cc1829;
    box-shadow: var(--shadow-md);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(1px);
}

.submit-btn:disabled {
    background: var(--mogo-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-spinner {
    font-size: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Message Zone */
.message-zone {
    margin-top: 20px;
}

.message {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--mogo-border);
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: var(--mogo-gray);
    margin-bottom: 8px;
}

.footer a {
    color: var(--mogo-red);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

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

    .logo-text,
    .logo-dot {
        font-size: 36px;
    }

    .brand-name {
        font-size: 24px;
    }

    .tagline {
        font-size: 16px;
    }

    .form-container h2 {
        font-size: 20px;
    }
}

