body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #111827;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.text-gray-900 { color: #111827 !important; }
.text-gray-500 { color: #6b7280 !important; }
.text-gray-400 { color: #9ca3af !important; }
.bg-black { background-color: #000000 !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-off-white { background-color: #fafafa !important; }
.border-gray-100 { border-color: #f3f4f6 !important; }
.border-gray-200 { border-color: #e5e7eb !important; }
.border-gray-300 { border-color: #d1d5db !important; }

.form-group:has(:required) label::after {
    content: " *";
    color: rgb(220,53,69);
    margin-left: 0.25rem;
}

.logo-box {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    font-weight: bold;
}

.nav-link-brand {
    color: #000000;
}

.nav-link-custom {
    font-size: 0.875rem;
    font-weight: 500;
    color: #5a5d68;
    transition: color 0.2s ease;
}
.nav-link-custom:hover {
    color: #000;
}

.btn-custom-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    border: none;
}
.btn-custom-dark:hover {
    background-color: #1f2937;
    color: #fff;
}

.btn-custom-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}
.btn-custom-light:hover {
    background-color: #f9fafb;
    color: #111827;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 0.75rem;
    font-weight: 500;
    color: #4b5563;
}

.hero-heading {
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.feature-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
    font-size: 14px;
    color: #000;
}
