/* ============================================
   PARRAS TEAM WEBSITE — STYLE SYSTEM
   Theme: Light, Premium, Modern
   ============================================ */

/* === CSS Custom Properties (Design Tokens) === */
:root {
    /* Primary Palette — Electric Blue from logo */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;

    /* Accent — Vibrant Teal */
    --accent-400: #2dd4bf;
    --accent-500: #14b8a6;
    --accent-600: #0d9488;

    /* Neutral — Warm Grays */
    --gray-50: #fafbfc;
    --gray-100: #f4f6f8;
    --gray-200: #e9ecf0;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(249,250,251,0.7) 100%);
    --gradient-text: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 4px 24px rgba(59, 130, 246, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(59, 130, 246, 0.15);

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;

}

ul {
    list-style: none;
}

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

/* === Animated Particles Background === */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-300);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* === Gradient Text Utility === */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Section Styles === */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid var(--primary-100);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
    background: rgba(250, 251, 252, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 100px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-link.active {
    color: var(--primary-600);
    background: var(--primary-50);
    font-weight: 600;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--gray-500);
}

.title-highlight {
    display: block;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: white;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--primary-300);
    color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual — Logo Showcase */
.hero-visual {
    flex: 0 0 auto;
    animation: fadeIn 1s ease 0.6s both;
}

.logo-showcase {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
    animation: logoFloat 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Orbiting dots */
.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.15);
    animation: orbitSpin linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    animation-duration: 25s;
}

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

.orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1s both;
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-500);
    animation: scrollDash 2s ease-in-out infinite;
}

@keyframes scrollDash {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* === ABOUT SECTION === */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.about-card:hover {
    background: white;
    border-color: var(--primary-100);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-50);
    color: var(--primary-600);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.about-card:hover .about-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === PROJECTS SECTION === */
.projects {
    background: var(--gray-50);
}

.projects-grid {
    max-width: 480px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #f97316, #ef4444);
    opacity: 0.8;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-100);
}

/* Status Badge */
.project-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 100px;
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.status-dot.status-progress {
    background: #f59e0b;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.status-progress::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #f59e0b;
    opacity: 0;
    animation: statusRing 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes statusRing {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(2.2); }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b45309;
}

/* Project Icon */
.project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-50);
    color: var(--primary-600);
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.project-card:hover .project-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05) rotate(-3deg);
}

/* Project Info */
.project-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Tech Tags */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.tech-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--primary-100);
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
}

.project-card:hover .tech-tag {
    background: var(--primary-100);
}

/* Progress Bar */
.project-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: progressShimmer 2s ease-in-out infinite;
}

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

.progress-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* === TEAM SECTION === */
.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(59, 130, 246, 0.85) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
}

.team-card:hover .card-overlay {
    opacity: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    color: var(--primary-600);
    transition: var(--transition-spring);
    transform: translateY(20px);
    box-shadow: var(--shadow-md);
}

.team-card:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-link:hover {
    background: var(--primary-600);
    color: white;
}

.card-info {
    padding: 24px 24px 28px;
    text-align: center;
}

.card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.card-role {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-500);
    display: block;
    margin-bottom: 10px;
}

.card-slug {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-400);
    padding: 5px 14px;
    background: var(--gray-50);
    border-radius: 100px;
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 0.02em;
}

/* === MENTOR SECTION === */
.mentor {
    background: white;
}

.mentor-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.mentor-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

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

.mentor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.mentor-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary-300),
        var(--accent-400),
        #a78bfa,
        var(--primary-300)
    );
    opacity: 0.25;
    z-index: -1;
    animation: mentorGlow 6s linear infinite;
    filter: blur(12px);
}

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

.mentor-info {
    flex: 1;
}

.mentor-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: white;
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.mentor-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.mentor-description {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.mentor-quote {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: white;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary-400);
}

.mentor-quote svg {
    flex-shrink: 0;
    color: var(--primary-400);
    margin-top: 2px;
}

.mentor-quote p {
    font-size: 0.92rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta {
    background: var(--gray-50);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 60px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-built {
    color: rgba(255, 255, 255, 0.3);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .logo-showcase {
        width: 280px;
        height: 280px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .orbit-1 { width: 220px; height: 220px; }
    .orbit-2 { width: 260px; height: 260px; }
    .orbit-3 { width: 280px; height: 280px; }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mentor-card {
        flex-direction: column;
        text-align: center;
        padding: 36px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        transition: var(--transition-smooth);
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 110px 16px 50px;
        gap: 32px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .logo-showcase {
        width: 220px;
        height: 220px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .orbit-1 { width: 170px; height: 170px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 220px; height: 220px; }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.05em;
    }

    .stat-divider {
        height: 30px;
    }

    .title-highlight {
        font-size: clamp(2.5rem, 14vw, 3.5rem);
    }

    .title-line {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 0.04em;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .project-card {
        padding: 24px 20px;
    }

    .projects-grid {
        max-width: 100%;
    }

    .mentor-card {
        padding: 28px 20px;
        gap: 24px;
    }

    .mentor-image {
        width: 160px;
        height: 160px;
    }

    .mentor-name {
        font-size: 1.4rem;
    }

    .mentor-description {
        font-size: 0.9rem;
    }

    .mentor-quote {
        padding: 12px 16px;
    }

    .mentor-quote p {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        padding: 100px 14px 40px;
        gap: 28px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 12px;
        width: 100%;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .logo-showcase {
        width: 180px;
        height: 180px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .orbit-1 { width: 140px; height: 140px; }
    .orbit-2 { width: 165px; height: 165px; }
    .orbit-3 { width: 180px; height: 180px; }

    .about-card {
        padding: 24px 18px;
    }

    .about-icon {
        width: 52px;
        height: 52px;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .about-card p {
        font-size: 0.85rem;
    }

    .team-grid {
        max-width: 100%;
    }

    .card-info {
        padding: 18px 16px 22px;
    }

    .card-name {
        font-size: 1.05rem;
    }

    .card-slug {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    .project-card {
        padding: 20px 16px;
    }

    .project-name {
        font-size: 1.05rem;
    }

    .project-description {
        font-size: 0.85rem;
    }

    .mentor-card {
        padding: 24px 16px;
    }

    .mentor-image {
        width: 130px;
        height: 130px;
    }

    .mentor-name {
        font-size: 1.25rem;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-logo {
        width: 36px;
        height: 36px;
    }

    .footer-name {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 90px 12px 36px;
    }

    .title-highlight {
        font-size: clamp(2rem, 16vw, 2.8rem);
    }

    .hero-tagline {
        font-size: 0.82rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 12px;
    }
}
