/* Design System & Variables - Corporate Minimal (Light Premium Theme) */
:root {
    --bg-color: #fafbfc;
    --card-bg: #ffffff;
    --card-border: rgba(9, 30, 54, 0.07);
    --text-primary: #081d33;     /* Corporate Navy */
    --text-secondary: #4a5c70;   /* Muted Slate-Blue */
    --text-muted: #8596a6;
    
    /* Logo Colors */
    --brand-navy: #091e36;
    --brand-gold: #b8923a;
    --brand-gold-light: rgba(184, 146, 58, 0.08);
    --brand-gold-border: rgba(184, 146, 58, 0.25);
    
    --accent-glow-1: rgba(9, 30, 54, 0.03);  /* soft navy glow */
    --accent-glow-2: rgba(184, 146, 58, 0.04); /* soft gold glow */
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Ambient Glows (Subtle, professional) */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

#glow-1 {
    top: 5%;
    left: 15%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-glow-1);
    animation: drift-1 30s infinite alternate ease-in-out;
}

#glow-2 {
    bottom: 5%;
    right: 15%;
    width: 55vw;
    height: 55vw;
    background: var(--accent-glow-2);
    animation: drift-2 35s infinite alternate ease-in-out;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(9, 30, 54, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 30, 54, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center center;
    z-index: 1;
    pointer-events: none;
}

/* Animations for Glows */
@keyframes drift-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 4%) scale(1.05); }
}

@keyframes drift-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -4%) scale(1.08); }
}

/* Layout Container */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3rem 1.5rem;
    z-index: 2;
}

/* Card Styling - Professional and Clean */
.content-card {
    width: 100%;
    max-width: 620px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 4.5rem 3.5rem;
    text-align: center;
    box-shadow: 
        0 15px 50px -15px rgba(9, 30, 54, 0.05),
        0 0 40px -5px rgba(184, 146, 58, 0.02);
    transform: translateY(0);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-gold) 50%, var(--brand-navy) 100%);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(9, 30, 54, 0.12);
    box-shadow: 
        0 25px 60px -20px rgba(9, 30, 54, 0.08),
        0 0 50px -2px rgba(184, 146, 58, 0.03);
}

/* Prominent Logo Wrapper */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    perspective: 1000px;
}

.logo {
    width: 100%;
    max-width: 320px; /* Bigger and more prominent */
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    /* Logo already has a white background, so we make it look seamless */
    background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 8px;
}

.logo:hover {
    transform: scale(1.025) translateZ(15px);
}

/* Badge styling */
.badge-container {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand-gold);
    background: var(--brand-gold-light);
    border: 1px solid var(--brand-gold-border);
    padding: 0.45rem 1.25rem;
    border-radius: 9999px;
}

/* Typography */
.title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--brand-navy);
    margin-bottom: 1.25rem;
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
}

/* Action Button */
.action-container {
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--brand-navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    border: 1px solid var(--brand-navy);
    box-shadow: 0 8px 20px -6px rgba(9, 30, 54, 0.15);
}

.btn-primary:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(184, 146, 58, 0.3);
}

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

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Footer Styling */
.footer {
    width: 100%;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid rgba(9, 30, 54, 0.05);
    box-shadow: 0 2px 8px rgba(9, 30, 54, 0.02);
}

.footer-link:hover {
    color: var(--brand-gold);
    background: #ffffff;
    border-color: var(--brand-gold-border);
    box-shadow: 0 4px 12px rgba(184, 146, 58, 0.08);
}

.footer-icon {
    width: 16px;
    height: 16px;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .content-card {
        padding: 3rem 1.75rem;
        border-radius: 24px;
    }
    
    .logo {
        max-width: 250px; /* Scaled down for mobile */
    }
    
    .title {
        font-size: 1.85rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.75rem;
    }
}
