.magehq-account-shell {
    --magehq-accent: #5b3fff;
    --magehq-accent-2: #7c67ff;
    --magehq-surface: #ffffff;
    --magehq-surface-soft: #f7f9fd;
    --magehq-border: #d9e2ee;
    --magehq-text: #111a2d;
    --magehq-muted: #5f6c82;
    padding: 1.25rem 0 3rem;
}

.magehq-account-shell .page-title-wrapper {
    margin-bottom: 1rem;
}

.magehq-account-shell .page-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    color: var(--magehq-text);
    margin: 0;
}

.magehq-account-hero {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .85fr);
    align-items: stretch;
    margin-bottom: 1rem;
}

.magehq-account-card {
    background: var(--magehq-surface);
    border: 1px solid var(--magehq-border);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(17, 26, 45, .06);
}

.magehq-account-card--hero {
    padding: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.magehq-account-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(91, 63, 255, .08);
    color: var(--magehq-accent);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.magehq-account-card__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.1;
    color: var(--magehq-text);
}

.magehq-account-card__text {
    margin: .75rem 0 0;
    color: var(--magehq-muted);
    line-height: 1.7;
    max-width: 72ch;
}

.magehq-account-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.magehq-account-panel {
    padding: 1.2rem;
}

.magehq-account-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: .9rem;
}

.magehq-account-panel__label {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--magehq-muted);
    margin-bottom: .25rem;
}

.magehq-account-panel__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--magehq-text);
}

.magehq-account-panel__meta {
    margin-top: .25rem;
    color: var(--magehq-muted);
    line-height: 1.6;
}

.magehq-account-list {
    display: grid;
    gap: .8rem;
}

.magehq-account-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    color: var(--magehq-accent);
    text-decoration: none;
    transition: color .15s ease, transform .15s ease;
}

.magehq-account-link:hover {
    color: #4a2fff;
    transform: translateX(2px);
}

.magehq-account-address {
    font-style: normal;
    color: var(--magehq-text);
    line-height: 1.7;
}

.magehq-account-subtle {
    color: var(--magehq-muted);
}

@media (max-width: 900px) {
    .magehq-account-hero,
    .magehq-account-grid {
        grid-template-columns: 1fr;
    }
}
