:root {
    --bg: #0f172a;
    --card-bg: #1e293b;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --brand: #3b82f6;
    /* Blue */
    --brand-light: #60a5fa;
    --accent: #22c55e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    color: var(--brand);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    color: white !important;
    display: none;
    /* Hidden for now */
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px 60px 20px;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 70%);
}

.pill-new {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: var(--brand-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, white, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dashboard Grid */
.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-left: 4px solid var(--brand);
    padding-left: 15px;
    color: white;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 130, 246, 0.3);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), transparent);
    opacity: 0;
    transition: 0.3s;
}

.tool-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--brand-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.tool-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.link-arrow {
    font-size: 0.9rem;
    color: var(--brand-light);
    font-weight: 600;
}

.tool-card:hover .link-arrow {
    color: white;
}

/* Footer */
.app-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.small-print {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .top-nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for mobile */
}