/* Invenzz Landing Page Styles - Matching App Theme */

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

:root {
    --color-primary: #065f46;
    --color-primary-dark: #064e3b;
    --color-primary-light: #059669;
    --color-blue: #1e3a8a;
    --color-blue-light: #1e40af;
    --color-text: #1f2937;
    --color-text-muted: #374151;
    --color-text-subtle: #6b7280;
    --color-border: #e5e7eb;
    --color-background: #ffffff;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 25%, var(--color-blue) 75%, var(--color-blue-light) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--color-text);
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Brand / Logo */
.brand {
    margin-bottom: 3rem;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .logo {
        font-size: 4.5rem;
    }
}

.accent-line {
    height: 4px;
    width: 80px;
    background: rgba(255, 255, 255, 0.6);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Message */
.message {
    margin-bottom: 3rem;
}

.message h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .message h2 {
        font-size: 2rem;
    }
}

.message p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 500;
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-card p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: var(--color-primary);
}

.email-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    padding: 1.5rem;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}
