    /* =========================
           Design tokens
           ========================= */
           :root{
            /* Colors */
            --ink-900: #091717;
            --black: #000000;
            --white: #FFFFFF;
            --eggshell: #FCFCF6;
            --purple: #B794F6;
            --purple-light: #D6BCFA;
            --gradient-purple: radial-gradient(circle, #AD86F3 0%, #D3BFFF 100%);
            
            /* Typography */
            --font-sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            
            /* Sizes */
            --fs-marquis: clamp(48px, 12vw, 160px);
            --fs-lead: clamp(20px, 3vw, 32px);
            --fs-small: 12px;
            --fs-body: 14px;
            --fs-nav: 13px;
            
            /* Layout */
            --container: 1400px;
            --gutter: 2.8vw;
            --radius: 24px;
            --radius-small: 999px;
            --marquee-speed: 1200;
        }
        
        /* Base Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html, body {
            margin: 0;
            padding: 0;
            background: var(--eggshell);
            color: var(--black);
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-sans);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.4;
            min-height: 100vh;
        }
        
        /* Container */
        .container {
            width: 100%;
            /* max-width: var(--container); */
            margin: 0 auto;
            /* padding: 0 var(--gutter); */
        }
        
        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            /* background: var(--eggshell); */
            background: transparent;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            font-family: var(--font-sans);
            font-size: 16px;
            font-weight: 400;
            color: var(--black);
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: opacity 0.2s ease;
            padding: 0 var(--gutter);

        }
        
        .logo:hover {
            opacity: 0.7;
        }
        
        .nav {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 0 var(--gutter);
        }
        
        .nav-link {
            font-family: var(--font-mono);
            font-size: var(--fs-nav);
            text-decoration: none;
            color: var(--black);
            padding: 10px 20px;
            border: 1px solid var(--black);
            border-radius: var(--radius-small);
            background: transparent;
            transition: all 0.2s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        .nav-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .nav-link.primary {
            background: var(--gradient-purple);
            border-color: transparent;
            color: var(--white);
        }
        
        .nav-link.primary:hover {
            background: var(--purple-light);
            border-color: var(--purple-light);
        }
        
        /* Main Content */
        main {
            padding-top: 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Hero Section */
        .hero {
            padding: 0px 0 12vh;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero-rule {
            width: 100%;
            height: 1px;
            background-color: var(--black);
            border: none;
            margin: 20px 0;
        }
        
        .hero-rule-top {
            margin-bottom: 3vh;
            margin-top: 0;
        }
        
        .hero-rule-bottom {
            margin-top: 2vh;
        }
        
   
        /* Keep hover pause */
        .marquee:hover {
            animation-play-state: paused;
        } 
         
        .lead {
            font-size: var(--fs-lead);
            font-weight: 500;
            line-height: 1.3;
            max-width: 68%;
            margin: 5vh 0 60px;
            padding: 0 var(--gutter);
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }
        .services {
            border-top: 1px solid var(--black);
            border-bottom: 1px solid var(--black);
            padding: 24px 0;
            margin-top: auto;
            animation: fadeInUp 0.8s ease 0.4s backwards;
            overflow: hidden;
        }
        .services-label {
            font-family: var(--font-mono);
            font-size: var(--fs-small);
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0.8;
            padding: 0 var(--gutter);
        }
         
       

        
    
        
        .services-marquee {
            position: relative;
            overflow: hidden;
            width: 100%;
            white-space: nowrap;
            mask-image: linear-gradient(90deg, 
                transparent 0%, 
                black 5%, 
                black 95%, 
                transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, 
                transparent 0%, 
                black 5%, 
                black 95%, 
                transparent 100%);
        }
        
        .services-track {
            display: flex;
            animation: scroll-marquee 24s linear infinite;
            will-change: transform;
        }
        
        .services-text {
            display: inline-block;
            font-size: 32px;
            font-weight: 500;
            letter-spacing: -0.01em;
            padding-right: 100px;
        }
        .service-item {
            font-size: 32px;
        }
        
        .services-content {
            display: flex;
            padding-right: 100px;
            min-width: max-content;
        }
        
        .services-list {
            display: flex;
            gap: 40px;
            white-space: nowrap;
        }
        
        .service-divider {
            font-size: 32px;
            margin: 0 20px;
            opacity: 0.6; 
        }
        
        /* Pause on hover for accessibility */
        .services-marquee:hover .services-track {
            animation-play-state: paused;
        }
        
        /* Services responsive */
        @media (max-width: 768px) {
            .services-text {
                font-size: 24px;
            }
            
            .services-track {
                animation-duration: 24s;
            }
        }
        
        @media (max-width: 480px) {
            .services-text {
                font-size: 18px;
            }
            
            .services-track {
                animation-duration: 20s;
            }
        }
        
        /* Reduced motion for services marquee */
        @media (prefers-reduced-motion: reduce) {
            .services-track {
                animation: none;
                padding-left: 0;
            }
            
            .services-marquee {
                overflow-x: auto;
                mask-image: none;
                -webkit-mask-image: none;
                padding: 10px var(--gutter);
            }
            
            .services-text {
                padding-right: 20px;
            }
        }
        
        /* CTA Section with inline form */
        .cta-section {
            padding: 4vh 0 60px;
            animation: fadeInUp 0.8s ease 0.6s backwards;
            /* border-top: 1px solid var(--black); */
            margin-top: auto;
        }

        .cta-container {
            padding: 0 var(--gutter);
            display: flex;
            justify-content: left;
        }

        .cta-content {
            display: flex;
            flex-direction: column;
            align-items: left;
            gap: 20px;
            max-width: 600px;
        }

        .cta-text {
            font-family: var(--font-mono);
            font-size: var(--fs-small);
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            opacity: 0.8;
            margin: 0;
        }

        .inline-email-form {
            display: flex;
            align-items: center;
            position: relative;
            min-width: 240px;
        }

        .inline-email-input {
            padding: 10px 45px 10px 16px;
            border: 1px solid #f2f2f2;
            border-radius: var(--radius-small);
            background: var(--white);
            font-family: var(--font-sans);
            font-size: var(--fs-body);
            color: var(--black);
            transition: all 0.2s ease;
            width: 100%;
            max-width: 600px;
        }

        .inline-email-input::placeholder {
            color: var(--black);
            opacity: 0.4;
        }

        .inline-email-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--purple);
            border-color: var(--purple);
        }

        .inline-email-button {
            position: absolute;
            right: 4px;
            padding: 8px 12px;
            background: transparent;
            color: var(--black);
            border: none;
            font-size: 18px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .inline-email-button:hover {
            transform: translateX(2px);
        }

        .inline-email-button:active {
            transform: translateX(0);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Hover animations for marquis */
        .marquis:hover {
            transform: scale(1.01);
            transition: transform 0.3s ease;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-list {
                flex-direction: row;
                gap: 40px;
            }
            
            .service-divider {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --gutter: 2.8vw;
            }
            
            .site-header {
                padding: 16px 0;
            }
            
            .nav {
                gap: 8px;
            }
            
            .nav-link {
                padding: 8px 16px;
                font-size: 12px;
            }
            
            .hero {
                padding: 40px 0 60px;
            }
            
            /* .marquis {
                margin-bottom: 30px;
            } */
            
            .lead {
                margin-bottom: 40px;
            }
            
            .services {
                padding: 16px 0;
            }
            
                    .services-list {
            font-size: 16px;
            display: flex;
            flex-direction: row;
            gap: 40px;
            white-space: nowrap;
        }
        }
        
        @media (max-width: 480px) {
            .nav-link {
                padding: 6px 12px;
                font-size: 11px;
            }
            
            .services-list {
                font-size: 14px;
            }
        }
        
        /* Accessibility */
        :focus-visible {
            outline: 2px solid var(--purple);
            outline-offset: 2px;
        }
        
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Selection styles */
        ::selection {
            background: var(--purple);
            color: var(--white);
        }

        /* Email Form Styles */
        .email-form-section {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transform: translateY(-20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 var(--gutter);
            margin: 20px 0 0;
        }

        .email-form-section.show {
            opacity: 1;
            max-height: 600px;
            transform: translateY(0);
            padding: 40px var(--gutter) 60px;
        }

        .email-form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .email-form {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

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

        .form-group:last-child {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-family: var(--font-mono);
            font-size: var(--fs-small);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            color: var(--black);
            opacity: 0.8;
        }

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

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 12px;
            font-family: var(--font-sans);
            font-size: var(--fs-body);
            background: var(--eggshell);
            color: var(--black);
            transition: all 0.2s ease;
            resize: vertical;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--purple);
            box-shadow: 0 0 0 3px rgba(183, 148, 246, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            line-height: 1.5;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--black);
            opacity: 0.5;
        }

        .enhance-button {
            font-family: var(--font-mono);
            font-size: 11px;
            padding: 6px 12px;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: var(--radius-small);
            color: var(--black);
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .enhance-button:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-1px);
        }

        .form-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 32px;
        }

        .send-button {
            padding: 12px 24px;
            background: var(--gradient-purple);
            color: var(--white);
            border: none;
            border-radius: var(--radius-small);
            font-family: var(--font-mono);
            font-size: var(--fs-body);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: lowercase;
        }

        .send-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(183, 148, 246, 0.4);
            background: var(--purple-light);
        }

        .send-button:active {
            transform: translateY(0);
        }

        /* Responsive form styles */
        @media (max-width: 768px) {
            .email-form {
                padding: 24px;
                border-radius: 16px;
            }

            .form-input,
            .form-textarea {
                padding: 14px;
            }

            .textarea-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .enhance-button {
                align-self: flex-end;
            }

            .form-actions {
                justify-content: stretch;
            }

            .send-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .email-form-section.show {
                padding: 32px var(--gutter) 48px;
            }

            .email-form {
                padding: 20px;
            }
        }
@keyframes marquee {
  
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;

  span{
    text-transform: uppercase;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;

    white-space: nowrap;
  }
}

.marquee-text[data-type="title"] {
    font-size: 128px;
    padding-right: 200px;

    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 500;
    animation: marquee 14s linear infinite;

}

.marquee-text[data-type="services"] {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 16s linear infinite;
    padding-right: 40px;

    gap: 40px; /* Space between services */


}
/* Individual service items */
.marquee-service {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.01em;
    
}

.marquee-divider {
    font-size: 32px;
    font-weight: 400;
}

.hero-rule-box {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    background: #E9FF54;
    padding: 3vh 0; /* matches the previous 3vh top/bottom spacing */
    width: 100%;
}

.hero-hand {
    position: absolute;
    top: 20%; /* Desktop positioning */
    right: 10%;
    width: clamp(220px, 28vw, 420px);
    height: auto;
    transform: rotate(-32deg);
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.18));
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Mobile positioning fix */
@media (max-width: 768px) {
    .hero-hand {
        width: clamp(200px, 40vw, 320px);
        transform: rotate(-5deg);
        top: 35%; /* Move it down a bit on mobile */
        right: 5%;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .hero-hand {
        top: 40%; /* Further down for very small screens */
        right: 0%;
        width: clamp(180px, 35vw, 280px);
    }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 6vh 0 48px;
    }

    .cta-content {
        gap: 16px;
    }

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

    .inline-email-form {
        width: 100%;
        max-width: 400px;
    }

    .inline-email-input {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 5vh 0 40px;
    }

    .cta-text {
        font-size: 11px;
    }
}

/* =========================
   About Page Styles
   ========================= */

/* About page header - no background effects */
body:has(.about-hero) .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* .about-hero::before {
    content: '';
    position: absolute;
    top: 40%;
    right: -500px;
    width: 65vw;
    height: 110%;
    background: radial-gradient(circle, #98A0F8, 0%, #EDE4FF, 50%, transparent 80%);
    pointer-events: none;
    z-index: 1;
} */

/* About Headline */
.about-headline {
    font-family: var(--font-mono);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.about-headline-part1 {
    color: var(--black);
}

.about-headline-part2 {
    background: linear-gradient(90deg, #E9EAE5 0%, #A1A1A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.animated-text {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    width: 500px;
    text-align: left;
}

/* About Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 22vw);
    gap: 24px;
    margin: 0 auto 80px;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
}

/* Card Stack Container */
.card-stack-container {
    position: relative;
    width: 22vw;
    height: 21.4vh;
    margin: 0 auto;
}

/* Mobile Navigation Dots */
.card-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E9E9E8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--purple);
    transform: scale(1.2);
}

.about-card {
    background: #F7F4ED;
    border-radius: 16px;
    border: 1px solid transparent;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
    width: 22vw;
    height: 21.4vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(162.35deg, #FCFCF6 -21.34%, #EDE4FF 46.44%, #98A0F8 122.52%);
    border: 1px solid #E9E9E8;
}

.about-card-top {
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    font-weight: 500;
    color: #091717;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.about-card-bottom {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: #091717;
    line-height: 1.3;
}

/* About CTA */
.about-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.about-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.about-cta-text {
    font-family: var(--font-mono);
    font-size: var(--fs-large);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.8;
    margin: 0;
    margin-left: 0rem;
}

.about-cta-button {
    font-family: var(--font-mono);
    font-size: var(--fs-body);
    font-weight: 500;
    color: var(--white);
    background: var(--gradient-purple);
    padding: 12px 24px;
    border-radius: var(--radius-small);
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 148, 246, 0.4);
    background: var(--purple-light);
}

.about-cta-button:active {
    transform: translateY(0);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-cards {
        grid-template-columns: repeat(2, 45vw);
        gap: 20px;
        justify-content: center;
    }
    
    .about-card {
        height: 21.4vh;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-headline {
        font-size: 56px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-headline {
        font-size: 36px;
        margin-bottom: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .about-headline-part1,
    .about-headline-part2 {
        display: inline-block;
        vertical-align: middle;
    }

    .about-headline-part2 {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .about-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 60px;
    }
    
    .card-stack-container {
        width: 80vw;
        height: 21.4vh;
        position: relative;
    }
    
    .about-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Varied shadows for messy stack effect */
    .about-card[data-index="0"] {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    
    .about-card[data-index="1"] {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    
    .about-card[data-index="2"] {
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    }
    
    .about-card[data-index="3"] {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }
    
    .card-dots {
        display: flex;
    }
    
    .about-card-bottom {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 0 0 30px;
    }
    
    .about-headline {
        font-size: 24px;
        margin-bottom: 8vh;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .about-headline-part1,
    .about-headline-part2 {
        display: inline-block;
        vertical-align: middle;
    }

    .about-headline-part2 {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .about-cards {
        margin-bottom: 20vh;
    }
    
    .card-stack-container {
        width: 90vw;
        height: 21.4vh;
    }
    
    .about-card {
        padding: 16px;
    }
    
    .about-card-bottom {
        font-size: 16px;
    }
    
    .about-cta-text {
        font-size: 11px;
        text-align: center;
        width: 79vw;
    }
    
    .about-cta {
        padding: 24px 16px;
    }
    
    .about-cta:hover {
        transform: none;
        box-shadow: none;
        background: transparent;
    }
}