/* Section 1 - Understanding Digital Self Styles - Enhanced Responsive */

:root {
    /* Primary Colors - Dark Blue Theme */
    --bg-primary: #0a0f1c;
    --bg-secondary: #1a1f2e;
    --bg-tertiary: #252b3b;
    --bg-card: #2a3142;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c2cc;
    --text-muted: #8892a0;
    --text-accent: #6366f1;
    
    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    --accent-green: #10b981;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-secondary: linear-gradient(135deg, #ec4899, #f59e0b);
    --gradient-tertiary: linear-gradient(135deg, #10b981, #3b82f6);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Responsive Spacing */
    --section-padding: clamp(3rem, 8vw, 8rem) 0;
    --container-padding: clamp(1rem, 4vw, 2rem);
    --gap-xs: clamp(0.5rem, 2vw, 1rem);
    --gap-sm: clamp(1rem, 3vw, 1.5rem);
    --gap-md: clamp(1.5rem, 4vw, 2.5rem);
    --gap-lg: clamp(2rem, 6vw, 4rem);
    --gap-xl: clamp(3rem, 8vw, 6rem);
    
    /* Responsive Typography */
    --text-xs: clamp(0.75rem, 2.5vw, 0.875rem);
    --text-sm: clamp(0.875rem, 3vw, 1rem);
    --text-base: clamp(1rem, 3.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 4vw, 1.25rem);
    --text-xl: clamp(1.25rem, 4.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 5vw, 2rem);
    --text-3xl: clamp(2rem, 6vw, 3rem);
    --text-4xl: clamp(2.5rem, 7vw, 4rem);
    --text-5xl: clamp(3rem, 8vw, 5rem);
    --text-6xl: clamp(3.5rem, 10vw, 6rem);
    
    /* Animation Durations */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Safe Area Support */
    --safe-area-inset-top: env(safe-area-inset-top, 0);
    --safe-area-inset-right: env(safe-area-inset-right, 0);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
    --safe-area-inset-left: env(safe-area-inset-left, 0);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    overflow-x: hidden;
    scroll-padding-top: 80px; /* Account for fixed header */
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    min-height: 100vh;
    position: relative;
    /* Improve performance for animations */
    will-change: auto;
    width: 100%;
    max-width: 100vw;
    
    /* iOS Safari viewport fix */
    min-height: -webkit-fill-available;
}

/* Fix iOS viewport issues */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    overflow-x: hidden;
}

/* Responsive container improvements */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible Support */
:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection Styles */
::selection {
    background: var(--accent-blue);
    color: var(--text-primary);
}

/* Navigation - Enhanced Responsive */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: var(--z-fixed);
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    transition: all var(--duration-normal) ease;
    
    /* Safe area support */
    padding-left: var(--safe-area-inset-left);
    padding-right: var(--safe-area-inset-right);
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile navigation adjustments */
@media (max-width: 1023px) {
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
}

.nav-logo {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    z-index: var(--z-fixed);
}

.logo-img {
    height: clamp(24px, 6vw, 32px);
    width: auto;
    object-fit: contain;
}

.nav-logo a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--duration-normal) ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: all var(--duration-normal) ease;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--duration-normal) ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

/* Hamburger Menu Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.nav-menu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-lg);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: all var(--duration-slow) ease;
    z-index: 9999; /* Below hamburger but above navbar */
    
    /* Safe area support */
    padding-top: var(--safe-area-inset-top);
    padding-bottom: var(--safe-area-inset-bottom);
}

.nav-menu.mobile-hidden {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--gap-lg);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-slow) ease;
        z-index: 9999; /* Below hamburger but above navbar */
        
        /* Safe area support */
        padding-top: var(--safe-area-inset-top);
        padding-bottom: var(--safe-area-inset-bottom);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
      .hamburger {
        display: flex;
        z-index: 10000; /* Highest z-index to stay above mobile menu */
    }
    
    .nav-link {
        font-size: var(--text-xl);
        padding: var(--gap-sm);
        text-align: center;
    }
}

/* Enhanced Accessibility Features */

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
.identity-circle:focus,
.insight-card:focus,
.concept-item:focus,
.nav-link:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --text-muted: #cccccc;
        --bg-primary: #000000;
        --bg-secondary: #1a1a1a;
        --glass-bg: rgba(255, 255, 255, 0.15);
        --glass-border: rgba(255, 255, 255, 0.3);
    }
    
    .identity-circle,
    .insight-card,
    .concept-item {
        border: 2px solid var(--text-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-title,
    .identity-circle,
    .floating-orb {
        animation: none !important;
    }
}

/* Focus management for keyboard users */
.keyboard-user *:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Live region for announcements */
.live-region {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Hero Section - Enhanced Responsive */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(1rem + var(--safe-area-inset-top)) var(--safe-area-inset-right) var(--gap-lg) var(--safe-area-inset-left);
    overflow: hidden;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile hero container adjustments */
@media (max-width: 768px) {
    .hero-container {
        gap: var(--gap-lg);
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: var(--gap-md);
        padding: 0 0.75rem;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--gap-md);
    width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

/* Mobile responsive hero content */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding-top: var(--gap-sm);
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: var(--gap-xs);
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

.section-badge {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: 2rem;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--gap-md);
    box-shadow: var(--glass-shadow);
    transition: all var(--duration-normal) ease;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

/* Mobile responsive section badge */
@media (max-width: 768px) {
    .section-badge {
        margin-top: 8rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-bottom: var(--gap-sm);
    }
}

@media (max-width: 480px) {
    .section-badge {
        margin-top: 8rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
}

@media (max-width: 320px) {
    .section-badge {
        margin-top: 8rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
}

.section-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* Mobile responsive badge icon */
@media (max-width: 480px) {
    .badge-icon {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .badge-icon {
        font-size: 0.9rem;
    }
}

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

@keyframes energyPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    25% { 
        transform: scale(1.1) rotate(-2deg);
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
    }
    50% { 
        transform: scale(1.15) rotate(0deg);
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
    75% { 
        transform: scale(1.1) rotate(2deg);
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: calc(var(--gap-md) * 1.2);
    position: relative;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #e0e7ff 20%,
        #c7d2fe 40%,
        #a5b4fc 60%,
        #8b5cf6 80%,
        #7c3aed 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleShimmer 6s ease-in-out infinite, titleGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Mobile responsive hero title */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: var(--gap-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 9vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: var(--gap-sm);
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: clamp(1.3rem, 10vw, 2rem);
        line-height: 1.4;
    }
}

/* Advanced shimmer animation for hero title */
@keyframes heroTitleShimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1) hue-rotate(0deg);
    }
    25% {
        background-position: 50% 0%;
        filter: brightness(1.1) saturate(1.2) hue-rotate(10deg);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.2) saturate(1.4) hue-rotate(20deg);
    }
    75% {
        background-position: 50% 100%;
        filter: brightness(1.1) saturate(1.2) hue-rotate(10deg);
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.2)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.2));
    }
}

/* Enhanced gradient text with advanced effects */
.gradient-text {
    position: relative;
    background: linear-gradient(
        45deg,
        #3b82f6 0%,
        #8b5cf6 25%,
        #ec4899 50%,
        #f59e0b 75%,
        #10b981 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite, textPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
}

.gradient-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: textShimmer 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Gradient shift animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Text pulse animation */
@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.6));
    }
}

/* Shimmer overlay animation */
@keyframes textShimmer {
    0% {
        background-position: -100% 0%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: 100% 0%;
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: calc(var(--gap-lg) * 1.2);
    line-height: 1.7;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    position: relative;
    padding: clamp(0.75rem, 2.5vw, 1rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: subtitleFade 2s ease-out;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Mobile responsive hero subtitle */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.6;
        max-width: 100%;
        padding: clamp(0.75rem, 2vw, 1rem);
        margin-bottom: var(--gap-lg);
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.5;
        padding: 0.75rem;
        margin-bottom: var(--gap-md);
        border-radius: 8px;
    }
}

@media (max-width: 320px) {
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0.5rem;
    }
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    animation: subtitleGlow 3s ease-in-out infinite;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(0.75rem, 2.5vw, 1.25rem);
    margin-top: var(--gap-lg);
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    overflow-x: hidden;
}

/* Mobile adjustments for hero stats */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: clamp(0.5rem, 2vw, 1rem);
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: var(--gap-md);
    }
}

@media (max-width: 320px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

.stat {
    text-align: center;
    padding: clamp(0.75rem, 2.5vw, 1.25rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: clamp(12px, 3vw, 20px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 0;
    word-wrap: break-word;
}

/* Mobile responsive stat cards */
@media (max-width: 768px) {
    .stat {
        padding: clamp(0.6rem, 2vw, 1rem);
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .stat {
        padding: clamp(0.5rem, 1.8vw, 0.8rem);
        border-radius: 12px;
    }
}

@media (max-width: 320px) {
    .stat {
        padding: 0.5rem;
        border-radius: 10px;
    }
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        #3b82f6,
        #8b5cf6,
        #ec4899,
        transparent
    );
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: statGlow 3s ease-in-out infinite;
}

.stat::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.stat:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(236, 72, 153, 0.05) 100%
    );
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.2),
        0 8px 20px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat:hover::before {
    transform: scaleX(1);
    background-position: 100% 0%;
}

.stat:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes statGlow {
    0%, 100% {
        opacity: 0.5;
        background-position: 0% 0%;
    }
    50% {
        opacity: 1;
        background-position: 100% 0%;
    }
}

.stat h3 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #ffffff, #e0e7ff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1.1;
    word-break: break-word;
}

.stat p {
    font-size: clamp(0.65rem, 1.8vw, 0.8rem);
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1.3;
    word-break: break-word;
}

/* Mobile responsive typography for stats */
@media (max-width: 768px) {
    .stat h3 {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        margin-bottom: 0.4rem;
    }
    
    .stat p {
        font-size: clamp(0.6rem, 1.6vw, 0.75rem);
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .stat h3 {
        font-size: clamp(0.8rem, 2.2vw, 1rem);
        margin-bottom: 0.3rem;
    }
    
    .stat p {
        font-size: clamp(0.55rem, 1.4vw, 0.7rem);
        letter-spacing: 0.2px;
    }
}

@media (max-width: 320px) {
    .stat h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .stat p {
        font-size: 0.6rem;
        letter-spacing: 0.1px;
    }
}

.stat:hover h3 {
    background: linear-gradient(135deg, #ffffff, #3b82f6, #8b5cf6);
    background-size: 200% 200%;
    animation: textShimmer 2s ease-in-out;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.stat:hover p {
    color: var(--text-primary);
    opacity: 1;
    transform: translateY(-2px);
}

/* Hero Visual - Enhanced Digital Image with Elements */
.hero-visual {
    margin-top: var(--gap-md);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--gap-sm) 0;
}

.hero-image-container {
    position: relative;
    width: min(350px, 80vw);
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible; /* Changed to visible for better label positioning */
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(236, 72, 153, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 6px;
}

.hero-image-container:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(59, 130, 246, 0.15),
        0 8px 15px rgba(139, 92, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    filter: brightness(0.95) contrast(1.1) saturate(1.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.hero-image-container:hover .hero-main-image {
    filter: brightness(1.05) contrast(1.2) saturate(1.2);
    transform: scale(1.01);
}

/* Enhanced Digital Elements Overlay */
.digital-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 3;
}

/* Improved Floating Digital Icons */
.digital-icon {
    position: absolute;
    font-size: 1.2rem;
    animation: float 4s ease-in-out infinite;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(59, 130, 246, 0.1) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(59, 130, 246, 0.4);    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 
        0 6px 20px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 4;
}

.digital-icon:hover {
    transform: scale(1.1);
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced Digital Icon Positioning */
.digital-icon.icon-1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.25) 0%, 
        rgba(16, 185, 129, 0.1) 100%
    );
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.digital-icon.icon-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.8s;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.25) 0%, 
        rgba(139, 92, 246, 0.1) 100%
    );
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.digital-icon.icon-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 1.6s;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.25) 0%, 
        rgba(6, 182, 212, 0.1) 100%
    );
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 
        0 8px 25px rgba(6, 182, 212, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.digital-icon.icon-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 2.4s;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.25) 0%, 
        rgba(245, 158, 11, 0.1) 100%
    );
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.digital-icon.icon-5 {
    top: 48%;
    left: 48%;
    transform: translate(-50%, -50%);
    animation-delay: 3.2s;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.25) 0%, 
        rgba(236, 72, 153, 0.1) 100%
    );
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 
        0 8px 25px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animated Connection Lines */
.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.connection-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 4s ease-in-out infinite;
}

.connection-line.line-1 {
    animation-delay: 0s;
}

.connection-line.line-2 {
    animation-delay: 1s;
}

.connection-line.line-3 {
    animation-delay: 2s;
}

@keyframes drawLine {
    0%, 20% {
        stroke-dashoffset: 300;
        opacity: 0;
    }
    40%, 80% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: -300;
        opacity: 0;
    }
}

/* Enhanced Pulsing Digital Aura */
.digital-aura {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.4);
    animation: auraExpand 4s ease-in-out infinite;
    opacity: 0.6;
}

.digital-aura.aura-1 {
    top: 18%;
    left: 18%;
    width: 55px;
    height: 55px;
    animation-delay: 0s;
    border-color: rgba(16, 185, 129, 0.4);
}

.digital-aura.aura-2 {
    bottom: 22%;
    right: 18%;
    width: 70px;
    height: 70px;
    animation-delay: 1.5s;
    border-color: rgba(139, 92, 246, 0.4);
}

.digital-aura.aura-3 {
    top: 45%;
    right: 8%;
    width: 35px;
    height: 35px;
    animation-delay: 3s;
    border-color: rgba(6, 182, 212, 0.4);
}

@keyframes auraExpand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
        border-width: 2px;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
        border-width: 1px;
    }
}

/* Enhanced Identity Labels */
.identity-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, 
        rgba(26, 31, 46, 0.95) 0%, 
        rgba(22, 33, 62, 0.9) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.identity-label:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.identity-label:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 3px;
}

.real-label {
    top: 5%;
    left: -12%;
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.2) 0%, 
        rgba(26, 31, 46, 0.9) 100%
    );
}

.real-label:hover {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 
        0 15px 40px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ideal-label {
    top: 58%;
    left: -18%;
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%, 
        rgba(26, 31, 46, 0.9) 100%
    );
}

.ideal-label:hover {
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.online-label {
    bottom: 8%;
    right: -18%;
    border-color: rgba(236, 72, 153, 0.5);
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.2) 0%, 
        rgba(26, 31, 46, 0.9) 100%
    );
}

.online-label:hover {
    border-color: rgba(236, 72, 153, 0.8);
    box-shadow: 
        0 15px 40px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.label-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px currentColor;
    transition: all 0.3s ease;
}

.real-label .label-dot {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.ideal-label .label-dot {
    background: #8b5cf6;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.online-label .label-dot {
    background: #ec4899;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

/* Enhanced Float Animation for Digital Icons */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-8px);
        opacity: 1;
    }
    50% { 
        transform: translateY(-12px);
        opacity: 0.9;
    }    75% { 
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Identity Model Section Enhancement */
.identity-model-container {
    height: min(280px, 70vw);
    padding: 1rem;
}

.identity-model::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: modelPulse 4s ease-in-out infinite;
    z-index: 0;
}

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

.identity-circle {
    position: absolute;
    width: clamp(90px, 20vw, 110px);
    height: clamp(90px, 20vw, 110px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: clamp(0.65rem, 1.8vw, 0.85rem);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    line-height: 1.2;
    padding: 0.75rem;
    box-sizing: border-box;
}

/* Responsive sizing for identity circles */
@media (max-width: 768px) {
    .identity-circle {
        width: clamp(80px, 18vw, 95px);
        height: clamp(80px, 18vw, 95px);
        font-size: clamp(0.6rem, 1.6vw, 0.75rem);
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .identity-circle {
        width: clamp(70px, 16vw, 85px);
        height: clamp(70px, 16vw, 85px);
        font-size: clamp(0.55rem, 1.4vw, 0.7rem);
        padding: 0.5rem;
    }
}

@media (max-width: 320px) {
    .identity-circle {
        width: clamp(60px, 14vw, 75px);
        height: clamp(60px, 14vw, 75px);
        font-size: clamp(0.5rem, 1.2vw, 0.65rem);
        padding: 0.4rem;
    }
}

.identity-circle {
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.identity-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.identity-circle:hover::before {
    opacity: 1;
}

.identity-circle:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 4px;
}

.real-self {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    animation: float 3s ease-in-out infinite;
}

.ideal-self {
    top: 58%;
    left: 15%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    animation: float 3s ease-in-out infinite 1s;
}

.online-self {
    top: 58%;
    right: 15%;
    background: linear-gradient(135deg, #ec4899, #db2777);
    animation: float 3s ease-in-out infinite 2s;
}

/* Mobile positioning adjustments */
@media (max-width: 768px) {
    .real-self {
        top: 8%;
    }
    
    .ideal-self {
        top: 58%;
        left: 10%;
    }
    
    .online-self {
        top: 58%;
        right: 10%;
    }
}

@media (max-width: 480px) {
    .real-self {
        top: 10%;
    }
    
    .ideal-self {
        top: 55%;
        left: 12%;
    }
    
    .online-self {
        top: 55%;
        right: 12%;
    }
}

@media (max-width: 320px) {
    .real-self {
        top: 12%;
    }
    
    .ideal-self {
        top: 52%;
        left: 15%;
    }
    
    .online-self {
        top: 52%;
        right: 15%;
    }
}

.identity-center {
    width: clamp(100px, 26vw, 130px);
    height: clamp(100px, 26vw, 130px);
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.9),
        rgba(139, 92, 246, 0.8),
        rgba(236, 72, 153, 0.7)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(0.7rem, 1.9vw, 0.9rem);
    text-align: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.4),
        0 8px 20px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: centerFloat 4s ease-in-out infinite;
    z-index: 3;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    padding: 0.75rem;
    box-sizing: border-box;
}

/* Mobile responsive sizing for identity center */
@media (max-width: 768px) {
    .identity-center {
        width: clamp(90px, 22vw, 110px);
        height: clamp(90px, 22vw, 110px);
        font-size: clamp(0.65rem, 1.7vw, 0.8rem);
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .identity-center {
        width: clamp(80px, 20vw, 95px);
        height: clamp(80px, 20vw, 95px);
        font-size: clamp(0.6rem, 1.5vw, 0.75rem);
        padding: 0.5rem;
    }
}

@media (max-width: 320px) {
    .identity-center {
        width: clamp(70px, 18vw, 85px);
        height: clamp(70px, 18vw, 85px);
        font-size: clamp(0.55rem, 1.3vw, 0.7rem);
        padding: 0.4rem;
    }
}

.identity-center::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: centerShimmer 3s ease-in-out infinite;
    z-index: 0;
}

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

@keyframes centerFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 12px 40px rgba(59, 130, 246, 0.4),
            0 8px 20px rgba(139, 92, 246, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: translateY(-12px) scale(1.02);
        box-shadow: 
            0 16px 50px rgba(59, 130, 246, 0.5),
            0 12px 30px rgba(139, 92, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@keyframes centerShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.identity-circle:hover {
    transform: scale(1.15) translateX(-50%);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(59, 130, 246, 0.2);
}

.ideal-self:hover {
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

.online-self:hover {
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(236, 72, 153, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Tablet and Desktop Layout */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: var(--gap-xl);
    }
    
    .hero-content {
        text-align: left;
        margin: 0;
    }
    
    .hero-stats {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-visual {
        margin-top: 0;
        display: flex;
        justify-content: center;
    }
}

/* Old responsive styles removed - replaced with comprehensive responsive system above */

/* Overview Section - Enhanced Responsive */
.overview-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.overview-content {
    max-width: none;
}

.overview-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-md);
    line-height: 1.2;
}

.lead-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--gap-lg);
    max-width: 800px;
}

.key-concepts {
    display: grid;
    gap: var(--gap-md);
    max-width: 1100px;
}

.concept-item {
    display: flex;
    gap: var(--gap-sm);
    align-items: flex-start;
    padding: clamp(1rem, 2.5vw, 1.4rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

.concept-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        #3b82f6,
        #8b5cf6,
        #ec4899,
        transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: conceptGlow 3s ease-in-out infinite;
}

.concept-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.concept-item:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.12) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(236, 72, 153, 0.05) 100%
    );
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.2),
        0 8px 20px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.concept-item:hover::before {
    opacity: 1;
    background-position: 100% 0%;
}

.concept-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes conceptGlow {
    0%, 100% {
        opacity: 0.3;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 0%;
    }
}

.concept-icon {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    flex-shrink: 0;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.concept-item:hover .concept-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

.concept-content {
    position: relative;
    z-index: 2;
}

.concept-content h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.concept-content p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.5;
    transition: all 0.3s ease;
    margin: 0;
}

.concept-item:hover .concept-content h4 {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.concept-item:hover .concept-content p {
    color: var(--text-primary);
    opacity: 0.9;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-identity-breakdown {
    display: grid;
    gap: var(--gap-md);
    max-width: 300px;
    width: 100%;
}

.breakdown-item {
    text-align: center;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--duration-normal) ease;
    cursor: pointer;
}

.breakdown-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.breakdown-circle {
    width: clamp(60px, 15vw, 70px);
    height: clamp(60px, 15vw, 70px);
    border-radius: 50%;
    margin: 0 auto var(--gap-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
}

.breakdown-circle.real {
    background: linear-gradient(135deg, #10b981, #059669);
}

.breakdown-circle.ideal {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.breakdown-circle.online {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.breakdown-item h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: var(--text-primary);
       margin-bottom: 0.5rem;
}

.breakdown-item p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 2.5fr 1fr;
        gap: var(--gap-xxl);
    }
    
    .key-concepts {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .digital-identity-breakdown {
        max-width: 280px;
    }
}

@media (min-width: 1024px) {
    .key-concepts {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gap-lg);
        max-width: 100%;
    }

    .overview-grid {
        gap: var(--gap-xl);
    }

    .digital-identity-breakdown {
        max-width: 300px;
    }
}

@media (min-width: 1200px) {
    .key-concepts {
        max-width: 1100px;
    }
}

/* Dimensions Section - Enhanced Responsive */
.dimensions-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--gap-xl);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-sm);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

.dimension-block {
    margin-bottom: var(--gap-xl);
    padding: clamp(2rem, 5vw, 3rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.dimension-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        transparent 100%
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Hover animation removed */
/* .dimension-block:hover::before {
    opacity: 1;
} */

.dimension-block:last-child {
    border-bottom: none;
}

.dimension-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.01) 75%,
        rgba(255, 255, 255, 0.005) 100%
    );
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dimension-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.08) 25%,
        rgba(139, 92, 246, 0.06) 50%,
        rgba(236, 72, 153, 0.04) 75%,
        transparent 100%
    );
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.dimension-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(236, 72, 153, 0.01) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 24px;
}

/* Hover animation removed */
/* .dimension-content:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.02) 75%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(59, 130, 246, 0.08),
        0 4px 12px rgba(139, 92, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
} */

/* Hover animation removed */
/* .dimension-content:hover::before {
    left: 100%;
} */

/* Hover animation removed */
/* .dimension-content:hover::after {
    opacity: 1;
} */

.dimension-content.reverse {
    direction: rtl;
}

.dimension-content.reverse > * {
    direction: ltr;
}

.dimension-info {
    max-width: none;
}

.dimension-tag {
    display: inline-block;
    padding: clamp(0.6rem, 2.5vw, 0.9rem) clamp(1.2rem, 3.5vw, 1.8rem);
    border-radius: 50px;
    font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    font-weight: 700;
    margin-bottom: var(--gap-md);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.25),
        0 3px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* cursor: pointer; */ /* Removed cursor pointer since hover is disabled */
    overflow: hidden;
}

.dimension-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dimension-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover animation removed */
/* .dimension-tag:hover::before {
    opacity: 1;
} */

/* Hover animation removed */
/* .dimension-tag:hover::after {
    width: 100%;
    height: 100%;
} */

.dimension-tag.real {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--text-primary);
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        0 2px 10px rgba(5, 150, 105, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hover animation removed */
/* .dimension-tag.real:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.6),
        0 6px 20px rgba(5, 150, 105, 0.5),
        0 3px 10px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    filter: brightness(1.1) saturate(1.1);
} */

.dimension-tag.ideal {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--text-primary);
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.4),
        0 2px 10px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hover animation removed */
/* .dimension-tag.ideal:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.6),
        0 6px 20px rgba(124, 58, 237, 0.5),
        0 3px 10px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    filter: brightness(1.1) saturate(1.1);
} */

.dimension-tag.online {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: var(--text-primary);
    box-shadow: 
        0 4px 20px rgba(236, 72, 153, 0.4),
        0 2px 10px rgba(219, 39, 119, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hover animation removed */
/* .dimension-tag.online:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
        0 8px 32px rgba(236, 72, 153, 0.6),
        0 6px 20px rgba(219, 39, 119, 0.5),
        0 3px 10px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    filter: brightness(1.1) saturate(1.1);
} */

.dimension-info h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-md);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.dimension-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.8) 0%,
        rgba(139, 92, 246, 0.6) 50%,
        rgba(236, 72, 153, 0.4) 100%
    );
    border-radius: 2px;
}

.dimension-info p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--gap-lg);
    padding: var(--gap-sm);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 12px;
    border-left: 3px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.characteristics {
    margin-bottom: var(--gap-lg);
    padding: var(--gap-md);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.characteristics:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.characteristics h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--gap-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.characteristics h4::before {
    content: '✨';
    font-size: 1.2em;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
}

.characteristics ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.characteristics li {
    position: relative;
    padding: 0.6rem 0 0.6rem 2rem;
    margin-bottom: 0.8rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border-radius: 8px;
    border-left: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.characteristics li:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.03) 100%
    );
    border-left-color: rgba(59, 130, 246, 0.4);
    transform: translateX(4px);
    color: var(--text-primary);
}

.characteristics li::before {
    content: '●';
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.4));
}

.characteristics li:hover::before {
    color: rgba(59, 130, 246, 1);
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.6));
}

.example-grid,
.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
    margin-top: var(--gap-sm);
}

.example-item,
.platform-item {
    padding: clamp(1rem, 3vw, 1.4rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.example-item::before,
.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(59, 130, 246, 0.6) 25%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(236, 72, 153, 0.4) 75%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.example-item::after,
.platform-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.example-item:hover,
.platform-item:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.12) 0%,
        rgba(139, 92, 246, 0.08) 25%,
        rgba(236, 72, 153, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.2),
        0 6px 16px rgba(139, 92, 246, 0.12),
        0 3px 8px rgba(236, 72, 153, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.example-item:hover::before,
.platform-item:hover::before {
    opacity: 1;
}

.example-item:hover::after,
.platform-item:hover::after {
    opacity: 1;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.8rem);
}

.platform-icon {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
    padding: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-item:hover .platform-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.5));
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 100%
    );
    border-color: rgba(59, 130, 246, 0.3);
}

.example-item strong,
.platform-item strong {
    color: var(--text-primary) !important;
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    transition: all 0.3s ease;
}

.platform-item strong {
    margin-bottom: 0;
}

/* Ensure platform text is visible */
.platform-item {
    color: var(--text-primary) !important;
}

.platform-item strong {
    color: #ffffff !important;
}

/* Ensure all text content in platform items is visible */
.platform-item,
.platform-item * {
    color: var(--text-primary) !important;
}

.platform-item strong {
    color: #ffffff !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

/* Additional text visibility safeguards */
.online-self-examples h4,
.online-self-examples .platform-grid,
.online-self-examples .platform-grid * {
    color: var(--text-primary) !important;
}

/* CRITICAL: Fix invisible text on desktop by resetting any background-clip issues */
.platform-item,
.platform-item *,
.platform-item strong,
.example-item,
.example-item *,
.example-item strong,
.online-self-examples,
.online-self-examples * {
    -webkit-text-fill-color: inherit !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    color: var(--text-primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force all text content to be visible */
.platform-item {
    color: #ffffff !important;
}

.platform-item strong {
    color: #ffffff !important;
}

/* Text after the colon specifically */
.platform-item {
    font-family: inherit !important;
    text-rendering: optimizeLegibility !important;
}

/* Ensure no text is clipped or hidden */
.platform-item, .platform-item * {
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.example-item:hover strong,
.platform-item:hover strong {
    color: rgba(59, 130, 246, 1);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

/* Desktop-specific fix for platform text visibility */
@media (min-width: 1024px) {
    .platform-item,
    .platform-item strong,
    .platform-item * {
        color: var(--text-primary) !important;
        -webkit-text-fill-color: var(--text-primary) !important;
    }
    
    .platform-item strong {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }
    
    /* Force text overflow and layout fixes for desktop */
    .platform-item {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
        width: 100% !important;
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }
    
    .platform-item strong {
        display: inline !important;
        margin-right: 0.5rem !important;
        flex-shrink: 0 !important;
    }
      /* Ensure full text is shown after colon */
    .platform-item {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    /* Ensure platform grid has enough space on desktop */
    .platform-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .online-self-examples {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Dimension Visuals */
.dimension-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.visual-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.core-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--text-sm);
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 30px rgba(59, 130,246, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(59, 130,246, 0.4);
    }
}

.trait-orbits {
    position: relative;
    width: 100%;
    height: 100%;
}

.trait {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: var(--text-xs);
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform-origin: center;
}

.trait.values { 
    animation: orbit-values 20s linear infinite;
}
.trait.beliefs { 
    animation: orbit-beliefs 20s linear infinite;
}
.trait.emotions { 
    animation: orbit-emotions 20s linear infinite;
}
.trait.personality { 
    animation: orbit-personality 20s linear infinite;
}

@keyframes orbit-values {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes orbit-beliefs {
    from { transform: translate(-50%, -50%) rotate(90deg) translateX(100px) rotate(-90deg); }
    to { transform: translate(-50%, -50%) rotate(450deg) translateX(100px) rotate(-450deg); }
}

@keyframes orbit-emotions {
    from { transform: translate(-50%, -50%) rotate(180deg) translateX(100px) rotate(-180deg); }
    to { transform: translate(-50%, -50%) rotate(540deg) translateX(100px) rotate(-540deg); }
}

@keyframes orbit-personality {
    from { transform: translate(-50%, -50%) rotate(270deg) translateX(100px) rotate(-270deg); }
    to { transform: translate(-50%, -50%) rotate(630deg) translateX(100px) rotate(-630deg); }
}

.aspiration-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 32px;
    position: relative;
}

.aspiration-pyramid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(139, 92, 246, 0.8) 0%,
        rgba(139, 92, 246, 0.4) 50%,
        rgba(139, 92, 246, 0.1) 100%
    );
    z-index: 0;
}

.pyramid-level,
.pyramid-base {
    padding: 20px 32px;
    border-radius: 16px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(139, 92, 246, 0.2);
}

.pyramid-level::before,
.pyramid-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pyramid-level:hover::before,
.pyramid-base:hover::before {
    opacity: 1;
}

.pyramid-level::after,
.pyramid-base::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.pyramid-level:hover::after,
.pyramid-base:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.pyramid-level.level-3 {
    background: linear-gradient(135deg, 
        #8b5cf6 0%, 
        #7c3aed 50%, 
        #6d28d9 100%
    );
    width: 160px;
    animation: pyramid-glow-3 4s ease-in-out infinite;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.pyramid-level.level-2 {
    background: linear-gradient(135deg, 
        #a855f7 0%, 
        #8b5cf6 50%, 
        #7c3aed 100%
    );
    width: 200px;
    animation: pyramid-glow-2 4s ease-in-out infinite 0.5s;
    border: 2px solid rgba(168, 85, 247, 0.4);
}

.pyramid-level.level-1 {
    background: linear-gradient(135deg, 
        #c084fc 0%, 
        #a855f7 50%, 
        #8b5cf6 100%
    );
    width: 240px;
    animation: pyramid-glow-1 4s ease-in-out infinite 1s;
    border: 2px solid rgba(192, 132, 252, 0.4);
}

.pyramid-base {
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.9) 0%,
        rgba(15, 23, 42, 0.9) 50%,
        rgba(2, 6, 23, 0.9) 100%
    );
    border: 2px solid rgba(79, 70, 229, 0.5);
    width: 280px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: pyramid-base-pulse 3s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.9);
}

.pyramid-level:hover,
.pyramid-base:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(139, 92, 246, 0.4),
        0 5px 10px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pyramid-level:active,
.pyramid-base:active {
    transform: translateY(-4px) scale(1.02);
    transition: transform 0.1s ease;
}

/* Pyramid Level Animations */
@keyframes pyramid-glow-3 {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(139, 92, 246, 0.2);
    }
    50% { 
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.2),
            0 6px 20px rgba(139, 92, 246, 0.4),
            0 0 15px rgba(139, 92, 246, 0.3);
    }
}

@keyframes pyramid-glow-2 {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(168, 85, 247, 0.2);
    }
    50% { 
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.2),
            0 6px 20px rgba(168, 85, 247, 0.4),
            0 0 15px rgba(168, 85, 247, 0.3);
    }
}

@keyframes pyramid-glow-1 {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(192, 132, 252, 0.2);
    }
    50% { 
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.2),
            0 6px 20px rgba(192, 132, 252, 0.4),
            0 0 15px rgba(192, 132, 252, 0.3);
    }
}

@keyframes pyramid-base-pulse {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(79, 70, 229, 0.3);
    }
    50% { 
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.2),
            0 6px 20px rgba(79, 70, 229, 0.5),
            0 0 20px rgba(79, 70, 229, 0.4);
    }
}

.platform-network {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced platform nodes with floating animation */
.platform-node {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: platform-float 4s ease-in-out infinite;
    z-index: 2;
}

.platform-node:hover {
    transform: scale(1.2);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.platform-node.instagram {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #ff6347);
    animation-delay: 0s;
}

.platform-node.instagram:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 
        0 15px 50px rgba(228, 64, 95, 0.4),
        0 8px 25px rgba(253, 29, 29, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.platform-node.linkedin {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0077b5, #00a0dc, #4fc3f7);
    animation-delay: 0.8s;
}

.platform-node.linkedin:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 
        0 15px 50px rgba(0, 119, 181, 0.4),
        0 8px 25px rgba(0, 160, 220, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.platform-node.twitter {
    bottom: 80px;
    right: 80px;
    background: linear-gradient(135deg, #1da1f2, #0d8bd9, #64b5f6);
    animation-delay: 1.6s;
}

.platform-node.twitter:hover {
    box-shadow: 
        0 15px 50px rgba(29, 161, 242, 0.4),
        0 8px 25px rgba(13, 139, 217, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.platform-node.tiktok {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0050, #000000, #ff4081);
    animation-delay: 2.4s;
}

.platform-node.tiktok:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 
        0 15px 50px rgba(255, 0, 80, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.platform-node.discord {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #7289da, #5b6eae, #9c88ff);
    animation-delay: 3.2s;
}

.platform-node.discord:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 
        0 15px 50px rgba(114, 137, 218, 0.4),
        0 8px 25px rgba(91, 110, 174, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Enhanced center identity with pulsing glow */
.center-identity {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.9),
        rgba(139, 92, 246, 0.8),
        rgba(236, 72, 153, 0.7)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 15px 50px rgba(59, 130, 246, 0.4),
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: center-pulse 3s ease-in-out infinite;
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.center-identity::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: center-shimmer 3s ease-in-out infinite;
    z-index: -1;
}

/* Floating animation for platform nodes */
@keyframes platform-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: translateY(-8px) scale(1.02);
        filter: brightness(1.1);
    }
}

/* Center pulse animation */
@keyframes center-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 15px 50px rgba(59, 130, 246, 0.4),
            0 8px 25px rgba(139, 92, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 20px 60px rgba(59, 130, 246, 0.6),
            0 12px 35px rgba(139, 92, 246, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

/* Center shimmer effect */
@keyframes center-shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Enhanced connection lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-lines svg {
    width: 100%;
    height: 100%;
}

.connection-lines line {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: connection-pulse 4s ease-in-out infinite;
}

.platform-node:hover ~ .connection-lines line {
    stroke: rgba(59, 130, 246, 0.8);
    stroke-width: 3;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.5));
}

@keyframes connection-pulse {
    0%, 100% { 
        opacity: 0.3; 
        stroke-width: 2;
    }
    50% { 
        opacity: 0.7; 
        stroke-width: 3;
    }
}

/* Platform network glow effects */
.platform-network::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 40%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: network-glow 6s ease-in-out infinite;
    z-index: 0;
}

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

/* Individual platform node glow effects */
.platform-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: inherit;
    transform: translate(-50%, -50%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.platform-node:hover::after {
    opacity: 0.6;
}

/* Enhanced center identity with layered effects */
.center-identity::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2),
        rgba(139, 92, 246, 0.15),
        rgba(236, 72, 153, 0.1)
    );
    transform: translate(-50%, -50%);
    filter: blur(20px);
    animation: center-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes center-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}
@media (max-width: 768px) {
    .platform-network {
        width: 350px;
        height: 350px;
    }
    
    .platform-node {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .center-identity {
        width: 85px;
        height: 85px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .platform-network {
        width: 300px;
        height: 300px;
    }
    
    .platform-node {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
    
    .center-identity {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Mobile: Reorder ideal-self content - text first, pyramid last */
@media (max-width: 767px) {
    .dimension-content.reverse {
        display: flex;
        flex-direction: column;
        direction: ltr;
    }
    
    .dimension-content.reverse .dimension-visual {
        order: 2;
    }
    
    .dimension-content.reverse .dimension-info {
        order: 1;
    }
    
    .dimension-content.reverse > * {
        direction: ltr;
    }
    
    /* Make visual-elements smaller on mobile */
    .visual-elements {
        width: 320px;
        height: 320px;
    }
}

@media (min-width: 768px) {
    .dimension-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .example-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .example-grid,
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Make visual-elements even bigger on larger screens */
    .visual-elements {
        width: 450px;
        height: 450px;
    }
}

/* Theory Section - Enhanced Responsive */
.theory-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.theory-content {
    max-width: 1200px;
    margin: 0 auto;
}

.theory-header {
    text-align: center;
    margin-bottom: var(--gap-xl);
}

.theory-header h2 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-sm);
}

.theory-header p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Theory Grid */
.theory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
}

/* Enhanced Theory Cards with Modern Design */
.theory-card {
    position: relative;
    padding: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: cardFloat 6s ease-in-out infinite;
}

/* Individual floating animations for each card */
.theory-card:nth-child(1) {
    animation-delay: 0s;
}

.theory-card:nth-child(2) {
    animation-delay: 2s;
}

.theory-card:nth-child(3) {
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Sophisticated hover effects */
.theory-card:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(59, 130, 246, 0.2),
        0 5px 20px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Gradient overlay for depth */
.theory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.03) 50%,
        rgba(236, 72, 153, 0.02) 100%
    );
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.theory-card:hover::before {
    opacity: 1;
}

/* Shimmer effect on hover */
.theory-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.theory-card:hover::after {
    left: 100%;
}

/* Enhanced theory icons with glow effects */
.theory-icon {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: var(--gap-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(139, 92, 246, 0.15) 100%
    );
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theory-card:hover .theory-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.4),
        0 4px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Color-coded icons for different theories */
.theory-card:nth-child(1) .theory-icon {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.25) 0%,
        rgba(99, 102, 241, 0.2) 100%
    );
}

.theory-card:nth-child(2) .theory-icon {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.25) 0%,
        rgba(168, 85, 247, 0.2) 100%
    );
}

.theory-card:nth-child(3) .theory-icon {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.25) 0%,
        rgba(219, 39, 119, 0.2) 100%
    );
}

/* Enhanced typography */
.theory-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-sm);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.theory-card p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--gap-md);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Enhanced theory points with modern styling */
.theory-points {
    display: grid;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    position: relative;
    z-index: 2;
}

.point {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-left: 4px solid var(--accent-blue);
    border-radius: 12px;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.6;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.point:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    transform: translateX(4px);
    border-left-color: rgba(59, 130, 246, 0.8);
}

/* Color-coded point borders for different theories */
.theory-card:nth-child(1) .point {
    border-left-color: var(--accent-blue);
}

.theory-card:nth-child(1) .point:hover {
    border-left-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.theory-card:nth-child(2) .point {
    border-left-color: var(--accent-purple);
}

.theory-card:nth-child(2) .point:hover {
    border-left-color: rgba(139, 92, 246, 0.9);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.theory-card:nth-child(3) .point {
    border-left-color: var(--accent-pink);
}

.theory-card:nth-child(3) .point:hover {
    border-left-color: rgba(236, 72, 153, 0.9);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

@media (min-width: 768px) {
    .theory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .theory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Insights Section - Enhanced with Glass Morphism */
.insights-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.95) 0%, 
        rgba(26, 26, 46, 0.98) 50%, 
        rgba(22, 33, 62, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.insights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(139, 92, 246, 0.05) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.insights-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--gap-xl);
    position: relative;
    z-index: 2;
}

.insights-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-sm);
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e0e7ff 30%, 
        #3b82f6 60%, 
        #8b5cf6 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    animation: textShimmer 4s ease-in-out infinite;
}

.insights-header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.6;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: 1rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    z-index: 2;
}

.insight-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    will-change: transform;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #3b82f6,
        #8b5cf6,
        #ec4899,
        transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: insightGlow 3s ease-in-out infinite;
}

.insight-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(139, 92, 246, 0.08) 40%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.insight-card:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.18) 0%,
        rgba(139, 92, 246, 0.12) 50%,
        rgba(236, 72, 153, 0.08) 100%
    );
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.25),
        0 15px 30px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.insight-card:hover::before {
    opacity: 1;
    background-position: 100% 0%;
}

.insight-card:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
}

@keyframes insightGlow {
    0%, 100% {
        opacity: 0.2;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.6;
        background-position: 100% 0%;
    }
}

.insight-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: var(--gap-sm);
    display: block;
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #8b5cf6 50%, 
        #ec4899 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.insight-card:hover .insight-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.insight-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--gap-sm);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.insight-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.insight-card:hover h3 {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.insight-card:hover p {
    color: var(--text-primary);
    opacity: 0.95;
}

/* Staggered animation for insight cards */
.insight-card:nth-child(1) { animation-delay: 0.1s; }
.insight-card:nth-child(2) { animation-delay: 0.2s; }
.insight-card:nth-child(3) { animation-delay: 0.3s; }
.insight-card:nth-child(4) { animation-delay: 0.4s; }

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

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

/* Section Navigation - Enhanced Responsive */
.section-navigation {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.section-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(64, 81, 144, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.nav-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 120px;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-card:hover::before {
    left: 100%;
}

.nav-card:hover {
    background: linear-gradient(135deg, rgba(64, 81, 144, 0.3) 0%, rgba(45, 56, 98, 0.3) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(100, 149, 237, 0.3);
}

.nav-card.back {
    justify-content: flex-start;
    flex-direction: row;
}

.nav-card.next {
    justify-content: flex-end;
    flex-direction: row;
}

.nav-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #6495ed;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6495ed, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(100, 149, 237, 0.3);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-icon {
    transform: scale(1.2);
    text-shadow: 0 0 30px rgba(100, 149, 237, 0.5);
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-card.back .nav-content {
    align-items: flex-start;
    text-align: left;
}

.nav-card.next .nav-content {
    align-items: flex-end;
    text-align: right;
}

.nav-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.nav-card:hover .nav-content h3 {
    color: #e6f3ff;
}

.nav-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-card:hover .nav-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Desktop Layout */
@media (min-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .nav-card {
        min-height: 120px;
    }
}

/* Enhanced Hover Effects for Desktop */
@media (min-width: 1024px) {
    .nav-card:hover {
        transform: translateY(-6px) scale(1.03);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .nav-card {
        transition: none;
    }
    
    .nav-card:hover {
        transform: none;
    }
    
    .nav-card::before,
    .nav-card:hover::before {
        display: none;
    }
}

/* Mobile responsive adjustments for overview section */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }
    
    .key-concepts {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
        max-width: 100%;
    }
    
    .digital-identity-breakdown {
        max-width: 260px;
        gap: var(--gap-sm);
    }
    
    .breakdown-circle {
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
    }
}

@media (max-width: 480px) {
    .concept-item {
        padding: clamp(0.9rem, 3.5vw, 1.2rem);
        gap: var(--gap-xs);
    }
    
    .concept-icon {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }
}

@media (max-width: 320px) {
    .digital-identity-breakdown {
        max-width: 220px;
    }
    
    .breakdown-circle {
        width: clamp(45px, 10vw, 55px);
        height: clamp(45px, 10vw, 55px);
    }
}

/* ===== FOOTER STYLES ===== */
.section-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .section-footer {
        padding: 2rem 0 1rem;
    }
}

/* Online Self Image Styling */
.online-self-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
}
