:root {
    --bg: #030405;
    --card: rgba(13, 15, 18, 0.75);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f0f1f3;
    --dim: #94a3b8;
    --accent: #3b82f6; /* Transit Blue */
    --accent-glow: rgba(59, 130, 246, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 64px 22px 100px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #fff 0%, #93c5fd 40%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    color: var(--dim);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 60ch;
}

.meta {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    color: var(--dim);
    margin-bottom: 48px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.05);
    display: inline-block;
}

.section-h {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 48px 0 12px;
    color: #fff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-h::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-lead {
    color: var(--dim);
    font-size: 0.95rem;
    margin: 0 0 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: blur(20px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.card:hover::before {
    opacity: 1;
}

.card h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    color: #fff;
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dim);
    line-height: 1.5;
    flex: 1;
}

.path {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.foot {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--dim);
    text-align: center;
}

.foot a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {
    .wrap {
        padding: 40px 16px 80px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}
