.brand-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    margin-bottom: 22px;
}
.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--gradient-main);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: white;
    box-shadow: 0 16px 38px rgba(124, 58, 237, .44);
}
.brand-name { font-weight: 900; font-size: 20px; letter-spacing: -.04em; }
.brand-subtitle { color: var(--muted); font-size: 12px; margin-top: 2px; }
.sidebar-section-label {
    margin: 8px 8px 12px;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
}
.sidebar-menu { display: flex; flex-direction: column; gap: 7px; }
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    color: var(--text-soft);
    text-decoration: none;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    transition: .22s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.sidebar-link:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: .22s ease;
}
.sidebar-link span { position: relative; z-index: 1; }
.sidebar-link:hover,
.sidebar-link.active {
    color: white;
    transform: translateX(4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 12px 32px rgba(79,70,229,.22);
}
.sidebar-link:hover:before,
.sidebar-link.active:before { opacity: .95; }
.sidebar-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.09);
    font-size: 13px;
}
.sidebar-upgrade-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, .3), transparent 30%),
        linear-gradient(135deg, rgba(124, 58, 237, .22), rgba(236, 72, 153, .12));
    border: 1px solid rgba(255,255,255,.16);
}
.sidebar-upgrade-card h3 { margin: 10px 0 6px; font-size: 17px; }
.sidebar-upgrade-card p { margin: 0; color: var(--text-soft); line-height: 1.55; font-size: 13px; }
.upgrade-badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: white;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 800;
    font-size: 11px;
}
.mobile-menu-btn {
    display: none;
    border: 0;
    color: white;
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    width: 44px;
    height: 44px;
    font-size: 20px;
}
.topbar-title-block { display: flex; flex-direction: column; gap: 2px; }
.topbar-kicker {
    color: var(--cyan);
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.topbar-title-block strong { font-size: 19px; letter-spacing: -.03em; }
.topbar-title-block span { color: var(--muted); font-size: 13px; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.search-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}
.notification-dot {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
}
.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
}
.user-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient-hot);
    font-weight: 900;
}
.user-chip strong { display: block; font-size: 13px; }
.user-chip span { display: block; color: var(--muted); font-size: 11px; }
.premium-panel {
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
    position: relative;
    overflow: hidden;
}
.premium-panel:before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 20%, transparent 65%, rgba(255,255,255,.08));
    opacity: .5;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(340px, .8fr);
    gap: 20px;
    margin-bottom: 20px;
}
.hero-card { padding: 34px; min-height: 310px; }
.hero-card h1 {
    max-width: 940px;
    margin: 10px 0 12px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 0.96;
    letter-spacing: -.07em;
}
.hero-card p {
    max-width: 900px;
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bdefff;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.eyebrow:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: .22s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    transform: skewX(-18deg);
    transition: .55s ease;
}
.btn:hover:after { left: 125%; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: white;
    background: var(--gradient-main);
    box-shadow: 0 16px 38px rgba(79, 70, 229, .38);
}
.btn-secondary {
    color: white;
    background: var(--gradient-gold);
    box-shadow: 0 16px 38px rgba(236, 72, 153, .28);
}
.btn-ghost {
    color: var(--text);
    background: rgba(255,255,255,.08);
    border-color: var(--border);
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.trust-row span {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
}
.hero-side-card { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-side-card h2 { margin: 22px 0 8px; font-size: 32px; letter-spacing: -.06em; }
.hero-side-card p { color: var(--text-soft); line-height: 1.65; margin: 0; }
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, .24);
    font-size: 12px;
    font-weight: 900;
}
.live-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px var(--green);
}
.mini-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.mini-metrics div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}
.mini-metrics strong { display: block; font-size: 30px; letter-spacing: -.06em; }
.mini-metrics span { color: var(--muted); font-size: 12px; font-weight: 700; }
.floating-card { animation: softFloat 4.8s ease-in-out infinite; }
@keyframes softFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}
.stat-card {
    padding: 22px;
    transition: .24s ease;
}
.animated-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.28);
    box-shadow: var(--shadow-glow);
}
.stat-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 16px;
    color: white;
    font-size: 18px;
}
.stat-icon.purple { background: var(--gradient-main); }
.stat-icon.pink { background: var(--gradient-hot); }
.stat-icon.cyan { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.stat-icon.orange { background: var(--gradient-gold); }
.stat-card span { color: var(--muted); font-size: 13px; font-weight: 800; }
.stat-card strong { display: block; margin: 8px 0 8px; font-size: 36px; letter-spacing: -.06em; }
.stat-card p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.5; }
.two-column-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    margin-bottom: 20px;
}
.section-card { padding: 26px; }
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.section-header h2,
.section-heading h2,
.cta-strip h2 {
    margin: 8px 0 0;
    font-size: 28px;
    letter-spacing: -.05em;
}
.status-pill {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(6, 182, 212, .12);
    color: #bdefff;
    border: 1px solid rgba(6,182,212,.25);
    font-size: 12px;
    font-weight: 900;
}
.progress-list { display: flex; flex-direction: column; gap: 18px; }
.progress-top { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: 14px; font-weight: 900; }
.progress-top strong { color: #bdefff; }
.progress-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}
.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient-main);
    box-shadow: 0 0 22px rgba(6, 182, 212, .4);
    animation: progressGlow 2.3s ease-in-out infinite;
}
@keyframes progressGlow { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.25); } }
.action-list { display: grid; gap: 12px; }
.action-list a {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    color: white;
    text-decoration: none;
    transition: .22s ease;
}
.action-list a:hover { transform: translateX(5px); background: rgba(255,255,255,.1); }
.action-list a span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.1); }
.action-list a strong { font-size: 14px; }
.action-list a em { color: var(--muted); font-size: 12px; font-style: normal; font-weight: 800; }
.cta-strip {
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-strip p { margin: 10px 0 0; color: var(--text-soft); line-height: 1.6; }
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 10px 0 18px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}
.product-card { padding: 20px; }
.product-art {
    height: 180px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.product-art:after {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255,255,255,.24), transparent 42%);
    animation: rotateGlow 8s linear infinite;
}
.product-art span { position: relative; z-index: 1; font-size: 34px; font-weight: 1000; letter-spacing: -.07em; }
.gradient-one { background: var(--gradient-main); }
.gradient-two { background: var(--gradient-gold); }
.gradient-three { background: var(--gradient-hot); }
@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.product-badges span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 900;
}
.product-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.04em; }
.product-card p { margin: 0; color: var(--text-soft); line-height: 1.6; font-size: 14px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
