/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-exo: 'Exo 2', ui-sans-serif, system-ui, sans-serif;
    --font-space-grotesk: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    
    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --purple-300: #c4b5fd;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --purple-900: #581c87;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-900: #831843;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    
    /* Gradients */
    --gradient-purple-pink: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    --gradient-purple-pink-opacity: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

body {
    font-family: var(--font-exo);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 1.5rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 1rem;
    }
}

/* Animated Background */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo .logo-img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-family: var(--font-space-grotesk);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    padding: 0.5rem 1rem;
    background: var(--gradient-purple-pink);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-family: var(--font-space-grotesk);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 6rem 1rem 4rem;
}

.hero-content {
    max-width: 1152px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-300);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(168, 139, 250, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-space-grotesk);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-purple-pink);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--gray-300);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.1);
}

.stat-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-space-grotesk);
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-family: var(--font-space-grotesk);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-purple-pink);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--purple-400);
    border: 2px solid var(--purple-400);
}

.btn-secondary:hover {
    background: var(--purple-400);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-space-grotesk);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--gray-300);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
}

.text-purple {
    color: var(--purple-400);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.5);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-purple-pink);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.card-title {
    font-family: var(--font-space-grotesk);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.card-description {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.bullet {
    width: 8px;
    height: 8px;
    background: var(--purple-400);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Section Divider */
.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.5), transparent);
    transform: translateX(-50%);
}

/* Who We Work With */
.work-with-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.work-with-item {
    text-align: center;
    padding: 2rem;
}

.work-with-icon {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-purple-pink);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.work-with-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.work-with-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.work-with-item h3 {
    font-family: var(--font-space-grotesk);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.work-with-item p {
    color: var(--gray-300);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.testimonials-headline {
    font-family: var(--font-space-grotesk);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
}

.stat-group {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-description {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.avatars-group {
    display: flex;
    margin-bottom: 0.75rem;
    gap: 0.25rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.avatar.purple { background: var(--purple-500); }
.avatar.pink { background: var(--pink-500); }
.avatar.blue { background: var(--blue-500); }
.avatar.gradient { background: var(--gradient-purple-pink); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
}

.testimonial-quote {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-purple-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.author-name {
    font-family: var(--font-space-grotesk);
    font-weight: 600;
    color: var(--white);
}

.author-title {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.author-location {
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* Careers */
.careers-container {
    max-width: 64rem;
    margin: 0 auto;
}

.career-card {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(131, 24, 67, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    transition: all 0.3s ease;
}

.career-card:hover::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.career-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 640px) {
    .career-header {
        flex-direction: column;
        gap: 1rem;
    }
}

.career-title {
    font-family: var(--font-space-grotesk);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: 1px solid;
}

.tag.purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-300);
    border-color: rgba(168, 139, 250, 0.3);
}

.tag.pink {
    background: rgba(236, 72, 153, 0.2);
    color: var(--pink-300);
    border-color: rgba(244, 114, 182, 0.3);
}

.tag.blue {
    background: rgba(59, 130, 246, 0.2);
    color: var(--blue-300);
    border-color: rgba(147, 197, 253, 0.3);
}

.career-apply {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    transition: color 0.3s ease;
    margin-left: auto;
}

.career-card:hover .career-apply {
    color: var(--white);
}

.career-apply span {
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.apply-icon {
    width: 2rem;
    height: 2rem;
    background: var(--gradient-purple-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.career-card:hover .apply-icon {
    transform: scale(1.1);
}

.career-description {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.career-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 640px) {
    .career-details {
        grid-template-columns: 1fr;
    }
}

.career-section h4 {
    font-family: var(--font-space-grotesk);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.career-section ul {
    list-style: none;
}

.career-section li {
    display: flex;
    align-items: flex-start;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.bullet.purple {
    background: var(--purple-400);
}

.bullet.pink {
    background: var(--pink-400);
}

.careers-footer {
    text-align: center;
    margin-top: 4rem;
}

.careers-footer p {
    color: var(--gray-400);
    max-width: 32rem;
    margin: 0 auto;
}

.careers-footer a {
    color: var(--purple-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.careers-footer a:hover {
    color: var(--purple-300);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.1), rgba(131, 24, 67, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    text-align: center;
    padding: 6rem 1.5rem 4rem;
}

.cta-title {
    font-family: var(--font-space-grotesk);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray-400);
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .footer-links {
        gap: 2rem;
    }
}

.footer-column h4 {
    font-family: var(--font-space-grotesk);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--purple-400);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--purple-300);
}

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

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

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}