/* Modern CSS Reset & Variables */
/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:root {
    /* White and Dark Blue Color Palette */
    --primary-gradient: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    --hero-gradient: linear-gradient(135deg, #ffffff 0%, #f8faff 25%, #e3f2fd 50%, #bbdefb 75%, #ffffff 100%);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    --shimmer-gradient: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 30%, rgba(224, 247, 250, 0.8) 50%, rgba(255, 255, 255, 0.9) 70%, transparent 100%);
    --shimmer-blue: linear-gradient(90deg, transparent 0%, rgba(26, 35, 126, 0.1) 30%, rgba(13, 71, 161, 0.2) 50%, rgba(26, 35, 126, 0.1) 70%, transparent 100%);

    /* Colors */
    --text-primary: #1a237e;
    --text-secondary: #0d47a1;
    --text-muted: #1565c0;
    --text-white: #ffffff;
    --accent-primary: #1a237e;
    --accent-secondary: #0d47a1;
    --accent-warm: #1976d2;
    --accent-success: #1565c0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 35, 126, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 35, 126, 0.16);
    --shadow-xl: 0 16px 64px rgba(26, 35, 126, 0.2);
    --glow: 0 0 20px rgba(26, 35, 126, 0.3);
    --shimmer-glow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(26, 35, 126, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded,
img[loading="eager"] {
    opacity: 1;
}

/* Picture element optimization */
picture {
    display: block;
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--hero-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-gradient);
    background-size: 200% 100%;
    animation: bodyShimmer 25s ease-in-out infinite;
    animation-delay: 3s;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

@keyframes bodyShimmer {
    0%, 85% { background-position: -200% 0; opacity: 0; }
    90% { opacity: 0.1; }
    95% { background-position: 200% 0; opacity: 0.1; }
    100% { background-position: 200% 0; opacity: 0; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 35, 126, 0.1);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-gradient);
    background-size: 200% 100%;
    animation: headerShimmer 18s ease-in-out infinite;
    animation-delay: 7s;
    opacity: 0.05;
    pointer-events: none;
}

@keyframes headerShimmer {
    0%, 90% { background-position: -200% 0; opacity: 0; }
    95% { opacity: 0.05; }
    100% { background-position: 200% 0; opacity: 0; }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.logo-text {
    background: linear-gradient(135deg,
        #1a237e 0%,
        #0d47a1 30%,
        #1565c0 70%,
        #42a5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #42a5f5, #1565c0);
    transition: width 0.3s ease;
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo:hover .logo-text {
    transform: translateY(-1px);
    filter: drop-shadow(0 2px 8px rgba(26, 35, 126, 0.3));
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-primary);
}

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

.nav-cta {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left var(--transition-slow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shimmer-glow);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(248, 250, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(26, 35, 126, 0.03) 0%,
        rgba(13, 71, 161, 0.02) 25%,
        rgba(21, 101, 192, 0.02) 50%,
        rgba(25, 118, 210, 0.02) 75%,
        rgba(26, 35, 126, 0.03) 100%);
    z-index: 3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(26, 35, 126, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(13, 71, 161, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 100px 100px, 80px 80px;
    animation: particleFloat 40s linear infinite;
    z-index: 4;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(360deg); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(26, 35, 126, 0.05) 50%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
    z-index: 5;
}

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

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    text-align: center;
    color: var(--text-primary);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    text-align: center;
    position: relative;
}

.title-main {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    background: linear-gradient(135deg,
        #1a237e 0%,
        #0d47a1 25%,
        #1565c0 50%,
        #42a5f5 75%,
        #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    letter-spacing: -2px;
    filter: drop-shadow(0 4px 12px rgba(26, 35, 126, 0.4));
    font-family: 'Playfair Display', serif;
}

.title-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.3) 70%,
        transparent 100%);
    animation: titleShimmer 12s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
}

.title-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%);
    animation: titleShimmer 18s ease-in-out infinite;
    animation-delay: 8s;
    z-index: 1;
}

.title-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    animation: titleShimmer 22s ease-in-out infinite;
    animation-delay: 5s;
    z-index: 1;
}

@keyframes titleShimmer {
    0%, 85% { left: -100%; opacity: 0; }
    90% { opacity: 0.8; }
    95% { left: 100%; opacity: 0.8; }
    100% { left: 100%; opacity: 0; }
}

.title-sub {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    color: #1a237e;
    opacity: 0.95;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(26, 35, 126, 0.3));
}

.title-sub::before,
.title-sub::after {
    content: '◦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #64b5f6;
    opacity: 0.6;
}

.title-sub::before {
    left: -3rem;
}

.title-sub::after {
    right: -3rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-lg);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shimmer-glow);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border: 2px solid rgba(26, 35, 126, 0.2);
    backdrop-filter: blur(20px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(26, 35, 126, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shimmer-glow);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left var(--transition-slow);
    z-index: 1;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn span {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: statShimmer 15s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 3s + 8s);
}

@keyframes statShimmer {
    0%, 80% { left: -100%; opacity: 0; }
    85% { opacity: 0.6; }
    95% { left: 100%; opacity: 0.6; }
    100% { left: 100%; opacity: 0; }
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

.hero-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 6;
}

.waveform-container {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#heroWaveform {
    width: 100%;
    height: 100%;
    display: block;
}

/* Section Styles */
.section-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    animation: sectionTitleShimmer 30s ease-in-out infinite;
    animation-delay: 10s;
}

@keyframes sectionTitleShimmer {
    0%, 82% { left: -100%; opacity: 0; }
    87% { opacity: 0.7; }
    97% { left: 100%; opacity: 0.7; }
    100% { left: 100%; opacity: 0; }
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--spacing-3xl);
}

/* Featured Technology Section */
.featured-tech {
    padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.featured-tech .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Section Header */
.tech-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}







/* Additional Features Grid */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 35, 126, 0.1);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left 1s ease;
    opacity: 0;
    z-index: 1;
    animation: occasionalGlimmer 18s ease-in-out infinite;
    animation-delay: var(--card-delay, 0s);
}

.feature-card:nth-child(1) { --card-delay: 4s; }
.feature-card:nth-child(2) { --card-delay: 11s; }
.feature-card:nth-child(3) { --card-delay: 16s; }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(26, 35, 126, 0.2);
}

.feature-card:hover::before {
    left: 100%;
    opacity: 0.5;
    animation: none;
}

.feature-card .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.feature-card .feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

/* Floating Stats */
.tech-stats-floating {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.floating-stat {
    background: var(--card-gradient);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 35, 126, 0.1);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.floating-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left 0.6s ease;
    opacity: 0;
}

.floating-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.floating-stat:hover::before {
    left: 100%;
    opacity: 0.5;
}

.floating-stat .stat-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 2;
}

.floating-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Secondary Features (Right Column) */
.tech-secondary-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-compact {
    background: var(--card-gradient);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(26, 35, 126, 0.1);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.feature-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.feature-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 35, 126, 0.2);
}

.feature-compact:hover::before {
    left: 100%;
    opacity: 0.4;
}

/* Feature Icons */
.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.feature-large .feature-icon {
    width: 70px;
    height: 70px;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.feature-large .feature-icon i {
    font-size: 1.75rem;
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
}

/* Feature Content */
.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-normal);
}

.feature-large .feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.feature:hover .feature-content h3 {
    color: var(--accent-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.feature-large .feature-content p {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

/* Feature Metrics */
.feature-metrics {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.metric {
    background: rgba(26, 35, 126, 0.1);
    color: var(--accent-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--accent-success);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    animation: badgeShimmer 15s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes badgeShimmer {
    0%, 70% { left: -100%; opacity: 0; }
    75% { opacity: 0.8; }
    90% { left: 100%; opacity: 0.8; }
    100% { left: 100%; opacity: 0; }
}

.tech-badge i {
    position: relative;
    z-index: 2;
}

.tech-badge span {
    position: relative;
    z-index: 2;
}

/* CTA Section */
.tech-cta-section {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.tech-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left var(--transition-slow);
}

.tech-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shimmer-glow);
}

.tech-cta:hover::before {
    left: 100%;
}

.tech-cta span {
    position: relative;
    z-index: 2;
}

.tech-cta i {
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.tech-cta:hover i {
    transform: translateX(6px);
}

.tech-content .section-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.tech-content .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 90%;
}

/* Tech Features Grid */
.tech-features {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.feature {
    background: var(--card-gradient);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(26, 35, 126, 0.1);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left 0.8s ease;
    opacity: 0;
    z-index: 1;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shimmer-glow);
    border-color: rgba(26, 35, 126, 0.3);
}

.feature:hover::before {
    left: 100%;
    opacity: 0.6;
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-normal);
}

.feature:hover .feature-content h3 {
    color: var(--accent-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Tech CTA Button */
.tech-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left var(--transition-slow);
}

.tech-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shimmer-glow);
}

.tech-cta:hover::before {
    left: 100%;
}

.tech-cta span {
    position: relative;
    z-index: 2;
}

.tech-cta i {
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.tech-cta:hover i {
    transform: translateX(4px);
}

/* Tech Stats */
.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: rgba(26, 35, 126, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(26, 35, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-blue);
    background-size: 200% 100%;
    animation: statsShimmer 20s ease-in-out infinite;
    animation-delay: 10s;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes statsShimmer {
    0%, 80% { background-position: -200% 0; opacity: 0; }
    85% { opacity: 0.3; }
    95% { background-position: 200% 0; opacity: 0.3; }
    100% { background-position: 200% 0; opacity: 0; }
}

.tech-stat {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tech-stat .stat-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.tech-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Applications Section - Cool to Warm White Gradient */
.apps-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(248, 250, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.96) 25%,
        rgba(255, 253, 250, 0.95) 50%,
        rgba(255, 251, 245, 0.96) 75%,
        rgba(255, 249, 240, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 253, 250, 0.8) 50%,
        rgba(255, 255, 255, 0.9) 70%,
        transparent 100%);
    background-size: 400% 100%;
    animation: appSectionGlimmer 35s ease-in-out infinite;
    animation-delay: 8s;
    opacity: 0;
    pointer-events: none;
}

@keyframes appSectionGlimmer {
    0%, 80% { background-position: -400% 0; opacity: 0; }
    85% { opacity: 0.7; }
    95% { background-position: 400% 0; opacity: 0.7; }
    100% { background-position: 400% 0; opacity: 0; }
}

/* Amazing Apps Showcase Container */
.apps-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.apps-showcase-inner {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 255, 0.92) 25%,
        rgba(255, 255, 255, 0.94) 50%,
        rgba(250, 252, 255, 0.93) 75%,
        rgba(255, 255, 255, 0.96) 100%);
    backdrop-filter: blur(40px);
    border-radius: 32px;
    padding: var(--spacing-xl) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 32px 80px rgba(26, 35, 126, 0.08),
        0 16px 40px rgba(26, 35, 126, 0.06),
        0 8px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apps-showcase-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 25%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 75%,
        transparent 100%);
    animation: shimmerContainer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.apps-showcase-inner::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(26, 35, 126, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(26, 35, 126, 0.05) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        rgba(26, 35, 126, 0.08) 100%);
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.apps-showcase-inner:hover::after {
    opacity: 1;
}

@keyframes shimmerContainer {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 0.6; }
    20% { opacity: 0.8; }
    30% { opacity: 0.6; }
    40% { left: 100%; opacity: 0; }
    100% { left: 100%; opacity: 0; }
}

.apps-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 10;
    padding: var(--spacing-lg) 0;
}

.apps-title {
    font-family: var(--font-accent);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg,
        var(--text-primary) 0%,
        var(--accent-primary) 50%,
        var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
    text-shadow: 0 4px 8px rgba(26, 35, 126, 0.15);
    filter: drop-shadow(0 2px 4px rgba(26, 35, 126, 0.1));
}

.apps-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%);
    animation: titleGlimmer 28s ease-in-out infinite;
    animation-delay: 12s;
    z-index: 1;
}

@keyframes titleGlimmer {
    0%, 85% { left: -100%; opacity: 0; }
    90% { opacity: 1; }
    97% { left: 100%; opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.apps-subtitle {
    font-size: 1.2rem;
    color: var(--accent-primary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg) auto;
    font-weight: 500;
    position: relative;
    z-index: 2;
}



/* Article Style Product Grid */
.apps-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Article Style App Cards */
.app-article-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 255, 0.96) 100%);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    border: 1px solid rgba(26, 35, 126, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 8px 32px rgba(26, 35, 126, 0.08),
        0 4px 16px rgba(26, 35, 126, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    cursor: pointer;
    height: auto;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.app-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(26, 35, 126, 0.02) 0%,
        rgba(13, 71, 161, 0.03) 50%,
        rgba(26, 35, 126, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    pointer-events: none;
}

.app-article-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(26, 35, 126, 0.12),
        0 8px 24px rgba(26, 35, 126, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(26, 35, 126, 0.12);
}

.app-article-card:hover::before {
    opacity: 1;
}

/* Article Image Styling - Square Aspect Ratio */
.app-article-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 255, 0.95) 100%);
    flex-shrink: 0;
    border-bottom: 1px solid rgba(26, 35, 126, 0.06);
}

.app-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    filter: brightness(0.95) saturate(1.0) contrast(1.02);
}

.app-article-card:hover .app-article-img {
    transform: scale(1.03);
    filter: brightness(1.0) saturate(1.05) contrast(1.05);
}





/* Article Content Styling */
.app-article-content {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(248, 250, 255, 0.01) 100%);
    box-sizing: border-box;
}

.app-article-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    background: linear-gradient(135deg,
        var(--text-primary) 0%,
        var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-article-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    flex: 1;
    font-weight: 400;
}





/* Article Launch Button - Small and Subtle */
.app-article-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    background: rgba(26, 35, 126, 0.08);
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(26, 35, 126, 0.08),
        0 1px 4px rgba(26, 35, 126, 0.06);
    font-size: 0.8rem;
    width: auto;
    max-width: 120px;
    border: 1px solid rgba(26, 35, 126, 0.12);
    margin: 0 auto;
    margin-top: auto;
}

.app-article-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.06);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.app-article-launch:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(26, 35, 126, 0.12),
        0 2px 6px rgba(26, 35, 126, 0.08);
    background: rgba(26, 35, 126, 0.12);
    color: var(--accent-secondary);
}

.app-article-launch:hover::before {
    opacity: 1;
}

.app-article-launch span {
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.app-article-launch i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.app-article-launch:hover i {
    transform: translateX(2px);
}





/* Research Section */
.research-section {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-blue);
    background-size: 400% 100%;
    animation: researchShimmer 35s ease-in-out infinite;
    animation-delay: 20s;
    opacity: 0.2;
    pointer-events: none;
}

@keyframes researchShimmer {
    0%, 90% { background-position: -400% 0; opacity: 0; }
    94% { opacity: 0.2; }
    99% { background-position: 400% 0; opacity: 0.2; }
    100% { background-position: 400% 0; opacity: 0; }
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.research-card {
    background: var(--card-gradient);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(26, 35, 126, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.research-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: left 0.8s ease;
    opacity: 0;
    z-index: 1;
}

.research-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shimmer-glow);
    border-color: rgba(26, 35, 126, 0.2);
}

.research-card:hover::before {
    left: 100%;
    opacity: 0.5;
}

.research-image {
    position: relative;
    height: 280px;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1;
}

.research-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.research-card:hover .research-img {
    transform: scale(1.05);
}

.research-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--accent-success);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.research-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    animation: categoryShimmer 25s ease-in-out infinite;
    animation-delay: 30s;
}

.research-content {
    padding: var(--spacing-xl);
}

.research-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.research-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.research-link:hover {
    color: var(--accent-secondary);
    transform: translateX(4px);
}

/* Solodome Showcase */
.solodome-showcase {
    padding: var(--spacing-2xl) 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.solodome-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-gradient);
    background-size: 300% 100%;
    animation: showcaseShimmer 32s ease-in-out infinite;
    animation-delay: 25s;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes showcaseShimmer {
    0%, 86% { background-position: -300% 0; opacity: 0; }
    91% { opacity: 0.1; }
    98% { background-position: 300% 0; opacity: 0.1; }
    100% { background-position: 300% 0; opacity: 0; }
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--spacing-2xl);
    align-items: center;
    min-height: 500px;
}

.showcase-text {
    padding-right: var(--spacing-xl);
}

.showcase-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
}

.showcase-feature i {
    width: 24px;
    text-align: center;
    opacity: 0.8;
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: white;
    color: var(--accent-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.showcase-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-blue);
    transition: left var(--transition-slow);
}

.showcase-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shimmer-glow);
}

.showcase-cta:hover::before {
    left: 100%;
}

.showcase-cta span {
    position: relative;
    z-index: 2;
}

.showcase-image {
    position: relative;
    text-align: center;
    padding-left: var(--spacing-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solodome-img {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transform: scale(1.2);
    object-fit: cover;
    object-position: center center;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(26, 35, 126, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: showcaseGlow 3s ease-in-out infinite;
}

@keyframes showcaseGlow {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Footer */
.main-footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shimmer-gradient);
    background-size: 200% 100%;
    animation: footerShimmer 40s ease-in-out infinite;
    animation-delay: 35s;
    opacity: 0.03;
    pointer-events: none;
}

@keyframes footerShimmer {
    0%, 92% { background-position: -200% 0; opacity: 0; }
    96% { opacity: 0.03; }
    99% { background-position: 200% 0; opacity: 0.03; }
    100% { background-position: 200% 0; opacity: 0; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h5 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    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;
    letter-spacing: -0.5px;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-logo:hover h4 {
    transform: translateY(-1px);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-sm);
}

.footer-disclaimer {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-tech {
        padding: var(--spacing-xl) 0;
    }

    .tech-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: var(--spacing-md);
    }

    .apps-section {
        padding: var(--spacing-md) 0 0 0;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

/* Large screens - 3 columns article layout */
@media (min-width: 1001px) {
    .apps-article-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
        max-width: 1200px;
    }

    .app-article-card {
        min-height: 450px;
    }
}

/* Medium screens - 2 columns article layout */
@media (max-width: 1000px) and (min-width: 769px) {
    .apps-article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        max-width: 800px;
    }

    .app-article-card {
        min-height: 420px;
    }

    .app-article-content {
        padding: var(--spacing-md);
    }

    .app-article-title {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xs);
    }

    .app-article-description {
        font-size: 0.75rem;
        margin-bottom: var(--spacing-xs);
    }

    .app-article-launch {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.75rem;
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-header {
        padding: var(--spacing-md) 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(26, 35, 126, 0.1);
    }

    .nav-container {
        padding: 0 var(--spacing-lg);
    }

    .hero {
        padding: var(--spacing-xl) 0;
        min-height: 85vh;
    }

    .hero-container {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .apps-section {
        padding: var(--spacing-md) 0;
    }

    .apps-showcase-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .apps-showcase-inner {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: 24px;
    }

    .apps-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .apps-subtitle {
        font-size: 1rem;
    }

    .apps-article-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 500px;
    }

    .app-article-card {
        min-height: 380px;
    }

    .app-article-content {
        padding: var(--spacing-md);
    }

    .app-article-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }

    .app-article-description {
        font-size: 0.75rem;
        margin-bottom: var(--spacing-xs);
    }

    .app-article-launch {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.75rem;
        max-width: 90px;
    }



    .research-grid {
        grid-template-columns: 1fr;
    }



    .tech-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    .showcase-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .showcase-text {
        order: 2;
    }

    .showcase-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .showcase-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .showcase-feature {
        flex: 0 1 auto;
        min-width: 140px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .hero-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }

    .apps-section {
        padding: var(--spacing-sm) 0;
    }

    .apps-showcase-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .apps-showcase-inner {
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 20px;
    }

    .apps-header {
        padding: var(--spacing-md) 0;
    }

    .apps-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: var(--spacing-xs);
    }

    .apps-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
    }

    .apps-article-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 400px;
    }

    .app-article-card {
        min-height: 350px;
        border-radius: 12px;
    }

    .app-article-content {
        padding: var(--spacing-sm);
    }

    .app-article-title {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-xs);
    }

    .app-article-description {
        font-size: 0.7rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.4;
    }

    .app-article-launch {
        font-size: 0.65rem;
        padding: 4px var(--spacing-xs);
        border-radius: 4px;
        max-width: 80px;
    }





    .tech-header .section-title {
        font-size: 1.75rem;
    }

    .tech-badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }



    .feature-card .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-card .feature-icon i {
        font-size: 1.1rem;
    }



    .tech-cta {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 1rem;
    }

    .showcase-title {
        font-size: 1.8rem;
    }

    .showcase-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .showcase-cta {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Typography Responsive Styles */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .title-sub::before,
    .title-sub::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .footer-logo h4 {
        font-size: 1.3rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--spacing-2xl);
        gap: var(--spacing-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        border: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: var(--radius-md);
        transition: all var(--transition-normal);
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .nav-link:hover {
        background: rgba(26, 35, 126, 0.1);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    .nav-cta {
        background: var(--primary-gradient);
        color: white;
        padding: var(--spacing-md) var(--spacing-xl);
        border-radius: var(--radius-lg);
        font-weight: 600;
        font-size: 1.2rem;
        text-decoration: none;
        box-shadow: var(--shadow-lg);
        transition: all var(--transition-normal);
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .nav-cta:hover {
        transform: translateY(-3px);
        box-shadow: var(--shimmer-glow);
    }

    .mobile-menu-toggle {
        z-index: 10000;
        position: relative;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-links {
        padding: var(--spacing-xl) var(--spacing-lg);
        gap: var(--spacing-lg);
    }

    .nav-link {
        font-size: 1.3rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .nav-cta {
        font-size: 1.1rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .mobile-menu-toggle {
        padding: var(--spacing-xs);
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .hero-badge {
        animation: shimmer 3s ease-in-out infinite;
    }

    .hero-glow {
        animation: pulse 6s ease-in-out infinite;
    }

    .hero-particles {
        animation: particleFloat 40s linear infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}