body {
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #6366f1, #22d3ee);
}

.nav-link {
    font-weight: 500;
}

.hero-glass {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-glass::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(600px 300px at 10% 20%, rgba(99, 102, 241, .25), transparent 60%),
    radial-gradient(600px 300px at 90% 30%, rgba(34, 211, 238, .22), transparent 60%);
    pointer-events: none;
}

.photo-halo {
    position: relative;
    display: inline-block;
    border-radius: 50%;
}

.photo-halo::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: linear-gradient(
            135deg,
            rgba(99, 102, 241, 0.5),
            rgba(34, 211, 238, 0.45)
    );
    filter: blur(18px);
    opacity: 0.6;
    z-index: 0;
}

.project-card-img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.project-card-img-wrapper {
    overflow: hidden;
}

.acm-mini {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.company-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.honor-item {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}

.honor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.10) !important;
}

.honor-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.company-mark {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.role-chip {
    display: inline-flex;
    align-items: center;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .7);
    font-size: 12px;
    color: rgba(0, 0, 0, .65);
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
}
