:root {
    --primary: #6d4aff;
    --primary-dark: #5738df;
    --primary-soft: #f0edff;
    --ink: #182230;
    --muted: #748094;
    --line: #e8ecf2;
    --bg: #f7f8fc;
    --card: #fff;
    --sidebar: #111827;
    --success: #1aa36f;
    --warning: #f39a35;
    --danger: #e65353;
    --blue: #4387ff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px
}

a {
    text-decoration: none;
    color: inherit
}

.btn {
    border-radius: 9px;
    font-weight: 600;
    padding: .62rem 1rem
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 14px rgba(109, 74, 255, .18)
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark)
}

.portal-shell {
    min-height: 100vh
}

.portal-sidebar {
    position: fixed;
    z-index: 1040;
    left: 0;
    top: 0;
    bottom: 0;
    width: 258px;
    background: var(--sidebar);
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: auto
}

.portal-main {
    margin-left: 258px;
    min-height: 100vh
}

.brand-wrap {
    height: 76px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.4px
}

.brand-accent {
    color: #a995ff
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #8b72ff, #5e3df0);
    box-shadow: 0 6px 16px rgba(109, 74, 255, .3);
    font-size: 16px
}

.workspace-switcher {
    margin: 18px 14px 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    background: rgba(255, 255, 255, .045);
    display: flex;
    align-items: center;
    gap: 10px
}

.workspace-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700
}

.workspace-copy {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.workspace-copy small {
    font-size: 9px;
    color: #8791a5;
    letter-spacing: .08em
}

.workspace-copy strong {
    font-size: 12px
}

.workspace-switcher>i {
    font-size: 10px;
    color: #8d97aa
}

.portal-nav {
    padding: 12px 13px
}

.nav-label {
    padding: 11px 11px 7px;
    color: #7f899b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.portal-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 8px;
    color: #aeb7c7;
    font-size: 13px;
    font-weight: 500;
    margin: 2px 0;
    transition: .15s
}

.portal-nav-link:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.portal-nav-link.active {
    background: linear-gradient(90deg, rgba(109, 74, 255, .95), rgba(109, 74, 255, .75));
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16)
}

.nav-icon {
    width: 20px;
    text-align: center;
    font-size: 16px
}

.nav-count {
    margin-left: auto;
    background: rgba(255, 255, 255, .09);
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 10px
}

.nav-status-dot {
    width: 7px;
    height: 7px;
    background: #36c98f;
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 0 3px rgba(54, 201, 143, .12)
}

.sidebar-bottom {
    margin-top: auto;
    padding: 14px
}

.upgrade-card {
    padding: 13px;
    border-radius: 11px;
    background: linear-gradient(135deg, #211d45, #28224d);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 10px
}

.upgrade-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(169, 149, 255, .14);
    color: #b9aaff;
    display: grid;
    place-items: center
}

.upgrade-card strong {
    display: block;
    font-size: 11px
}

.upgrade-card small {
    display: block;
    color: #858da0;
    font-size: 9px;
    margin-top: 2px
}

.upgrade-card>i {
    margin-left: auto;
    color: #a995ff
}

.sidebar-version {
    text-align: center;
    color: #5f697a;
    font-size: 9px;
    padding: 13px 0 0
}

.sidebar-overlay {
    display: none
}

.portal-header {
    height: 76px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 100
}

.header-left,
.header-actions {
    display: flex;
    align-items: center
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px
}

.breadcrumb-wrap i {
    font-size: 9px;
    color: #aab2bf
}

.breadcrumb-muted {
    color: #99a2b1
}

.header-actions {
    gap: 6px
}

.header-icon-btn,
.mobile-menu-btn,
.icon-btn {
    border: 0;
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #697587;
    font-size: 17px
}

.header-icon-btn:hover,
.icon-btn:hover {
    background: #f1f3f7;
    color: var(--primary)
}

.notification-btn {
    position: relative
}

.notification-btn span {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #ef5d68;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: content-box
}

.profile-trigger {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 0 4px 9px
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 12px
}

.profile-info {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25
}

.profile-info strong {
    font-size: 12px
}

.profile-info small {
    font-size: 10px;
    color: #8b95a5
}

.profile-chevron {
    font-size: 10px;
    color: #929baa;
    margin-left: 3px
}

.profile-menu {
    min-width: 220px;
    border: 1px solid var(--line);
    border-radius: 11px;
    box-shadow: 0 15px 45px rgba(24, 34, 48, .12);
    padding: 8px
}

.dropdown-user {
    padding: 9px 10px
}

.dropdown-user strong,
.dropdown-user small {
    display: block
}

.dropdown-user small {
    color: var(--muted);
    margin-top: 3px;
    font-size: 11px
}

.profile-menu .dropdown-item {
    border-radius: 7px;
    padding: 9px 10px;
    font-size: 12px
}

.profile-menu .dropdown-item i {
    width: 20px
}

.portal-content {
    padding-top: 30px;
    max-width: 1600px;
    margin: auto
}

.portal-footer {
    display: flex;
    justify-content: space-between;
    color: #9aa3b2;
    font-size: 10px;
    padding: 18px 30px 25px
}

.page-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px
}

.page-eyebrow,
.auth-kicker {
    display: block;
    color: #8b94a4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 6px
}

.page-heading-row h1 {
    font-size: 27px;
    letter-spacing: -.7px;
    margin: 0 0 5px;
    font-weight: 700
}

.page-heading-row p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.heading-actions {
    display: flex;
    gap: 9px
}

.heading-wave {
    font-size: 21px
}

.panel-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 2px 7px rgba(24, 34, 48, .025)
}

.panel-header {
    padding: 20px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

.panel-header h3 {
    font-size: 14px;
    margin: 0 0 4px;
    font-weight: 700
}

.panel-header p {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

.panel-link {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 18px 15px;
    min-height: 178px;
    position: relative;
    overflow: hidden
}

.stat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 15px
}

.stat-icon.purple {
    background: #f0edff;
    color: var(--primary)
}

.stat-icon.blue {
    background: #edf4ff;
    color: #4387ff
}

.stat-icon.green {
    background: #eaf9f2;
    color: #1aa36f
}

.stat-icon.orange {
    background: #fff3e7;
    color: #e89131
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 18px
}

.stat-unit {
    font-size: 14px;
    color: #9ba3af;
    font-weight: 500
}

.stat-change {
    font-size: 10px;
    margin-top: 6px;
    font-weight: 600
}

.stat-change span {
    font-weight: 400;
    color: #9aa3b2;
    margin-left: 3px
}

.positive {
    color: var(--success)
}

.sparkline {
    height: 36px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    position: absolute;
    bottom: 12px;
    right: 18px;
    left: 18px;
    opacity: .22
}

.sparkline span {
    background: var(--primary);
    width: 9%;
    border-radius: 3px 3px 0 0
}

.metric-line {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    height: 5px;
    background: #edf0f5;
    border-radius: 10px
}

.metric-line div {
    height: 100%;
    background: var(--primary);
    border-radius: 10px
}

.position-bars {
    height: 36px;
    display: flex;
    gap: 5px;
    align-items: flex-end;
    position: absolute;
    bottom: 13px;
    right: 18px;
    left: 18px
}

.position-bars span {
    width: 11%;
    background: #50b98d;
    border-radius: 3px 3px 0 0;
    opacity: .45
}

.health-progress {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 7px;
    background: #edf0f5;
    border-radius: 10px
}

.health-progress div {
    height: 100%;
    background: #34b982;
    border-radius: 10px
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 15px
}

.chart-panel {
    min-height: 355px
}

.chart-legend {
    display: flex;
    gap: 15px;
    color: #8993a2;
    font-size: 10px
}

.legend-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px
}

.legend-dot.traffic {
    background: var(--primary)
}

.legend-dot.visibility {
    background: #9ba6b6
}

.chart-area {
    display: flex;
    height: 270px;
    padding: 8px 20px 20px
}

.chart-y {
    width: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 27px;
    color: #a4acb9;
    font-size: 9px
}

.chart-main {
    position: relative;
    flex: 1
}

.grid-line {
    height: 1px;
    background: #eef0f4;
    margin: 0 0 44px
}

.performance-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 220px;
    color: var(--primary)
}

.chart-x {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    color: #a4acb9;
    font-size: 9px
}

.movement-list {
    padding: 0 20px 14px
}

.movement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5
}

.movement-row:last-child {
    border-bottom: 0
}

.movement-key {
    display: flex;
    align-items: center;
    gap: 10px
}

.movement-key>div {
    display: flex;
    flex-direction: column
}

.movement-key strong {
    font-size: 11px
}

.movement-key small {
    font-size: 9px;
    color: #98a1af;
    margin-top: 3px
}

.rank-up,
.rank-down {
    font-size: 10px;
    font-weight: 700;
    width: 34px;
    text-align: center
}

.rank-up {
    color: #1aa36f
}

.rank-down {
    color: #e35b5b
}

.mini-score {
    font-size: 10px;
    font-weight: 700
}

.mini-score.good {
    color: #1aa36f
}

.mini-score.warn {
    color: #e35b5b
}

.site-table {
    padding: 0 20px 10px
}

.site-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 20px;
    align-items: center;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 11px
}

.site-row:last-child {
    border-bottom: 0
}

.site-head {
    color: #9aa3b1;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding-top: 0
}

.site-name {
    display: flex;
    align-items: center;
    gap: 10px
}

.site-name>div {
    display: flex;
    flex-direction: column
}

.site-name strong {
    font-size: 11px
}

.site-name small {
    font-size: 9px;
    color: #99a2b0;
    margin-top: 3px
}

.site-favicon {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700
}

.purple-bg {
    background: #eeeaff;
    color: #6847ef
}

.blue-bg {
    background: #eaf2ff;
    color: #4284f4
}

.green-bg {
    background: #e9f8f1;
    color: #23986d
}

.health-pill {
    display: inline-flex;
    min-width: 32px;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 6px;
    font-size: 10px
}

.health-pill.excellent,
.health-pill.good {
    background: #e9f8f1;
    color: #1b9b6b
}

.site-row em {
    font-style: normal;
    font-size: 9px;
    margin-left: 3px
}

.site-row em.up {
    color: #1aa36f
}

.task-count {
    font-size: 10px;
    background: #f0edff;
    color: var(--primary);
    padding: 5px 8px;
    border-radius: 20px;
    font-weight: 600
}

.task-list {
    padding: 0 20px 10px
}

.task-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5
}

.task-row:last-child {
    border: 0
}

.task-row>div {
    display: flex;
    flex-direction: column;
    flex: 1
}

.task-row strong {
    font-size: 11px
}

.task-row small {
    color: #98a1af;
    font-size: 9px;
    margin-top: 3px
}

.task-check {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 12px
}

.task-check.orange {
    background: #fff3e7;
    color: #e89131
}

.task-check.purple {
    background: #f0edff;
    color: var(--primary)
}

.task-check.blue {
    background: #edf4ff;
    color: #4387ff
}

.task-check.green {
    background: #eaf9f2;
    color: #1aa36f
}

.task-arrow {
    color: #a1a9b5;
    font-size: 11px
}

.toolbar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 8px
}

.search-box {
    height: 39px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 11px;
    flex: 1;
    max-width: 420px
}

.search-box i {
    color: #9aa3b2;
    margin-right: 8px
}

.search-box input {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 11px
}

.search-box.small {
    max-width: 240px
}

.website-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    transition: .18s
}

.website-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(24, 34, 48, .07)
}

.website-card-top {
    display: flex;
    justify-content: space-between
}

.website-score {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 23px 0
}

.website-score>div:last-child {
    display: flex;
    flex-direction: column
}

.website-score small {
    color: #99a2b0;
    font-size: 10px
}

.website-score strong {
    font-size: 15px;
    margin-top: 4px
}

.website-score em {
    font-style: normal;
    color: #1aa36f;
    font-size: 9px;
    margin-top: 5px
}

.score-ring {
    --score: 90;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) calc(var(--score)*1%), #edf0f4 0);
    display: grid;
    place-items: center;
    position: relative
}

.score-ring:after {
    content: "";
    position: absolute;
    inset: 7px;
    background: #fff;
    border-radius: 50%
}

.score-ring span {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 700
}

.score-ring.large {
    width: 94px;
    height: 94px
}

.score-ring.large:after {
    inset: 9px
}

.website-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
    padding: 13px 0
}

.website-metrics div {
    display: flex;
    flex-direction: column
}

.website-metrics div+div {
    border-left: 1px solid #f0f2f5;
    padding-left: 15px
}

.website-metrics small {
    font-size: 9px;
    color: #9aa3b0
}

.website-metrics strong {
    font-size: 12px;
    margin-top: 5px
}

.website-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    font-size: 9px;
    color: #9aa3b0
}

.website-card-footer a {
    color: var(--primary);
    font-weight: 600
}

.modern-table {
    font-size: 11px
}

.modern-table thead th {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9aa3b0;
    background: #fbfcfd;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px
}

.modern-table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-color: #f0f2f5
}

.intent-pill,
.role-pill {
    background: #f2f4f8;
    color: #667184;
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 9px
}

.position-badge {
    font-weight: 700;
    background: #f0edff;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 6px
}

.url-cell {
    color: #7e8999
}

.table-user {
    display: flex;
    align-items: center;
    gap: 10px
}

.table-user>div {
    display: flex;
    flex-direction: column
}

.table-user small {
    font-size: 9px;
    color: #98a1af;
    margin-top: 3px
}

.table-avatar {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 700
}

.audit-hero {
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.audit-score-block {
    display: flex;
    align-items: center;
    gap: 20px
}

.audit-score-block h2 {
    font-size: 22px;
    margin: 4px 0
}

.audit-score-block p {
    font-size: 10px;
    color: var(--muted);
    margin: 0
}

.audit-breakdown {
    display: flex;
    gap: 35px
}

.audit-breakdown>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.audit-breakdown strong {
    font-size: 18px
}

.audit-breakdown small {
    color: #99a2b0;
    font-size: 9px
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.dot.red,
.issue-status.red {
    background: #e65353
}

.dot.orange,
.issue-status.orange {
    background: #f39a35
}

.dot.green,
.issue-status.green {
    background: #25ad78
}

.dot.blue,
.issue-status.blue {
    background: #4387ff
}

.issue-summary {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px
}

.issue-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: grid;
    place-items: center
}

.issue-icon.red {
    background: #fff0f0;
    color: #e65353
}

.issue-icon.orange {
    background: #fff3e7;
    color: #e89131
}

.issue-icon.blue {
    background: #edf4ff;
    color: #4387ff
}

.issue-summary div:nth-child(2) {
    display: flex;
    flex-direction: column
}

.issue-summary small {
    color: #8f99a7;
    font-size: 10px
}

.issue-summary strong {
    font-size: 21px;
    margin-top: 2px
}

.issue-list {
    padding: 0 20px 10px
}

.issue-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5
}

.issue-row:last-child {
    border: 0
}

.issue-row>div {
    flex: 1;
    display: flex;
    flex-direction: column
}

.issue-row strong {
    font-size: 11px
}

.issue-row small {
    font-size: 9px;
    color: #98a1af;
    margin-top: 3px
}

.issue-status {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.severity {
    font-size: 9px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 20px
}

.severity.red {
    background: #fff0f0;
    color: #d94c4c
}

.severity.orange {
    background: #fff3e7;
    color: #d9852d
}

.severity.blue {
    background: #edf4ff;
    color: #3d7ee8
}

.content-tabs {
    display: flex;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px
}

.content-tabs a {
    padding: 0 0 12px;
    color: #8d97a6;
    font-size: 11px;
    font-weight: 600;
    border-bottom: 2px solid transparent
}

.content-tabs a.active {
    color: var(--primary);
    border-color: var(--primary)
}

.content-tabs span {
    background: #f0f2f6;
    border-radius: 15px;
    padding: 2px 6px;
    font-size: 8px;
    margin-left: 4px
}

.content-row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f2f5
}

.content-row:last-child {
    border: 0
}

.content-type {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #f0edff;
    color: var(--primary);
    display: grid;
    place-items: center
}

.content-title {
    flex: 1;
    display: flex;
    flex-direction: column
}

.content-title strong {
    font-size: 11px
}

.content-title small {
    font-size: 9px;
    color: #99a2b0;
    margin-top: 3px
}

.content-status {
    font-size: 9px;
    font-weight: 700;
    border-radius: 20px;
    padding: 5px 9px
}

.content-status.published {
    background: #eaf9f2;
    color: #1b9b6b
}

.content-status.in-review {
    background: #f0edff;
    color: var(--primary)
}

.content-status.draft {
    background: #fff3e7;
    color: #d9852d
}

.content-score {
    width: 70px;
    display: flex;
    flex-direction: column
}

.content-score small {
    font-size: 8px;
    color: #9aa3b0
}

.content-score strong {
    font-size: 13px;
    margin-top: 2px
}

.report-banner {
    background: linear-gradient(100deg, #5c40e4, #7a5cf4);
    border-radius: 13px;
    color: #fff;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(109, 74, 255, .16)
}

.report-banner-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .12);
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 21px
}

.report-banner strong {
    font-size: 14px
}

.report-banner p {
    margin: 4px 0 0;
    color: #ddd7ff;
    font-size: 10px
}

.report-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px
}

.report-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #fff0f0;
    color: #e65353;
    display: grid;
    place-items: center;
    font-size: 18px;
    float: left;
    margin-right: 12px
}

.report-card>.content-status {
    float: right
}

.report-card h3 {
    clear: both;
    padding-top: 18px;
    font-size: 14px;
    margin: 0 0 4px
}

.report-card p {
    font-size: 10px;
    color: var(--muted);
    margin: 0
}

.report-meta {
    display: flex;
    gap: 18px;
    color: #99a2b0;
    font-size: 9px;
    margin-top: 20px
}

.report-meta i {
    margin-right: 4px
}

.settings-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 18px
}

.settings-nav {
    padding: 10px
}

.settings-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    font-size: 11px;
    color: #7d8796;
    margin: 2px 0
}

.settings-nav a.active,
.settings-nav a:hover {
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600
}

.settings-nav i {
    width: 20px
}

.settings-content {
    min-height: 430px
}

.settings-form {
    padding: 20px
}

.settings-form label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 7px
}

.settings-form .form-control,
.settings-form .form-select {
    border-color: var(--line);
    border-radius: 8px;
    font-size: 11px;
    padding: .65rem .8rem
}

.settings-form hr {
    border-color: var(--line);
    margin: 25px 0
}

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 48% 52%;
    background: #fff
}

.auth-visual {
    position: relative;
    overflow: hidden;
    background: #111827;
    color: #fff;
    min-height: 100vh;
    padding: 34px 8%;
    display: flex;
    flex-direction: column
}

.auth-visual:before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -300px;
    top: -280px;
    border-radius: 50%;
    border: 1px solid rgba(169, 149, 255, .12);
    box-shadow: 0 0 0 100px rgba(169, 149, 255, .025), 0 0 0 200px rgba(169, 149, 255, .018)
}

.auth-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px)
}

.auth-glow-one {
    width: 260px;
    height: 260px;
    background: rgba(109, 74, 255, .2);
    top: 20%;
    left: -120px;
    filter: blur(80px)
}

.auth-glow-two {
    width: 240px;
    height: 240px;
    background: rgba(63, 140, 255, .13);
    bottom: 5%;
    right: -100px;
    filter: blur(70px)
}

.auth-brand {
    position: relative;
    z-index: 2
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: auto 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #a995ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em
}

.auth-hero h1 {
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 22px 0 17px;
    max-width: 600px
}

.auth-hero h1 span {
    color: #a995ff
}

.auth-hero p {
    color: #9ca6b7;
    font-size: 14px;
    line-height: 1.8;
    max-width: 510px
}

.auth-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px
}

.proof-avatars {
    display: flex
}

.proof-avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #252d3c;
    border: 2px solid #111827;
    margin-left: -6px;
    color: #d7dce5;
    font-size: 8px;
    font-weight: 700
}

.proof-avatars span:first-child {
    margin-left: 0;
    background: #7050ed
}

.proof-avatars span:nth-child(2) {
    background: #3f7cf0
}

.proof-avatars span:nth-child(3) {
    background: #36a57a
}

.auth-proof strong,
.auth-proof small {
    display: block
}

.auth-proof strong {
    font-size: 10px
}

.auth-proof small {
    color: #7e899b;
    font-size: 9px;
    margin-top: 3px
}

.auth-mini-dashboard {
    margin-top: 60px;
    position: relative;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 18px 20px;
    max-width: 560px;
    backdrop-filter: blur(10px)
}

.mini-top {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #8e98a9
}

.mini-top strong {
    color: #49c99a
}

.mini-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 15px
}

.mini-chart span {
    flex: 1;
    background: linear-gradient(180deg, #9c89ff, rgba(156, 137, 255, .18));
    border-radius: 4px 4px 0 0
}

.auth-footer-note {
    position: relative;
    z-index: 2;
    color: #5f697a;
    font-size: 9px
}

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px
}

.auth-form-wrap {
    width: 100%;
    max-width: 450px
}

.auth-heading {
    margin-bottom: 28px
}

.auth-heading h2 {
    font-size: 28px;
    letter-spacing: -.8px;
    margin: 5px 0 8px
}

.auth-heading p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.7
}

.auth-kicker {
    color: var(--primary)
}

.modern-form .form-field {
    margin-bottom: 20px
}

.modern-form label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px
}

.input-icon-wrap {
    position: relative
}

.input-icon-wrap>i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca5b2;
    font-size: 15px
}

.input-icon-wrap input {
    width: 100%;
    height: 47px;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 0 42px;
    font-size: 12px;
    outline: 0;
    transition: .15s;
    background: #fff
}

.input-icon-wrap input:focus {
    border-color: #b5a7ff;
    box-shadow: 0 0 0 4px rgba(109, 74, 255, .08)
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 5px;
    height: 37px;
    width: 37px;
    border: 0;
    background: transparent;
    color: #8e97a5
}

.small-link {
    font-size: 10px;
    color: var(--primary);
    font-weight: 600
}

.remember-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #6f7a8a;
    font-size: 10px !important;
    font-weight: 400 !important
}

.remember-check input {
    display: none
}

.remember-check span {
    width: 16px;
    height: 16px;
    border: 1px solid #d7dce4;
    border-radius: 4px;
    display: inline-block
}

.remember-check input:checked+span {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: inset 0 0 0 3px #fff
}

.auth-submit {
    height: 48px;
    font-size: 12px
}

.modern-alert {
    border: 0;
    border-radius: 9px;
    font-size: 10px;
    display: flex;
    gap: 9px;
    align-items: center
}

.auth-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #9aa3b1;
    font-size: 9px;
    margin-top: 22px
}

.auth-security i {
    color: #34ad7e
}

.auth-mobile-brand {
    margin-bottom: 45px
}

@media(max-width:1200px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .dashboard-grid {
        grid-template-columns: 1fr
    }

    .auth-page {
        grid-template-columns: 44% 56%
    }

    .auth-hero h1 {
        font-size: 42px
    }
}

@media(max-width:991px) {
    .portal-sidebar {
        transform: translateX(-100%);
        transition: .22s
    }

    .portal-sidebar.show {
        transform: translateX(0)
    }

    .portal-main {
        margin-left: 0
    }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 1030
    }

    .sidebar-overlay.show {
        display: block
    }

    .portal-content {
        padding: 20px
    }

    .portal-header {
        padding: 0 18px
    }

    .profile-chevron {
        display: none
    }

    .auth-page {
        display: block
    }

    .auth-visual {
        display: none
    }

    .auth-form-side {
        min-height: 100vh;
        padding: 35px 24px
    }

    .settings-layout {
        grid-template-columns: 1fr
    }

    .settings-nav {
        display: flex;
        overflow: auto;
        gap: 5px
    }

    .settings-nav a {
        white-space: nowrap
    }

    .audit-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px
    }

    .audit-breakdown {
        width: 100%;
        justify-content: space-around
    }
}

@media(max-width:650px) {
    .stat-grid {
        grid-template-columns: 1fr
    }

    .page-heading-row {
        align-items: flex-start;
        flex-direction: column
    }

    .heading-actions {
        width: 100%
    }

    .heading-actions .btn {
        flex: 1
    }

    .site-row {
        grid-template-columns: 1fr 70px 70px
    }

    .site-row>*:nth-child(4),
    .site-row>*:nth-child(5),
    .site-head>*:nth-child(4),
    .site-head>*:nth-child(5) {
        display: none
    }

    .panel-header {
        align-items: flex-start;
        flex-direction: column
    }

    .report-banner {
        align-items: flex-start;
        flex-wrap: wrap
    }

    .report-banner .ms-auto {
        margin-left: 0 !important
    }

    .content-row {
        flex-wrap: wrap
    }

    .content-score {
        margin-left: auto
    }

    .content-row>.text-muted {
        width: 100%;
        padding-left: 51px
    }

    .portal-footer {
        padding: 15px 20px
    }

    .auth-heading h2 {
        font-size: 24px
    }
}


/* =========================================
   ADD TEAM MEMBER
========================================= */

.team-form-card {
    max-width: 100%;
}

.team-form-header {
    padding: 22px 20px;
}

.team-form-header h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
}

.team-form-header p {
    margin: 0;
    color: #7c8798;
    font-size: 13px;
}

.team-member-form {
    padding: 0 20px 20px;
}

.team-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 22px;
}

.team-member-form .form-field {
    margin-bottom: 0;
}

.team-member-form .form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #172033;
}

.team-member-form .input-icon-wrap,
.team-member-form .select-icon-wrap {
    position: relative;
}

.team-member-form .input-icon-wrap>i,
.team-member-form .select-icon-wrap>i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa7b8;
    font-size: 15px;
    z-index: 2;
    pointer-events: none;
}

.team-member-form input,
.team-member-form select {
    width: 100%;
    height: 44px;
    border: 1px solid #dfe5ed;
    border-radius: 7px;
    background: #fff;
    color: #273348;
    font-size: 13px;
    outline: none;
    transition: all .2s ease;
}

.team-member-form input {
    padding: 0 42px;
}

.team-member-form select {
    padding: 0 42px;
    appearance: auto;
}

.team-member-form input::placeholder {
    color: #9aa7b8;
}

.team-member-form input:focus,
.team-member-form select:focus {
    border-color: #6d4aff;
    box-shadow: 0 0 0 3px rgba(109, 74, 255, .08);
}

.team-member-form .password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 5px;
    color: #9aa7b8;
    cursor: pointer;
    z-index: 3;
}

.team-member-form .password-toggle:hover {
    color: #6d4aff;
}

.team-member-form .select-icon-wrap select {
    padding-left: 42px;
}

.team-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid #edf0f5;
}

.team-form-actions .btn {
    min-height: 42px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
}

.team-form-actions .btn-primary {
    min-width: 145px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .team-form-card {
        max-width: 100%;
    }

    .team-form-grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .team-member-form {
        padding: 0 15px 18px;
    }

    .team-form-actions {
        margin-top: 25px;
    }

    .team-form-actions .btn {
        flex: 1;
    }
}

/* Flush css  */

.flash-alert {
    position: relative;
    margin-bottom: 20px;
}

.flash-close {
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 4px;
    color: inherit;
    opacity: .65;
    cursor: pointer;
    font-size: 18px;
}

.flash-close:hover {
    opacity: 1;
}


.shopify-integration-page .panel-content {
    padding: 24px;
}
