* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background: #0a0c10;
    color: #eaeaea;
}

/* NOISE */
.noise {
    position: fixed;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.badge {
    border: 1px solid #222a38;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #9aa4b2;
}

.hero h1 {
    font-size: 72px;
    margin: 30px 0 10px;
}

.hero h1 span {
    color: #5da9ff;
}

.hero p {
    color: #9aa4b2;
    margin-bottom: 40px;
}

/* BUTTONS */
.actions {
    display: flex;
    gap: 15px;
}

.copy-btn {
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid #222a38;
    background: transparent;
    color: #eaeaea;
    cursor: pointer;
    transition: .4s ease;
}

.copy-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 25px rgba(93,169,255,.4);
}

.copy-btn.copied {
    background: #5da9ff;
    color: #0a0c10;
}

/* STAFF */
.staff {
    text-align: center;
    padding: 120px 20px;
}

.staff-card {
    margin: auto;
    max-width: 360px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #1c2230;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: .4s ease;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(93,169,255,.35);
}

/* AVATAR FIX */
.staff-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #5da9ff;
}

/* INFO ICON */
.info-icon {
    margin-left: auto;
    position: relative;
    cursor: pointer;
    color: #5da9ff;
    font-size: 20px;
    transition: .3s;
}

.info-icon:hover {
    transform: scale(1.15);
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    right: 0;
    bottom: -38px;
    background: #111522;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.info-icon:hover .tooltip {
    opacity: 1;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #0f1420;
    padding: 40px;
    border-radius: 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    animation: pop .5s ease;
}

.modal-content img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5da9ff;
    margin-bottom: 20px;
}

.role {
    color: #5da9ff;
}

.info {
    text-align: left;
    margin-top: 20px;
    color: #9aa4b2;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* ANIM */
@keyframes pop {
    from { transform: scale(.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
