:root{
    --bg: #0d0d0d;
    --card: #030303;
    --muted: #a4a4a4;
    --accent: limegreen;
    --radius: 14px;
    --max-width: 1280px;
    --tile-gap: 18px;
    --avatar-size: 128px;
    --font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Page */
* { box-sizing: border-box; }
html,body { height: 100%; margin:0; cursor: none; overflow: hidden}
body{
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%);
    color: #e6eef6;
    font-family: var(--font-family);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    padding: 36px;
}

.mouse-trail {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: mouseTrailAnimation 0.4s ease-in-out forwards;
    opacity: 0;
}

@keyframes mouseTrailAnimation {

    0%,
    20% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    30% {
        transform: translateY(10px) scale(0.8);
        opacity: 0.8;
    }

    40% {
        transform: translateY(10px) scale(0.7);
        opacity: 0.7;
    }

    50% {
        transform: translateY(10px) scale(0.6);
        opacity: 0.6;
    }

    60% {
        transform: translateY(10px) scale(0.5);
        opacity: 0.5;
    }

    70% {
        transform: translateY(10px) scale(0.4);
        opacity: 0.4;
    }

    80% {
        transform: translateY(10px) scale(0.3);
        opacity: 0.3;
    }

    90% {
        transform: translateY(10px) scale(0.2);
        opacity: 0.2;
    }

    100% {
        transform: translateY(15px) scale(0.1);
        opacity: 0;
    }
}

/* Container */
.card {
    width: min(96vw, var(--max-width));
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(18px, 3vw, 34px);
    box-shadow: 0 10px 30px rgba(2,6,23,0.6);
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

/* Header area with avatar and title */
.header {
    display:flex;
    align-items:center;
    gap: 18px;
}
.avatar {
    width: var(--avatar-size);
    height: var(--avatar-size);
    min-width: var(--avatar-size);
    border-radius: 20px;
    background: var(--accent);
    display:grid;
    place-items:center;
    box-shadow: inset 0 -6px 30px rgba(0,0,0,0.35), 0 6px 18px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}
.avatar svg { width: 95%; height: 95%; }

.who {
    display:flex;
    flex-direction:column;
    gap:6px;
}
.name {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.role {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Tiles grid */
.tiles {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
    gap: var(--tile-gap);
    overflow: auto;
    padding: 4px;
}

.tile {
    display:flex;
    align-items:center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.02);
    text-decoration: none;
    color: inherit;
    transition: transform .16s ease, box-shadow .16s ease;
    box-shadow: 0 4px 14px rgba(2,6,23,0.45);
}
.tile:focus, .tile:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(2,6,23,0.6);
    outline: none;
}
.tile .label {
    display:flex;
    flex-direction:column;
}
.tile .title { font-weight:600; font-size:0.98rem; color: var(--accent); }
.tile .desc { font-size:0.82rem; color:var(--muted); margin-top:4px; }

/* Icon circle */
.ic {
    width:46px; height:46px;
    border-radius:10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006));
    display:grid;
    place-items:center;
    flex-shrink:0;
}

/* Footer small note */
.meta {
    color: var(--muted);
    font-size:0.82rem;
    margin-top: 2px;
}

/* Accessible focus ring */
.tile:focus {
    box-shadow: 0 0 0 4px rgba(110,231,183,0.14), 0 12px 30px rgba(2,6,23,0.6);
}

/* Responsive tweaks */
@media (min-width:880px){
    .card { grid-template-columns: 360px 1fr; align-items: start; }
    .header { flex-direction: column; align-items: flex-start; gap:12px; }
    .tiles { margin-top: 2px; }
}