/* ============================================================
   Architecture Page
   /architecture
   ============================================================ */

/* #region Hero */

.arch-hero {
    background: var(--off-black);
    padding: 6rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.arch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(150, 188, 51, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.arch-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

/* #endregion */

/* #region Diagram Section */

.arch-diagram-section {
    background: #0f1117;
    padding: 4rem 2rem 4rem;
}

.arch-diagram-wrap {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    padding-bottom: 2rem;
}

.arch-svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.arch-connector {
    display: none;
}

/* #endregion */

/* #region Root Node */

.arch-root {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* #endregion */

/* #region Arms Layout */

.arch-arms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    position: relative;
}

.arch-arms--three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* arch-arms::before removed - SVG handles connections */

.arch-arm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

/* Arm ::before lines removed - SVG overlay handles all connections */

/* #endregion */

/* #region Connectors */

.arch-connector {
    width: 2px;
    background: rgba(150, 188, 51, 0.3);
}

.arch-connector--down {
    height: 32px;
}

/* #endregion */

/* #region Nodes */

.arch-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    cursor: default;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    min-width: 150px;
    text-align: center;
}

.arch-node:hover,
.arch-node:focus {
    border-color: rgba(150, 188, 51, 0.6);
    background: rgba(150, 188, 51, 0.08);
    box-shadow: 0 0 18px rgba(150, 188, 51, 0.15);
    outline: none;
    z-index: 500;
}

.arch-node .material-symbols-outlined {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.arch-node:hover .material-symbols-outlined,
.arch-node:focus .material-symbols-outlined {
    color: var(--accent);
}

.arch-node-label {
    font-size: 0.8rem;
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

/* Node type variants */

.arch-node--agency {
    border-color: rgba(150, 188, 51, 0.45);
    background: rgba(150, 188, 51, 0.1);
    padding: 1.25rem 2rem;
}

.arch-node--agency .material-symbols-outlined {
    font-size: 36px;
    color: var(--accent);
}

.arch-node--agency .arch-node-label {
    font-size: 1rem;
    color: var(--white);
}

.arch-node--cloud .material-symbols-outlined {
    color: #64b5f6;
}

.arch-node--cloud:hover .material-symbols-outlined,
.arch-node--cloud:focus .material-symbols-outlined {
    color: #90caf9;
}

.arch-node--cp {
    border-color: rgba(100, 181, 246, 0.3);
}

.arch-node--cp .material-symbols-outlined {
    color: #64b5f6;
}

.arch-node--site .material-symbols-outlined {
    color: #ffb74d;
}

.arch-node--agent .material-symbols-outlined {
    color: #ffb74d;
}

.arch-node--station {
    border-color: rgba(255, 183, 77, 0.3);
}

.arch-node--station .material-symbols-outlined {
    color: #ffb74d;
}

.arch-node--technician .material-symbols-outlined {
    color: #a5d6a7;
}

.arch-node--tech-tool {
    z-index: 2;
    background: #0f1117;
}

    .arch-node--tech-tool:hover,
    .arch-node--tech-tool:focus {
        background: #1a2410;
    }

.arch-node--tech-tool .material-symbols-outlined {
    color: #a5d6a7;
}

.arch-node--viewer .material-symbols-outlined {
    color: #80deea;
}

.arch-children--technician {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 240px;
}

.arch-connects-to {
    font-size: 0.67rem;
    color: rgba(150, 188, 51, 0.7);
    font-style: italic;
    line-height: 1.2;
    margin-top: 0.15rem;
}

.arch-node--metrics .material-symbols-outlined {
    color: var(--accent);
}

.arch-node--ort .material-symbols-outlined {
    color: #ce93d8;
}

.arch-node--automation .material-symbols-outlined {
    color: #80cbc4;
}

.arch-node--rs .material-symbols-outlined {
    color: #ef9a9a;
}

.arch-node--technician.arch-node--capability {
    border-color: rgba(165, 214, 167, 0.4);
}

.arch-node--sites {
    border-color: rgba(255, 183, 77, 0.35);
}

.arch-node--sites .material-symbols-outlined {
    color: #ffb74d;
}

.arch-node--stations-hist {
    border-color: rgba(150, 188, 51, 0.35);
}

.arch-node--stations-hist .material-symbols-outlined {
    color: var(--accent);
}

.arch-node--alerts {
    border-color: rgba(239, 154, 154, 0.35);
}

.arch-node--alerts .material-symbols-outlined {
    color: #ef9a9a;
}

.arch-node--users {
    border-color: rgba(206, 147, 216, 0.35);
}

.arch-node--users .material-symbols-outlined {
    color: #ce93d8;
}

/* #endregion */

/* #region Tooltips */

.arch-floating-tip {
    position: fixed;
    z-index: 99999;
    width: 280px;
    background: #1a1f2e;
    border: 1px solid rgba(150, 188, 51, 0.3);
    border-radius: 12px;
    padding: 1rem 1.125rem;
    font-size: 0.8375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
}

.arch-floating-tip--visible {
    opacity: 1;
    visibility: visible;
}

.arch-floating-tip strong {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.arch-floating-tip span {
    display: block;
    margin-bottom: 0.5rem;
}

.arch-floating-tip ul {
    margin: 0;
    padding-left: 1.1rem;
}

.arch-floating-tip ul li {
    margin-bottom: 0.2rem;
}

/* #endregion */

/* #region Children grids */

.arch-children {
    display: grid;
    gap: 0.75rem;
    margin-top: 0;
    width: 100%;
    max-width: 340px;
}

.arch-children--cp {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.arch-children--station {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.arch-child-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arch-child-branch .arch-node {
    width: 100%;
    min-width: unset;
    padding: 0.75rem 0.75rem;
}

.arch-child-branch .arch-node .material-symbols-outlined {
    font-size: 22px;
}

.arch-child-branch .arch-node-label {
    font-size: 0.72rem;
}

/* #region Grandchildren task cards */

.arch-grandchildren-wrap {
    grid-column: 1 / -1;
    width: 100%;
}

.arch-grandchildren-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0.5rem;
}

.arch-grandchildren {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.arch-grandchildren--ort {
    grid-template-columns: repeat(3, 1fr);
}

.arch-grandchildren--stacked {
    grid-template-columns: 1fr;
    max-width: calc((100% - 0.5rem) / 2);
    margin: 0 auto;
}

.arch-grandchildren--stacked .arch-task-card {
    width: 100%;
}

.arch-task-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    cursor: default;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.arch-task-card:hover,
.arch-task-card:focus {
    border-color: rgba(150, 188, 51, 0.35);
    background: rgba(150, 188, 51, 0.06);
    outline: none;
    z-index: 500;
}

.arch-task-card .material-symbols-outlined {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
}

.arch-task-card:hover .material-symbols-outlined,
.arch-task-card:focus .material-symbols-outlined {
    color: var(--accent);
}

.arch-task-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

/* #endregion */

/* #region Etc note */

.arch-etc-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

.arch-etc-note .material-symbols-outlined {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.25);
}

/* #endregion */

/* #region Legend */

.arch-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.arch-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.arch-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.arch-legend-dot--technician { background: #a5d6a7; }
.arch-legend-dot--cloud     { background: #64b5f6; }
.arch-legend-dot--cp        { background: #64b5f6; }
.arch-legend-dot--site      { background: #ffb74d; }
.arch-legend-dot--metrics   { background: #96bc33; }
.arch-legend-dot--ort       { background: #ce93d8; }
.arch-legend-dot--automation { background: #80cbc4; }
.arch-legend-dot--rs        { background: #ef9a9a; }
.arch-legend-dot--network   { background: #80cbc4; }
.arch-legend-dot--automation-mock { background: #96bc33; }

/* #endregion */

/* #region CTA */

.arch-cta {
    background: var(--off-black);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 4rem 1.5rem;
    text-align: center;
}

.arch-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.arch-cta h2 {
    font-size: 1.75rem;
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.arch-cta p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.75rem;
}

.arch-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white);
    font-weight: var(--weight-semibold);
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.arch-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: var(--white);
}

/* #endregion */

/* #region Service Monitor */

.arch-task-card--sm {
    border-color: rgba(187, 134, 252, 0.35);
    background: rgba(187, 134, 252, 0.04);
}

.arch-task-card--sm:hover,
.arch-task-card--sm:focus {
    border-color: rgba(187, 134, 252, 0.6);
    background: rgba(187, 134, 252, 0.09);
}

.arch-task-card--sm .material-symbols-outlined {
    color: rgba(187, 134, 252, 0.6);
}

.arch-task-card--sm:hover .material-symbols-outlined,
.arch-task-card--sm:focus .material-symbols-outlined {
    color: #bb86fc;
}

/* #endregion */

/* #region Process Monitor */

.arch-task-card--pm {
    border-color: rgba(255, 183, 77, 0.35);
    background: rgba(255, 183, 77, 0.04);
}

.arch-task-card--pm:hover,
.arch-task-card--pm:focus {
    border-color: rgba(255, 183, 77, 0.6);
    background: rgba(255, 183, 77, 0.09);
}

.arch-task-card--pm .material-symbols-outlined {
    color: rgba(255, 183, 77, 0.6);
}

.arch-task-card--pm:hover .material-symbols-outlined,
.arch-task-card--pm:focus .material-symbols-outlined {
    color: #ffb74d;
}

/* #endregion */

/* #region Scheduled Commands */

.arch-task-card--sc {
    border-color: rgba(79, 195, 247, 0.35);
    background: rgba(79, 195, 247, 0.04);
}

.arch-task-card--sc:hover,
.arch-task-card--sc:focus {
    border-color: rgba(79, 195, 247, 0.6);
    background: rgba(79, 195, 247, 0.09);
}

.arch-task-card--sc .material-symbols-outlined {
    color: rgba(79, 195, 247, 0.6);
}

.arch-task-card--sc:hover .material-symbols-outlined,
.arch-task-card--sc:focus .material-symbols-outlined {
    color: #4fc3f7;
}

/* #endregion */

/* #region Network Nodes */

.arch-network-nodes-wrap {
    margin-top: 0.25rem;
}

.arch-task-card--nnm {
    border-color: rgba(128, 203, 196, 0.35);
    background: rgba(128, 203, 196, 0.04);
}

.arch-task-card--nnm:hover,
.arch-task-card--nnm:focus {
    border-color: rgba(128, 203, 196, 0.6);
    background: rgba(128, 203, 196, 0.09);
}

.arch-task-card--nnm .material-symbols-outlined {
    color: rgba(128, 203, 196, 0.6);
}

.arch-task-card--nnm:hover .material-symbols-outlined,
.arch-task-card--nnm:focus .material-symbols-outlined {
    color: #80cbc4;
}

.arch-net-group-box {
    position: relative;
    border: 1px dashed rgba(128, 203, 196, 0.35);
    border-radius: 10px;
    padding: 1.25rem 0.75rem 0.75rem;
    background: rgba(128, 203, 196, 0.03);
}

.arch-net-group-label {
    position: absolute;
    top: -0.6rem;
    left: 0.75rem;
    background: #0f1117;
    padding: 0 0.4rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(128, 203, 196, 0.6);
    font-weight: var(--weight-semibold);
    white-space: nowrap;
}

.arch-network-nodes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.arch-network-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 0.4rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(128, 203, 196, 0.2);
    background: rgba(128, 203, 196, 0.04);
    text-align: center;
    cursor: default;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.arch-network-node:hover,
.arch-network-node:focus {
    border-color: rgba(128, 203, 196, 0.55);
    background: rgba(128, 203, 196, 0.09);
    box-shadow: 0 0 14px rgba(128, 203, 196, 0.12);
    outline: none;
    z-index: 500;
}

.arch-network-node .material-symbols-outlined {
    font-size: 18px;
    color: rgba(128, 203, 196, 0.55);
    transition: color 0.2s ease;
}

.arch-network-node:hover .material-symbols-outlined,
.arch-network-node:focus .material-symbols-outlined {
    color: #80cbc4;
}

.arch-net-name {
    font-size: 0.62rem;
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.arch-net-ip {
    font-size: 0.58rem;
    color: rgba(128, 203, 196, 0.55);
    font-family: 'Courier New', monospace;
    line-height: 1.2;
}

.arch-net-badge {
    font-size: 0.52rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.1rem 0.35rem;
    border-radius: 20px;
    margin-top: 0.1rem;
    line-height: 1.4;
}

.arch-net-badge--online {
    background: rgba(150, 188, 51, 0.15);
    color: #96bc33;
    border: 1px solid rgba(150, 188, 51, 0.3);
}

.arch-net-badge--warn {
    background: rgba(239, 83, 80, 0.12);
    color: #ef9a9a;
    border: 1px solid rgba(239, 83, 80, 0.3);
}

/* #endregion */

/* #region Automation Mock Examples */

.arch-automation-mock-wrap {
    margin-top: 0.25rem;
}

.arch-auto-mock-box {
    position: relative;
    border: 1px dashed rgba(150, 188, 51, 0.35);
    border-radius: 10px;
    padding: 1.25rem 0.75rem 0.75rem;
    background: rgba(150, 188, 51, 0.03);
}

.arch-auto-mock-box--sm {
    border-color: rgba(187, 134, 252, 0.35);
    background: rgba(187, 134, 252, 0.03);
}

.arch-auto-mock-box--pm {
    border-color: rgba(255, 183, 77, 0.35);
    background: rgba(255, 183, 77, 0.03);
}

.arch-auto-mock-box--sc {
    border-color: rgba(79, 195, 247, 0.35);
    background: rgba(79, 195, 247, 0.03);
}

.arch-auto-mock-label {
    position: absolute;
    top: -0.6rem;
    left: 0.75rem;
    background: #0f1117;
    padding: 0 0.4rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(150, 188, 51, 0.6);
    font-weight: var(--weight-semibold);
    white-space: nowrap;
}

.arch-auto-mock-box--sm .arch-auto-mock-label {
    color: rgba(187, 134, 252, 0.6);
}

.arch-auto-mock-box--pm .arch-auto-mock-label {
    color: rgba(255, 183, 77, 0.6);
}

.arch-auto-mock-box--sc .arch-auto-mock-label {
    color: rgba(79, 195, 247, 0.6);
}

.arch-automation-mock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.arch-automation-mock-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 0.4rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(150, 188, 51, 0.2);
    background: rgba(150, 188, 51, 0.04);
    text-align: center;
    cursor: default;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.arch-automation-mock-item:hover,
.arch-automation-mock-item:focus {
    border-color: rgba(150, 188, 51, 0.55);
    background: rgba(150, 188, 51, 0.09);
    box-shadow: 0 0 14px rgba(150, 188, 51, 0.12);
    outline: none;
    z-index: 500;
}

.arch-automation-mock-item .material-symbols-outlined {
    font-size: 18px;
    color: rgba(150, 188, 51, 0.55);
    transition: color 0.2s ease;
}

.arch-automation-mock-item:hover .material-symbols-outlined,
.arch-automation-mock-item:focus .material-symbols-outlined {
    color: #96bc33;
}

.arch-automation-mock-item--sm {
    border-color: rgba(187, 134, 252, 0.2);
    background: rgba(187, 134, 252, 0.04);
}

.arch-automation-mock-item--sm:hover,
.arch-automation-mock-item--sm:focus {
    border-color: rgba(187, 134, 252, 0.55);
    background: rgba(187, 134, 252, 0.09);
    box-shadow: 0 0 14px rgba(187, 134, 252, 0.12);
}

.arch-automation-mock-item--sm .material-symbols-outlined {
    color: rgba(187, 134, 252, 0.55);
}

.arch-automation-mock-item--sm:hover .material-symbols-outlined,
.arch-automation-mock-item--sm:focus .material-symbols-outlined {
    color: #bb86fc;
}

.arch-automation-mock-item--pm {
    border-color: rgba(255, 183, 77, 0.2);
    background: rgba(255, 183, 77, 0.04);
}

.arch-automation-mock-item--pm:hover,
.arch-automation-mock-item--pm:focus {
    border-color: rgba(255, 183, 77, 0.55);
    background: rgba(255, 183, 77, 0.09);
    box-shadow: 0 0 14px rgba(255, 183, 77, 0.12);
}

.arch-automation-mock-item--pm .material-symbols-outlined {
    color: rgba(255, 183, 77, 0.55);
}

.arch-automation-mock-item--pm:hover .material-symbols-outlined,
.arch-automation-mock-item--pm:focus .material-symbols-outlined {
    color: #ffb74d;
}

.arch-automation-mock-item--sc {
    border-color: rgba(79, 195, 247, 0.2);
    background: rgba(79, 195, 247, 0.04);
}

.arch-automation-mock-item--sc:hover,
.arch-automation-mock-item--sc:focus {
    border-color: rgba(79, 195, 247, 0.55);
    background: rgba(79, 195, 247, 0.09);
    box-shadow: 0 0 14px rgba(79, 195, 247, 0.12);
}

.arch-automation-mock-item--sc .material-symbols-outlined {
    color: rgba(79, 195, 247, 0.55);
}

.arch-automation-mock-item--sc:hover .material-symbols-outlined,
.arch-automation-mock-item--sc:focus .material-symbols-outlined {
    color: #4fc3f7;
}

.arch-automation-mock-item--sm .arch-auto-target {
    color: rgba(187, 134, 252, 0.55);
}

.arch-automation-mock-item--pm .arch-auto-target {
    color: rgba(255, 183, 77, 0.55);
}

.arch-automation-mock-item--sc .arch-auto-target {
    color: rgba(79, 195, 247, 0.55);
}

.arch-auto-name {
    font-size: 0.62rem;
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.arch-auto-target {
    font-size: 0.58rem;
    color: rgba(150, 188, 51, 0.55);
    font-family: 'Courier New', monospace;
    line-height: 1.2;
}

.arch-auto-badge {
    font-size: 0.52rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.1rem 0.35rem;
    border-radius: 20px;
    margin-top: 0.1rem;
    line-height: 1.4;
}

.arch-auto-badge--running {
    background: rgba(150, 188, 51, 0.15);
    color: #96bc33;
    border: 1px solid rgba(150, 188, 51, 0.3);
}

.arch-auto-badge--scheduled {
    background: rgba(206, 147, 216, 0.15);
    color: #ce93d8;
    border: 1px solid rgba(206, 147, 216, 0.3);
}

.arch-auto-badge--command {
    background: rgba(255, 167, 38, 0.15);
    color: #ffa726;
    border: 1px solid rgba(255, 167, 38, 0.3);
}

.arch-automation-mock-item--sm .arch-auto-badge--running {
    background: rgba(187, 134, 252, 0.15);
    color: #bb86fc;
    border: 1px solid rgba(187, 134, 252, 0.3);
}

.arch-automation-mock-item--pm .arch-auto-badge--running {
    background: rgba(255, 183, 77, 0.15);
    color: #ffb74d;
    border: 1px solid rgba(255, 183, 77, 0.3);
}

.arch-automation-mock-item--sc .arch-auto-badge--scheduled {
    background: rgba(79, 195, 247, 0.15);
    color: #4fc3f7;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

/* #endregion */

/* #region Responsive */

@media (max-width: 900px) {
    .arch-arms,
    .arch-arms--three {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .arch-svg {
        display: none;
    }

    .arch-arm {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: 0;
        border-top: 2px solid rgba(150, 188, 51, 0.2);
    }

    .arch-arm--technician {
        border-top: 2px solid rgba(165, 214, 167, 0.3);
    }

    .arch-arm--centre {
        border-top: 2px solid rgba(100, 181, 246, 0.3);
    }

    .arch-arm--right {
        border-top: 2px solid rgba(255, 183, 77, 0.3);
    }

    .arch-children--cp,
    .arch-children--station {
        grid-template-columns: 1fr 1fr;
    }

    .arch-network-nodes {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .arch-children--cp,
    .arch-children--station {
        grid-template-columns: 1fr;
    }

    .arch-network-nodes {
        grid-template-columns: repeat(2, 1fr);
    }

    .arch-node {
        min-width: unset;
        width: 100%;
        max-width: 320px;
    }
}

/* #endregion */
