        /* ====================================
           GLOBAL STYLES & RESET
           ==================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --military-blue: #015696;
            --bright-teal: #6FE6DA;
            --warm-sand: #E0D5C7;
            --terracotta: #D4716E;
            --deep-charcoal: #2B2B2B;
        }

        body {
            font-family: 'Fraunces', serif;
            overflow-x: hidden;
            background: var(--military-blue);
        }

        .basset-font {
            font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        /* ====================================
           SPLASH OVERLAY
           ==================================== */
        #splash-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--military-blue);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeOutOverlay 0.8s ease 4.8s forwards;
        }

        .splash-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .marble-ceilings,
        .media-group {
            font-size: 11vw;
            color: var(--warm-sand);
            opacity: 0;
            white-space: nowrap;
        }

        .marble-ceilings {
            animation: 
                slideFromRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
                fadeToCenter 1s ease 2s forwards;
        }

        .media-group {
            animation: 
                slideFromLeft 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
                fadeToCenter 1s ease 2s forwards;
        }

        .splash-title::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-4deg);
            width: 0%;
            height: 1.5vw;
            background: var(--terracotta);
            z-index: 10;
            animation: 
                slashRip 0.15s ease-out 3.8s forwards,
                wipeExpand 0.7s cubic-bezier(0.76, 0, 0.24, 1) 4.1s forwards;
        }

        @keyframes slashRip {
            0% { width: 0%; }
            100% { width: 120%; }
        }

        @keyframes wipeExpand {
            0% { height: 1.5vw; width: 120%; transform: translate(-50%, -50%) rotate(-4deg); }
            100% { height: 300vh; width: 300vw; transform: translate(-50%, -50%) rotate(-4deg); }
        }

        .splash-title::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 113, 110, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            animation: crossoverGlow 0.4s ease 1s;
        }

        @keyframes slideFromRight {
            0% { transform: translateX(100vw); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideFromLeft {
            0% { transform: translateX(-100vw); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeToCenter {
            0% { opacity: 1; transform: translateX(0); }
            100% { opacity: 1; transform: translateX(0) scale(1.05); }
        }

        @keyframes crossoverGlow {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        @keyframes fadeOutOverlay {
            to { opacity: 0; visibility: hidden; }
        }

        .skip-splash {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: transparent;
            color: var(--warm-sand);
            border: 2px solid var(--warm-sand);
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            z-index: 10000;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInButton 0.5s ease 0.5s forwards;
        }

        .skip-splash:hover {
            background: var(--warm-sand);
            color: var(--military-blue);
        }

        @keyframes fadeInButton {
            to { opacity: 0.7; }
        }

        /* ====================================
           HERO SECTION - ASYMMETRIC ENERGY
           ==================================== */
        .hero {
            width: 100vw;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background: var(--military-blue);
            opacity: 0;
            animation: fadeInHero 1s ease 4.8s forwards;
        }

        @keyframes fadeInHero {
            to { opacity: 1; }
        }

        /* VCR Tracking Effect */
        .vcr-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        /* Scanlines overlay */
        .vcr-container::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                to bottom,
                transparent 0px,
                transparent 2px,
                rgba(0, 0, 0, 0.18) 2px,
                rgba(0, 0, 0, 0.18) 4px
            );
            z-index: 3;
            pointer-events: none;
        }

        /* Rolling tracking bar */
        .vcr-container::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.06);
            animation: vcrRoll 8s linear infinite;
            z-index: 4;
        }

        @keyframes vcrRoll {
            0%   { top: -10px; opacity: 0; }
            5%   { opacity: 1; }
            95%  { opacity: 1; }
            100% { top: 110%; opacity: 0; }
        }

        /* Canvas warble layer */
        #vcrCanvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            opacity: 0.55;
            mix-blend-mode: screen;
        }

        /* Terracotta diagonal slash */
        .terracotta-slash {
            position: absolute;
            width: 140%;
            height: 300px;
            background: var(--terracotta);
            transform: rotate(-12deg);
            top: 15%;
            left: -20%;
            z-index: 2;
            opacity: 0.85;
            will-change: transform;
            transition: transform 0.06s ease-out;
        }

        /* Border elements */
        .border-top {
            position: absolute;
            top: 0;
            left: 15%;
            width: 35%;
            height: 8px;
            background: var(--deep-charcoal);
            z-index: 6;
        }

        .border-left {
            position: absolute;
            left: 0;
            top: 25%;
            width: 8px;
            height: 40%;
            background: var(--deep-charcoal);
            z-index: 6;
        }

        /* MARBLE - top left, bleeds off */
        .marble-text {
            position: absolute;
            top: -2rem;
            left: -1rem;
            font-size: 14rem;
            line-height: 0.85;
            color: var(--warm-sand);
            z-index: 3;
            letter-spacing: -0.04em;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: line-through;
            text-decoration-color: var(--bright-teal);
            text-decoration-thickness: 0.08em;
            filter: blur(1px);
            will-change: transform;
            transition: transform 0.1s ease-out;
        }

        /* CEILINGS - bottom right, rotated */
        .ceilings-text {
            position: absolute;
            top: auto;
            bottom: calc(5% + 50px);
            right: -2%;
            font-size: 10rem;
            line-height: 0.85;
            color: var(--warm-sand);
            z-index: 3;
            letter-spacing: -0.02em;
            font-weight: 700;
            text-transform: uppercase;
            transform: rotate(-2deg);
            will-change: transform;
            transition: transform 0.08s ease-out;
        }

        /* Teal accent bar */
        .teal-bar {
            position: absolute;
            width: 45%;
            height: 12px;
            background: var(--bright-teal);
            top: auto;
            bottom: calc(5% + 30px);
            right: 0;
            z-index: 5;
        }

        /* MEDIA GROUP - under teal bar */
        .media-group-subtitle {
            position: absolute;
            top: auto;
            bottom: 5%;
            right: 2%;
            font-size: 1.25rem;
            letter-spacing: 0.3em;
            color: var(--warm-sand);
            z-index: 6;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Tagline */
        .tagline-concept {
            position: absolute;
            top: calc(15% + 80px);
            left: 2%;
            font-size: 4rem;
            color: var(--warm-sand);
            font-style: normal;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.1;
            z-index: 4;
            transform: rotate(-12deg);
            letter-spacing: 0.02em;
            text-shadow: 4px 4px 0 var(--deep-charcoal);
        }

        /* ====================================
           CASE STUDIES SECTION
           ==================================== */
        .case-studies {
            background: var(--warm-sand);
            padding: 8rem 0;
            position: relative;
        }

        .case-studies-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .case-studies-header {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 6rem;
            color: var(--deep-charcoal);
            margin-bottom: 1.5rem;
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--deep-charcoal);
            max-width: 600px;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Project Carousel via Slick */
        .projects-grid {
            position: relative;
            width: 100%;
            margin-top: 2rem;
            padding: 2rem 0;
            display: block;
        }

        .project-card {
            position: relative;
            width: 450px !important;
            margin-right: 2.5rem;
            background: var(--military-blue);
            border: 4px solid var(--deep-charcoal);
            padding: 1.5rem;
            box-shadow: 12px 12px 0px rgba(0,0,0,0.8);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 18px 18px 0px rgba(0,0,0,0.9);
        }

        .project-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border: 3px solid var(--deep-charcoal);
            display: block;
            filter: grayscale(100%) contrast(1.2);
            transition: filter 0.3s ease;
        }

        .project-card:hover .project-image {
            filter: grayscale(0%);
        }

        .project-content {
            padding: 2rem;
        }

        .project-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--bright-teal);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .project-title {
            font-size: 2.5rem;
            color: var(--warm-sand);
            margin-bottom: 1rem;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .project-tagline {
            font-size: 1rem;
            color: var(--warm-sand);
            line-height: 1.5;
            margin-bottom: 1.5rem;
            opacity: 0.85;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(224, 213, 199, 0.2);
        }

        .project-status {
            font-size: 0.875rem;
            color: var(--warm-sand);
            opacity: 0.7;
        }

        .project-launch {
            font-size: 0.875rem;
            color: var(--bright-teal);
            font-weight: 600;
        }

        .project-cta {
            margin-top: 1.25rem;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            color: var(--bright-teal);
            border-top: 2px solid var(--bright-teal);
            padding-top: 0.75rem;
            transition: letter-spacing 0.2s ease;
        }

        .project-card:hover .project-cta {
            letter-spacing: 0.25em;
        }

        .loading-state,
        .error-state {
            width: 100%;
            text-align: center;
            padding: 4rem 2rem;
            color: var(--deep-charcoal);
            font-size: 1.125rem;
        }

        .carousel-btn {
            background: var(--bright-teal);
            border: 3px solid var(--deep-charcoal);
            color: var(--deep-charcoal);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
            z-index: 10;
        }

        .carousel-btn:hover {
            transform: scale(1.15);
            background: var(--warm-sand);
        }

        /* ====================================
           PLACEHOLDER FOOTER
           ==================================== */
        .placeholder-section {
            min-height: 50vh;
            background: var(--military-blue);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .placeholder-section h2 {
            font-size: 2rem;
            color: var(--warm-sand);
            opacity: 0.5;
        }

        /* ====================================
           DARK MODE STYLES
           ==================================== */
        body[data-theme="dark"] {
            --military-blue: #091016;
            --warm-sand: #e0dedc;
            --deep-charcoal: #b0a79d;
            --terracotta: #a84744;
            --bright-teal: #4bcec2;
        }

        body[data-theme="dark"] .case-studies {
            background: #141b22;
        }

        body[data-theme="dark"] .case-studies .section-title,
        body[data-theme="dark"] .case-studies .section-description {
            color: var(--warm-sand);
            opacity: 1;
        }

        body[data-theme="dark"] .framework { background: #1e1111; }
        body[data-theme="dark"] .accordion-item { background: var(--military-blue); }
        body[data-theme="dark"] .accordion-content { background: var(--military-blue); color: var(--warm-sand); }
        body[data-theme="dark"] .mission-section { background: var(--military-blue); }

        body, .case-studies, .project-card, .framework, .accordion-item, .accordion-content, .mission-section, .site-footer {
            transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
        }

        /* ====================================
           HEADER & NAVIGATION
           ==================================== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 2rem 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            pointer-events: none;
        }

        .site-header * { pointer-events: auto; }

        .logo-mark {
            font-size: 1.5rem;
            color: var(--warm-sand);
            text-decoration: none;
            letter-spacing: -0.02em;
            border: 3px solid var(--deep-charcoal);
            padding: 0.5rem 1rem;
            background: var(--military-blue);
            transform: rotate(-1deg);
            transition: transform 0.2s ease;
        }
        .logo-mark:hover { transform: rotate(1deg) translateY(-2px); }

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

        .nav-link {
            font-size: 0.75rem;
            color: var(--deep-charcoal);
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 0.05em;
            padding: 0.35rem 0.75rem;
            background: var(--bright-teal);
            border: 3px solid var(--deep-charcoal);
            transition: transform 0.2s ease, background 0.2s, box-shadow 0.2s, color 0.2s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .nav-link.holographic:hover {
            transform: translateY(-4px) rotate(2deg);
            background: linear-gradient(124deg, #ff00ff, #00ffff, #ff0055, #ffff00, #ff00ff);
            background-size: 300% 300%;
            animation: holoWave 1.5s linear infinite;
            color: var(--deep-charcoal);
            box-shadow: 4px 4px 0px var(--deep-charcoal);
            border-color: var(--deep-charcoal);
        }

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

        .theme-toggle {
            background: var(--terracotta);
            border: 3px solid var(--deep-charcoal);
            color: var(--warm-sand);
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: transform 0.2s ease;
        }
        .theme-toggle:hover { transform: translateY(-4px) rotate(-2deg); }

        /* ====================================
           FRAMEWORK ACCORDION
           ==================================== */
        .framework {
            background: var(--terracotta);
            padding: 8rem 0;
            position: relative;
        }

        .accordion-item {
            border: 4px solid var(--deep-charcoal);
            margin-bottom: 1rem;
            background: var(--warm-sand);
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            text-align: left;
            background: transparent;
            border: none;
            padding: 2rem;
            font-size: 2rem;
            color: var(--deep-charcoal);
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
        }
        .accordion-header:hover { background: var(--military-blue); color: var(--warm-sand); }

        .accordion-content {
            padding: 1rem 2rem;
            background: var(--warm-sand);
            color: var(--deep-charcoal);
        }
        .accordion-content p { font-size: 1.125rem; line-height: 1.6; padding-bottom: 2rem; max-width: 800px; }

        /* ====================================
           MISSION SECTION
           ==================================== */
        .mission-section {
            background: var(--military-blue);
            padding: 10rem 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mission-content { max-width: 1000px; position: relative; z-index: 2; width: 100%; }
        
        .mission-terracotta-slash {
            position: absolute;
            width: 150%;
            height: 40px;
            background: var(--terracotta);
            transform: rotate(5deg);
            top: 40%;
            left: -20%;
            z-index: -1;
        }

        .mission-body {
            font-size: 1.5rem;
            color: var(--warm-sand);
            line-height: 1.8;
            font-weight: 300;
            margin-top: 2rem;
            border-left: 8px solid var(--bright-teal);
            padding-left: 2rem;
        }

        /* ====================================
           FOOTER
           ==================================== */
        .site-footer {
            background: var(--deep-charcoal);
            color: var(--warm-sand);
            padding: 4rem 40px 2rem;
            position: relative;
        }
        .footer-top { position: absolute; top: -4px; left: 20%; width: 60%; height: 8px; background: var(--bright-teal); }
        .footer-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
        .footer-logo { font-size: 3rem; color: var(--warm-sand); letter-spacing: -0.02em; }
        .footer-links, .footer-socials { display: flex; flex-direction: column; gap: 1rem; }
        .footer-links a { color: var(--warm-sand); text-decoration: none; font-size: 1rem; letter-spacing: 0.1em; transition: color 0.2s ease; }
        .footer-links a:hover { color: var(--terracotta); }

        .social-icon {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--warm-sand);
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.1em;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .social-icon:hover {
            color: var(--bright-teal);
            transform: translateX(10px);
        }

        .social-icon:hover svg {
            transform: rotate(15deg) scale(1.3);
        }
        .footer-bottom { max-width: 1280px; margin: 4rem auto 0; padding-top: 2rem; border-top: 2px solid rgba(224, 213, 199, 0.2); font-size: 0.875rem; opacity: 0.6; }

        /* ====================================
           RESPONSIVE REFINEMENTS
           ==================================== */
        .hero-container { max-width: 1280px; margin: 0 auto; width: 100%; height: 100vh; position: relative; }

        @media (max-width: 1024px) {
            .projects-grid { grid-template-columns: 1fr 1fr; }
            .project-card:nth-child(1) { grid-column: 1 / 3; }
            .marble-text { font-size: 10rem; }
            .ceilings-text { font-size: 7rem; }
            .section-title { font-size: 4rem; }
            .footer-content { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .site-header { padding: 1rem 20px; flex-direction: column; gap: 1rem; align-items: flex-start; }
            .main-nav { width: 100%; justify-content: space-between; }
            .nav-link { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
            .theme-toggle { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
            
            .projects-grid { grid-template-columns: 1fr; }
            .project-card:nth-child(1) { grid-column: 1 / 2; }
            
            .marble-text { font-size: 6rem; top: 8rem; left: 1rem; }
            .ceilings-text { font-size: 4rem; top: auto; bottom: calc(5% + 40px); right: 1rem; }
            .teal-bar { top: auto; bottom: calc(5% + 25px); width: 60%; right: 1rem; }
            .media-group-subtitle { top: auto; bottom: 5%; right: 1rem; font-size: 1rem; }
            .tagline-concept { font-size: 1.8rem; top: calc(15% + 100px); bottom: auto; left: 0; width: 100%; white-space: normal; line-height: 1.2; }
            
            .accordion-header { font-size: 1.25rem; padding: 1rem; }
            .mission-body { font-size: 1.125rem; }
            .mission-section { padding: 6rem 20px; }
        }

/* --- INLINE STYLE REPLACEMENTS --- */
.inline-case-studies-bar { position: relative; width: 150px; margin-bottom: 2rem; background: var(--military-blue); height: 12px; }
.inline-carousel-wrapper { position: relative; width: 100%; display: flex; align-items: center; gap: 1rem; }
.inline-framework-title { font-size: 5rem; color: var(--warm-sand); }
.inline-framework-bar { position: relative; width: 100px; margin-bottom: 2rem; background: var(--military-blue); }
.inline-purpose-title { position: relative; font-size: 8rem; margin-bottom: 0; top: 0; left: 0; }

/* ====================================
   BASTET PAGE STYLES
   ==================================== */
body.bastet-page {
            --military-blue: #1a2535;
            --warm-sand: #e0d5c7;
            --terracotta: #cd5a3c;
            --bright-teal: #00dcc8;
            --deep-charcoal: #1c1c1c;
            --eggplant: #614051;
        }

        

        body.bastet-page {
            font-family: 'Inter', sans-serif;
            background: var(--deep-charcoal);
            color: var(--warm-sand);
            line-height: 1.7;
        }

        /* ── NAV ─────────────────────────────────── */
        .cs-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 3rem;
            background: rgba(26, 37, 53, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid rgba(224,213,199,0.1);
            z-index: 100;
        }

        .cs-nav-back {
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--warm-sand);
            text-decoration: none;
            font-weight: 700;
            border: 2px solid var(--warm-sand);
            padding: 0.35rem 0.85rem;
            transition: all 0.2s ease;
        }
        .cs-nav-back:hover {
            background: var(--bright-teal);
            border-color: var(--bright-teal);
            color: var(--deep-charcoal);
        }

        .cs-nav-brand {
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--warm-sand);
            opacity: 0.5;
        }

        /* ── HERO ─────────────────────────────────── */
        .cs-hero {
            min-height: 100vh;
            background: var(--military-blue);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 0 4rem 6rem;
            position: relative;
            overflow: hidden;
            border-bottom: 6px solid var(--eggplant);
        }

        .cs-hero-slash {
            position: absolute;
            width: 120%;
            height: 250px;
            background: var(--eggplant);
            opacity: 0.2;
            transform: rotate(-8deg);
            top: 25%;
            left: -10%;
        }

        .cs-hero-tag {
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--bright-teal);
            margin-bottom: 1.25rem;
            font-weight: 600;
        }

        .cs-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(4rem, 13vw, 13rem);
            font-weight: 700;
            line-height: 0.85;
            letter-spacing: -0.03em;
            color: var(--warm-sand);
            text-decoration: line-through;
            text-decoration-color: var(--eggplant);
            text-decoration-thickness: 0.06em;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .cs-hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.6rem);
            color: var(--bright-teal);
            letter-spacing: 0.02em;
            margin-bottom: 3rem;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .cs-hero-meta {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .cs-meta-item label {
            display: block;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--bright-teal);
            margin-bottom: 0.35rem;
            font-weight: 600;
        }

        .cs-meta-item span {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--warm-sand);
        }

        /* ── SECTIONS ─────────────────────────────── */
        .cs-section {
            max-width: 940px;
            margin: 0 auto;
            padding: 6rem 3rem;
        }

        .cs-section-label {
            font-size: 0.65rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--terracotta);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .cs-section h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 2rem;
            color: var(--warm-sand);
        }

        .cs-section p {
            font-size: 1.1rem;
            color: var(--warm-sand);
            opacity: 0.85;
            margin-bottom: 1.5rem;
            max-width: 720px;
        }

        .cs-section p strong {
            color: var(--bright-teal);
            font-weight: 700;
        }

        .cs-divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, var(--eggplant), transparent);
        }

        /* ── PULL QUOTE ───────────────────────────── */
        .cs-quote {
            border-left: 6px solid var(--eggplant);
            padding: 2rem 2.5rem;
            margin: 3rem 0;
            background: rgba(97, 64, 81, 0.12);
        }

        .cs-quote p {
            font-size: 1.4rem;
            font-style: italic;
            font-weight: 300;
            opacity: 1;
            line-height: 1.5;
            color: var(--warm-sand);
            max-width: none;
        }

        /* ── PHONE SLIDESHOW ──────────────────────── */
        .cs-phone-slideshow {
            background: var(--military-blue);
            padding: 6rem 2rem;
            border-top: 4px solid var(--eggplant);
            border-bottom: 4px solid var(--eggplant);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .slideshow-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            width: 100%;
            max-width: 900px;
            position: relative;
            z-index: 5;
        }

        .slides-track {
            display: grid;
            grid-template-areas: "slide";
            perspective: 1000px;
        }

        .cs-phone-slide {
            grid-area: slide;
            opacity: 0;
            visibility: hidden;
            transform: translateX(100px) rotateY(-15deg) scale(0.85);
            transition: all 0.7s cubic-bezier(0.25, 1, 0.2, 1);
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
        }

        .cs-phone-slide.slick-center {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) rotateY(0deg) scale(1);
            z-index: 2;
            pointer-events: auto;
        }

        .cs-phone-slide.prev-slide {
            transform: translateX(-100px) rotateY(15deg) scale(0.85);
        }

        .cs-phone {
            width: 280px;
            background: #fff;
            border-radius: 36px;
            overflow: hidden;
            box-shadow:
                0 30px 60px rgba(0,0,0,0.6),
                0 0 0 8px #1c1c1c,
                0 0 0 10px #333;
        }

        .cs-phone img {
            width: 100%;
            display: block;
        }

        .cs-phone-caption {
            background: var(--deep-charcoal);
            padding: 1.25rem 1rem;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--bright-teal);
            text-align: center;
            font-weight: 700;
            border-top: 2px solid var(--eggplant);
        }

        .slide-nav {
            background: rgba(26, 37, 53, 0.8);
            border: 2px solid var(--bright-teal);
            color: var(--bright-teal);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10;
            backdrop-filter: blur(4px);
        }

        .slide-nav:hover {
            background: var(--bright-teal);
            color: var(--deep-charcoal);
            transform: scale(1.15);
            box-shadow: 0 0 20px rgba(0, 220, 200, 0.4);
        }

        .slideshow-indicators {
            display: flex;
            gap: 1rem;
            margin-top: 3rem;
            z-index: 5;
        }

        .slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(224, 213, 199, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-dot:hover {
            background: rgba(224, 213, 199, 0.8);
            transform: scale(1.2);
        }

        .slide-dot.active {
            background: var(--bright-teal);
            border-color: var(--bright-teal);
            transform: scale(1.5);
            box-shadow: 0 0 10px rgba(0, 220, 200, 0.5);
        }

        /* ── STAT GRID ────────────────────────────── */
        .cs-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 3px solid rgba(224,213,199,0.2);
            margin: 3rem 0;
        }

        .cs-stat {
            padding: 2.5rem 1.5rem;
            border-right: 3px solid rgba(224,213,199,0.2);
            text-align: center;
        }

        .cs-stat:last-child { border-right: none; }

        .cs-stat-value {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: var(--bright-teal);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .cs-stat-label {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--warm-sand);
            opacity: 0.6;
            line-height: 1.4;
        }

        /* ── PRINCIPLES GRID ──────────────────────── */
        .cs-principles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .cs-principle {
            background: rgba(97, 64, 81, 0.12);
            border: 2px solid rgba(97, 64, 81, 0.4);
            padding: 1.75rem;
        }

        .cs-principle-num {
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            color: var(--eggplant);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .cs-principle h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--bright-teal);
            margin-bottom: 0.5rem;
            letter-spacing: 0.03em;
        }

        .cs-principle p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0;
        }

        /* ── MILESTONE LIST ───────────────────────── */
        .cs-milestones {
            margin: 2rem 0;
        }

        .cs-milestone {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 2rem;
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(224,213,199,0.1);
        }

        .cs-milestone:last-child { border-bottom: none; }

        .cs-milestone-label {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--terracotta);
            font-weight: 700;
            padding-top: 0.2rem;
        }

        .cs-milestone h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--warm-sand);
            margin-bottom: 0.75rem;
        }

        .cs-milestone ul {
            list-style: none;
        }

        .cs-milestone ul li {
            font-size: 0.95rem;
            color: var(--warm-sand);
            opacity: 0.8;
            padding: 0.35rem 0;
            padding-left: 1.25rem;
            position: relative;
        }

        .cs-milestone ul li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--bright-teal);
            font-weight: 300;
        }

        /* ── STATUS BADGE ─────────────────────────── */
        .cs-status-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2.5rem 0;
        }

        .cs-status-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background: rgba(0,0,0,0.2);
            border: 1px solid rgba(224,213,199,0.1);
        }

        .cs-status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cs-status-dot.complete { background: var(--bright-teal); }
        .cs-status-dot.active   { background: var(--terracotta); animation: pulse 2s ease infinite; }
        .cs-status-dot.pending  { background: rgba(224,213,199,0.3); }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .cs-status-text {
            font-size: 0.875rem;
            color: var(--warm-sand);
            opacity: 0.85;
        }

        .cs-status-text strong {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--bright-teal);
            font-weight: 600;
            margin-bottom: 0.15rem;
        }

        /* ── FOOTER ───────────────────────────────── */
        .cs-footer {
            background: var(--military-blue);
            padding: 5rem 3rem;
            text-align: center;
            border-top: 4px solid var(--eggplant);
        }

        .cs-footer h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .cs-footer-back {
            display: inline-block;
            margin-top: 2rem;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--deep-charcoal);
            text-decoration: none;
            font-weight: 700;
            background: var(--bright-teal);
            padding: 0.85rem 2.5rem;
            border: 3px solid var(--deep-charcoal);
            transition: transform 0.2s ease;
        }

        .cs-footer-back:hover { transform: translateY(-4px) rotate(1deg); }

        @media (max-width: 768px) {
            .cs-nav { padding: 1rem 1.5rem; }
            .cs-hero { padding: 0 1.5rem 4rem; }
            .cs-section { padding: 4rem 1.5rem; }
            .cs-stats { grid-template-columns: 1fr 1fr; }
            .cs-principles { grid-template-columns: 1fr; }
            .cs-milestone { grid-template-columns: 1fr; gap: 0.5rem; }
            .cs-status-grid { grid-template-columns: 1fr; }
            .cs-hero-meta { gap: 1.5rem; }
            .slideshow-container { gap: 1rem; }
            .slide-nav { width: 40px; height: 40px; font-size: 1.2rem; }
            .cs-phone { width: 220px; }
            .cs-phone-slideshow { padding: 4rem 1rem; }
        }
/* ====================================
   COMING SOON PAGE STYLES
   ==================================== */
/* Reset & Base Stylings */
    

    body.coming-soon-page {
      background-color: #0b0b0b; /* Deep space black */
      color: #7A6B73;
      font-family: "neue-haas-grotesk-display", sans-serif;
      overflow: hidden; /* Prevent scrolling, true full-page experience */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      width: 100vw;
    }

    /* Full viewport background canvas */
    #space-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 1;
      pointer-events: none;
    }

    /* Content Wrapper */
    .content-wrapper {
      position: relative;
      z-index: 10;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 1;
      animation: fadeIn 1.5s ease-in-out;
    }

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

    /* The "Marble Ceilings" Title */
    .coming-soon-title {
      font-family: "Gloock", serif;
      font-weight: 400;
      font-size: clamp(60px, 12vw, 160px);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: default;

      /* Knight Rider Scan Effect */
      /* Base: Brand purple #614051, Highlight: Jordan Blue #1E95B2 */
      background: linear-gradient(
        90deg, 
        #614051 0%, 
        #614051 45%, 
        #1E95B2 50%, 
        #614051 55%, 
        #614051 100%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent; /* Fallback */

      /* Animate the gradient position back and forth continuously */
      animation: scanner 4s ease-in-out infinite alternate;
    }

    .coming-soon-title:hover {
      transform: scale(1.04);
      filter: drop-shadow(0 0 25px rgba(30, 149, 178, 0.3));
      animation-duration: 2s; /* Faster scan on hover for "active" energy */
    }

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

    /* Subtle glow behind text to increase legibility in space */
    .title-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 60%;
      background: radial-gradient(ellipse at center, rgba(97, 64, 81, 0.15) 0%, transparent 60%);
      z-index: -1;
      pointer-events: none;
      filter: blur(40px);
    }

    /* Subtitle: Coming Soon */
    .coming-soon-subtitle {
      margin-top: 48px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #1E95B2;
      animation: pulse 3s infinite alternate ease-in-out;
    }

    .creative-group-subtitle {
      font-family: "Gloock", serif;
      font-size: clamp(14px, 2.5vw, 24px); /* Slightly smaller to allow more stretch */
      font-weight: 400;
      letter-spacing: 0.85em; /* Increased leading to stretch it out */
      text-transform: uppercase;
      color: #F2F3ED; /* Off-white */
      margin-top: 12px; 
      opacity: 0.95;
      width: 100%;
      text-align: center;
      padding-left: 0.85em; /* Compensate for right-side letter-spacing to center better */
    }

    .coming-soon-quote {
      margin-top: 32px;
      font-family: "Montserrat", sans-serif;
      font-size: clamp(14px, 1.8vw, 18px);
      font-weight: 300;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      max-width: 600px;
      text-align: center;
      letter-spacing: 0.05em;
    }
    .coming-soon-quote span {
      display: block;
      margin-top: 12px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    @keyframes pulse {
      0% {
        opacity: 0.3;
      }
      100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
      }
    }

    /* Periodic Element Style (Bottom Left) */
    .periodic-element {
      position: fixed;
      bottom: 40px;
      left: 40px;
      width: 76px;
      height: 76px;
      border: 1px solid rgba(30, 149, 178, 0.25);
      background: rgba(97, 64, 81, 0.12); /* Glass effect with brand purple tint */
      backdrop-filter: blur(12px) saturate(180%);
      -webkit-backdrop-filter: blur(12px) saturate(180%);
      z-index: 100;
      padding: 8px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #1E95B2;
      box-shadow: 0 0 20px rgba(97, 64, 81, 0.2);
      transition: all 0.4s ease;
      cursor: default;
      opacity: 1;
      animation: fadeIn 1.5s ease-in-out 0.3s backwards;
    }
    .periodic-element:hover {
      border-color: rgba(30, 149, 178, 0.8);
      background: rgba(97, 64, 81, 0.25);
      box-shadow: 0 0 30px rgba(30, 149, 178, 0.2);
      transform: translateY(-2px);
    }

    /* Mirrored Position for Link */
    .link-element {
      left: auto;
      right: 40px;
      text-decoration: none;
      cursor: pointer;
      animation-delay: 0.5s;
    }
    .link-element:hover {
      box-shadow: 0 0 40px rgba(30, 149, 178, 0.3);
      filter: brightness(1.2);
    }
    .link-element .periodic-symbol {
      font-size: 20px; /* Smaller to fit MCFG */
      letter-spacing: 0.05em;
      margin-top: 2px;
    }
    .periodic-number {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.1em;
      opacity: 0.7;
      font-family: "Montserrat", sans-serif;
    }
    .periodic-symbol {
      font-family: "Gloock", serif;
      font-size: 28px;
      line-height: 1;
      text-align: center;
      margin-top: -2px;
    }
    .periodic-name {
      font-size: 7.5px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-family: "Montserrat", sans-serif;
    }

    /* Responsive scaling for mobile */
    @media (max-width: 768px) {
      .coming-soon-title {
        font-size: clamp(50px, 16vw, 90px);
      }
      .coming-soon-subtitle {
        margin-top: 32px;
        font-size: 11px;
      }
    }
.cs-footer-tagline { opacity: 0.55; font-size: 0.9rem; margin-top: 0.5rem; }
