@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --primary: #2b8ace;
    --primary-light: #76b5e3;
    --secondary: #1e3a8a;
    --bg-light: #f0f7ff;
    --text-main: #1e3a8a;
    --text-muted: rgba(30, 58, 138, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.min-h-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Gradients */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.blob-1 {
    top: -10%;
    left: 10%;
    background-color: var(--primary);
}

.blob-2 {
    bottom: -10%;
    right: 10%;
    background-color: var(--primary-light);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(240, 247, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 138, 206, 0.1);
    padding: 1.5rem 1.5rem;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-flex {
    display: flex;
    items-center: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(43, 138, 206, 0.1);
    color: var(--primary);
    border-radius: 9999px;
    border: 1px solid rgba(43, 138, 206, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.under-construction-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--primary-light));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.hero-img-container {
    position: relative;
    animation: fadeInScale 1s ease-out 0.2s both;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.img-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(43, 138, 206, 0.2), rgba(118, 181, 227, 0.2));
    border-radius: 2.5rem;
    filter: blur(24px);
}

.hero-img {
    position: relative;
    width: 100%;
    border-radius: 2.5rem;
    border: 1px solid rgba(43, 138, 206, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(43, 138, 206, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}
