/* ===========================
   CSS Reset and Base Styles
   =========================== */

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

:root {
    /* Color Palette */
    --primary-blue: #3b82f6;
    --primary-blue-dark: #1e40af;
    --white: #ffffff;
    --off-white: #f8fafc;

    /* Shadows */
    --shadow-lg: 0 20px 60px rgba(59, 130, 246, 0.4);

    /* Transitions */
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -0.02em;
}

.hero-tagline {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 15px;
    }
}
