@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --core-black: #020018;
    --deep-navy: #0F172A;
    --impulse-violet: #543D98;
    --white: #FFFFFF;
    --soft-grey: #F5F5F7;
    --font-heading: 'Satoshi', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--core-black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

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

/* 3D WebGL Canvas */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}

/* Glass Panels */
.glass-panel {
    background-color: rgba(2, 0, 24, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}



/* Nav */
nav {
    position: fixed;
    top: 15px;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(2, 0, 24, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
    /* Fixed slim height for the translucent patch */
    display: flex;
    justify-content: center;
    /* Center links */
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-left {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 110px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background 0.2s, color 0.2s;
    color: var(--white);
    opacity: 0.8;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Dropdown Styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    gap: 2rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgb(6, 3, 30);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 101;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--impulse-violet);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    opacity: 0.9;
}

.mobile-only-icon {
    display: none;
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-item {
    color: var(--white);
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
    display: block;
}

.dropdown-item:hover {
    background: rgba(84, 61, 152, 0.15);
    opacity: 1;
    color: var(--white);
    transform: translateX(8px);
}

.dropdown-item.sub-item {
    font-size: 0.85rem;
    padding-left: 2.2rem;
    margin-top: -0.35rem;
    margin-bottom: -0.1rem;
    opacity: 0.6;
    position: relative;
}

.dropdown-item.sub-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--white);
    opacity: 0.3;
}

.dropdown-item.sub-item:hover {
    opacity: 1;
    transform: translateX(8px);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.services-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-right {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.btn-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    border: 1px solid rgba(138, 92, 246, 0.55);
    border-radius: 100px;
    background: rgba(84, 61, 152, 0.15);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(138, 92, 246, 0.2), inset 0 0 8px rgba(138, 92, 246, 0.1);
}

.btn-nav:hover {
    background: rgba(84, 61, 152, 0.25);
    border-color: rgba(138, 92, 246, 1);
    box-shadow: 0 0 20px rgba(138, 92, 246, 0.6), inset 0 0 12px rgba(138, 92, 246, 0.3);
    transform: translateY(-1px);
}

/* Main Content Layering */
#main-content {
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
}

.container {
    max-width: 90vw;
    margin: 0 auto;
}

/* Split Text Reveal Base */
.line-wrapper {
    overflow: hidden;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
}

.word {
    display: inline-block;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
    background: transparent;
    text-align: center;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 6rem;
}

.title-large {
    font-size: 115px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    width: 100%;
    margin: 0 auto;
}

.text-violet {
    color: var(--impulse-violet);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
    gap: 3rem;
}

.hero-desc {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    max-width: 900px;
    width: 100%;
    line-height: 1.8;
    color: var(--soft-grey);
    opacity: 0.9;
    text-align: center;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    border: 2px solid rgba(138, 92, 246, 0.6);
    border-radius: 100px;
    background: rgba(84, 61, 152, 0.3);
    color: var(--white);
    transition: all 0.2s ease;
    z-index: 1;
}

.btn .btn-text {
    position: relative;
    z-index: 2;
}

.btn:hover {
    background: transparent;
    border-color: rgba(138, 92, 246, 1);
    box-shadow: 0 0 25px rgba(138, 92, 246, 0.7), inset 0 0 15px rgba(138, 92, 246, 0.4);
}

/* Neon Effect for both */
.btn::before,
.btn-nav::before,
.btn::after,
.btn-nav::after {
    content: '';
    position: absolute;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--impulse-violet), transparent);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.btn::before,
.btn-nav::before {
    top: 0;
}

.btn::after,
.btn-nav::after {
    bottom: -1px;
}

.btn:hover::before,
.btn-nav:hover::before {
    opacity: 1;
}

.btn:hover::after,
.btn-nav:hover::after {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .hero {
        padding: 0 1.5rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .title-large {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-bottom {
        margin-top: 2rem;
        gap: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .br-desktop {
        display: none;
    }
}

/* Section Headings */
.section-heading {
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
}

/* Cosmos Zoom Case Studies */
.cosmos-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: transparent;
}

.cosmos-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    transform-style: preserve-3d;
    pointer-events: none;
}

.cosmos-card {
    position: absolute;
    width: clamp(350px, 40vw, 600px);
    height: 60vh;
    top: 50%;
    left: 50%;
    background-color: rgba(2, 0, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform-origin: center center;
    will-change: transform, opacity;
    pointer-events: auto;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.cosmos-card:hover {
    border-color: rgba(138, 92, 246, 0.5);
    box-shadow: 0 0 24px rgba(138, 92, 246, 0.25);
    z-index: 100 !important;
}

.hs-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.cosmos-card:hover .hs-card-img {
    transform: scale(1.06);
}

.hs-card-inner {
    padding: 3rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(2, 0, 24, 0.9) 0%, rgba(2, 0, 24, 0.2) 100%, transparent 100%);
    width: 100%;
}

.hs-client {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.hs-desc {
    font-size: clamp(1.1rem, 1.2vw, 1.5rem);
    line-height: 1.6;
    font-family: var(--font-body);
    color: var(--soft-grey);
}

/* Services */
.services {
    padding: 10rem 0;
}

.scrub-item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scrub-left {
    width: 20%;
}

.scrub-right {
    width: 80%;
}

.scrub-title {
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1;
}

.text-fill {
    background: linear-gradient(to right, var(--white) 50%, rgba(255, 255, 255, 0.1) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.scrub-label {
    color: var(--impulse-violet);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scrub-desc {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    color: var(--soft-grey);
    opacity: 0.8;
}

/* Velocity Marquee */
.marquee-section {
    padding: 4rem 0;
    background-color: var(--impulse-violet);
    overflow: hidden;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.velocity-marquee {
    white-space: nowrap;
}

.velocity-marquee-inner {
    display: inline-flex;
}

.velocity-marquee span {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 2rem;
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    align-items: stretch;
}

.test-card-col {
    display: flex;
    flex-direction: column;
}

.test-card {
    background: rgba(2, 0, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    height: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    perspective: 1000px;
}

.test-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 0 30px 0 0;
    border-top: 3px solid var(--impulse-violet);
    border-right: 3px solid var(--impulse-violet);
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 0 0px var(--impulse-violet));
}

.test-card:hover::after {
    border-color: var(--white);
    filter: drop-shadow(0 0 15px var(--impulse-violet));
}

.test-content {
    transform: translateZ(30px);
}

.quote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-style: italic;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* .author-img — legacy circle styling superseded by mark-clip SVG below */
.author-info {
    display: flex;
    flex-direction: column;
}

.author {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--impulse-violet);
}

.role {
    font-size: 0.85rem;
    color: var(--soft-grey);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.company {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
}

/* Logos - Luminous Space Grid */
.logos {
    padding: 10rem 0;
    position: relative;
    z-index: 2;
    background: transparent;
}

.logos::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(84, 61, 152, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}
.logo-slider {
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    min-height: 500px;
}

.logo-card {
    /* Brand Colors & Config */
    --base: 280; /* Purple Hue */
    --radius: 18;
    --border: 3;
    --size: 320; /* Ultra-magnified for immersion */
    
    /* Calculated Properties */
    --border-size: calc(var(--border) * 1px);
    --spotlight-size: calc(var(--size) * 1px);
    
    background: transparent;
    border-radius: calc(var(--radius) * 1px);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* CRITICAL: Allow the aura to spill outside */
    opacity: 0; 
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
}

/* THE COSMIC HALO (Outer Aura Spill) */
.logo-card::before {
    content: "";
    position: absolute;
    inset: -30px; /* Large spill area */
    border-radius: inherit;
    background: radial-gradient(
        var(--spotlight-size) circle at var(--mouse-x, 0) var(--mouse-y, 0),
        hsla(var(--base), 100%, 70%, 0.4),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    filter: blur(25px); /* Soft cosmic glow */
    will-change: background;
}

/* THE PLASMA EDGE (Sharp Border Trace) */
.logo-card::after {
    content: "";
    position: absolute;
    inset: 0; /* Exactly match the white pane boundary */
    padding: var(--border-size);
    border-radius: inherit;
    background: radial-gradient(
        calc(var(--spotlight-size) * 0.8) circle at var(--mouse-x, 0) var(--mouse-y, 0),
        hsl(var(--base), 100%, 80%),
        transparent 60%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 12; /* Float precisely above the white pane border */
    filter: brightness(2) drop-shadow(0 0 10px hsla(var(--base), 100%, 60%, 0.8));
}

.logo-card:hover::before,
.logo-card:hover::after {
    opacity: 1;
}

/* The solid white pane + asset clipping wrapper */
.logo-pane {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: inherit;
    overflow: hidden; /* Clips the logos perfectly */
    border: var(--border-size) solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.logo-card:hover {
    transform: translateY(-12px) scale(1.06);
}

.logo-card:hover .logo-pane {
    box-shadow: 0 25px 60px rgba(84, 61, 152, 0.35);
    border-color: hsla(var(--base), 100%, 70%, 0.2);
}

.logo-card img {
    --base-scale: 1;
    transform: scale(var(--base-scale));
    max-width: 85%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    z-index: 6;
}

.logo-card:hover img {
    transform: scale(calc(var(--base-scale) + 0.1));
}

.fix-logo-grid {
    filter: contrast(1.2) brightness(1.1) !important;
    mix-blend-mode: multiply;
}

@media (max-width: 1024px) {
    .logo-grid { grid-template-columns: repeat(4, 1fr); }
}

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

@media (max-width: 768px) {
    .logo-slider {
        width: 100%;
        overflow: hidden;
        padding: 1rem 0;
    }
    .logo-grid {
        display: flex;
        width: max-content;
        animation: logoScroll 60s linear infinite;
        gap: 1.5rem;
        min-height: auto;
    }
    .logo-grid:hover {
        animation-play-state: paused;
    }
    .logo-card { 
        height: 90px;
        width: 180px;
        flex-shrink: 0;
        opacity: 1 !important; /* Force opacity on mobile since scroll reveals might miss them */
        transform: none !important;
    }
    .logo-pane {
        padding: 0.4rem;
    }
    .logo-card img {
        max-width: 95%;
        max-height: 90%;
        transform: scale(min(var(--base-scale), 1.15)) !important;
    }

    /* Testimonials Mobile Slider */
    .testimonial-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding-bottom: 2rem;
        /* hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }
    .test-card-col {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding-top: 0 !important;
    }
    
    .test-card {
        padding: 1.2rem !important;
        min-height: auto !important;
        max-height: 60vh;
        overflow-y: auto;
    }
    .quote {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    .author-block {
        gap: 0.75rem !important;
    }
    .author-img {
        width: 38px !important;
        height: 38px !important;
    }
    .author-info .author {
        font-size: 0.85rem !important;
        margin-bottom: 0.1rem !important;
    }
    .author-info .role, .author-info .company {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
    }
    
    .slider-dots {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin: 0 0.5rem;
    }
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .slider-dot.active {
        background: var(--impulse-violet);
        transform: scale(1.4);
    }
    
    .test-slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    .test-slider-btn {
        background: rgba(84, 61, 152, 0.15);
        border: 1px solid rgba(84, 61, 152, 0.3);
        color: var(--white);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    .test-slider-btn:hover {
        background: rgba(84, 61, 152, 0.4);
    }
    
    /* Blog Mobile Slider and Header Fixes */
    .blog-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem;
        margin-bottom: 2rem !important;
    }
    .blog-header .section-heading {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.1 !important;
    }
    
    .blog-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding-bottom: 2rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .blog-grid::-webkit-scrollbar {
        display: none;
    }
    
    .blog-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
        max-width: none !important;
    }
    
    .blog-slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    .blog-slider-btn {
        background: rgba(84, 61, 152, 0.15);
        border: 1px solid rgba(84, 61, 152, 0.3);
        color: var(--white);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }
    .blog-slider-btn:hover {
        background: rgba(84, 61, 152, 0.4);
    }
    
    /* Contact Section Mobile Fixes */
    .contact .section-heading {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
        line-height: 1.1 !important;
    }
    .contact-channel {
        padding: 1.5rem !important;
        gap: 1rem !important;
    }
    .contact-channel-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    .contact-channel-label {
        font-size: 0.75rem !important;
    }
    .contact-channel-value {
        font-size: 0.9rem !important;
        word-break: break-all; /* Prevents long emails from overflowing */
        white-space: normal;
    }
    
    /* Footer Mobile Responsiveness */
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem 0.5rem !important;
    }
    .footer-col:nth-child(1) {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col:nth-child(2),
    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        grid-column: span 1;
        text-align: left;
    }
    /* Ensure the 3 columns fit nicely by shrinking font size slightly */
    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(3) h4,
    .footer-col:nth-child(4) h4 {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem;
    }
    .footer-col:nth-child(2) ul li a,
    .footer-col:nth-child(3) ul li a,
    .footer-col:nth-child(4) ul li a {
        font-size: 0.7rem !important;
    }
    .footer-col:nth-child(5) {
        grid-column: 1 / -1;
        margin-top: 1rem;
        align-items: flex-start !important;
        text-align: left !important;
    }
    .contact-text {
        font-size: 0.85rem !important;
    }
    
    .footer-logo {
        margin: 0 auto 1rem auto !important;
    }
    .footer-tagline {
        margin: 0 auto 2rem auto !important;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .test-slider-controls,
    .blog-slider-controls {
        display: none;
    }
}



/* FAQ */
.faq {
    padding: 10rem 0;
    position: relative;
}

.blog {
    position: relative;
}

.accordion {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    cursor: pointer;
}

.acc-header h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-family: var(--font-heading);
    font-weight: 700;
    max-width: 85%;
}

.acc-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--impulse-violet);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.acc-content p {
    padding-bottom: 2.5rem;
    color: var(--soft-grey);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 900px;
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--white);
}

/* Contact */
.contact {
    padding: 10rem 0;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: var(--white);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 1.25rem;
}

.contact-channel:hover {
    background: rgba(84, 61, 152, 0.12);
    border-color: rgba(84, 61, 152, 0.4);
    transform: translateX(8px);
}

.contact-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(84, 61, 152, 0.15);
    border: 1px solid rgba(84, 61, 152, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--impulse-violet);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.contact-channel:hover .contact-channel-icon {
    background: rgba(84, 61, 152, 0.3);
    border-color: rgba(84, 61, 152, 0.5);
}

.contact-channel-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.contact-channel-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--impulse-violet);
    opacity: 0.9;
    font-weight: 600;
}

.contact-channel-value {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.contact-channel-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    transition: color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.contact-channel:hover .contact-channel-arrow {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--impulse-violet);
}

/* Footer */
footer {
    background-color: var(--core-black);
    padding: 6rem 4rem 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    align-items: start;
}

.footer-logo {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    /* SVG has ~8% internal left padding in its square viewBox; pulls visual edge flush with tagline */
    margin-left: -7px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.4;
    font-size: 1.1rem;
    max-width: 320px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.social-icon {
    color: var(--white);
    opacity: 0.5;
    font-size: 1.35rem;
    width: 24px;
    display: inline-flex;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover {
    opacity: 1;
    color: var(--impulse-violet);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--impulse-violet);
    margin-bottom: 2rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 1;
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--soft-grey);
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--white);
    padding-left: 8px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item.address-item {
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(84, 61, 152, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--impulse-violet);
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid rgba(84, 61, 152, 0.15);
}

.contact-text {
    color: var(--white);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: var(--soft-grey);
    opacity: 0.6;
    letter-spacing: 1px;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal-links a {
    color: var(--soft-grey);
    opacity: 0.6;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-legal-links .separator {
    color: var(--soft-grey);
    opacity: 0.3;
}

.footer-etched {
    position: relative;
    left: -4rem;
    width: calc(100% + 8rem);
    margin-top: 4rem;
    padding: 0;
}

/* ============================================================
   SERVICES — Mark as Motion Revealer
   ============================================================ */

/* .scrub-left becomes a flex column: mark draw on top, number below */
.scrub-left {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.75rem;
    padding-top: 0.25rem;
}

.service-mark-draw {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.service-mark-draw svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* The drawn path starts invisible (GSAP sets stroke-dashoffset at runtime) */
.service-mark-svg-path {
    fill: none;
    stroke: #543D98;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--impulse-violet);
    font-weight: 700;
    line-height: 1;
}

/* ============================================================
   TESTIMONIALS — Mark as Spatial Frame
   ============================================================ */
.testimonials {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

/* Large background mark that draws itself — the spatial field for testimonials */
.test-mark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(58vw, 700px);
    height: min(58vw, 700px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.test-mark-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* The drawn path — starts invisible, GSAP animates stroke-dashoffset */
.test-mark-path {
    fill: none;
    stroke: rgba(84, 61, 152, 0.28);
    stroke-width: 1.0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonial-grid {
    position: relative;
    z-index: 2;
}

.test-card {
    position: relative;
}

/* ============================================================
   BLOG CARDS — Clean typographic layout
   ============================================================ */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: rgba(2, 0, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: border-color 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    border-color: rgba(84, 61, 152, 0.4);
    background: rgba(2, 0, 24, 0.7);
}

.blog-card--featured {
    border-color: rgba(84, 61, 152, 0.25);
}

.blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card-inner {
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-top {
    margin-bottom: 1.5rem;
}

.blog-category {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--impulse-violet);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--soft-grey);
    opacity: 0.65;
    flex: 1;
    margin-bottom: 2rem;
}

.blog-card-footer {
    margin-top: auto;
}

.blog-read {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--impulse-violet);
    transition: color 0.3s;
}

.blog-read:hover {
    color: var(--white);
}

/* ============================================================
   CONTACT — Mark as Origin Point
   ============================================================ */

/* The mark behind the contact headline — draws itself as section enters */
.contact-mark-origin {
    position: absolute;
    top: 44%;
    left: 38%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.contact-mark-origin svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* The drawn path — starts invisible, GSAP animates stroke-dashoffset */
.contact-mark-path {
    fill: none;
    stroke: rgba(84, 61, 152, 0.42);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   FOOTER — Etched brand principle
   ============================================================ */

/* ============================================================
   THE MARK AS DNA (v27)
   The brand mark is not stamped on sections — it IS the
   architecture. Cursor, image frames, card geometry, dividers,
   page progress: all descended from the mark's geometry.
   ============================================================ */

/* ---------- 1. CURSOR IS THE MARK ---------- */
/* Every interaction lives inside the mark's geometry. */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24.5px;
    height: 24.5px;
    pointer-events: none;
    z-index: 999999 !important;
    transform: translate(-50%, -50%);
    color: var(--white);
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
    transition: width 0.35s cubic-bezier(0.76, 0, 0.24, 1),
        height 0.35s cubic-bezier(0.76, 0, 0.24, 1),
        color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-mark {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.cursor-mark-path {
    fill: currentColor;
    stroke: none;
    transition: fill 0.3s, stroke 0.3s, stroke-width 0.3s;
}

/* Custom cursor disabled — using OS default pointer */
.cursor,
.cursor-dot,
.cursor-text {
    display: none !important;
}

body {
    cursor: auto !important;
}

a,
button,
[role="button"],
.acc-header,
.social-icon,
.nav-item,
.btn,
.btn-nav {
    cursor: pointer !important;
}

/* ---------- 2. AUTHOR PHOTOS — restored to circle treatment ---------- */
.author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--impulse-violet);
    flex-shrink: 0;
}



/* ---------- 4. LOGOS CARD DISSOLVES INTO SPACE ---------- */
/* The white block no longer cuts the cosmos — it fades top
   and bottom into the dark, becoming a floating credential. */
.logo-display-card {
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 8%,
            black 22%,
            black 78%,
            rgba(0, 0, 0, 0.4) 92%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 8%,
            black 22%,
            black 78%,
            rgba(0, 0, 0, 0.4) 92%,
            transparent 100%);
    box-shadow:
        0 0 80px 12px rgba(84, 61, 152, 0.15),
        0 0 200px 60px rgba(84, 61, 152, 0.06);
}

/* ---------- 5. CARD GEOMETRY INHERITS MARK ASYMMETRY ---------- */
/* Every container's silhouette echoes the mark's directional curve.
   Small TL radius, oversized BR radius — the cards "point" forward. */
.test-card {
    border-radius: 8px 30px 8px 64px;
}

.blog-card {
    border-radius: 6px 48px 6px 48px;
}

.blog-card--featured {
    border-radius: 6px 48px 6px 48px;
}

.acc-item {
    border-radius: 0 0 0 0;
    transition: background 0.4s, border-radius 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.acc-item.active {
    background: rgba(84, 61, 152, 0.04);
    border-radius: 4px 4px 4px 32px;
}

/* Section dividers removed — no chain pattern between sections. */

/* ============================================================
   BRAND FILM — "Insight to Impact" (10s loop)
   Cinematic insert in the cosmos. No card, no rounded corners,
   no introduction. The film sits in the dark space and speaks
   for itself, with a subtle violet glow tying it to the scene.
   ============================================================ */
.brand-film {
    padding: 8rem 0;
    position: relative;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-film-frame {
    position: relative;
    width: 86vw;
    max-width: 1280px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    /* Violet ambient glow ties the film to the cosmic lighting */
    box-shadow:
        0 0 80px 10px rgba(84, 61, 152, 0.18),
        0 0 200px 60px rgba(84, 61, 152, 0.08),
        0 30px 120px rgba(0, 0, 0, 0.5);
}

.brand-film-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .scrub-item {
        flex-direction: column;
        gap: 2rem;
    }

    .scrub-left,
    .scrub-right {
        width: 100%;
    }


    .cosmos-card {
        width: 65vw;
        height: 45vh;
    }
    
    .hs-client {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hs-desc {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }

    .logo-grid-massive {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact .container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100% !important;
    }

    .footer-grid {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .test-mark-bg {
        width: 90vw;
        height: 90vw;
    }

    .contact-mark-origin {
        display: none;
    }

    .footer-etched-text {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }



    .cursor,
    .cursor-dot {
        display: none;
    }

    .brand-film {
        padding: 4rem 0;
    }

    .brand-film-frame {
        width: 92vw;
    }
}

/* ============================================================
   SERVICE PAGE SYSTEM (v55)
   Shared design language for all 15 service pages.
   The brand mark is the recurring atom — used as bullet,
   corner accent, constellation center, glyph in every chip.
   ============================================================ */

/* ---- Service Page Hero (monumental headline) ---- */
.svc-hero-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 4rem 6rem;
    text-align: center;
    position: relative;
}

.svc-hero-page-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.svc-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 7.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 3rem;
    color: var(--white);
}

/* SplitType wraps each line in an overflow:hidden box with only 0.1em
   of bottom padding — descenders like "g" / "p" / "y" get clipped at
   this scale. Override to give the hero enough room. */
.svc-hero-headline .line-wrapper {
    padding-bottom: 0.32em !important;
    margin-bottom: -0.32em !important;
}

.svc-hero-page-desc {
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    line-height: 1.75;
    color: var(--soft-grey);
    opacity: 0.9;
    max-width: 920px;
    margin: 0 auto 3rem;
}

.svc-hero-cta-row {
    display: inline-flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---- Service Hero (legacy, retained for safety) ---- */
.svc-hero {
    position: relative;
    min-height: 100vh;
    padding: 14rem 0 6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.svc-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.svc-hero-mark {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin-left: auto;
    pointer-events: none;
}

.svc-hero-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.svc-hero-mark-path {
    fill: none;
    stroke: rgba(138, 92, 246, 0.55);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 18px rgba(138, 92, 246, 0.35));
}

.svc-hero-mark-fill {
    fill: rgba(84, 61, 152, 0.06);
    opacity: 0;
}

.svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 1.1rem 0.55rem 0.7rem;
    border: 1px solid rgba(138, 92, 246, 0.35);
    border-radius: 100px;
    background: rgba(84, 61, 152, 0.08);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-grey);
    margin-bottom: 2rem;
}

.svc-eyebrow .mark-glyph {
    width: 18px;
    height: 18px;
}

.mark-glyph {
    display: inline-block;
    flex-shrink: 0;
}

.mark-glyph svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--impulse-violet);
}

.mark-glyph--white svg {
    fill: var(--white);
}

.mark-glyph--stroke svg {
    fill: none;
    stroke: var(--impulse-violet);
    stroke-width: 14;
}

.svc-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 2.5rem;
}

.svc-headline .accent {
    color: var(--impulse-violet);
}

.svc-hero-narrative {
    margin-bottom: 2.5rem;
}

.svc-hero-narrative p {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: var(--soft-grey);
    max-width: 560px;
}

.svc-hero-narrative .lead-line {
    color: var(--soft-grey);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.svc-hero-narrative .gap-line {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.svc-hero-narrative .resolve-line {
    color: var(--soft-grey);
    margin-bottom: 1.25rem;
}

.svc-hero-narrative .close-line {
    color: var(--soft-grey);
    opacity: 0.85;
}

.svc-hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.2rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--soft-grey);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--impulse-violet);
    color: var(--white);
    background: rgba(84, 61, 152, 0.1);
}

.btn-secondary .mark-glyph {
    width: 14px;
    height: 14px;
}

/* ---- Section Frame ---- */
.svc-section {
    padding: 9rem 0;
    position: relative;
}

.svc-section .container {
    position: relative;
    z-index: 2;
}

.svc-eyebrow-section {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--impulse-violet);
    margin-bottom: 1.5rem;
}

.svc-eyebrow-section .mark-glyph {
    width: 14px;
    height: 14px;
}

.svc-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 4rem;
    max-width: 1100px;
}

/* ---- Stats Strip ---- */
.svc-stats {
    padding: 7rem 0;
    position: relative;
}

.svc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4.5rem 0;
}

.svc-stat {
    position: relative;
    padding: 0 1rem 0 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-stat:first-child {
    border-left: none;
    padding-left: 0;
}

.svc-stat-mark {
    width: 28px;
    height: 28px;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.svc-stat-number {
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--white) 0%, var(--impulse-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.svc-stat-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--soft-grey);
    opacity: 0.75;
    max-width: 320px;
}

.svc-stats-footnote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.7;
    text-align: center;
}

/* ---- Problem (Mark as Spatial Field) ---- */
.svc-problem {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.svc-problem-mark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(60vw, 720px);
    height: min(60vw, 720px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.svc-problem-mark-bg svg {
    width: 100%;
    height: 100%;
}

.svc-problem-mark-bg path {
    fill: none;
    stroke: rgba(84, 61, 152, 0.22);
    stroke-width: 1.0;
}

.svc-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.svc-problem-body p {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    line-height: 1.7;
    color: var(--soft-grey);
    margin-bottom: 1.5rem;
}

.svc-problem-body .pivot {
    color: var(--impulse-violet);
    font-weight: 600;
    font-style: italic;
}

.svc-problem-body .emphasis {
    color: var(--white);
    font-weight: 500;
}

.svc-problem-body .gaps-list {
    color: var(--soft-grey);
    opacity: 0.6;
    font-size: 1.05rem;
    border-left: 2px solid rgba(84, 61, 152, 0.4);
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
}

/* ---- Chatbot vs Agentic ---- */
.svc-vs {
    padding: 11rem 0;
    position: relative;
}

.svc-vs-stack {
    max-width: 1180px;
    margin: 0 auto;
}

.svc-vs-line {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-vs-line.line-quiet {
    opacity: 0.7;
}

.svc-vs-label {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.5vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--impulse-violet);
    width: 240px;
    flex-shrink: 0;
}

.svc-vs-line.line-quiet .svc-vs-label {
    color: var(--soft-grey);
    opacity: 0.55;
}

.svc-vs-statement {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    white-space: normal;
}

.svc-vs-statement-loud {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.svc-vs-line.line-quiet .svc-vs-statement {
    font-weight: 400;
    color: var(--soft-grey);
}

/* Strikethrough across "replies." — draws as the agentic line lands.
   The line is the recall moment: the chatbot's reply gets crossed out. */
.svc-vs-strike {
    position: relative;
    display: inline-block;
}

.svc-vs-strike::after {
    content: "";
    position: absolute;
    left: -4%;
    top: 56%;
    width: 0;
    height: 3px;
    background: linear-gradient(to right,
            rgba(138, 92, 246, 0) 0%,
            rgba(138, 92, 246, 0.95) 12%,
            rgba(138, 92, 246, 0.95) 88%,
            rgba(138, 92, 246, 0) 100%);
    transform: translateY(-50%);
    box-shadow: 0 0 14px rgba(138, 92, 246, 0.55);
    pointer-events: none;
}

/* Violet underline draws under "the next step" once the headline arrives. */
.svc-vs-highlight {
    position: relative;
    color: var(--impulse-violet);
    display: inline-block;
}

.svc-vs-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.05em;
    width: 0;
    height: 4px;
    background: var(--impulse-violet);
    box-shadow: 0 0 18px rgba(138, 92, 246, 0.85);
    pointer-events: none;
}

.svc-vs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- Vertical pipeline of agent's "next steps" ---- */
.svc-vs-pipeline {
    position: relative;
    margin: 5rem 0 4rem;
    padding: 0;
}

.svc-vs-pipeline::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 1.75rem;
    bottom: 1.75rem;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(138, 92, 246, 0.32) 6%, rgba(138, 92, 246, 0.32) 94%, transparent 100%);
    pointer-events: none;
}

.svc-vs-step {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 1.6rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.svc-vs-step:last-child {
    border-bottom: none;
}

.step-marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.7rem;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(2, 0, 24, 1);
    border: 2px solid rgba(138, 92, 246, 0.45);
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    position: relative;
}

.svc-vs-step.lit .step-dot {
    background: var(--impulse-violet);
    border-color: var(--impulse-violet);
    box-shadow: 0 0 14px rgba(138, 92, 246, 0.85), 0 0 32px rgba(138, 92, 246, 0.4);
    transform: scale(1.15);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--impulse-violet);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.step-label {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.7vw, 2.7rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: rgba(245, 245, 247, 0.5);
    transition: color 0.6s ease;
}

.svc-vs-step.lit .step-label {
    color: var(--white);
}

@media (max-width: 1024px) {
    .svc-vs-step {
        gap: 1.5rem;
        padding: 1.2rem 0;
    }

    .step-label {
        font-size: clamp(1.15rem, 4vw, 1.6rem);
    }
}

.svc-vs-closing {
    margin-top: 4rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--soft-grey);
    max-width: 700px;
    opacity: 0.85;
}

/* ---- Use Cases Grid ---- */
.svc-uses {
    padding: 9rem 0;
}

.svc-uses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.svc-use-card {
    position: relative;
    padding: 3.5rem 3rem 3.5rem 3rem;
    background: rgba(2, 0, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px 56px 8px 56px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.svc-use-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(300px circle at var(--mouse-x, -200px) var(--mouse-y, -200px),
            rgba(138, 92, 246, 0.12),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.svc-use-card:hover {
    border-color: rgba(138, 92, 246, 0.4);
    transform: translateY(-6px);
}

.svc-use-card:hover::before {
    opacity: 1;
}

.svc-use-corner {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    opacity: 0.5;
}

.svc-use-corner svg {
    width: 100%;
    height: 100%;
}

.svc-use-corner path {
    fill: none;
    stroke: var(--impulse-violet);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-use-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--impulse-violet);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.svc-use-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--white);
    max-width: 80%;
}

.svc-use-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.svc-use-outcome {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    font-style: italic;
}

/* ---- Channels Constellation ---- */
.svc-channels {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.svc-channels-intro {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.8;
    margin-bottom: 5rem;
}

.svc-channels-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 640px;
    margin: 0 auto;
}

.svc-channels-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    pointer-events: none;
}

.svc-channels-center svg {
    width: 100%;
    height: 100%;
    display: block;
}

.svc-channels-center path {
    fill: none;
    stroke: rgba(138, 92, 246, 0.85);
    stroke-width: 6;
}

.svc-channels-pulse {
    fill: rgba(168, 130, 255, 1);
}

.svc-channels-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.svc-channels-orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.svc-channels-orbit-svg line {
    stroke: rgba(138, 92, 246, 0.18);
    stroke-width: 1;
    stroke-dasharray: 3 6;
}

.svc-channel-chip {
    position: absolute;
    /* Use clamp to prevent chips from bleeding out of the viewport on both edges */
    left: clamp(100px, var(--chip-left, 50%), calc(100% - 100px));
    top: clamp(40px, var(--chip-top, 50%), calc(100% - 40px));
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.7rem 1.3rem;
    background: rgba(2, 0, 24, 0.85);
    border: 1px solid rgba(138, 92, 246, 0.35);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-grey);
    backdrop-filter: blur(8px);
    pointer-events: auto;
    transition: all 0.3s ease;
    white-space: normal;
    max-width: 180px;
    line-height: 1.4;
    z-index: 2;
}

.svc-channel-chip .mark-glyph {
    width: 10px;
    height: 10px;
}

.svc-channel-chip:hover {
    border-color: var(--impulse-violet);
    color: var(--white);
    box-shadow: 0 0 28px rgba(138, 92, 246, 0.55);
    background: rgba(84, 61, 152, 0.18);
}

/* ---- Connected Systems ---- */
.svc-systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.svc-systems-intro p {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: var(--soft-grey);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.svc-systems-intro .closer {
    color: var(--white);
    font-weight: 500;
    font-style: italic;
    opacity: 1;
    margin-top: 2.5rem;
}

.svc-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--soft-grey);
}

.svc-bullet-list li .mark-glyph {
    width: 14px;
    height: 14px;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.svc-bullet-list li:first-child {
    padding-top: 0;
}

.svc-bullet-list li:last-child {
    border-bottom: none;
}

/* ---- Guardrails ---- */
.svc-guardrails {
    padding: 8rem 0;
    position: relative;
}

.svc-guard-intro {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

.svc-guard-intro p {
    margin-bottom: 1.25rem;
}

.svc-guard-intro .pivot {
    color: var(--white);
    font-weight: 500;
}

.svc-guard-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 3rem 0;
}

.svc-guard-row {
    display: grid;
    grid-template-columns: 60px 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.svc-guard-row:hover {
    background: rgba(84, 61, 152, 0.04);
}

.svc-guard-row .mark-glyph {
    width: 36px;
    height: 36px;
    opacity: 0.8;
}

.svc-guard-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.svc-guard-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-grey);
    opacity: 0.75;
}

.svc-guard-punchline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-align: center;
    margin-top: 4rem;
}

.svc-guard-punchline .accent {
    color: var(--impulse-violet);
}

/* ---- Right For You Checklist ---- */
.svc-fit {
    padding: 8rem 0;
}

.svc-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.svc-fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-fit-list li {
    display: block;
    padding: 1.75rem 0 1.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 2px solid rgba(84, 61, 152, 0.25);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--soft-grey);
    transition: color 0.3s ease, border-left-color 0.3s ease;
}

.svc-fit-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.svc-fit-list li:hover {
    color: var(--white);
    border-left-color: var(--impulse-violet);
}

.svc-fit-closer {
    margin-top: 3rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
}

/* ---- Final Pre-Contact CTA ---- */
.svc-final-cta {
    padding: 10rem 0;
    text-align: center;
    position: relative;
}

.svc-final-cta-mark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2.5rem;
    opacity: 0.7;
}

.svc-final-cta-mark svg {
    width: 100%;
    height: 100%;
}

.svc-final-cta-mark path {
    fill: none;
    stroke: var(--impulse-violet);
    stroke-width: 8;
}

.svc-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.svc-final-cta-body {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.85;
}

.svc-final-cta-actions {
    display: inline-flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.svc-final-cta-footnote {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--impulse-violet);
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.85;
}

/* ---- Service Page responsive ---- */
@media (max-width: 1024px) {

    .svc-hero,
    .svc-hero-page {
        padding: 9rem 1.5rem 4rem;
    }

    .svc-hero-headline {
        font-size: clamp(1.8rem, 7.5vw, 4.5rem) !important;
    }

    .svc-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-hero-mark {
        max-width: 360px;
        margin: 0 auto;
    }

    .svc-stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-stat {
        border-left: none;
        padding-left: 0;
        padding-bottom: 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .svc-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .svc-problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-uses-grid {
        grid-template-columns: 1fr;
    }

    .svc-systems-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .svc-fit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .svc-vs-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .svc-vs-label {
        width: auto;
    }

    .svc-guard-row {
        grid-template-columns: 20px 1fr;
        gap: 0.75rem 1.5rem;
    }

    .svc-guard-row .svc-guard-desc {
        grid-column: 2;
    }

    .svc-channels-stage {
        aspect-ratio: 1 / 1.25;
    }

    .svc-channels-center {
        width: 90px;
        height: 90px;
    }

    .svc-channel-chip {
        font-size: 0.55rem;
        padding: 0.35rem 0.5rem;
        letter-spacing: 0.2px;
        max-width: 110px;
        line-height: 1.25;
        left: clamp(55px, var(--chip-left, 50%), calc(100% - 55px));
        top: clamp(25px, var(--chip-top, 50%), calc(100% - 25px));
    }

    /* Consistent reduced gaps between sections on mobile/tablet */
    .svc-problem,
    .svc-vs,
    .svc-uses,
    .svc-fit,
    .svc-section,
    .svc-guardrails,
    .svc-final-cta,
    .faq,
    .services,
    .cases-pin {
        padding: 5rem 0 !important;
    }

    .svc-handoff {
        height: 40px !important;
    }
}

/* ==============================================================
   AGENTIC AI v70 — STUNNING POLISH PASS
   Hero choreography, architectural stats, broken-chain gaps,
   systems node diagram, big punchline, final-cta reimagined,
   ticking checklist, idle life, use-case cascade, handoffs.
   ============================================================== */

/* ---- 1. Idle breathing on prominent mark glyphs ---- */
@keyframes mark-breathe {

    0%,
    100% {
        opacity: 0.92;
        transform: scale(1);
    }

    50% {
        opacity: 1.0;
        transform: scale(1.035);
    }
}

.svc-channels-center,
.svc-final-cta-mark {
    transform-origin: center center;
}

.svc-channels-center svg {
    animation: mark-breathe 6s ease-in-out infinite;
}

/* ---- 2. Channel chip idle bob ---- */
@keyframes chip-bob {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 6px));
    }
}

.svc-channel-chip {
    animation: chip-bob 5.5s ease-in-out infinite;
}

.svc-channel-chip:nth-child(2n) {
    animation-duration: 6.5s;
    animation-delay: -1s;
}

.svc-channel-chip:nth-child(3n) {
    animation-duration: 7.2s;
    animation-delay: -2.5s;
}

.svc-channel-chip:nth-child(5n) {
    animation-duration: 5.8s;
    animation-delay: -3.5s;
}

.svc-channel-chip:hover {
    animation-play-state: paused;
}

/* ---- 3. Stats architectural ---- */
.svc-stats-grid {
    position: relative;
}

.svc-stats-line {
    position: absolute;
    top: 38%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(138, 92, 246, 0.55) 12%, rgba(138, 92, 246, 0.55) 88%, transparent 100%);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    pointer-events: none;
    z-index: 0;
}

.svc-stat {
    position: relative;
    z-index: 1;
}

.svc-stat-mark {
    width: 36px !important;
    height: 36px !important;
}

.svc-stat-number {
    font-size: clamp(4.5rem, 8vw, 8rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.05em !important;
}

/* ---- 4. Problem section: broken-chain gaps ---- */
.svc-problem-gaps {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
    border-left: 2px solid rgba(84, 61, 152, 0.4);
    padding-left: 1.5rem;
}

.svc-problem-gaps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--soft-grey);
    opacity: 0;
    transform: translateX(-14px);
    font-size: 1.05rem;
    line-height: 1.45;
    position: relative;
}

.svc-problem-gaps .gap-mark {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

.svc-problem-gaps .gap-mark svg {
    width: 100%;
    height: 100%;
    fill: var(--impulse-violet);
}

.svc-problem-gaps .gap-text {
    position: relative;
    display: inline-block;
}

.svc-problem-gaps .gap-text::after {
    display: none;
}

/* ---- 5. Connected Systems node diagram ---- */
.svc-systems-grid {
    align-items: center !important;
}

.svc-systems-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin-left: auto;
}

.svc-systems-stage .lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.svc-systems-stage .lines line {
    stroke: rgba(138, 92, 246, 0.22);
    stroke-width: 1;
    stroke-dasharray: 3 6;
}

.svc-systems-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
    animation: mark-breathe 6s ease-in-out infinite;
}

.svc-systems-center svg {
    width: 100%;
    height: 100%;
    display: block;
}

.svc-systems-center path {
    fill: none;
    stroke: rgba(138, 92, 246, 0.85);
    stroke-width: 6;
}

.svc-system-node {
    position: absolute;
    transform: translate(-50%, -50%);
    background: rgba(2, 0, 24, 0.88);
    border: 1px solid rgba(138, 92, 246, 0.4);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--soft-grey);
    backdrop-filter: blur(8px);
    text-align: center;
    max-width: 220px;
    line-height: 1.4;
    transition: all 0.3s ease;
    cursor: default;
}

.svc-system-node:hover {
    border-color: var(--impulse-violet);
    color: var(--white);
    box-shadow: 0 0 28px rgba(138, 92, 246, 0.4);
}

.svc-systems-pulse {
    fill: rgba(168, 130, 255, 1);
}

/* ---- 6. Guardrails punchline ---- */
.svc-guard-punchline {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 7.5vw, 7.5rem) !important;
    margin: 2rem 0 0 !important;
    padding: 2rem 0 !important;
    text-align: center !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
    font-weight: 800 !important;
    position: relative;
}

.svc-guard-punchline-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.28em;
    margin-bottom: -0.18em;
    line-height: 1.1;
}

.svc-guard-punchline-line .inner {
    display: inline-block;
}

/* ---- 7. Final CTA reimagined ---- */
.svc-final-cta {
    padding: 14rem 0 13rem !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.svc-final-cta-mark {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: min(85vw, 1100px) !important;
    height: min(85vw, 1100px) !important;
    margin: 0 !important;
    opacity: 1 !important;
    z-index: 0 !important;
    pointer-events: none;
}

.svc-final-cta-mark svg {
    width: 100%;
    height: 100%;
}

.svc-final-cta-mark path {
    stroke: rgba(138, 92, 246, 0.1);
    stroke-width: 1.6;
}

.svc-final-cta-mark .svc-final-cta-path {
    fill: none;
    stroke: rgba(138, 92, 246, 0.18);
    stroke-width: 1.7;
}

.svc-final-cta .container {
    isolation: isolate;
}

/* ---- Systems pills (replaces node diagram) ---- */
.svc-systems-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .svc-systems-pills {
        flex-direction: column;
    }
}

.svc-system-pill {
    padding: 1.05rem 1.25rem;
    border: 1px solid rgba(138, 92, 246, 0.3);
    border-radius: 24px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 1.1px;
    color: var(--soft-grey);
    text-align: left;
    line-height: 1.5;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.svc-system-pill strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Specific sizing for Consumer Intelligence When To Use pills */
.ci-when-to-use .svc-system-pill {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.75rem;
    font-size: 0.85rem;
}

.svc-system-pill span {
    display: block;
    opacity: 0.82;
}

.svc-system-pill:hover {
    border-color: var(--impulse-violet);
    color: var(--white);
}

.svc-final-cta .container {
    position: relative;
    z-index: 2;
}

.svc-final-cta h2 {
    font-size: clamp(3rem, 8.5vw, 8.5rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em !important;
    font-weight: 900 !important;
    margin-bottom: 2.5rem !important;
}

.svc-final-cta-body {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem) !important;
    margin-bottom: 4rem !important;
    max-width: 760px !important;
}

.svc-final-cta-footnote {
    font-size: clamp(1.05rem, 1.5vw, 1.5rem) !important;
    font-style: normal !important;
    margin-top: 5rem !important;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    color: var(--soft-grey) !important;
    opacity: 0.85 !important;
}

/* ---- 8. Ticking checklist (mark draws-in then fills) ---- */
.svc-fit-list .mark-glyph {
    position: relative;
}

.svc-fit-list .mark-glyph svg {
    overflow: visible;
}

.svc-fit-list .mark-glyph svg path {
    fill: rgba(84, 61, 152, 0);
    stroke: var(--impulse-violet);
    stroke-width: 18;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill 0.3s ease;
}

.svc-fit-list li.ticked .mark-glyph svg path {
    fill: rgba(84, 61, 152, 1);
}

/* ---- 9. Use case card cascade & stronger lift ---- */
.svc-use-card {
    transition: border-color 0.4s, transform 0.7s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
}

.svc-use-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 70px rgba(84, 61, 152, 0.28);
}

.svc-use-card .svc-use-corner {
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.svc-use-card:hover .svc-use-corner {
    opacity: 0.85;
    transform: scale(1.08) rotate(-4deg);
}

/* ---- 10. Section handoffs ---- */
.svc-handoff {
    height: 80px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    pointer-events: none;
}

.svc-handoff-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(0);
    transform-origin: center;
    width: min(60vw, 800px);
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(138, 92, 246, 0.35) 50%, transparent 100%);
    transition: transform 1.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.svc-handoff.active .svc-handoff-line {
    transform: translate(-50%, -50%) scaleX(1);
}

.svc-handoff-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 18px;
    height: 18px;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
}

.svc-handoff-mark svg {
    width: 100%;
    height: 100%;
}

.svc-handoff-mark svg path {
    fill: var(--impulse-violet);
}

.svc-handoff.active .svc-handoff-mark {
    transform: translate(-50%, -50%) scale(1);
}

/* Footer Hover SVG Effect */
.svg-text-base {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    font-weight: 900;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

#footer-hover-svg:hover .svg-text-base {
    opacity: 0.7;
}

.svg-text-animated {
    fill: transparent;
    stroke: var(--impulse-violet);
    font-family: var(--font-heading);
    font-weight: 900;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 4s ease-in-out forwards infinite alternate;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.svg-text-fill {
    fill: transparent;
    font-family: var(--font-heading);
    font-weight: 900;
}

/* ==============================================================
   ARCHER AI INLINE STYLES (MIGRATED)
   ============================================================== */
#channels-stage {
    overflow: visible !important;
}

#channels-stage .archer-reticle {
    width: 100%;
    height: 100%;
    color: rgba(138, 92, 246, 0.9);
    overflow: visible;
}

#channels-stage .reticle-dot {
    fill: rgba(220, 200, 255, 1);
    filter: drop-shadow(0 0 8px rgba(138, 92, 246, 0.85));
}

#channels-stage #channels-orbit-lines .archer-sightline {
    stroke: rgba(138, 92, 246, 0.5);
    stroke-width: 1;
    stroke-dasharray: none;
    fill: none;
}

#channels-stage .svc-channel-chip {
    max-width: 260px;
    white-space: normal !important;
    text-align: center;
    line-height: 1.45;
    opacity: 1 !important;
}

/* AI Runs the Engine — compact horizontal AI/Humans split */
.archer-split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.archer-split-divider {
    align-self: stretch;
    background: linear-gradient(to bottom, rgba(138, 92, 246, 0) 0%, rgba(138, 92, 246, 0.3) 50%, rgba(138, 92, 246, 0) 100%);
}

.archer-split-side {
    text-align: center;
}

.archer-split-label {
    font-size: 0.75rem;
    color: var(--impulse-violet);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.archer-pill-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.archer-pill {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    border: 1px solid rgba(138, 92, 246, 0.42);
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    line-height: 1.4;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.archer-pill:hover {
    border-color: rgba(138, 92, 246, 0.75);
    background: rgba(138, 92, 246, 0.08);
    color: #fff;
}

@media (max-width: 768px) {
    .archer-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .archer-split-divider {
        height: 1px;
        width: 60%;
        margin: 0 auto;
        background: linear-gradient(to right, rgba(138, 92, 246, 0) 0%, rgba(138, 92, 246, 0.3) 50%, rgba(138, 92, 246, 0) 100%);
    }
}

/* ============================================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ============================================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    margin-left: 1.5rem;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {

    /* Navbar Responsiveness */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 0, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center; /* Center align! */
        gap: 1.5rem;
        padding: 7rem 1.5rem 4rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1001;
    }

    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        font-size: 1.8rem; /* Make it large and premium */
        margin: 0;
        font-weight: 500;
        opacity: 0.9;
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align! */
    }

    .nav-dropdown .services-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: transparent !important;
        border: none !important;
        color: var(--white);
        font-family: var(--font-body);
        font-size: 1.8rem;
        font-weight: 500;
        cursor: pointer;
        padding: 0;
        opacity: 0.9;
    }

    .services-toggle.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-content {
        display: none;
    }

    .dropdown-content.mobile-expanded,
    .nav-dropdown:hover .dropdown-content.mobile-expanded {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 1.5rem 0 1rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: transparent;
        border: none;
        gap: 2rem;
        width: 100%;
        max-width: none;
        margin: 0;
        left: auto !important;
    }

    .dropdown-col {
        background: transparent;
        border-radius: 0;
        padding: 0;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align! */
        width: 100%;
    }

    .dropdown-col h4 {
        margin-bottom: 0;
        padding: 1rem 0;
        font-size: 0.95rem;
        letter-spacing: 2px;
        opacity: 0.8;
        text-align: center;
        width: 100%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-col h4.active {
        color: var(--white);
        opacity: 1;
    }

    .mobile-only-icon {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 1;
    }

    .dropdown-list {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
        background: rgba(0,0,0,0.2);
    }

    .dropdown-list.mobile-open {
        display: flex; /* Shown when clicked */
    }

    .dropdown-item {
        padding: 0.6rem 0;
        text-align: center;
        font-size: 1.1rem;
        opacity: 0.75;
    }

    .dropdown-item.sub-item {
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 1rem;
        opacity: 0.6;
    }
    
    .dropdown-item.sub-item::before {
        display: none;
    }

    nav {
        top: 0;
        padding: 1rem 0;
    }

    .nav-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        align-items: center;
        z-index: 1002;
    }

    .nav-container {
        justify-content: space-between;
        padding: 0 1.5rem;
    }

    .nav-left {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        z-index: 1002;
    }

    /* Home Page Core Adjustments */
    .hero {
        padding: 0 2rem;
    }

    .title-large {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-content {
        padding-top: 8rem;
    }

    /* General Spacing Reductions */
    .services,
    .testimonials,
    .logos,
    .faq,
    .contact,
    .svc-section,
    .brand-film {
        padding: 5rem 0;
    }

    .svc-hero-page,
    .svc-hero {
        padding: 9rem 1.5rem 4rem;
        text-align: center;
    }

    .section-heading,
    .svc-h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 2rem;
    }

    /* Services/Scrub Item */
    .scrub-item {
        padding: 3rem 0;
        flex-direction: column;
        gap: 2rem;
    }

    .scrub-left,
    .scrub-right {
        width: 100%;
    }

    .scrub-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    .scrub-desc {
        font-size: 1.1rem;
    }

    /* Footer adjustments */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    footer {
        padding: 4rem 2rem 0;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contact-col {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* More specific mobile tweaks */
    .hero {
        padding: 0 1.25rem;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .title-large {
        font-size: clamp(1.8rem, 8.5vw, 2.2rem);
    }

    .text-violet {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-bottom {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1rem;
        font-size: clamp(0.6rem, 3vw, 0.8rem);
        white-space: nowrap;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
    }

    .btn-nav {
        display: none;
        /* Hide 'Contact Us' button in nav on very small screens to fit logo and hamburger */
    }

    .logo img {
        height: 80px;
    }

    .svc-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .svc-stat {
        border-left: none;
        padding-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 2rem;
    }

    .svc-stat:last-child {
        border-bottom: none;
    }

    .svc-problem-grid,
    .svc-hero-grid,
    .svc-uses-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-hero-mark {
        max-width: 300px;
        margin: 0 auto;
    }

    .svc-vs-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .svc-vs-label {
        width: 100%;
    }

    .svc-vs-statement,
    .svc-vs-statement-loud {
        font-size: 2rem;
        white-space: normal;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 0;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.15);
}

.scroll-boomerang {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.scroll-to-top:hover .scroll-boomerang {
    transform: rotate(-45deg);
}

.scroll-boomerang .boomerang-outline {
    fill: none;
    stroke: rgba(138, 92, 246, 0.4); /* Faded violet outline */
    stroke-width: 15;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: calc(1000 - (var(--scroll-progress, 0) * 1000));
    transition: stroke-dashoffset 0.2s ease-out;
}

.scroll-boomerang .boomerang-fill {
    fill: var(--impulse-violet); /* Solid violet fill */
    clip-path: inset(calc(100% - (var(--scroll-progress, 0) * 100%)) 0 0 0);
    transition: clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1), fill 0.4s ease;
}

.scroll-to-top:hover .scroll-boomerang .boomerang-fill {
    fill: var(--white);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 5.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
}


/* ============================================================
   CASE STUDIES PAGE — Ultra Premium Minimalist Layout
   ============================================================ */

.cs3-page {
    color: var(--white);
    min-height: 100vh;
    background: transparent;
}

/* ── HERO ── */
.cs3-hero {
    padding: 12rem 2rem 6rem;
    max-width: 1600px;
    margin: 0 auto;
}

.cs3-hero-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.cs3-hero-title .line-wrapper {
    overflow: hidden;
    padding-bottom: 0.1em;
}

.cs3-hero-desc {
    max-width: 600px;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ── GRID ── */
.cs3-grid-wrapper {
    width: 100%;
}

.cs3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.cs3-grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem;
    cursor: pointer;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs3-grid-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Themes */
.cs3-grid-item.theme-dark {
    background-color: transparent;
    color: var(--white);
}

.cs3-grid-item.theme-light {
    background-color: #EFEFEF; /* Matches reference light gray */
    color: var(--core-black);
}

/* Header */
.cs3-item-header {
    z-index: 2;
}

.cs3-client {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cs3-desc {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.5;
    max-width: 400px;
    opacity: 0.7;
    font-weight: 300;
}

/* Centered Media */
.cs3-media-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.cs3-media-wrapper {
    position: relative;
    width: 50%; /* Image takes up half the tile width */
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs3-hover-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    will-change: transform;
}

/* Play Indicator */
.cs3-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: var(--white);
    transition: all 0.3s ease;
}

.theme-light .cs3-play-indicator {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--core-black);
}

/* Footer */
.cs3-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.cs3-learn-more {
    position: relative;
    padding-bottom: 0.2rem;
}

.cs3-learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.cs3-grid-item:hover .cs3-learn-more::after {
    width: 100%;
}

.cs3-category {
    opacity: 0.5;
}

/* ── CTA ── */
.cs3-footer-cta {
    padding: 10rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cs3-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cs3-grid-item {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .cs3-grid {
        grid-template-columns: 1fr;
    }

    .cs3-grid-item {
        aspect-ratio: auto;
        height: 80vh;
        padding: 2rem;
    }

    .cs3-grid-item:nth-child(odd) {
        border-right: none;
    }

    .cs3-media-wrapper {
        width: 70%;
        height: 70%;
    }
}

.csp-page {
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── HERO ── */
.csp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10rem 2rem 5rem;
}

.csp-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(84, 61, 152, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 80% 70%, rgba(84, 61, 152, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.csp-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.csp-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--impulse-violet);
}

.csp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--impulse-violet);
    opacity: 0.6;
    display: inline-block;
}

.csp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 10rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: var(--white);
}

.csp-hero-title em {
    font-style: normal;
    color: var(--impulse-violet);
}

.csp-hero-sub {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.7;
    color: rgba(245, 245, 247, 0.55);
    max-width: 620px;
}

.csp-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    margin-top: 0.5rem;
}

.csp-hero-meta strong {
    color: var(--white);
    font-weight: 800;
}

.csp-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.csp-hero-scroll-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(138, 92, 246, 0.4));
}

/* ── TICKER ── */
.csp-ticker {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    white-space: normal;
}

.csp-ticker-track {
    display: inline-flex;
    align-items: center;
    will-change: transform;
}

.csp-ticker-item {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.06);
    padding: 0 2rem;
}

.csp-ticker-bullet {
    color: var(--impulse-violet);
    opacity: 0.3;
    margin-right: 2rem;
    font-size: 0.5em;
    vertical-align: middle;
}

/* ── GRID ── */
.csp-grid-section {
    padding: 3rem 0 8rem;
}

.csp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 480px;
    gap: 1.5px;
    max-width: 100%;
}

/* Tile sizing */
.csp-tile--wide {
    grid-column: span 2;
}

.csp-tile--tall {
    grid-row: span 1;
}

.csp-tile--normal {
    grid-column: span 1;
}

/* ── TILE ── */
.csp-tile {
    position: relative;
    background: rgba(8, 5, 28, 0.95);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.4s ease;
    opacity: 0;
}

.csp-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tile-accent, #1a0a3c);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.csp-tile:hover::before {
    opacity: 0.15;
}

.csp-tile:hover {
    border-color: rgba(138, 92, 246, 0.2);
}

/* Top header */
.csp-tile-header {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.csp-tile-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--white);
    transition: color 0.3s ease;
}

.csp-tile:hover .csp-tile-name {
    color: var(--white);
}

.csp-tile-cat {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--impulse-violet);
    opacity: 0.7;
}

/* Description */
.csp-tile-desc {
    position: relative;
    z-index: 3;
    font-size: clamp(0.8rem, 0.95vw, 0.95rem);
    line-height: 1.6;
    color: rgba(245, 245, 247, 0.45);
    max-width: 400px;
    margin-top: 0.75rem;
}

/* Center media */
.csp-tile-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.csp-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(0.9);
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
    transform-origin: center center;
}

/* Scan line — simulates video playback */
.csp-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(138, 92, 246, 0) 20%,
        rgba(138, 92, 246, 0.6) 50%,
        rgba(138, 92, 246, 0) 80%,
        transparent 100%
    );
    pointer-events: none;
    opacity: 0;
    z-index: 4;
    box-shadow: 0 0 20px 4px rgba(138, 92, 246, 0.3);
}

/* Hover overlay with play button */
.csp-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    z-index: 4;
    pointer-events: none;
}

.csp-play-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.csp-tile:hover .csp-play-ring {
    border-color: var(--impulse-violet);
    background: rgba(84, 61, 152, 0.3);
}

.csp-overlay-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* Film grain texture overlay */
.csp-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* Bottom footer — always visible over image */
.csp-tile-footer {
    position: relative;
    z-index: 3;
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.csp-tile-stat {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s ease;
}

.csp-tile:hover .csp-tile-stat {
    color: rgba(255,255,255,0.5);
}

.csp-learn-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease, gap 0.3s ease;
}

.csp-learn-more svg {
    transition: transform 0.3s ease;
}

.csp-tile:hover .csp-learn-more {
    color: var(--white);
}

.csp-tile:hover .csp-learn-more svg {
    transform: translateX(5px);
}

/* Border glow on hover */
.csp-tile-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(138, 92, 246, 0.3), transparent, rgba(138, 92, 246, 0.1)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

.csp-tile:hover .csp-tile-border-glow {
    opacity: 1;
}

/* ── BOTTOM CTA ── */
.csp-bottom-cta {
    padding: 8rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.csp-cta-line {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(138, 92, 246, 0.25), transparent);
}

.csp-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.csp-cta-pre {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--impulse-violet);
}

.csp-cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .csp-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 420px;
    }

    .csp-tile--wide { grid-column: span 2; }
    .csp-tile--tall { grid-column: span 1; }
    .csp-tile--normal { grid-column: span 1; }

    .csp-hero {
        padding: 9rem 1.5rem 4rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .csp-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 380px;
    }

    .csp-tile--wide,
    .csp-tile--tall,
    .csp-tile--normal {
        grid-column: span 1;
    }

    .csp-hero-title {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        letter-spacing: -0.04em;
    }

    .csp-tile-name {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .csp-tile {
        padding: 1.5rem;
    }

    .csp-bottom-cta {
        padding: 5rem 1.5rem;
    }

    .csp-cta-headline {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
    }
}

.cs2-page {
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── HERO ── */
.cs2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem;
}

.cs2-hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(84, 61, 152, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(84, 61, 152, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cs2-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cs2-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--impulse-violet);
}

.cs2-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(138, 92, 246, 0.5);
}

.cs2-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 11rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
    color: var(--white);
    perspective: 800px;
}

.cs2-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.75;
    color: rgba(245, 245, 247, 0.65);
    max-width: 640px;
}

.cs2-hero-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.cs2-scroll-track {
    width: 32px;
    height: 50px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    padding: 5px;
    position: relative;
}

.cs2-scroll-thumb {
    width: 5px;
    height: 10px;
    border-radius: 50px;
    background: var(--impulse-violet);
    animation: cs2-scroll-bounce 2s ease-in-out infinite;
}

@keyframes cs2-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.3; }
}

/* Hero count badge */
.cs2-hero-count-badge {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    z-index: 2;
}

.cs2-count-num {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(138, 92, 246, 0.25);
}

.cs2-count-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ── MARQUEE ── */
.cs2-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    white-space: nowrap;
}

.cs2-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.cs2-marquee-item {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.07);
    padding: 0 2.5rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.cs2-marquee-dot {
    color: var(--impulse-violet);
    opacity: 0.4;
    margin-right: 2.5rem;
    font-size: 0.7em;
}

/* ── CHAPTERS ── */
.cs2-chapters {
    padding: 4rem 0 0;
}

.cs2-chapter {
    position: relative;
    padding: 6rem 0;
}

.cs2-chapter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

/* Alternate image/content order */
.cs2-chapter--right .cs2-chapter-inner {
    direction: rtl;
}

.cs2-chapter--right .cs2-chapter-inner > * {
    direction: ltr;
}

/* Image column */
.cs2-img-column {
    position: relative;
}

.cs2-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    clip-path: inset(100% 0% 0% 0%);
}

.cs2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
}

.cs2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--cs-color, #543D98) 40%, transparent) 0%,
        transparent 60%
    );
    mix-blend-mode: color;
    opacity: 0.5;
    pointer-events: none;
}

/* Giant chapter number */
.cs2-chapter-num {
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(138, 92, 246, 0.2);
    line-height: 1;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
}

/* Content column */
.cs2-chapter-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
}

.cs2-content-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cs2-category-pill {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--impulse-violet);
    background: rgba(84, 61, 152, 0.12);
    border: 1px solid rgba(138, 92, 246, 0.3);
    padding: 0.45rem 1rem;
    border-radius: 100px;
}

.cs2-client-name {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.9;
    color: var(--white);
}

.cs2-chapter-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.35;
    color: rgba(245, 245, 247, 0.7);
}

.cs2-chapter-desc {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.75;
    color: rgba(245, 245, 247, 0.45);
}

/* Stats row */
.cs2-stats-row {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.cs2-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
}

.cs2-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--white);
    background: linear-gradient(135deg, #fff 40%, rgba(138, 92, 246, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs2-stat-lbl {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--impulse-violet);
    opacity: 0.8;
}

/* View link */
.cs2-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding-top: 0.5rem;
}

.cs2-view-link span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s ease;
}

.cs2-view-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    transition: all 0.35s ease;
}

.cs2-chapter:hover .cs2-view-link span {
    color: var(--impulse-violet);
}

.cs2-chapter:hover .cs2-view-arrow {
    border-color: var(--impulse-violet);
    color: var(--impulse-violet);
    background: rgba(138, 92, 246, 0.1);
    transform: translateX(6px);
}

/* Chapter divider */
.cs2-chapter-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.cs2-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(138, 92, 246, 0.2), rgba(255,255,255,0.06), transparent);
}

.cs2-chapter:last-child .cs2-chapter-divider {
    display: none;
}

/* ── CTA BAND ── */
.cs2-cta-band {
    position: relative;
    padding: 10rem 2rem;
    text-align: center;
    overflow: hidden;
    opacity: 0;
}

.cs2-cta-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(84, 61, 152, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cs2-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cs2-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--impulse-violet);
}

.cs2-cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 9rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
    color: var(--white);
}

.cs2-cta-sub {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    color: rgba(245,245,247,0.5);
    max-width: 560px;
}

.cs2-cta-btn {
    margin-top: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cs2-chapter-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .cs2-chapter--right .cs2-chapter-inner {
        direction: ltr;
    }

    .cs2-chapter {
        padding: 4rem 0;
    }

    .cs2-hero-count-badge {
        display: none;
    }

    .cs2-chapter-num {
        font-size: clamp(4rem, 8vw, 7rem);
        top: -1.5rem;
        left: -0.5rem;
    }

    .cs2-chapter-divider {
        padding: 0 2rem;
    }

    .cs2-stats-row {
        gap: 2rem;
    }

    .cs2-cta-band {
        padding: 6rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .cs2-hero {
        padding: 0 1.25rem;
        min-height: 100svh;
    }

    .cs2-hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
        letter-spacing: -0.04em;
    }

    .cs2-chapter-inner {
        padding: 0 1.25rem;
    }

    .cs2-client-name {
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .cs2-chapter-headline {
        font-size: 1.1rem;
    }

    .cs2-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .cs2-stat-num {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .cs2-marquee-item {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        padding: 0 1.5rem;
    }

    .cs2-cta-headline {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .cs2-chapter-divider {
        padding: 0 1.25rem;
    }
}

.cs-page {
    min-height: 100vh;
}

/* ── Hero ── */
.cs-page-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 2rem 6rem;
    position: relative;
}

.cs-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--impulse-violet);
    margin-bottom: 2rem;
}

.cs-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--impulse-violet);
    display: inline-block;
    animation: mark-breathe 2.4s ease-in-out infinite;
}

.cs-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 9rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.045em;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 900px;
}

.cs-page-hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.8;
    max-width: 680px;
    margin-bottom: 3rem;
}

.cs-hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 2rem;
}

.cs-scroll-dot {
    animation: cs-scroll-pulse 2s ease-in-out infinite;
}

@keyframes cs-scroll-pulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

/* ── Grid Section ── */
.cs-grid-section {
    padding: 0 0 8rem;
}

.cs-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Card base */
.cs-card {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
}

.cs-card:hover {
    border-color: rgba(138, 92, 246, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(138, 92, 246, 0.1);
}

/* Grid layout — alternating sizes */
.cs-card:nth-child(1) { grid-column: span 7; }
.cs-card:nth-child(2) { grid-column: span 5; }
.cs-card:nth-child(3) { grid-column: span 4; }
.cs-card:nth-child(4) { grid-column: span 8; }
.cs-card:nth-child(5) { grid-column: span 5; }
.cs-card:nth-child(6) { grid-column: span 7; }

/* Featured card — bigger image */
.cs-card--featured .cs-card-img-wrap {
    aspect-ratio: 16 / 9;
}

/* Image wrap */
.cs-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cs-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.9) brightness(0.85);
}

.cs-card:hover .cs-card-img {
    transform: scale(1.06);
    filter: saturate(1.05) brightness(0.95);
}

.cs-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(2, 0, 24, 0.85) 100%
    );
    pointer-events: none;
}

.cs-card-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: rgba(138, 92, 246, 0.2);
    border: 1px solid rgba(138, 92, 246, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
}

/* Card body */
.cs-card-body {
    padding: 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.cs-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cs-card-index {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--impulse-violet);
    opacity: 0.7;
    letter-spacing: 3px;
}

.cs-card-category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.cs-card-client {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cs-card-headline {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.2vw, 1.15rem);
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cs-card-desc {
    font-size: clamp(0.85rem, 1vw, 1rem);
    line-height: 1.65;
    color: var(--soft-grey);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stats strip */
.cs-card-stats {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1.5rem;
}

.cs-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cs-stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
}

.cs-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--impulse-violet);
    opacity: 0.8;
}

/* Card footer */
.cs-card-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cs-card-read-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s ease;
}

.cs-card-arrow {
    color: rgba(255,255,255,0.25);
    transition: color 0.3s ease, transform 0.3s ease;
}

.cs-card:hover .cs-card-read-label {
    color: var(--impulse-violet);
}

.cs-card:hover .cs-card-arrow {
    color: var(--impulse-violet);
    transform: translateX(5px);
}

/* Decorative corner mark */
.cs-card-corner-mark {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    opacity: 0.06;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cs-card:hover .cs-card-corner-mark {
    opacity: 0.14;
}

.cs-card-corner-mark svg {
    width: 100%;
    height: 100%;
}

/* ── CTA Band ── */
.cs-cta-band {
    padding: 8rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cs-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(84, 61, 152, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cs-cta-band-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cs-cta-band-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--impulse-violet);
}

.cs-cta-band-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.045em;
    color: var(--white);
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
    .cs-page-hero {
        padding: 10rem 1.5rem 4rem;
        min-height: auto;
    }

    .cs-grid-container {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
        gap: 1.5rem;
    }

    .cs-card:nth-child(n) {
        grid-column: span 1;
    }

    .cs-card--featured .cs-card-img-wrap,
    .cs-card-img-wrap {
        aspect-ratio: 16 / 9;
    }

    .cs-card-stats {
        gap: 1.5rem;
    }

    .cs-cta-band {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .cs-page-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .cs-card-body {
        padding: 1.5rem;
    }

    .cs-card-client {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .cs-cta-band-headline {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
}
/* ============================================================
   CAREERS PAGE — scoped to .careers-page
   Premium, editorial, immersive. Desktop-first.
   ============================================================ */
.careers-page .container { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }

/* --- shared atoms --- */
.careers-page .car-line {
    display: block;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.25;
}
.careers-page .car-line-loud {
    color: var(--white);
    font-weight: 700;
}
.careers-page .car-line-dim {
    color: rgba(245, 245, 247, 0.55);
    font-weight: 400;
    font-style: italic;
}
.careers-page .car-statement {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 247, 0.86);
    margin: 0 0 1.6rem;
}
.careers-page .car-statement-lg {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 2.2rem;
}
.careers-page .car-statement-mid {
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.careers-page .car-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
    color: var(--white);
}

/* --- HERO --- */
.careers-page .car-hero {
    min-height: 100svh;
    padding: 9rem 4rem 4rem;
    text-align: center;
}
.careers-page .car-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.6rem;
}
.careers-page .car-hero-headline {
    font-size: clamp(3.6rem, 8.4vw, 8.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 1.6rem;
    font-weight: 900;
}
.careers-page .car-hero-sub {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.85rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}
.careers-page .car-hero-desc {
    font-size: clamp(1rem, 1.18vw, 1.18rem);
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto 2rem;
    color: rgba(245, 245, 247, 0.82);
}
.careers-page .car-hero-anchor {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 1.9vw, 1.85rem);
    line-height: 1.25;
    color: var(--white);
    max-width: 780px;
    margin: 0 auto 2.6rem;
    font-weight: 500;
    letter-spacing: -0.015em;
}

/* --- BETTER WORK --- */
.careers-page .car-better {
    position: relative;
    padding: 10rem 0 8rem;
}
.careers-page .car-better-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.careers-page .car-better-left .car-statement { margin-bottom: 1.6rem; }
.careers-page .car-questions {
    list-style: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 2.2rem;
}
.careers-page .car-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: opacity 0.4s ease;
}
.careers-page .car-q:last-child { border-bottom: none; }
.careers-page .car-q-mark {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.45em;
    opacity: 0.3;
    transition: opacity 0.5s ease, filter 0.5s ease;
}
.careers-page .car-q-mark svg { width: 100%; height: 100%; fill: var(--impulse-violet); }
.careers-page .car-q.lit .car-q-mark {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(138, 92, 246, 0.55));
}
.careers-page .car-q-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.7vw, 1.7rem);
    line-height: 1.35;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.01em;
}
.careers-page .car-better-closing {
    margin-top: 5rem;
    text-align: center;
    max-width: 920px;
}

/* --- TRANSLATE — close to business --- */
.careers-page .car-translate {
    padding: 8rem 0;
}
.careers-page .car-translate-intro {
    max-width: 900px;
    margin: 0 auto 4.5rem;
    text-align: center;
}
.careers-page .car-translate-list {
    list-style: none;
    max-width: 980px;
    margin: 0 auto 4.5rem;
}
.careers-page .car-translate-row {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.careers-page .car-translate-row:last-child { border-bottom: none; }
.careers-page .car-translate-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.careers-page .car-translate-mark svg {
    width: 100%; height: 100%;
    fill: var(--impulse-violet);
    opacity: 0.85;
}
.careers-page .car-translate-text {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.3;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.012em;
}
.careers-page .car-translate-outro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.careers-page .car-translate-outro .car-line {
    font-size: clamp(1.3rem, 1.85vw, 1.85rem);
    margin-bottom: 0.4rem;
}
.careers-page .car-trio {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.careers-page .car-trio span {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(2, 0, 24, 0.4);
    backdrop-filter: blur(6px);
}

/* --- VALUES --- */
.careers-page .car-values {
    padding: 8rem 0;
}
.careers-page .car-values .car-section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.careers-page .car-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.careers-page .car-value {
    background: linear-gradient(180deg, rgba(84, 61, 152, 0.07), rgba(2, 0, 24, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px 28px 4px 28px;
    padding: 3rem 2.6rem;
    position: relative;
    backdrop-filter: blur(8px);
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.careers-page .car-value:hover {
    border-color: rgba(138, 92, 246, 0.35);
    transform: translateY(-4px);
}
.careers-page .car-value-mark {
    width: 36px;
    height: 36px;
    margin-bottom: 1.4rem;
    opacity: 0.85;
}
.careers-page .car-value-mark svg {
    width: 100%;
    height: 100%;
    fill: var(--impulse-violet);
    filter: drop-shadow(0 0 16px rgba(138, 92, 246, 0.4));
}
.careers-page .car-value-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.1vw, 2.05rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.6rem;
    color: var(--white);
}
.careers-page .car-value-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(245, 245, 247, 0.78);
    margin-bottom: 0.9rem;
}
.careers-page .car-value-loud {
    color: var(--white);
    font-weight: 500;
}
.careers-page .car-value-dim {
    color: rgba(245, 245, 247, 0.5);
    font-style: italic;
}
.careers-page .car-value-list {
    list-style: none;
    margin: 1rem 0 1.4rem;
    padding-left: 0;
    border-left: 2px solid rgba(138, 92, 246, 0.45);
    padding-left: 1.2rem;
}
.careers-page .car-value-list li {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    margin-bottom: 0.55rem;
    letter-spacing: -0.005em;
}
.careers-page .car-value-foot {
    margin-top: 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(245, 245, 247, 0.7);
}

/* --- EXPECT --- */
.careers-page .car-expect {
    padding: 8rem 0;
}
.careers-page .car-expect-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}
.careers-page .car-expect .car-section-title {
    margin-bottom: 2.2rem;
}
.careers-page .car-expect-nots {
    list-style: none;
    margin-top: 1.8rem;
}
.careers-page .car-expect-nots li {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
    color: rgba(245, 245, 247, 0.6);
    font-style: italic;
    line-height: 1.35;
    padding: 0.65rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.careers-page .car-expect-nots li:last-child { border-bottom: none; }
.careers-page .car-expect-list {
    list-style: none;
    border-left: 1px solid rgba(138, 92, 246, 0.25);
    padding-left: 2rem;
}
.careers-page .car-expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.careers-page .car-expect-list li:last-child { border-bottom: none; }
.careers-page .car-expect-list li > span:last-child {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    color: var(--white);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.careers-page .car-expect-mark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.4em;
}
.careers-page .car-expect-mark svg {
    width: 100%; height: 100%;
    fill: var(--impulse-violet);
}
.careers-page .car-expect-closing {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.careers-page .car-expect-closing .car-line {
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}
.careers-page .car-expect-closing .car-line-loud {
    font-size: clamp(1.5rem, 2.1vw, 2.1rem);
    margin-top: 1.5rem;
}

/* --- LIFE AT IMPULSE --- */
.careers-page .car-life {
    padding: 9rem 0;
}
.careers-page .car-life-header {
    text-align: center;
    margin-bottom: 4.5rem;
    overflow: visible;
}

/* The corporate-cliché jab — "Life at Impulse" gets struck through */
.careers-page .car-life-jab {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    /* starts hidden; JS reveals then strikes */
    opacity: 0;
}
.careers-page .car-life-jab-text {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7.4vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    color: rgba(255, 255, 255, 0.56);
    line-height: 0.95;
}
/* The strike — a thick line drawn left-to-right via --strike-w */
.careers-page .car-life-jab-strike {
    position: absolute;
    top: 50%;
    left: -3%;
    width: var(--strike-w, 0%);
    height: clamp(8px, 0.9vw, 14px);
    background: linear-gradient(90deg, rgba(84, 61, 152, 0.95), rgb(138, 92, 246), rgba(84, 61, 152, 0.95));
    box-shadow: 0 0 28px rgba(138, 92, 246, 0.58);
    transform: translateY(-50%);
    display: block;
    will-change: width;
    /* No CSS transition — width driven by GSAP for precision */
}

/* The real title — hidden until strike completes */
.careers-page .car-life-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7.4vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.045em;
    color: rgb(138, 92, 246);
    text-shadow: 0 0 34px rgba(138, 92, 246, 0.26);
    opacity: 0;
    transform: translateY(24px);
    /* GSAP controls the reveal */
}
.careers-page .car-life-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.careers-page .car-life-copy {
    position: sticky;
    top: 8rem;
}
.careers-page .car-life-copy .car-line {
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
    line-height: 1.35;
    margin-bottom: 0.6rem;
}
.careers-page .car-life-copy .car-line-loud {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    margin-bottom: 1.2rem;
}
.careers-page .car-life-list {
    list-style: none;
    margin: 1.4rem 0;
    border-left: 1px solid rgba(138, 92, 246, 0.4);
    padding-left: 1.3rem;
}
.careers-page .car-life-list li {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.32vw, 1.3rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    margin-bottom: 0.55rem;
    letter-spacing: -0.005em;
}

/* Gallery: cinematic masonry */
.careers-page .car-life-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 80px;
    gap: 1rem;
}
.careers-page .car-life-img {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(2, 0, 24, 0.4);
    position: relative;
    will-change: transform;
}
.careers-page .car-life-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.92) saturate(1.05);
}
.careers-page .car-life-img:hover img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.1);
}
.careers-page .car-life-img-1 { grid-column: span 3; grid-row: span 5; }
.careers-page .car-life-img-2 { grid-column: span 3; grid-row: span 3; }
.careers-page .car-life-img-3 { grid-column: span 2; grid-row: span 3; }
.careers-page .car-life-img-4 { grid-column: span 4; grid-row: span 4; }
.careers-page .car-life-img-5 { grid-column: span 2; grid-row: span 3; }
.careers-page .car-life-img-6 { grid-column: span 2; grid-row: span 3; }
.careers-page .car-life-img-7 { grid-column: span 2; grid-row: span 3; }

/* --- FIT --- */
.careers-page .car-fit {
    padding: 8rem 0;
    text-align: center;
}
.careers-page .car-fit .car-section-title { margin-bottom: 1.4rem; }
.careers-page .car-fit-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: var(--white);
    margin-bottom: 3rem;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.careers-page .car-fit-list {
    list-style: none;
    max-width: 880px;
    margin: 0 auto 5rem;
}
.careers-page .car-fit-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}
.careers-page .car-fit-list li:last-child { border-bottom: none; }
.careers-page .car-fit-list li > span:last-child {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    color: var(--white);
    line-height: 1.35;
    letter-spacing: -0.005em;
}
.careers-page .car-fit-mark {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.careers-page .car-fit-mark svg {
    width: 100%; height: 100%;
    fill: var(--impulse-violet);
}

.careers-page .car-appetite {
    max-width: 720px;
    margin: 0 auto;
}
.careers-page .car-appetite .car-line {
    font-size: clamp(1.2rem, 1.55vw, 1.5rem);
    margin-bottom: 0.5rem;
}
.careers-page .car-appetite-loud {
    font-size: clamp(2.2rem, 3.6vw, 3.6rem) !important;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.6rem !important;
    font-weight: 900;
}
.careers-page .car-appetite-final {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 92, 246, 0.35);
}

/* --- FINAL CTA --- */
.careers-page .car-final {
    padding: 8rem 0 10rem;
}
.careers-page .car-final-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: start;
}
.careers-page .car-final-copy .car-statement-lg {
    margin-bottom: 2rem;
}
.careers-page .car-final-feels {
    list-style: none;
    margin: 1rem 0 1.6rem;
    border-left: 2px solid rgba(138, 92, 246, 0.45);
    padding-left: 1.3rem;
}
.careers-page .car-final-feels li {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
    margin-bottom: 0.55rem;
    letter-spacing: -0.005em;
}
.careers-page .car-final-copy .car-line {
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    margin-bottom: 0.55rem;
    line-height: 1.35;
}
.careers-page .car-final-copy .car-line-loud {
    font-size: clamp(1.5rem, 2.1vw, 2.1rem);
    margin-top: 1.4rem;
    letter-spacing: -0.02em;
}

.careers-page .car-final-card {
    background: linear-gradient(180deg, rgba(84, 61, 152, 0.12), rgba(2, 0, 24, 0.55));
    border: 1px solid rgba(138, 92, 246, 0.3);
    border-radius: 4px 32px 4px 32px;
    padding: 3rem 2.6rem;
    backdrop-filter: blur(10px);
    position: relative;
}
.careers-page .car-final-instruction {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.55vw, 1.5rem);
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 1.4rem;
    letter-spacing: -0.012em;
}
.careers-page .car-final-warn {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin-bottom: 1.6rem;
}
.careers-page .car-final-tells {
    list-style: none;
    margin-bottom: 2.2rem;
    border-left: 2px solid rgba(138, 92, 246, 0.5);
    padding-left: 1.3rem;
}
.careers-page .car-final-tells li {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    letter-spacing: -0.005em;
}
.careers-page .car-final-contact {
    padding: 1.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}
.careers-page .car-final-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    padding: 0.65rem 0;
    align-items: baseline;
}
.careers-page .car-final-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.careers-page .car-final-value {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.3vw, 1.28rem);
    color: var(--white);
    letter-spacing: -0.005em;
    word-break: break-word;
}
.careers-page a.car-final-value:hover { color: rgb(174, 142, 255); }
.careers-page .car-final-subject {
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
}
.careers-page .car-final-btn {
    width: 100%;
    justify-content: center;
}

/* --- Light mobile sanity (not deep) --- */
@media (max-width: 900px) {
    .careers-page .container { padding: 0 1.4rem; }
    .careers-page .car-better-grid,
    .careers-page .car-expect-grid,
    .careers-page .car-life-grid,
    .careers-page .car-final-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .careers-page .car-values-grid { grid-template-columns: 1fr; }
    .careers-page .car-life-copy { position: static; }
    .careers-page .car-life-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }
    .careers-page .car-life-img-1,
    .careers-page .car-life-img-2,
    .careers-page .car-life-img-3,
    .careers-page .car-life-img-4,
    .careers-page .car-life-img-5,
    .careers-page .car-life-img-6,
    .careers-page .car-life-img-7 {
        grid-column: span 2;
        grid-row: span 2;
    }
    .careers-page .car-hero { padding: 7rem 1.4rem 3rem; }
    .careers-page .car-better,
    .careers-page .car-translate,
    .careers-page .car-values,
    .careers-page .car-expect,
    .careers-page .car-life,
    .careers-page .car-fit,
    .careers-page .car-final { padding: 5rem 0; }
    .careers-page .car-final-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CAREERS — IMMERSIVE ENHANCEMENTS
   Pointer spotlights, scroll rails, watermarks, kinetic accents.
   All restrained, on-brand, layered behind copy.
   ============================================================ */

/* --- Hero: faint brand-mark watermark + parallax wrapper --- */
.careers-page .car-hero { position: relative; overflow: hidden; }
.careers-page .car-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(640px, 78vw, 1180px);
    height: clamp(640px, 78vw, 1180px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    will-change: transform, opacity;
}
.careers-page .car-hero-watermark svg {
    width: 100%; height: 100%;
    fill: var(--impulse-violet);
    filter: blur(2px) drop-shadow(0 0 80px rgba(138, 92, 246, 0.45));
}
.careers-page .car-hero .svc-hero-page-content {
    position: relative;
    z-index: 2;
}

/* --- Better questions: vertical scroll-progress rail --- */
.careers-page .car-better-right { position: relative; }
.careers-page .car-questions-rail {
    position: absolute;
    top: 0.6rem;
    bottom: 0.6rem;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    pointer-events: none;
}
.careers-page .car-questions-rail-fill {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: var(--rail-progress, 0%);
    background: linear-gradient(180deg, rgba(138, 92, 246, 0.0) 0%, rgba(138, 92, 246, 0.85) 30%, rgba(138, 92, 246, 1) 70%, rgba(138, 92, 246, 0.4) 100%);
    box-shadow: 0 0 12px rgba(138, 92, 246, 0.6);
}
/* Remove the old static border-left now that we have the rail */
.careers-page .car-questions { border-left: none; }

/* --- Translate rows: scroll-scrubbed mark fill + hover lift --- */
.careers-page .car-translate-row {
    position: relative;
    transition: padding-left 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.careers-page .car-translate-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0%;
    max-width: 44px;
    height: 1px;
    background: var(--impulse-violet);
    transform: translateY(-50%);
    transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
    opacity: 0;
}
.careers-page .car-translate-row.lit {
    padding-left: 60px;
}
.careers-page .car-translate-row.lit::before {
    width: 44px;
    opacity: 0.85;
}
.careers-page .car-translate-mark svg {
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}
.careers-page .car-translate-row.lit .car-translate-mark svg {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(138, 92, 246, 0.7));
    transform: scale(1.08);
}

/* --- Values: pointer-spotlight overlay + section watermark --- */
.careers-page .car-values { position: relative; overflow: hidden; }
.careers-page .car-values-watermark {
    position: absolute;
    right: -140px;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    width: 720px;
    height: 720px;
    pointer-events: none;
    opacity: 0.045;
    z-index: 0;
}
.careers-page .car-values-watermark svg { width: 100%; height: 100%; fill: var(--impulse-violet); }
.careers-page .car-values .container { position: relative; z-index: 2; }
.careers-page .car-value {
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}
.careers-page .car-value::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        420px circle at var(--mouse-x, 50%) var(--mouse-y, 0%),
        rgba(138, 92, 246, 0.18),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 4px 28px 4px 28px;
    z-index: 0;
}
.careers-page .car-value:hover::before { opacity: 1; }
.careers-page .car-value > * { position: relative; z-index: 1; }

/* --- Gallery: focus-dim siblings on hover, depth tilt --- */
.careers-page .car-life-gallery {
    perspective: 1400px;
}
.careers-page .car-life-img {
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease, box-shadow 0.5s ease;
}
.careers-page .car-life-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 0, 24, 0) 55%, rgba(2, 0, 24, 0.65) 100%);
    opacity: 0.45;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.careers-page .car-life-gallery:hover .car-life-img:not(:hover) {
    filter: brightness(0.45) saturate(0.7);
    transform: scale(0.985);
}
.careers-page .car-life-gallery:hover .car-life-img:not(:hover)::after { opacity: 0.7; }
.careers-page .car-life-img:hover {
    box-shadow: 0 30px 80px -30px rgba(138, 92, 246, 0.55), 0 0 0 1px rgba(138, 92, 246, 0.35);
    z-index: 2;
}
.careers-page .car-life-img:hover::after { opacity: 0.15; }

/* --- Handoff: stronger scroll-into-view treatment --- */
.careers-page .svc-handoff { position: relative; }
.careers-page .svc-handoff .svc-handoff-mark {
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}
.careers-page .svc-handoff.active .svc-handoff-mark {
    transform: rotate(360deg);
    filter: drop-shadow(0 0 18px rgba(138, 92, 246, 0.55));
}

/* --- Appetite: watermark behind huge "You have appetite." --- */
.careers-page .car-appetite { position: relative; padding-top: 1rem; }
.careers-page .car-appetite-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    pointer-events: none;
    opacity: 0.05;
    z-index: 0;
}
.careers-page .car-appetite-mark svg { width: 100%; height: 100%; fill: var(--impulse-violet); }
.careers-page .car-appetite > p { position: relative; z-index: 1; }

/* --- Final card: pointer spotlight + magnetic shift --- */
.careers-page .car-final-card {
    overflow: hidden;
    will-change: transform;
}
.careers-page .car-final-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        520px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(138, 92, 246, 0.22),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 0;
}
.careers-page .car-final-card:hover .car-final-spotlight { opacity: 1; }
.careers-page .car-final-card > *:not(.car-final-spotlight) { position: relative; z-index: 1; }

/* The contact block becomes a real link target — match hover state */
.careers-page a.car-final-contact {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
    border-radius: 12px;
    margin: 0 -0.6rem 2rem;
    padding: 0 0.6rem;
}
.careers-page a.car-final-contact:hover {
    background: rgba(138, 92, 246, 0.06);
}
.careers-page a.car-final-contact:hover .car-final-value:not(.car-final-subject) {
    color: rgb(196, 168, 255);
}

/* --- Fit list rows: hover violet sweep --- */
.careers-page .car-fit-list li {
    position: relative;
    transition: padding-left 0.4s ease;
}
.careers-page .car-fit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--impulse-violet), transparent);
    transition: width 0.6s ease;
}
.careers-page .car-fit-list li:hover { padding-left: 0.6rem; }
.careers-page .car-fit-list li:hover::before { width: 100%; }
.careers-page .car-fit-mark svg { transition: transform 0.6s ease, filter 0.6s ease; }
.careers-page .car-fit-list li:hover .car-fit-mark svg {
    transform: rotate(20deg) scale(1.15);
    filter: drop-shadow(0 0 12px rgba(138, 92, 246, 0.7));
}

/* --- Question rows: hover-focus dimming --- */
.careers-page .car-questions:hover .car-q:not(:hover) {
    opacity: 0.4;
}
.careers-page .car-q { transition: opacity 0.4s ease, padding-left 0.4s ease; }
.careers-page .car-q:hover { padding-left: 0.6rem; }

/* --- Expect rows: hover slide + violet bar --- */
.careers-page .car-expect-list li {
    position: relative;
    transition: padding-left 0.4s ease;
}
.careers-page .car-expect-list li::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--impulse-violet);
    transform: translateY(-50%);
    transition: width 0.5s ease;
}
.careers-page .car-expect-list li:hover { padding-left: 0.6rem; }
.careers-page .car-expect-list li:hover::before { width: 1.4rem; }

/* --- Open positions: interactive grid at page end --- */
.careers-page .car-positions {
    position: relative;
    padding: 2rem 0 10rem;
    overflow: clip;
}
.careers-page .car-positions::before {
    content: "";
    position: absolute;
    inset: 10% 0 auto;
    height: 58%;
    background:
        radial-gradient(circle at 50% 35%, rgba(138, 92, 246, 0.16), transparent 34%),
        linear-gradient(180deg, transparent, rgba(2, 0, 24, 0.5), transparent);
    opacity: 0.8;
    pointer-events: none;
}
.careers-page .car-positions .container {
    position: relative;
    z-index: 2;
}
.careers-page .car-positions-head {
    display: block;
    margin-bottom: 3.4rem;
}
.careers-page .car-positions-kicker {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    padding-bottom: 0.8rem;
}
.careers-page .car-positions .car-section-title {
    margin: 0;
    white-space: nowrap;
}
.careers-page .car-positions-scroll-mark {
    position: fixed;
    top: 50%;
    left: 50%;
    width: clamp(120px, 16vw, 240px);
    height: clamp(120px, 16vw, 240px);
    margin: 0;
    transform: translate(-50%, -50%) scale(0.72) rotate(-8deg);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    filter: blur(0.2px) drop-shadow(0 0 28px rgba(138, 92, 246, 0.55));
    transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.careers-page .car-positions-scroll-mark svg {
    width: 100%;
    height: 100%;
    fill: rgba(138, 92, 246, 0.42);
}
.careers-page .car-positions.mark-visible .car-positions-scroll-mark {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
.careers-page .car-jobs-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: start;
}
.careers-page .car-job-card {
    --mouse-x: 50%;
    --mouse-y: 0%;
    position: relative;
    min-height: 430px;
    padding: clamp(1.45rem, 2.3vw, 2.4rem);
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(650px circle at var(--mouse-x) var(--mouse-y), rgba(138, 92, 246, 0.18), transparent 42%),
        repeating-radial-gradient(circle at 30% 20%, rgba(255,255,255,0.026) 0 1px, transparent 1px 4px),
        linear-gradient(145deg, rgba(18, 18, 22, 0.96), rgba(3, 3, 8, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition:
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
        min-height 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.careers-page .car-job-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(138, 92, 246, 0.24), transparent 58%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -2;
}
.careers-page .car-job-card:hover,
.careers-page .car-job-card:focus-within,
.careers-page .car-job-card.is-open {
    border-color: rgba(138, 92, 246, 0.42);
    box-shadow: 0 32px 90px -48px rgba(138, 92, 246, 0.86), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.careers-page .car-job-card:hover::after,
.careers-page .car-job-card:focus-within::after,
.careers-page .car-job-card.is-open::after {
    opacity: 1;
}
.careers-page .car-job-card.is-open {
    min-height: 680px;
    grid-column: span 2;
}
.careers-page .car-job-mark {
    position: absolute;
    right: -4%;
    bottom: -18%;
    width: min(56%, 420px);
    aspect-ratio: 1;
    opacity: 0;
    transform: translate3d(28px, 34px, 0) rotate(-10deg) scale(0.88);
    transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
    z-index: -1;
}
.careers-page .car-job-mark svg {
    width: 100%;
    height: 100%;
    fill: rgba(138, 92, 246, 0.22);
    filter: drop-shadow(0 0 34px rgba(138, 92, 246, 0.38));
}
.careers-page .car-job-card:hover .car-job-mark,
.careers-page .car-job-card:focus-within .car-job-mark,
.careers-page .car-job-card.is-open .car-job-mark {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}
.careers-page .car-job-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3.2rem;
}
.careers-page .car-job-index {
    font-family: var(--font-mono, var(--font-body));
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
}
.careers-page .car-job-toggle {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: width 0.36s ease, border-color 0.36s ease, background 0.36s ease, box-shadow 0.36s ease;
}
.careers-page .car-job-toggle-idle,
.careers-page .car-job-toggle-open {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 800;
    transition: opacity 0.28s ease, transform 0.32s ease;
}
.careers-page .car-job-toggle-idle {
    font-size: 1.85rem;
    line-height: 1;
}
.careers-page .car-job-toggle-open {
    opacity: 0;
    transform: translateY(10px);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.careers-page .car-job-card:hover .car-job-toggle,
.careers-page .car-job-card:focus-within .car-job-toggle,
.careers-page .car-job-card.is-open .car-job-toggle {
    width: 104px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 34px rgba(138, 92, 246, 0.26);
}
.careers-page .car-job-card:hover .car-job-toggle-idle,
.careers-page .car-job-card:focus-within .car-job-toggle-idle,
.careers-page .car-job-card.is-open .car-job-toggle-idle {
    opacity: 0;
    transform: translateY(-10px);
}
.careers-page .car-job-card:hover .car-job-toggle-open,
.careers-page .car-job-card:focus-within .car-job-toggle-open,
.careers-page .car-job-card.is-open .car-job-toggle-open {
    opacity: 1;
    transform: translateY(0);
}
.careers-page .car-job-main {
    align-self: end;
    max-width: 620px;
}
.careers-page .car-job-main h3 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.6vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--white);
    margin: 0 0 1.5rem;
}
.careers-page .car-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}
.careers-page .car-job-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.3rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(245, 245, 247, 0.66);
    background: rgba(0, 0, 0, 0.18);
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1vw, 1rem);
    line-height: 1.1;
}
.careers-page .car-job-tags span:last-child {
    border-color: rgba(138, 92, 246, 0.5);
    color: rgb(188, 178, 255);
}
.careers-page .car-job-main p,
.careers-page .car-job-details p,
.careers-page .car-job-details li {
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.08vw, 1.08rem);
    line-height: 1.62;
    color: rgba(245, 245, 247, 0.68);
}
.careers-page .car-job-main p {
    max-width: 520px;
    margin: 0;
}
.careers-page .car-job-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition:
        max-height 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
        padding-top 0.45s ease,
        margin-top 0.45s ease;
}
.careers-page .car-job-card.is-open .car-job-details {
    max-height: 920px;
    opacity: 1;
    overflow: visible;
    transform: translateY(0);
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (hover: hover) {
    .careers-page .car-job-card:hover .car-job-details,
    .careers-page .car-job-card:focus-within .car-job-details {
        max-height: 920px;
        opacity: 1;
        overflow: visible;
        transform: translateY(0);
        margin-top: 2.4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .careers-page .car-job-card:hover {
        min-height: 680px;
    }
}
.careers-page .car-job-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 3.5rem);
    margin-top: 2rem;
}
.careers-page .car-job-details h4 {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
}
.careers-page .car-job-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.careers-page .car-job-details li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.65rem;
}
.careers-page .car-job-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--impulse-violet);
    box-shadow: 0 0 12px rgba(138, 92, 246, 0.7);
}
.careers-page .car-job-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.55rem;
    margin-top: 2rem;
    border-radius: 999px;
    background: var(--white);
    color: #050505;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-page .car-job-apply:hover,
.careers-page .car-job-apply:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.16);
}

@media (max-width: 1020px) {
    .careers-page .car-jobs-grid {
        grid-template-columns: 1fr;
    }
    .careers-page .car-job-card.is-open {
        grid-column: span 1;
    }
}

@media (max-width: 760px) {
    .careers-page .car-positions {
        padding: 1rem 0 6rem;
    }
    .careers-page .car-positions-head {
        margin-bottom: 2rem;
    }
    .careers-page .car-positions-kicker {
        padding-bottom: 0;
    }
    .careers-page .car-job-card,
    .careers-page .car-job-card:hover,
    .careers-page .car-job-card.is-open {
        min-height: 380px;
        transform: none;
    }
    .careers-page .car-job-top {
        margin-bottom: 2.4rem;
    }
    .careers-page .car-job-toggle {
        width: 56px;
        height: 56px;
    }
    .careers-page .car-job-card.is-open .car-job-toggle {
        width: 96px;
    }
    .careers-page .car-job-main h3 {
        font-size: clamp(2.1rem, 12vw, 3.25rem);
    }
    .careers-page .car-job-detail-grid {
        grid-template-columns: 1fr;
    }
    .careers-page .car-job-card.is-open {
        min-height: auto;
    }
}

/* --- Open positions: list-panel correction --- */
.careers-page .car-jobs-list {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 1.4rem;
}
.careers-page .car-positions::before,
.careers-page .car-positions-scroll-mark {
    display: none;
}
.careers-page .car-jobs-list .car-job-card {
    min-height: 320px;
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
    grid-template-areas:
        "main visual"
        "details details";
    gap: 2rem 3rem;
    align-items: center;
    padding: clamp(2.4rem, 4vw, 4.2rem) clamp(2rem, 5vw, 4.8rem);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(6, 6, 8, 0.96), rgba(0, 0, 0, 0.95));
}
.careers-page .car-jobs-list .car-job-card:hover,
.careers-page .car-jobs-list .car-job-card:focus-within,
.careers-page .car-jobs-list .car-job-card.is-open {
    transform: none;
    border-color: rgba(138, 92, 246, 0.72);
    box-shadow:
        0 0 0 1px rgba(138, 92, 246, 0.28),
        0 0 28px rgba(138, 92, 246, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.careers-page .car-jobs-list .car-job-card.is-open {
    grid-column: auto;
    min-height: 520px;
}
.careers-page .car-jobs-list .car-job-card::after {
    display: none;
}
.careers-page .car-jobs-list .car-job-main {
    grid-area: main;
    align-self: center;
    max-width: 820px;
    position: relative;
    z-index: 2;
}
.careers-page .car-jobs-list .car-job-main h3 {
    font-size: clamp(2.4rem, 4.5vw, 4.6rem);
    margin-bottom: 1.6rem;
}
.careers-page .car-jobs-list .car-job-main p {
    max-width: 620px;
    margin-bottom: 1.8rem;
}
.careers-page .car-jobs-list .car-job-visual {
    grid-area: visual;
    position: relative;
    min-height: 230px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    pointer-events: none;
}
.careers-page .car-jobs-list .car-job-index {
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--font-mono, var(--font-body));
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.2);
}
.careers-page .car-jobs-list .car-job-mark {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(78%, 330px);
    height: auto;
    aspect-ratio: 1;
    opacity: 0;
    transform: translate3d(36px, 26px, 0) rotate(-12deg) scale(0.72);
    filter: drop-shadow(0 0 28px rgba(138, 92, 246, 0.42));
    overflow: visible;
    transition:
        opacity 0.4s ease,
        transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.careers-page .car-jobs-list .car-job-mark-path {
    fill: none;
    stroke: #543D98;
    stroke-width: 10.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.careers-page .car-jobs-list .car-job-card:hover .car-job-mark,
.careers-page .car-jobs-list .car-job-card:focus-within .car-job-mark,
.careers-page .car-jobs-list .car-job-card.is-open .car-job-mark {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}
.careers-page .car-jobs-list .car-job-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.careers-page .car-jobs-list .car-job-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 58px;
    padding: 0.8rem 1.7rem;
    border-radius: 999px;
    background: var(--white);
    color: #070707;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.careers-page .car-jobs-list .car-job-apply-btn:hover,
.careers-page .car-jobs-list .car-job-apply-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.14);
}
.careers-page .car-jobs-list .car-job-toggle {
    position: relative;
    width: 58px;
    height: 58px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    overflow: visible;
    color: rgb(188, 178, 255);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.careers-page .car-jobs-list .car-job-toggle svg {
    width: 14px;
    height: 9px;
    display: block;
    transition: transform 0.35s ease;
}
.careers-page .car-jobs-list .car-job-toggle path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.careers-page .car-jobs-list .car-job-card:hover .car-job-toggle,
.careers-page .car-jobs-list .car-job-card:focus-within .car-job-toggle,
.careers-page .car-jobs-list .car-job-card.is-open .car-job-toggle {
    width: 58px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    box-shadow: none;
}
.careers-page .car-jobs-list .car-job-card.is-open .car-job-toggle svg {
    transform: rotate(180deg);
}
.careers-page .car-jobs-list .car-job-card.is-open .car-job-toggle {
    background: var(--impulse-violet);
    color: var(--white);
    box-shadow: 0 0 28px rgba(138, 92, 246, 0.44);
}
.careers-page .car-jobs-list .car-job-card:not(.is-open):hover .car-job-details,
.careers-page .car-jobs-list .car-job-card:not(.is-open):focus-within .car-job-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.careers-page .car-jobs-list .car-job-card:not(.is-open):hover {
    min-height: 320px;
}
.careers-page .car-jobs-list .car-job-details {
    grid-area: details;
}
.careers-page .car-jobs-list .car-job-card.is-open .car-job-details {
    max-height: 920px;
}

@media (max-width: 900px) {
    .careers-page .car-jobs-list .car-job-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "visual"
            "details";
        min-height: auto;
    }
    .careers-page .car-jobs-list .car-job-visual {
        min-height: 150px;
        justify-content: flex-start;
    }
    .careers-page .car-jobs-list .car-job-mark {
        width: min(52vw, 220px);
    }
}

@media (max-width: 520px) {
    .careers-page .car-jobs-list .car-job-card {
        padding: 2rem 1.25rem;
        border-radius: 22px;
    }
    .careers-page .car-jobs-list .car-job-actions {
        width: 100%;
    }
    .careers-page .car-jobs-list .car-job-apply-btn {
        min-width: 0;
        flex: 1;
    }
    .careers-page .car-jobs-list .car-job-toggle,
    .careers-page .car-jobs-list .car-job-card:hover .car-job-toggle,
    .careers-page .car-jobs-list .car-job-card:focus-within .car-job-toggle,
    .careers-page .car-jobs-list .car-job-card.is-open .car-job-toggle {
        width: 58px;
        flex: 0 0 58px;
    }
}

/* ============================================================
   CONTACT PAGE — scoped to .contact-page
   First-fold form, premium dark interface, restrained kinetic layers.
   ============================================================ */
.contact-page #main-content {
    padding-bottom: 0;
}

.contact-page .contact-hero {
    position: relative;
    padding: 12rem 4rem 4rem;
    display: flex;
    align-items: flex-start;
    overflow-x: clip;
    overflow-y: visible;
}

.contact-page .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 42%, rgba(138, 92, 246, 0.2), transparent 31%),
        linear-gradient(180deg, rgba(2, 0, 24, 0.2), rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.contact-page .contact-hero-grid {
    position: relative;
    z-index: 2;
    width: min(1420px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    grid-template-areas: 
        "copy form"
        "filters form";
    gap: clamp(2rem, 5vw, 5rem);
    align-items: flex-start;
    min-width: 0;
}

.contact-page .contact-hero-right {
    grid-area: form;
    position: sticky;
    top: 120px;
    align-self: start;
    z-index: 10;
}

.contact-page .contact-hero-copy {
    grid-area: copy;
    max-width: 760px;
    min-width: 0;
}

.contact-page .contact-kicker {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.4rem;
}

.contact-page .contact-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.2vw, 6.8rem);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    overflow-wrap: anywhere;
}

.contact-page .contact-lede {
    max-width: 670px;
}

.contact-page .contact-lede p {
    font-family: var(--font-heading);
    font-size: clamp(1.08rem, 1.45vw, 1.48rem);
    line-height: 1.42;
    letter-spacing: -0.01em;
    color: rgba(245, 245, 247, 0.72);
    margin-bottom: 0.85rem;
}

.contact-page .contact-lede p:last-child {
    color: var(--white);
}

.contact-page .contact-hero-mark {
    position: absolute;
    right: -14vw;
    top: 4vh;
    width: clamp(520px, 58vw, 1020px);
    aspect-ratio: 1;
    opacity: 0.055;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 80px rgba(138, 92, 246, 0.36));
    will-change: transform;
}

.contact-page .contact-hero-mark svg {
    width: 100%;
    height: 100%;
    fill: var(--impulse-violet);
}

.contact-page .contact-shell-form {
    position: relative;
    isolation: isolate;
    padding: clamp(1.5rem, 2.4vw, 2.2rem);
    border: 1px solid rgba(138, 92, 246, 0.3);
    border-radius: 4px 32px 4px 32px;
    background: linear-gradient(180deg, rgba(84, 61, 152, 0.12), rgba(2, 0, 24, 0.55));
    backdrop-filter: blur(10px);
    overflow: hidden;
    will-change: transform;
    width: 100%;
    min-width: 0;
}

.contact-page .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-page .contact-shell-form label {
    position: relative;
    display: grid;
    gap: 0.55rem;
    z-index: 1;
    min-width: 0;
}

.contact-page .contact-shell-form label span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.25s ease;
    overflow-wrap: anywhere;
}

.contact-page .contact-shell-form label.active span,
.contact-page .contact-shell-form label:focus-within span {
    color: rgb(188, 178, 255);
}

.contact-page .contact-shell-form input,
.contact-page .contact-shell-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.54);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.35;
    padding: 1rem 1rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .contact-shell-form input::placeholder,
.contact-page .contact-shell-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.contact-page .contact-shell-form textarea {
    resize: vertical;
    min-height: 132px;
}

.contact-page .contact-shell-form input:focus,
.contact-page .contact-shell-form textarea:focus {
    border-color: rgba(138, 92, 246, 0.78);
    background: rgba(7, 5, 18, 0.72);
    box-shadow: 0 0 0 1px rgba(138, 92, 246, 0.16), 0 0 24px rgba(138, 92, 246, 0.12);
}

.contact-page .contact-message-field,
.contact-page .contact-upload-field {
    margin-top: 1rem;
}

.contact-page .contact-upload-field {
    border: 1px dashed rgba(138, 92, 246, 0.36);
    border-radius: 6px;
    padding: 1rem;
    background: rgba(84, 61, 152, 0.08);
    cursor: pointer;
}

.contact-page .contact-upload-field input {
    border: 0;
    padding: 0.2rem 0;
    background: transparent;
}

.contact-page .contact-upload-field strong,
.contact-page .contact-upload-field em {
    display: block;
    font-family: var(--font-body);
    line-height: 1.5;
}

.contact-page .contact-upload-field strong {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.contact-page .contact-upload-field em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    font-style: normal;
}

.contact-page .contact-submit {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 62px;
    margin-top: 1.2rem;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: #050505;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact-submit:hover,
.contact-page .contact-submit:focus-visible {
    transform: translateY(-2px) scale(1.01);
    background: #f4f4f7;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-page .contact-submit svg {
    width: 20px;
    height: 20px;
    fill: #050505;
    transition: transform 0.35s ease;
}

.contact-page .contact-submit:hover svg,
.contact-page .contact-submit:focus-visible svg {
    transform: rotate(22deg) scale(1.08);
}

.contact-page .contact-filter,
.contact-page .contact-location {
    position: relative;
    padding: 9rem 0;
}

.contact-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

.contact-page .contact-filter-cards {
    grid-area: filters;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    padding-bottom: 6rem;
}

.contact-page .contact-filter-card {
    position: relative;
    min-height: 420px;
    padding: clamp(2rem, 3vw, 3.2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(6, 6, 8, 0.96), rgba(0, 0, 0, 0.95));
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .contact-filter-card:hover,
.contact-page .contact-filter-card:focus-within {
    transform: none;
    border-color: rgba(138, 92, 246, 0.72);
    box-shadow:
        0 0 0 1px rgba(138, 92, 246, 0.28),
        0 0 28px rgba(138, 92, 246, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-page .contact-filter-card h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 3.1vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-page .contact-filter-card p {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.65;
    color: rgba(245, 245, 247, 0.68);
    max-width: 640px;
    margin-bottom: 0.8rem;
}

.contact-page .contact-filter-card-alert {
    border-color: rgba(138, 92, 246, 0.28);
}

.contact-page .contact-location-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-page .contact-address {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    line-height: 1.4;
    font-weight: 500;
    color: var(--white);
    max-width: 100%;
}

.contact-page .contact-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    align-items: start;
    margin-bottom: 1rem;
}

.contact-page .contact-direct-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page .contact-direct-link {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none;
    transition: transform 0.25s ease;
    align-items: flex-start;
}

.contact-page .contact-direct-link:hover {
    transform: translateX(8px);
}

.contact-page .contact-direct-link:hover .contact-direct-value {
    color: rgb(196, 168, 255);
}

.contact-page .contact-direct-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
}

.contact-page .contact-direct-value {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 500;
    color: var(--white);
    transition: color 0.25s ease;
}

.contact-page .contact-map-shell {
    position: relative;
    min-height: 65vh;
    border: 1px solid rgba(138, 92, 246, 0.34);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 48% 44%, rgba(138, 92, 246, 0.32), transparent 26%),
        linear-gradient(145deg, rgba(12, 12, 16, 0.95), rgba(0, 0, 0, 0.92));
}

.contact-page .contact-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    transform: perspective(700px) rotateX(58deg) translateY(90px) scale(1.25);
    transform-origin: bottom;
    opacity: 0.45;
}

.contact-page .contact-map-shell svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(110px, 20vw, 260px);
    height: clamp(110px, 20vw, 260px);
    transform: translate(-50%, -50%);
    fill: rgba(138, 92, 246, 0.58);
    filter: drop-shadow(0 0 38px rgba(138, 92, 246, 0.5));
}

@media (max-width: 1080px) {
    .contact-page .contact-hero {
        min-height: auto;
        padding: 8rem 2rem 5rem;
    }
    .contact-page .contact-hero-grid,
    .contact-page .contact-location-grid {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-hero-grid {
        grid-template-areas: 
            "copy"
            "form"
            "filters";
    }
    .contact-page .container {
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {

    .contact-page .contact-hero {
        padding: 7rem 1.2rem 4rem;
        display: block;
        width: 100vw;
        max-width: 100vw;
    }
    .contact-page .contact-hero-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: min(310px, calc(100vw - 2.4rem));
        max-width: min(310px, calc(100vw - 2.4rem));
        gap: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-page .contact-hero-copy,
    .contact-page .contact-shell-form {
        width: 100%;
        max-width: min(310px, calc(100vw - 2.4rem));
    }
    .contact-page .contact-headline {
        font-size: clamp(1.82rem, 8vw, 2.05rem);
        line-height: 1.05;
        letter-spacing: -0.025em;
        max-width: 100%;
        word-break: break-word;
    }
    .contact-page .contact-lede p {
        font-size: 1rem;
    }
    .contact-page .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-shell-form {
        padding: 1.2rem;
        max-width: 100%;
    }
    .contact-page .contact-upload-field input {
        max-width: 100%;
        font-size: 0.9rem;
    }
    .contact-page .container {
        padding: 0 1.2rem;
    }

    

    .contact-page .contact-filter,
    .contact-page .contact-location {
        padding: 5rem 0;
    }
    .contact-page .contact-filter-card {
        min-height: auto;
    }
}


.stats-cosmos-card {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    background: radial-gradient(circle at center, rgba(138, 92, 246, 0.1) 0%, rgba(2, 0, 24, 0.95) 100%) !important;
}

.hs-card-big-stat {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stats-cosmos-card .hs-card-inner {
    background: none !important;
    padding: 0 3rem !important;
}

.stats-cosmos-card .hs-desc {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* Stats Cosmos Cards Enhancements */
.cosmos-card-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}
.cosmos-card-bg-logo svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.cosmos-card-bg-logo path {
    fill: transparent !important;
    stroke: rgba(255, 255, 255, 0.4) !important;
    stroke-width: 2 !important;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}


.stats-cosmos-card {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    background: radial-gradient(circle at center, rgba(138, 92, 246, 0.1) 0%, rgba(2, 0, 24, 0.95) 100%) !important;
}

.hs-card-big-stat {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stats-cosmos-card .hs-card-inner {
    background: none !important;
    padding: 0 3rem !important;
}

.stats-cosmos-card .hs-desc {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}


/* Universal Case Study CTA Block */
.case-study-cta-block {
    margin-top: 6rem;
    padding: 5rem;
    background: rgba(170, 59, 255, 0.05);
    border: 1px solid rgba(170, 59, 255, 0.2);
    border-radius: 8px 56px 8px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-study-cta-block h3 {
    font-family: var(--font-heading, sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    z-index: 10;
}

.case-study-cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.5rem 3rem;
    background: #aa3bff;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 40px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.case-study-cta-button:hover {
    background: #fff;
    color: #aa3bff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(170, 59, 255, 0.3);
}

.cta-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}
.cta-bg-logo svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.cta-bg-logo path {
    fill: transparent !important;
    stroke: var(--white, #ffffff) !important;
    stroke-width: 2 !important;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

/* Premium Hero CTA */
.hero-premium-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    border: 1px solid rgba(138, 92, 246, 0.55);
    border-radius: 100px;
    background: rgba(84, 61, 152, 0.15);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(138, 92, 246, 0.2), inset 0 0 8px rgba(138, 92, 246, 0.1);
    text-decoration: none;
    z-index: 1;
}

.hero-premium-cta:hover {
    background: rgba(84, 61, 152, 0.25);
    border-color: rgba(138, 92, 246, 1);
    box-shadow: 0 0 20px rgba(138, 92, 246, 0.6), inset 0 0 12px rgba(138, 92, 246, 0.3);
    transform: translateY(-2px);
}

.hero-premium-cta::before,
.hero-premium-cta::after {
    content: '';
    position: absolute;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--impulse-violet), transparent);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.hero-premium-cta::before { top: 0; }
.hero-premium-cta::after { bottom: -1px; }
.hero-premium-cta:hover::before { opacity: 1; }
.hero-premium-cta:hover::after { opacity: 0.3; }


/* WORK LIST SEPARATOR */
.work-list-separator {
    width: 100%;
    height: 1px;
    background: rgba(138, 92, 246, 0.75);
    margin: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 0 14px rgba(138, 92, 246, 0.6);
}
.work-list-separator.active {
    transform: scaleX(1);
}



.svc-vs-statement, .svc-vs-statement-loud {
}

.gso-page .gso-understanding {
    padding-bottom: 8rem;
}
.gso-clarity-stage {
    position: relative;
    min-height: clamp(560px, 58vw, 720px);
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(180px, 220px) minmax(280px, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    isolation: isolate;
}
.gso-clarity-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}
.gso-clarity-lines line {
    stroke: rgba(138, 92, 246, 0.42);
    stroke-width: 1.2;
    stroke-linecap: round;
}
.gso-clarity-lines .gso-output-line {
    stroke: rgba(220, 200, 255, 0.65);
    stroke-width: 1.6;
}
.gso-clarity-pulse {
    fill: rgba(205, 186, 255, 1);
    filter: drop-shadow(0 0 10px rgba(138, 92, 246, 0.85));
}
.gso-signal-field {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: min(100%, 360px);
    justify-items: stretch;
}
.gso-signal-chip {
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.15rem;
    border: 1px solid rgba(138, 92, 246, 0.32);
    border-radius: 100px;
    background: rgba(2, 0, 24, 0.82);
    color: rgba(245, 245, 247, 0.78);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.gso-signal-chip.understood {
    color: var(--white);
    border-color: rgba(205, 186, 255, 0.76);
    background: rgba(84, 61, 152, 0.18);
    box-shadow: 0 0 24px rgba(138, 92, 246, 0.28);
}
.gso-clarity-lens {
    position: relative;
    z-index: 3;
    width: clamp(170px, 15vw, 220px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
}
.gso-lens-label {
    position: absolute;
    top: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    color: rgba(245,245,247,0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}
.gso-lens-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.gso-ring-track,
.gso-ring-progress {
    fill: none;
    stroke-width: 1.8;
}
.gso-ring-track {
    stroke: rgba(255,255,255,0.08);
}
.gso-ring-progress {
    stroke: rgba(205, 186, 255, 0.95);
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(138, 92, 246, 0.5));
}
.gso-lens-mark {
    width: 58%;
    height: 58%;
    overflow: visible;
    filter: drop-shadow(0 0 28px rgba(138, 92, 246, 0.34));
}
.gso-lens-mark path {
    fill: none;
    stroke: rgba(205, 186, 255, 0.92);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.gso-answer-card {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    max-width: 500px;
    justify-self: end;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(2,0,24,0.86), rgba(84,61,152,0.16));
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.gso-answer-eyebrow {
    color: var(--impulse-violet);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
}
.gso-answer-card h3 {
    font-size: clamp(1.75rem, 2.8vw, 3.1rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.6rem;
}
.gso-answer-proof {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}
.gso-answer-proof span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(245,245,247,0.84);
    font-size: 0.95rem;
    line-height: 1.4;
}
.gso-answer-proof span::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: rgba(205, 186, 255, 0.95);
    box-shadow: 0 0 12px rgba(138, 92, 246, 0.8);
}
.gso-answer-card p {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

/* ---- Connected Systems ---- */
.svc-systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.svc-systems-intro p {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: var(--soft-grey);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}
.svc-systems-intro .closer {
    color: var(--white);
    font-weight: 500;
    font-style: italic;
    opacity: 1;
    margin-top: 2.5rem;
}
.svc-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.svc-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--soft-grey);
}
.svc-bullet-list li .mark-glyph {
    width: 14px;
    height: 14px;
    margin-top: 0.4rem;
    flex-shrink: 0;
}
.svc-bullet-list li:first-child { padding-top: 0; }
.svc-bullet-list li:last-child { border-bottom: none; }

/* ---- Guardrails ---- */
.svc-guardrails { padding: 8rem 0; position: relative; }
.svc-guard-intro {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--soft-grey);
    opacity: 0.85;
    margin-bottom: 2.5rem;
}
.svc-guard-intro p { margin-bottom: 1.25rem; }
.svc-guard-intro .pivot { color: var(--white); font-weight: 500; }
.svc-guard-list {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 3rem 0;
}
.svc-guard-row {
    display: grid;
    grid-template-columns: 60px 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}
.svc-guard-row:hover { background: rgba(84,61,152,0.04); }
.svc-guard-row .mark-glyph {
    width: 36px;
    height: 36px;
    opacity: 0.8;
}
.svc-guard-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.svc-guard-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-grey);
    opacity: 0.75;
}
.svc-guard-punchline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-align: center;
    margin-top: 4rem;
}
.svc-guard-punchline .accent { color: var(--impulse-violet); }

/* ---- Right For You Checklist ---- */
.svc-fit { padding: 8rem 0; }
.svc-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.svc-fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.svc-fit-list li {
    display: block;
    padding: 1.75rem 0 1.75rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-left: 2px solid rgba(84, 61, 152, 0.25);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--soft-grey);
    transition: color 0.3s ease, border-left-color 0.3s ease;
}
.svc-fit-list li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.svc-fit-list li:hover {
    color: var(--white);
    border-left-color: var(--impulse-violet);
}
.svc-fit-closer {
    margin-top: 3rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
}



/* ---- Service Page responsive ---- */
@media (max-width: 1024px) {
    .svc-hero, .svc-hero-page { padding: 9rem 1.5rem 4rem; }
    .svc-hero-headline { font-size: clamp(2.6rem, 11vw, 5rem) !important; }
    .svc-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .svc-hero-mark { max-width: 360px; margin: 0 auto; }
    .svc-stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    .svc-stat { border-left: none; padding-left: 0; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .svc-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .svc-problem-grid { grid-template-columns: 1fr; gap: 3rem; }
    .svc-uses-grid { grid-template-columns: 1fr; }
    .svc-systems-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .svc-fit-grid { grid-template-columns: 1fr; gap: 2rem; }
    .svc-vs-line { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .svc-vs-label { width: auto; }
    .svc-guard-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .svc-channels-stage { aspect-ratio: 1 / 1.1; }
    .svc-channels-center { width: 140px; height: 140px; }
    .svc-channel-chip { font-size: 0.65rem; padding: 0.5rem 0.9rem; letter-spacing: 1.5px; }
    .gso-clarity-stage {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 1rem;
    }
    .gso-understanding .svc-channels-intro {
        white-space: normal;
    }
    .gso-signal-field {
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gso-signal-chip {
        width: 100%;
        font-size: 0.66rem;
        padding: 0.65rem 0.85rem;
        letter-spacing: 0;
    }
    .gso-lens-label { top: -1.8rem; font-size: 0.64rem; }
    .gso-answer-card { justify-self: stretch; max-width: none; }
    .gso-clarity-lines { display: none; }
}

