/* 1. SHARED ROOT DESIGN TOKENS */
        :root {
            --primaryFont: "Be Vietnam Pro", sans-serif;
            --secondaryFont: "Inter", sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

            --primaryColor: #111111;
            --secondaryColor: #FF6200;
            --accentOrbColor: #FF6200;
            --bgColor: #fff4e6;
            --whiteColor: #FFFFFF;
            --footerColor: #111111;

            --borderColor: rgba(17, 17, 17, 0.15);
            --borderColorLight: rgba(17, 17, 17, 0.1);
            --offwhiteColor: rgba(255, 255, 255, 0.7);
            --mutedWhiteColor: rgba(255, 255, 255, 0.3);

            --fontSize: 16px;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;

            /* Legacy Mappings to ensure current preview stays exactly the same */
            --bg: var(--bgColor);
            --black: var(--primaryColor);
            --accent: var(--secondaryColor);
            --white: var(--whiteColor);
            --font-heading: var(--primaryFont);
            --font-body: var(--secondaryFont);
        }

        /* 2. GLOBAL RESET & BASE */
        html { scroll-behavior: smooth; }
        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 {
            background-color: var(--bgColor);
            color: var(--primaryColor);
            font-family: var(--secondaryFont);
            font-size: var(--fontSize);
            line-height: 1.65;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            cursor: default;
            -webkit-tap-highlight-color: transparent;
        }
        @media (min-width: 768px) {
            body { font-size: 1.125rem; }
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        p { font-family: var(--secondaryFont); margin-bottom: 0; }
        button { font-family: var(--primaryFont); border: none; background: transparent; padding: 0; cursor: pointer; }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--primaryFont);
            text-transform: uppercase;
            margin-bottom: 0;
            font-weight: 900;
        }
		/* Core sizing and typography for main section headings (H2) */
        .global-h2 {
            font-family: var(--primaryFont);
            font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
            line-height: 1.1em;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: none;
            max-width: 65rem;
        }

        /* Subheadings directly under H2s */
        .global-h2-sub {
            font-size: clamp(1.1rem, 3vw + 0.5rem, 1.5rem);
            font-weight: 500;
            color: rgba(17, 17, 17, 0.7);
            margin-top: 1.5rem;
            max-width: 48rem;
        }

        /* Standardized sizing for inner section headings (H3) */
        .global-h3 {
            font-family: var(--primaryFont);
            font-size: clamp(1.5rem, 2.5vw + 1rem, 2.75rem);
            line-height: 1.1em;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        /* Text/paragraphs directly under H3s */
        .global-h3-sub {
            font-size: clamp(1rem, 2vw + 0.75rem, 1.125rem);
            font-weight: 500;
            color: rgba(17, 17, 17, 0.7);
            margin-top: 1rem;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        /* 3. UTILITIES & REUSABLE COMPONENTS */
        .hairline-t { border-top: 1px solid var(--borderColor); }
        .hairline-b { border-bottom: 1px solid var(--borderColor); }
        .hairline-l { border-left: 1px solid var(--borderColor); }
        .hairline-r { border-right: 1px solid var(--borderColor); }

        .px-fluid { padding-left: 1.5rem; padding-right: 1.5rem; }
        @media (min-width: 768px) { .px-fluid { padding-left: 3rem; padding-right: 3rem; } }

        .py-section { padding-top: 8rem; padding-bottom: 5rem; }
        @media (min-width: 768px) { .py-section { padding-top: 8rem; padding-bottom: 8rem; } }

        /* Standardized Orb Logic anchored to the first word */
        .orb-relative { position: relative; display: inline-block; z-index: 1; }
        .orb-text-front { position: relative; z-index: 10; }

        .common-orb {
            position: absolute;
            background-color: var(--accentOrbColor);
            border-radius: 50%;
            z-index: -1;
            width: 3rem; height: 3rem;
            top: -0.5rem; left: -0.75rem;
        }
        @media (min-width: 768px) {
            .common-orb {
                width: 4.5rem; height: 4.5rem;
                top: -1rem; left: -1rem;
            }
        }
        
        .accent-orb { /* Kept mapped strictly for backwards compatibility in HTML */ }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }

        .img-editorial {
            filter: grayscale(100%) contrast(1.1);
            transition: var(--transition);
            width: 100%; height: 100%; object-fit: cover;
        }
        .image-hover-wrapper:hover .img-editorial {
            filter: grayscale(0%) contrast(1);
            transform: scale(1.03);
        }

        /* Minimal scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bgColor); }
        ::-webkit-scrollbar-thumb { background: var(--primaryColor); }

        /* ==========================================================================
           01-page-specific.css
           ========================================================================== */

        /* Core Colors */
        .bg-bg { background-color: var(--bg) !important; }
        .bg-black { background-color: var(--black) !important; }
        .bg-accent { background-color: var(--accent) !important; }
        .bg-white { background-color: var(--white) !important; }
        .text-black { color: var(--black) !important; }
        .text-accent { color: var(--accent) !important; }
        .text-white { color: var(--white) !important; }

        /* Typography Utilities */
        .font-heading { font-family: var(--font-heading); }
        .font-body { font-family: var(--font-body); }
        .font-mono { font-family: var(--font-mono); }
        
        .font-black { font-weight: 900; }
        .font-bold { font-weight: 700; }
        .font-light { font-weight: 300; }
        
        .uppercase { text-transform: uppercase; }
        .tracking-tighter { letter-spacing: -0.05em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .tracking-widest-lg { letter-spacing: 0.2em; }

        .text-xs { font-size: 0.75rem; line-height: 1rem; }
        .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
        .text-base { font-size: 1rem; line-height: 1.5rem; }
        .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
        .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
        .text-2xl { font-size: 1.5rem; line-height: 2rem; }
        .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
        .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
        .text-5xl { font-size: 3rem; line-height: 1; }
        .text-6xl { font-size: 3.75rem; line-height: 1; }
        .text-8xl { font-size: 6rem; line-height: 1; }

        /* Max Widths */
        .max-w-1440 { max-width: 100%; }
        .max-w-7xl { max-width: 80rem; }
        .max-w-6xl { max-width: 72rem; }
        .max-w-5xl { max-width: 64rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-3xl { max-width: 48rem; }
        .max-w-2xl { max-width: 42rem; }
        .max-w-xl { max-width: 36rem; }
        .max-w-lg { max-width: 32rem; }
        .max-w-md { max-width: 28rem; }
        
        /* Opacity Colors */
        .text-black-30 { color: rgba(17,17,17,0.3); }
        .text-black-40 { color: rgba(17,17,17,0.4); }
        .text-black-50 { color: rgba(17,17,17,0.5); }
        .text-black-60 { color: rgba(17,17,17,0.6); }
        .text-black-70 { color: rgba(17,17,17,0.7); }
        .text-black-80 { color: rgba(17,17,17,0.8); }
        .text-black-90 { color: rgba(17,17,17,0.9); }
        
        .border-black-10 { border-color: rgba(17,17,17,0.1) !important; }
        .border-black-15 { border-color: rgba(17,17,17,0.15) !important; }
        .border-black-20 { border-color: rgba(17,17,17,0.2) !important; }
        
        /* Layout Utilities */
        .min-vh-90 { min-height: 90vh; }
        .z-0 { z-index: 0; }
        .z-10 { z-index: 10; }
        .z-20 { z-index: 20; }
        .z-30 { z-index: 30; }
        .z-50 { z-index: 50; }
        .z-100 { z-index: 100; }
        .mix-blend-difference { mix-blend-mode: difference; }
        .pointer-events-none { pointer-events: none; }
        .pointer-events-auto { pointer-events: auto; }
        .hw-accel { will-change: transform, opacity; transform: translateZ(0); backface-visibility: hidden; }
        
        /* Hardware acceleration for mobile performance */
        .gsap-fade-up, .reveal, .service-hover-row, .process-card, .fail-accordion-row, .tech-roster-row, .standard-row, .plan-row {
            transform: translateZ(0);
            backface-visibility: hidden;
            will-change: transform, opacity;
        }
        
        /* Fluid Spacing & Typography */
        .hero-title { font-size: clamp(2.5rem, 6vw + 1rem, 7.5rem) !important; line-height: 1.1em !important; letter-spacing: -0.05em !important; font-weight: 900 !important; }
        .global-h2 { font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem) !important; line-height: 1.1em !important; letter-spacing: -0.05em !important; font-weight: 900 !important; margin-bottom: 0; }
        .global-h2-sub { font-size: clamp(1.1rem, 3vw + 0.5rem, 1.5rem) !important; font-weight: 500 !important; line-height: 1.65 !important; }
        .global-h3 { font-size: clamp(1.5rem, 2.5vw + 1rem, 2.75rem) !important; line-height: 1.1em !important; letter-spacing: -0.05em !important; font-weight: 900 !important; margin-bottom: 0; }
        .global-h3-sub { font-size: clamp(1rem, 2vw + 0.75rem, 1.125rem) !important; font-weight: 500 !important; line-height: 1.65 !important; margin-top: 1rem; margin-bottom: 0; }

        /* Gaps */
        .gap-12px { gap: 0.75rem; }
        .gap-16px { gap: 1rem; }
        .gap-24px { gap: 1.5rem; }
        .gap-32px { gap: 2rem; }
        .gap-48px { gap: 3rem; }

        /* Text reveal masks */
        .line-mask { overflow: hidden; display: block; padding-top: 0.3em; margin-top: -0.3em; padding-bottom: 0.3em; margin-bottom: -0.3em; }
        .line-mask-inner { display: block; transform: translateY(110%); transform-origin: bottom left; }
        
        /* Marquee */
        /*.marquee-container { display: flex; white-space: nowrap; overflow: hidden; width: 100%; transform: translateZ(0); }
        .marquee-content { display: flex; flex-shrink: 0; animation: marquee 20s linear infinite; will-change: transform; }
        @keyframes marquee { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }*/

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 0 !important;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: max-content;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.marquee-title {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

/* Equal small space around every dot */
.marquee-dot {
    display: inline-block;
    flex-shrink: 0;
    margin-left: 20px;
    margin-right: 20px;
    line-height: 1;
}

@keyframes marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}
        /* Custom Button */
        .btn-custom {
            display: inline-flex; align-items: center; gap: 1rem;
            font-family: var(--font-heading); font-weight: 900; text-transform: uppercase;
            letter-spacing: 0.1em; font-size: 0.875rem; color: var(--white);
            background-color: var(--black); padding: 1.5rem 2.5rem;
            border: 1px solid var(--black); transition: all 0.5s; text-decoration: none;
        }
        .btn-custom:hover { background-color: transparent; color: var(--black) !important; }
        .btn-custom-line { width: 2rem; height: 1px; background-color: var(--white); transition: background-color 0.5s; }
        .btn-custom:hover .btn-custom-line { background-color: var(--accent); }

        .btn-hero { padding: 1.15rem 2rem; font-size: 0.75rem; }
        .btn-hero:hover { background-color: var(--accent) !important; border-color: var(--accent) !important; color: var(--black) !important; }
        .btn-hero:hover .btn-custom-line { background-color: var(--black) !important; }

        .btn-accent { background-color: var(--accent); color: var(--black); border-color: var(--accent); padding: 1.25rem 2.5rem; font-size: 0.75rem; }
        .btn-accent:hover { background-color: rgba(255,255,255,0.1); color: var(--white) !important; border-color: rgba(255,255,255,0.1); }

        /* Cursor Follower for Services */
        #cursor-follower {
            position: fixed; top: 0; left: 0; width: 350px; height: 250px;
            pointer-events: none; opacity: 0;
            transform: translate(-50%, -50%) scale(0.8);
            transition: opacity 0.4s ease, transform 0.4s ease;
            z-index: 100; background-size: cover; background-position: center; border-radius: 4px;
        }
        #cursor-follower.active { opacity: 1; transform: translate(-50%, -50%) scale(1); }

        /* Service Hover Row */
        .service-hover-row {
            padding: 1.5rem 1.5rem; margin-left: -1.5rem; margin-right: -1.5rem;
            cursor: pointer; display: flex; flex-direction: column; position: relative; z-index: 10;
            transition: all 0.5s;
        }
        @media (min-width: 768px) {
            .service-hover-row { padding: 2rem 3rem; margin-left: -3rem; margin-right: -3rem; }
        }
        .service-hover-row:hover { background-color: var(--black); }
        .service-hover-title { transform-origin: left; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
        .service-hover-row:hover .service-hover-title { transform: scale(1.05); color: var(--white) !important; }
        
        .service-hover-grid { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
        .service-hover-row:hover .service-hover-grid { grid-template-rows: 1fr; }
        .service-hover-inner { overflow: hidden; min-height: 0; }
        
        .service-hover-content { opacity: 0; transition: opacity 0.7s; transition-delay: 100ms; }
        .service-hover-row:hover .service-hover-content { opacity: 1; }
        .service-hover-desc { color: rgba(17,17,17,0.6); transition: color 0.5s; }
        .service-hover-row:hover .service-hover-desc { color: rgba(255,255,255,0.8); }
        
        .service-hover-img-wrapper {
            width: 180px; height: 260px; border-radius: 0; overflow: hidden; background-color: rgba(17,17,17,0.05); flex-shrink: 0;
        }
        @media (min-width: 768px) { .service-hover-img-wrapper { width: 280px; height: 400px; } }
        .service-hover-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.25); transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
        .service-hover-row:hover .service-hover-img { transform: scale(1); }

        /* Strategy Nodes */
        .strategy-section {
          position: relative;
          overflow: hidden;
          padding: 5rem 1.5rem;
          border-bottom: 1px solid rgba(17, 17, 17, .15);
          background: var(--bg);
        }

        .strategy-container {
          position: relative;
          z-index: 1;
          width: 100%;
          max-width: 100%;
          margin: 0 auto;
        }

        .strategy-intro {
          display: flex;
          flex-direction: column;
          gap: 3rem;
          margin-bottom: 6rem;
        }

        .strategy-title,
        .strategy-heading,
        .strategy-number {
          margin: 0;
          font-family: var(--font-heading);
          font-weight: 900;
          text-transform: uppercase;
          letter-spacing: -.05em;
        }

        .strategy-title {
          max-width: 64rem;
          font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
          color: var(--black);
        }

        .strategy-accent,
        .strategy-kicker { color: var(--accent); }

        .strategy-summary {
          width: 100%;
          margin: 0;
          padding-left: 1.5rem;
          border-left: 4px solid var(--accent);
          color: rgba(17, 17, 17, .6);
          font-size: clamp(1.1rem, 3vw + .5rem, 1.5rem);
          font-weight: 500;
          line-height: 1.65;
        }

        .strategy-timeline {
          position: relative;
          width: 100%;
          padding-top: 3rem;
        }

        .strategy-spine,
        .strategy-progress {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 16px;
        }

        .strategy-spine {
          z-index: 0;
          width: 1px;
          background: rgba(17, 17, 17, .1);
        }

        .strategy-progress {
          z-index: 20;
          width: 3px;
          background: var(--accent);
          transform: scaleY(0);
          transform-origin: top;
        }

        .strategy-steps {
          display: flex;
          flex-direction: column;
        }

        .strategy-step {
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
          width: 100%;
          min-height: 40vh;
        }

        .strategy-content {
          position: relative;
          z-index: 10;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          padding: 2.5rem 0 2.5rem 3.5rem;
          transition: transform .7s cubic-bezier(.16, 1, .3, 1);
        }

        .strategy-kicker {
          margin: 0 0 1rem;
          font-family: var(--font-mono);
          font-size: .875rem;
          font-weight: 700;
          line-height: 1.5;
          letter-spacing: .1em;
          text-transform: uppercase;
        }

        .strategy-heading {
          margin: 0 0 1.5rem;
          color: var(--black);
          font-size: clamp(1.5rem, 2.5vw + 1rem, 2.75rem);
          line-height: 1.1;
          transition: color .5s ease;
        }

        .strategy-description {
          max-width: 28rem;
          margin: 0;
          color: rgba(17, 17, 17, .6);
          font-size: clamp(1rem, 2vw + .75rem, 1.125rem);
          font-weight: 500;
          line-height: 1.65;
        }

        .strategy-node {
          position: absolute;
          z-index: 30;
          top: 50%;
          left: 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 3rem;
          height: 3rem;
          transform: translate(-50%, -50%);
        }

        .strategy-node-dot {
          width: 1rem;
          height: 1rem;
          border: 3px solid rgba(17, 17, 17, .2);
          border-radius: 50%;
          background: var(--bg);
          transition: all .5s cubic-bezier(.16, 1, .3, 1);
        }

        .strategy-number-wrap {
          display: none;
          width: 50%;
          height: 100%;
          align-items: center;
          pointer-events: none;
        }

        .strategy-number {
          color: var(--black);
          font-size: 180px;
          line-height: 1;
          transition: all .85s cubic-bezier(.16, 1, .3, 1);
        }

        .strategy-step:hover .strategy-heading,
        .strategy-step:hover .strategy-number { color: var(--accent); }

        .strategy-step:hover .strategy-node-dot {
          border-color: var(--accent);
          background: var(--accent);
          transform: scale(1.5);
        }

        @media (min-width: 768px) {
          .strategy-section { padding: 8rem 3rem; }
          .strategy-intro {
            flex-direction: row;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 10rem;
          }
          .strategy-summary { 
            /*width: 33.333%; */
            width: 50%;
            margin-bottom: 1rem; }
          .strategy-timeline { padding-top: 6rem; }
          .strategy-spine,
          .strategy-progress { left: 50%; transform: translateX(-50%); }
          .strategy-progress { transform: translateX(-50%) scaleY(0); }
          .strategy-step { flex-direction: row; }
          .strategy-content {
            width: 50%;
            padding-top: 6rem;
            padding-bottom: 6rem;
          }
          .strategy-step--left .strategy-content {
            align-items: flex-end;
            padding-left: 0;
            padding-right: 6rem;
            text-align: right;
          }
          .strategy-step--right .strategy-content {
            order: 2;
            padding-left: 6rem;
            padding-right: 0;
          }
          .strategy-step--left:hover .strategy-content { transform: translateX(-1rem); }
          .strategy-step--right:hover .strategy-content { transform: translateX(1rem); }
          .strategy-node { left: 50%; }
          .strategy-number-wrap { display: flex; }
          .strategy-step--left .strategy-number-wrap { justify-content: flex-start; padding-left: 6rem; }
          .strategy-step--right .strategy-number-wrap { order: 1; justify-content: flex-end; padding-right: 6rem; }
          .strategy-step--left:hover .strategy-number { transform: translateX(2rem); }
          .strategy-step--right:hover .strategy-number { transform: translateX(-2rem); }
        }

        @media (min-width: 1024px) {
          .strategy-step--left .strategy-content { padding-right: 8rem; }
          .strategy-step--right .strategy-content { padding-left: 8rem; }
          .strategy-step--left .strategy-number-wrap { padding-left: 8rem; }
          .strategy-step--right .strategy-number-wrap { padding-right: 8rem; }
          .strategy-number { font-size: 240px; }
        }

        /* Process Cards */
        .process-card {
            min-height: 400px; overflow: hidden; position: relative; padding: 2rem; display: flex; flex-direction: column; justify-content: center;
            cursor: pointer; background-color: transparent; border-bottom: 1px solid rgba(17,17,17,0.1); border-right: 1px solid rgba(17,17,17,0.1);
        }
        @media (min-width: 768px) { .process-card { padding: 3rem; } }
        
        .process-bg-circle {
            position: absolute; top: 50%; left: 50%; width: 190%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%) scale(0);
            transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0;
        }
        .process-card:hover .process-bg-circle { transform: translate(-50%, -50%) scale(1.5); }
        .process-card:hover .process-bg-circle.bg-black { background-color: var(--black) !important; }
        
        .process-content { position: relative; z-index: 10; transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }
        .process-card:hover .process-content { transform: translateY(-1rem); }
        
        .process-num-large { font-size: 3.75rem; color: rgba(17,17,17,0.05); transition: opacity 0.3s; margin-bottom: 0.5rem; display: block; }
        @media (min-width: 768px) { .process-num-large { font-size: 6rem; } }
        .process-card:hover .process-num-large { opacity: 0; }
        
        .process-step { opacity: 0; transition: opacity 0.5s; margin-bottom: 1rem; display: block; }
        .process-card:hover .process-step { opacity: 1; }
        
        .process-title { transition: color 0.85s; word-break: break-word; overflow-wrap: break-word; font-size: clamp(1.25rem, 2vw + 0.75rem, 2.25rem) !important; line-height: 1.1 !important; }
        .process-card:hover .process-title-white { color: var(--white) !important; }
        
        .process-grid { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
        .process-card:hover .process-grid { grid-template-rows: 1fr; }
        .process-inner { overflow: hidden; min-height: 0; }
        .process-desc { opacity: 0; transition: opacity 0.7s; transition-delay: 100ms; padding-top: 1.5rem; }
        .process-card:hover .process-desc { opacity: 1; }
        .process-card:hover .process-desc-white { color: rgba(255,255,255,0.8) !important; }

        /* Cinematic Pillars */
        .pillar-container { display: flex; flex-direction: column; min-height: 1050px; height: auto; border-top: 1px solid rgba(17,17,17,0.2); border-left: 1px solid rgba(17,17,17,0.2); }
        @media (min-width: 768px) { .pillar-container { flex-direction: row; min-height: 650px; height: 650px; } }
        
        .pillar-card {
            flex: 1; position: relative; padding: 2rem; border-right: 1px solid rgba(17,17,17,0.2); border-bottom: 1px solid rgba(17,17,17,0.2);
            transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background-color: var(--bg);
        }
        @media (min-width: 768px) { .pillar-card { padding: 3rem; border-bottom: none; } }
        .pillar-card:hover { flex: 2.5; }
        
        .pillar-bg { position: absolute; inset: 0; transform: translateY(100%); transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; pointer-events: none; }
        .pillar-card:hover .pillar-bg { transform: translateY(0); }
        
        .pillar-num-bg { font-size: 200px; line-height: 1; color: rgba(17,17,17,0.05); transition: color 0.7s; }
        @media (min-width: 768px) { .pillar-num-bg { font-size: 350px; } }
        .pillar-card:hover .pillar-num-bg.hover-white { color: rgba(255,255,255,0.05); }
        
        .pillar-label { transition: color 0.7s; }
        .pillar-card:hover .pillar-label-black { color: var(--black) !important; }
        .pillar-card:hover .pillar-label-accent { color: var(--accent) !important; }
        
        .pillar-content { position: relative; z-index: 10; display: flex; flex-direction: column; }
        
        .pillar-title { 
            transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1); 
            transform: translateY(0); 
            padding-bottom: 0.5rem; 
            font-size: clamp(1.25rem, 1.5vw + 0.5rem, 2rem) !important;
            white-space: normal !important;
            word-break: break-word;
        }
        .pillar-card:hover .pillar-title { transform: translateY(-0.5rem); }
        .pillar-card:hover .pillar-title-white { color: var(--white) !important; }
        
        .pillar-grid { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.85s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }
        .pillar-card:hover .pillar-grid { grid-template-rows: 1fr; }
        .pillar-inner { overflow: hidden; min-height: 0; }
        .pillar-desc { opacity: 0; transition: opacity 0.7s; transition-delay: 100ms; padding-top: 1rem; padding-bottom: 1rem; }
        .pillar-card:hover .pillar-desc { opacity: 1; }
        .pillar-card:hover .pillar-desc-white { color: rgba(255,255,255,0.8) !important; }

        /* Plans Accordion */
        .plan-row {
            padding: 2rem 1.5rem; border-bottom: 1px solid rgba(17,17,17,0.15); margin-left: -1.5rem; margin-right: -1.5rem;
            cursor: pointer; display: flex; flex-direction: column; transition: background-color 0.5s;
        }
        @media (min-width: 768px) { .plan-row { padding: 3rem 2rem; margin-left: -2rem; margin-right: -2rem; } }
        .plan-row:hover { background-color: var(--black); }
        
        .plan-title { transition: color 0.5s; }
        .plan-row:hover .plan-title { color: var(--accent) !important; }
        
        .plan-icon { font-size: 2.25rem; font-weight: 300; color: var(--accent); transition: transform 0.5s; }
        @media (min-width: 768px) { .plan-icon { font-size: 3rem; } }
        
        .plan-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
        .plan-row.active .plan-content { grid-template-rows: 1fr; }
        .plan-content-inner { overflow: hidden; min-height: 0; }
        .plan-desc { color: rgba(17,17,17,0.6); transition: color 0.5s; }
        .plan-row:hover .plan-desc { color: rgba(255,255,255,0.8); }

        /* Industry Row */
        .industry-row { padding: 5rem 0; border-top: 1px solid rgba(17,17,17,0.1); cursor: default; }
        @media (min-width: 768px) { .industry-row {
			padding: 3rem 0;
			display: flex;
			align-items: center !important;
		} }
        
        .industry-left { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
        .industry-row:hover .industry-left { transform: translateX(1rem); }
        
        .industry-num { opacity: 0.7; transition: opacity 0.5s; }
        .industry-row:hover .industry-num { opacity: 1; }
        
        .industry-right { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
        .industry-row:hover .industry-right { transform: translateY(-0.5rem); }
        
        .industry-subtitle { transition: color 0.5s; }
        .industry-row:hover .industry-subtitle { color: var(--accent) !important; }
        
        .industry-desc { transition: color 0.5s; }
        .industry-row:hover .industry-desc { color: rgba(17,17,17,0.9) !important; }

        /* The Tikz Standard */
        .standard-row {
            padding: 2.5rem 0; border-bottom: 1px solid rgba(17,17,17,0.15);
            cursor: pointer; position: relative; overflow: hidden; background-color: var(--bg); display: flex; flex-direction: column; justify-content: center;
        }
        @media (min-width: 768px) { .standard-row { padding: 4rem 0; } }
        
        .standard-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background-color: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); z-index: 20; }
        .standard-row:hover .standard-line { transform: scaleX(1); }
        
        .standard-num { transition: color 0.5s; display: block; }
        .standard-row:hover .standard-num { color: var(--accent) !important; }
        
        .standard-title { transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: left; color: var(--black); }
        .standard-row:hover .standard-title { transform: translateX(0.75rem); }
        @media (min-width: 768px) { .standard-row:hover .standard-title { transform: translateX(2rem); } }
        
        .standard-grid { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
        .standard-row:hover .standard-grid { grid-template-rows: 1fr; }
        .standard-inner { overflow: hidden; min-height: 0; }
        .standard-desc { opacity: 0; transition: opacity 0.7s; transition-delay: 100ms; padding-bottom: 0.5rem; }
        .standard-row:hover .standard-desc { opacity: 1; color: rgba(17,17,17,0.9) !important; }
        
        .standard-bg-num { position: absolute; right: 0; top: 50%; transform: translateY(-50%) translateX(3rem); z-index: 0; pointer-events: none; opacity: 0; transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1); font-size: 200px; line-height: 1; color: var(--black); }
        @media (min-width: 768px) { .standard-bg-num { right: 3rem; } }
        .standard-row:hover .standard-bg-num { transform: translateY(-50%) translateX(0); opacity: 0.05; }
        
        /* Utility for Sticky Column */
        .process-sticky-col { position: relative; }
        @media (min-width: 992px) {
            .process-sticky-col { position: sticky !important; top: 8rem; height: max-content; }
        }

        /* Compare Table */
		.comp-header {
			border-bottom: 1px solid var(--borderColor);
			padding-bottom: 1.5rem;
			margin-bottom: 0;
		}
		.web-different-sec h3 {
			font-size: 24px;
			word-wrap: break-word;
		}
        .comp-row { padding: 3rem 1.5rem; border-bottom: 1px solid rgba(17,17,17,0.15); cursor: default; }
        @media (min-width: 768px) { .comp-row { padding: 3rem 2rem; } }
        
        .comp-title { color: var(--black); }
        .comp-weak { color: var(--black-50); }
        .comp-strong { color: var(--black-90); }

        /* FAQ */
/*         .faq-button { width: 100%; padding: 2.5rem 0; display: flex; justify-content: space-between; align-items: center; text-align: left; }
        .faq-title { transition: color 0.5s; width: 90%; }
        .faq-item:hover .faq-title { color: var(--accent) !important; }
        .faq-icon { font-size: 2.25rem; font-weight: 300; transition: transform 0.5s; }
        @media (min-width: 768px) { .faq-icon { font-size: 3rem; } }
        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1); } */
		
			/* ==========================================================================
			   faq.css — FAQ accordion section
			   ========================================================================== */
			.faq-sticky { position: sticky; top: 8rem; padding-right: 1rem; }
			@media (min-width: 768px) { .faq-sticky { padding-right: 2rem; } }

			.faq-item { border-top: 1px solid var(--borderColor); }
			.faq-item:last-child { border-bottom: 1px solid var(--borderColor); }
			.faq-button { width: 100%; text-align: left; padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; }
			.faq-button:focus { outline: none; }
			.faq-q { font-size: 1.125rem; letter-spacing: -0.02em; transition: color 0.3s; }
			@media (min-width: 768px) { .faq-q { font-size: 1.25rem; } }
			.faq-button:hover .faq-q { color: var(--secondaryColor); }
			.faq-icon { font-family: monospace; font-size: 1.25rem; color: #11111166; transition: color 0.3s; }
			.faq-icon.active { color: var(--secondaryColor); }
			.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
			.faq-a { padding-bottom: 2rem; color: #11111199; font-size: 14px; line-height: 1.65; max-width: 42rem; }
			/* ==========================================================================
			   END: faq.css
			   ========================================================================== */
/* 			@media (min-width: 1024px) {
    .faq-title,
    .audit-title {
        font-size: 3.75rem !important;
    }
}
			@media (min-width: 768px) {
    .faq-title,
    .audit-title {
        font-size: 3.75rem;
    }
} */

        /* Magnetic Area */
        .magnetic-wrap { display: inline-block; padding: 3rem; }
        .magnetic-button {
            display: inline-flex; align-items: center; justify-content: center;
            width: 12rem; height: 12rem; background-color: var(--accent); border-radius: 50%;
            color: var(--black); text-decoration: none; transition: background-color 0.5s, color 0.5s, transform 0.5s;
        }
        @media (min-width: 768px) { .magnetic-button { width: 16rem; height: 16rem; } }
        .magnetic-button:hover { background-color: var(--black); color: var(--white) !important; transform: scale(1.1); }

        /* Audit Section */
        .audit-section { position: relative; overflow: hidden; background-color: var(--bg); display: flex; flex-direction: column; justify-content: space-between; min-height: 90vh; }
        .audit-bg-texture { position: absolute; inset: 0; opacity: 0.4; background-image: radial-gradient(circle at 100% 0%, rgba(255, 98, 0, 0.05) 0%, transparent 50%); z-index: 0; pointer-events: none; }
        .audit-title { font-family: var(--font-heading); font-size: clamp(3rem, 6vw + 1rem, 6rem); line-height: 0.9; text-transform: uppercase; letter-spacing: -0.05em; font-weight: 900; color: var(--black); }
        
        .audit-form-card { background-color: var(--black); padding: 2rem; color: var(--white); box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; overflow: hidden; }
        @media (min-width: 768px) { .audit-form-card { padding: 4rem; } }
        .audit-accent-line { width: 3rem; height: 4px; background-color: var(--accent); margin-bottom: 2rem; }
        .audit-desc { color: rgba(255,255,255,0.7); font-size: 1.125rem; margin-bottom: 2.5rem; line-height: 1.6; font-family: var(--font-body); }
        
        .audit-form .form-group { margin-bottom: 2rem; }
        .audit-form .form-label { display: block; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; font-weight: 600; }
        .audit-form .form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 0.75rem 0; font-size: 1.125rem; transition: border-color 0.3s; font-family: var(--font-body); }
        .audit-form .form-input:focus { outline: none; border-bottom-color: var(--accent); }
        .audit-form .form-input::placeholder { color: rgba(255,255,255,0.2); }
        
        .btn-submit { display: inline-flex; align-items: center; justify-content: center; width: 100%; background-color: var(--accent); color: var(--black); font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; padding: 1.25rem; border: 1px solid var(--accent); transition: all 0.3s; margin-top: 1rem; cursor: pointer; font-size: 0.875rem; }
        .btn-submit:hover { background-color: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
        
        .bento-fail-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .bento-fail-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .bento-fail-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .bento-item-1 { grid-column: span 2; }
            .bento-item-2 { grid-column: span 1; }
            .bento-item-3 { grid-column: span 1; }
            .bento-item-4 { grid-column: span 1; }
            .bento-item-5 { grid-column: span 1; }
        }

        .bento-card {
            position: relative;
            background-color: var(--whiteColor);
            border-radius: 1.5rem;
            padding: 2.5rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgba(17, 17, 17, 0.08);
            transition: border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1;
            height: 100%;
        }
        @media (min-width: 768px) {
            .bento-card { padding: 3rem; }
        }

        .bento-card-bg {
            position: absolute;
            inset: 0;
            background-color: var(--black);
            transform: translateY(101%);
            transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
            border-radius: 1.5rem;
        }

        .bento-card:hover {
            border-color: var(--black);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
        }

        .bento-card:hover .bento-card-bg {
            transform: translateY(0);
        }

        .bento-num {
            font-family: var(--font-mono);
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.875rem;
            margin-bottom: 3rem;
            display: block;
        }

        .bento-title {
            font-family: var(--font-heading);
            text-transform: uppercase;
            color: var(--black);
            font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            transition: color 0.5s ease;
        }

        .bento-desc {
            color: rgba(17,17,17,0.6);
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
            line-height: 1.65;
            margin: 0;
            transition: color 0.5s ease;
        }

        .bento-card:hover .bento-title { color: var(--white); }
        .bento-card:hover .bento-desc { color: rgba(255, 255, 255, 0.7); }
        
        .bento-arrow {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            width: 3.5rem;
            height: 3.5rem;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            opacity: 0;
            transform: translate(-1.5rem, 1.5rem) scale(0.5);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @media (min-width: 768px) {
            .bento-arrow { top: 3rem; right: 3rem; }
        }
        
        .bento-card:hover .bento-arrow {
            opacity: 1;
            transform: translate(0, 0) scale(1);
        }
        
        /* Premium Stack Grid Redesign */
        .premium-stack-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            width: 100%;
        }
        @media (min-width: 768px) {
            .premium-stack-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
        }
        @media (min-width: 1024px) {
            .premium-stack-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        }

        .premium-stack-card {
            position: relative;
            background-color: var(--bg);
            border: 1px solid rgba(17, 17, 17, 0.15);
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            min-height: 400px;
            cursor: default;
            z-index: 1;
        }

        .premium-stack-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--black);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }

        .premium-stack-card:hover {
            border-color: var(--black);
            transform: translateY(-8px);
        }

        .premium-stack-card:hover::before {
            transform: scaleY(1);
        }

        .premium-stack-bg-num {
            position: absolute;
            top: -2rem;
            right: -2rem;
            font-family: var(--font-heading);
            font-size: 12rem;
            font-weight: 900;
            line-height: 1;
            color: rgba(17, 17, 17, 0.04);
            z-index: 0;
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .premium-stack-card:hover .premium-stack-bg-num {
            color: rgba(255, 98, 0, 0.08);
            transform: scale(1.05) translate(-1rem, 1rem);
        }

        .premium-stack-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .premium-stack-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: auto;
            padding-bottom: 3rem;
        }

        .premium-stack-label {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .premium-stack-label::before {
            content: '';
            display: block;
            width: 2rem;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .premium-stack-card:hover .premium-stack-label::before {
            width: 4rem;
        }

        .premium-stack-icon {
            width: 3rem;
            height: 3rem;
            border: 1px solid rgba(17, 17, 17, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            background-color: transparent;
        }

        .premium-stack-card:hover .premium-stack-icon {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--black);
            transform: rotate(45deg);
        }

        .premium-stack-title {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
            font-weight: 900;
            line-height: 1.1;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 1.25rem;
            transition: color 0.5s ease;
        }

        .premium-stack-card:hover .premium-stack-title {
            color: var(--accent);
        }

        .premium-stack-desc {
            color: rgba(17, 17, 17, 0.6);
            font-size: 1.125rem;
            line-height: 1.65;
            margin: 0;
            transition: color 0.5s ease;
        }

        .premium-stack-card:hover .premium-stack-desc {
            color: rgba(255, 244, 230, 0.8);
        }

        
        /* Premium Fail Accordion (Redesign) */
        .fail-section-premium {
            background-color: var(--bg);
            padding-top: 8rem;
            padding-bottom: 8rem;
            border-bottom: 1px solid var(--borderColor);
        }
        .fail-accordion-row {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(17, 17, 17, 0.15);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .fail-accordion-row:first-child { border-top: 1px solid rgba(17, 17, 17, 0.15); }
        
        .fail-accordion-row::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
            background-color: var(--accent); z-index: 0;
            transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .fail-accordion-row:hover::before { width: 100%; }
        
        .fail-acc-content {
            position: relative; z-index: 10; display: flex; flex-direction: column; width: 100%;
        }
        @media (min-width: 768px) {
            .fail-acc-content { flex-direction: row; align-items: center; justify-content: space-between; }
        }
        
        .fail-acc-left {
            display: flex; align-items: center; gap: 2rem; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .fail-accordion-row:hover .fail-acc-left { transform: translateX(1.5rem); }
        @media (min-width: 992px) {
            .fail-accordion-row:hover .fail-acc-left { transform: translateX(3rem); }
        }
        
        .fail-acc-num {
            font-family: var(--font-mono); font-size: 1.25rem; color: var(--accent); font-weight: 700;
            transition: color 0.4s;
        }
        .fail-accordion-row:hover .fail-acc-num { color: var(--black); opacity: 0.7; }
        
        .fail-acc-title {
            font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900;
            text-transform: uppercase; color: var(--black); margin: 0; transition: color 0.4s;
        }
        .fail-accordion-row:hover .fail-acc-title { color: var(--black); }
        
        .fail-acc-right {
            display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            margin-top: 1rem; width: 100%;
        }
        @media (min-width: 768px) {
            .fail-acc-right { margin-top: 0; max-width: 450px; text-align: right; }
        }
        .fail-accordion-row:hover .fail-acc-right { grid-template-rows: 1fr; }
        .fail-acc-inner { overflow: hidden; }
        .fail-acc-desc {
            color: rgba(17, 17, 17, 0.6); font-size: 1.125rem; line-height: 1.6; margin: 0; padding-top: 1rem;
            transition: color 0.4s;
        }
        @media (min-width: 768px) { .fail-acc-desc { padding-top: 0; padding-right: 1.5rem; } }
        @media (min-width: 992px) { .fail-acc-desc { padding-right: 3rem; } }
        .fail-accordion-row:hover .fail-acc-desc { color: rgba(17, 17, 17, 0.9); }

        /* Premium Tech Roster (Redesign) */
        .tech-roster-row {
            display: flex; flex-direction: column; justify-content: center;
            padding: 3rem 0; border-bottom: 1px solid rgba(17,17,17,0.15);
            cursor: pointer; position: relative; overflow: hidden; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
            transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @media (min-width: 768px) {
            .tech-roster-row { margin-left: -3rem; margin-right: -3rem; padding-left: 3rem; padding-right: 3rem; }
        }
        .tech-roster-row:first-child { border-top: 1px solid rgba(17,17,17,0.15); }
        .tech-roster-row:hover { background-color: var(--black); }
        
        .tech-roster-content {
            display: flex; flex-direction: column; position: relative; z-index: 10; width: 100%;
        }
        @media(min-width: 992px) {
            .tech-roster-content { flex-direction: row; align-items: center; justify-content: space-between; }
        }
        
        .tech-roster-title {
            font-family: var(--font-heading); font-size: clamp(2rem, 3vw + 1rem, 4rem); font-weight: 900;
            text-transform: uppercase; line-height: 0.85; margin: 0;
            color: var(--black); -webkit-text-stroke: 0px transparent;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: left;
        }
        .tech-roster-row:hover .tech-roster-title {
            color: var(--bg); -webkit-text-stroke: 0px transparent; transform: translateX(1rem);
        }
        @media (min-width: 992px) {
            .tech-roster-row:hover .tech-roster-title { transform: translateX(3rem); }
        }
        
        .tech-roster-details {
            display: flex; flex-direction: column; gap: 1rem; max-width: 450px;
            opacity: 0; transform: translateY(2rem); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            margin-top: 2rem; pointer-events: none;
        }
        @media(min-width: 992px) {
            .tech-roster-details { margin-top: 0; text-align: right; align-items: flex-end; }
        }
        .tech-roster-row:hover .tech-roster-details { opacity: 1; transform: translateY(0); pointer-events: auto; }
        
        .tech-roster-label {
            display: inline-flex; align-items: center; gap: 1rem;
            font-family: var(--font-mono); font-size: 0.875rem; color: var(--accent);
            text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
        }
        .tech-roster-label::before {
            content: ''; display: block; width: 2rem; height: 2px; background-color: var(--accent);
        }
        @media(min-width: 992px) {
            .tech-roster-label { flex-direction: row-reverse; }
            .tech-roster-label::before { display: none; }
            .tech-roster-label::after { content: ''; display: block; width: 2rem; height: 2px; background-color: var(--accent); }
        }
        
        .tech-roster-desc { color: rgba(255, 244, 230, 0.7); font-size: 1.125rem; line-height: 1.6; margin: 0; }