/* Snoopdave LLC Corporate Styles */
/* Shared between corporate site and waitlist page */

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    background-image: url('raleigh-skyline.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    color: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    padding: 2rem 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.25) 0%, rgba(15, 18, 38, 0.88) 100%);
    pointer-events: none;
    z-index: 0;
}

main {
    width: min(720px, 90vw);
    padding: 3.5rem 3rem;
    background: rgba(20, 15, 35, 0.98);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(75, 0, 130, 0.2) inset;
    margin: auto;
    position: relative;
    z-index: 1;
}

header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 14px;
    padding: 5px;
    background: rgba(15, 10, 25, 0.95);
    border: 1px solid rgba(75, 0, 130, 0.4);
    box-shadow:
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.4),
            0 0 60px rgba(255, 215, 0, 0.2),
            0 4px 16px rgba(0, 0, 0, 0.5),
            inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow:
            0 0 25px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 75px rgba(255, 215, 0, 0.3),
            0 6px 20px rgba(0, 0, 0, 0.6),
            inset 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.studio-mark {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.85);
}

.tagline {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #f7f9fc;
}

.lede {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(247, 249, 252, 0.72);
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

section {
    display: grid;
    gap: 1.5rem;
}

.card {
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(30, 20, 50, 0.95);
    border: 1px solid rgba(75, 0, 130, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
}

.card h2 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(247, 249, 252, 0.62);
    margin: 0 0 0.75rem;
}

.card p {
    margin: 0;
    color: rgba(247, 249, 252, 0.75);
    line-height: 1.6;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.5rem;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.location {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(247, 249, 252, 0.65);
    letter-spacing: 0.02em;
}

.copyright {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(247, 249, 252, 0.45);
}

/* Links */
a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
    transition: all 0.2s ease;
}

a:hover {
    color: rgba(255, 215, 0, 0.85);
    border-bottom-color: rgba(255, 215, 0, 0.7);
}

/* Form elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(247, 249, 252, 0.85);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #f7f9fc;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(75, 0, 130, 0.4);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s;
}

.form-input::placeholder {
    color: rgba(247, 249, 252, 0.35);
}

.form-input:focus {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-input-error {
    border-color: #ef4444;
}

.form-input-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    font-size: 0.875rem;
    color: #fca5a5;
    margin: 0;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f7f9fc;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.6) 100%);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0.7) 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f7f9fc;
    background: rgba(30, 20, 50, 0.95);
    border: 1px solid rgba(75, 0, 130, 0.4);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(40, 30, 60, 0.95);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Success state */
.success-state {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    font-size: 4rem;
    line-height: 1;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7f9fc;
    margin: 0;
}

.success-message {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(247, 249, 252, 0.72);
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 1rem 0;
    }

    main {
        width: min(640px, 92vw);
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    header {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .brand-header {
        gap: 1rem;
    }

    .logo {
        width: 56px;
        height: 56px;
        box-shadow:
                0 0 16px rgba(255, 215, 0, 0.6),
                0 0 32px rgba(255, 215, 0, 0.4),
                0 0 48px rgba(255, 215, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.5),
                inset 0 0 0 1px rgba(255, 215, 0, 0.1);
    }

    .studio-mark {
        font-size: 0.7rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .lede {
        font-size: 1rem;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .card {
        padding: 1.4rem;
    }

    .footer-info {
        margin-top: 2rem;
        gap: 0.4rem;
    }

    .location {
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.75rem;
    }
}
