:root {
    --bg: #050505;
    --accent: #00f2fe;
    --secondary: #7000ff;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* --- Animated Background Blobs --- */
.blob-c {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; filter: blur(80px);
}
.shape-blob {
    position: absolute; width: 400px; height: 400px;
    background: var(--secondary); opacity: 0.4;
    border-radius: 50%; top: -10%; left: -10%;
    animation: move 20s infinite alternate;
}
.shape-blob.one { background: var(--accent); top: 40%; left: 60%; animation-duration: 15s; }
@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 200px) scale(1.2); }
}

/* --- Layout & Typography --- */
.content-wrapper { padding: 0 10%; max-width: 1400px; margin: 0 auto; }

.glass-nav { height: 100px; display: flex; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -1px; }
.logo b { color: var(--accent); }

.hero { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; }
.main-title { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1; margin-bottom: 20px; }
.typing-text { color: var(--accent); border-right: 3px solid var(--accent); }

/* --- Responsive Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 30px;
}
.bento-item {
    background: var(--glass); border: 1px solid var(--border);
    padding: 40px; border-radius: 24px; transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
.bento-item.wide { grid-column: span 1; }

@media (min-width: 1024px) { .bento-item.wide { grid-column: span 2; } }

/* --- Magnetic Links --- */
.links-container { display: flex; flex-direction: column; gap: 15px; margin-top: 40px; }
.mag-link {
    text-decoration: none; color: white;
    background: var(--glass); border: 1px solid var(--border);
    border-radius: 100px; padding: 25px 40px;
    transition: 0.3s; position: relative; overflow: hidden;
}
.mag-link:hover { background: white; color: black; border-color: white; }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .content-wrapper { padding: 0 5%; }
    .hero { min-height: 50vh; text-align: center; }
    .hero-stats { justify-content: center; display: flex; gap: 20px; margin-top: 20px;}
}

/* Custom Cursor (Hidden on touch) */
@media (hover: hover) {
    .cursor-dot { width: 6px; height: 6px; background: white; position: fixed; border-radius: 50%; z-index: 100; pointer-events: none; }
    .cursor-outline { width: 30px; height: 30px; border: 1px solid var(--accent); position: fixed; border-radius: 50%; z-index: 99; pointer-events: none; transition: 0.15s ease-out; }
}