* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    line-height: 1.6;
    color: #0a0a0a;
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.splash-logo {
    width: 400px;
    height: auto;
    max-width: 90vw;
    animation: rotateDiagonal 2s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes rotateDiagonal {
    0% {
        transform: rotate(-15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(-15deg) scale(1);
    }
}

/* Interactive Background Canvas */
#interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0a0a0a;
}

.nav-cta {
    background: #ffffff;
    color: #0a0a0a;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s, transform 0.2s;
    border: 1px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    background: #f5f5f5;
    border-color: #0a0a0a;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #0a0a0a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem 4%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu .nav-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section with Animated Background */
.hero {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.02) 0%, rgba(10, 10, 10, 0.05) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 10, 10, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 10, 10, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(10, 10, 10, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #0a0a0a;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a0a0a;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6a6a6a;
}


/* Typing Animation */
.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #0066cc;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #0066cc;
    }
}

/* Sections */
.section {
    padding: 6rem 4%;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
    color: #0a0a0a;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features with Hover Animations */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 2.5rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    border-color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    transition: color 0.3s;
}

.feature:hover h3 {
    color: #0a0a0a;
}

.feature p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
}

/* Use Cases */
.use-cases {
    background: #0a0a0a;
    color: white;
}

.use-cases .section-title {
    color: white;
}

.use-cases .section-subtitle {
    color: #a0a0a0;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.use-case.visible {
    opacity: 1;
    transform: translateY(0);
}

.use-case:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.use-case-logo {
    height: 30px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.use-case p {
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Careers Section - Clean & Simple */

.careers {
    background: #ffffff;
    padding: 6rem 4%;
}

.careers-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.careers .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.careers-tagline {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hiring-status {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.status-badge,
.location-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge {
    background: #0a0a0a;
    color: #ffffff;
}

.location-badge {
    background: #f5f5f5;
    color: #0a0a0a;
    border: 1px solid #e5e5e5;
}

.office-address {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0;
}

.open-positions {
    max-width: 1100px;
    margin: 0 auto 3rem;
    text-align: center;
}

.open-positions h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.positions-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.no-match-section {
    max-width: 700px;
    margin: 4rem auto 2rem;
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-match-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.no-match-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.no-match-section strong {
    color: #0a0a0a;
}

.diversity-statement {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    padding-top: 3rem;
}

.diversity-statement p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.careers-callout {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.careers-callout p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.careers-callout strong {
    color: #0a0a0a;
}

.career-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.career-pill {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
}

/* Job Cards Grid */

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Job Card */

.job-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: #ccc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* Featured Card */

.job-card.featured {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.job-card.featured .job-header h3 {
    color: #fff;
}

.job-card.featured .job-meta {
    color: rgba(255,255,255,0.6);
}

.job-card.featured .job-summary {
    color: rgba(255,255,255,0.8);
}

.job-card.featured .job-tag {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.job-card.featured .job-apply {
    color: #fff;
}

/* Job Header */

.job-header {
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.job-meta {
    font-size: 0.85rem;
    color: #888;
}

/* Job Tags */

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
}

.job-tag {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #666;
}

/* Job Summary */

.job-summary {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Hide detailed sections by default for cleaner look */

.job-section {
    display: none;
}

/* Apply Link */

.job-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    width: 100%;
    margin-top: auto;
}

.job-card.featured .job-apply {
    border-top-color: rgba(255,255,255,0.15);
}

.job-apply::after {
    content: '→';
    transition: transform 0.2s;
}

.job-apply:hover::after {
    transform: translateX(4px);
}

/* Job Card Clickable */
.job-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.job-apply {
    cursor: pointer;
    pointer-events: auto;
}

/* Job Description Modal */
.job-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.job-modal-content {
    background: #0a0a0a;
    color: #ffffff;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.job-modal.active .job-modal-content {
    transform: scale(1);
}

.job-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    z-index: 1;
}

.job-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.job-modal-body {
    padding-top: 1rem;
}

.job-modal-body h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.job-modal-body .job-modal-meta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.job-modal-body .job-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.job-modal-body .job-modal-tag {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.job-modal-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.job-modal-body h3:first-of-type {
    margin-top: 0;
}

.job-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.job-modal-body ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.job-modal-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

.job-modal-body p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.job-modal-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #0a0a0a;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    transition: all 0.2s ease;
    border: 1px solid #ffffff;
}

.job-modal-apply:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive */

@media (max-width: 768px) {
    .careers {
        padding: 4rem 5%;
    }
    
    .careers .section-title {
        font-size: 2rem;
    }

    .careers-tagline {
        font-size: 1.2rem;
    }

    .hiring-status {
        flex-direction: column;
        align-items: center;
    }

    .open-positions h3 {
        font-size: 1.5rem;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .job-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .job-modal-body h3 {
        font-size: 1.1rem;
    }
}

/* Testimonial */
.testimonial-section {
    padding: 6rem 4%;
    background: #fafafa;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #0a0a0a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-author {
    color: #6a6a6a;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 4%;
    background: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
    color: #0a0a0a;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.cta-section h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #0a0a0a;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}

.cta-button:hover {
    background: #f5f5f5;
    border-color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #a0a0a0;
    padding: 3rem 4%;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .feature {
        padding: 1.5rem;
    }
}

