/* ===================================
   TEAM PAGE - MODERN & SLEEK DESIGN 2024
   =================================== */

/* CSS Variables */
:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --primary-beige: #fefce8;
    --secondary-beige: #fef3c7;
    --accent-beige: #fde68a;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-blue) 100%);
}

/* ===================================
   CSS VARIABLES - SPORTZEY BRANDING
   =================================== */
:root {
    /* Sportzey Brand Colors */
    --sportzey-beige: #f5f5dc;
    --sportzey-beige-dark: #e8e8d0;
    --sportzey-beige-light: #fafaf0;
    --sportzey-black: #1a1a1a;
    --sportzey-black-light: #2d2d2d;
    --sportzey-gray: #6b7280;
    --sportzey-gray-light: #9ca3af;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--sportzey-black), var(--sportzey-black-light));
    --gradient-secondary: linear-gradient(135deg, var(--sportzey-beige), var(--sportzey-beige-light));
    --gradient-accent: linear-gradient(135deg, var(--sportzey-black), var(--sportzey-gray));
    
    /* Text Colors */
    --text-primary: var(--sportzey-black);
    --text-secondary: var(--sportzey-gray);
    --text-light: var(--sportzey-gray-light);
    --text-white: #ffffff;
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Borders */
    --border-light: 1px solid var(--sportzey-beige-dark);
    --border-medium: 2px solid var(--sportzey-gray-light);
    --border-dark: 2px solid var(--sportzey-black);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    background: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: var(--gradient-secondary);
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    font-weight: 400;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

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

/* ===================================
   TEAM MEMBER
   =================================== */
.team-member {
    background: var(--sportzey-beige-light);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    margin: 3rem 0;
    border: var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.founder-member {
    border-left: 6px solid var(--sportzey-black);
}

/* Member Header */
.member-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.member-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.member-image {
    position: relative;
}

.profile-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--sportzey-beige-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow: var(--shadow-xl);
}

.member-status {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--sportzey-beige-light);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 2px solid var(--sportzey-beige-dark);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.member-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    align-self: flex-start;
    box-shadow: var(--shadow-md);
}

.member-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.member-role {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.9;
}

.member-quote {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding: 2rem 2.5rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    border-left: 5px solid var(--sportzey-black);
    position: relative;
    font-weight: 500;
}

.member-quote::before {
    content: '"';
    position: absolute;
    top: -12px;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--sportzey-black);
    opacity: 0.3;
    font-family: serif;
}

.member-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--sportzey-beige);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--sportzey-beige-dark);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--sportzey-black);
    color: var(--text-white);
    transform: translateY(-2px);
}

.member-social {
    margin-top: 0.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--sportzey-beige-dark);
    background: var(--sportzey-beige-light);
    color: var(--text-secondary);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--sportzey-black);
    color: var(--sportzey-black);
}

.linkedin-btn:hover {
    background: #0077b5;
    color: var(--text-white);
    border-color: #0077b5;
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.social-text {
    font-weight: 500;
}

/* ===================================
   DNA SECTION
   =================================== */
.dna-section {
    margin-top: 2.5rem;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 2.5rem;
}

.dna-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.dna-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dna-card {
    background: var(--sportzey-beige-light);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--sportzey-beige-dark);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dna-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.dna-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.dna-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sportzey-black);
}

.dna-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dna-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dna-card:hover .dna-icon {
    transform: scale(1.1) rotate(3deg);
}

.dna-badge {
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.dna-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    line-height: 1.2;
}

.dna-name::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dna-card:hover .dna-name::after {
    opacity: 1;
}

.dna-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.dna-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   EARLY TEAM OPPORTUNITY
   =================================== */
.early-team-opportunity {
    background: var(--gradient-secondary);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.early-team-opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 26, 26, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 114, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.opportunity-content {
    position: relative;
    z-index: 1;
}

.opportunity-header {
    margin-bottom: 2.5rem;
}

.opportunity-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
}

.opportunity-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.opportunity-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    font-weight: 500;
}

.opportunity-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.highlight-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--sportzey-beige-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--sportzey-beige-dark);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon-wrapper {
    transform: scale(1.05);
    border-color: var(--sportzey-black);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 2rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.highlight-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.highlight-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* ===================================
   JOIN CTA
   =================================== */
.join-cta {
    background: linear-gradient(135deg, var(--sportzey-black) 0%, #2a2a2a 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--text-white);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--sportzey-beige);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(245, 245, 220, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 245, 220, 0.08) 0%, transparent 60%);
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: var(--sportzey-beige);
    color: var(--sportzey-black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid var(--sportzey-beige-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--sportzey-beige);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
}

.cta-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.95);
    color: var(--sportzey-black);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--sportzey-beige);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--sportzey-beige-light);
    color: var(--sportzey-black);
    border-color: var(--sportzey-beige-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: transparent;
    color: var(--sportzey-beige-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--sportzey-beige-light);
    border-color: var(--sportzey-beige-light);
}

.btn-secondary:hover {
    background: var(--sportzey-beige-light);
    color: var(--sportzey-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}



/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member {
    animation: fadeInUp 0.8s ease-out;
}

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

@media (prefers-contrast: high) {
    .dna-card {
        border: 3px solid var(--primary-blue);
    }
    
    .member-quote {
        border: 3px solid var(--secondary-blue);
    }
    
    .btn {
        border-width: 3px;
    }
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 768px) {
    /* Container adjustments for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section mobile adjustments */
    .hero-section {
        padding: 4rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Team member mobile adjustments */
    .team-member {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .member-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .member-badge {
        align-self: center;
        margin: 0 auto;
    }
    
    .member-image-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .member-name {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .member-role {
        font-size: 1rem;
    }
    
    .member-quote {
        font-size: 1rem;
        padding: 1.5rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .member-quote::before {
        left: 1rem;
        font-size: 2.5rem;
        top: -8px;
    }
    
    .member-tags {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    
    /* DNA section mobile adjustments */
    .dna-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dna-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .dna-title {
        font-size: 1.5rem;
    }
    
    .dna-name {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .dna-description {
        font-size: 0.9rem;
    }
    
    /* Early team opportunity mobile adjustments */
    .early-team-opportunity {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .opportunity-title {
        font-size: clamp(1.8rem, 5vw, 2.25rem);
    }
    
    .opportunity-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .opportunity-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .highlight-item {
        gap: 1rem;
    }
    
    .highlight-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
    }
    
    .highlight-text h4 {
        font-size: 1.1rem;
    }
    
    .highlight-text p {
        font-size: 0.9rem;
    }
    
    /* Join CTA mobile adjustments */
    .join-cta {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
    
    /* Floating shapes mobile adjustments */
    .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 0.75rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .member-quote {
        padding: 1.25rem 1rem;
        margin: 0 0.25rem;
        font-size: 0.9rem;
    }
    
    .dna-card {
        padding: 1.25rem;
    }
    
    .early-team-opportunity {
        padding: 1.5rem 1rem;
    }
    
    .join-cta {
        padding: 2rem 1rem;
    }
    
    .cta-description {
        padding: 1.25rem;
        font-size: 1rem;
    }
}
