
/* ==========================================================================
   RADIAL HERO COMPONENT STYLING (6-Node Coordinate Vector System)
   ========================================================================== */
.az-radial-hero.massive-layout {
    background-color: #0b132b;
    color: var(--color-text-light);
    [cite: 1] padding: 120px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.az-radial-hero.massive-layout .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* Slide Copy Management toggles */
.slide-text-wrapper {
    display: none;
}

.slide-text-wrapper.active {
    display: block;
    animation: scaleUpIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-left-content h1 {
    color: var(--color-text-light);
    [cite: 1] font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-cta-btn {
    display: inline-block;
    background-color: var(--color-secondary);
    [cite: 1] color: white !important;
    padding: 14px 30px;
    border-radius: var(--border-radius-sm);
    [cite: 1] font-weight: bold;
    margin-top: 25px;
    transition: var(--transition-smooth);
    [cite: 1]
}

.hero-cta-btn:hover {
    background-color: var(--color-primary);
    [cite: 1] transform: translateY(-2px);
}

.az-radial-hero.massive-layout .hero-right-display {
    position: relative;
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Master Orbit Ring */
.az-radial-hero.massive-layout .radial-orbit-container {
    width: 620px;
    height: 620px;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    position: relative;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.az-radial-hero.massive-layout .orbit-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--color-primary);
    [cite: 1] border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    z-index: 10;
    box-shadow: 0 0 30px var(--color-primary);
    [cite: 1]
}

/* Base Image Nodes */
.az-radial-hero.massive-layout .orbit-img-node {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #0b132b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        width 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s ease;
    z-index: 2;
}

.az-radial-hero.massive-layout .orbit-img-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active Highlight Scaling */
.az-radial-hero.massive-layout .orbit-img-node.active {
    width: 440px;
    height: 440px;
    border-color: var(--color-secondary);
    [cite: 1] z-index: 10;
}

/* ==========================================================================
   6-NODE POLAR PLACEMENT MAP (Radius = 310px Offset Array Metrics)
   ========================================================================== */
/* Node 1 (0 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-1 {
    top: -70px;
    left: calc(50% - 70px);
}

.az-radial-hero.massive-layout .orbit-img-node.position-1.active {
    top: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Node 2 (60 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-2 {
    top: 85px;
    right: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-2.active {
    top: calc(50% - 220px);
    right: calc(50% - 220px);
}

/* Node 3 (120 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-3 {
    bottom: 85px;
    right: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-3.active {
    bottom: calc(50% - 220px);
    right: calc(50% - 220px);
}

/* Node 4 (180 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-4 {
    bottom: -70px;
    left: calc(50% - 70px);
}

.az-radial-hero.massive-layout .orbit-img-node.position-4.active {
    bottom: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Node 5 (240 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-5 {
    bottom: 85px;
    left: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-5.active {
    bottom: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Node 6 (300 deg) */
.az-radial-hero.massive-layout .orbit-img-node.position-6 {
    top: 85px;
    left: -25px;
}

.az-radial-hero.massive-layout .orbit-img-node.position-6.active {
    top: calc(50% - 220px);
    left: calc(50% - 220px);
}

/* Navigation Controller Interface */
.radial-nav-control-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.control-dot {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-smooth);
    [cite: 1]
}

.control-dot.active,
.control-dot:hover {
    background: var(--color-secondary);
    [cite: 1] transform: scale(1.1);
}

.nav-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    [cite: 1]
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

