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

:root {
    /* New Dark Color Palette */
    --ink: #0B0D10; /* Page background */
    --graphite: #15181D; /* Elevated surfaces */
    --slate: #262B33; /* Dividers, borders */
    --porcelain: #F2F4F7; /* Primary text */
    --fog: #A7B0BA; /* Secondary text */
    --accent: #FF2DA1; /* Primary CTA */
    --accent-hover: #E32890; /* Accent hover state */
    --accent-active: #C31F7B; /* Accent active state */
    --accent-gradient: linear-gradient(135deg, #FF2DA1 0%, #FF6BD6 100%); /* Accent gradient */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Background Colors */
    --bg-primary: var(--ink);
    --bg-secondary: var(--graphite);
    --bg-dark: var(--ink);
    
    /* Text Colors */
    --text-primary: var(--porcelain);
    --text-secondary: var(--fog);
    --text-light: var(--white);
    --text-accent: var(--accent);
    
    /* Glass Effects */
    --glass-light: rgba(21, 24, 29, 0.8);
    --glass-dark: rgba(11, 13, 16, 0.9);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-futuristic: 'Orbitron', monospace;
    --font-condensed: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;
    --spacing-5xl: 10rem;
    
    /* Tech Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
    --shadow-tech: 0 8px 32px rgba(37, 99, 235, 0.2);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    pointer-events: auto;
}

/* General Link Styling */
a {
    color: var(--accent);
    text-decoration: none;
    transition: text-decoration-color 0.2s ease;
    pointer-events: auto;
    position: relative;
    cursor: default;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

/* Prevent flickering on buttons and special links */
a.btn, a.btn-circular, a.linkedin-btn, a.storilly-link-btn, a.nav-link, a.contact-btn {
    text-decoration: none !important;
}

a.btn:hover, a.btn-circular:hover, a.linkedin-btn:hover, a.storilly-link-btn:hover, a.nav-link:hover, a.contact-btn:hover {
    text-decoration: none !important;
}

a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: var(--glass-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--slate);
}

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

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

.nav-icon {
    color: var(--accent);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 45, 161, 0.3));
}

.nav-logo h2 {
    font-family: var(--font-condensed);
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--font-size-xl);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    /* No hover effects */
}

.nav-icon:hover {
    /* No hover effects */
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none !important;
    color: var(--text-primary);
    font-weight: 500;
    transition: background-color 0.2s ease;
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer !important;
}

.nav-link:hover {
    text-decoration: none !important;
}

.nav-link::after {
    display: none;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.contact-btn:hover {
    text-decoration: none !important;
}

.contact-btn::after {
    display: none;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.hamburger:hover {
    /* No hover effects */
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    pointer-events: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 1;
    pointer-events: none;
}

/* Tech scanning lines and radial patterns */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Horizontal scanning lines - more pronounced */
        linear-gradient(90deg, transparent 0%, rgba(255, 45, 161, 0.8) 50%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(255, 107, 214, 0.6) 50%, transparent 100%),
        /* Vertical scanning lines - more pronounced */
        linear-gradient(0deg, transparent 0%, rgba(255, 45, 161, 0.7) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 107, 214, 0.5) 50%, transparent 100%);
    background-size: 100% 4px, 100% 3px, 4px 100%, 3px 100%;
    background-position: -100% 0, -100% 0, 0 -100%, 0 -100%;
    animation: horizontalScan 6s ease-in-out infinite, verticalScan 8s ease-in-out infinite;
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 13, 16, 0.9) 0%, 
        rgba(21, 24, 29, 0.8) 50%, 
        rgba(11, 13, 16, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Additional large glow patterns */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 20%, rgba(255, 107, 214, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(255, 45, 161, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 40%, rgba(255, 107, 214, 0.06) 0%, transparent 35%);
    animation: secondaryGlow 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* Removed unused animation keyframes */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

/* Removed floating decorative elements */

/* Removed unused floating animation keyframes */

.hero-text {
    background: var(--glass-light);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--slate),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--slate);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(11, 13, 16, 0.03) 0%, 
            rgba(21, 24, 29, 0.03) 50%,
            rgba(255, 45, 161, 0.02) 100%),
        /* Subtle noise texture */
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(11, 13, 16, 0.01) 100%);
    opacity: 0.8;
    z-index: -1;
}

.hero-text::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(11, 13, 16, 0.1) 0%, 
        rgba(21, 24, 29, 0.08) 25%,
        rgba(255, 45, 161, 0.08) 50%,
        rgba(11, 13, 16, 0.1) 75%,
        rgba(21, 24, 29, 0.05) 100%);
    border-radius: var(--radius-2xl);
    z-index: -2;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { 
        opacity: 0.3;
        filter: blur(1px);
    }
    50% { 
        opacity: 0.6;
        filter: blur(2px);
    }
}

/* Hero Icon */
.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hero-icon:hover {
    /* No hover effects */
}

.hero-icon svg {
    width: 128px;
    height: 128px;
    fill: currentColor;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes horizontalScan {
    0% {
        background-position: -100% 0, -100% 0, 0 -100%, 0 -100%;
        opacity: 0.6;
    }
    25% {
        background-position: -50% 0, -50% 0, 0 -50%, 0 -50%;
        opacity: 0.9;
    }
    50% {
        background-position: 0% 0, 0% 0, 0 0%, 0 0%;
        opacity: 1.0;
    }
    75% {
        background-position: 50% 0, 50% 0, 0 50%, 0 50%;
        opacity: 0.9;
    }
    100% {
        background-position: 100% 0, 100% 0, 0 100%, 0 100%;
        opacity: 0.6;
    }
}

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


.hero-title {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.title-line-1 {
    font-family: var(--font-condensed);
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.title-line-2 {
    font-family: var(--font-family);
    font-size: var(--font-size-4xl);
    font-weight: 500;
    line-height: 1;
    color: var(--crimson);
    letter-spacing: -0.01em;
    position: relative;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(155, 170, 151, 0.8),
            0 0 20px rgba(155, 170, 151, 0.6),
            0 0 40px rgba(155, 170, 151, 0.4),
            0 0 80px rgba(155, 170, 151, 0.2);
    }
    50% { 
        text-shadow: 
            0 0 15px rgba(155, 170, 151, 1),
            0 0 30px rgba(155, 170, 151, 0.8),
            0 0 60px rgba(155, 170, 151, 0.6),
            0 0 120px rgba(155, 170, 151, 0.3);
    }
}

@keyframes subtitleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 8px rgba(232, 207, 174, 0.8),
            0 0 16px rgba(232, 207, 174, 0.6),
            0 0 32px rgba(232, 207, 174, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 12px rgba(232, 207, 174, 1),
            0 0 24px rgba(232, 207, 174, 0.8),
            0 0 48px rgba(232, 207, 174, 0.6);
    }
}

.highlight {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    color: var(--ink);
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 2px;
    position: relative;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Statistics Section */
.stats-section {
    background: rgba(170, 169, 85, 0.05);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(3, 38, 37, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(3, 38, 37, 0.1);
}

.stat-item:hover {
    /* No hover effects */
}

.stat-number {
    font-family: var(--font-condensed);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--crimson);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: visible;
    min-width: 160px;
    text-align: center;
    pointer-events: auto !important;
    z-index: 10;
}

/* Ensure button children don't block clicks */
.btn * {
    pointer-events: none;
}

button {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

.btn svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Circular "See How" Button with Contrasting Styles */
.btn-circular {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid var(--accent);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(255, 45, 161, 0.2),
        0 0 0 16px rgba(255, 45, 161, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform-origin: center center;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10;
}

.btn-circular .btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn-circular .btn-text {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-circular .btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 161, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

/* Hover Animations - Removed all hover effects */
.btn-circular:hover {
    /* No hover effects */
}

.btn-circular:hover .btn-text {
    /* No hover effects */
}

.btn-circular:hover .btn-ripple {
    /* No hover effects */
}

/* Active State */
.btn-circular:active {
    transform: scale(0.98);
    border-radius: 50% !important;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 45, 161, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Ripple Animation */
@keyframes ripplePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Continuous Subtle Animation */
.btn-circular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 45, 161, 0.1), transparent);
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-circular:hover::before {
    /* No hover effects */
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Floating Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(255, 45, 161, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    /* No hover effects */
}

.back-to-top:active {
    /* No active effects */
}

.back-to-top svg {
    transition: none;
}

.back-to-top:hover svg {
    /* No hover effects */
}

/* Pulsing animation when visible */
.back-to-top.visible::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 45, 161, 0.3), transparent);
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
    opacity: 0.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Bouncing Arrow Inside Button */
.btn-circular .bounce-arrow {
    color: var(--white);
    opacity: 0.8;
    animation: bounceDown 2s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

/* Bounce Animation */
@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 45, 161, 0.3);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
}

.btn-primary:hover {
    /* No hover effects */
}

.btn-secondary {
    background: transparent;
    color: var(--fog);
    border: 2px solid var(--fog);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary:hover {
    /* No hover effects */
}

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--warm-peach), var(--secondary-coral));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.placeholder-content p {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

/* Section Styles */
section {
    padding: calc(var(--spacing-4xl) * 0.85) 0;
    pointer-events: auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-2xl) * 0.85) 0;
    background: transparent;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(11, 13, 16, 0.1) 0%, 
        rgba(11, 13, 16, 0.05) 50%, 
        rgba(11, 13, 16, 0.1) 100%);
    z-index: -1;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 45, 161, 0.3), 
        rgba(255, 45, 161, 0.6), 
        rgba(255, 45, 161, 0.3), 
        transparent);
    flex: 1;
    max-width: 300px;
    border-radius: 1px;
}

.divider-pattern {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0 var(--spacing-lg);
}

.pattern-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 45, 161, 0.4);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(255, 45, 161, 0.3);
}

.pattern-dot:nth-child(2) {
    width: 8px;
    height: 8px;
    opacity: 0.8;
}

/* About Section */
.about {
    background: var(--bg-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 45, 161, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 45, 161, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.about-stats {
    margin: var(--spacing-2xl) 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.about-stats .stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(3, 38, 37, 0.1);
    border: 1px solid rgba(3, 38, 37, 0.1);
    transition: all 0.3s ease;
}

.about-stats .stat-item:hover {
    /* No hover effects */
}

.about-stats .stat-number {
    font-family: var(--font-condensed);
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.about-stats .stat-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Statement Boxes */
.statement-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
}

.statement-box {
    background: #E8E3D8; /* Much warmer, less bright off-white background */
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 32px rgba(3, 38, 37, 0.1);
    border: 1px solid rgba(3, 38, 37, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: visible;
    pointer-events: auto;
}

.statement-content {
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

/* Ensure all links and buttons inside statement boxes are clickable */
.statement-content a,
.statement-content button {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

.statement-box:hover {
    /* No hover effects */
}

/* Status Badges for Cards - Tag Style */
.status-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-live {
    background: var(--ink); /* Black */
    color: var(--white);
    border: none;
}

.status-development {
    background: #6B7280; /* Greyscale */
    color: var(--white);
    border: none;
}

.statement-image {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.statement-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center bottom;
    border-radius: var(--radius-lg);
    border: 2px solid var(--slate);
}

/* Early Literacy specific positioning */
.statement-box:nth-child(2) .statement-photo {
    object-position: center 25%;
}

/* Deaf & Hard of Hearing specific positioning */
.statement-box:nth-child(3) .statement-photo {
    object-position: center 15%;
}

.statement-image .image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(38, 43, 51, 0.3), rgba(230, 57, 70, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--slate);
}

.statement-image .placeholder-content {
    text-align: center;
    color: var(--text-primary);
}

.statement-image .placeholder-content svg {
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.statement-image .placeholder-content p {
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0.7;
}

.statement-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--ink); /* Dark text for cream background */
    margin-bottom: var(--spacing-md);
    font-family: var(--font-condensed);
}

/* Logo placeholder styling */
.logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    height: 60px;
}

.statement-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.logo-placeholder a {
    display: block;
    text-decoration: none;
}

.logo-placeholder a:hover .statement-logo {
    /* No hover effects */
}

.storilly-logo-text {
    font-family: var(--font-condensed);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #6B46C1; /* Purple color similar to Storilly brand */
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.statement-content p {
    font-size: var(--font-size-base);
    color: var(--ink); /* Dark text for cream background */
    line-height: 1.6;
    opacity: 0.9;
}

/* Partnerships Box */
.partnerships-box {
    /* Remove grid-column override to keep it in the normal grid flow */
}

.partnerships-subhead {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-style: italic;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.partnership-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-logo .logo-placeholder {
    width: 100%;
    height: 60px;
    background: var(--bg-secondary);
    border: 2px dashed rgba(3, 38, 37, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partnership-logo .logo-placeholder:hover {
    /* No hover effects */
}

.partnership-logo .logo-placeholder span {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.7;
}

/* Features Carousel */
.features-carousel {
    margin-top: var(--spacing-2xl);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-card {
    min-width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.1);
    overflow: hidden;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-blue), var(--warm-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.carousel-card.active::before {
    transform: scaleX(1);
}

.card-gif-container {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.05) 0%, 
        rgba(255, 140, 66, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gif-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 30%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    position: relative;
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg);
}

.gif-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(74, 144, 226, 0.03) 10px,
            rgba(74, 144, 226, 0.03) 20px
        );
    animation: subtleMove 8s ease-in-out infinite;
}

@keyframes subtleMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(2px) translateY(-1px); }
    50% { transform: translateX(-1px) translateY(2px); }
    75% { transform: translateX(1px) translateY(-2px); }
}

.gif-content {
    text-align: center;
    color: var(--warm-blue);
    z-index: 1;
    position: relative;
}

.gif-content svg {
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.gif-content p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

.card-content {
    padding: var(--spacing-2xl);
    text-align: center;
}

.card-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

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

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--warm-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    /* No hover effects */
}

.carousel-btn:active {
    /* No active effects */
}

.carousel-btn svg {
    color: var(--warm-blue);
    transition: none;
}

.carousel-btn:hover svg {
    /* No hover effects */
}

.prev-btn {
    margin-left: var(--spacing-lg);
}

.next-btn {
    margin-right: var(--spacing-lg);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    padding: 0 var(--spacing-lg);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    /* No hover effects */
}

.indicator.active {
    background: var(--warm-blue);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indicator.active::after {
    opacity: 1;
}

/* Storilly Section */
.storilly {
    background: var(--bg-primary);
    position: relative;
    padding: var(--spacing-4xl) 0;
}

.storilly::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.storilly-hero {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    text-align: center;
}

.storilly-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1) 0%, 
        rgba(255, 140, 66, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content {
    text-align: center;
    color: var(--warm-blue);
    z-index: 1;
}

.placeholder-content svg {
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.placeholder-content p {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.placeholder-content span {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.image-overlay {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 2;
}

.app-preview {
    animation: float 3s ease-in-out infinite;
}

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

.phone-mockup {
    width: 120px;
    height: 200px;
    background: var(--white);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--warm-blue);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-blue), var(--warm-orange));
    border-radius: 12px;
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
}

.app-interface {
    background: var(--white);
    border-radius: 8px;
    padding: var(--spacing-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--warm-blue);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: var(--warm-blue);
    border-radius: 2px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    background: rgba(74, 144, 226, 0.1);
    border-radius: 4px;
}

.activity-icon {
    font-size: var(--font-size-sm);
}

.activity-text {
    font-size: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Storilly Stats */
.storilly-stats {
    display: grid;
    gap: var(--spacing-lg);
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-blue), var(--warm-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    /* No hover effects */
}

.stat-card:hover {
    /* No hover effects */
}

.stat-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.stat-icon svg {
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255, 45, 161, 0.3));
}

.stat-number {
    font-family: var(--font-condensed);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}

.stat-description {
    font-size: var(--font-size-sm);
    color: var(--fog);
    line-height: 1.4;
}

/* Storilly Text Content */
.storilly-text {
    max-width: 600px;
    margin: 0 auto;
}

.storilly-description {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.storilly-features {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.feature-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--slate);
    transition: all 0.3s ease;
}

.feature-item:hover {
    /* No hover effects */
}

.feature-icon {
    flex-shrink: 0;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 45, 161, 0.4));
    margin-top: var(--spacing-xs);
}

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

.feature-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.feature-content p {
    color: var(--fog);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

.storilly-cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

/* Future Section */
/* Team Section */
.team {
    background: var(--bg-primary);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 45, 161, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 45, 161, 0.02) 0%, transparent 50%);
    z-index: 1;
}

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

.team-member {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 8px 32px rgba(3, 38, 37, 0.1);
    border: 1px solid rgba(3, 38, 37, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-member:hover {
    /* No hover effects */
}

.member-photo {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.member-photo .photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(38, 43, 51, 0.3), rgba(230, 57, 70, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--slate);
    overflow: hidden;
}

.member-photo .placeholder-content {
    text-align: center;
    color: var(--text-primary);
}

.member-photo .placeholder-content svg {
    color: var(--accent);
    margin-bottom: var(--spacing-xs);
}

.member-photo .placeholder-content p {
    font-size: var(--font-size-xs);
    font-weight: 600;
    opacity: 0.8;
    line-height: 1.2;
}

/* Team Member Photos - Consistent Sizing */
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--slate);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.team-photo:hover {
    /* No hover effects */
}

.member-info {
    text-align: center;
}

.member-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-condensed);
}

.member-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: #0077B5;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

.linkedin-btn:hover {
    text-decoration: none !important;
}

.storilly-link-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin: var(--spacing-sm) 0;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

.storilly-link-btn:hover {
    text-decoration: none !important;
}

.storilly-link-btn svg {
    transition: none;
}

.future {
    background: var(--light-gray);
    position: relative;
}

.future::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 90%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.future-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--slate);
    position: relative;
    min-height: 400px;
}

.future-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.future-card:hover::before {
    /* No hover effects */
}

.future-card:hover {
    /* No hover effects */
}

.card-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 3s infinite;
}

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

.card-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.card-content p {
    color: var(--fog);
    line-height: 1.7;
    font-size: var(--font-size-lg);
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 45, 161, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 45, 161, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.contact .section-title {
    color: var(--text-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
    margin-top: var(--spacing-2xl);
}

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

.contact-description {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.contact-info {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate);
}

.contact-icon {
    flex-shrink: 0;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 45, 161, 0.6));
}

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

.contact-item span {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-primary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid var(--slate);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-lg);
    border: 1px solid var(--slate);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--fog);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(255, 45, 161, 0.2);
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(170, 169, 85, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(200, 60, 62, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.footer-logo h3 {
    font-family: var(--font-condensed);
    color: var(--accent);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.footer-logo p {
    color: var(--text-secondary);
}

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

.footer-section h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
    transition: text-decoration-color 0.2s ease;
    pointer-events: auto !important;
    cursor: default;
    position: relative;
    z-index: 10;
}

.footer-section a:hover {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.footer-bottom {
    border-top: 1px solid var(--slate);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.footer-bottom a {
    pointer-events: auto !important;
    cursor: default;
    position: relative;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: var(--spacing-lg) 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(74, 144, 226, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 0 var(--spacing-md);
    }
    
    .hero-text {
        padding: var(--spacing-2xl);
    }
    
    .title-line-1 {
        font-size: var(--font-size-5xl);
    }
    
    .title-line-2 {
        font-size: var(--font-size-3xl);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .carousel-container {
        max-width: 95%;
    }
    
    .card-gif-container {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        margin-left: var(--spacing-sm);
    }
    
    .next-btn {
        margin-right: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .about-content {
        gap: var(--spacing-xl);
    }
    
    .about-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .statement-boxes {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .statement-box {
        padding: var(--spacing-xl);
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .team-member {
        padding: var(--spacing-xl);
    }
    
    .storilly-hero {
        gap: var(--spacing-2xl);
    }
    
    .image-placeholder {
        height: 400px;
    }
    
    .phone-mockup {
        width: 100px;
        height: 160px;
    }
    
    .storilly-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-card {
        padding: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .storilly-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .future-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-content {
        max-width: 98%;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-text {
        padding: var(--spacing-xl);
    }
    
    .title-line-1 {
        font-size: var(--font-size-4xl);
    }
    
    .title-line-2 {
        font-size: var(--font-size-2xl);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-4xl);
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    pointer-events: auto;
}

/* Ensure all interactive elements are clickable */
button, .btn, .linkedin-btn, .storilly-link-btn, .nav-link, .contact-btn, 
input[type="submit"], select, textarea, .btn-circular, .back-to-top {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

/* Regular links use default cursor - no override on hover */
a {
    cursor: default !important;
}

/* Buttons and button-like links use pointer cursor */
a.btn, a.btn-circular, a.linkedin-btn, a.storilly-link-btn, a.nav-link, a.contact-btn {
    cursor: pointer !important;
}

/* Ensure pseudo-elements don't block clicks */
a::before, a::after, button::before, button::after,
.btn::before, .btn::after, .btn-circular::before, .btn-circular::after {
    pointer-events: none !important;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.storilly-content,
.future-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}
