:root {
    --bg: #000000;
    --card: #0a0a0a;
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #888888;
    --accent: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* Background Glow */
.bg-glow {
    position: fixed;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 600px;
    background: radial-gradient(circle at 50% 0%, #111111 0%, transparent 70%);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 20px 0; backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { font-weight: 800; font-size: 1.2rem; }
.logo span { opacity: 0.4; }

.nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.9rem; margin-left: 25px; transition: 0.3s;
}

.nav-links a:hover { color: var(--text); }

.cta-nav {
    background: white; color: black !important;
    padding: 8px 18px; border-radius: 40px; font-weight: 600;
}

/* Hero */
.hero {
    padding: 180px 20px 100px; text-align: center; max-width: 800px; margin: 0 auto;
}

.status-badge {
    display: inline-block; padding: 5px 15px; border: 1px solid var(--border);
    border-radius: 20px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 25px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -2px; line-height: 1.1; }
.text-gradient { color: var(--text-muted); }

.hero-description {
    margin-top: 25px; color: var(--text-muted); font-size: 1.15rem;
}

/* Bento Grid */
.bento-grid {
    max-width: 1100px; margin: 0 auto 100px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px; gap: 24px; padding: 0 40px;
}

.card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 32px; padding: 40px; position: relative;
    transition: 0.3s ease;
}

.card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }

.card-wide { grid-column: span 2; }
.card-tall { grid-row: span 2; }

.label {
    font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 15px;
}

h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
p { color: var(--text-muted); font-size: 0.95rem; }

.tech-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.tech-list span {
    padding: 6px 14px; background: rgba(255,255,255,0.05);
    border-radius: 10px; font-size: 0.8rem; border: 1px solid var(--border);
}

.card-contact {
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}

.contact-email {
    font-size: 1.8rem; font-weight: 800; color: white; text-decoration: none;
    margin-top: 20px; border-bottom: 2px solid var(--border); transition: 0.3s;
}

.contact-email:hover { border-color: white; }

/* Responsive */
@media (max-width: 850px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; padding: 0 20px; }
    .card-wide, .card-tall { grid-column: span 1; grid-row: span 1; }
    .nav-inner { padding: 0 20px; }
    h1 { font-size: 2.8rem; }
}

section { scroll-margin-top: 110px; }