/* ============================================
   AI-POWERED PLATFORMS - PREMIUM STYLES
   ============================================ */

/* CSS Variables - Purple/Pink Theme */
:root {
    --primary: #8b5cf6;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(139, 92, 246, 0.3);
    --gradient-primary: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-text: linear-gradient(135deg, #8b5cf6, #ec4899, #06b6d4);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Page Background
   ============================================ */
.page-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   Hero Visual - Platform Hub
   ============================================ */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.platform-hub {
    position: relative;
    width: 550px;
    height: 450px;
    transform-style: preserve-3d;
}

.hub-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.2), transparent 70%);
    filter: blur(40px);
    animation: hubGlow 4s ease-in-out infinite;
}

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

/* Hexagonal Layers */
.hex-layers {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: layersRotate 30s linear infinite;
}

@keyframes layersRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.hex-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.hex-layer-1 {
    width: 350px;
    height: 350px;
    margin-left: -175px;
    margin-top: -175px;
    animation: layer1Float 6s ease-in-out infinite;
}

.hex-layer-2 {
    width: 250px;
    height: 250px;
    margin-left: -125px;
    margin-top: -125px;
    animation: layer2Float 5s ease-in-out infinite reverse;
}

@keyframes layer1Float {
    0%, 100% { transform: translateZ(0) rotateX(5deg); }
    50% { transform: translateZ(20px) rotateX(-5deg); }
}

@keyframes layer2Float {
    0%, 100% { transform: translateZ(30px) rotateX(-5deg); }
    50% { transform: translateZ(50px) rotateX(5deg); }
}

.hex-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.hex-layer-2 .hex-ring {
    border-color: rgba(236, 72, 153, 0.3);
    animation-delay: -1.5s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.5; border-width: 2px; }
    50% { opacity: 1; border-width: 3px; }
}

.hex-nodes {
    position: absolute;
    inset: 0;
}

.hex-node {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hex-node svg {
    width: 20px;
    height: 20px;
}

.hex-node:hover {
    transform: scale(1.2) !important;
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    z-index: 10;
}

/* Position 6 nodes in a circle */
.hex-layer-1 .hex-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.hex-layer-1 .hex-node:nth-child(2) { top: 25%; right: 3%; }
.hex-layer-1 .hex-node:nth-child(3) { bottom: 25%; right: 3%; }
.hex-layer-1 .hex-node:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.hex-layer-1 .hex-node:nth-child(5) { bottom: 25%; left: 3%; }
.hex-layer-1 .hex-node:nth-child(6) { top: 25%; left: 3%; }

.hex-layer-2 .hex-node:nth-child(1) { top: -5%; left: 50%; transform: translateX(-50%); }
.hex-layer-2 .hex-node:nth-child(2) { top: 22%; right: -5%; }
.hex-layer-2 .hex-node:nth-child(3) { bottom: 22%; right: -5%; }
.hex-layer-2 .hex-node:nth-child(4) { bottom: -5%; left: 50%; transform: translateX(-50%); }
.hex-layer-2 .hex-node:nth-child(5) { bottom: 22%; left: -5%; }
.hex-layer-2 .hex-node:nth-child(6) { top: 22%; left: -5%; }

/* Central AI Core */
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.core-sphere {
    position: relative;
    width: 80px;
    height: 80px;
}

.sphere-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow:
        0 0 40px rgba(139, 92, 246, 0.6),
        0 0 80px rgba(236, 72, 153, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: spherePulse 3s ease-in-out infinite;
}

.sphere-inner svg {
    width: 36px;
    height: 36px;
}

.sphere-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    border-radius: 50%;
    animation: sphereGlow 2s ease-in-out infinite;
}

@keyframes spherePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Orbiting elements */
.core-orbit {
    position: absolute;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: orbitSpin linear infinite;
}

.orbit-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -60px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    margin: -80px 0 0 -80px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -100px;
    animation-duration: 16s;
}

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

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.8);
}

.orbit-2 .orbit-dot {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

.orbit-3 .orbit-dot {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: corePulseAnim 2s ease-out infinite;
}

.core-pulse.pulse-2 {
    animation-delay: 1s;
}

@keyframes corePulseAnim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Holographic Panels */
.holo-panels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.holo-panel {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(15px);
    overflow: hidden;
    animation: panelFloat 4s ease-in-out infinite;
}

.holo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
}

.panel-1 {
    top: 0;
    right: -80px;
    animation-delay: 0s;
}

.panel-2 {
    bottom: 15%;
    right: -70px;
    animation-delay: -1.3s;
}

.panel-3 {
    bottom: 5%;
    left: -80px;
    animation-delay: -2.6s;
}

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

.panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.panel-header svg {
    width: 12px;
    height: 12px;
}

.panel-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.panel-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    margin-top: 6px;
}

.panel-bars .bar {
    width: 8px;
    background: linear-gradient(to top, #8b5cf6, #ec4899);
    border-radius: 2px;
    animation: barPulse 1s ease-in-out infinite;
}

.panel-bars .bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.panel-bars .bar:nth-child(2) { height: 100%; animation-delay: 0.1s; }
.panel-bars .bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.panel-bars .bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.panel-bars .bar:nth-child(5) { height: 50%; animation-delay: 0.4s; }

@keyframes barPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.panel-graph {
    width: 80px;
    height: 30px;
    margin-top: 6px;
}

.panel-graph svg {
    width: 100%;
    height: 100%;
}

.graph-line {
    fill: none;
    stroke: url(#streamGrad1);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #ec4899;
    animation: graphDraw 2s ease-in-out infinite alternate;
}

@keyframes graphDraw {
    0% { stroke-dasharray: 0, 200; }
    100% { stroke-dasharray: 200, 0; }
}

.panel-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
    animation: scanline 2s linear infinite;
}

@keyframes scanline {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Data Streams */
.data-streams {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.stream {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.6;
}

.stream-1 { stroke: url(#streamGrad1); animation: streamFlow 4s linear infinite; }
.stream-2 { stroke: url(#streamGrad2); animation: streamFlow 5s linear infinite reverse; }
.stream-3 { stroke: url(#streamGrad1); animation: streamFlow 4.5s linear infinite; animation-delay: -1s; }
.stream-4 { stroke: url(#streamGrad2); animation: streamFlow 5.5s linear infinite reverse; animation-delay: -2s; }

@keyframes streamFlow {
    0% { stroke-dasharray: 0, 300; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 150, 150; }
    100% { stroke-dasharray: 0, 300; stroke-dashoffset: -300; }
}

/* Floating Particles */
.float-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.f-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.f-particle:nth-child(1) { top: 10%; left: 20%; animation-duration: 8s; }
.f-particle:nth-child(2) { top: 20%; right: 15%; animation-duration: 10s; animation-delay: -2s; }
.f-particle:nth-child(3) { top: 60%; right: 20%; animation-duration: 9s; animation-delay: -4s; }
.f-particle:nth-child(4) { bottom: 30%; right: 30%; animation-duration: 11s; animation-delay: -1s; }
.f-particle:nth-child(5) { bottom: 20%; left: 25%; animation-duration: 8s; animation-delay: -3s; }
.f-particle:nth-child(6) { top: 40%; left: 10%; animation-duration: 12s; animation-delay: -5s; }
.f-particle:nth-child(7) { top: 70%; left: 15%; animation-duration: 9s; animation-delay: -2s; }
.f-particle:nth-child(8) { top: 30%; right: 25%; animation-duration: 10s; animation-delay: -6s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-10px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-30px) translateX(5px); opacity: 0.9; }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 4rem 2rem;
    background: rgba(139, 92, 246, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PLATFORMS SECTION - BENTO GRID
   ============================================ */
.platforms {
    padding: 6rem 2rem;
}

/* Filters */
.platform-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.bento-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content.horizontal {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.card-content.horizontal .card-info {
    flex: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

/* Platform-specific colors */
.card-icon.training { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.bento-card:has(.card-icon.training) .card-glow { background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.2), transparent 70%); }

.card-icon.crypto { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.bento-card:has(.card-icon.crypto) .card-glow { background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.2), transparent 70%); }

.card-icon.gaming { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.bento-card:has(.card-icon.gaming) .card-glow { background: radial-gradient(ellipse at top, rgba(236, 72, 153, 0.2), transparent 70%); }

.card-icon.business { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.bento-card:has(.card-icon.business) .card-glow { background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.2), transparent 70%); }

.card-icon.tourism { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.bento-card:has(.card-icon.tourism) .card-glow { background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.2), transparent 70%); }

.card-icon.healthcare { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.bento-card:has(.card-icon.healthcare) .card-glow { background: radial-gradient(ellipse at top, rgba(239, 68, 68, 0.2), transparent 70%); }

.card-icon.ecommerce { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.bento-card:has(.card-icon.ecommerce) .card-glow { background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.2), transparent 70%); }

.card-icon.realestate { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.bento-card:has(.card-icon.realestate) .card-glow { background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.2), transparent 70%); }

.card-icon.fintech { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.bento-card:has(.card-icon.fintech) .card-glow { background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.2), transparent 70%); }

.card-icon.hr { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.bento-card:has(.card-icon.hr) .card-glow { background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.2), transparent 70%); }

.card-icon.logistics { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.bento-card:has(.card-icon.logistics) .card-glow { background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.2), transparent 70%); }

.card-icon.media { background: rgba(217, 70, 239, 0.15); color: #e879f9; }
.bento-card:has(.card-icon.media) .card-glow { background: radial-gradient(ellipse at top, rgba(217, 70, 239, 0.2), transparent 70%); }

.card-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.feature-tag svg {
    width: 12px;
    height: 12px;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.card-cta:hover {
    gap: 0.75rem;
}

.card-cta svg {
    width: 16px;
    height: 16px;
}

/* Hidden for filter */
.bento-card.hidden {
    display: none;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 6rem 2rem;
    background: rgba(139, 92, 246, 0.02);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    padding: 0 1rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-left: -4px;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */
.tech-stack {
    padding: 6rem 2rem;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tech-category {
    text-align: center;
}

.category-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-item {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 6rem 2rem;
    background: rgba(139, 92, 246, 0.02);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -200px;
    right: -100px;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .brand-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-brand .brand-inc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.4rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 4px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-column a,
.footer-column span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-light);
    border-color: var(--primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-card.large {
        grid-column: span 2;
    }
    
    .bento-card.wide {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .network-grid {
        width: 400px;
        height: 400px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large,
    .bento-card.wide {
        grid-column: span 2;
    }
    
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar-center {
        display: none;
    }
    
    .hero {
        padding: 100px 1rem 60px;
    }
    
    .network-grid {
        width: 320px;
        height: 320px;
    }
    
    .network-node {
        width: 40px;
        height: 40px;
    }
    
    .network-node svg {
        width: 18px;
        height: 18px;
    }
    
    .node-center {
        width: 56px;
        height: 56px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }
    
    .card-content.horizontal {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
