{
        --text-primary: #ffffff;
        --text-secondary: rgba(255, 255, 255, 0.7);
    }

        {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body,
    html {
        width: 100%;
        min-height: 100%;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background-color: #000;
        color: var(--text-primary);
        cursor: none;
    }

    body {
        overflow-x: hidden;
    }

    /* --- Page Transition Shutter Effect --- */
    .shutter-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999999;
        display: flex;
        pointer-events: none;
    }

    .shutter-container.close {
        pointer-events: all;
        /* Block clicks during transition */
    }

    .shutter-blade {
        flex: 1;
        height: 100%;
        background-color: #ff4b1f;
        /* Brand Orange /
transform-origin: top;
transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
transform: scaleY(1);
/ Initial state: Closed / Covering the screen */
    }

    /* Open state: slide up */
    .shutter-container.open .shutter-blade {
        transform: scaleY(0);
    }

    /* Stagger opening (left to right) */
    .shutter-blade(1) {
        transition-delay: 0s;
    }

    .shutter-blade(2) {
        transition-delay: 0.1s;
    }

    .shutter-blade(3) {
        transition-delay: 0.2s;
    }

    .shutter-blade(4) {
        transition-delay: 0.3s;
    }

    /* Stagger closing (right to left for wave effect) */
    .shutter-container.close .shutter-blade(1) {
        transition-delay: 0.3s;
    }

    .shutter-container.close .shutter-blade(2) {
        transition-delay: 0.2s;
    }

    .shutter-container.close .shutter-blade(3) {
        transition-delay: 0.1s;
    }

    .shutter-container.close .shutter-blade(4) {
        transition-delay: 0s;
    }

    /* Hover Image for Projects */
    #hoverImage {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 400px;
        object-fit: cover;
        pointer-events: none;
        z-index: 100;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    #hoverImage.visible {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    /* --- Lenis Base CSS --- */
    html.lenis,
    html.lenis body {
        height: auto;
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
        overflow: hidden;
    }

    .lenis.lenis-scrolling iframe {
        pointer-events: none;
    }

    .hero-container {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2.5rem 3.5rem;

        /* Dynamic gradient that can be moved by JS */
        background: radial-gradient(110% 120% at var(--mouse-x, 85%) var(--mouse-y, 75%), #ff4b1f 0%, #ff1c00 15%, #590300 40%, #050000 70%, #000000 100%);
        transition: background 0.1s ease-out;

    }

    .noise {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        background-image: url('data/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22 opacity=%220.06%22/%3E%3C/svg%3E');
        mix-blend-mode: overlay;
    }

    .header {
        position: relative;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: -0.01em;
        opacity: 0.6;
        cursor: pointer;
    }

    .logo {
        opacity: 1;
    }

    .nav-menu {
        display: flex;
        gap: 0.2rem;
        background: rgba(0, 0, 0, 0.5);
        /* Darker overlay for contrast */
        padding: 0.3rem 0.3rem;
        border-radius: 100px;
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .nav-menu {
        border-color: rgba(255, 255, 255, 0.15);
    }

    .nav-menu a {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 400;
        opacity: 0.6;
        padding: 0.5rem 1.2rem;
        border-radius: 100px;
        transition: all 0.3s ease;
    }

    .nav-menu a {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Dropdown Menus */
    .nav-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 100%;
        height: 15px;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: rgba(15, 15, 15, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 8px;
        display: flex;
        flex-direction: column;
        min-width: 160px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-item .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
        opacity: 0.7 !important;
        padding: 10px 15px !important;
        border-radius: 8px !important;
        text-align: left;
        background: transparent !important;
        display: block;
        font-size: 0.85rem !important;
    }

    .dropdown-menu a {
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    /* Nav Menu Active Pill State */
    .nav-menu a.active {
        opacity: 1;
        background: rgba(255, 255, 255, 0.15);
    }

    /* Page Overlay Blur behind Mega Menu */
    .page-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .header(.nav-item.has-dropdown) .page-overlay {
        opacity: 1;
    }

    /* Mega Menu Base /
.mega-menu {
position: absolute;
top: calc(100% + 15px);
left: 0;
background: rgba(0, 0, 0, 0.6);
/ Darker overlay for contrast /
/ Match nav-menu */
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 320px 380px;
    min-width: 700px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
}

.nav-item .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-item {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s ease;
    cursor: pointer;
}

.mega-item,
.mega-item.active {
    background: rgba(255, 255, 255, 0.15);
    /* Match active pill */
}

.mega-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.mega-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mega-menu-right {
    padding-left: 16px;
    position: relative;
}

.mega-content {
    position: absolute;
    top: 0;
    left: 16px;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mega-content.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    left: 0;
}

.mega-image-placeholder {
    width: 100%;
    aspect-ratio: 1.5;
    background: rgba(255, 255, 255, 0.05);
    /* Match glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.mega-content-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.mega-content-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.mobile-menu-btn .bar {
    width: 18px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-btn.open .bar(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-btn.open .bar(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-overlay.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-overlay.active .mobile-nav-links a(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-links a(2) {
    transition-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-links a(3) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-links a(4) {
    transition-delay: 0.25s;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    transition: left 0.5s ease;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.explore-btn svg {
    background: #ff1c00;
    color: #ffffff;
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.explore-btn svg {
    transform: rotate(90deg) scale(1.1);
    background: #000000;
    color: #ffffff;
}

.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.bottom-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    width: 100%;
}

.brand-name {
    font-size: 11vw;
    /* Scales massively /
font-weight: 800;
line-height: 0.8;
letter-spacing: -0.055em;
margin: 0;
margin-left: -0.5rem;
/ Optical alignment */

    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease-out;

}

.description {
    max-width: 330px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-align: left;
    margin-bottom: 0.5rem;
    margin-right: 1rem;
    transition: transform 0.2s ease-out;
}

/* Entrance Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

.header {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.crosshair {
    animation: fadeIn 2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.brand-name {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.description {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* --- New Portfolio Section --- /
.portfolio-section {
position: relative;
width: 100%;
background-color: #000000;
/ Matching dark black /
height: 300vh;
/ Extra height to allow scrolling */
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 6rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.portfolio-title {
    font-size: 4vw;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 60%;
}

.portfolio-title .italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

.portfolio-desc {
    max-width: 320px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Horizontal Slider /
.slider-container {
width: 100%;
overflow: hidden;
/ Hide scrollbars, we will implement drag-to-scroll */
position: relative;
padding-bottom: 2rem;
}

.slider-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding-right: 3.5rem;
    cursor: grab;
    will-change: transform;
}

.slider-track {
    cursor: grabbing;
}

.slide {
    width: 55vw;
    height: 35vw;
    max-height: 600px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: #111;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Prevent dragging image instead of container */
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide img {
    transform: scale(1.05);
}

/* --- Who We Are Section --- */
.who-we-are-section {
    width: 100%;
    padding: 8rem 3.5rem;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.who-we-are-container {
    max-width: 1200px;
    width: 100%;
}

.hero-headline {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.who-we-are-content {
    display: flex;
    gap: 1.5rem;
}

.testimonial-box {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-family: serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 0.5;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 4rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.author-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.stats-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.stat-box {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box(2n) {
    border-right: none;
}

.stat-box(n+3) {
    border-bottom: none;
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

.stat-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Client Work Section --- */
.client-work-section {
    position: relative;
    width: 100%;
    background-color: #000000;
    padding: 6rem 3.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.client-work-header {
    align-self: flex-end;
    width: 45%;
    margin-bottom: 8rem;
}

.small-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 1rem;
}

.large-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.large-title .italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

.projects-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.project-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    margin: 0 -1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-row {
    background: linear-gradient(90deg, oklch(58% 0.24 30) 0%, oklch(10% 0 0) 100%);
    color: #ffffff;
}

.project-row .project-year,
.project-row .project-category {
    color: rgba(255, 255, 255, 0.9);
}

.project-name {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
}

.project-category {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.project-year {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    transition: color 0.3s ease;
}

.all-work-btn-container {
    margin-top: 1rem;
}

.all-work-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.all-work-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.all-work-btn:hover::before {
    left: 100%;
}

.all-work-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Floating Hover Image /
.hover-image {
position: fixed;
top: 0;
left: 0;
width: 320px;
height: 220px;
object-fit: cover;
pointer-events: none;
/ Crucial for letting mouse events through */
opacity: 0;
transform: translate(-50%, -50%) scale(0.8);
transition: opacity 0.3s ease,
transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
z-index: 100;
border-radius: 4px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hover-image.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Custom Cursor --- */
body {
    cursor: none;
}

a,
button,
.project-row,
.slider-track,
.logo,
.nav-links a,
.get-started-btn {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.custom-cursor.hover {
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
}

/* --- Services Section --- */
.services-section {
    position: relative;
    width: 100%;
    background-color: #000000;
    padding: 10rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.service-item {
    font-size: 8vw;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.85;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-item {
    color: rgba(255, 255, 255, 0.7);
}

.blurred-item {
    position: relative;
}

.blurred-text {
    filter: blur(0px);
    opacity: 1;
    transition: filter 0.4s ease, opacity 0.4s ease;
    display: block;
}

.blurred-item .blurred-text {
    filter: blur(14px);
    opacity: 0.4;
}

.marquee-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blurred-item .marquee-container {
    opacity: 1;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeScroll 10s linear infinite;
}

.marquee-content span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    font-family: monospace;
    padding: 0 1.5rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* --- Reveal Blur Animation --- */
.reveal-blur {
    opacity: 0.15;
    filter: blur(12px);
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-blur.in-view {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* --- FAQ Section --- */
.faq-section {
    width: 100%;
    padding: 8rem 3.5rem;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 900px;
    width: 100%;
}

.faq-title {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #ff4b1f;
    transition: transform 0.4s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    padding-right: 2rem;
}

/* --- Launchpad Section --- */
.launchpad-section {
    width: 100%;
    padding: 6rem 3.5rem;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.launchpad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
}

.launchpad-title-area {
    padding: 1.5rem 0;
}

.launchpad-label {
    color: #ff4b1f;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.orange-square {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff4b1f;
}

.launchpad-card {
    background-color: #111111;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.launchpad-card {
    transform: translateY(-5px);
    border-color: rgba(255, 75, 31, 0.3);
}

.launchpad-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(255, 75, 31, 0.15), transparent 70%);
    pointer-events: none;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-top h3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
}

.card-icon {
    width: 32px;
    height: 32px;
}

/* Icon 1: Tokenomics */
.icon-tokenomics {
    position: relative;
}

.icon-tokenomics::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    left: 0;
}

.icon-tokenomics::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff4b1f;
    right: 0;
}

/* Icon 2: Audit */
.icon-audit {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
}

.icon-audit::before {
    content: '';
    width: 6px;
    height: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.icon-audit::after {
    content: '';
    width: 6px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.icon-audit-bar {
    width: 6px;
    height: 6px;
    background-color: #ff4b1f;
    border-radius: 2px;
}

/* Icon 3: GTM */
.icon-gtm {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-gtm::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.icon-gtm::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff4b1f;
}

/* Icon 4: Community */
.icon-community {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
}

.icon-community::before {
    content: '';
    position: absolute;
    top: 0px;
    right: -4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff4b1f;
}

.icon-community::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

/* Icon 5: Partnership */
.icon-partnership {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon-partnership::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.icon-partnership::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.icon-partnership-top {
    position: absolute;
    top: 0;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff4b1f;
}

.card-bottom {
    margin-top: 3rem;
}

.card-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    width: 100%;
    padding: 10rem 2rem 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 75%, rgba(255, 75, 31, 0.4) 0%, rgba(255, 28, 0, 0.3) 25%, rgba(89, 3, 0, 0.5) 55%, #000000 80%);
    opacity: 0.8;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.cta-title {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

.cta-form {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.4rem;
    max-width: 480px;
    margin: 0 auto 5rem auto;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cta-form {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-submit {
    background: #ff4b1f;
    background: linear-gradient(90deg, #ff4b1f 0%, #ff1c00 100%);
    color: #fff;
    border: none;
    padding: 0 2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-submit {
    opacity: 0.9;
    transform: scale(1.02);
}

.cta-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 4rem;
    opacity: 0.8;
}

.brand-logo {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

/* --- Main Footer --- */
.main-footer {
    background-color: #000000;
    padding: 6rem 3.5rem 0 3.5rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-cta h2 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.red-dot {
    color: #ff1c00;
}

.get-in-touch-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.get-in-touch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.get-in-touch-btn:hover::before {
    left: 100%;
}

.get-in-touch-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.get-in-touch-btn .plus-icon {
    background: #ff1c00;
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 12px;
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.get-in-touch-btn .plus-icon {
    transform: rotate(90deg) scale(1.1);
    background: #ffffff;
    color: #ff1c00;
}

.footer-links {
    display: flex;
    gap: 8rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column.align-right {
    text-align: right;
    align-items: flex-end;
}

.column-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    font-weight: 500;
}

.column-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mt-2 {
    margin-top: 3rem;
}

.social-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
}

.social-grid li,
.helpful-grid li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.helpful-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    max-width: 200px;
}

.red-square {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #ff1c00;
}

.red-dot-small {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #ff1c00;
    border-radius: 50%;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 8px;
}

.created-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
}

.footer-bottom {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: 0 -3.5rem;
    width: calc(100% + 7rem);
    height: 20vw;
    /* Increased from 16vw to prevent vertical clipping /
margin-bottom: -1.5vw;
/ Adjusted to keep spacing tight */
    position: relative;
    background-color: transparent;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: none;
}

/* --- Creative Custom Cursor --- */
.creative-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #ff4b1f;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease;
}

.creative-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 75, 31, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.creative-cursor.white-mode {
    background-color: #fff;
    mix-blend-mode: difference;
}

.creative-cursor-ring.white-mode {
    border-color: rgba(255, 255, 255, 0.5);
    mix-blend-mode: difference;
}

.cursor-text {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover States */
.creative-cursor.hover {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 75, 31, 0.95);
    backdrop-filter: blur(4px);
}

.creative-cursor.hover .cursor-text {
    opacity: 1;
    transform: scale(1);
}

.creative-cursor-ring.hover {
    width: 90px;
    height: 90px;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ========================================= /
/ --- RESPONSIVE OVERHAUL (TABLET & MOBILE) --- /
/ ========================================= */

/* Tablet & Smaller Desktop (max 1024px) */
@media (max-width: 1024px) {
    .brand-name {
        font-size: 14vw;
        margin: 0;
    }

    .hero-container {
        padding: 2rem;
    }

    .portfolio-header {
        padding: 0 2rem;
    }

    .who-we-are-container {
        padding: 8rem 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links {
        gap: 4rem;
    }

    .launchpad-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* Mobile Devices (max 768px) */
@media (max-width: 768px) {
    .hero-container {
        padding: 1.5rem 1rem;
    }

    .header {
        align-items: center;
    }

    /* Hide center nav links on mobile for clean look */
    .nav-menu {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    .brand-name {
        font-size: 18vw;
        margin-top: auto;
    }

    .description {
        max-width: 100%;
        font-size: 0.95rem;
        margin-right: 0;
        padding-top: 1rem;
        margin-bottom: 2rem;
    }

    .bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Portfolio & Services */
    .portfolio-section {
        height: auto;
        padding-bottom: 4rem;
    }

    /* Crucial: Disable sticky wrapper on mobile to prevent clipping */
    .sticky-wrapper {
        position: relative;
        height: auto;
        padding: 4rem 0 0 0;
        overflow: visible;
    }

    .portfolio-header {
        flex-direction: column;
        padding: 0 1rem;
        margin-top: 0;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .portfolio-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .portfolio-desc {
        max-width: 100%;
    }

    /* Enable native horizontal scrolling for the slider */
    .slider-container {
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
    }

    .slider-track {
        width: max-content;
        gap: 1rem;
        padding-right: 1rem;
    }

    .slide {
        flex: 0 0 85vw;
        height: 60vw;
        scroll-snap-align: center;
    }

    .project-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
        margin: 0 -1rem;
    }

    .project-category,
    .project-year {
        text-align: left;
        margin-left: 0;
    }

    .services-list {
        padding: 2rem 1rem;
    }

    .blurred-text {
        font-size: 18vw;
    }

    /* Launchpad */
    .launchpad-section {
        padding: 4rem 1rem;
    }

    .launchpad-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    /* Who We Are & Stats Grid */
    .who-we-are-section {
        padding: 4rem 1rem;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .who-we-are-content {
        flex-direction: column;
        gap: 3rem;
        align-items: stretch;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .testimonial-box {
        padding: 2rem;
        width: 100%;
        flex: none;
        box-sizing: border-box;
    }

    /* Fix overflowing stats grid on mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        flex: none;
        box-sizing: border-box;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-box h3 {
        font-size: 2.2rem;
    }

    .metrics {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* Bento Grid */
    .bento-container {
        padding: 4rem 1rem;
    }

    .bento-header h2 {
        font-size: 2.2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(200px, auto);
        gap: 1rem;
    }

    /* Reset all specialized bento layouts to stack properly */
    .bento-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-item.wide {
        grid-column: auto;
    }

    .client-list {
        gap: 1rem;
    }

    /* Client Work */
    .client-work-section {
        padding: 4rem 1rem;
    }

    .client-work-header {
        width: 100%;
        align-self: flex-start;
        margin-bottom: 3rem;
    }

    .large-title {
        font-size: 2.2rem;
    }

    /* Services Section Original Look - Decreased Size to fit */
    .service-item {
        font-size: 11vw;
        line-height: 0.85;
        display: block;
        padding: 0;
        border: none;
        width: auto;
        text-align: center;
    }

    .blurred-text {
        font-size: 11vw;
        color: #fff;
        -webkit-text-stroke: 0;
        transition: none;
    }

    /* FAQ Section */
    .faq-section {
        padding: 4rem 1rem;
    }

    .faq-container {
        flex-direction: column;
        gap: 3rem;
    }

    .faq-title {
        position: relative;
        top: 0;
        width: 100%;
        padding-right: 0;
        margin-bottom: 0;
        text-align: left;
    }

    .faq-title h2 {
        font-size: 2.5rem;
        text-align: left;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
        max-width: 100%;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .cta-submit {
        padding: 1rem;
        border-radius: 12px;
    }

    .cta-logos {
        gap: 2rem;
        justify-content: center;
    }

    /* Footer */
    .main-footer {
        padding: 4rem 1rem 0 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-cta h2 {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-column.align-right {
        align-items: flex-start;
        text-align: left;
    }

    .helpful-grid {
        justify-content: flex-start;
        max-width: 100%;
    }

    .footer-middle {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        margin-bottom: 4rem;
    }

    /* Ensure Canvas fits */
    .footer-bottom {
        height: 25vw;
        margin-bottom: 0;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }

}

/* Mobile Small (max 480px) */
@media (max-width: 480px) {
    .brand-name {
        font-size: 19vw;
    }
}

/* Disable Custom Cursor and Hover Physics on Touch Devices */
@media (pointer: coarse) {
    body {
        cursor: auto;
    }

    /* Hide the custom dot and ring completely */
    .creative-cursor,
    .creative-cursor-ring {
        display: none !important;
    }

    /* Re-enable default cursors */
    a,
    button,
    .project-row,
    .slider-track,
    .logo,
    .nav-links a,
    .get-started-btn {
        cursor: pointer;
    }

    /* Disable sticky hover states on touch devices */
    .project-row:hover {
        background: transparent !important;
        color: inherit !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .project-row:hover .project-year,
    .project-row:hover .project-category {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .launchpad-card:hover {
        transform: none !important;
        border-color: rgba(255, 255, 255, 0.05) !important;
    }

    .service-item:hover {
        color: #ffffff !important;
    }

    .blurred-item:hover .blurred-text {
        filter: blur(0px) !important;
        opacity: 1 !important;
    }

    .blurred-item:hover .marquee-container {
        opacity: 0 !important;
    }

    .get-in-touch-btn:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .get-in-touch-btn:hover::before {
        left: -100% !important;
    }

    .get-in-touch-btn:hover .plus-icon {
        transform: none !important;
        background: #ff1c00 !important;
        color: white !important;
    }

    /* Hide the floating project preview image on mobile */
    .hover-image {
        display: none !important;
    }

}

/* Custom Web Components Display Fix */
app-faq,
app-cta,
app-footer {
    display: block;
    width: 100%;
}

/* --- Contact Us Section --- */
.contact-page-wrapper {
    background-color: #000;
    min-height: 100vh;
    padding-top: 1%;
    padding-bottom: 100px;
}

.contact-header-nav {
    position: absolute;
    top: 2.5rem;
    left: 3.5rem;
    right: 3.5rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- New Split Card Contact Section --- */
.contact-section {
    background-color: #000;
    width: 100%;
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-card-design {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Left Box: Interactive Gradient /
.contact-gradient-box {
background-color: #111;
border-radius: 24px;
position: relative;
overflow: hidden;
display: flex;
align-items: flex-end;
padding: 40px;
/ Base interactive gradient like hero */
--mouse-x: 50%;
--mouse-y: 50%;
background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
    #FF4B1F 0%,
    #FF6B3D 35%,
    #3A1710 70%,
    #050505 100%);
transition: background 0.1s ease;
border: none;
}

/* Glassy overlay to add texture */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><defs><mask id="hole"><rect width="80" height="80" fill="white" /><rect x="2" y="2" width="76" height="76" rx="18" fill="black" /></mask><linearGradient id="glass" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" stop-color="rgba(255,255,255,0.2)" /><stop offset="40%25" stop-color="rgba(0,0,0,0)" /><stop offset="100%25" stop-color="rgba(0,0,0,0.95)" /></linearGradient></defs><rect width="80" height="80" fill="%23050505" mask="url(%23hole)" /><rect x="2" y="2" width="76" height="76" rx="18" fill="url(%23glass)" /><rect x="2" y="2" width="76" height="76" rx="18" fill="transparent" stroke="rgba(255,255,255,0.15)" stroke-width="1.5" /></svg>');
    background-size: 80px 80px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 1;
}

.social-floating-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 30px;
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 2;
}

.social-floating-box p {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icons-row a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-row a {
    background-color: #ff4b1f;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 75, 31, 0.2);
}

/* Right Box: Form */
.contact-form-box {
    background-color: #080808;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-box .small-title {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #ff4b1f;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.contact-form-title {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.new-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.new-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-contact-form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

.new-contact-form input,
.new-contact-form textarea {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
}

.new-contact-form input,
.new-contact-form textarea {
    background-color: rgba(255, 75, 31, 0.05);
}

.new-contact-form textarea {
    resize: vertical;
}

.new-contact-form .btn-brand {
    align-self: flex-start;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.05rem;
    margin-top: 10px;
    background-color: #fff;
    color: #111;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-contact-form .btn-brand {
    background-color: #ff4b1f;
    color: #fff;
}

@media (max-width: 992px) {
    .split-card-design {
        grid-template-columns: 1fr;
    }

    .contact-gradient-box {
        min-height: 400px;
    }

    .contact-form-box {
        padding: 40px 30px;
    }

    .contact-form-title {
        font-size: 2.5rem;
    }

}



@media (max-width: 992px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
SERVICE PAGES
========================================================================== */

/* Testimonials Section (Service Pages) */
.testimonials-section {
    padding: 100px 5%;
    background-color: #000;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid .testimonial-box {
    flex: 1 1 300px;
    max-width: 380px;
    margin: 0;
}

.testimonials-grid .quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========================================================================== */

/* Stats & Gallery Section */
.service-stats-gallery {
    padding: 100px 5%;
    background-color: #000;
    color: #fff;
    position: relative;
    z-index: 2;
}

.stats-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Top Row */
.sg-top-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sg-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}

.sg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sg-image-wrapper img {
    transform: scale(1.05);
}

.sg-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sg-tag {
    background-color: rgba(255, 75, 31, 0.1);
    color: #ff4b1f;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.sg-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #fff;
}

.sg-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
    border-radius: 4px;
}

.sg-btn {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Middle Row: Stats Grid */
.sg-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-stat h3 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
}

.sg-stat h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.sg-stat p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

/* Bottom Row: Gallery Grid */
.sg-gallery-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 20px;
    height: 400px;
}

.sg-gallery-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.sg-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sg-gallery-img img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .sg-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sg-image-wrapper {
        aspect-ratio: 16/9;
    }

    .sg-gallery-row {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .sg-gallery-img {
        height: 300px;
    }

}

@media (max-width: 768px) {
    .sg-stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sg-headline {
        font-size: 2.2rem;
    }

    .sg-gallery-img {
        height: 200px;
    }

}

.service-page-wrapper {
    background-color: #000;
    min-height: 100vh;
    padding-bottom: 100px;
}

/* Service Hero */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.service-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.service-hero-title {
    font-size: 8rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
    text-transform: uppercase;
}

.service-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Reusing the gradient overlay for the hero background */
.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    --mouse-x: 50%;
    --mouse-y: 50%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
            #FF4B1F 0%,
            #FF6B3D 20%,
            #3A1710 50%,
            #050505 80%);
    transition: background 0.1s ease;
}

/* Fade out the glass grid smoothly at the top so the navbar is readable */
.service-hero-bg .gradient-overlay {
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100px, rgba(0, 0, 0, 1) 400px);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100px, rgba(0, 0, 0, 1) 400px);
}

/* Overview Section */
.service-overview {
    padding: 150px 5%;
    background-color: #000;
    position: relative;
    z-index: 2;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.overview-text span.highlight {
    color: #ff4b1f;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Bento Capabilities Grid */
.service-capabilities {
    padding: 100px 5%;
    background-color: #000;
    position: relative;
    z-index: 2;
}

.capabilities-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.capabilities-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff4b1f;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.bento-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.bento-card {
    transform: translateY(-5px);
    border-color: rgba(255, 75, 31, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.bento-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(255, 75, 31, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4b1f;
    margin-bottom: 30px;
}

.bento-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Staggered Ruler Timeline /
.staggered-timeline {
background-color: #000;
position: relative;
z-index: 2;
height: 250vh;
/ Scroll space for horizontal movement */
}

.timeline-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background glow */
.timeline-sticky::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 75, 31, 0.25) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 0;
}

.staggered-timeline .capabilities-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 80px;
    width: 100vw;
    flex-shrink: 0;
}

.timeline-scroll-wrapper {
    display: flex;
    flex-direction: column;
    width: max-content;
    padding: 0 5vw 0 10vw;
    /* padding to allow scrolling past the end */
    will-change: transform;
}

.comment-pill {
    display: inline-flex;
    background: #fff;
    color: #ff4b1f;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.comment-subtext {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.staggered-timeline .large-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.text-orange {
    color: #ff4b1f;
}

.rocket-icon {
    display: inline-block;
    transform: rotate(45deg);
    font-size: 2.5rem;
    vertical-align: middle;
    margin: 0 10px;
}

.staggered-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 200px;
    height: 350px;
    margin-bottom: 0;
    width: max-content;
}

.staggered-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 400px;
    /* Increased width */
    flex-shrink: 0;
}

.step-high {
    justify-content: flex-start;
}

.step-low {
    justify-content: flex-start;
    padding-top: 140px;
}

.step-content {
    text-align: center;
    padding: 0 15px;
}

.step-content h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.vertical-line {
    width: 1px;
    flex-grow: 1;
    background: rgba(255, 75, 31, 0.6);
    margin-top: 20px;
    margin-bottom: 18px;
    /* space before ruler pill */
}

.ruler-pill {
    width: auto;
    padding: 6px 6px 6px 16px;
    height: 36px;
    background: #0d0907;
    /* Opaque dark color to hide ruler track behind */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ruler-pill .time-text {
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
}

.ruler-pill .orange-box {
    width: 24px;
    height: 24px;
    background: #ff4b1f;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 75, 31, 0.4);
}

.ruler-track {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 75, 31, 0.4) 0px,
            rgba(255, 75, 31, 0.4) 2px,
            transparent 2px,
            transparent 10px);
    border-top: 1px solid rgba(255, 75, 31, 0.6);
    margin-top: 0;
}

@media (max-width: 992px) {
    .service-hero-title {
        font-size: 4.5rem;
    }

    .overview-text {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile styles for staggered timeline */
    .staggered-grid {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .staggered-step {
        width: 100%;
        padding-top: 0;
        margin-bottom: 40px;
    }

    .vertical-line,
    .ruler-pill,
    .ruler-track {
        display: none;
    }

}