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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #87CEEB 0%, #98D8E8 50%, #B0E6FF 100%);
    position: relative;
}

/* Cloud Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 15%, transparent 15%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 10%, transparent 10%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.7) 12%, transparent 12%),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.5) 8%, transparent 8%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.6) 14%, transparent 14%);
    animation: cloudFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(30px); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 3px solid #4A90E2;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

/* Force hide desktop nav on any screen smaller than desktop */
@media screen and (max-width: 1024px) {
    .navbar .nav-container .nav-menu,
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .navbar .nav-container .hamburger,
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #4A90E2, #87CEEB);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    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: linear-gradient(to bottom, #87CEEB 0%, #B0E6FF 30%, #E0F6FF 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.cloud-1 { top: 10%; left: 15%; animation-delay: 0s; font-size: 3rem; }
.sun-1 { top: 5%; right: 10%; animation-delay: 1s; font-size: 2.5rem; }
.bird-1 { top: 25%; left: 60%; animation-delay: 2s; font-size: 1.8rem; }
.cat-1 { top: 45%; right: 20%; animation-delay: 3s; font-size: 2rem; }
.balloon-1 { top: 70%; left: 10%; animation-delay: 4s; font-size: 2.2rem; }
.star-1 { top: 15%; left: 80%; animation-delay: 5s; font-size: 1.5rem; }
.rainbow-1 { top: 20%; left: 30%; animation-delay: 6s; font-size: 2.8rem; }
.cloud-2 { top: 60%; right: 5%; animation-delay: 7s; font-size: 2.5rem; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-content {
    text-align: center;
    color: #2c3e50;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-cat {
    margin-bottom: 2rem;
}

.cat-container {
    position: relative;
    display: inline-block;
}

.cat-face {
    font-size: 4rem;
    animation: catBlink 3s infinite;
}

@keyframes catBlink {
    0%, 90%, 100% { transform: scale(1); }
    95% { transform: scale(1.1); }
}

.speech-bubble {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #2c3e50;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 3px solid #4A90E2;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
    font-weight: 600;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #4A90E2;
}

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

.typing-text {
    animation: typing 3s infinite;
}

@keyframes typing {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.gradient-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #4A90E2, #5CB3F0, #87CEEB, #B0E6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(74, 144, 226, 0.3);
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(45deg); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #4A90E2, #5CB3F0);
    color: white;
    border: 2px solid #4A90E2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #4A90E2;
    border: 2px solid #4A90E2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #5CB3F0, #4A90E2);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4A90E2;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    font-size: 3rem;
}



/* About Section */
.about {
    background: linear-gradient(135deg, #98D8E8 0%, #B0E6FF 50%, #E0F6FF 100%);
    color: #2c3e50;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4) 8%, transparent 8%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.3) 6%, transparent 6%),
        radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.5) 10%, transparent 10%);
    pointer-events: none;
}

/* Cat Journey Section */
.cat-journey {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.journey-cat {
    display: flex;
    justify-content: center;
    position: relative;
}

.cat-avatar {
    position: relative;
}

.cat-body {
    font-size: 8rem;
    animation: catBob 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cat-body:hover {
    transform: scale(1.1);
}

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

.cat-thoughts {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
}

.thought-bubble {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #4A90E2;
    border-radius: 25px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.thought-bubble.active {
    opacity: 1;
    transform: translateY(0);
}

.thought-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 12px solid transparent;
    border-top-color: #4A90E2;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 1.5rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.step-item:hover, .step-item.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: #4A90E2;
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 500;
}

/* Interactive Playground */
.cat-playground {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 2rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cat-playground h3 {
    color: #4A90E2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.playground-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.play-btn {
    background: linear-gradient(45deg, #4A90E2, #5CB3F0);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.play-btn:hover {
    background: linear-gradient(45deg, #5CB3F0, #4A90E2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* Cat Action Button - Just ensure it's fully clickable without overriding styling */
.cat-action-btn {
    width: 100% !important;
    height: 100% !important;
    cursor: pointer !important;
}

/* Ensure proper grid behavior */
.playground-buttons {
    align-items: stretch;
    justify-items: stretch;
}

.play-btn:active {
    transform: translateY(0);
}

.cat-response {
    display: flex;
    justify-content: center;
}

.response-bubble {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid #4A90E2;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    position: relative;
}

.response-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    animation: typewriter 2s ease-in-out;
}

@keyframes typewriter {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, #87CEEB 0%, #98D8E8 50%, #A8E6F0 100%);
    color: #2c3e50;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.6) 12%, transparent 12%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.4) 8%, transparent 8%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.3) 6%, transparent 6%);
    pointer-events: none;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #4A90E2, #5CB3F0);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.timeline-item {
    display: flex;
    margin: 3rem 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(15px);
    border: 4px solid #4A90E2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3);
}

.timeline-item.completed .timeline-icon {
    background: linear-gradient(45deg, #4A90E2, #5CB3F0);
    border-color: #2E5B8A;
    animation: completedPulse 2s infinite;
}

.timeline-item.active .timeline-icon {
    background: linear-gradient(45deg, #87CEEB, #4A90E2);
    border-color: #3A7BD5;
    animation: activePulse 1.5s infinite;
}

@keyframes completedPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3), 0 0 0 0 rgba(74, 144, 226, 0.7); }
    50% { box-shadow: 0 5px 20px rgba(74, 144, 226, 0.3), 0 0 0 20px rgba(74, 144, 226, 0); }
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(135, 206, 235, 0.3), 0 0 0 0 rgba(135, 206, 235, 0.7); }
    50% { box-shadow: 0 5px 20px rgba(135, 206, 235, 0.3), 0 0 0 20px rgba(135, 206, 235, 0); }
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    margin: 0 2rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    top: 0;
}

/* Whitepaper Section */
.whitepaper {
    background: linear-gradient(135deg, #E0F6FF 0%, #F0F9FF 50%, #FFFFFF 100%);
    color: #2c3e50;
    position: relative;
}

.whitepaper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 20%, rgba(74, 144, 226, 0.1) 15%, transparent 15%),
        radial-gradient(circle at 30% 70%, rgba(135, 206, 235, 0.08) 12%, transparent 12%),
        radial-gradient(circle at 90% 90%, rgba(176, 230, 255, 0.1) 10%, transparent 10%);
    pointer-events: none;
}

.whitepaper-content {
    max-width: 900px;
    margin: 0 auto;
}

.whitepaper-intro {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    position: relative;
    z-index: 1;
}

.paper-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: paperFloat 3s ease-in-out infinite;
}

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

.whitepaper-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4A90E2;
    font-weight: 700;
}

.whitepaper-sections {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.paper-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
    position: relative;
    z-index: 1;
}

.paper-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
    border-color: #4A90E2;
}

.paper-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4A90E2;
    font-weight: 600;
}

.paper-section ul {
    list-style: none;
    padding-left: 0;
}

.paper-section li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.paper-section li::before {
    content: '🔸';
    position: absolute;
    left: 0;
    top: 0;
}

.whitepaper-download {
    text-align: center;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: #4A90E2;
    border: 3px solid #4A90E2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.btn-outline:hover {
    background: #4A90E2;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F6FF 50%, #D0F2FF 100%);
    color: #2c3e50;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.02) 3%, transparent 3%),
        radial-gradient(circle at 75% 75%, rgba(135, 206, 235, 0.015) 2%, transparent 2%),
        radial-gradient(circle at 50% 10%, rgba(176, 230, 255, 0.025) 2.5%, transparent 2.5%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 0%;
    }
    50% {
        background-position: 10% 10%, 90% 90%, 60% 10%;
    }
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: paperFloat 6s ease-in-out infinite;
}

.team-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.5);
}

.member-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4A90E2, #5CB3F0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    overflow: hidden;
}

.avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.member-role {
    font-size: 1.1rem;
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: linear-gradient(45deg, #4A90E2, #5CB3F0);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.member-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #0077B5, #00A0DC);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.member-link:hover {
    background: linear-gradient(45deg, #00A0DC, #0077B5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.team-values {
    text-align: center;
    margin-top: 3rem;
}

.team-values h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    animation: slideInRight 1s ease-out;
}

.value-box:nth-child(1) { animation-delay: 0.1s; }
.value-box:nth-child(2) { animation-delay: 0.2s; }
.value-box:nth-child(3) { animation-delay: 0.3s; }

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.value-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-box p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}







.feature-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 2rem;
    border: 2px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.12);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.feature-box:nth-child(1) { animation-delay: 2s; }
.feature-box:nth-child(2) { animation-delay: 2.2s; }
.feature-box:nth-child(3) { animation-delay: 2.4s; }

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
    border-color: #4A90E2;
    background: rgba(255, 255, 255, 1);
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4A90E2;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4A90E2, #5CB3F0, #87CEEB);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 10%, transparent 10%),
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.08) 8%, transparent 8%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Progress Indicator */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4A90E2, #5CB3F0, #87CEEB);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.95), rgba(135, 206, 235, 0.95));
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
    animation: mobileMenuItemFadeIn 0.6s ease-out forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.6s; }

@keyframes mobileMenuItemFadeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Enhanced Hamburger Menu */
.hamburger {
    position: relative;
    z-index: 9999;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F6FF 50%, #D0F2FF 100%);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.08) 15%, transparent 15%),
        radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.06) 12%, transparent 12%),
        radial-gradient(circle at 50% 50%, rgba(176, 230, 255, 0.1) 10%, transparent 10%);
    pointer-events: none;
    animation: testimonialFloat 12s ease-in-out infinite;
}

@keyframes testimonialFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 20% 20%, 80% 80%, 60% 40%;
    }
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(100px, 100px);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
    border-color: #4A90E2;
}

.testimonial-avatar {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #4A90E2;
    position: absolute;
    top: -10px;
    left: -15px;
    opacity: 0.3;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: #4A90E2;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #87CEEB;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-rating {
    font-size: 1.2rem;
    text-align: center;
}

.testimonials-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonials-cta .btn {
    margin: 0 auto;
}

/* Enhanced Interactive Roadmap */
.timeline-item {
    cursor: pointer;
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: scale(1.02);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.98);
    border-color: #4A90E2;
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.timeline-content {
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.timeline-item:hover .timeline-content::before {
    left: 100%;
}

/* Typing Indicator */
.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 1rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4A90E2;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Section Transitions & Parallax Effects */
html {
    scroll-behavior: smooth;
}

section {
    position: relative;
    transform: translateY(0);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.section-animate {
    opacity: 0;
    transform: translateY(50px);
}

.section-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Floating Elements */
.floating-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Enhanced Hover Effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.nav-link:hover::before {
    width: 100px;
    height: 100px;
}

/* Floating Action Button */
.floating-action-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9997;
    background: linear-gradient(45deg, #4A90E2, #5CB3F0);
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    opacity: 0;
    transform: translateY(100px) scale(0.5);
    animation: fabSlideIn 0.6s ease-out 1s forwards;
    text-decoration: none;
}

@keyframes fabSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-action-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
    background: linear-gradient(45deg, #5CB3F0, #4A90E2);
}

.fab-icon {
    font-size: 1.2rem;
    animation: fabIconPulse 2s ease-in-out infinite;
}

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

.floating-action-button.hidden {
    opacity: 0;
    transform: translateY(100px) scale(0.5);
    pointer-events: none;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 50%;
    right: 30px;
    z-index: 9997;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.dark-mode-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.dark-mode-toggle.active .dark-mode-icon {
    transform: rotate(180deg);
}

/* Restart Tour Button */
.restart-tour {
    position: fixed;
    top: 60%;
    right: 30px;
    z-index: 9997;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
}

.restart-tour:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.tour-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

body.dark-mode .restart-tour {
    background: rgba(30, 30, 50, 0.9);
}

/* Dark Mode Styles */
body.dark-mode {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f0f0f0;
}

body.dark-mode .navbar {
    background: rgba(20, 20, 30, 0.95);
}

body.dark-mode .hero {
    background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 30%, #0f3460 100%);
}

body.dark-mode section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

body.dark-mode .nav-link {
    color: #f0f0f0;
}

body.dark-mode .nav-link:hover {
    color: #87CEEB;
}

body.dark-mode .speech-bubble,
body.dark-mode .thought-bubble,
body.dark-mode .response-bubble,
body.dark-mode .testimonial-card,
body.dark-mode .timeline-content,
body.dark-mode .paper-section,
body.dark-mode .supply-card,
body.dark-mode .feature-box {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(74, 144, 226, 0.6);
    color: #f0f0f0;
}

body.dark-mode .dark-mode-toggle {
    background: rgba(30, 30, 50, 0.9);
}

body.dark-mode .restart-tour {
    background: rgba(30, 30, 50, 0.9);
}

/* Dark mode text improvements */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #f0f0f0;
}

body.dark-mode p {
    color: #e0e0e0;
}

body.dark-mode .section-title {
    color: #f0f0f0;
}

body.dark-mode .testimonial-author strong {
    color: #87CEEB;
}

body.dark-mode .testimonial-author span {
    color: #b0b0b0;
}

body.dark-mode .timeline-content h3 {
    color: #87CEEB;
}

body.dark-mode .paper-section h4 {
    color: #87CEEB;
}

body.dark-mode .feature-box h4 {
    color: #87CEEB;
}

body.dark-mode .supply-card h3 {
    color: #f0f0f0;
}

body.dark-mode .step-content h3 {
    color: #87CEEB;
}

body.dark-mode .step-content p {
    color: #e0e0e0;
}

body.dark-mode .legend-item span {
    color: #f0f0f0;
}

body.dark-mode .chart-title {
    color: #f0f0f0;
}

body.dark-mode .onboarding-content {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .onboarding-content h3 {
    color: #87CEEB;
}

body.dark-mode .onboarding-content p {
    color: #e0e0e0;
}

body.dark-mode .onboarding-content p strong {
    color: #87CEEB;
}

/* Additional dark mode improvements */
body.dark-mode .hero-description {
    color: #e0e0e0;
}

body.dark-mode .hero-title .subtitle {
    color: #e0e0e0;
}

body.dark-mode .stat-label {
    color: #b0b0b0;
}

body.dark-mode .stat-number {
    color: #87CEEB;
}

body.dark-mode .whitepaper-intro p {
    color: #e0e0e0;
}

body.dark-mode .testimonials-cta p {
    color: #e0e0e0;
}

body.dark-mode .footer-bottom {
    color: #b0b0b0;
}

body.dark-mode .paper-section p {
    color: #e0e0e0;
}

body.dark-mode .paper-section li {
    color: #e0e0e0;
}

body.dark-mode .timeline-content p {
    color: #e0e0e0;
}

body.dark-mode .timeline-content li {
    color: #e0e0e0;
}

body.dark-mode .feature-box p {
    color: #e0e0e0;
}

body.dark-mode .supply-number {
    color: #87CEEB;
}

body.dark-mode .supply-symbol {
    color: #b0b0b0;
}

/* Dark mode onboarding fixes */
body.dark-mode .onboarding-content {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .progress-dot {
    background: rgba(87, 206, 235, 0.3);
}

body.dark-mode .progress-dot.active {
    background: #87CEEB;
}

/* Dark mode legend and testimonial fixes */
body.dark-mode .legend-item {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.3);
    color: #f0f0f0;
}

body.dark-mode .legend-item:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .testimonial-card {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.3);
    color: #f0f0f0;
}

body.dark-mode .testimonial-content p {
    color: #e0e0e0;
}

body.dark-mode .testimonials-cta {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.3);
}

/* Additional dark mode fixes for step items and playground */
body.dark-mode .step-item {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.3);
}

body.dark-mode .cat-playground {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.3);
}

/* Dark mode whitepaper fixes */
body.dark-mode .whitepaper-content {
    background: rgba(30, 30, 50, 0.9);
}

body.dark-mode .whitepaper-intro {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.3);
}

body.dark-mode .whitepaper-intro h3 {
    color: #87CEEB;
}

body.dark-mode .paper-section:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .btn-outline {
    background: rgba(30, 30, 50, 0.9);
    border-color: rgba(87, 206, 235, 0.6);
    color: #87CEEB;
}

body.dark-mode .btn-outline:hover {
    background: rgba(87, 206, 235, 0.2);
    border-color: #87CEEB;
    color: #f0f0f0;
}

/* Fix remaining white hover effects in dark mode */
body.dark-mode .step-item:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .timeline-content:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .legend-item:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .feature-box:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .supply-card:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .testimonial-card:hover {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.6);
}

body.dark-mode .contract-card {
    background: rgba(20, 25, 40, 0.9);
    border-color: rgba(87, 206, 235, 0.4);
    color: #f0f0f0;
}

body.dark-mode .contract-address {
    background: rgba(87, 206, 235, 0.1);
    border-color: rgba(87, 206, 235, 0.3);
    color: #e0e0e0;
}

body.dark-mode .contract-address:hover {
    background: rgba(87, 206, 235, 0.2);
    border-color: rgba(87, 206, 235, 0.5);
}

/* Fix roadmap timeline dark mode */
body.dark-mode .timeline-content {
    background: rgba(30, 30, 50, 0.9) !important;
    border-color: rgba(87, 206, 235, 0.3) !important;
    color: #f0f0f0 !important;
}

body.dark-mode .timeline-item.completed .timeline-content {
    background: rgba(30, 30, 50, 0.9) !important;
    border-color: rgba(87, 206, 235, 0.4) !important;
}

body.dark-mode .timeline-item.active .timeline-content {
    background: rgba(30, 30, 50, 0.9) !important;
    border-color: rgba(87, 206, 235, 0.6) !important;
}

/* Fix chart center and navigation dark mode */
body.dark-mode .chart-center {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(87, 206, 235, 0.4);
}

body.dark-mode .logo-text {
    color: #f0f0f0;
}

body.dark-mode .logo-icon {
    color: #87CEEB;
}

/* Stronger navbar dark mode fixes */
body.dark-mode .navbar {
    background: rgba(20, 20, 30, 0.95) !important;
}

body.dark-mode .logo-text {
    color: #f0f0f0 !important;
}

body.dark-mode .nav-link {
    color: #f0f0f0 !important;
}

body.dark-mode .nav-link:hover {
    color: #87CEEB !important;
    background: rgba(87, 206, 235, 0.1) !important;
}

body.dark-mode .hamburger span {
    background: #f0f0f0 !important;
}

/* Fix response bubble text in dark mode */
body.dark-mode .response-text {
    color: #f0f0f0 !important;
}

body.dark-mode .response-bubble {
    background: rgba(30, 30, 50, 0.9) !important;
    border-color: rgba(87, 206, 235, 0.6) !important;
}

/* Dark Mode Team Section */
body.dark-mode .team {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

body.dark-mode .team-intro h3 {
    color: #f0f0f0;
}

body.dark-mode .team-intro p {
    color: #e0e0e0;
}

body.dark-mode .team-member {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(74, 144, 226, 0.6);
    color: #f0f0f0;
}

body.dark-mode .team-member:hover {
    background: rgba(40, 40, 60, 0.95);
    border-color: rgba(74, 144, 226, 0.8);
}

body.dark-mode .member-info h3 {
    color: #f0f0f0;
}

body.dark-mode .member-role {
    color: #87CEEB;
}

body.dark-mode .member-description {
    color: #e0e0e0;
}

body.dark-mode .team-values h3 {
    color: #f0f0f0;
}

body.dark-mode .value-box {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(74, 144, 226, 0.6);
}

body.dark-mode .value-box:hover {
    background: rgba(40, 40, 60, 0.95);
    border-color: rgba(74, 144, 226, 0.8);
}

body.dark-mode .value-box h4 {
    color: #87CEEB;
}

body.dark-mode .value-box p {
    color: #e0e0e0;
}



/* Interactive Onboarding */
.onboarding-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(74, 144, 226, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.onboarding-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.onboarding-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    width: min(600px, 90vw);
    height: auto;
    min-height: 500px;
    max-height: 90vh;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.onboarding-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.onboarding-step.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    position: relative;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.onboarding-step.exit-left {
    transform: translateX(-100px);
    opacity: 0;
}

.onboarding-step.enter-right {
    transform: translateX(100px);
    opacity: 0;
}

.onboarding-step.enter-left {
    transform: translateX(-100px);
    opacity: 0;
}

.onboarding-step.exit-right {
    transform: translateX(100px);
    opacity: 0;
}

.onboarding-cat {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.onboarding-step .onboarding-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.onboarding-step .onboarding-buttons {
    margin-top: auto;
    padding-top: 1rem;
}

.onboarding-content h3 {
    color: #4A90E2;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.onboarding-content p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.onboarding-content p strong {
    color: #4A90E2;
    font-weight: 700;
}

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

.onboarding-progress {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Simple Chart Container */
.chart-container {
    cursor: default;
    user-select: none;
}

/* Mobile-first navigation fix for all small screens and touch devices */
@media (max-width: 1024px) and (pointer: coarse) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    /* Fix speech bubble positioning on mobile */
    .speech-bubble {
        top: -40px;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        max-width: 200px;
        text-align: center;
    }
    
    .speech-bubble::after {
        border-width: 8px;
    }
    
    /* Hide some floating elements on mobile for cleaner layout */
    .floating-element {
        font-size: 2rem !important;
    }
    
    .bird-1, .star-1, .balloon-1 {
        display: none;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px; /* Account for navbar */
    }
    
    .cat-journey {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cat-body {
        font-size: 6rem;
    }
    
    .cat-thoughts {
        width: 280px;
        top: -70px;
    }
    
        .playground-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        max-width: 500px;
    }

    .play-btn {
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem;
        width: 100% !important;
        min-height: 55px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: none !important;
        outline: none !important;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 1rem 0;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-container {
        width: 300px;
        height: 300px;
    }
    
    .chart-center {
        width: 150px;
        height: 150px;
    }
    
    .chart-legend {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        max-width: 300px;
    }
    
    .legend-item:nth-child(5) {
        grid-column: 1;
        justify-self: center;
    }
    
    .legend-item {
        padding: 0.8rem 1rem;
    }
    
    /* Reduce animations on mobile for performance */
    .chart-container, .floating-element, .cat-body {
        animation-duration: 0.5s;
        animation-iteration-count: 1;
    }
    
    .legend-item, .feature-box, .supply-card {
        animation-duration: 0.3s;
    }
    
    /* Disable infinite animations on mobile to save battery */
    .floating-element,
    .cat-face,
    .gradient-text,
    .typing-text,
    .cat-body,
    .paper-icon,
    .chart-center,
    .fab-icon {
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .mobile-menu-content {
        gap: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .floating-action-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .fab-text {
        display: none;
    }
    
    .dark-mode-toggle {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    
    .dark-mode-icon {
        font-size: 1.3rem;
    }
    
    .restart-tour {
        width: 50px;
        height: 50px;
        right: 20px;
        top: 55%;
    }
    
    .tour-icon {
        font-size: 1.3rem;
    }
    

    
    .onboarding-content {
        width: 95vw;
        height: auto;
        min-height: 70vh;
        max-height: 85vh;
        padding: 1.5rem;
        margin: 1rem 0;
        max-width: 450px;
        overflow-y: auto;
    }
    
    .onboarding-step {
        padding: 1rem 0.5rem;
        height: auto;
        min-height: 60vh;
    }
    
    .onboarding-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .onboarding-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .onboarding-cat {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .onboarding-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .onboarding-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        padding: 2rem;
    }

    .member-skills {
        justify-content: center;
    }

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

}

@media (max-width: 480px) {
    /* Mobile navigation already handled by 1024px media query above */
    
    .container {
        padding: 0 1rem;
    }
    
    .gradient-text {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Further improve speech bubble on small screens */
    .speech-bubble {
        top: -35px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        max-width: 180px;
    }
    
    .speech-bubble::after {
        border-width: 6px;
    }
    
    /* Hide more floating elements on very small screens */
    .rainbow-1, .cloud-2 {
        display: none;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .cat-body {
        font-size: 5rem;
    }
    
    .cat-thoughts {
        width: 250px;
        top: -60px;
    }
    
    .thought-bubble {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
    
    .playground-buttons {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .play-btn {
        width: 100% !important;
        min-height: 50px !important;
        padding: 0.9rem 1.2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: none !important;
        outline: none !important;
        font-size: 0.9rem;
        margin: 0 !important;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-action-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .dark-mode-toggle {
        width: 45px;
        height: 45px;
        right: 15px;
        top: 45%;
    }
    
    .restart-tour {
        width: 45px;
        height: 45px;
        right: 15px;
        top: 55%;
    }
    
    .onboarding-content {
        width: 98vw;
        height: auto;
        min-height: 65vh;
        max-height: 80vh;
        padding: 1rem;
        margin: 0.5rem 0;
        max-width: 380px;
        overflow-y: auto;
        border-radius: 20px;
    }
    
    .onboarding-step {
        padding: 0.8rem 0.3rem;
        height: auto;
        min-height: 45vh;
        max-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .onboarding-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .onboarding-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .onboarding-cat {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }
    
    .onboarding-buttons .btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Fix tokenomics chart for very small screens */
    .chart-container {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto;
    }
    
    .chart-center {
        width: 120px !important;
        height: 120px !important;
        font-size: 0.8rem;
    }
    
    .chart-legend {
        max-width: 280px;
        margin: 0 auto;
        gap: 0.5rem;
    }
    
    .legend-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tokenomics-content {
        padding: 0 0.5rem;
    }
    
    .supply-card, .contract-card {
        padding: 1.5rem 1rem;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .supply-number {
        font-size: 1.8rem;
        padding: 0 0.3rem;
    }
    
    .contract-address {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
    
    .copy-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-box {
        padding: 1rem;
        margin: 0.5rem auto;
        max-width: 280px;
    }
} 

/* Extra small screens (under 375px) */
@media (max-width: 375px) {
    /* Mobile navigation already handled by parent media queries */
    
    .onboarding-content {
        width: 100vw;
        height: auto;
        min-height: 60vh;
        max-height: 85vh;
        padding: 0.8rem;
        margin: 0;
        max-width: 350px;
        border-radius: 0;
    }
    
    .onboarding-step {
        padding: 0.6rem 0.2rem;
        min-height: 40vh;
        max-height: 65vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .onboarding-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .onboarding-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .onboarding-cat {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .onboarding-buttons .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .chart-container {
        width: 260px !important;
        height: 260px !important;
    }
    
    .chart-center {
        width: 100px !important;
        height: 100px !important;
        font-size: 0.7rem;
    }
    
    .chart-legend {
        max-width: 260px;
        gap: 0.3rem;
    }
    
    .legend-item {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .supply-card, .feature-box {
        max-width: 300px;
        padding: 1rem 0.8rem;
    }
    
    .supply-number {
        font-size: 1.6rem;
        min-height: 50px;
        padding: 0 0.2rem;
    }
    
    .playground-buttons {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 1.5rem auto;
        gap: 0.6rem;
    }
    
    .play-btn {
        width: 100% !important;
        min-height: 48px !important;
        padding: 0.8rem 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: none !important;
        outline: none !important;
        font-size: 0.85rem;
        margin: 0 !important;
    }
    
    .supply-number {
        font-size: 1.4rem;
        padding: 0 0.2rem;
        min-height: 45px;
    }
    
    .gradient-text {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    /* Final speech bubble adjustments for tiny screens */
    .speech-bubble {
        top: -30px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        max-width: 160px;
    }
    
    .speech-bubble::after {
        border-width: 5px;
    }
    
    /* Hide all non-essential floating elements */
    .sun-1, .cat-1 {
        font-size: 1.5rem !important;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding-top: 1rem;
    }
} 