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

:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-accent-magenta: #c026d3;
    --color-accent-violet: #7c3aed;
    --color-accent-pink: #ec4899;
    --color-accent-blue: #3b82f6;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   BACKGROUND SMOKE EFFECT
   ============================================ */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
}

.smoke-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: float 20s ease-in-out infinite;
}

.smoke-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-magenta) 0%, var(--color-accent-violet) 50%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.smoke-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-pink) 0%, var(--color-accent-magenta) 50%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.smoke-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-violet) 0%, var(--color-accent-blue) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    animation-duration: 30s;
    opacity: 0.5;
}

.smoke-blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-accent-pink) 0%, transparent 60%);
    top: 30%;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 22s;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-accent-pink);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: -0.5rem;
}

.nav-logo-img {
    height: 48px;
    width: 160px;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 40px;
    width: 140px;
    object-fit: contain;
    display: block;
}

.nav-logo-img.logo-light,
.footer-logo-img.logo-light {
    display: none;
}

[data-theme="light"] .nav-logo-img.logo-dark,
[data-theme="light"] .footer-logo-img.logo-dark {
    display: none;
}

[data-theme="light"] .nav-logo-img.logo-light,
[data-theme="light"] .footer-logo-img.logo-light {
    display: block;
}

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



.nav-links a {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}

.nav-links button.nav-cta {
    padding: 0 1.75rem;
    height: 44px;
    line-height: 1;
    border: none;
}

.nav-links button.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.75rem;
    height: 44px;
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, var(--color-accent-magenta) 50%, var(--color-accent-violet) 100%);
    background-size: 200% 200%;
    border-radius: 50px;
    border: none;
    color: #fff !important;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(192, 38, 211, 0.35);
    transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
    animation: nav-cta-gradient 4s ease infinite;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 38, 211, 0.45);
}

@keyframes nav-cta-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

[data-theme="light"] .nav-toggle {
    color: #0f0f12;
}

/* ============================================
   MAIN LAYOUT & SECTIONS
   ============================================ */
.main-container {
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}

.hero {
    overflow-x: hidden;
}

.section {
    position: relative;
    padding: 7rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
}

.logo {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 0 0 60px rgba(192, 38, 211, 0.3),
                 0 0 120px rgba(124, 58, 237, 0.2);
    animation: logo-glow 4s ease-in-out infinite alternate;
}

.logo-x {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, var(--color-accent-magenta) 50%, var(--color-accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--color-accent-pink);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto calc(2.5rem - 10px);
    line-height: 1.7;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background: var(--color-accent-pink);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-pink) 0%, var(--color-accent-magenta) 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(192, 38, 211, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(192, 38, 211, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--color-accent-pink);
    color: var(--color-accent-pink);
}

/* ============================================
   CONCEPT / INFO CARDS
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    perspective: 1000px;
}

@media (max-width: 991px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.info-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2.25rem;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    overflow: hidden;
    cursor: default;
}

/* Animated gradient border */
.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-pink), var(--color-accent-magenta), var(--color-accent-violet), var(--color-accent-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: opacity 0.4s;
    pointer-events: none;
}

/* Subtle inner glow on hover */
.info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(236, 72, 153, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(192, 38, 211, 0.18), 0 8px 20px rgba(0,0,0,0.4);
}

.info-card:hover::before {
    opacity: 0.7;
}

.info-card:hover::after {
    opacity: 1;
}

.info-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(124, 58, 237, 0.15));
    color: var(--color-accent-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
    transform: translateZ(20px);
    transition: transform 0.35s, box-shadow 0.35s;
}

.info-icon svg {
    width: 26px;
    height: 26px;
}

.info-card:hover .info-icon {
    transform: translateZ(30px) scale(1.08);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.35);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    transform: translateZ(16px);
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    transform: translateZ(12px);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-card {
        padding: 1.75rem;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how-it-works {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step {
    position: relative;
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-violet), var(--color-accent-blue), var(--color-accent-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: opacity 0.4s;
    pointer-events: none;
}

.step::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(124, 58, 237, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.step:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.18), 0 8px 20px rgba(0,0,0,0.4);
}

.step:hover::before {
    opacity: 0.7;
}

.step:hover::after {
    opacity: 1;
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));
    color: #a78bfa;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
    transform: translateZ(20px);
    transition: transform 0.35s, box-shadow 0.35s;
}

.step:hover .step-icon {
    transform: translateZ(30px) scale(1.08);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.35);
}

.step-icon svg {
    width: 26px;
    height: 26px;
}

.step h3 {
    font-size: 1.0625rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    transform: translateZ(16px);
}

.step p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    transform: translateZ(12px);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: hidden;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-accent-magenta), var(--color-accent-pink), var(--color-accent-violet));
    transform: translateX(-50%);
    opacity: 0.6;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.3);
}

.timeline.active .timeline-line {
    height: 100%;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 3rem;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    transform: translateX(-60px);
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    transform: translateX(60px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    top: 2.25rem;
    width: 18px;
    height: 18px;
    background: var(--color-accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-accent-pink), 0 0 50px var(--color-accent-magenta);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.visible .timeline-dot {
    transform: scale(1);
}

.timeline-item.visible .timeline-dot.pulse {
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--color-accent-pink), 0 0 40px var(--color-accent-magenta); }
    50% { box-shadow: 0 0 35px var(--color-accent-pink), 0 0 70px var(--color-accent-magenta); }
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-content {
    position: relative;
    padding: 1.75rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    overflow: hidden;
}

.timeline-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-magenta), var(--color-accent-pink), var(--color-accent-violet), var(--color-accent-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.2;
    transition: opacity 0.4s;
    pointer-events: none;
}

.timeline-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(192, 38, 211, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(192, 38, 211, 0.18), 0 8px 20px rgba(0,0,0,0.4);
}

.timeline-content:hover::before {
    opacity: 0.6;
}

.timeline-content:hover::after {
    opacity: 1;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(192, 38, 211, 0.15));
    color: var(--color-accent-pink);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.15);
    transform: translateZ(20px);
    transition: transform 0.35s, box-shadow 0.35s;
}

.timeline-icon svg {
    width: 22px;
    height: 22px;
}

.timeline-content:hover .timeline-icon {
    transform: translateZ(30px) scale(1.08);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.35);
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.timeline-content span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ============================================
   HERO VIDEO BACKGROUND
   ============================================ */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -35%);
    object-fit: cover;
    opacity: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

.hero > *:not(.hero-video-bg):not(.scroll-indicator) {
    position: relative;
    z-index: 2;
}

.scroll-indicator {
    z-index: 2;
}

.hero-content {
    margin-top: 58vh;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 0;
    }
}

/* Hero video behaves identically in both light and dark mode */

/* ============================================
   TEAM / FOUNDER
   ============================================ */
#team {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.founder-text {
    text-align: left;
}

.founder-text p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.85;
}

.team-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-pink), var(--color-accent-violet), var(--color-accent-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: opacity 0.4s;
    pointer-events: none;
}

.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(236, 72, 153, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(192, 38, 211, 0.18), 0 8px 20px rgba(0,0,0,0.4);
}

.team-card:hover::before {
    opacity: 0.7;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-accent-violet) 0%, var(--color-accent-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transform: translateZ(20px);
    transition: transform 0.35s, box-shadow 0.35s;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover .team-avatar {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    transform: translateZ(16px);
}

.team-role {
    font-size: 0.8125rem;
    color: var(--color-accent-pink);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    transform: translateZ(14px);
}

.team-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    transform: translateZ(12px);
}

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

    .founder-text {
        text-align: center;
    }

    .team-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
}

.cta-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 24px;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    overflow: hidden;
    text-align: center;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-magenta), var(--color-accent-pink), var(--color-accent-violet), var(--color-accent-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s;
    pointer-events: none;
}

.cta-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(192, 38, 211, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.cta-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(192, 38, 211, 0.2), 0 10px 25px rgba(0,0,0,0.4);
}

.cta-box:hover::before {
    opacity: 0.7;
}

.cta-box:hover::after {
    opacity: 1;
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(192, 38, 211, 0.15), rgba(124, 58, 237, 0.15));
    color: var(--color-accent-pink);
    box-shadow: 0 0 25px rgba(192, 38, 211, 0.2);
    transform: translateZ(20px);
    transition: transform 0.35s, box-shadow 0.35s;
}

.cta-box:hover .cta-icon {
    transform: translateZ(35px) scale(1.08);
    box-shadow: 0 0 40px rgba(192, 38, 211, 0.4);
}

.cta-icon svg {
    width: 30px;
    height: 30px;
}

.cta-box h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    margin-bottom: 1rem;
    transform: translateZ(16px);
}

.cta-box p {
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
    transform: translateZ(12px);
}

.cta-box .btn {
    transform: translateZ(18px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 20;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.footer-link:hover {
    color: var(--color-text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-muted);
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-accent-pink);
    color: var(--color-text);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.5rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.footer-credits-logo {
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-credits-logo:hover {
    opacity: 1;
}

.footer-credits-logo img {
    height: 40px;
    width: 80px;
    object-fit: contain;
    display: block;
}

.footer-credits-logo .logo-light {
    display: none;
}

[data-theme="light"] .footer-credits-logo .logo-dark {
    display: none;
}

[data-theme="light"] .footer-credits-logo .logo-light {
    display: block;
}

[data-theme="light"] .footer-credits {
    color: #0f0f12;
}

/* ============================================
   MODALS / OVERLAYS
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--color-text-muted);
    font-size: 1.5rem;
    line-height: 1;
}

.modal-close:hover {
    border-color: var(--color-accent-pink);
    color: var(--color-accent-pink);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    padding-right: 3rem;
}

.modal-body {
    color: var(--color-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.modal-body h3:first-child { margin-top: 0; }

.modal-body p { margin-bottom: 1rem; }

.modal-body strong {
    color: var(--color-text);
    font-weight: 500;
}

.modal-body a {
    color: var(--color-accent-pink);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.modal-body a:hover { text-decoration: underline; }

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li { margin-bottom: 0.5rem; }

.legal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Forms inside modal */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-accent-pink);
    flex-shrink: 0;
    cursor: pointer;
}

.privacy-check label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.text-link {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    color: var(--color-accent-pink);
    font-size: inherit;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-pink);
}

.form-group input.valid {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

.form-group input.invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.input-hint {
    display: block;
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    min-height: 1.25rem;
    transition: color 0.3s;
}

.input-hint.valid {
    color: #86efac;
}

.input-hint.invalid {
    color: #fca5a5;
}

.form-message {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 5rem 2rem 2rem;
        background: rgba(0,0,0,0.98);
        backdrop-filter: blur(12px);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    }

    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    [data-theme="light"] .nav-links li {
        border-bottom-color: rgba(0,0,0,0.05);
    }

    .nav-links li:last-child,
    .nav-links li:has(button.nav-cta) {
        border-bottom: none;
    }

    .nav-links a,
    .nav-links button.nav-cta {
        display: flex;
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
        justify-content: center;
        text-align: center;
    }

    .nav-links button.nav-cta {
        margin: 1.25rem auto 0.75rem;
        padding: 0 2rem;
        height: 50px;
        width: auto;
        min-width: 200px;
    }

    .nav-links .toggle-group {
        width: 100%;
        margin: 0.5rem 0 0;
        padding: 0;
        justify-content: center;
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
        z-index: 60;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .logo {
        letter-spacing: 0.25em;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .timeline-line {
        left: 24px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 56px;
        padding-right: 0;
        transform: translateX(-40px);
    }

    .timeline-item.visible {
        transform: translateX(0);
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 16px;
        right: auto;
    }

    .modal-content {
        padding: 1.5rem;
        max-height: 85vh;
    }

    .modal-overlay {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .smoke-blob {
        filter: blur(60px);
    }

    .smoke-blob-1 { width: 300px; height: 300px; right: -60px; top: -60px; }
    .smoke-blob-2 { width: 260px; height: 260px; left: -60px; bottom: -60px; }
    .smoke-blob-3 { width: 220px; height: 220px; }
    .smoke-blob-4 { width: 180px; height: 180px; right: 10%; }

    /* Mobile: Video as embedded player instead of full background */
    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-video-bg {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 0;
        margin: 0 0 1.5rem;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.35);
        z-index: 2;
    }

    .hero-video-bg video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
        object-fit: cover;
        border-radius: 0;
    }

    .hero-content {
        margin-top: 0;
    }

    [data-theme="light"] .hero-video-bg {
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
}

@media (max-width: 480px) {
    .logo {
        letter-spacing: 0.15em;
        font-size: clamp(2.25rem, 10vw, 5rem);
    }

    .footer-nav {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.6875rem;
    }

    .btn {
        width: 100%;
    }

    .cta-box {
        padding: 2rem 1.25rem;
    }

    .modal-overlay {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.25rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent-pink);
    outline-offset: 2px;
}

.nav-links a:focus-visible,
.nav-links button:focus-visible {
    outline-offset: 4px;
}

.modal-close:focus-visible {
    outline-offset: 2px;
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
[data-theme="light"] :root {
    --color-bg: #f8f9fb;
    --color-text: #0f0f12;
    --color-text-muted: rgba(15, 15, 18, 0.55);
}

[data-theme="light"] body {
    background-color: #f8f9fb;
    color: #0f0f12;
}

[data-theme="light"] .background-container {
    background: radial-gradient(ellipse at center, #eef2f6 0%, #f8f9fb 100%);
}

[data-theme="light"] .smoke-blob {
    opacity: 0.35;
    mix-blend-mode: multiply;
    filter: blur(100px);
}

[data-theme="light"] .particle {
    opacity: 0.65;
}

[data-theme="light"] .navbar {
    background: #f8f9fb;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    left: 0;
    right: 0;
    top: 0;
    padding: 1rem 2rem;
    border-radius: 0;
    box-shadow: none;
}

[data-theme="light"] .nav-logo {
    color: #0f0f12;
}

[data-theme="light"] .nav-links a {
    color: rgba(15, 15, 18, 0.65);
}

[data-theme="light"] .nav-links a:hover {
    color: #0f0f12;
}

[data-theme="light"] .logo {
    color: #0f0f12;
    text-shadow: 0 0 40px rgba(192, 38, 211, 0.2), 0 0 80px rgba(124, 58, 237, 0.15);
}

@keyframes logo-glow {
    from { text-shadow: 0 0 40px rgba(192, 38, 211, 0.2), 0 0 80px rgba(124, 58, 237, 0.1); }
    to { text-shadow: 0 0 60px rgba(192, 38, 211, 0.4), 0 0 120px rgba(124, 58, 237, 0.3), 0 0 180px rgba(236, 72, 153, 0.2); }
}

@keyframes logo-glow-light {
    from { text-shadow: 0 0 30px rgba(192, 38, 211, 0.15), 0 0 60px rgba(124, 58, 237, 0.1); }
    to { text-shadow: 0 0 50px rgba(192, 38, 211, 0.25), 0 0 100px rgba(124, 58, 237, 0.2), 0 0 140px rgba(236, 72, 153, 0.15); }
}

[data-theme="light"] .logo {
    animation-name: logo-glow-light;
}

[data-theme="light"] .hero-tagline {
    color: #c026d3;
}

[data-theme="light"] .hero-subtitle {
    color: rgba(15, 15, 18, 0.65);
}

[data-theme="light"] .section-title {
    color: #0f0f12;
}

[data-theme="light"] .section-subtitle {
    color: rgba(15, 15, 18, 0.6);
}

[data-theme="light"] .info-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.05);
}

[data-theme="light"] .info-card::before {
    opacity: 0.15;
}

[data-theme="light"] .info-card:hover::before {
    opacity: 0.55;
}

[data-theme="light"] .info-card::after {
    background: radial-gradient(120% 120% at 50% 0%, rgba(192, 38, 211, 0.08), transparent 60%);
}

[data-theme="light"] .info-icon {
    background: linear-gradient(135deg, rgba(192, 38, 211, 0.12), rgba(124, 58, 237, 0.12));
    color: #a21caf;
}

[data-theme="light"] .info-card h3,
[data-theme="light"] .step h3,
[data-theme="light"] .timeline-content h4,
[data-theme="light"] .team-card h3,
[data-theme="light"] .cta-box h2 {
    color: #0f0f12;
}

[data-theme="light"] .info-card p,
[data-theme="light"] .step p,
[data-theme="light"] .timeline-content p,
[data-theme="light"] .team-card p,
[data-theme="light"] .cta-box p,
[data-theme="light"] .founder-text p {
    color: rgba(15, 15, 18, 0.75);
}

[data-theme="light"] .step {
    background: rgba(255,255,255,0.6);
    border-color: rgba(0,0,0,0.05);
}

[data-theme="light"] .timeline-line {
    opacity: 0.35;
}

[data-theme="light"] .timeline-content {
    background: rgba(255,255,255,0.55);
}

[data-theme="light"] .timeline-content::before {
    opacity: 0.12;
}

[data-theme="light"] .timeline-item:hover .timeline-content::before {
    opacity: 0.5;
}

[data-theme="light"] .timeline-content::after {
    background: radial-gradient(120% 120% at 50% 0%, rgba(192, 38, 211, 0.08), transparent 60%);
}

[data-theme="light"] .timeline-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(192, 38, 211, 0.12));
    color: #c026d3;
}

[data-theme="light"] .team-card {
    background: rgba(255,255,255,0.65);
    border-color: rgba(0,0,0,0.05);
}

[data-theme="light"] .team-role {
    color: #c026d3;
}

[data-theme="light"] .cta-box {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .footer {
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 100%);
    border-top-color: rgba(0,0,0,0.06);
}



[data-theme="light"] .footer-link {
    color: rgba(15, 15, 18, 0.55);
}

[data-theme="light"] .footer-link:hover {
    color: #0f0f12;
}

[data-theme="light"] .footer-copy {
    color: rgba(15, 15, 18, 0.4);
}

[data-theme="light"] .modal-overlay {
    background: rgba(240, 242, 245, 0.88);
}

[data-theme="light"] .modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f8 100%);
    border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .modal-title {
    color: #0f0f12;
}

[data-theme="light"] .modal-body {
    color: rgba(15, 15, 18, 0.65);
}

[data-theme="light"] .modal-body h3,
[data-theme="light"] .modal-body strong {
    color: #0f0f12;
}

[data-theme="light"] .modal-close {
    border-color: rgba(0,0,0,0.15);
    color: rgba(15, 15, 18, 0.55);
}

[data-theme="light"] .modal-close:hover {
    border-color: #c026d3;
    color: #c026d3;
}

[data-theme="light"] .legal-section {
    border-bottom-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .form-group input[type="text"],
[data-theme="light"] .form-group input[type="email"] {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.1);
    color: #0f0f12;
}

[data-theme="light"] .form-group input:focus {
    border-color: #c026d3;
}

[data-theme="light"] .form-group input.valid {
    border-color: #16a34a;
    background: rgba(34, 197, 94, 0.06);
}

[data-theme="light"] .form-group input.invalid {
    border-color: #dc2626;
    background: rgba(239, 68, 68, 0.06);
}

[data-theme="light"] .input-hint.valid {
    color: #16a34a;
}

[data-theme="light"] .input-hint.invalid {
    color: #dc2626;
}

[data-theme="light"] .form-group label {
    color: rgba(15, 15, 18, 0.55);
}

[data-theme="light"] .privacy-check label {
    color: rgba(15, 15, 18, 0.7);
}

[data-theme="light"] .text-link {
    color: #a21caf;
}

[data-theme="light"] .text-link:hover {
    color: #0f0f12;
}

[data-theme="light"] .scroll-mouse {
    border-color: rgba(15, 15, 18, 0.4);
}

[data-theme="light"] .social-links a {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.1);
    color: rgba(15, 15, 18, 0.6);
}

[data-theme="light"] .social-links a:hover {
    background: rgba(0,0,0,0.06);
    border-color: #c026d3;
    color: #0f0f12;
}

[data-theme="light"] .nav-links {
    background: rgba(248, 249, 251, 0.98);
}

[data-theme="light"] .btn-outline {
    border-color: rgba(0,0,0,0.15);
    color: #0f0f12;
}

[data-theme="light"] .btn-outline:hover {
    border-color: #c026d3;
    color: #c026d3;
}

[data-theme="light"] .step-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(59, 130, 246, 0.12));
    color: #7c3aed;
}

[data-theme="light"] .cta-icon {
    background: linear-gradient(135deg, rgba(192, 38, 211, 0.12), rgba(124, 58, 237, 0.12));
    color: #c026d3;
}

/* Toggle buttons */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(236, 72, 153, 0.35);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    padding: 0;
}

.toggle-btn:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%);
    border-color: rgba(236, 72, 153, 0.6);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.25);
}

[data-theme="light"] .toggle-btn {
    border-color: rgba(192, 38, 211, 0.35);
    background: linear-gradient(135deg, rgba(192, 38, 211, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: #0f0f12;
}

[data-theme="light"] .toggle-btn:hover {
    background: linear-gradient(135deg, rgba(192, 38, 211, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(192, 38, 211, 0.7);
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.2);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: #ec4899;
}

[data-theme="light"] .theme-toggle svg {
    color: #c026d3;
}

.lang-toggle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: auto;
    padding: 0 0.75rem;
    border-radius: 50px;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
.modal-content::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle,
    .smoke-blob {
        animation: none !important;
        opacity: 0.3;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .background-container,
    .particles,
    .scroll-indicator,
    .navbar,
    .footer,
    .modal-overlay,
    .nav-toggle,
    .toggle-group,
    video,
    .hero-video-bg,
    .social-links,
    .footer-credits {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
        color: #000 !important;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        word-break: break-all;
    }

    section {
        break-inside: avoid;
        margin-bottom: 1.5rem;
    }

    h1, h2, h3, h4 {
        break-after: avoid;
        color: #000 !important;
    }

    .info-card,
    .step,
    .timeline-content,
    .team-card,
    .cta-box {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        background: #fff !important;
        color: #000 !important;
    }

    .timeline-line,
    .timeline-dot {
        background: #000 !important;
    }
}

/* ============================================
   JOBS & CAREERS
   ============================================ */

.jobs-section {
    padding-top: 10rem;
    min-height: 60vh;
}

.jobs-empty {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 3rem;
}

.jobs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 3rem;
}

.job-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1 1 320px;
    max-width: 380px;
}

.job-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-pink), var(--color-accent-magenta), var(--color-accent-violet), var(--color-accent-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: opacity 0.4s;
    pointer-events: none;
}

.job-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(120% 120% at 50% 0%, rgba(236, 72, 153, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.job-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(192, 38, 211, 0.18), 0 8px 20px rgba(0,0,0,0.4);
}

.job-card:hover::before { opacity: 0.7; }
.job-card:hover::after { opacity: 1; }

.job-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.job-type-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(236, 72, 153, 0.1);
    color: #f9a8d4;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.job-card-title {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.job-card-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.job-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.job-card-btn {
    align-self: flex-start;
}

/* Job Detail */
.job-detail-section {
    padding-top: 10rem;
}

.job-detail-header {
    margin-bottom: 3rem;
}

.job-back-link {
    display: inline-block;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.job-back-link:hover {
    color: var(--color-accent-pink);
}

.job-detail-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.job-detail-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

.job-detail-content {
    max-width: 800px;
}

.job-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.job-detail-block h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-accent-pink);
}

.job-detail-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.job-detail-list {
    list-style: none;
    padding: 0;
}

.job-detail-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.job-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-pink), var(--color-accent-magenta));
}

/* Application Form */
.application-form-wrapper {
    margin-top: 4rem;
    max-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.application-form-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg, var(--color-accent-pink), var(--color-accent-magenta), var(--color-accent-violet), var(--color-accent-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    pointer-events: none;
}

.application-form-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.application-form .form-group {
    margin-bottom: 1.25rem;
}

.application-form label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="date"],
.application-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.application-form input:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--color-accent-pink);
}

.application-form input[type="file"] {
    width: 100%;
    padding: 0.6rem 0;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.application-form input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--color-text);
    cursor: pointer;
    font-family: inherit;
    margin-right: 0.75rem;
    transition: all 0.3s;
}

.application-form input[type="file"]::file-selector-button:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-accent-pink);
}

.application-form .select-wrap {
    position: relative;
}

.application-form .select-wrap::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.625rem;
    pointer-events: none;
}

.application-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Radio Pills (custom select replacement) */
.radio-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.radio-pill {
    position: relative;
}

.radio-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-pill label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.radio-pill input[type="radio"]:checked + label {
    background: rgba(236, 72, 153, 0.15);
    border-color: var(--color-accent-pink);
    color: #f9a8d4;
}

.radio-pill input[type="radio"]:focus + label {
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3);
}

.radio-pill label:hover {
    border-color: rgba(236, 72, 153, 0.4);
    color: var(--color-text);
}

.application-form .input-hint {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    position: relative;
}

.alert-success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

@media (max-width: 640px) {
    .jobs-section { padding-top: 8rem; }
    .jobs-grid { gap: 1.25rem; }
    .job-card { flex: 1 1 100%; max-width: 100%; }
    .job-detail-section { padding-top: 8rem; }
    .application-form-wrapper { padding: 1.75rem; }
    .application-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Sticky Footer für Job-Seiten */
.page-jobs,
.page-job {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-jobs .main-container,
.page-job .main-container {
    flex: 1 0 auto;
}
