/* Base Styles and Variables */
:root {
    --primary-color: #10FF67;
    --primary-dark: #0DE55A;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader - Enhanced */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: rgba(16, 255, 103, 0.1);
    border: 2px solid rgba(16, 255, 103, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(16, 255, 103, 0.1) 90deg,
        transparent 180deg
    );
    animation: rotate 2s linear infinite;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.preloader-logo .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.3s forwards;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    animation: loading 2.5s ease-out forwards;
}

.loading-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.message-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.6s forwards;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.9s forwards;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dots 1.4s infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(16, 255, 103, 0.1);
    border: 1px solid rgba(16, 255, 103, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Animations */
@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dots {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 255, 103, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(16, 255, 103, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 255, 103, 0); }
}

/* Glass Card Effect - Enhanced */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(16, 255, 103, 0.2),
        transparent
    );
}

.glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(16, 255, 103, 0.2),
        transparent
    );
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(16, 255, 103, 0.15);
    border-color: rgba(16, 255, 103, 0.2);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.wasabi-icon {
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.cta-button {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.glitch-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    animation: glitch 1s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.primary-button {
    background: var(--primary-color);
    color: var(--text-dark);
}

.secondary-button {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 255, 103, 0.2);
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 255, 103, 0.15) 0%, rgba(16, 255, 103, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Team Section - Enhanced */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mentor-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Co-founders container */
.team-grid > div:not(.mentor-card) {
    display: flex;
    justify-content: center;
}

.team-card {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.team-image {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(16, 255, 103, 0.2);
    box-shadow: 0 0 20px rgba(16, 255, 103, 0.1);
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

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

.team-tags {
    margin-top: 1.5rem;
}

.team-tags span {
    background: rgba(16, 255, 103, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(16, 255, 103, 0.2);
    transition: var(--transition-smooth);
}

.team-tags span:hover {
    background: rgba(16, 255, 103, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

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

.social-link {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(16, 255, 103, 0.75),
                     -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                     -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(16, 255, 103, 0.75),
                     -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                     -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(16, 255, 103, 0.75),
                     0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
                     -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(16, 255, 103, 0.75),
                     0.025em 0.025em 0 rgba(255, 0, 0, 0.75),
                     -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(16, 255, 103, 0.75),
                     0.05em 0 0 rgba(255, 0, 0, 0.75),
                     0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(16, 255, 103, 0.75),
                     0.05em 0 0 rgba(255, 0, 0, 0.75),
                     0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(16, 255, 103, 0.75),
                     -0.025em -0.025em 0 rgba(255, 0, 0, 0.75),
                     -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card {
        max-width: 350px;
    }

    .team-image {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 480px) {
    .team-card {
        padding: 1.5rem;
    }

    .team-image {
        width: 110px;
        height: 110px;
    }
}

/* Utility Classes */
.placeholder-image {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

/* Contact Section - Enhanced */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(16, 255, 103, 0.1),
        transparent 70%
    );
    pointer-events: none;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(16, 255, 103, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.contact-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(16, 255, 103, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.contact-details a,
.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.join-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.join-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(16, 255, 103, 0.1);
    border: 1px solid rgba(16, 255, 103, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-button:hover {
    background: rgba(16, 255, 103, 0.2);
    transform: translateY(-2px);
}

.social-button i {
    color: var(--primary-color);
}

.newsletter-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-form {
    margin-top: auto;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-button {
    padding: 1rem;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.subscribe-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Challenge Section - Enhanced */
.challenge-card {
    position: relative;
    overflow: hidden;
}

/* Challenge Features - Updated Layout */
.challenge-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.feature-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.feature-row:first-child {
    margin-bottom: 1rem;
}

.feature {
    flex: 1;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(16, 255, 103, 0.05);
    border: 1px solid rgba(16, 255, 103, 0.1);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(16, 255, 103, 0.1);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(16, 255, 103, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature span {
    font-weight: 500;
    color: var(--text-light);
}

.challenge-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design for Challenge Features */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: none;
    }
}

/* Add smooth hover transitions for all interactive elements */
a, button, .glass-card, .feature, .team-card, .social-button, .team-tags span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add subtle gradient backgrounds to sections */
.about-section,
.challenge-section,
.team-section {
    position: relative;
    overflow: hidden;
}

.about-section::before,
.challenge-section::before,
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom left,
        rgba(16, 255, 103, 0.05),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above gradients */
.section-container {
    position: relative;
    z-index: 1;
}

/* About Section - Enhanced */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(16, 255, 103, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.about-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.mission-highlight {
    background: rgba(16, 255, 103, 0.05);
    border: 1px solid rgba(16, 255, 103, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mission-highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.mission-highlight p {
    margin: 0;
    line-height: 1.6;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(16, 255, 103, 0.05);
    border: 1px solid rgba(16, 255, 103, 0.1);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(16, 255, 103, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Why This Matters Section */
.why-matters-section {
    position: relative;
    overflow: hidden;
}

.why-matters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom right,
        rgba(16, 255, 103, 0.08),
        transparent 70%
    );
    pointer-events: none;
}

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

.why-matters-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-matters-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-matters-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(16, 255, 103, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.why-matters-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.why-matters-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.vision-highlight {
    background: rgba(16, 255, 103, 0.05);
    border: 1px solid rgba(16, 255, 103, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.vision-highlight i {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.5;
}

.vision-highlight i.fa-quote-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.vision-highlight i.fa-quote-right {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.vision-highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 2rem;
}

.impact-highlight {
    background: rgba(16, 255, 103, 0.05);
    border: 1px solid rgba(16, 255, 103, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-top: auto;
}

.highlight-text {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-highlight p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.join-cta {
    margin-top: auto;
    text-align: center;
}

/* Team Section - Enhanced Tags */
.team-info {
    text-align: center;
    padding: 1rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.tag-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 255, 103, 0.05);
    border: 1px solid rgba(16, 255, 103, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    transition: var(--transition-smooth);
}

.tag-group:hover {
    background: rgba(16, 255, 103, 0.1);
    transform: translateY(-2px);
}

.tag-icon {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.tag-text {
    font-size: 0.9rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid,
    .why-matters-grid {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

    .vision-highlight p {
        padding: 0 1rem;
    }

    .team-tags {
        flex-direction: column;
        align-items: center;
    }

    .tag-group {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Team Section Responsive */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mentor-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Co-founders container */
.team-grid > div:not(.mentor-card) {
    display: flex;
    justify-content: center;
}

.team-card {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Navigation */
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card {
        max-width: 350px;
    }

    .team-image {
        width: 140px;
        height: 140px;
    }

    /* Hero Section */
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Why Matters Section */
    .why-matters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Challenge Section */
    .challenge-features {
        flex-direction: column;
    }

    .feature-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social {
        margin-top: 1rem;
    }
}

/* Additional Mobile Optimizations */
@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .team-image {
        width: 110px;
        height: 110px;
    }

    .team-info h3 {
        font-size: 1.2rem;
    }

    .team-tags {
        flex-wrap: wrap;
    }

    .tag-group {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

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

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Improve Touch Targets */
button, 
a, 
input, 
.nav-link {
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem;
}

/* Improve Form Elements */
input, 
textarea {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.7;
} 