
/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scrollbar-gutter: stable;
}
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #070d1a;
}

/* ── DROPDOWN ── */
.dropdown-container {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(10, 18, 34, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(76, 92, 240, 0.1);
    z-index: 100;
}
.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu .dropdown-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    margin: 0 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}
.dropdown-menu .dropdown-heading:hover {
    background: rgba(76, 92, 240, 0.10);
}
.dropdown-menu .dropdown-heading i {
    font-size: 18px;
    color: #4c5cf0;
}
.dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 20px;
}
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 2px;
    transition: color .3s ease;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}
.dropdown-trigger:hover {
    color: #4c5cf0;
}
.dropdown-trigger i.ti-chevron-down {
    font-size: 12px;
    transition: transform 0.25s ease;
    color: rgba(255, 255, 255, 0.4);
}
.dropdown-trigger.open i.ti-chevron-down {
    transform: rotate(180deg);
    color: #4c5cf0;
}

/* ── GLASS HEADER ── */
.glass-header {
    background: rgba(10, 18, 34, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.glass-header .nav-link {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}
.glass-header .nav-link:hover {
    color: #4c5cf0;
}
.glass-header .nav-link.active {
    color: #4c5cf0;
}
.btn-sign-in {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #4c5cf0;
    color: #fff;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}
.btn-sign-in:hover {
    background: #3a4ad4;
    transform: translateY(-1px);
}

/* ── HERO ── */
.platform-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 50px;
    background: #070d1a;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(76, 92, 240, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 92, 240, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.18;
}
.orb-a {
    width: 600px;
    height: 600px;
    background: #4c5cf0;
    top: -200px;
    right: -200px;
}
.orb-b {
    width: 400px;
    height: 400px;
    background: #4c5cf0;
    bottom: -150px;
    left: -150px;
    opacity: 0.10;
}
.orb-c {
    width: 300px;
    height: 300px;
    background: #4c5cf0;
    top: 30%;
    left: 10%;
    opacity: 0.06;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    border: 1px solid rgba(76, 92, 240, 0.35);
    background: rgba(76, 92, 240, 0.08);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}
.hero-pill .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4c5cf0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #4c5cf0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 26px;
}
.explore-btn:hover {
    background: #3a4ad4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 92, 240, 0.3);
}
.explore-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.explore-btn:hover i {
    transform: translateY(2px);
}

/* ── SECTION EYEBROW ── */
.section-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.section-eyebrow::after {
    background: linear-gradient(90deg, #4c5cf0, transparent);
}

/* ── SHOWCASE SECTIONS ── */
.showcase-section {
    padding: 24px 16px;
}
.showcase-section+.showcase-section {
    padding-top: 0;
}
.showcase-section.caserooms-section {
    padding: 0 16px 0 !important;
}
.showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.showcase-inner .showcase-img-wrap {
    order: 2;
}
.showcase-inner .showcase-desc {
    order: 1;
    text-align: center;
}

.showcase-inner.no-image {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.showcase-inner.no-image .showcase-desc {
    order: 1;
}
.showcase-inner.no-image .showcase-img-wrap {
    display: none;
}

.showcase-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.showcase-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(76, 92, 240, 0.08);
}
.showcase-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76, 92, 240, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.showcase-img-wrap .img-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    z-index: 0;
    background: #4c5cf0;
}
.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    display: block;
    padding: 14px;
}
.showcase-img-wrap {
    background: #0c1426;
}

.showcase-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.showcase-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    color: #fff;
    margin: 2px 0 4px;
    text-align: center;
}
.showcase-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin: 0 auto 4px;
}
.showcase-number::before,
.showcase-number::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.showcase-number::after {
    background: linear-gradient(90deg, #4c5cf0, transparent);
}

.showcase-title b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.showcase-lede {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
    margin: 0 auto 4px;
    text-align: center;
    border-left: none;
    padding-left: 0;
}

.showcase-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-top: 6px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.showcase-feat {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 4px 0;
    border: none;
    background: transparent;
    border-radius: 0;
    transition: none;
}
.showcase-feat:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
}
.sf-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #4c5cf0;
    font-size: 16px;
    border-radius: 0;
    transition: none;
}
.sf-icon i {
    font-size: 16px;
}
.showcase-feat:hover .sf-icon {
    background: transparent;
    color: #4c5cf0;
    transform: none;
}
.sf-body h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #4c5cf0;
    margin: 0 0 1px;
    letter-spacing: 0.01em;
}
.sf-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

.showcase-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    justify-content: center;
}
.showcase-chip {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}
.showcase-chip:hover {
    border-color: rgba(76, 92, 240, 0.3);
    color: #fff;
    background: rgba(76, 92, 240, 0.06);
}
.showcase-chip.accent {
    background: rgba(76, 92, 240, 0.1);
    border-color: rgba(76, 92, 240, 0.2);
    color: #8b9bff;
}
.showcase-chip.accent:hover {
    background: rgba(76, 92, 240, 0.18);
    border-color: rgba(76, 92, 240, 0.35);
}

.module-anchor {
    scroll-margin-top: 80px;
}

/* ── UNIFORM SECTION GAP ── */
section + section {
    margin-top: -20px;
}

.showcase-divider {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
    .showcase-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .showcase-inner .showcase-img-wrap {
        order: 1;
    }
    .showcase-inner .showcase-desc {
        order: 2;
    }
    .showcase-img-wrap {
        aspect-ratio: 16 / 9;
    }
    .showcase-lede {
        max-width: 100%;
    }
    .showcase-feats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .showcase-number::before,
    .showcase-number::after {
        width: 20px;
    }
    .showcase-inner.no-image {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .platform-hero {
        min-height: 70vh;
        padding: 80px 20px 40px;
    }
    .showcase-section {
        padding: 18px 14px;
    }
    .showcase-section.caserooms-section {
        padding: 8px 14px 0 !important;
    }
    .explore-btn {
        margin-top: 20px;
        padding: 8px 18px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .showcase-chip {
        font-size: 10px;
        padding: 3px 10px;
    }
    .sf-body h6 {
        font-size: 13px;
    }
    .sf-body p {
        font-size: 11.5px;
    }
    .showcase-feats {
        gap: 4px 12px;
    }
}

/* ── SIMPLE SECTIONS ── */
.simple-section {
    padding: 40px 24px;
}
.simple-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.simple-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #fff;
    line-height: 1.2;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}
.simple-title b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.simple-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 10px auto 0;
    text-align: center;
    line-height: 1.6;
    font-weight: 300;
}
.note-card {
    margin-top: 20px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(76, 92, 240, 0.18);
    border-left: 2px solid #4c5cf0;
    background: rgba(76, 92, 240, 0.04);
    border-radius: 0 12px 12px 0;
    padding: 14px 20px;
}
.note-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}
.note-card p b {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ── HONEYCOMB ── */
.honeycomb-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 6px 0;
}
.honeycomb-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: -18px;
}
.honeycomb-row:last-child {
    margin-bottom: 0;
}
.honeycomb-row .hex-spacer {
    width: 80px;
    flex-shrink: 0;
}
.hex {
    width: 140px;
    height: 162px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(.22, 1, .36, 1);
    cursor: default;
    position: relative;
}
.hex:hover {
    background: rgba(76, 92, 240, 0.08);
    border-color: rgba(76, 92, 240, 0.3);
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(76, 92, 240, 0.08);
    z-index: 2;
}
.hex .hex-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(76, 92, 240, 0.08);
    color: #8b9bff;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    flex-shrink: 0;
}
.hex:hover .hex-icon {
    background: #4c5cf0;
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 30px rgba(76, 92, 240, 0.15);
}
.hex .hex-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}
.hex .hex-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
    line-height: 1.3;
}
.circle-hub {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    background: radial-gradient(ellipse at 30% 30%, rgba(76, 92, 240, 0.15), rgba(76, 92, 240, 0.04));
    border: 2px solid rgba(76, 92, 240, 0.35);
    box-shadow: 0 0 40px rgba(76, 92, 240, 0.06), inset 0 0 60px rgba(76, 92, 240, 0.03);
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    cursor: default;
    position: relative;
    z-index: 1;
    animation: hubPulse 3.4s ease-out infinite;
}
.circle-hub::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(76, 92, 240, 0.1);
    animation: hubRing 4s ease-in-out infinite;
}
.circle-hub::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px dashed rgba(76, 92, 240, 0.06);
    animation: hubRing 6s ease-in-out infinite reverse;
}
@keyframes hubPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 92, 240, 0.15), 0 0 40px rgba(76, 92, 240, 0.06);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(76, 92, 240, 0), 0 0 60px rgba(76, 92, 240, 0.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 92, 240, 0.15), 0 0 40px rgba(76, 92, 240, 0.06);
    }
}
@keyframes hubRing {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}
.circle-hub:hover {
    transform: scale(1.06);
    border-color: rgba(76, 92, 240, 0.6);
    box-shadow: 0 0 60px rgba(76, 92, 240, 0.15), 0 0 100px rgba(76, 92, 240, 0.05);
    background: radial-gradient(ellipse at 30% 30%, rgba(76, 92, 240, 0.2), rgba(76, 92, 240, 0.06));
}
.circle-hub .hub-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(76, 92, 240, 0.2), rgba(76, 92, 240, 0.08));
    color: #4c5cf0;
    border: 1px solid rgba(76, 92, 240, 0.2);
    transition: all 0.4s ease;
    margin-bottom: 4px;
}
.circle-hub:hover .hub-icon {
    background: linear-gradient(135deg, #4c5cf0, #7c6cf6);
    color: #fff;
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 0 30px rgba(76, 92, 240, 0.3);
}
.circle-hub .hub-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.circle-hub .hub-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    letter-spacing: 0.04em;
}

@media (max-width: 820px) {
    .hex {
        width: 110px;
        height: 127px;
        padding: 10px 6px;
    }
    .hex .hex-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .hex .hex-label {
        font-size: 12px;
    }
    .hex .hex-sub {
        font-size: 9px;
    }
    .circle-hub {
        width: 130px;
        height: 130px;
        padding: 14px;
    }
    .circle-hub .hub-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .circle-hub .hub-label {
        font-size: 15px;
    }
    .circle-hub .hub-sub {
        font-size: 9px;
    }
    .honeycomb-row {
        gap: 4px;
        margin-bottom: -14px;
    }
    .honeycomb-row .hex-spacer {
        width: 60px;
    }
}

@media (max-width: 540px) {
    .hex {
        width: 80px;
        height: 92px;
        padding: 6px 4px;
    }
    .hex .hex-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .hex .hex-label {
        font-size: 10px;
    }
    .hex .hex-sub {
        font-size: 7px;
    }
    .circle-hub {
        width: 96px;
        height: 96px;
        padding: 10px;
    }
    .circle-hub .hub-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    .circle-hub .hub-label {
        font-size: 11px;
    }
    .circle-hub .hub-sub {
        font-size: 7px;
    }
    .honeycomb-row {
        gap: 3px;
        margin-bottom: -10px;
    }
    .honeycomb-row .hex-spacer {
        width: 44px;
    }
}

/* ════════════════════════════════════════════════════════════
   SMART ROUTING
   ════════════════════════════════════════════════════════════ */
.smart-routing-section {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 24px 18px !important;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(30, 60, 130, 0.15), transparent 70%),
        radial-gradient(ellipse 50% 40% at 30% 70%, rgba(76, 92, 240, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 70%, rgba(124, 108, 246, 0.06), transparent 60%);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(76, 92, 240, 0.04), inset 0 0 60px rgba(76, 92, 240, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.smart-routing-section .particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.smart-routing-section .particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 92, 240, 0.3), transparent 70%);
    animation: floatParticle linear infinite;
    opacity: 0;
}
@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1.2);
    }
}
.smart-routing-section .circuit-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(76, 92, 240, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 92, 240, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
}
.smart-routing-section .ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.smart-routing-section .ambient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(76, 92, 240, 0.06);
    top: -100px;
    left: -100px;
}
.smart-routing-section .ambient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(124, 108, 246, 0.06);
    bottom: -80px;
    right: -80px;
}

.sr-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sr-label {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 18px;
}
.sr-label .line {
    width: 50px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.sr-label .line.right {
    background: linear-gradient(90deg, #4c5cf0, transparent);
}

.sr-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 800px;
}
.sr-headline .highlight {
    font-weight: 700;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    max-width: 620px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 30px;
}

.sr-diagram {
    position: relative;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 300 / 165;
    margin: 16px auto 0;
}

.sr-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    height: 22.5%;
    z-index: 10;
}

.ai-chip {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22%;
    background: linear-gradient(145deg, rgba(20, 35, 70, 0.7), rgba(10, 18, 40, 0.8));
    border: 2px solid rgba(76, 92, 240, 0.5);
    box-shadow:
        0 0 30px rgba(76, 92, 240, 0.15),
        0 0 60px rgba(76, 92, 240, 0.05),
        inset 0 0 40px rgba(76, 92, 240, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    z-index: 10;
    cursor: default;
    opacity: 1;
    transform: scale(1);
}
.ai-chip:hover {
    box-shadow:
        0 0 50px rgba(76, 92, 240, 0.25),
        0 0 80px rgba(76, 92, 240, 0.08),
        inset 0 0 60px rgba(76, 92, 240, 0.06);
    transform: scale(1.02);
}
.ai-chip::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(76, 92, 240, 0.5), rgba(124, 108, 246, 0.3), rgba(76, 92, 240, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: chipGlowPulse 3s ease-in-out infinite;
}
@keyframes chipGlowPulse {
    0%,
    100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}
.ai-chip::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 22px;
    background: radial-gradient(ellipse at 30% 30%, rgba(76, 92, 240, 0.08), transparent 70%);
    pointer-events: none;
}
.chip-detail {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    pointer-events: none;
}
.chip-detail.d1 {
    top: 14px;
    left: 14px;
    width: 20px;
    height: 20px;
}
.chip-detail.d2 {
    bottom: 14px;
    right: 14px;
    width: 16px;
    height: 16px;
}
.chip-detail.d3 {
    top: 14px;
    right: 14px;
    width: 12px;
    height: 12px;
}
.chip-detail.d4 {
    bottom: 14px;
    left: 14px;
    width: 14px;
    height: 14px;
}
.chip-detail.d5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(76, 92, 240, 0.08);
    background: radial-gradient(circle, rgba(76, 92, 240, 0.04), transparent 70%);
}
.chip-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.chip-center .chip-ai-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.chip-center .chip-sub {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 2px;
}

.sr-diagram-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}
.sr-diagram-svg path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}
.sr-diagram-svg .line-glow {
    filter: blur(1.2px);
}

.sr-cards-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 18%;
    row-gap: 24%;
    z-index: 8;
}

.sr-card {
    position: relative;
    padding: 10px 12px 9px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid color-mix(in srgb, var(--accent) 35%, transparent);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    opacity: 1;
    transform: translateY(0);
}
.sr-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
}
.sr-card:hover::after {
    transform: translateX(100%);
}

.sr-card {
    --accent: #4c5cf0;
}
.sr-card.card-blue {
    --accent: #38bdf8;
}
.sr-card.card-purple {
    --accent: #a78bfa;
}
.sr-card.card-green {
    --accent: #2563eb;
}
.sr-card:nth-of-type(4).card-blue {
    --accent: #4c5cf0;
}

.sr-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.sr-card-icon {
    width: 26px;
    height: 26px;
    aspect-ratio: 1 / 1;
    border-radius: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    transition: all 0.4s ease;
    color: var(--accent);
}
.sr-card:hover .sr-card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05) rotate(-4deg);
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 30%, transparent);
}

.sr-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.sr-card-divider {
    display: block;
    width: 22px;
    height: 2px;
    margin: 7px 0 6px;
    border-radius: 2px;
    background: var(--accent);
    opacity: 0.7;
}
.sr-card-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.42;
    font-weight: 300;
}
.sr-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: rgba(255, 255, 255, 0.04);
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px color-mix(in srgb, var(--accent) 12%, transparent);
}

@media (max-width: 1024px) {
    .sr-diagram {
        aspect-ratio: unset;
        max-width: 640px;
    }
    .sr-diagram-svg {
        display: none;
    }
    .sr-hub {
        position: static;
        transform: none;
        width: 90px;
        height: 90px;
        margin: 0 auto 24px;
    }
    .sr-cards-grid {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .smart-routing-section {
        padding: 20px 24px 30px;
    }
}
@media (max-width: 640px) {
    .sr-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .smart-routing-section {
        padding: 16px 16px 24px;
        border-radius: 24px;
    }
    .sr-headline {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .sr-desc {
        font-size: 15px;
    }
    .sr-label .line {
        width: 30px;
    }
    .sr-label {
        gap: 12px;
        font-size: 10px;
    }
    .sr-card {
        padding: 22px 18px 20px;
    }
}

/* ════════════════════════════════════════════════════════════
   ADMIN CONSOLE
   ════════════════════════════════════════════════════════════ */
.admin-console-section {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 30px 50px;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(20, 50, 120, 0.12), transparent 70%),
        radial-gradient(ellipse 50% 40% at 30% 80%, rgba(76, 92, 240, 0.04), transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 80%, rgba(76, 92, 240, 0.04), transparent 60%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 60px rgba(76, 92, 240, 0.03), inset 0 0 40px rgba(76, 92, 240, 0.02);
}

.admin-console-section .ac-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.admin-console-section .ac-orb.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(76, 92, 240, 0.05);
    top: -80px;
    right: -80px;
}
.admin-console-section .ac-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(76, 92, 240, 0.04);
    bottom: -60px;
    left: -60px;
}

.ac-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ac-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 14px;
}
.ac-label .line {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.ac-label .line.right {
    background: linear-gradient(90deg, #4c5cf0, transparent);
}

.ac-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 12px;
}
.ac-headline .highlight {
    font-weight: 700;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ac-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 580px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 36px;
}

.ac-nodes-container {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ac-hub {
    position: relative;
    z-index: 10;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 30%, rgba(76, 92, 240, 0.2), rgba(76, 92, 240, 0.04));
    border: 2px solid rgba(76, 92, 240, 0.4);
    box-shadow: 0 0 40px rgba(76, 92, 240, 0.15), 0 0 80px rgba(76, 92, 240, 0.05), inset 0 0 40px rgba(76, 92, 240, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    cursor: default;
    animation: hubPulse 3.4s ease-in-out infinite;
}
.ac-hub::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(76, 92, 240, 0.1);
    animation: hubRing 4s ease-in-out infinite;
}
.ac-hub::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(76, 92, 240, 0.06);
    animation: hubRing 6s ease-in-out infinite reverse;
}
.ac-hub:hover {
    transform: scale(1.04);
    box-shadow: 0 0 60px rgba(76, 92, 240, 0.2), 0 0 100px rgba(76, 92, 240, 0.08);
    border-color: rgba(76, 92, 240, 0.6);
}
.ac-hub .hub-icon {
    font-size: 28px;
    color: #6f7df5;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 12px rgba(76, 92, 240, 0.2));
}
.ac-hub .hub-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}
.ac-hub .hub-sub {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1px;
}

.ac-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}
.ac-svg path {
    fill: none;
    stroke: #4c5cf0;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ac-svg .line-glow {
    stroke-width: 4;
    filter: blur(6px);
    opacity: 0.25;
    stroke: #4c5cf0;
}
.ac-svg .line-main {
    stroke-width: 1.8;
    opacity: 0.6;
    stroke: #4c5cf0;
}
.ac-svg .line-pulse {
    stroke-width: 2.5;
    stroke-dasharray: 8, 16;
    animation: pulseMove 1.8s linear infinite;
    stroke: #4c5cf0;
}

.ac-node {
    position: absolute;
    z-index: 8;
    width: 140px;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(76, 92, 240, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    box-shadow: 0 0 20px rgba(76, 92, 240, 0.02);
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.ac-node.node-top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.ac-node.node-top:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.03);
}
.ac-node.node-right {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}
.ac-node.node-right:hover {
    transform: translateY(-50%) translateX(4px) scale(1.03);
}
.ac-node.node-bottom {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.ac-node.node-bottom:hover {
    transform: translateX(-50%) translateY(4px) scale(1.03);
}
.ac-node.node-left {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}
.ac-node.node-left:hover {
    transform: translateY(-50%) translateX(-4px) scale(1.03);
}

.ac-node::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(76, 92, 240, 0.3), transparent 50%, rgba(76, 92, 240, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}
.ac-node:hover::before {
    opacity: 0.8;
}
.ac-node:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(76, 92, 240, 0.05);
    border-color: rgba(76, 92, 240, 0.4);
    box-shadow: 0 12px 40px rgba(76, 92, 240, 0.08);
}

.ac-node .node-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(76, 92, 240, 0.08);
    color: #6f7df5;
    border: 2px solid rgba(76, 92, 240, 0.15);
    transition: all 0.4s ease;
}
.ac-node:hover .node-icon {
    background: rgba(76, 92, 240, 0.18);
    border-color: rgba(76, 92, 240, 0.35);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(76, 92, 240, 0.1);
}

.ac-node .node-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    letter-spacing: 0.01em;
}
.ac-node .node-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    font-weight: 300;
}

.ac-node .glow-dot-blue {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(76, 92, 240, 0.3);
    box-shadow: 0 0 8px rgba(76, 92, 240, 0.15);
    animation: dotPulseBlue 2.8s ease-in-out infinite;
}
@keyframes dotPulseBlue {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.4);
    }
}

@media (max-width: 820px) {
    .ac-nodes-container {
        max-width: 600px;
        aspect-ratio: 1 / 1.2;
    }
    .ac-hub {
        width: 100px;
        height: 100px;
    }
    .ac-hub .hub-icon {
        font-size: 22px;
    }
    .ac-hub .hub-label {
        font-size: 11px;
    }
    .ac-hub .hub-sub {
        font-size: 7px;
    }
    .ac-node {
        width: 120px;
        padding: 14px 12px;
    }
    .ac-node .node-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .ac-node .node-title {
        font-size: 12px;
    }
    .ac-node .node-desc {
        font-size: 10px;
    }
    .ac-node.node-top {
        top: -10px;
    }
    .ac-node.node-right {
        right: -10px;
    }
    .ac-node.node-bottom {
        bottom: -10px;
    }
    .ac-node.node-left {
        left: -10px;
    }
    .ac-svg .line-glow {
        stroke-width: 3;
    }
    .ac-svg .line-main {
        stroke-width: 1.5;
    }
    .ac-svg .line-pulse {
        stroke-width: 2;
    }
}

@media (max-width: 540px) {
    .admin-console-section {
        padding: 24px 12px 32px;
        border-radius: 20px;
    }
    .ac-nodes-container {
        max-width: 340px;
        aspect-ratio: 1 / 1.3;
    }
    .ac-hub {
        width: 72px;
        height: 72px;
    }
    .ac-hub .hub-icon {
        font-size: 16px;
    }
    .ac-hub .hub-label {
        font-size: 9px;
    }
    .ac-hub .hub-sub {
        font-size: 6px;
    }
    .ac-node {
        width: 100px;
        padding: 10px 10px;
        border-radius: 12px;
    }
    .ac-node .node-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-bottom: 4px;
    }
    .ac-node .node-title {
        font-size: 10px;
    }
    .ac-node .node-desc {
        font-size: 8.5px;
        line-height: 1.4;
    }
    .ac-node.node-top {
        top: -6px;
    }
    .ac-node.node-right {
        right: -6px;
    }
    .ac-node.node-bottom {
        bottom: -6px;
    }
    .ac-node.node-left {
        left: -6px;
    }
    .ac-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .ac-headline {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    .ac-label {
        font-size: 9px;
        gap: 10px;
    }
    .ac-label .line {
        width: 24px;
    }
    .ac-svg .line-glow {
        stroke-width: 2;
        filter: blur(4px);
    }
    .ac-svg .line-main {
        stroke-width: 1.2;
    }
    .ac-svg .line-pulse {
        stroke-width: 1.5;
        stroke-dasharray: 5, 12;
    }
    .ac-node .glow-dot-blue {
        width: 4px;
        height: 4px;
        top: 6px;
        right: 6px;
    }
    .ac-hub::before {
        inset: -2px;
    }
    .ac-hub::after {
        inset: -6px;
    }
}

/* ── SECURITY SHIELD ── */
.shield-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shield-shape {
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
    background: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.015));
    border: 2px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.06), inset 0 0 60px rgba(34, 197, 94, 0.02);
    pointer-events: none;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.shield-shape::before {
    content: '';
    position: absolute;
    inset: 10%;
    clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
    border: 1.5px solid rgba(34, 197, 94, 0.1);
    border-style: dashed;
    pointer-events: none;
}
.shield-shape::after {
    content: '';
    position: absolute;
    inset: 22%;
    clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
    border: 1px solid rgba(34, 197, 94, 0.05);
    pointer-events: none;
}
.shield-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
    border: 1px solid rgba(34, 197, 94, 0.08);
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.05);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}
.shield-container:hover::before {
    opacity: 1;
}
.shield-core {
    position: relative;
    z-index: 5;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.03));
    border: 2px solid rgba(34, 197, 94, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25), 0 0 40px rgba(34, 197, 94, 0.06);
    animation: shieldPulse 3.4s ease-out infinite;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.shield-core:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25), 0 0 60px rgba(34, 197, 94, 0.12);
}
.shield-core i {
    font-size: 36px;
    color: #4ade80;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.3));
}
.shield-core .core-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
@keyframes shieldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25), 0 0 40px rgba(34, 197, 94, 0.06);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(34, 197, 94, 0), 0 0 60px rgba(34, 197, 94, 0.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25), 0 0 40px rgba(34, 197, 94, 0.06);
    }
}
.shield-node {
    position: absolute;
    z-index: 4;
    width: 90px;
    text-align: center;
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), filter 0.3s ease;
    cursor: default;
}
.shield-node .node-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.04);
    color: #4ade80;
    transition: all 0.3s ease;
    position: relative;
}
.shield-node .node-ring .status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #070d1a;
    animation: dotBlink 2s ease-in-out infinite;
}
.shield-node.pending .node-ring .status-dot {
    background: #f59e0b;
    animation-duration: 1.4s;
}
.shield-node:hover .node-ring {
    border-color: rgba(34, 197, 94, 0.6);
    background: rgba(34, 197, 94, 0.12);
    transform: scale(1.12);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
}
.shield-node .node-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    line-height: 1.2;
}
.shield-node:hover .node-label {
    color: #fff;
}
.shield-node .node-status {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(34, 197, 94, 0.5);
    margin-top: 1px;
}
.shield-node.pending .node-status {
    color: rgba(245, 158, 11, 0.5);
}
@keyframes dotBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.shield-node.n-top {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}
.shield-node.n-top-right {
    top: 24%;
    right: 5%;
    transform: translateX(0);
}
.shield-node.n-top-left {
    top: 24%;
    left: 5%;
    transform: translateX(0);
}
.shield-node.n-bottom-right {
    bottom: 24%;
    right: 5%;
    transform: translateX(0);
}
.shield-node.n-bottom-left {
    bottom: 24%;
    left: 5%;
    transform: translateX(0);
}

@media (max-width: 820px) {
    .shield-container {
        max-width: 480px;
    }
    .shield-core {
        width: 90px;
        height: 90px;
    }
    .shield-core i {
        font-size: 30px;
    }
    .shield-core .core-label {
        font-size: 9px;
    }
    .shield-node {
        width: 75px;
    }
    .shield-node .node-ring {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .shield-node .node-label {
        font-size: 9px;
    }
    .shield-node .node-status {
        font-size: 7px;
    }
    .shield-node .node-ring .status-dot {
        width: 7px;
        height: 7px;
    }
    .shield-node.n-top {
        top: 6%;
    }
    .shield-node.n-top-right {
        top: 22%;
        right: 3%;
    }
    .shield-node.n-top-left {
        top: 22%;
        left: 3%;
    }
    .shield-node.n-bottom-right {
        bottom: 22%;
        right: 3%;
    }
    .shield-node.n-bottom-left {
        bottom: 22%;
        left: 3%;
    }
}

@media (max-width: 480px) {
    .shield-container {
        max-width: 360px;
    }
    .shield-core {
        width: 72px;
        height: 72px;
    }
    .shield-core i {
        font-size: 24px;
    }
    .shield-core .core-label {
        font-size: 7px;
    }
    .shield-node {
        width: 65px;
    }
    .shield-node .node-ring {
        width: 26px;
        height: 26px;
        font-size: 10px;
        margin-bottom: 3px;
    }
    .shield-node .node-label {
        font-size: 8px;
    }
    .shield-node .node-status {
        font-size: 6px;
    }
    .shield-node .node-ring .status-dot {
        width: 6px;
        height: 6px;
    }
    .shield-node.n-top {
        top: 4%;
    }
    .shield-node.n-top-right {
        top: 20%;
        right: 2%;
    }
    .shield-node.n-top-left {
        top: 20%;
        left: 2%;
    }
    .shield-node.n-bottom-right {
        bottom: 20%;
        right: 2%;
    }
    .shield-node.n-bottom-left {
        bottom: 20%;
        left: 2%;
    }
}

.scan-line-wrap {
    margin: 0 auto;
    height: 2px;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    max-width: 760px;
}
.scan-line {
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #4c5cf0, transparent);
    animation: scanMove 2.6s linear infinite;
}
@keyframes scanMove {
    0% {
        left: -30%;
    }
    100% {
        left: 100%;
    }
}

/* ── GOVERNANCE STEPS ── */
.governance-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
    flex-wrap: wrap;
}
.governance-steps .step {
    flex: 1;
    min-width: 160px;
    max-width: 240px;
    padding: 22px 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: all 0.3s ease;
}
.governance-steps .step:hover {
    border-color: rgba(76, 92, 240, 0.2);
    background: rgba(76, 92, 240, 0.04);
    transform: translateY(-3px);
}
.governance-steps .step .step-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(76, 92, 240, 0.4);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.governance-steps .step .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: rgba(76, 92, 240, 0.08);
    color: #8b9bff;
    transition: all 0.3s ease;
}
.governance-steps .step:hover .step-icon {
    background: #4c5cf0;
    color: #fff;
    transform: scale(1.06) rotate(-4deg);
}
.governance-steps .step h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin: 0 0 4px;
}
.governance-steps .step p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}
.governance-steps .step-arrow {
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(76, 92, 240, 0.2);
    font-size: 16px;
}
.governance-steps .step-arrow::before {
    content: '→';
    font-size: 20px;
    font-weight: 300;
}
@media (max-width: 700px) {
    .governance-steps .step {
        min-width: 120px;
        padding: 16px 10px 14px;
    }
    .governance-steps .step .step-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .governance-steps .step h6 {
        font-size: 11.5px;
    }
    .governance-steps .step p {
        font-size: 10px;
    }
    .governance-steps .step-arrow {
        flex: 0 0 16px;
    }
    .governance-steps .step-arrow::before {
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .governance-steps {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .governance-steps .step {
        max-width: 280px;
        width: 100%;
        padding: 14px 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
    .governance-steps .step .step-icon {
        margin: 0;
        width: 34px;
        height: 34px;
        font-size: 14px;
        flex-shrink: 0;
    }
    .governance-steps .step .step-num {
        display: none;
    }
    .governance-steps .step-arrow {
        flex: 0 0 10px;
        height: 10px;
        width: auto;
        transform: rotate(90deg);
    }
    .governance-steps .step-arrow::before {
        font-size: 14px;
    }
    .governance-steps .step h6 {
        font-size: 11.5px;
    }
    .governance-steps .step p {
        font-size: 10px;
    }
}

/* ── CTA ── */
.cta-final {
    padding: 50px 24px 60px;
    text-align: center;
    position: relative;
}
.cta-final .cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.cta-ghost {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
}
.cta-ghost:hover {
    color: #fff;
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 18, 0.75);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-box {
    background: #0d1526;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    padding: 32px 32px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(14px);
    transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}
.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.modal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 4px;
}
.modal-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin-bottom: 20px;
}
.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 0;
}
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.modal-field.full {
    grid-column: 1 / -1;
}
.modal-field label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}
.modal-field label .req {
    color: #6f7df5;
    margin-left: 2px;
}
.modal-field input,
.modal-field select,
.modal-field textarea {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
}
.modal-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%238a93a6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 4.5l3.5 3.5 3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.modal-field select option {
    background: #fff;
    color: #000;
}
.modal-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.8);
    cursor: pointer;
    transform: scale(1.5);
}
.modal-field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}
.modal-field input::placeholder,
.modal-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
    border-color: #4c5cf0;
    background: rgba(76, 92, 240, 0.05);
}
.modal-submit {
    width: 100%;
    margin-top: 2px;
    padding: 14px;
    border-radius: 12px;
    background: #4c5cf0;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.modal-submit:hover {
    background: #3a4ad4;
}
.modal-note {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.5;
}
.modal-success {
    text-align: center;
    padding: 16px 0;
}
.modal-success .ms-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 20px;
}
.modal-success h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}
.modal-success p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ── FOOTER ── */
.footer-custom {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #070d1a;
}
.footer-custom .footer-logo {
    opacity: 0.9;
}

#mobileMenu {
    background: rgba(10, 18, 34, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
}
#mobileMenu.mm-open {
    display: flex;
}
@media (min-width: 768px) {
    #mobileMenu {
        display: none !important;
    }
}
#mobileMenu a {
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    transition: color 0.2s ease;
}
#mobileMenu a:hover,
#mobileMenu a.active {
    color: #4c5cf0;
}

/* ════════════════════════════════════════════════════════════
   CASE ROOM — ENLARGED + PERFECT ARC ALIGNMENT
   ════════════════════════════════════════════════════════════ */
.caseroom-radial {
    position: relative;
    width: 100%;
    max-width: 1060px;
    height: 600px;
    margin: 8px auto -60px;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.caseroom-radial svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.cr-hub {
    position: absolute;
    z-index: 10;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 35%, rgba(76, 92, 240, 0.35), rgba(76, 92, 240, 0.06));
    border: 3px solid rgba(76, 92, 240, 0.5);
    box-shadow:
        0 0 50px rgba(76, 92, 240, 0.25),
        0 0 100px rgba(76, 92, 240, 0.08),
        inset 0 0 80px rgba(76, 92, 240, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    cursor: default;
    animation: crHubPulse 3.6s ease-in-out infinite;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cr-hub::before {
    display: none;
}
.cr-hub::after {
    display: none;
}
@keyframes crHubPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 92, 240, 0.2), 0 0 50px rgba(76, 92, 240, 0.08);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(76, 92, 240, 0), 0 0 90px rgba(76, 92, 240, 0.03);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 92, 240, 0.2), 0 0 50px rgba(76, 92, 240, 0.08);
    }
}
.cr-hub .hub-icon {
    font-size: 40px;
    color: #8b9bff;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 20px rgba(76, 92, 240, 0.3));
}
.cr-hub .hub-label {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #9adfff, #4c5cf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.cr-hub .hub-sub {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
    word-break: break-word;
}

/* ── ARC-ALIGNED MODULE POSITIONS ── */
/* Arc center: (300, 300), radius: 190, spans 180° (left to right) */
/* 4 modules evenly spaced at: 180°, 120°, 60°, 0° */
.cr-segment-label {
    position: absolute;
    z-index: 6;
    text-align: center;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
    width: 160px;
    transform: translate(-50%, -50%);
}
.cr-segment-label .seg-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(76, 92, 240, 0.08);
    border: 2.5px solid rgba(76, 92, 240, 0.18);
    color: #8b9bff;
    transition: all 0.4s ease;
    pointer-events: auto;
    cursor: default;
}
.cr-segment-label .seg-icon:hover {
    background: #4c5cf0;
    color: #fff;
    transform: scale(1.12) rotate(-4deg);
    border-color: #4c5cf0;
    box-shadow: 0 0 40px rgba(76, 92, 240, 0.25);
}
.cr-segment-label .seg-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0.02em;
    word-break: break-word;
    hyphens: auto;
    padding: 0 4px;
}
.cr-segment-label .seg-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.3;
    margin-top: 2px;
    font-weight: 300;
    display: none;
}

/* ── Evenly spaced along the arc ── */
/* s1: leftmost (180°) — (110, 300) */
.cr-segment-label.s1 {
    left: 18.33%;
    top: 50%;
}
/* s2: upper-left (120°) — (205, 135.5) */
.cr-segment-label.s2 {
    left: 34.17%;
    top: 22.58%;
}
/* s3: upper-right (60°) — (395, 135.5) */
.cr-segment-label.s3 {
    left: 65.83%;
    top: 22.58%;
}
/* s4: rightmost (0°) — (490, 300) */
.cr-segment-label.s4 {
    left: 81.67%;
    top: 50%;
}

.cr-segment-label:hover {
    transform: translate(-50%, -50%) translateY(-4px) scale(1.02);
}

/* ── Responsive: maintain arc alignment at smaller sizes ── */
@media (max-width: 820px) {
    .caseroom-radial {
        max-width: 820px;
        height: 520px;
        margin: 8px auto -50px;
    }
    .cr-hub {
        width: 130px;
        height: 130px;
    }
    .cr-hub .hub-icon {
        font-size: 32px;
    }
    .cr-hub .hub-label {
        font-size: 17px;
    }
    .cr-hub .hub-sub {
        font-size: 7px;
    }
    .cr-segment-label {
        width: 120px;
    }
    .cr-segment-label .seg-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .cr-segment-label .seg-title {
        font-size: 13px;
    }
    .cr-segment-label .seg-desc {
        display: none;
    }
    /* Scaled arc positions for 820px */
    .cr-segment-label.s1 {
        left: 18.33%;
        top: 50%;
    }
    .cr-segment-label.s2 {
        left: 34.17%;
        top: 22.58%;
    }
    .cr-segment-label.s3 {
        left: 65.83%;
        top: 22.58%;
    }
    .cr-segment-label.s4 {
        left: 81.67%;
        top: 50%;
    }
}

@media (max-width: 540px) {
    .caseroom-radial {
        max-width: 500px;
        height: 400px;
        margin: 8px auto -30px;
    }
    .cr-hub {
        width: 90px;
        height: 90px;
        top: 50%;
    }
    .cr-hub .hub-icon {
        font-size: 22px;
    }
    .cr-hub .hub-label {
        font-size: 12px;
    }
    .cr-hub .hub-sub {
        font-size: 6px;
        word-break: break-word;
    }
    .cr-segment-label {
        width: 90px;
    }
    .cr-segment-label .seg-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0 auto 4px;
    }
    .cr-segment-label .seg-title {
        font-size: 9px;
        line-height: 1.1;
    }
    .cr-segment-label .seg-desc {
        display: none;
    }
    /* Scaled arc positions for 540px */
    .cr-segment-label.s1 {
        left: 18.33%;
        top: 50%;
    }
    .cr-segment-label.s2 {
        left: 34.17%;
        top: 22.58%;
    }
    .cr-segment-label.s3 {
        left: 65.83%;
        top: 22.58%;
    }
    .cr-segment-label.s4 {
        left: 81.67%;
        top: 50%;
    }
}

@media (max-width: 420px) {
    .caseroom-radial {
        max-width: 380px;
        height: 340px;
        margin: 8px auto -20px;
    }
    .cr-hub {
        width: 72px;
        height: 72px;
    }
    .cr-hub .hub-icon {
        font-size: 18px;
    }
    .cr-hub .hub-label {
        font-size: 9px;
    }
    .cr-hub .hub-sub {
        font-size: 5px;
    }
    .cr-segment-label {
        width: 72px;
    }
    .cr-segment-label .seg-icon {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .cr-segment-label .seg-title {
        font-size: 7.5px;
    }
    /* Scaled arc positions for 420px */
    .cr-segment-label.s1 {
        left: 18.33%;
        top: 50%;
    }
    .cr-segment-label.s2 {
        left: 34.17%;
        top: 22.58%;
    }
    .cr-segment-label.s3 {
        left: 65.83%;
        top: 22.58%;
    }
    .cr-segment-label.s4 {
        left: 81.67%;
        top: 50%;
    }
}

.showcase-inner:not(.no-image) {
    align-items: center;
}
.showcase-inner:not(.no-image) .showcase-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.showcase-inner:not(.no-image) .showcase-number,
.showcase-inner:not(.no-image) .showcase-title,
.showcase-inner:not(.no-image) .showcase-lede {
    text-align: center;
}
.showcase-inner:not(.no-image) .showcase-feats,
.showcase-inner:not(.no-image) .showcase-chips {
    margin-top: 20px;
}
/* ════════════════════════════════════════════════════════════
   ADMIN CONSOLE — REDESIGN: live console mockup
   ════════════════════════════════════════════════════════════ */
.ac2-section {
    position: relative;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.ac2-header {
    text-align: center;
    margin-bottom: 34px;
}
.ac2-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 14px;
}
.ac2-label::before,
.ac2-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.ac2-label::after {
    background: linear-gradient(90deg, #4c5cf0, transparent);
}
.ac2-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 12px;
}
.ac2-headline b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ac2-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Console frame ── */
.ac2-console {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #0c1426 0%, #0a111f 100%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(76, 92, 240, 0.04), 0 0 80px rgba(76, 92, 240, 0.05);
    overflow: hidden;
}
.ac2-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ac2-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.ac2-titlebar-label {
    margin-left: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
}
.ac2-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4ade80;
}
.ac2-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: ac2Blink 1.8s ease-in-out infinite;
}
@keyframes ac2Blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.ac2-body {
    display: grid;
    grid-template-columns: 200px 1fr;
}

/* Sidebar */
.ac2-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ac2-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.2s ease;
}
.ac2-nav-item i {
    font-size: 15px;
    width: 16px;
    text-align: center;
}
.ac2-nav-item.active {
    background: rgba(76, 92, 240, 0.12);
    color: #fff;
    box-shadow: inset 2px 0 0 #4c5cf0;
}

/* Main panel */
.ac2-main {
    padding: 22px 24px 26px;
}

.ac2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}
.ac2-stat {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.25s ease, background 0.25s ease;
}
.ac2-stat:hover {
    border-color: rgba(76, 92, 240, 0.3);
    background: rgba(76, 92, 240, 0.04);
}
.ac2-stat-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}
.ac2-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ac2-stat-delta {
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ac2-stat-delta.up { color: #4ade80; }
.ac2-stat-delta.flat { color: rgba(255,255,255,0.35); }

/* Queue table */
.ac2-queue-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.ac2-queue-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.ac2-queue-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}
.ac2-table {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.ac2-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    align-items: center;
    padding: 11px 16px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}
.ac2-row:last-child { border-bottom: none; }
.ac2-row:hover { background: rgba(255, 255, 255, 0.02); }
.ac2-row.head {
    background: rgba(255, 255, 255, 0.015);
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 10px;
}
.ac2-row .rcase { color: #fff; font-weight: 500; }
.ac2-row .rsub { color: rgba(255, 255, 255, 0.5); }
.ac2-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 600;
    width: fit-content;
}
.ac2-pill::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.ac2-pill.stat { background: rgba(248, 113, 113, 0.12); color: #f87171; }
.ac2-pill.stat::before { background: #f87171; }
.ac2-pill.progress { background: rgba(251, 191, 36, 0.12); color: #fbbf24; }
.ac2-pill.progress::before { background: #fbbf24; }
.ac2-pill.done { background: rgba(74, 222, 128, 0.12); color: #4ade80; }
.ac2-pill.done::before { background: #4ade80; }

@media (max-width: 760px) {
    .ac2-body { grid-template-columns: 1fr; }
    .ac2-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
    }
    .ac2-nav-item { flex-shrink: 0; }
    .ac2-nav-item span { display: none; }
    .ac2-stats { grid-template-columns: repeat(2, 1fr); }
    .ac2-row { grid-template-columns: 1.4fr 1fr 0.9fr; }
    .ac2-row .rmodality { display: none; }
}
@media (max-width: 480px) {
    .ac2-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ac2-stat { padding: 12px; }
    .ac2-stat-value { font-size: 18px; }
    .ac2-main { padding: 16px; }
}

/* ════════════════════════════════════════════════════════════
   SECURITY — REDESIGN: compliance panel + data-flow strip
   ════════════════════════════════════════════════════════════ */
.sec2-section {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.sec2-header { text-align: center; margin-bottom: 30px; }
.sec2-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 14px;
}
.sec2-label::before,
.sec2-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.sec2-label::after { background: linear-gradient(90deg, #4c5cf0, transparent); }
.sec2-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 12px;
}
.sec2-headline b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec2-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Data flow strip */
.sec2-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.015);
    margin-bottom: 18px;
}
.sec2-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.sec2-flow-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: rgba(74, 222, 128, 0.08);
    border: 1.5px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}
.sec2-flow-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    white-space: nowrap;
}
.sec2-flow-line {
    flex: 1;
    height: 2px;
    min-width: 20px;
    background: repeating-linear-gradient(90deg, rgba(74, 222, 128, 0.4) 0 6px, transparent 6px 12px);
    position: relative;
    top: -14px;
}

/* Checklist */
.sec2-list {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
}
.sec2-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}
.sec2-item:last-child { border-bottom: none; }
.sec2-item:hover { background: rgba(255, 255, 255, 0.02); }
.sec2-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
}
.sec2-item.pending .sec2-item-icon {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}
.sec2-item-body { flex: 1; min-width: 0; }
.sec2-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.sec2-item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}
.sec2-item-status {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4ade80;
}
.sec2-item.pending .sec2-item-status { color: #fbbf24; }
.sec2-item-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: ac2Blink 2s ease-in-out infinite;
}
.sec2-item.pending .sec2-item-status span {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    animation-duration: 1.4s;
}

@media (max-width: 640px) {
    .sec2-flow { flex-wrap: wrap; justify-content: center; padding: 18px; }
    .sec2-flow-line { display: none; }
    .sec2-item { padding: 13px 14px; gap: 10px; }
    .sec2-item-title { font-size: 12.5px; }
    .sec2-item-desc { font-size: 10.5px; }
    .sec2-item-status span { display: block; }
    .sec2-item-status { font-size: 0; gap: 0; }
}
/* ════════════════════════════════════════════════════════════
   SECURITY v2 — all-blue: live monitor terminal + badge grid
   ════════════════════════════════════════════════════════════ */
.sec3-section {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.sec3-header { text-align: center; margin-bottom: 30px; }
.sec3-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 14px;
}
.sec3-label::before,
.sec3-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.sec3-label::after { background: linear-gradient(90deg, #4c5cf0, transparent); }
.sec3-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 12px;
}
.sec3-headline b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec3-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Terminal / monitor panel ── */
.sec3-terminal {
    border-radius: 18px;
    border: 1px solid rgba(76, 92, 240, 0.22);
    background: linear-gradient(180deg, #0b1122 0%, #080d1a 100%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 60px rgba(76, 92, 240, 0.06), inset 0 0 40px rgba(76, 92, 240, 0.02);
    overflow: hidden;
    margin-bottom: 18px;
}
.sec3-term-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(76, 92, 240, 0.04);
    border-bottom: 1px solid rgba(76, 92, 240, 0.14);
}
.sec3-term-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(76, 92, 240, 0.25);
}
.sec3-term-title {
    margin-left: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
}
.sec3-term-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9adfff;
}
.sec3-term-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9adfff;
    box-shadow: 0 0 8px rgba(154, 223, 255, 0.7);
    animation: sec3Blink 1.8s ease-in-out infinite;
}
@keyframes sec3Blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.sec3-term-body {
    padding: 18px 22px 20px;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.9;
}
.sec3-log-line {
    display: flex;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sec3-log-time {
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}
.sec3-log-tag {
    flex-shrink: 0;
    color: #6f7df5;
    font-weight: 700;
}
.sec3-log-text {
    color: rgba(255, 255, 255, 0.55);
    overflow: hidden;
    text-overflow: ellipsis;
}
.sec3-log-text b {
    color: #9adfff;
    font-weight: 600;
}
.sec3-cursor {
    display: inline-block;
    width: 7px;
    height: 13px;
    background: #4c5cf0;
    margin-left: 12px;
    vertical-align: middle;
    animation: sec3Cursor 1s step-end infinite;
}
@keyframes sec3Cursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* ── Badge grid ── */
.sec3-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.sec3-badge {
    padding: 18px 14px 16px;
    border-radius: 14px;
    background: rgba(76, 92, 240, 0.03);
    border: 1px solid rgba(76, 92, 240, 0.16);
    text-align: center;
    transition: all 0.25s ease;
}
.sec3-badge:hover {
    border-color: rgba(76, 92, 240, 0.4);
    background: rgba(76, 92, 240, 0.07);
    transform: translateY(-3px);
}
.sec3-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(76, 92, 240, 0.14);
    border: 1.5px solid rgba(76, 92, 240, 0.4);
    color: #9adfff;
}
.sec3-badge.pending .sec3-badge-icon {
    background: transparent;
    border: 1.5px dashed rgba(76, 92, 240, 0.35);
    color: rgba(154, 223, 255, 0.5);
}
.sec3-badge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}
.sec3-badge.pending .sec3-badge-title { color: rgba(255, 255, 255, 0.6); }
.sec3-badge-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6f7df5;
}
.sec3-badge-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6f7df5;
}
.sec3-badge.pending .sec3-badge-status {
    color: rgba(154, 223, 255, 0.45);
}
.sec3-badge.pending .sec3-badge-status::before {
    background: rgba(154, 223, 255, 0.45);
}

@media (max-width: 760px) {
    .sec3-grid { grid-template-columns: repeat(3, 1fr); }
    .sec3-log-line { font-size: 10.5px; }
}
@media (max-width: 480px) {
    .sec3-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sec3-badge { padding: 14px 10px 12px; }
    .sec3-badge-icon { width: 36px; height: 36px; font-size: 15px; }
    .sec3-badge-title { font-size: 11px; }
    .sec3-term-body { padding: 14px 14px 16px; font-size: 10.5px; }
    .sec3-log-time { display: none; }
}
/* ════════════════════════════════════════════════════════════
   SECURITY v3 — vertical encryption spine, all-blue, no cards/grids
   ════════════════════════════════════════════════════════════ */
.sec4-section {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.sec4-header { text-align: center; margin-bottom: 46px; }
.sec4-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 14px;
}
.sec4-label::before, .sec4-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.sec4-label::after { background: linear-gradient(90deg, #4c5cf0, transparent); }
.sec4-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 12px;
}
.sec4-headline b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec4-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ── The spine ── */
.sec4-spine-wrap {
    position: relative;
    padding-left: 46px;
}
.sec4-spine-wrap::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, #4c5cf0 0%, #7c6cf6 50%, rgba(76,92,240,0.15) 100%);
    border-radius: 2px;
}
.sec4-spine-wrap::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #9adfff;
    box-shadow: 0 0 0 4px rgba(154,223,255,0.15), 0 0 24px rgba(154,223,255,0.5);
    animation: sec4Travel 5s ease-in-out infinite;
}
@keyframes sec4Travel {
    0%   { top: 0%; opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { top: 96%; opacity: 0; }
}

.sec4-point {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
}
.sec4-point::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 26px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(76,92,240,0.6), transparent);
}
.sec4-node-dot {
    position: absolute;
    left: -38px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #070d1a;
    border: 2.5px solid #4c5cf0;
    box-shadow: 0 0 0 5px rgba(76,92,240,0.08);
    flex-shrink: 0;
    z-index: 2;
}
.sec4-point.pending .sec4-node-dot {
    border: 2.5px dashed rgba(76,92,240,0.5);
    box-shadow: none;
}

.sec4-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(76,92,240,0.05), transparent 60%);
    border: 1px solid rgba(76, 92, 240, 0.14);
    transition: all 0.3s ease;
}
.sec4-point:hover .sec4-content {
    border-color: rgba(76, 92, 240, 0.4);
    background: linear-gradient(120deg, rgba(76,92,240,0.09), transparent 70%);
    transform: translateX(4px);
}
.sec4-point.pending .sec4-content {
    border-style: dashed;
    border-color: rgba(76, 92, 240, 0.22);
}
.sec4-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(76, 92, 240, 0.12);
    color: #9adfff;
}
.sec4-point.pending .sec4-icon {
    background: transparent;
    border: 1.5px dashed rgba(154,223,255,0.4);
    color: rgba(154,223,255,0.55);
}
.sec4-text { flex: 1; min-width: 0; }
.sec4-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 3px;
}
.sec4-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.sec4-tag {
    flex-shrink: 0;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6f7df5;
    padding: 2px 9px;
    border-radius: 100px;
    border: 1px solid rgba(76,92,240,0.35);
    background: rgba(76,92,240,0.08);
}
.sec4-point.pending .sec4-tag {
    color: rgba(154,223,255,0.6);
    border-color: rgba(76,92,240,0.2);
    background: transparent;
}
.sec4-copy {
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.55;
}

@media (max-width: 600px) {
    .sec4-spine-wrap { padding-left: 34px; }
    .sec4-spine-wrap::before { left: 11px; }
    .sec4-spine-wrap::after { left: 6px; width: 10px; height: 10px; }
    .sec4-node-dot { left: -28px; width: 13px; height: 13px; }
    .sec4-point::before { left: -34px; width: 22px; }
    .sec4-content { padding: 12px 14px; gap: 12px; }
    .sec4-icon { width: 32px; height: 32px; font-size: 14px; }
    .sec4-title { font-size: 13px; }
    .sec4-copy { font-size: 11px; }
    .sec4-tag { font-size: 8.5px; padding: 2px 7px; }
}
/* ════════════════════════════════════════════════════════════
   ADMIN CONSOLE v2 — stat rail + live case stream (no browser-mockup, no grid cards)
   ════════════════════════════════════════════════════════════ */
.ac3-section {
    position: relative;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.ac3-header { text-align: center; margin-bottom: 40px; }
.ac3-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 14px;
}
.ac3-label::before, .ac3-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c5cf0);
    border-radius: 2px;
}
.ac3-label::after { background: linear-gradient(90deg, #4c5cf0, transparent); }
.ac3-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 12px;
}
.ac3-headline b {
    font-weight: 600;
    background: linear-gradient(135deg, #9adfff 0%, #7c6cf6 50%, #4c5cf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ac3-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Layout: vertical stat rail (left) + flowing case stream (right) ── */
.ac3-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border-radius: 20px;
    border: 1px solid rgba(76, 92, 240, 0.16);
    background: linear-gradient(160deg, rgba(76,92,240,0.04), transparent 60%);
    overflow: hidden;
}

/* Left rail: stacked metrics, no card borders, just dividers */
.ac3-rail {
    padding: 28px 26px;
    border-right: 1px solid rgba(76, 92, 240, 0.14);
    display: flex;
    flex-direction: column;
}
.ac3-metric {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ac3-metric:last-child { border-bottom: none; padding-bottom: 0; }
.ac3-metric:first-child { padding-top: 0; }
.ac3-metric-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}
.ac3-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.ac3-metric-value span {
    font-size: 12px;
    font-weight: 600;
    color: #9adfff;
}
.ac3-metric-bar {
    margin-top: 10px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.ac3-metric-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #4c5cf0, #9adfff);
}

/* Right: live case stream — horizontal ticking rows, not boxed cards */
.ac3-stream {
    padding: 26px 30px 22px;
}
.ac3-stream-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.ac3-stream-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}
.ac3-stream-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9adfff;
}
.ac3-stream-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9adfff;
    box-shadow: 0 0 8px rgba(154,223,255,0.7);
    animation: ac3Blink 1.8s ease-in-out infinite;
}
@keyframes ac3Blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.ac3-case {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: padding-left 0.25s ease;
}
.ac3-case:last-child { border-bottom: none; }
.ac3-case:hover { padding-left: 10px; }
.ac3-case-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4c5cf0;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(76,92,240,0.12);
}
.ac3-case.stat .ac3-case-pulse {
    background: #9adfff;
    box-shadow: 0 0 0 3px rgba(154,223,255,0.18), 0 0 10px rgba(154,223,255,0.6);
    animation: ac3Blink 1.2s ease-in-out infinite;
}
.ac3-case-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
    width: 190px;
}
.ac3-case-meta {
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    flex: 1;
}
.ac3-case-tag {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6f7df5;
}
.ac3-case.stat .ac3-case-tag { color: #9adfff; }

/* Sparkline strip under stream */
.ac3-spark {
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 34px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.ac3-spark-bar {
    flex: 1;
    background: linear-gradient(180deg, #4c5cf0, rgba(76,92,240,0.15));
    border-radius: 2px 2px 0 0;
    opacity: 0.55;
}
.ac3-spark-bar.now {
    opacity: 1;
    background: linear-gradient(180deg, #9adfff, #4c5cf0);
}

@media (max-width: 800px) {
    .ac3-layout { grid-template-columns: 1fr; }
    .ac3-rail {
        border-right: none;
        border-bottom: 1px solid rgba(76, 92, 240, 0.14);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 28px;
    }
    .ac3-metric { border-bottom: none; flex: 1; min-width: 130px; padding: 14px 0; }
    .ac3-case-name { width: 130px; }
}
@media (max-width: 480px) {
    .ac3-metric-value { font-size: 22px; }
    .ac3-case { flex-wrap: wrap; gap: 8px; }
    .ac3-case-name { width: auto; }
    .ac3-case-meta { width: 100%; order: 3; }
    .ac3-stream { padding: 20px 16px 18px; }
    .ac3-rail { padding: 20px 16px; }
}