/* === CORE STYLES === */

:root {
    --color-primary: #4F46E5;
    --color-primary-light: #818CF8;
    --color-secondary: #0B0F19;
    --color-accent: #F97316;
    --color-surface: #F8FAFC;
    --color-text-main: #475569;
    --color-text-heading: #0F172A;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-main);
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    /* Responsive design - no min-width restriction */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-text-heading);
    line-height: 1.2;
}

/* Typography Defaults */
h1 {
    font-size: 4.5rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: 1.875rem;
    font-weight: 700;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Navigation Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-secondary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #4F46E5, #9333EA);
}

.bg-gradient-hero {
    background: linear-gradient(to bottom right, #EEF2FF, #FFFFFF, #FAF5FF);
}