:root {
    --brand-ink: #08121f;
    --brand-navy: #10243d;
    --brand-steel: #1f3d63;
    --brand-coral: #ff7a59;
    --brand-cyan: #5dd6ff;
    --brand-amber: #ffc45c;
    --brand-lime: #b9f26d;
    --surface: rgba(13, 25, 42, 0.78);
    --surface-border: rgba(255, 255, 255, 0.14);
    --text-soft: rgba(255, 255, 255, 0.72);
    --shadow-soft: 0 24px 80px rgba(6, 12, 23, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: #eef3f8;
    color: #142236;
}

a {
    text-decoration: none;
}

.glass-panel {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.brand-logo {
    width: auto;
    height: 3rem;
    max-width: 4.6rem;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    flex-shrink: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.navbar-brand .brand-logo,
.brand-link .brand-logo {
    height: 3.2rem;
    max-width: 4.8rem;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-coral), #ff996b);
    border: 0;
    color: #fff;
    box-shadow: 0 18px 35px rgba(255, 122, 89, 0.32);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    background: linear-gradient(135deg, #ff6d49, #ff8f63);
}

.eyebrow-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-pill-dark {
    background: rgba(9, 25, 44, 0.08);
    color: #0d223d;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4df0ae;
    box-shadow: 0 0 0 6px rgba(77, 240, 174, 0.14);
}

.landing-shell,
.auth-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(93, 214, 255, 0.15), transparent 24rem),
        radial-gradient(circle at bottom right, rgba(255, 122, 89, 0.2), transparent 22rem),
        linear-gradient(145deg, #08121f 0%, #102745 48%, #17355a 100%);
}

.landing-orb,
.auth-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.7;
}

.landing-orb-one,
.auth-orb-one {
    width: 18rem;
    height: 18rem;
    top: 8%;
    right: -4rem;
    background: rgba(255, 196, 92, 0.18);
}

.landing-orb-two,
.auth-orb-two {
    width: 22rem;
    height: 22rem;
    bottom: 8%;
    left: -6rem;
    background: rgba(93, 214, 255, 0.16);
}

.auth-orb-three {
    width: 20rem;
    height: 20rem;
    top: 5%;
    left: -3rem;
    background: rgba(185, 242, 109, 0.12);
}

.auth-orb-four {
    width: 17rem;
    height: 17rem;
    right: -3rem;
    bottom: 12%;
    background: rgba(255, 122, 89, 0.15);
}

.hero-block {
    min-height: calc(100vh - 7rem);
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.hero-stage {
    border-radius: 2rem;
}

.landing-lottie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10rem;
    margin-inline: auto;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(93, 214, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-hero-lottie {
    width: min(100%, 18rem);
    height: 10.5rem;
    display: block;
    filter: drop-shadow(0 16px 30px rgba(93, 214, 255, 0.14));
}

.landing-lottie-wrap-large {
    min-height: clamp(22rem, 42vw, 31rem);
    padding: 1rem;
}

.landing-lottie-wrap-large .landing-hero-lottie {
    width: min(100%, 32rem);
    height: clamp(18rem, 34vw, 27rem);
}

.service-board {
    display: grid;
    gap: 1rem;
}

.service-card {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3,
.feature-panel h3,
.workspace-tile strong,
.service-grid-card h4,
.panel-header h3,
.support-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.service-card p,
.feature-panel p,
.workspace-tile small,
.service-grid-card p,
.panel-header p,
.support-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.service-icon,
.feature-icon,
.service-grid-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    font-size: 1.35rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    color: #08121f;
}

.accent-coral .service-icon,
.bg-coral-subtle,
.service-grid-icon.coral {
    background: rgba(255, 122, 89, 0.9);
}

.accent-cyan .service-icon,
.bg-cyan-subtle,
.service-grid-icon.cyan {
    background: rgba(93, 214, 255, 0.88);
}

.accent-amber .service-icon,
.bg-amber-subtle,
.service-grid-icon.amber {
    background: rgba(255, 196, 92, 0.88);
}

.bg-lime-subtle,
.service-grid-icon.lime {
    background: rgba(185, 242, 109, 0.88);
}

.hero-metrics .metric-card,
.feature-panel,
.workspace-tile {
    height: 100%;
}

.metric-card {
    padding: 1.1rem 1.15rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-number {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.metric-label {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.mini-timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline-item {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-soft);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--brand-cyan);
}

.timeline-item strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}

.section-copy {
    max-width: 42rem;
}

.feature-panel {
    padding: 1.45rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
    margin-bottom: 1rem;
    color: #08121f;
}

.workspace-card {
    border-radius: 2rem;
}

.workspace-tile {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem;
    border-radius: 1.45rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.workspace-tile span {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-cyan);
    font-size: 1.2rem;
}

.auth-story,
.auth-card,
.mpin-wrap {
    position: relative;
    z-index: 1;
}

.auth-story {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0.35rem;
}

.auth-points {
    display: grid;
    gap: 1rem;
}

.auth-point {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 0.85rem 1rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-point i {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-cyan);
    font-size: 1.1rem;
}

.auth-point strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}

.auth-point span {
    color: var(--text-soft);
}

.auth-card,
.mpin-wrap {
    border-radius: 1.6rem;
    max-width: 33rem;
    margin-inline: auto;
}

.auth-shell-login .container {
    position: relative;
    z-index: 1;
}

.auth-login-wrap {
    max-width: 25rem;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.auth-card-compact {
    max-width: 24rem;
    padding: 1.55rem !important;
    overflow: hidden;
}

.auth-login-intro {
    max-width: 17rem;
    margin-inline: auto;
}

.auth-login-copy {
    font-size: 0.9rem;
    line-height: 1.55;
}

.auth-login-form {
    max-width: 19.5rem;
    margin-inline: auto;
}

.auth-card-compact .eyebrow-chip {
    padding: 0.55rem 0.9rem;
    font-size: 0.76rem;
}

.auth-field .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.auth-input-group-compact {
    border-radius: 1rem;
}

.auth-input-group-compact .auth-input,
.auth-input-group-compact .auth-input-icon,
.auth-input-group-compact .auth-toggle-password {
    min-height: 2.95rem;
}

.auth-input-group-compact .auth-input {
    font-size: 0.95rem;
}

.auth-submit-btn {
    min-height: 2.95rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.auth-login-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.auth-login-backdrop::before,
.auth-login-backdrop::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
}

.auth-login-backdrop::before {
    width: 20rem;
    height: 20rem;
    top: 10%;
    left: 12%;
    background: rgba(93, 214, 255, 0.12);
}

.auth-login-backdrop::after {
    width: 18rem;
    height: 18rem;
    right: 14%;
    bottom: 12%;
    background: rgba(255, 196, 92, 0.1);
}

.auth-robot-illustration {
    position: absolute;
    left: calc(50% - 15rem);
    top: 52%;
    width: clamp(16rem, 28vw, 22rem);
    height: clamp(16rem, 28vw, 22rem);
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.auth-robot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-robot-ring-one {
    animation: authRobotOrbit 18s linear infinite;
}

.auth-robot-ring-two {
    inset: 1.25rem;
    border-style: dashed;
    animation: authRobotOrbitReverse 14s linear infinite;
}

.auth-robot-head {
    position: absolute;
    top: 16%;
    left: 50%;
    width: 42%;
    height: 28%;
    transform: translateX(-50%);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(93, 214, 255, 0.2), rgba(255, 255, 255, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 18px 42px rgba(8, 18, 31, 0.2);
}

.auth-robot-head::before,
.auth-robot-head::after {
    content: "";
    position: absolute;
    top: -0.9rem;
    width: 0.14rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.32);
}

.auth-robot-head::before {
    left: 35%;
}

.auth-robot-head::after {
    right: 35%;
}

.auth-robot-eye {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: var(--brand-cyan);
    box-shadow: 0 0 0 0.45rem rgba(93, 214, 255, 0.14);
    animation: authRobotBlink 3.8s ease-in-out infinite;
}

.auth-robot-neck {
    position: absolute;
    top: 43%;
    left: 50%;
    width: 14%;
    height: 7%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.auth-robot-body {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48%;
    height: 30%;
    transform: translateX(-50%);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(155deg, rgba(255, 122, 89, 0.18), rgba(255, 255, 255, 0.05));
    box-shadow: 0 20px 50px rgba(8, 18, 31, 0.2);
}

.auth-robot-body::before,
.auth-robot-body::after {
    content: "";
    position: absolute;
    top: 24%;
    width: 20%;
    height: 42%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.auth-robot-body::before {
    left: -14%;
    transform: rotate(24deg);
}

.auth-robot-body::after {
    right: -14%;
    transform: rotate(-24deg);
}

.auth-robot-core {
    position: absolute;
    inset: 24% 34%;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 18, 31, 0.34);
    box-shadow: 0 12px 28px rgba(8, 18, 31, 0.18);
}

.auth-robot-core::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 28%;
    width: 1.15rem;
    height: 1.15rem;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 0.18rem solid rgba(255, 255, 255, 0.8);
    border-bottom-color: transparent;
}

.auth-robot-core::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 27%;
    width: 0.25rem;
    height: 1.1rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

@keyframes authRobotOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes authRobotOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes authRobotBlink {
    0%,
    42%,
    48%,
    100% {
        transform: scaleY(1);
    }

    45% {
        transform: scaleY(0.2);
    }
}

.mpin-layout {
    max-width: 54rem;
    margin-inline: auto;
}

.mpin-visual-panel {
    position: relative;
    min-height: 23rem;
    padding: 1.6rem;
    border-radius: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.mpin-visual-panel::before {
    content: "";
    position: absolute;
    inset: auto -4rem -4rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 214, 255, 0.2), transparent 70%);
}

.mpin-visual-lock {
    position: relative;
    width: 9rem;
    height: 9rem;
    margin-bottom: 1.5rem;
}

.mpin-visual-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.mpin-visual-ring.ring-one {
    animation: mpinOrbit 7s linear infinite;
}

.mpin-visual-ring.ring-two {
    inset: 0.85rem;
    border-style: dashed;
    animation: mpinOrbitReverse 9s linear infinite;
}

.mpin-lock-core {
    position: absolute;
    inset: 1.9rem;
    border-radius: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(93, 214, 255, 0.22), rgba(255, 122, 89, 0.26));
    color: #fff;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(4, 11, 20, 0.22);
    animation: mpinLockPulse 2.8s ease-in-out infinite;
}

.mpin-visual-copy {
    position: relative;
    z-index: 1;
    max-width: 17rem;
}

.mpin-form-wrap {
    min-height: 100%;
    align-items: center;
}

.mpin-wrap {
    max-width: 21rem;
    padding: 1.35rem !important;
}

.auth-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.auth-mini-shield {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    color: #fff;
    font-size: 1.25rem;
    background: linear-gradient(145deg, rgba(93, 214, 255, 0.24), rgba(255, 122, 89, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.auth-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.auth-input,
.auth-input:focus {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.auth-input-icon {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.auth-toggle-password {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.09);
}

.auth-input-group {
    border-radius: 1.2rem;
    overflow: hidden;
}

.auth-input-helper,
.auth-footnote,
.mpin-stage-copy,
.mpin-helper-text {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.55;
}

.auth-input-helper {
    margin-top: 0.6rem;
}

.auth-footnote,
.mpin-helper-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: center;
    margin-top: 1rem;
}

.mpin-stage {
    padding: 0.8rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mpin-stage + .mpin-stage {
    margin-top: 1rem;
}

.mpin-stage-header {
    text-align: center;
    margin-bottom: 0.8rem;
}

.mpin-group {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
}

.mpin-digit {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    outline: none;
    box-shadow: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    -webkit-text-security: disc;
}

.mpin-digit:focus {
    transform: translateY(-2px);
    border-color: rgba(93, 214, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 0.24rem rgba(93, 214, 255, 0.14);
}

.mpin-digit.is-filled {
    border-color: rgba(255, 196, 92, 0.6);
    background: rgba(255, 255, 255, 0.14);
}

.mpin-digit::-webkit-outer-spin-button,
.mpin-digit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mpin-header {
    max-width: 18rem;
}

.mpin-form {
    max-width: 17.25rem;
}

.mpin-submit-btn {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
}

@keyframes mpinLockPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 14px 34px rgba(4, 11, 20, 0.2);
    }

    50% {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 18px 38px rgba(93, 214, 255, 0.18);
    }
}

@keyframes mpinOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes mpinOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.dashboard-shell {
    --sidebar-width: 16.5rem;
    display: flex;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(93, 214, 255, 0.14), transparent 20rem),
        linear-gradient(180deg, #eef3f8 0%, #e9eef5 100%);
}

.dashboard-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    padding: 1rem 0.9rem;
    background: linear-gradient(180deg, #0c1830 0%, #13294a 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.85rem;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1025;
    transition: width 0.28s ease, min-width 0.28s ease, padding 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.sidebar-top {
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.sidebar-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sidebar-brand-separator {
    width: 100%;
    height: 1px;
    margin: 0.15rem 0 0.25rem;
    background: linear-gradient(90deg, rgba(93, 214, 255, 0.65), rgba(255, 255, 255, 0.08));
}

.dashboard-sidebar .brand-link {
    font-size: 0.96rem;
}

.dashboard-sidebar .brand-link span {
    line-height: 1.15;
}

.brand-copy-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 0;
}

.brand-copy-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-copy-role {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.24rem 0.56rem;
    border-radius: 999px;
    background: rgba(111, 223, 255, 0.12);
    border: 1px solid rgba(111, 223, 255, 0.14);
    color: rgba(221, 240, 255, 0.92);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-sidebar .brand-logo {
    height: 2.6rem;
    max-width: 3.9rem;
}

.queue-item strong,
.security-row strong,
.activity-item strong,
.hero-summary-copy h2 {
    display: block;
}

.sidebar-close-btn {
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.06);
}

.sidebar-nav {
    display: grid;
    gap: 0.7rem;
    margin-top: 0;
}

.sidebar-nav-section {
    display: grid;
    gap: 0.32rem;
}

.sidebar-nav-title {
    padding: 0 0.62rem;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(197, 214, 236, 0.56);
}

.sidebar-nav-group {
    display: grid;
    gap: 0.28rem;
}

.sidebar-nav-group--nested {
    padding-left: 0.35rem;
}

.sidebar-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.7rem;
    border-radius: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sidebar-nav-group--nested a {
    padding-left: 0.85rem;
}

.sidebar-link-label {
    flex: 1;
    min-width: 0;
}

.sidebar-link-count {
    position: absolute;
    top: 0.18rem;
    right: 0.24rem;
    min-width: 1.45rem;
    height: 1.2rem;
    padding: 0 0.34rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.38rem 0.8rem 0.38rem 0.8rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.98), rgba(249, 115, 22, 0.94));
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.28);
    animation: sidebarCountPulse 2.6s ease-in-out infinite;
}

.sidebar-step-badge {
    position: relative;
    min-width: 1.65rem;
    height: 1.65rem;
    padding: 0 0.38rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    color: rgba(221, 234, 251, 0.88);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: sidebarStepPulse 3.6s ease-in-out infinite;
}

.sidebar-step-flow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    margin-left: auto;
    align-self: center;
    flex-shrink: 0;
}

.sidebar-step-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 0.72rem;
    color: rgba(191, 211, 236, 0.62);
    font-size: 0.52rem;
    line-height: 1;
    animation: sidebarStepArrowPulse 2.8s ease-in-out infinite;
}

.sidebar-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at left center, rgba(111, 223, 255, 0.14), transparent 58%);
    transition: opacity 0.24s ease;
}

.sidebar-nav a::after {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 50%;
    width: 0.22rem;
    height: 0;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-cyan), var(--brand-coral));
    transition: height 0.24s ease;
}

.sidebar-link-icon {
    position: relative;
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sidebar-link-icon i {
    transition: transform 0.22s ease, filter 0.22s ease;
}

.sidebar-link-icon-coral {
    color: #ff8f72;
}

.sidebar-link-icon-cyan {
    color: #6fdfff;
}

.sidebar-link-icon-amber {
    color: #ffd167;
}

.sidebar-link-icon-lime {
    color: #c7ff7d;
}

.sidebar-link-icon-violet {
    color: #b8b2ff;
}

.sidebar-link-icon-blue {
    color: #7cc7ff;
}

.sidebar-link-icon-rose {
    color: #ff9cbc;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #fff;
    transform: translateX(3px);
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(111, 223, 255, 0.08),
        0 14px 30px rgba(10, 19, 39, 0.2),
        0 0 24px rgba(111, 223, 255, 0.08);
}

.sidebar-nav a:hover::before {
    opacity: 1;
}

.sidebar-nav a.active {
    border: 1px solid rgba(104, 143, 232, 0.2);
    background:
        linear-gradient(180deg, rgba(109, 148, 241, 0.16), rgba(78, 116, 203, 0.14)) padding-box,
        linear-gradient(135deg, rgba(117, 162, 255, 0.65), rgba(93, 214, 255, 0.42), rgba(255, 255, 255, 0.08)) border-box;
    background-size: 100% 100%, 220% 220%;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 14px 28px rgba(10, 19, 39, 0.22);
    animation: sidebarLinkGlow 5.8s ease-in-out infinite, sidebarActiveBorder 4.4s linear infinite;
}

.sidebar-nav a:hover::after,
.sidebar-nav a.active::after {
    height: 1.6rem;
}

.sidebar-nav a.active::after {
    left: 0.3rem;
    width: 0.24rem;
    height: 2rem;
    background: linear-gradient(180deg, #87b4ff, #69d9ff);
    box-shadow: 0 0 12px rgba(111, 223, 255, 0.35);
}

.sidebar-nav a:hover .sidebar-link-icon i,
.sidebar-nav a.active .sidebar-link-icon i {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 10px 22px rgba(93, 214, 255, 0.18));
}

.sidebar-nav a.active .sidebar-link-icon {
    color: #ffffff;
}

.sidebar-nav a.active .sidebar-link-label {
    color: #ffffff;
}

.sidebar-nav a:hover .sidebar-link-count,
.sidebar-nav a.active .sidebar-link-count {
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.34);
}

.sidebar-nav a:hover .sidebar-step-badge,
.sidebar-nav a.active .sidebar-step-badge {
    border-color: rgba(111, 223, 255, 0.32);
    background: linear-gradient(180deg, rgba(111, 223, 255, 0.18), rgba(93, 214, 255, 0.08));
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 16px rgba(111, 223, 255, 0.14);
}

@keyframes sidebarCountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(239, 68, 68, 0.28);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 14px 26px rgba(239, 68, 68, 0.36);
    }
}

.sidebar-nav a:hover .sidebar-step-arrow,
.sidebar-nav a.active .sidebar-step-arrow {
    color: rgba(135, 211, 255, 0.95);
}

@keyframes sidebarActiveBorder {
    0% {
        background-position: 0 0, 0% 50%;
    }
    50% {
        background-position: 0 0, 100% 50%;
    }
    100% {
        background-position: 0 0, 0% 50%;
    }
}

@keyframes sidebarStepPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    50% {
        transform: translateY(-1px);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 14px rgba(111, 223, 255, 0.12);
    }
}

@keyframes sidebarStepArrowPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.68;
    }
    50% {
        transform: translateY(1px);
        opacity: 1;
    }
}

@keyframes automationStepperFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes servicesOrbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes servicesCoreFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.04);
    }
}

.sidebar-footer {
    margin-top: auto;
}

.sidebar-footer .btn {
    padding-block: 0.7rem;
    font-size: 0.88rem;
}

.dashboard-sidebar-toggle {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(8, 18, 31, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dashboard-sidebar-toggle i {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.dashboard-sidebar-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(8, 18, 31, 0.14);
}

.dashboard-main {
    flex: 1;
    min-width: 0;
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.15rem 0;
    position: relative;
}

.dashboard-topbar-copy {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    flex: 1;
}

.dashboard-topbar-eyebrow {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f8297;
}

.dashboard-topbar-title {
    min-width: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0d223d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-topbar-side {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-left: auto;
    min-width: 0;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.36rem 0.68rem;
    border-radius: 999px;
    background: rgba(13, 34, 61, 0.08);
    color: #0d223d;
    font-weight: 700;
    font-size: 0.72rem;
    line-height: 1;
}

.topbar-badge i {
    font-size: 0.72rem;
}

.automation-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-width: 0;
    padding: 0.28rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    overflow-x: auto;
    scrollbar-width: none;
}

.automation-stepper::-webkit-scrollbar {
    display: none;
}

.automation-stepper__item {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.6rem;
    border-radius: 0.95rem;
    color: #55687e;
    border: 1px solid transparent;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.automation-stepper__item:hover {
    color: #0d223d;
    background: rgba(148, 163, 184, 0.08);
    transform: translateY(-1px);
}

.automation-stepper__item.is-past {
    color: #0d6b57;
}

.automation-stepper__item.is-active {
    color: #0d223d;
    border-color: rgba(96, 165, 250, 0.24);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(93, 214, 255, 0.12));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 12px 24px rgba(37, 99, 235, 0.12);
}

.automation-stepper__count {
    width: 1.55rem;
    height: 1.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e2e8f0;
    color: #0f172a;
    font-size: 0.67rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.automation-stepper__item.is-past .automation-stepper__count {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
}

.automation-stepper__item.is-active .automation-stepper__count {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.automation-stepper__copy {
    display: inline-flex;
    flex-direction: column;
    min-width: 0;
}

.automation-stepper__label {
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
}

.automation-stepper__icon {
    color: rgba(37, 99, 235, 0.72);
    font-size: 0.72rem;
    flex-shrink: 0;
    animation: automationStepperFloat 3.2s ease-in-out infinite;
}

.services-hub-shell {
    display: grid;
    gap: 0.85rem;
}

.services-hub-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.55fr);
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(167, 139, 250, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.services-hub-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 24px;
    padding: 0.26rem 0.58rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-hub-hero__title {
    margin: 0.48rem 0 0.22rem;
    font-size: clamp(1.15rem, 1.55vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.services-hub-hero__text {
    margin: 0;
    max-width: 43rem;
    color: #5d7085;
    font-size: 0.78rem;
    line-height: 1.55;
}

.services-hub-hero__orbit {
    position: relative;
    min-height: 130px;
    display: grid;
    place-items: center;
}

.services-hub-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px dashed rgba(59, 130, 246, 0.2);
    animation: servicesOrbitSpin 16s linear infinite;
}

.services-hub-orbit--one {
    width: 5.8rem;
    height: 5.8rem;
}

.services-hub-orbit--two {
    width: 8rem;
    height: 8rem;
    animation-duration: 22s;
    animation-direction: reverse;
}

.services-hub-orbit--three {
    width: 10.2rem;
    height: 10.2rem;
    animation-duration: 28s;
}

.services-hub-hero__core {
    width: 4.3rem;
    height: 4.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 18px 34px rgba(37, 99, 235, 0.22);
    animation: servicesCoreFloat 4.4s ease-in-out infinite;
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.services-step-card {
    position: relative;
    display: grid;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem 0.8rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    overflow: hidden;
}

.services-step-card::before {
    content: "";
    position: absolute;
    inset: auto -18% -36% auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    opacity: 0.18;
    filter: blur(10px);
}

.services-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.11);
}

.services-step-card--cyan::before {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.8) 0%, rgba(56, 189, 248, 0) 72%);
}

.services-step-card--amber::before {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8) 0%, rgba(251, 191, 36, 0) 72%);
}

.services-step-card--lime::before {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.8) 0%, rgba(34, 197, 94, 0) 72%);
}

.services-step-card--violet::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, rgba(168, 85, 247, 0) 72%);
}

.services-step-card__head,
.services-step-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.services-step-card__count {
    width: 1.95rem;
    height: 1.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

.services-step-card__body {
    min-width: 0;
    flex: 1;
}

.services-step-card__icon {
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    color: #fff;
    font-size: 0.86rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 12px 24px rgba(15, 23, 42, 0.12);
    animation: automationStepperFloat 3s ease-in-out infinite;
}

.services-step-card--cyan .services-step-card__icon {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.services-step-card--amber .services-step-card__icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.services-step-card--lime .services-step-card__icon {
    background: linear-gradient(135deg, #16a34a, #4ade80);
}

.services-step-card--violet .services-step-card__icon {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
}

.services-step-card__title {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 800;
    color: #0f172a;
}

.services-step-card__text {
    margin: 0.18rem 0 0;
    color: #5f7388;
    font-size: 0.7rem;
    line-height: 1.45;
}

.services-step-card__launch {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #1d4ed8;
    text-transform: uppercase;
}

.services-step-card__arrow {
    width: 1.7rem;
    height: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    transition: transform 0.22s ease, background 0.22s ease;
}

.services-step-card:hover .services-step-card__arrow {
    transform: translateX(2px);
    background: rgba(37, 99, 235, 0.14);
}


@media (min-width: 992px) {
    .dashboard-sidebar-toggle {
        position: relative;
        margin-left: -1.7rem;
        margin-right: 0.15rem;
        width: 2rem;
        height: 3.1rem;
        border-radius: 0 1rem 1rem 0 !important;
        border-left: 0;
        background: linear-gradient(180deg, #0f1d38 0%, #13294a 100%);
        box-shadow: 0 16px 28px rgba(8, 18, 31, 0.16);
        z-index: 3;
    }

    .dashboard-sidebar-toggle:hover .dashboard-sidebar-toggle-icon {
        transform: scale(1.08);
    }

    body.sidebar-hidden .dashboard-sidebar-toggle {
        margin-left: -0.35rem;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1rem !important;
    }
}

.dashboard-content {
    padding: 1.5rem;
}

.hero-summary {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 1.5rem;
    padding: 1.6rem;
    border-radius: 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: 0 24px 55px rgba(16, 34, 61, 0.08);
}

.hero-summary-copy p {
    color: #587089;
    max-width: 42rem;
    margin-bottom: 0;
}

.hero-summary-panel {
    display: grid;
    gap: 0.9rem;
}

.summary-stat {
    padding: 1.1rem 1.2rem;
    border-radius: 1.2rem;
    background: #f5f8fc;
    border: 1px solid rgba(13, 34, 61, 0.08);
}

.summary-stat strong {
    font-size: 1.4rem;
    color: #0d223d;
}

.summary-stat span {
    color: #5f7388;
}

.dashboard-panel {
    padding: 1.45rem;
    border-radius: 1.6rem;
    background: #fff;
    box-shadow: 0 22px 48px rgba(16, 34, 61, 0.08);
}

.dashboard-panel-empty {
    min-height: calc(100vh - 10.5rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.9)),
        radial-gradient(circle at top right, rgba(93, 214, 255, 0.1), transparent 18rem);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.panel-header h3 {
    color: #0d223d;
}

.panel-header p {
    color: #62758a;
}

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

.service-grid-card {
    padding: 1.2rem;
    border-radius: 1.25rem;
    background: #f7f9fc;
    border: 1px solid rgba(13, 34, 61, 0.08);
}

.service-grid-card h4 {
    color: #0d223d;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
}

.service-grid-card p {
    color: #62758a;
}

.activity-list,
.security-stack,
.queue-card {
    display: grid;
    gap: 1rem;
}

.activity-item,
.security-row,
.queue-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.1rem;
    background: #f7f9fc;
    border: 1px solid rgba(13, 34, 61, 0.08);
}

.activity-item {
    justify-content: flex-start;
}

.activity-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.95rem;
    background: rgba(13, 34, 61, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0d223d;
    flex-shrink: 0;
}

.activity-item p,
.security-row p {
    margin: 0.2rem 0 0;
    color: #66798d;
}

.queue-item span,
.security-row .badge {
    white-space: nowrap;
}

.dashboard-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 11, 20, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1020;
}

body.sidebar-open .dashboard-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.sidebar-hidden .dashboard-sidebar {
    width: 0;
    min-width: 0;
    padding-inline: 0;
    padding-block: 0;
    opacity: 0;
    overflow: hidden;
}

body.sidebar-hidden .dashboard-sidebar > * {
    opacity: 0;
    pointer-events: none;
}

body.sidebar-hidden .dashboard-main {
    flex: 1 1 100%;
}

@keyframes sidebarIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes sidebarIconGlow {
    0%,
    100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 rgba(93, 214, 255, 0);
    }

    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 18px rgba(93, 214, 255, 0.16);
    }
}

@keyframes sidebarIconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes sidebarLinkGlow {
    0%,
    100% {
        background: rgba(255, 255, 255, 0.02);
    }

    50% {
        background: rgba(255, 255, 255, 0.055);
    }
}

@keyframes sidebarSweep {
    0%,
    62%,
    100% {
        transform: translateX(-130%);
    }

    78% {
        transform: translateX(130%);
    }
}

@media (max-width: 1199.98px) {
    .hero-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .dashboard-shell {
        display: block;
    }

    .dashboard-sidebar {
        position: fixed;
        left: 0;
        width: min(15rem, calc(100vw - 2rem));
        min-width: min(15rem, calc(100vw - 2rem));
        height: 100dvh;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        box-shadow: 0 24px 60px rgba(4, 11, 20, 0.32);
    }

    body.sidebar-open .dashboard-sidebar {
        transform: translateX(0);
    }

    .dashboard-topbar {
        padding-top: 1rem;
        flex-wrap: nowrap;
    }

    .dashboard-topbar-side {
        max-width: 58%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .services-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767.98px) {
    .hero-block {
        padding-top: 1rem;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .dashboard-content,
    .dashboard-topbar,
    .container {
        --bs-gutter-x: 1.1rem;
    }

    .panel-header,
    .security-row,
    .queue-item,
    .dashboard-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-topbar-copy {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.15rem;
    }

    .dashboard-topbar-side {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .dashboard-topbar-title {
        white-space: normal;
    }

    .topbar-badge {
        width: 100%;
        justify-content: center;
    }

    .automation-stepper {
        width: 100%;
        padding: 0.3rem;
    }

    .automation-stepper__item {
        min-width: 9.5rem;
    }

    .services-hub-grid {
        grid-template-columns: 1fr;
    }

    .services-hub-hero {
        padding: 1.15rem;
        grid-template-columns: 1fr;
    }

    .services-hub-hero__orbit {
        min-height: 190px;
    }

    .services-hub-orbit--one {
        width: 8.6rem;
        height: 8.6rem;
    }

    .services-hub-orbit--two {
        width: 11.4rem;
        height: 11.4rem;
    }

    .services-hub-orbit--three {
        width: 14rem;
        height: 14rem;
    }

    .services-hub-hero__core {
        width: 5.7rem;
        height: 5.7rem;
        border-radius: 1.6rem;
        font-size: 1.45rem;
    }

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

    .auth-login-wrap {
        max-width: 22rem;
    }

    .auth-card-compact {
        max-width: 21rem;
        padding: 1.3rem !important;
    }

    .auth-robot-illustration {
        width: 14rem;
        height: 14rem;
        opacity: 0.16;
        left: 50%;
        top: 50%;
    }

    .mpin-group {
        gap: 0.45rem;
    }

    .mpin-digit {
        font-size: 1.15rem;
        border-radius: 0.9rem;
    }

    .mpin-layout {
        max-width: 24rem;
    }

    .mpin-visual-panel {
        min-height: auto;
        padding: 1.15rem;
        text-align: center;
        align-items: center;
    }

    .mpin-visual-lock {
        width: 7.25rem;
        height: 7.25rem;
        margin-bottom: 1rem;
    }

    .mpin-lock-core {
        inset: 1.45rem;
        font-size: 1.55rem;
    }

    .mpin-visual-copy {
        max-width: 100%;
    }

    .mpin-wrap {
        max-width: 19rem;
    }
}

@media (max-width: 420px) {
    .mpin-group {
        gap: 0.35rem;
    }

    .mpin-digit {
        font-size: 1rem;
    }
}

.session-toast.swal2-popup {
    width: min(24rem, calc(100vw - 1.5rem));
    padding: 0.95rem 1rem 1.1rem;
    border-radius: 1.15rem;
    background: rgba(11, 24, 41, 0.72);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 48px rgba(4, 11, 20, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.session-toast .swal2-html-container,
.session-toast .swal2-title {
    margin: 0;
}

.session-toast .swal2-icon {
    margin: 0 0.8rem 0 0;
    border-width: 0;
    transform: scale(0.82);
}

.session-toast-title {
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.session-toast-close.swal2-close {
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease, color 0.2s ease;
}

.session-toast-close.swal2-close:hover {
    color: #ffffff;
    transform: scale(1.06);
}

.session-toast-progress.swal2-timer-progress-bar {
    height: 0.24rem;
    background: linear-gradient(90deg, rgba(93, 214, 255, 0.95), rgba(255, 122, 89, 0.95));
    opacity: 0.95;
}

body .swal2-container.swal2-top-end {
    padding: 1rem;
}

@media (max-width: 575.98px) {
    body .swal2-container.swal2-top-end {
        inset: 0.75rem 0.75rem auto 0.75rem;
        padding: 0;
    }

    .session-toast.swal2-popup {
        width: 100%;
    }
}
