@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #05051a;
    /* Darker Deep Blue */
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --accent-blue: #9d4edd;
    /* Violet Accent */
    --accent-green: #00ff88;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --accent-gold: #D4AF37;
    --accent-purple: #7b2cbf;
    --gradient-glow: radial-gradient(circle at center, rgba(138, 43, 226, 0.25) 0%, transparent 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .contact-card {
        flex-direction: row;
    }
}


.text-gold {
    color: var(--accent-gold);
}

.text-logo-gradient {
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 255, 0.2);
}

.btn-primary {
    background: rgba(10, 25, 60, 0.6);
    /* Transparent Dark Blue */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid rgba(67, 97, 238, 0.3);
    /* Subtle Blue Border */
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(10, 25, 60, 0.95);
    /* Nearly solid on hover */
    border-color: rgba(67, 97, 238, 0.8);
    box-shadow: 0 8px 25px rgba(10, 25, 60, 0.4);
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* JS will toggle this off/on or we handle it via intersection observer */
}

/* Specific Sections */
section {
    padding: 6rem 0;
    position: relative;
}

/* Layout Grid for Features */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .process-arrow {
        display: block !important;
    }
}

.process-grid {
    display: grid;
    gap: 2rem;
}

.process-arrow {
    display: none;
    /* Hidden on mobile */
}

/* Enhanced Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.4) 0%, rgba(30, 20, 50, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Highlight top border */
    border-radius: 20px;
    /* Softer corners */
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(157, 78, 221, 0.3);
    background: linear-gradient(135deg, rgba(40, 30, 60, 0.6) 0%, rgba(30, 20, 50, 0.3) 100%);
}

/* Login Button Specifics */
.btn-login:hover {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

/* Input Focus */
input:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}

/* Cookie Banner Premium Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 26, 0.85);
    /* Dark transparent base */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* Safari support */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 10%;
        text-align: left;
    }
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #b5179e 100%);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.7);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}