:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --accent: #00f0ff;
    --accent-secondary: #7000ff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-display: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --container-width: 1400px;
}

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

html {
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    overscroll-behavior: none; 
}

.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.5); transition: width 0.2s, height 0.2s; }
body:hover .cursor-outline { width: 60px; height: 60px; background-color: rgba(255, 255, 255, 0.05); backdrop-filter: blur(2px); }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.section-header { text-align: center; margin-bottom: 6rem; position: relative; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; background: linear-gradient(90deg, #fff, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { font-size: 1rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; }

#canvas-container { 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    z-index: 0; 
    opacity: 0.6; 
    pointer-events: none; 
}

header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 2rem; transition: padding 0.3s, background 0.3s;
}
header.scrolled { padding: 1rem 2rem; background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); }

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; text-decoration: none; color: #fff; font-weight: bold; z-index: 101; font-size: 1.5rem; letter-spacing: 1px; }
.logo-text { background: linear-gradient(45deg, var(--accent), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-image { height: 40px; width: auto; }

.magnetic-nav { display: flex; gap: 1rem; align-items: center; }
.nav-item { position: relative; padding: 0.8rem 1.5rem; color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.3s; }
.nav-item:hover { color: #fff; }

.menu-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; z-index: 101; }

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
    .magnetic-nav { display: none; position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background: #000; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transition: transform 0.3s ease-in-out; transform: translateX(100%); }
    .magnetic-nav.show { display: flex; transform: translateX(0); }
    .nav-item { font-size: 1.5rem; }
    .menu-toggle { display: block; }
}

.hero { height: 120vh; width: 100%; position: relative; overflow: hidden; }
.swiper-container { width: 100%; height: 100%; }
.swiper-slide { position: relative; width: 100%; height: 100%; background-size: cover; background-position: center; }
.swiper-slide video, .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.swiper-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1; }

.slide-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 90%; max-width: 900px; z-index: 2; color: #fff; pointer-events: none;  }
.slide-content h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 1.5rem; text-transform: uppercase; text-shadow: 0 0 30px rgba(0,240,255,0.3); }
.slide-content p { font-size: clamp(1rem, 2vw, 1.5rem); color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto; }

.swiper-pagination-bullet { width: 30px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.3); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--accent); width: 50px; }

section { 
    padding: 8rem 0; 
    position: relative; 
    margin-bottom: 0; 
}

.force-gap {
    padding-bottom: 10rem !important; 
}

.cta-section {
    text-align: center; 
    padding: 8rem 0 !important; 
    background: linear-gradient(180deg, transparent, rgba(0,240,255,0.05), transparent); 
    margin-bottom: 0 !important;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.about-media img, .about-media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-media:hover img { transform: scale(1.05); }
.about-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1.8rem; text-align: justify; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.service-card { background: var(--card-bg); border: 1px solid var(--glass-border); padding: 3.5rem 2.5rem; border-radius: 16px; transition: all 0.4s ease; position: relative; overflow: hidden; backdrop-filter: blur(5px); }
.service-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1); }
.service-icon { font-size: 3.5rem; color: var(--accent); margin-bottom: 1.8rem; display: inline-block; }
.service-card h3 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.service-card p { color: var(--text-muted); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; perspective: 1000px; }
.tilt-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 16px; overflow: hidden; position: relative; transform-style: preserve-3d; transition: transform 0.1s ease-out; }
.tilt-card:hover { border-color: var(--accent-secondary); }
.member-img-wrap { height: 300px; overflow: hidden; position: relative; transform: translateZ(20px); }
.member-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tilt-card:hover .member-img-wrap img { transform: scale(1.1); }

.member-info { padding: 2rem; text-align: center; transform: translateZ(30px); background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border-top: 1px solid var(--glass-border); }
.member-info h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: #fff; }
.member-position { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; display: block; }
.member-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.social-links { display: flex; justify-content: center; gap: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.social-links a:hover { background: var(--accent); color: #000; transform: translateY(-3px); }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.portfolio-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 12/10; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); transform: translateY(100%); transition: transform 0.4s; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-tag { background: var(--accent); color: #000; padding: 4px 10px; font-size: 0.7rem; font-weight: bold; border-radius: 4px; display: inline-block; margin-bottom: 0.5rem; }

.culture-grid, .env-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.culture-item, .env-item { background: var(--card-bg); border: 1px solid var(--glass-border); padding: 2.5rem; border-radius: 12px; }
.env-item { padding: 0; overflow: hidden; }
.env-item img { width: 100%; height: 250px; object-fit: cover; }
.env-info { padding: 1.5rem; }

.btn-custom { padding: 1rem 3rem; border-radius: 50px; font-weight: bold; text-decoration: none; transition: all 0.3s; display: inline-block; margin: 0.5rem; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

footer { 
    background: #000; 
    padding: 8rem 0 2rem; 
    border-top: 1px solid var(--glass-border); 
    position: relative; 
    z-index: 2; 
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 50%), linear-gradient(to bottom, #000, transparent);
}

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

.footer-col { 
    position: relative; 
    padding: 2.5rem; 
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px); 
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.footer-col:hover {
    transform: translateY(-5px); 
    border-color: rgba(255, 255, 255, 0.15); 
}

.footer-col h4 { 
    color: #fff; 
    margin-bottom: 2rem; 
    font-size: 1.2rem; 
    letter-spacing: 1px; 
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: ''; 
    position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background-color: var(--accent); 
    border-radius: 2px; 
    box-shadow: 0 0 10px var(--accent);
}

.footer-col ul { 
    list-style: none; 
    padding: 0; 
}

.footer-col ul li { 
    margin-bottom: 1.2rem; 
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
    display: flex;       
    align-items: center; 
    gap: 0.5rem;         
}

.footer-col ul li:hover {
    padding-left: 10px; 
}

.footer-col a { 
    color: var(--text-muted); 
    text-decoration: none; 
    transition: all 0.3s; 
    display: flex; 
    align-items: center;
    font-size: 0.95rem; 
}

.footer-col a i { 
    margin-right: 0.6rem; 
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-col a:hover { 
    color: #fff; 
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

.footer-col a i {
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.3));
    transition: all 0.3s;
}
.footer-col a:hover i {
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
    transform: scale(1.2);
    color: var(--accent);
}

.footer-bottom { 
    text-align: center; 
    padding: 2rem 0; 
    border-top: 1px solid var(--glass-border); 
    color: #555; 
    font-size: 0.85rem; 
    background: linear-gradient(to top, rgba(255, 255, 255, 0.05), transparent);
}

.ca-bottom {
    text-align: center;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 240, 255, 0.03) 50%, rgba(0,0,0,0) 100%);
    margin-top: 4rem;
    position: relative;
}

.address-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px; 
    gap: 1rem;
    max-width: 90%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.address-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.address-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    user-select: none;
}

.address-text {
    color: var(--accent);
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.95rem;
    font-weight: 700;
    max-width: 47ch; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.3s;
}

.address-card:hover .address-text {
    color: #fff; 
}

.btn-copy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.btn-copy:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: rotate(10deg);
}

.btn-copy i {
    font-size: 0.9rem;
}

.btn-copy.copied {
    border-color: #2ecc71;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

@media (max-width: 768px) {
    .address-text {
        max-width: 47ch;
        font-size: 0.85rem;
    }
    .ca-bottom {
        padding: 3rem 0 1rem;
    }
}

@media (max-width: 768px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        margin-bottom: 3rem; 
    }
    .footer-col { 
        padding: 3rem 2.5rem; 
        border-radius: 16px; 
        text-align: center; 
        background: rgba(255, 255, 255, 0.01); 
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        display: block;
    }
    
    .footer-col h4::after { display: none; }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-col ul li {
        margin-bottom: 0;
        padding: 0;
        justify-content: center;
    }

    .footer-col a {
        justify-content: center; 
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid { gap: 2rem; }
    .footer-col { padding: 2.5rem 1.5rem; }
}

.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px); align-items: center; justify-content: center; }
.modal.show { display: flex; }
.modal-content { background-color: #111; border: 1px solid var(--glass-border); padding: 2.5rem; border-radius: 12px; width: 90%; max-width: 500px; position: relative; box-shadow: 0 0 50px rgba(0,240,255,0.1); animation: fadeIn 0.3s; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 1rem; }
.modal-title { font-size: 1.6rem; color: #fff; margin: 0; }
.btn-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

.form-control { width: 100%; padding: 1rem; margin-bottom: 1.2rem; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); color: #fff; border-radius: 6px; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--accent); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }