* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    background:
            radial-gradient(circle at top left, rgba(0, 91, 172, .35), transparent 35%),
            radial-gradient(circle at bottom right, rgba(243, 111, 33, .35), transparent 35%),
            linear-gradient(135deg, #02111F, #082848, #03192E);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
    z-index: 0;
}
.blur1,
.blur2 {
    position: fixed;
    border-radius: 9999px;
    filter: blur(120px);
    z-index: 0;
}
.blur1 {
    width: 450px;
    height: 450px;
    background: #005BAC;
    top: -150px;
    left: -100px;
    opacity: .25;
}
.blur2 {
    width: 500px;
    height: 500px;
    background: #F36F21;
    bottom: -180px;
    right: -120px;
    opacity: .25;
}

/* Container & Utilities */
main {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-28 { width: 7rem; }
.h-28 { height: 7rem; }
.rounded-3xl { border-radius: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.mb-8 { margin-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-20 { margin-top: 5rem; }

.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }

.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.tracking-wide { letter-spacing: 0.025em; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-7 { line-height: 1.75rem; }

.text-orange-400 { color: #fb923c; }
.text-orange-600 { color: #ea580c; }
.text-blue-300 { color: #93c5fd; }
.text-blue-700 { color: #1d4ed8; }
.text-indigo-600 { color: #4f46e5; }
.text-emerald-600 { color: #059669; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }

.bg-blue-600 { background-color: #2563eb; }
.bg-orange-500 { background-color: #f97316; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-white { background-color: #ffffff; }

.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.p-8 { padding: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.rounded-xl { border-radius: 0.75rem; }
.flex-grow { flex-grow: 1; }

.glass {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .12);
}

.role-card {
    transition: .35s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
}
.role-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255, 255, 255, .08),
    transparent,
    rgba(255, 255, 255, .03));
    opacity: 0;
    transition: .35s;
}
.role-card:hover::before {
    opacity: 1;
}
.role-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 111, 33, .45);
    box-shadow:
            0 25px 45px rgba(0, 0, 0, .35),
            0 0 40px rgba(243, 111, 33, .20);
}
.icon-box {
    transition: .35s;
}
.role-card:hover .icon-box {
    transform: scale(1.1) rotate(8deg);
}
.btn-login {
    transition: .3s;
    border: none;
    cursor: pointer;
    width: 100%;
}
.role-card:hover .btn-login {
    background: linear-gradient(90deg, #F36F21, #005BAC);
    color: white;
}
.fade {
    animation: fadeUp .8s ease both;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Header line */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, #f97316, #3b82f6);
}
.h-1 { height: 0.25rem; }
.w-32 { width: 8rem; }
.rounded-full { border-radius: 9999px; }

/* Footer line */
.w-full { width: 100%; }
.h-px { height: 1px; }
.via-slate-500 {
    background: linear-gradient(to right, transparent, #64748b, transparent);
}
