/* ====================================================================
   ACCOUNT SETTINGS PAGE — Premium Overhaul
   ==================================================================== */

/* ---------- Hero Banner ---------- */
.acct-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg, 12px) var(--radius-lg, 12px);
    margin: 0 var(--space-lg) var(--space-xl);
}
.acct-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.acct-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(12,12,12,0.2) 0%,
        rgba(12,12,12,0.6) 50%,
        rgba(22,22,32,0.95) 100%);
}
.acct-hero-content {
    position: relative; z-index: 1;
    display: flex; align-items: flex-end; gap: var(--space-lg);
    height: 100%;
    padding: 0 var(--space-xl) var(--space-lg);
}
.acct-hero-info h1 {
    font-size: 1.5rem; font-weight: 700;
    color: var(--color-ivory);
    margin: 0 0 2px;
}
.acct-hero-info p {
    font-size: 0.85rem;
    color: var(--color-ivory-muted);
    margin: 0;
}
.acct-hero-meta {
    display: flex; align-items: center; gap: var(--space-sm);
    margin-top: var(--space-sm);
}
.acct-hero-joined {
    font-size: 0.75rem;
    color: var(--color-ivory-faint);
}

/* ---------- Avatar ---------- */
.acct-avatar-wrap {
    position: relative; flex-shrink: 0;
}
.acct-avatar-large {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--color-black-card);
    border: 3px solid var(--color-gold-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 700; color: var(--color-gold);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.acct-avatar-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.acct-avatar-edit {
    position: absolute; bottom: 2px; right: 2px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--color-gold);
    border: 2px solid var(--color-black-card);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0;
    transition: transform 0.2s ease;
}
.acct-avatar-edit:hover { transform: scale(1.15); }
.acct-avatar-edit svg { width: 14px; height: 14px; color: var(--color-black-deep); }

/* ---------- Tab Navigation ---------- */
.acct-nav {
    display: flex; gap: 0;
    position: relative;
    border-bottom: 1px solid var(--color-black-border);
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-2xl);
}
.acct-nav-item {
    display: flex; align-items: center; gap: 6px;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-ivory-muted);
    text-decoration: none;
    font-size: 0.85rem; font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.acct-nav-item svg {
    width: 15px; height: 15px;
    opacity: 0.5;
    transition: opacity 0.25s;
    flex-shrink: 0;
}
.acct-nav-item:hover { color: var(--color-ivory); }
.acct-nav-item:hover svg { opacity: 0.8; }
.acct-nav-item.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}
.acct-nav-item.active svg { opacity: 1; }

/* ---------- Sections ---------- */
.acct-section {
    padding: 0 var(--space-2xl);
}
.acct-section.hidden { display: none; }

/* Split layout: cards left, image right */
.acct-section-split {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-xl);
    align-items: start;
}
.acct-section-cards { min-width: 0; }

/* Section accent images — right column */
.acct-section-accent {
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    align-self: stretch;
    min-height: 200px;
}
/* <picture> wrapper must not become a layout box, or the img's height:100%
   resolves against the wrapper instead of .acct-section-accent. */
.acct-hero picture,
.acct-section-accent picture { display: contents; }
.acct-section-accent img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.45;
    border-radius: var(--radius-lg, 12px);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

/* ---------- Cards (Premium) ---------- */
.acct-card {
    background: var(--color-black-card);
    border: 1px solid var(--color-black-border);
    border-radius: var(--radius-lg, 12px);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    position: relative; overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.acct-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--color-gold-dim) 50%, transparent 90%);
    opacity: 0;
    transition: opacity 0.35s;
}
.acct-card:hover {
    border-color: rgba(184,151,46,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.acct-card:hover::before { opacity: 1; }
.acct-card-title {
    font-size: 1.1rem; font-weight: 600;
    color: var(--color-ivory);
    margin: 0 0 var(--space-md) 0;
}
.acct-card-desc {
    color: var(--color-ivory-muted);
    font-size: 0.85rem;
    margin: -8px 0 var(--space-lg) 0;
    line-height: 1.6;
}

/* ---------- Fields ---------- */
.acct-field { margin-bottom: var(--space-md); }
.acct-label {
    display: block;
    font-size: 0.78rem; font-weight: 500;
    color: var(--color-ivory-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.acct-input {
    width: 100%;
    padding: 11px 14px;
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 8px;
    color: var(--color-ivory);
    font-size: 0.9rem; font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}
.acct-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(184,151,46,0.1);
}
.acct-input:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.acct-field-row {
    display: flex; gap: var(--space-sm); align-items: flex-start;
}
.acct-field-row .acct-input { flex: 1; }
.acct-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--color-ivory-faint);
    margin-top: 4px;
}
.acct-value {
    color: var(--color-ivory);
    font-size: 0.9rem;
}

/* ---------- Messages ---------- */
.acct-msg {
    display: inline-block;
    font-size: 0.8rem;
    margin-top: var(--space-xs);
    margin-left: var(--space-sm);
}
.acct-msg.success { color: #4ade80; }
.acct-msg.error { color: #f87171; }

/* ---------- Selects ---------- */
.acct-select {
    width: 100%;
    padding: 11px 14px;
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 8px;
    color: var(--color-ivory);
    font-size: 0.85rem; font-family: inherit;
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F5F0E8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.acct-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(184,151,46,0.1);
}

/* ---------- Defaults Groups ---------- */
.acct-defaults-group {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.acct-defaults-group:last-of-type { border-bottom: none; padding-bottom: 0; }
.acct-defaults-group-header {
    display: flex; align-items: center; gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.acct-defaults-group-header svg {
    width: 18px; height: 18px;
    color: var(--color-gold); opacity: 0.8; flex-shrink: 0;
}
.acct-defaults-group-header h3 {
    font-size: 0.82rem; font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin: 0;
}
.acct-defaults-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

/* ---------- Toggle Switch ---------- */
.acct-toggle-grid {
    display: flex; flex-direction: column; gap: 0;
}
.acct-toggle-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.acct-toggle-row:last-child { border-bottom: none; }
.acct-toggle-label {
    font-size: 0.875rem; color: var(--color-ivory-muted);
}
.acct-toggle {
    position: relative; width: 44px; height: 24px;
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 12px; cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
}
.acct-toggle.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}
.acct-toggle::after {
    content: '';
    position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px;
    background: var(--color-ivory);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.acct-toggle.active::after {
    transform: translateX(20px);
}

/* ---------- Plan Overview ---------- */
.acct-plan-badge-row {
    display: flex; align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.acct-plan-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--color-gold);
    color: var(--color-black-deep);
    border-radius: 100px;
    font-size: 0.85rem; font-weight: 700;
}
.acct-plan-cycle {
    font-size: 0.8rem; color: var(--color-ivory-muted);
}
.acct-plan-limits {
    color: var(--color-ivory-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}
.acct-plan-renewal {
    color: var(--color-ivory-muted);
    font-size: 0.85rem; margin-top: var(--space-sm);
}
.acct-plan-notice {
    color: var(--color-gold);
    font-size: 0.85rem; margin-top: var(--space-xs);
    padding: 10px 14px;
    background: rgba(184,151,46,0.08);
    border: 1px solid rgba(184,151,46,0.15);
    border-radius: 8px;
}
.acct-plan-actions {
    display: flex; gap: var(--space-sm); margin-top: var(--space-md);
}

/* ---------- Usage Bar (Animated) ---------- */
.acct-usage { margin-bottom: var(--space-md); }
.acct-usage-label {
    display: flex; justify-content: space-between;
    font-size: 0.8rem; color: var(--color-ivory-muted);
    margin-bottom: 8px;
}
.acct-usage-bar {
    height: 10px;
    background: var(--color-black-deep);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.acct-usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B6914, var(--color-gold), #D4A843);
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* ---------- Usage Stats ---------- */
.acct-usage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.acct-stat-box {
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 10px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: border-color 0.3s;
}
.acct-stat-box:hover { border-color: rgba(184,151,46,0.2); }
.acct-stat-value {
    font-size: 1.75rem; font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 4px;
    line-height: 1;
}
.acct-stat-label {
    font-size: 0.72rem; color: var(--color-ivory-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
}

/* ---------- Plan Grid ---------- */
.acct-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.acct-plan-card-option {
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.acct-plan-card-option:hover {
    border-color: var(--color-gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.acct-plan-card-option.current {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(184,151,46,0.06), var(--color-black-deep) 60%);
}
.acct-plan-card-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: var(--space-sm);
}
.acct-plan-card-header h3 {
    font-size: 1rem; font-weight: 600; color: var(--color-ivory); margin: 0;
}
.acct-plan-price {
    font-size: 1.2rem; font-weight: 700; color: var(--color-gold);
}
.acct-plan-price small {
    font-size: 0.7rem; font-weight: 400; color: var(--color-ivory-muted);
}
.acct-plan-features {
    list-style: none; padding: 0; margin: 0 0 var(--space-md) 0;
}
.acct-plan-features li {
    font-size: 0.8rem; color: var(--color-ivory-muted); padding: 4px 0;
}
.acct-plan-features li::before {
    content: ''; display: inline-block; width: 4px; height: 4px;
    background: var(--color-gold); border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
}

/* ---------- Credit FAQ ---------- */
.acct-credit-faq {
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 8px; padding: var(--space-lg);
}
.acct-credit-faq h3 {
    font-size: 0.9rem; font-weight: 600; color: var(--color-ivory);
    margin: 0 0 var(--space-sm) 0;
}
.acct-faq-item {
    font-size: 0.8rem; color: var(--color-ivory-muted);
    line-height: 1.6; margin-bottom: var(--space-sm);
}
.acct-faq-item:last-child { margin-bottom: 0; }
.acct-faq-item strong { color: var(--color-ivory); }

/* ---------- Sessions ---------- */
.acct-sessions-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.acct-session-row {
    display: flex; align-items: center; gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-black-deep);
    border: 1px solid var(--color-black-border);
    border-radius: 10px;
    transition: border-color 0.25s;
}
.acct-session-row:hover { border-color: rgba(184,151,46,0.2); }
.acct-session-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(184,151,46,0.08);
    border-radius: 10px;
    flex-shrink: 0;
}
.acct-session-icon svg { width: 20px; height: 20px; color: var(--color-gold); }
.acct-session-info { flex: 1; min-width: 0; }
.acct-session-browser {
    display: block; font-size: 0.875rem; color: var(--color-ivory);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.acct-session-time { font-size: 0.75rem; color: var(--color-ivory-muted); }
.acct-session-current {
    font-size: 0.7rem; padding: 3px 10px;
    background: rgba(184,151,46,0.1);
    color: var(--color-gold);
    border: 1px solid rgba(184,151,46,0.2);
    border-radius: 100px; white-space: nowrap;
}

/* ---------- Billing History Table ---------- */
.acct-billing-table { overflow-x: auto; }
.acct-billing-table table { width: 100%; border-collapse: collapse; }
.acct-billing-table th {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--color-ivory-muted);
    border-bottom: 1px solid var(--color-black-border);
}
.acct-billing-table td {
    padding: 10px var(--space-md);
    font-size: 0.85rem; color: var(--color-ivory-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.acct-billing-table tr:hover td { color: var(--color-ivory); }
.acct-billing-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.7rem; font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}
.acct-billing-badge.upgrade { background: rgba(74,222,128,0.12); color: #4ade80; }
.acct-billing-badge.downgrade { background: rgba(251,191,36,0.12); color: #fbbf24; }
.acct-billing-badge.cancel { background: rgba(248,113,113,0.12); color: #f87171; }
.acct-billing-badge.new { background: rgba(96,165,250,0.12); color: #60a5fa; }

/* ---------- Login History ---------- */
.acct-login-table { overflow-x: auto; }
.acct-login-table table { width: 100%; border-collapse: collapse; }
.acct-login-table th {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--color-ivory-muted);
    border-bottom: 1px solid var(--color-black-border);
}
.acct-login-table td {
    padding: 10px var(--space-md);
    font-size: 0.85rem; color: var(--color-ivory-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.acct-login-table tr:hover td { color: var(--color-ivory); }
.acct-login-method {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.7rem; font-weight: 600;
    border-radius: 4px;
    background: rgba(184,151,46,0.1);
    color: var(--color-gold);
}

/* ---------- Skeleton Loaders ---------- */
@keyframes acctShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.acct-skeleton {
    background: linear-gradient(90deg,
        var(--color-black-card) 25%,
        rgba(255,255,255,0.04) 50%,
        var(--color-black-card) 75%);
    background-size: 200% 100%;
    animation: acctShimmer 1.8s ease infinite;
    border-radius: 8px;
}
.acct-skeleton-row {
    height: 56px;
    margin-bottom: var(--space-sm);
}
.acct-skeleton-stat {
    height: 90px;
    border-radius: 10px;
}
.acct-skeleton-table-row {
    height: 40px;
    margin-bottom: 4px;
}

/* ---------- Danger Zone ---------- */
.acct-card-danger {
    border-color: rgba(220,38,38,0.3);
}
.acct-card-danger:hover {
    border-color: rgba(220,38,38,0.5);
}
.acct-card-danger::before {
    background: linear-gradient(90deg, transparent 10%, rgba(220,38,38,0.3) 50%, transparent 90%);
}
.acct-card-danger .acct-card-title { color: #f87171; }
.acct-danger-action {
    display: flex; justify-content: space-between; align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(220,38,38,0.04);
    border: 1px solid rgba(220,38,38,0.1);
    border-radius: 8px;
}
.acct-danger-action div { flex: 1; }
.acct-danger-action strong {
    display: block; font-size: 0.9rem; color: var(--color-ivory); margin-bottom: 2px;
}
.acct-danger-action p {
    font-size: 0.8rem; color: var(--color-ivory-muted); margin: 0;
}
.btn-danger {
    background: #dc2626; color: #fff; border: none;
    transition: background 0.2s;
}
.btn-danger:hover { background: #b91c1c; }
.btn-muted { opacity: 0.6; }
.btn-muted:hover { opacity: 1; }

/* ---------- Modal + Downgrade Option Cards: relocated to components.css
   (both pricing.html and account.html load it — one shared definition).
   See PLAN-CHANGE-CONSOLIDATION-PLAN.md Session 2.4. ---------- */

/* ---------- Billing Cycle Toggle ---------- */
.acct-billing-toggle {
    display: flex; gap: var(--space-xs);
    margin: var(--space-md) 0;
    background: rgba(255,255,255,0.04);
    border-radius: 8px; padding: 4px;
}
.acct-billing-toggle label {
    flex: 1; text-align: center;
    padding: 8px 12px; font-size: 0.82rem;
    color: var(--color-ivory-muted);
    border-radius: 6px; cursor: pointer;
    transition: all 0.2s;
}
.acct-billing-toggle label.active {
    background: var(--color-gold);
    color: #0c0c0c; font-weight: 600;
}
.acct-billing-toggle input[type="radio"] { display: none; }
.acct-annual-save {
    font-size: 0.7rem;
    background: rgba(76,175,80,0.2); color: #4CAF50;
    padding: 1px 5px; border-radius: 4px; margin-left: 4px;
}

/* ---------- Notification Preferences ---------- */
.acct-notif-grid {
    display: flex; flex-direction: column; gap: 0;
}
.acct-notif-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.acct-notif-row:last-child { border-bottom: none; }
.acct-notif-info { flex: 1; }
.acct-notif-title {
    font-size: 0.875rem; color: var(--color-ivory);
    display: block; margin-bottom: 2px;
}
.acct-notif-desc {
    font-size: 0.75rem; color: var(--color-ivory-muted);
}

/* ---------- Data Export ---------- */
.acct-export-info {
    display: flex; align-items: center; gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(96,165,250,0.04);
    border: 1px solid rgba(96,165,250,0.1);
    border-radius: 8px;
    margin-bottom: var(--space-lg);
}
.acct-export-info svg {
    width: 20px; height: 20px; color: #60a5fa; flex-shrink: 0;
}
.acct-export-info span {
    font-size: 0.8rem; color: var(--color-ivory-muted); line-height: 1.5;
}

/* ---------- Empty State ---------- */
.acct-empty {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--color-ivory-muted);
    font-size: 0.85rem;
}
.acct-empty svg {
    width: 32px; height: 32px;
    opacity: 0.3; margin-bottom: var(--space-sm);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .acct-section-split {
        grid-template-columns: 1fr;
    }
    .acct-section-accent {
        display: none;
    }
}
@media (max-width: 768px) {
    .acct-hero { height: 180px; }
    .acct-hero-content {
        flex-direction: column; align-items: flex-start;
        gap: var(--space-sm);
        padding: 0 var(--space-md) var(--space-md);
    }
    .acct-avatar-large { width: 60px; height: 60px; font-size: 1.5rem; }
    .acct-hero-info h1 { font-size: 1.2rem; }
    .acct-nav { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; padding: 0 var(--space-md); }
    .acct-section { padding: 0 var(--space-md); }
    .acct-nav-item span { display: none; }
    .acct-nav-item svg { width: 18px; height: 18px; }
    .acct-defaults-grid { grid-template-columns: 1fr; }
    .acct-plan-grid { grid-template-columns: 1fr; }
    .acct-usage-stats { grid-template-columns: 1fr; }
    .acct-danger-action { flex-direction: column; align-items: flex-start; }
    .acct-field-row { flex-direction: column; }
}

