:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #0070f3;
    --secondary-accent: #ff0080;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* Intro Loader */
#intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.intro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
    filter: blur(20px);
    animation: clearBlur 3s ease-out forwards;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, #000 100%);
}

.intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    filter: blur(10px);
    opacity: 0;
    animation: clearText 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.intro-content .hello,
.intro-content .skids {
    font-family: var(--font-main);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: -2px;
    text-transform: lowercase;
    color: #fff;
}

@keyframes clearBlur {
    0% { filter: blur(20px); transform: translate(-50%, -50%) scale(1.1); }
    100% { filter: blur(0px); transform: translate(-50%, -50%) scale(1); }
}

@keyframes clearText {
    0% { filter: blur(10px); opacity: 0; transform: translateY(20px); }
    100% { filter: blur(0px); opacity: 1; transform: translateY(0); }
}

#intro-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 3rem 0;
    z-index: 1000;
}

.nav-container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    width: 100%;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-color);
    text-transform: uppercase;
}

.nav-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem; /* Reduced gap */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.lang-selector {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.lang-selector span {
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lang-selector span.active {
    opacity: 1;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    list-style: none;
    text-align: right;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateX(-5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.4) 100%);
    z-index: -1;
}

/* Simplified Noise for Performance */
.hero::after {
    display: none; /* Removed heavy noise texture */
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    max-width: 900px;
    line-height: 1.1;
    text-align: center;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 1s ease, transform 1s ease;
    z-index: 1;
    color: #ffffff;
    font-variation-settings: "wdth" 110;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 span {
    display: inline-block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.hero h1 span.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.hero h1 span.slide-in {
    transform: translateY(100%);
    opacity: 0;
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    width: 100px;
    height: 100px;
}

.scroll-down svg {
    width: 100%;
    height: 100%;
    fill: var(--text-color);
    animation: rotate 10s linear infinite;
}

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

.hero p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease forwards 0.2s;
    opacity: 0;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease forwards 0.4s;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Feature Sections (Integrate, Collaborate, Challenge) */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    padding: 150px 0;
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 992px) {
    .feature-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 100px 0;
        text-align: center;
    }
    .feature-header {
        justify-content: center;
    }
    .feature-visual {
        order: 2;
    }
}

.feature-section:first-of-type {
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.liquid-blob {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: none;
    border: none;
    animation: blobMorph 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.liquid-blob::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.blob-1 { 
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
}
.blob-2 { 
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    animation-delay: -2s; 
}
.blob-3 { 
    background-image: url('https://images.unsplash.com/photo-1519834785169-98be25ec3f84?q=80&w=1000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    animation-delay: -4s; 
}

.liquid-blob::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 60%);
    z-index: 1;
}

@keyframes blobMorph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1) rotate(0deg) translateY(0); }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: scale(1.1) rotate(180deg) translateY(-20px); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1) rotate(360deg) translateY(0); }
}

.feature-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-num {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.feature-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.feature-text {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.15;
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -1.5px;
}

/* Projects Section */
/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-num {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.3;
    letter-spacing: 2px;
}

.service-item h3 {
    font-size: 1.8rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.2;
}

.services-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.cta-link-secondary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 2rem 3rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-link-secondary:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: scale(1.05);
}

.cta-link-secondary svg {
    transition: transform 0.3s ease;
}

.cta-link-secondary:hover svg {
    transform: translateX(10px);
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: var(--accent-color);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--accent-color);
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.package-features li {
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.package-btn {
    display: block;
    text-align: center;
    padding: 1.2rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.package-btn.highlight {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.package-btn.highlight:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* Social Media Cards - Silver & Pinky */
.social-card.silver {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(200,200,200,0.05) 100%);
}

.social-card.pinky {
    border-color: rgba(255, 0, 128, 0.2);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, rgba(5, 5, 5, 0) 100%);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.05);
}

.social-card.pinky:hover {
    border-color: var(--secondary-accent);
    box-shadow: 0 30px 60px rgba(255, 0, 128, 0.2);
}

.social-card.silver:hover {
    border-color: #fff;
}

.package-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    display: block;
}

.pinky .price {
    color: var(--secondary-accent);
}

.price span {
    font-size: 1rem;
    opacity: 0.4;
    font-weight: 400;
    margin-left: 0.5rem;
}

.highlight-pink {
    background: var(--secondary-accent);
    border-color: var(--secondary-accent);
    color: #fff;
}

.highlight-pink:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Add-ons Styling */
.add-ons-container {
    margin-top: 6rem;
    padding: 4rem;
    background: var(--glass-bg);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
}

.add-ons-title {
    font-size: 2rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    margin-bottom: 3rem;
    text-align: center;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.add-on-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    border-left: 2px solid var(--secondary-accent);
    background: rgba(255, 255, 255, 0.02);
}

.add-on-item span {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.5;
    text-transform: uppercase;
}

.add-on-item strong {
    font-size: 1.2rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #fff;
}

/* Inquiry Form - Silver & Blue */
#inquiry {
    padding: 150px 0;
}

.inquiry-card {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.05) 0%, rgba(0, 112, 243, 0.1) 100%);
    border: 1px solid rgba(0, 112, 243, 0.3);
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 0 50px rgba(0, 112, 243, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.inquiry-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.inquiry-header h2 {
    font-size: 3.5rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, rgba(0, 112, 243, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.inquiry-header p {
    font-size: 1.1rem;
    opacity: 0.6;
}

.inquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group:nth-child(3),
.form-group:nth-child(4),
.submit-btn {
    grid-column: span 2;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.inquiry-form label {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    pointer-events: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.inquiry-form input:not(:placeholder-shown),
.inquiry-form textarea:not(:placeholder-shown) {
    border-color: rgba(0, 112, 243, 0.5);
    background: rgba(0, 112, 243, 0.05);
}

.inquiry-form input:focus + label,
.inquiry-form textarea:focus + label,
.inquiry-form input:not(:placeholder-shown) + label,
.inquiry-form textarea:not(:placeholder-shown) + label {
    transform: translateY(-2.5rem) scale(0.85);
    opacity: 1;
    color: rgba(0, 112, 243, 0.8);
}

.submit-btn {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(0, 112, 243, 0.8));
    color: #000;
    padding: 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 112, 243, 0.3);
    filter: brightness(1.1);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .inquiry-card { padding: 3rem 2rem; border-radius: 24px; }
    .inquiry-header h2 { font-size: 2.2rem; }
    .inquiry-form { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-group:nth-child(3), .form-group:nth-child(4) { grid-column: span 1; }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Trust Section & Liquid Chrome */
.trust-section {
    position: relative;
    padding: 100px 0;
    margin: 100px 0;
    overflow: hidden;
    background: #000;
}

.liquid-chrome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.02) 0%, 
        rgba(255,255,255,0.05) 50%, 
        rgba(255,255,255,0.02) 100%);
    background-size: 200% 200%;
    animation: liquidFlow 15s ease infinite;
    z-index: 0;
}

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

.trust-title {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.5;
    margin-bottom: 3rem;
    text-align: center;
}

.ticker-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.ticker {
    display: inline-block;
}

.ticker span {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    margin-right: 4rem;
    color: #fff;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Manifesto Section */
.manifesto-section {
    padding: 200px 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.manifesto-text p {
    font-size: clamp(4rem, 18vw, 22rem);
    font-weight: 950;
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 0.75;
    letter-spacing: -0.05em;
    margin-top: 2rem;
    width: 100%;
    display: block;
    word-break: break-word;
    
    /* Reveal Animation Base */
    color: rgba(255, 255, 255, 0.03);
    background: linear-gradient(to right, #fff, #fff) no-repeat;
    background-size: 0% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-size 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-section.fade-in-visible .manifesto-text p {
    background-size: 100% 100%;
}

/* Discover Ticker Section */
.discover-section {
    padding: 100px 0;
    overflow: hidden;
    background: #000;
}

.discover-ticker-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.discover-ticker {
    display: flex;
    will-change: transform;
}

.discover-ticker span {
    font-size: 15vw;
    font-weight: 900;
    font-family: 'Bricolage Grotesque', sans-serif;
    text-transform: uppercase;
    letter-spacing: -8px;
    padding-right: 4rem;
    color: #fff;
    opacity: 0.95;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

@keyframes discoverSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.2);
}

.project-image {
    height: 300px;
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-info {
    padding: 2rem;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
}

.category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-active {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Animations */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Right-to-Left Support */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .nav-container {
    flex-direction: row-reverse;
}

.rtl .nav-wrapper {
    align-items: flex-start;
}

.rtl .nav-links {
    align-items: flex-start;
    text-align: left;
}

.rtl .scroll-down {
    left: auto;
    right: 3rem;
}

.rtl .about-content {
    direction: rtl;
}

/* Team Section */
.team-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
}

.team-minimal {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.team-huge-text {
    width: 100%;
}

.team-huge-text p {
    font-size: clamp(3rem, 12vw, 15rem);
    font-weight: 950;
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    
    /* Animation base */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-section.fade-in-visible .team-huge-text p {
    opacity: 1;
    transform: translateY(0);
}

.team-section.fade-in-visible .team-huge-text p:nth-child(2) { transition-delay: 0.2s; }
.team-section.fade-in-visible .team-huge-text p:nth-child(3) { transition-delay: 0.4s; }

/* Team Play Cards */
#team-cards {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    height: 600px;
    perspective: 1000px;
    cursor: pointer;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    overflow: hidden;
    border-radius: 4px;
}

.team-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-image {
    transform: scale(1.05);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.team-card-top .role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

.team-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.team-card-bottom .name {
    font-size: 2.5rem;
    font-weight: 950;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #fff;
    line-height: 1;
}

.expand-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.expand-link {
    text-decoration: none;
    display: block;
}

.team-card:hover .expand-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* About & Contact Section (White Background) */
.about-contact-section {
    background: #ffffff;
    color: #000000;
    padding: 120px 0;
    font-family: var(--font-main);
}

.contact-header {
    margin-bottom: 60px;
}

.minimal-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #000;
    opacity: 0.4;
}

.minimal-sub {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-link.large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.6;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.extras {
    margin: 1rem 0;
}

.extra-services-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.extra-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.extra-services-btn.outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    margin-left: 0.5rem;
}

.extra-services-btn.outline:hover {
    background: #000;
    color: #fff;
}

.extra-services-btn.outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    margin-left: 0.5rem;
}

.extra-services-btn.outline:hover {
    background: #000;
    color: #fff;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
}

.column-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
    display: block;
    margin-bottom: 15px;
}

.minimal-footer {
    background: #ffffff;
    color: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.minimal-footer .footer-bottom {
    text-align: left;
    font-size: 0.8rem;
    opacity: 0.4;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-link.large {
        font-size: 1.4rem;
    }
}

.name-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.name-link:hover {
    opacity: 0.7;
}

.nav-container-fluid {
    width: 100%;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .intro-content { gap: 0.5rem; flex-direction: column; align-items: center; }
    .intro-content .hello,
    .intro-content .skids { font-size: 2.5rem; letter-spacing: -1px; }

    nav { padding: 1.5rem 0; width: 100%; }
    .nav-container-fluid { padding: 0 1.5rem; width: 100%; }
    
    .hero { 
        padding: 0 1rem; 
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero h1 { 
        font-size: clamp(2rem, 10vw, 3.5rem); 
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle { display: flex; order: 2; }
    .lang-selector { order: 1; gap: 1rem; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 100px 0;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.8rem; }

    .custom-cursor, .cursor-follower { display: none; }
    
    .container { 
        width: 100%; 
        padding: 0 1.5rem; 
        margin: 0;
    }
    
    .projects-grid { 
        grid-template-columns: 1fr; 
        width: 100%;
    }
    
    .liquid-blob { width: 280px; height: 280px; }
    .feature-text { font-size: clamp(1.5rem, 8vw, 2rem); }

    .manifesto-text p { 
        font-size: clamp(3rem, 15vw, 6rem); 
        line-height: 1;
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
    }
    .team-card {
        height: 60vh;
        width: 100%;
    }
    .team-huge-text p {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
    
    .discover-ticker span { font-size: clamp(4rem, 20vw, 8rem); }
    .ticker span { font-size: 1.8rem; margin-right: 2rem; }

    .about-contact-section { padding: 60px 0; }
    .minimal-sub { font-size: 1.8rem; }
    .contact-link.large { font-size: 1.2rem; word-break: break-all; }
    
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    footer { padding: 20px 0; }
}

/* Story Section */
.story-section {
    padding: 150px 0;
    background: var(--bg-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
}

.story-content h2 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-main);
}

.story-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual:hover .story-image {
    transform: scale(1.08);
}

.story-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
}

/* Form Credits */
.form-credits {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-credits p {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.6;
    text-transform: uppercase;
}

.discover-souls-link {
    margin-top: 1.5rem;
    font-size: 2.5rem;
    font-weight: 950;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #fff;
    text-decoration: none;
    letter-spacing: -2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.discover-souls-link:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Transition Overlay */
#transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

#transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#transition-overlay.fade-out-transition {
    transition: opacity 2s ease-in-out;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 24px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

#cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.cookie-btn {
    background: #fff;
    color: #000;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 500px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}
