/* CSS Variables for Color Theme */
:root {
    /* Blue Color Palette */
    --primary-blue: #226BA2;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    
    /* Shadows */
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
    overflow-x: hidden;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-link {
    color: var(--white);
    text-decoration: underline;
    transition: opacity var(--transition-fast);
}

.footer-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo {
    display: inline-block;
    width: 80px;
    height: auto;
    margin-left: 1rem;
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin: 0 20vh;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Section Styles */
.content-section {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.content-wrapper {
    max-width: 500px;
}

.main-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.highlighted-text {
    color: var(--primary-blue);
    position: relative;
}

.subtext {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.cta-button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--primary-blue));
}

.button-arrow {
    transition: transform var(--transition-fast);
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Illustration Section */
.illustration-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

.mockup-container {
    position: relative;
    z-index: 2;
}

/* Desktop Mockup */
.desktop-mockup {
    width: auto;
    height: 550px;
    transition: all var(--transition-medium);
    opacity: 1;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
}

.desktop-mockup:hover {
    transform: translateY(-8px) scale(1.02) !important;
    transform-origin: center center;
    filter: brightness(1.1);
}

/* Mobile Mockup */
.mobile-mockup {
    position: absolute;
    bottom: -20px;
    right: 50px;
    width: auto;
    height: 450px;
    transition: all var(--transition-medium);
    opacity: 1;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
}

.mobile-mockup:hover {
    transform: translateY(-12px) scale(1.05) !important;
    transform-origin: center center;
    filter: brightness(1.1);
}



/* Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 5px;
    opacity: 0.1;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: var(--primary-blue);
    top: -50px;
    right: 50px;
    animation: morphFloat 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: var(--primary-blue);
    bottom: -30px;
    right: 430px;
    animation: pulseRotate 12s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    bottom: -20px;
    right: 10px;
    animation: orbitalDance 15s linear infinite;
    animation-delay: 1s;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes growBar {
    to {
        transform: scaleY(1);
    }
}

@keyframes drawLine {
    to {
        opacity: 1;
    }
}

@keyframes morphFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        border-radius: 5px;
    }
    25% {
        transform: translateY(-30px) rotate(15deg) scale(1.1);
        border-radius: 25px;
    }
    50% {
        transform: translateY(-15px) rotate(-10deg) scale(0.95);
        border-radius: 40px;
    }
    75% {
        transform: translateY(-40px) rotate(25deg) scale(1.05);
        border-radius: 15px;
    }
}

@keyframes pulseRotate {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    16% {
        transform: translateX(10px) translateY(-20px) rotate(45deg) scale(1.2);
        opacity: 0.5;
    }
    33% {
        transform: translateX(-5px) translateY(-35px) rotate(90deg) scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: translateX(15px) translateY(-10px) rotate(180deg) scale(1.3);
        opacity: 0.6;
    }
    66% {
        transform: translateX(-10px) translateY(-25px) rotate(270deg) scale(0.9);
        opacity: 0.25;
    }
    83% {
        transform: translateX(5px) translateY(-40px) rotate(315deg) scale(1.1);
        opacity: 0.45;
    }
}

@keyframes orbitalDance {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        border-radius: 5px;
    }
    12.5% {
        transform: translateX(40px) translateY(-20px) rotate(45deg) scale(1.1);
        border-radius: 20px;
    }
    25% {
        transform: translateX(30px) translateY(-50px) rotate(90deg) scale(0.9);
        border-radius: 35px;
    }
    37.5% {
        transform: translateX(0) translateY(-60px) rotate(135deg) scale(1.2);
        border-radius: 25px;
    }
    50% {
        transform: translateX(-30px) translateY(-50px) rotate(180deg) scale(0.85);
        border-radius: 45px;
    }
    62.5% {
        transform: translateX(-40px) translateY(-20px) rotate(225deg) scale(1.15);
        border-radius: 30px;
    }
    75% {
        transform: translateX(-30px) translateY(10px) rotate(270deg) scale(0.95);
        border-radius: 15px;
    }
    87.5% {
        transform: translateX(0) translateY(20px) rotate(315deg) scale(1.05);
        border-radius: 40px;
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg) scale(1);
        border-radius: 5px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .content-wrapper {
        max-width: none;
    }
    
    .desktop-mockup {
        width: 350px;
        height: 220px;
    }
    
    .mobile-mockup {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .desktop-mockup {
        width: 300px;
        height: 180px;
    }
    
    .mobile-mockup {
        width: 100px;
        height: 160px;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}