/* =====================================================
   VISIV - GLOBAL FEATURES SHOWCASE
   Premium tech design system for all service subpages
   Large visual pill + clean text features layout
   ===================================================== */

/* =====================================================
   SECTION CONTAINER
   ===================================================== */
.features-showcase {
    position: relative;
    padding: var(--section-pad-y, 8rem) 0;
    overflow: hidden;
}

/* =====================================================
   SECTION HEADER
   2-column layout: Large title left, description right
   ===================================================== */
.features-showcase__header {
    max-width: var(--container-max, 1400px);
    margin: 0 auto;
    padding: 0 var(--section-pad-x, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-showcase__header {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.features-showcase__title {
    font-family: var(--font-display, 'Acumin Pro', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
}

.features-showcase__subtitle {
    font-family: var(--font-display, 'Acumin Pro', sans-serif);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    padding-top: 0.5rem;
}

/* =====================================================
   MAIN VISUAL CONTAINER - PILL SHAPE
   Customizable gradient via CSS variables
   ===================================================== */
.visual-container {
    max-width: var(--container-max, 1400px);
    margin: 0 auto 5rem;
    padding: 0 var(--section-pad-x, 4rem);
    position: relative;
}

.visual-pill {
    position: relative;
    width: 100%;
    aspect-ratio: 2.5 / 1;
    min-height: 350px;
    /* Default gradient - more transparent for better contrast */
    background: linear-gradient(135deg, 
        var(--visual-gradient-start, rgba(59, 155, 217, 0.55)) 0%, 
        var(--visual-gradient-mid, rgba(59, 155, 217, 0.4)) 50%,
        var(--visual-gradient-end, rgba(212, 167, 72, 0.2)) 100%);
    border-radius: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px var(--visual-shadow-color, rgba(59, 155, 217, 0.3)),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Grid Pattern Overlay */
.visual-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* =====================================================
   CORNER BRACKETS DECORATION
   ===================================================== */
.corner-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.corner-bracket--tl {
    top: 30px;
    left: 50px;
    border-right: none;
    border-bottom: none;
}

.corner-bracket--tr {
    top: 30px;
    right: 50px;
    border-left: none;
    border-bottom: none;
}

.corner-bracket--bl {
    bottom: 30px;
    left: 50px;
    border-right: none;
    border-top: none;
}

.corner-bracket--br {
    bottom: 30px;
    right: 50px;
    border-left: none;
    border-top: none;
}

/* =====================================================
   CENTRAL ANIMATED VISUAL
   Core element with orbiting rings, particles, waves
   ===================================================== */
.central-visual {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbiting Rings - Enhanced visibility */
.orbit-ring {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

.orbit-ring--1 {
    width: 100%;
    height: 100%;
    animation-duration: 25s;
}

.orbit-ring--2 {
    width: 75%;
    height: 75%;
    animation-duration: 18s;
    animation-direction: reverse;
}

.orbit-ring--3 {
    width: 50%;
    height: 50%;
    animation-duration: 12s;
}

/* Particle Network - Larger particles */
.particle-network {
    position: absolute;
    width: 45%;
    height: 65%;
    left: 8%;
    top: 18%;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.particle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.particle:nth-child(2) { left: 60%; top: 20%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 40%; top: 50%; animation-delay: 1s; }
.particle:nth-child(4) { left: 80%; top: 40%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 30%; top: 70%; animation-delay: 2s; }
.particle:nth-child(6) { left: 70%; top: 60%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 50%; top: 80%; animation-delay: 3s; }

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform-origin: left center;
}

/* Wave Lines - Larger */
.wave-container {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 120px;
}

.wave-line {
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: wave 3s ease-in-out infinite;
}

.wave-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.wave-line:nth-child(2) { top: 40%; animation-delay: 0.3s; }
.wave-line:nth-child(3) { top: 60%; animation-delay: 0.6s; }
.wave-line:nth-child(4) { top: 80%; animation-delay: 0.9s; }

/* Central Core - Bigger size */
.visual-core {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, 
        var(--core-color-start, rgba(212, 167, 72, 0.95)), 
        var(--core-color-end, rgba(212, 167, 72, 0.7)));
    border-radius: 50%;
    position: relative;
    z-index: 10;
    box-shadow: 
        0 0 80px var(--core-glow-color, rgba(212, 167, 72, 0.6)),
        0 0 140px var(--core-glow-color-outer, rgba(212, 167, 72, 0.4)),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.visual-core::before {
    content: '';
    position: absolute;
    inset: -25px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.visual-core::after {
    content: '';
    position: absolute;
    inset: -50px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
    animation-delay: 0.5s;
}

/* Concentric circles inside core - Thicker lines */
.core-ring {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.core-ring--1 {
    width: 60%;
    height: 60%;
}

.core-ring--2 {
    width: 80%;
    height: 80%;
}

.core-ring--3 {
    width: 40%;
    height: 40%;
    border-color: rgba(255, 255, 255, 0.45);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

@keyframes wave {
    0%, 100% { 
        transform: scaleX(0.5);
        opacity: 0.3;
    }
    50% { 
        transform: scaleX(1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 60px var(--core-glow-color, rgba(212, 167, 72, 0.5)),
            0 0 100px var(--core-glow-color-outer, rgba(212, 167, 72, 0.3));
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 80px var(--core-glow-color, rgba(212, 167, 72, 0.7)),
            0 0 120px var(--core-glow-color-outer, rgba(212, 167, 72, 0.5));
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* =====================================================
   FEATURES GRID - CLEAN TEXT LAYOUT
   No cards, just clean typography
   ===================================================== */
.features-grid {
    max-width: var(--container-max, 1400px);
    margin: 0 auto;
    padding: 0 var(--section-pad-x, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Feature Item - Clean Style */
.feature-item {
    position: relative;
    padding-top: 1.5rem;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary, #D4A748);
    opacity: 0.6;
}

.feature-item__title {
    font-family: var(--font-display, 'Acumin Pro', sans-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-item__desc {
    font-family: var(--font-display, 'Acumin Pro', sans-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* =====================================================
   THEME VARIATIONS
   Use these classes on the section to change colors
   ===================================================== */

/* Marketing Theme (Pink/Gold) - Influencer, Advertising - More transparent */
.theme-marketing {
    --visual-gradient-start: rgba(255, 0, 204, 0.55);
    --visual-gradient-mid: rgba(255, 0, 204, 0.4);
    --visual-gradient-end: rgba(212, 167, 72, 0.25);
    --visual-shadow-color: rgba(255, 0, 204, 0.25);
    --core-color-start: rgba(212, 167, 72, 0.95);
    --core-color-end: rgba(212, 167, 72, 0.7);
    --core-glow-color: rgba(212, 167, 72, 0.6);
    --core-glow-color-outer: rgba(212, 167, 72, 0.4);
}

/* Tech Theme (Blue/Cyan) - Website, Systems, E-commerce - More transparent */
.theme-tech {
    --visual-gradient-start: rgba(59, 155, 217, 0.55);
    --visual-gradient-mid: rgba(0, 242, 255, 0.4);
    --visual-gradient-end: rgba(59, 155, 217, 0.2);
    --visual-shadow-color: rgba(0, 242, 255, 0.25);
    --core-color-start: rgba(0, 242, 255, 0.95);
    --core-color-end: rgba(0, 242, 255, 0.7);
    --core-glow-color: rgba(0, 242, 255, 0.6);
    --core-glow-color-outer: rgba(0, 242, 255, 0.4);
}

/* Assist Theme (Green/Teal) - Visiv Assist - More transparent */
.theme-assist {
    --visual-gradient-start: rgba(16, 185, 129, 0.55);
    --visual-gradient-mid: rgba(0, 255, 136, 0.4);
    --visual-gradient-end: rgba(16, 185, 129, 0.2);
    --visual-shadow-color: rgba(0, 255, 136, 0.25);
    --core-color-start: rgba(0, 255, 136, 0.95);
    --core-color-end: rgba(0, 255, 136, 0.7);
    --core-glow-color: rgba(0, 255, 136, 0.6);
    --core-glow-color-outer: rgba(0, 255, 136, 0.4);
}

/* Media Theme (White/Clean) - Content, Press - More transparent */
.theme-media {
    --visual-gradient-start: rgba(255, 255, 255, 0.5);
    --visual-gradient-mid: rgba(255, 255, 255, 0.35);
    --visual-gradient-end: rgba(212, 167, 72, 0.2);
    --visual-shadow-color: rgba(255, 255, 255, 0.15);
    --core-color-start: rgba(255, 255, 255, 0.95);
    --core-color-end: rgba(255, 255, 255, 0.7);
    --core-glow-color: rgba(255, 255, 255, 0.6);
    --core-glow-color-outer: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   MOBILE ADJUSTMENTS
   ===================================================== */
@media (max-width: 767px) {
    .visual-pill {
        min-height: 250px;
        border-radius: 100px;
    }
    
    .central-visual {
        width: 240px;
        height: 240px;
    }
    
    .visual-core {
        width: 100px;
        height: 100px;
    }
    
    .corner-bracket {
        width: 20px;
        height: 20px;
    }
    
    .corner-bracket--tl { top: 20px; left: 30px; }
    .corner-bracket--tr { top: 20px; right: 30px; }
    .corner-bracket--bl { bottom: 20px; left: 30px; }
    .corner-bracket--br { bottom: 20px; right: 30px; }
    
    .wave-container {
        width: 130px;
        height: 100px;
    }
}

/* Core Theme (Blue) - VISIV Core - More transparent */
.theme-core {
    --visual-gradient-start: rgba(59, 155, 217, 0.55);
    --visual-gradient-mid: rgba(59, 155, 217, 0.4);
    --visual-gradient-end: rgba(212, 167, 72, 0.2);
    --visual-shadow-color: rgba(59, 155, 217, 0.25);
    --core-color-start: rgba(212, 167, 72, 0.95);
    --core-color-end: rgba(212, 167, 72, 0.7);
    --core-glow-color: rgba(212, 167, 72, 0.6);
    --core-glow-color-outer: rgba(212, 167, 72, 0.4);
}

/* =====================================================
   UNIQUE GEOMETRY VARIATIONS
   Each page gets a distinct central visual
   ===================================================== */

/* 1. HEXCORE - Visiv Core (Hexagonal infrastructure nodes) - Larger */
.geometry-hexcore .central-visual {
    width: 380px;
    height: 380px;
}

.geometry-hexcore .hex-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.geometry-hexcore .hex-node {
    position: absolute;
    width: 52px;
    height: 60px;
    background: rgba(59, 155, 217, 0.3);
    border: 2px solid rgba(59, 155, 217, 0.8);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexPulse 3s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(59, 155, 217, 0.5);
}

.geometry-hexcore .hex-node:nth-child(1) { transform: translate(-75px, -44px); animation-delay: 0s; }
.geometry-hexcore .hex-node:nth-child(2) { transform: translate(0, -88px); animation-delay: 0.5s; }
.geometry-hexcore .hex-node:nth-child(3) { transform: translate(75px, -44px); animation-delay: 1s; }
.geometry-hexcore .hex-node:nth-child(4) { transform: translate(75px, 44px); animation-delay: 1.5s; }
.geometry-hexcore .hex-node:nth-child(5) { transform: translate(0, 88px); animation-delay: 2s; }
.geometry-hexcore .hex-node:nth-child(6) { transform: translate(-75px, 44px); animation-delay: 2.5s; }

@keyframes hexPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 0.8; transform: scale(1); }
}

/* 2. CRYSTAL - Visiv Systems (3D rotating cube) - Larger */
.geometry-crystal .central-visual {
    width: 280px;
    height: 280px;
    perspective: 800px;
}

.geometry-crystal .crystal-cube {
    width: 110px;
    height: 110px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 15s linear infinite;
}

.geometry-crystal .cube-face {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(0, 242, 255, 0.12);
    border: 1.5px solid rgba(0, 242, 255, 0.5);
    backdrop-filter: blur(3px);
}

.geometry-crystal .cube-face--front  { transform: translateZ(55px); }
.geometry-crystal .cube-face--back   { transform: rotateY(180deg) translateZ(55px); }
.geometry-crystal .cube-face--right  { transform: rotateY(90deg) translateZ(55px); }
.geometry-crystal .cube-face--left   { transform: rotateY(-90deg) translateZ(55px); }
.geometry-crystal .cube-face--top    { transform: rotateX(90deg) translateZ(55px); }
.geometry-crystal .cube-face--bottom { transform: rotateX(-90deg) translateZ(55px); }

@keyframes rotateCube {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

/* 3. COMMERCE - E-commerce (Orbiting product rings) - Larger */
.geometry-commerce .central-visual {
    width: 360px;
    height: 360px;
}

.geometry-commerce .orbit-item {
    position: absolute;
    width: 42px;
    height: 42px;
    background: rgba(0, 242, 255, 0.2);
    border: 1.5px solid rgba(0, 242, 255, 0.5);
    border-radius: 8px;
    animation: orbitItem 12s linear infinite;
}

.geometry-commerce .orbit-item:nth-child(1) { animation-delay: 0s; }
.geometry-commerce .orbit-item:nth-child(2) { animation-delay: -3s; }
.geometry-commerce .orbit-item:nth-child(3) { animation-delay: -6s; }
.geometry-commerce .orbit-item:nth-child(4) { animation-delay: -9s; }

@keyframes orbitItem {
    0% { transform: rotate(0deg) translateX(115px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
}

/* 4. INTERFACE - Website Design (Floating browser windows) - Larger */
.geometry-interface .central-visual {
    width: 400px;
    height: 300px;
}

.geometry-interface .browser-window {
    position: absolute;
    background: rgba(0, 242, 255, 0.1);
    border: 1.5px solid rgba(0, 242, 255, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.geometry-interface .browser-window--main {
    width: 260px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: windowFloat 4s ease-in-out infinite;
}

.geometry-interface .browser-window--secondary {
    width: 155px;
    height: 105px;
    top: 18%;
    right: 8%;
    animation: windowFloat 4s ease-in-out infinite;
    animation-delay: -1s;
}

.geometry-interface .browser-window--tertiary {
    width: 130px;
    height: 80px;
    bottom: 18%;
    left: 8%;
    animation: windowFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

.geometry-interface .window-header {
    height: 20px;
    border-bottom: 1px solid rgba(0, 242, 255, 0.25);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.geometry-interface .window-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.6);
}

.geometry-interface .window-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.geometry-interface .content-line {
    height: 5px;
    background: rgba(0, 242, 255, 0.25);
    border-radius: 3px;
}

.geometry-interface .content-line:nth-child(1) { width: 70%; }
.geometry-interface .content-line:nth-child(2) { width: 50%; }
.geometry-interface .content-line:nth-child(3) { width: 80%; }

@keyframes windowFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* 5. NARRATIVE - Content (Floating text with typewriter effect) - Larger */
.geometry-narrative .central-visual {
    width: 380px;
    height: 260px;
}

.geometry-narrative .text-block {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 16px 20px;
    backdrop-filter: blur(5px);
    animation: textFloat 5s ease-in-out infinite;
}

.geometry-narrative .text-block:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 180px;
    animation-delay: 0s;
}

.geometry-narrative .text-block:nth-child(2) {
    top: 40%;
    right: 10%;
    width: 155px;
    animation-delay: -1.5s;
}

.geometry-narrative .text-block:nth-child(3) {
    bottom: 10%;
    left: 20%;
    width: 130px;
    animation-delay: -3s;
}

.geometry-narrative .text-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    margin-bottom: 8px;
    animation: typewriter 2s ease-out infinite;
}

.geometry-narrative .text-line:last-child {
    margin-bottom: 0;
}

.geometry-narrative .text-line:nth-child(1) { width: 100%; animation-delay: 0s; }
.geometry-narrative .text-line:nth-child(2) { width: 70%; animation-delay: 0.3s; }
.geometry-narrative .text-line:nth-child(3) { width: 85%; animation-delay: 0.6s; }

@keyframes textFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes typewriter {
    0% { width: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { width: 100%; opacity: 0.3; }
}

/* 6. BROADCAST - Press (Radio waves with microphone pulse) - Larger */
.geometry-broadcast .central-visual {
    width: 360px;
    height: 360px;
}

.geometry-broadcast .wave-ring {
    position: absolute;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: broadcastWave 3s ease-out infinite;
}

.geometry-broadcast .wave-ring:nth-child(1) { width: 75px; height: 75px; animation-delay: 0s; }
.geometry-broadcast .wave-ring:nth-child(2) { width: 150px; height: 150px; animation-delay: 0.5s; }
.geometry-broadcast .wave-ring:nth-child(3) { width: 225px; height: 225px; animation-delay: 1s; }
.geometry-broadcast .wave-ring:nth-child(4) { width: 300px; height: 300px; animation-delay: 1.5s; }

.geometry-broadcast .mic-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
    animation: micPulse 1.5s ease-in-out infinite;
}

@keyframes broadcastWave {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@keyframes micPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* 7. CAMPAIGN - Advertising (Expanding target circles) - Larger */
.geometry-campaign .central-visual {
    width: 360px;
    height: 360px;
}

.geometry-campaign .target-ring {
    position: absolute;
    border: 2.5px solid rgba(255, 0, 204, 0.45);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geometry-campaign .target-ring:nth-child(1) { width: 75px; height: 75px; }
.geometry-campaign .target-ring:nth-child(2) { width: 150px; height: 150px; }
.geometry-campaign .target-ring:nth-child(3) { width: 225px; height: 225px; }
.geometry-campaign .target-ring:nth-child(4) { width: 300px; height: 300px; }

.geometry-campaign .target-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: crosshairRotate 20s linear infinite;
}

.geometry-campaign .target-crosshair::before,
.geometry-campaign .target-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(255, 0, 204, 0.35);
}

.geometry-campaign .target-crosshair::before {
    width: 2.5px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.geometry-campaign .target-crosshair::after {
    width: 100%;
    height: 2.5px;
    top: 50%;
    transform: translateY(-50%);
}

.geometry-campaign .bullseye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #ff00cc, #ff6b6b);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 0, 204, 0.7);
    animation: bullseyePulse 2s ease-in-out infinite;
}

@keyframes crosshairRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bullseyePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* 8. NETWORK - Influencer (Connected node constellation) - Larger */
.geometry-network .central-visual {
    width: 380px;
    height: 380px;
}

.geometry-network .network-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 0, 204, 0.85);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.6);
    animation: nodePulse 2s ease-in-out infinite;
}

.geometry-network .network-node:nth-child(1) { top: 20%; left: 50%; animation-delay: 0s; }
.geometry-network .network-node:nth-child(2) { top: 35%; left: 25%; animation-delay: 0.3s; }
.geometry-network .network-node:nth-child(3) { top: 35%; left: 75%; animation-delay: 0.6s; }
.geometry-network .network-node:nth-child(4) { top: 60%; left: 20%; animation-delay: 0.9s; }
.geometry-network .network-node:nth-child(5) { top: 60%; left: 80%; animation-delay: 1.2s; }
.geometry-network .network-node:nth-child(6) { top: 80%; left: 35%; animation-delay: 1.5s; }
.geometry-network .network-node:nth-child(7) { top: 80%; left: 65%; animation-delay: 1.8s; }

.geometry-network .network-line {
    position: absolute;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 204, 0.45), transparent);
    transform-origin: left center;
}

.geometry-network .network-line:nth-child(8) {
    top: 27%;
    left: 30%;
    width: 40%;
    transform: rotate(30deg);
}

.geometry-network .network-line:nth-child(9) {
    top: 47%;
    left: 28%;
    width: 44%;
    transform: rotate(0deg);
}

.geometry-network .network-line:nth-child(10) {
    top: 47%;
    left: 28%;
    width: 35%;
    transform: rotate(50deg);
}

.geometry-network .network-line:nth-child(11) {
    top: 70%;
    left: 25%;
    width: 50%;
    transform: rotate(-20deg);
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .orbit-ring,
    .particle,
    .wave-line,
    .visual-core,
    .visual-core::before,
    .visual-core::after,
    .hex-node,
    .crystal-cube,
    .orbit-item,
    .browser-window--main,
    .browser-window--secondary,
    .browser-window--tertiary,
    .text-block,
    .text-line,
    .wave-ring,
    .mic-core,
    .target-crosshair,
    .bullseye,
    .network-node {
        animation: none;
    }
}
