.hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 116px;
    gap: 14px;
    min-height: 164px;
    padding: 18px;
    overflow: hidden;
}

.hero-copy {
    align-self: center;
    min-width: 0;
}

.hero-copy h1 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-copy p {
    max-width: 25rem;
    color: var(--muted);
    line-height: 1.5;
}

.crystal-orbit {
    position: relative;
    display: grid;
    place-items: center;
}

.crystal-orbit span {
    position: absolute;
    width: 76px;
    height: 76px;
    clip-path: polygon(50% 0, 88% 28%, 74% 100%, 26% 100%, 12% 28%);
    background: linear-gradient(145deg, rgba(72, 224, 194, 0.85), rgba(136, 167, 255, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: rotate(var(--r, 0deg)) translateY(var(--y, 0));
}

.crystal-orbit span:nth-child(2) {
    --r: 18deg;
    --y: 18px;
    width: 52px;
    height: 52px;
    opacity: 0.75;
}

.crystal-orbit span:nth-child(3) {
    --r: -26deg;
    --y: -22px;
    width: 38px;
    height: 38px;
    background: linear-gradient(145deg, rgba(247, 190, 85, 0.82), rgba(255, 125, 125, 0.58));
}

.stats-grid,
.activity-grid {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-tile {
    min-height: 82px;
    padding: 12px;
}

.stat-tile span,
.stat-tile strong {
    display: block;
}

.stat-tile span {
    color: var(--muted);
    font-size: 0.75rem;
}

.stat-tile strong {
    margin-top: 8px;
    font-size: 1.35rem;
}

.activity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.activity-panel {
    display: grid;
    gap: 14px;
    min-height: 126px;
    padding: 14px;
}

.activity-panel h2 {
    font-size: 1rem;
    line-height: 1.2;
}
