.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.btn {
    display: inline-block;
    padding: 14px 32px;

    background: var(--primary);
    color: white;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn:hover {
    background: var(--primary-hover);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

.in-progress {
    background: #854d0e;
    color: #fde68a;
}

.planned {
    background: #1e3a8a;
    color: #bfdbfe;
}

.released {
    background: #166534;
    color: #bbf7d0;
}

.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content p:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.philosophy-content p:last-child {
    color: var(--text-muted);
    line-height: 1.8;
}

.tool-grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tool-grid .card {
    height: 100%;
}

@media (max-width: 900px) {
    .tool-grid {
        grid-template-columns: 1fr;
    }
}