/* ============================================
   AESIS ASSURANCES — Coming Soon
   Design tokens & base styles
   ============================================ */

:root {
    --color-navy:     #042F77;
    --color-blue:     #1449A2;
    --color-magenta:  #B80D7E;
    --color-teal:     #14B8A6;
    --color-slate-50: #f8fafc;
    --color-slate-100:#f1f5f9;
    --color-slate-400:#94a3b8;
    --color-slate-500:#64748b;
    --color-slate-700:#334155;
    --color-slate-900:#0f172a;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--color-slate-50);
    color: var(--color-slate-900);
    min-height: 100vh;
    overflow: hidden;
}

/* ============================================
   Page layout
   ============================================ */

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* ============================================
   Animated background orbs
   ============================================ */

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}

.bg-orb--1 {
    width: 500px;
    height: 500px;
    background: var(--color-navy);
    top: -10%;
    right: -8%;
    animation: orb-drift-1 18s ease-in-out infinite;
}

.bg-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--color-magenta);
    bottom: -5%;
    left: -5%;
    animation: orb-drift-2 22s ease-in-out infinite;
}

.bg-orb--3 {
    width: 300px;
    height: 300px;
    background: var(--color-teal);
    top: 40%;
    left: 50%;
    animation: orb-drift-3 20s ease-in-out infinite;
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-40px, 30px) scale(1.05); }
    66%      { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -25px) scale(1.08); }
    66%      { transform: translate(-15px, 15px) scale(0.92); }
}

@keyframes orb-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-30px, 20px) scale(1.1); }
}

/* ============================================
   Hero section
   ============================================ */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    animation: hero-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__logo-container {
    margin-bottom: 2rem;
}

.hero__logo {
    width: 280px;
    height: auto;
    object-fit: contain;
}

.hero__divider {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-blue));
    margin-bottom: 2rem;
    animation: divider-in 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes divider-in {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 48px;
    }
}

.hero__title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    animation: hero-in 1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-slate-500);
    max-width: 380px;
    animation: hero-in 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 1;
    animation: hero-in 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.footer__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-slate-700);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer__link:hover {
    background: rgba(4, 47, 119, 0.06);
    color: var(--color-navy);
}

.footer__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer__separator {
    color: var(--color-slate-400);
    font-size: 1rem;
    user-select: none;
}

.footer__legal {
    font-size: 0.7rem;
    line-height: 1.6;
    color: var(--color-slate-400);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 480px) {
    .hero__logo {
        width: 200px;
    }

    .hero__title {
        font-size: 1.25rem;
    }

    .hero__subtitle {
        font-size: 0.875rem;
    }

    .footer__contacts {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer__separator {
        display: none;
    }

    .footer__legal {
        font-size: 0.65rem;
    }
}
