/* --- DEĞİŞKENLER & TEMEL AYARLAR --- */
:root {
    --primary: #ffffff;
    --accent: #6c5ce7; /* AI Moru */
    --accent-glow: rgba(108, 92, 231, 0.6);
    --bg: #050505; /* Derin Siyah */
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-gray: #a1a1aa;
    --border-light: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--primary);
    overflow-x: hidden;
}

a { text-decoration: none; color: #fff; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(5, 5, 5, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo img {
    cursor: pointer;
    height: 40px;
    width: auto;
}

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

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-links li a:hover {
    opacity: 1;
    color: #fff;
}

.nav-links li a:hover::after {
    width: 100%;
}

.badge {
    background-color: rgba(108, 92, 231, 0.2);
    color: #a29bfe;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
    font-weight: 700;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    font-size: 16px;
    opacity: 0.7;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* --- HERO SECTION --- */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 auto 25px auto; /* Ortalamak için */
    
    /* Daktilo Ayarları */
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid var(--accent); /* İmleç çizgisi */
    width: 0; /* Başlangıçta görünmez */
    max-width: fit-content; /* İçerik kadar genişlik */
    
    /* Animasyonlar: Yazma ve İmleç yanıp sönmesi */
    animation: 
        typing 2.5s steps(30, end) forwards, 
        blink-cursor 0.75s step-end infinite;
    animation-delay: 0.5s; /* Sayfa yüklendikten yarım saniye sonra başla */
}

.hero-title {
    font-size: 85px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    
    /* Akan Renk (Liquid Gradient) */
    background: linear-gradient(
        90deg, 
        #ffffff 0%, 
        #6c5ce7 25%, 
        #a29bfe 50%, 
        #6c5ce7 75%, 
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Başlangıç Durumu */
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    
    /* Animasyonlar: Renk akışı ve Ortaya çıkış */
    animation: 
        shine 8s linear infinite, 
        blurFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0s, 1.4s; /* Renk hemen başlasın, yazı 2.5s sonra (daktilo bitince) gelsin */
}

.hero-desc {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    font-weight: 300;
    
    opacity: 0;
    transform: translateY(20px);
    animation: simpleFadeUp 1s ease forwards;
    animation-delay: 2.2s; /* Başlık geldikten sonra */
}

/* Fütüristik Buton */
.cta-btn {
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: simpleFadeUp 1s ease forwards;
    animation-delay: 3.2s;
}

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

.cta-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.4);
    background: rgba(108, 92, 231, 0.1);
}

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

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

/* İmleç Yanıp Sönme */
@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

/* Gradient Akış Efekti */
@keyframes shine {
    to { background-position: 200% center; }
}

/* Blur'dan Netleşerek Yukarı Çıkma (Sinematik) */
@keyframes blurFadeUp {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Basit Fade Up */
@keyframes simpleFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MARQUEE (Kayan Şerit) --- */
.marquee-container {
    background: var(--accent);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
    margin: 50px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.5);
    z-index: 5;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0 30px;
    vertical-align: middle;
}

/* --- İÇERİK BÖLÜMLERİ --- */
.section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin-bottom: 20px;
    box-shadow: 0 0 10px var(--accent);
}

.section-title {
    font-size: 50px;
    margin-bottom: 15px;
}

.section-sub {
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 300;
}

/* --- KARTLAR (GRID) --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    backdrop-filter: blur(10px);
}

.card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-15px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--accent-glow);
}

.card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Scroll Reveal */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}

/* --- ISTATISTIKLER --- */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 150px;
    border-top: 1px solid var(--border-light);
    padding-top: 80px;
}

.stat-item {
    text-align: center;
    margin: 20px;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border-light);
    padding: 60px 40px;
    margin-top: 100px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    background: #000;
    position: relative;
    z-index: 10;
}

/* --- MOBİL MENÜ --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    padding: 30px;
    display: none;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.mobile-links li {
    border-bottom: 1px solid #222;
}

.mobile-links li a {
    display: block;
    padding: 20px 0;
    font-size: 22px;
    font-weight: 600;
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 1200px) {
    .nav-links, .social-icons { display: none; }
    .menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .navbar { padding: 20px; }
    .hero-title { font-size: 48px; }
    .hero-desc { font-size: 16px; }
    .grid { grid-template-columns: 1fr; }
    .marquee-container { transform: rotate(0) scale(1); }
    .stats-container { flex-direction: column; gap: 40px; }
    .section { padding: 80px 20px; }
}

/* --- PORTFOLIO GRID STYLES --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

.project-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: 0.4s;
}

.project-card:hover .project-image {
    filter: grayscale(0%);
}

.project-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags span {
    font-size: 12px;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content h3 {
    margin: 20px 0 10px 0;
    font-size: 24px;
}

.project-link {
    margin-top: auto;
    padding-top: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link i {
    margin-left: 5px;
    transition: 0.3s;
}

.project-link:hover i {
    margin-left: 10px;
    color: var(--accent);
}

/* --- MANIFESTO SECTION --- */
.manifesto-section {
    position: relative;
    margin-top: 10vh;
    padding: 150px 20px;
    background: #050505; /* İç kısım siyah kalsın */
    text-align: center;
    border-radius: 20px;
    z-index: 1;
    overflow: hidden; /* Dışarı taşan animasyonu gizler */
}

/* Animasyonlu Border Katmanı */
.manifesto-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(108, 92, 231, 0.3), 
        #6c5ce7, 
        transparent 30%
    );
    animation: rotateBorder 2s linear infinite;
    z-index: -2;
}

/* İç Arka Plan Maskesi (Kenarlığı oluşturur) */
.manifesto-section::after {
    content: "";
    position: absolute;
    inset: 2px; /* Border kalınlığı burada belirlenir (2px) */
    background: #050505; /* Arka plan renginle aynı olmalı */
    border-radius: 18px; /* Dış radius'tan biraz küçük olmalı */
    z-index: -1;
}

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

/* Manifesto içeriğinin okunabilir kalması için */
.manifesto-container {
    position: relative;
    z-index: 10;
}

.manifesto-container {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-container h4 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.manifesto-container h2 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-container p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* --- PROCESS / PIPELINE STYLES --- */
.process-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.step-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    -webkit-text-stroke: 1px var(--accent);
    line-height: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.step-content p {
    color: var(--text-gray);
    max-width: 500px;
}

.process-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-left: 30px; /* Aligns with step number center approximately */
    margin-top: 15px;
    margin-bottom: 15px;
}

/* --- CONTACT FORM STYLES --- */
.contact-section {
    background: radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 40%);
}

.contact-detail {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.contact-detail i {
    color: var(--accent);
}

.contact-form {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group select {
    color: var(--text-gray);
}

.form-group select option {
    background-color: #000;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--accent);
}

/* --- RESPONSIVE EKLEMELER --- */
@media (max-width: 768px) {
    .contact-section .grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .manifesto-container h2 {
        font-size: 28px;
    }
}

/* --- FUSION ENGINE STYLES --- */
.fusion-intro {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
}

.fusion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center; /* Ortadaki kartı dikeyde hizalar */
}

.fusion-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: 0.4s ease;
    text-align: center;
}

/* Ortadaki kartı biraz daha büyük ve belirgin yapalım */
.fusion-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(108, 92, 231, 0.05) 100%);
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.15);
    z-index: 2;
}

.fusion-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.fusion-card:nth-child(2):hover {
    transform: scale(1.05) translateY(-10px);
}

.fusion-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.fusion-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 25px;
    height: 80px;
    width: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.fusion-card:nth-child(2) .fusion-icon {
    color: var(--accent);
    background: rgba(108, 92, 231, 0.2);
}

.fusion-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.role-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 25px;
    min-height: 60px; /* Hizalama için */
}

.role-list {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 10px;
}

.role-list li {
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
}

.role-list li i {
    color: var(--accent);
    margin-right: 10px;
}

.fusion-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.fusion-btn:hover {
    background: #fff;
    color: #000;
}

/* --- OUTCOME SECTION (AŞAĞIDAKİ YATIRIM KUTUSU) --- */
.fusion-outcome {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outcome-arrow {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.outcome-box {
    background: linear-gradient(90deg, #111 0%, rgba(108, 92, 231, 0.2) 50%, #111 100%);
    border: 1px solid var(--accent);
    padding: 30px 60px;
    border-radius: 12px;
    max-width: 600px;
}

.outcome-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.outcome-box i {
    margin-right: 10px;
    color: var(--accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Responsive Fusion */
@media (max-width: 900px) {
    .fusion-grid {
        grid-template-columns: 1fr;
    }
    .fusion-card:nth-child(2) {
        transform: scale(1);
    }
    .fusion-card:nth-child(2):hover {
        transform: translateY(-10px);
    }
}

.talent-network {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    position: relative;
}

.network-title {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.slider-container {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Yanlardan yumuşak geçiş (fade) efekti */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slide-track {
    display: flex;
    width: calc(200px * 14); /* 200px (slide genişliği) x 14 (toplam slide sayısı) */
    animation: scroll 30s linear infinite;
}

.slide {
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.slide img {
    max-width: 100%;
    max-height: 60px; /* Logo yüksekliği */
    opacity: 0.5;
    transition: all 0.3s ease;
    /* Logoları beyaz yapma filtreleri HTML içinde inline olarak verildi, 
       kendi görsellerinizi yüklerken temiz beyaz PNG kullanırsanız filtreye gerek kalmaz. */
}

/* Hover durumunda slider durur ve logo parlar */
.slider-container:hover .slide-track {
    animation-play-state: paused;
}

.slide img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) !important; /* Parlama efekti */
}

/* Sonsuz döngü animasyonu */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); } /* 7 = Orijinal set sayısı */
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .slide {
        width: 150px;
        padding: 0 20px;
    }
    .slide-track {
        width: calc(150px * 14);
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 7)); }
    }
}

::selection {
    background-color: #6c5ce7af; /* Arka plan rengi (Sarı) */
    color: #000000;            /* Yazı rengi (Siyah) */
}

/* Firefox tarayıcısı için (bazı eski sürümlerde gerekebilir) */
::-moz-selection {
    background-color: #6c5ce7af;
    color: #000000;
}

/* Genel Sayfa Yapısı */
.team-header {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 100px 20px;
}

.team-section-title {
    margin-bottom: 40px;
}

.team-section-title h2 {
    font-size: 32px;
    display: flex;
    align-items: center;
}

/* KART YAPISI (Core Design) */
.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    /* Founders kart yüksekliği */
    height: 500px; 
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

/* Arka Plan Resmi */
.team-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: all 0.5s ease;
    filter: grayscale(100%); /* Varsayılan olarak siyah beyaz şıklığı */
}

/* Hover'da Resim Efekti */
.team-card:hover .team-img {
    transform: scale(1.1);
    filter: grayscale(0%) blur(4px) brightness(0.4); /* Renklenir, bulanıklaşır ve kararır */
}

/* Sol Alt İsim ve Role (Statik Kısım) */
.team-overlay-static {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
    transition: 0.4s ease;
}

.team-overlay-static h3 {
    font-size: 28px;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.role-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    background: rgba(108, 92, 231, 0.1);
    padding: 4px 8px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 4px;
}

/* Hover olunca isim yukarı kayar */
.team-card:hover .team-overlay-static {
    bottom: 50%;
    transform: translateY(50%); /* Ortalamak istersen burayı ayarla, şu an hafif yukarı alıyoruz */
    opacity: 0; /* İstersen ismi gizleyebilirsin, şu an gizliyorum ki bio rahat okunsun */
}

/* GİZLİ BIO (Hover ile gelir) */
.team-bio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s ease 0.1s; /* Hafif gecikmeli gelir */
    pointer-events: none; /* Hover yokken tıklamayı engelle */
}

.team-card:hover .team-bio-hover {
    opacity: 1;
    pointer-events: auto;
}

.bio-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-card:hover .bio-text {
    transform: translateY(0);
}

.team-socials a {
    font-size: 20px;
    color: var(--accent);
    margin: 0 10px;
    transition: 0.3s;
}

.team-socials a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* --- GRID LAYOUTS --- */

/* Founders Grid: 2 Kolon */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* PM Grid: Otomatik doldurma (daha küçük kartlar) */
.pm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Küçük Kart Ayarları (PM'ler için) */
.small-card {
    height: 350px;
}

.small-card .team-overlay-static h3 {
    font-size: 20px;
}

.small-card .role-badge {
    font-size: 10px;
}

.small-card .bio-text {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        height: 400px; /* Mobilde çok uzun olmasın */
    }
}

.nav-active {
    color: #a29bfe;
}

/* Hero */
.jobs-hero {
    padding: 180px 20px 80px 20px;
    text-align: center;
}

.jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Geniş kartlar */
    gap: 30px;
}

/* Job Card Tasarımı */
.job-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.1);
}

/* Kartın solunda mor bir çizgi */
.job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent);
    opacity: 0;
    transition: 0.3s;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-header h3 {
    font-size: 24px;
    color: #fff;
    max-width: 70%;
}

/* Remote / Hybrid Etiketi */
.job-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: rgba(108, 92, 231, 0.1);
    white-space: nowrap;
}

.job-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Gereksinimler Listesi */
.job-reqs {
    margin-bottom: 30px;
    list-style: none;
}

.job-reqs li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.job-reqs li i {
    color: var(--accent);
    font-size: 12px;
    margin-right: 10px;
}

/* Başvur Butonu */
.apply-btn {
    margin-top: auto; /* Butonu her zaman alta iter */
    text-align: center;
    padding: 12px 0;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
}

.apply-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.4);
}

/* Form özel inputu */
#roleInput {
    background: rgba(108, 92, 231, 0.1);
    border-bottom: 1px solid var(--accent);
    color: var(--accent);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .jobs-container {
        grid-template-columns: 1fr;
    }
    .jobs-hero {
        padding: 120px 20px 40px 20px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    /* Sayfa açıldıktan sonra yavaşça görünsün */
    animation: fadeIn 1s ease forwards 2s; 
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

/* Mouse Çizimi */
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #6c5ce7;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.2); /* Hafif mor parlama */
}

/* Tekerlek Animasyonu */
.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
        height: 4px;
    }
    100% {
        top: 25px;
        opacity: 0;
        height: 8px; /* Aşağı indikçe uzasın */
    }
}

/* Okların Animasyonu */
.arrow-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -5px;
}

.arrow-scroll i {
    font-size: 12px;
    color: var(--accent);
    margin-top: -8px; /* Okları birbirine yaklaştır */
    animation: arrowFade 1.5s infinite;
    opacity: 0;
}

/* Okların sırayla yanıp sönmesi için gecikmeler */
.arrow-scroll i:nth-child(1) { animation-delay: 0s; }
.arrow-scroll i:nth-child(2) { animation-delay: 0.15s; }
.arrow-scroll i:nth-child(3) { animation-delay: 0.3s; }

@keyframes arrowFade {
    0% { opacity: 0; transform: translateY(-5px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(5px); }
}

/* Hover Efekti */
.scroll-indicator:hover span {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.scroll-indicator:hover .mouse {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.6);
}

/* --- INVESTMENTS PAGE STYLES --- */

/* Hero Düzenlemeleri */
.invest-hero {
    padding: 160px 20px 60px 20px;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(108, 92, 231, 0.15), transparent 70%);
}

.active-link {
    color: #fff !important;
    opacity: 1 !important;
}
.active-link::after {
    width: 100% !important;
}

/* İstatistik Kutuları */
.inv-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.inv-stat-box {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.inv-stat-box:last-child {
    border-right: none;
}

.is-num {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.is-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* Filtre Butonları */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-gray);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.4);
}

/* Portfolio Cards */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.inv-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inv-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.02);
}

/* Kartın sol üstündeki durum rozeti */
.inv-status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    letter-spacing: 1px;
}

.inv-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.inv-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.inv-card h3 {
    font-size: 24px;
    margin: 0;
}

.inv-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Founder Bilgisi */
.inv-meta {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent);
}

.founder-info span {
    font-size: 13px;
    color: #ccc;
}

/* Kategori Etiketleri */
.inv-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.inv-tags span {
    font-size: 11px;
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--text-gray);
}

.inv-link {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    transition: 0.3s;
}

.inv-link:hover {
    color: var(--accent);
    gap: 15px;
}

/* LP CTA Section */
.investor-cta {
    background: linear-gradient(45deg, #111, rgba(108, 92, 231, 0.1));
    border: 1px solid var(--border-light);
    padding: 60px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.investor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.investor-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.investor-cta p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 18px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .inv-stats {
        flex-direction: column;
        gap: 20px;
    }
    .inv-stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }
    .hero-title {
        font-size: 40px !important;
    }
}

/* Navbar Apply Now Butonu */
.apply-btn-nav {
    background: rgba(108, 92, 231, 0.1); /* Hafif mor arka plan */
    border: 1px solid var(--accent) !important; /* Mor çerçeve */
    padding: 8px 20px !important;
    border-radius: 4px;
    color: #fff !important;
    opacity: 1 !important; /* Diğer linkler gibi soluk durmasın */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-btn-nav::after {
    display: none !important; /* Altındaki çizgiyi kaldırır */
}

.apply-btn-nav:hover {
    background: var(--accent) !important;
    color: #000 !important; /* Üzerine gelince yazı siyah olsun */
    box-shadow: 0 0 20px var(--accent-glow); /* Neon parlama efekti */
    transform: translateY(-2px);
}

/* Mobilde butonun çok büyük durmaması için ayar */
@media (max-width: 1200px) {
    .mobile-links .apply-btn-nav {
        margin-bottom: 20px;
        display: inline-block;
        text-align: center;
    }
}