:root {
    --bg: #0a0a0a;
    --card-bg: #161616;
    --border: #262626;
    --text-main: #ededed;
    --text-muted: #a1a1aa;
    --accent: #ffffff;
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-btn {
    background: var(--accent);
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.nav-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem 0;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: #404040;
}

.card-content {
    padding: 2rem;
}

.card-lg { grid-column: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.card-sm { grid-column: span 1; }
.card-wide { grid-column: span 3; }

.card-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.card h2 { font-size: 2rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); line-height: 1.5; }

.icon { font-size: 1.5rem; display: block; margin-bottom: 1rem; }

.bg-gradient-1 {
    height: 150px;
    background: linear-gradient(45deg, #1a1a1a, #262626);
    margin-top: auto;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.large-text {
    font-size: 1.5rem;
    color: var(--text-main) !important;
}

.status-pill {
    background: #10b98120;
    color: #10b981;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding-bottom: 4rem;
}

.footer-line {
    height: 1px;
    background: var(--border);
    margin-bottom: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.socials a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.socials a:hover { color: white; }

/* Responsive */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .card-lg, .card-sm, .card-wide { grid-column: span 1; }
    .hero { padding-top: 7rem; }
}
