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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    font-family: "Inter", sans-serif;
    color: black;
}

a {
    color: inherit;
    text-decoration: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    width: 100%;
    height: 75px;
}

.branding {
    font-weight: 800;
    color: black;
    font-size: 1.1rem;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.button {
    width: auto;
    height: auto;
    padding: 10px 30px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
}

.button.inverse {
    background-color: white;
    outline: 1px solid black;
    color: black;
}

.button:hover {
    opacity: 0.8;
}

.tools {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    padding: 40px;
    gap: 24px;
}

.tool {
    outline: 1px solid #e0e0e0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    width: 280px;
}

.tool h2 {
    font-size: 1rem;
    font-weight: 700;
}

.tool p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.tool .button {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.tools-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    color: #aaa;
    font-size: 0.95rem;
}

@media (max-width: 500px) {
    .tool {
        width: 90%;
    }
}
