:root {
    --bg: #0a0e17;
    --acc1: #4a00e0;
    --acc2: #8e2de2;
    --acc3: #00d2ff;
    --text: #f0f4f8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Gradient Background Globs */
.blob-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--acc1) 0%, transparent 70%);
    top: -20vh;
    left: -20vw;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--acc2) 0%, transparent 70%);
    bottom: -10vh;
    right: -10vw;
    animation-delay: -5s;
}

.blob-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--acc3) 0%, transparent 70%);
    top: 30vh;
    left: 40vw;
    animation-duration: 25s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 15vh) scale(1.2); }
}

/* Interactive Spotlight */
.interactive-light {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.3s;
}

/* Glassmorphism Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(10, 14, 23, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.links a:hover {
    opacity: 1;
}

/* Layout */
.glass-container {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s;
}

.glass-card:hover::before {
    left: 200%;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.main-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 2rem;
}

.main-card h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-card p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(240, 244, 248, 0.7);
    margin-bottom: 2.5rem;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s;
    backdrop-filter: blur(5px);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.small-card {
    padding: 2rem;
}

.span-2 {
    grid-column: span 2;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.small-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.small-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}

.gradient-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--acc1), var(--acc2), var(--acc3));
    border-radius: 2px;
    margin-top: 2rem;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .glass-container {
        grid-template-columns: 1fr;
    }
    .main-card h1 {
        font-size: 3rem;
    }
}
