/* Base Resets & Variables */
:root {
    --bg-color: #ffffff;
    --bg-secondary: #f6f6f6;
    --bg-cream: #faf9f6;
    --text-color: #000000;
    --text-secondary: #555555;
    --accent-color: #000000;
    --accent-gold: #c5a880;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --card-bg: #fcfbf9;
    --border-color: #ecebe8;
    --border-dark: #111111;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

/* Lenis smooth scrolling requirement */
html {
    background-color: #050505 !important;
}

html.lenis {
    height: auto;
}

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

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

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

body {
    font-family: var(--font-body);
    background-color: #050505 !important;
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&q=80&w=1600');
    background-size: 80px 80px, 80px 80px, cover;
    background-position: center;
    background-blend-mode: overlay;
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}



/* 3D Hero Section */
.hero-container {
    position: relative;
    height: auto;
    min-height: 100vh;
    background: #000;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Let clicks pass through */
    will-change: opacity;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    pointer-events: none !important;
    opacity: 0;
    /* Hidden by default, controlled by GSAP */
    padding: 0 20px;
    will-change: transform, opacity;
}

.hero-text-overlay * {
    pointer-events: none !important;
}

.hero-text-overlay.active-sequence .hero-link {
    pointer-events: auto !important;
}

.hero-title {
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(100deg, #ffffff 0%, #a1a1a6 40%, #ffffff 60%, #a1a1a6 100%);
    background-size: 200% auto;
    animation: textShine 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: #f5f5f7;
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 600px;
    margin: 0 auto;
}

/* Vignette overlay */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: scrollLineAnim 2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@keyframes scrollLineAnim {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
}

/* Collections Section */
.collections-section {
    padding: 180px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.product-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(33.333% - 27px);
    scroll-snap-align: center;
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.03);
    will-change: transform, box-shadow;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.03);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 40px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Segmented Control */
.segmented-control-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.segmented-control {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 40px;
    display: inline-flex;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.segmented-control::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.segment-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.segment-btn.active {
    color: #000;
}

.segment-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #fff;
    border-radius: 30px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Tabs */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Placeholder Images */
.placeholder-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.bg-granite-1 {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.bg-granite-2 {
    background: linear-gradient(45deg, #112233, #223344);
}

.bg-craft-1 {
    background: linear-gradient(45deg, #ddd, #eee);
}

.bg-craft-2 {
    background: linear-gradient(45deg, #e5e5e5, #fff);
}

/* Bento Grid Applications */
.applications-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    will-change: transform, box-shadow;
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.bento-item:hover::after {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.bg-kitchen {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%), url('../assets/kitchen_countertop.png') center/cover;
}

.bg-bathroom {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%), url('../assets/bathroom_sink.png') center/cover;
}

.bg-flooring {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%), url('../assets/flooring_luxury.png') center/cover;
}

.bg-tiles {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%), url('../assets/room_tiles.png') center/cover;
}

/* Our Projects Section */
.projects-section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.projects-stack {
    display: flex;
    flex-direction: column;
    gap: 15vh;
    padding-bottom: 20vh;
    margin-top: 60px;
}

.project-card-stack {
    position: sticky;
    height: 75vh;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
    transform-origin: top center;
    will-change: transform, opacity;
}

.project-card-stack .project-image {
    width: 100%;
    height: 100%;
}

.project-card-stack .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.project-overlay h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Video Presentation Section */
.video-presentation-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    margin-top: 40px;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
    z-index: 1;
    color: var(--text-secondary);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

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

    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }

    .projects-stack {
        gap: 10vh;
    }

    .project-card-stack {
        height: 60vh;
    }

    .project-overlay h3 {
        font-size: 2rem;
    }
}

/* About Us Section â€” Full Viewport Split (White Theme) */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.about-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 100vh;
}

/* Left text panel with Glassmorphism Effect & Plus Jakarta Sans Font */
.about-content {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 100px;
    max-width: none;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.04) !important;
}

/* Scale title down for about panel using 2nd/3rd page font family */
.about-content .section-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: #0f172a !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
    text-transform: uppercase;
}

/* Right video panel */
.about-visual {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.about-visual video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* subtle left-edge fade so video blends into frosted glass text panel */
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.7) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

/* Scoped overrides for about panel elements */
.about-content .section-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #c5a880;
}

/* "Start Your Project" CTA Button: Glassmorphic default with Call-Us Pink Glow Hover */
.about-content .cta-button {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 14px 34px !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1.5px solid #0f172a !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    letter-spacing: normal !important;
}

.about-content .cta-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 242, 0.98)) !important;
    border-color: #fb7185 !important;
    color: #e11d48 !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 0 0 5px rgba(251, 113, 133, 0.18), 0 15px 35px rgba(225, 29, 72, 0.22), inset 0 2px 4px rgba(255, 255, 255, 1) !important;
}

.about-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 1.08rem !important;
    color: #475569 !important;
    line-height: 1.8 !important;
    margin-bottom: 12px !important;
    font-weight: 400 !important;
}

/* Clean editorial bullet list */
.about-bullets {
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-bullets li {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}

.about-bullets li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #111111;
    flex-shrink: 0;
    margin-top: 11px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, #111111 0%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.map-svg, .map-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.75;
}

.map-container:hover .map-svg,
.map-container:hover .map-image {
    transform: translateY(-8px) scale(1.02);
    opacity: 1;
}

/* Map Pin Styling */
.map-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
    text-decoration: none;
}

.pin-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px 2px rgba(255,255,255,0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pin-pulse {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseAnim 2s infinite ease-out;
}

@keyframes pulseAnim {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.pin-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.map-pin:hover .pin-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background: #e5e5e5;
}

.map-pin:hover .pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff !important;
    color: #111113 !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

.cta-button:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.45), 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    border-color: #ffffff !important;
}

/* Footer (100% Seamless Dark Background - No White Section Below) */
.footer {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh;
    margin: 0 !important;
    padding: 70px 5% 40px !important;
    background-color: #050505 !important;
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Footer background video */
.footer-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Dark gradient overlay so text stays readable */
.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.88) 0%,
        rgba(5, 5, 5, 0.72) 40%,
        rgba(5, 5, 5, 0.92) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Ensure all footer content sits above video + overlay */
.footer > *:not(.footer-bg-video):not(.footer-bg-overlay) {
    position: relative;
    z-index: 2;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h2 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none !important;
}

.footer-brand p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #94a3b8 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.footer-links h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
}

.footer-links p, .footer-links a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #94a3b8 !important;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    font-size: 0.95rem !important;
    transition: all 0.3s ease;
    text-transform: none !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #64748b !important;
    font-size: 0.88rem !important;
}

/* Dynamic 3D Navbar */
.dynamic-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%) perspective(1000px) rotateX(20deg);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 10px 20px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.dynamic-nav.visible {
    transform: translateX(-50%) translateY(0) perspective(1000px) rotateX(0deg);
    opacity: 1;
    pointer-events: auto;
}

.dynamic-nav:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.dynamic-nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 14px;
    border-radius: 20px;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    transform: translateZ(20px);
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: #fff;
    transform: translateZ(30px) scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    transition: width 0.2s, height 0.2s;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px !important;
}

.search-btn svg {
    display: block;
}

/* Search Modal Overlay */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.search-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.search-modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.search-input-wrapper svg {
    color: #888;
    margin-right: 15px;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    outline: none;
}

.search-input::placeholder {
    color: #555;
}

.search-results {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-height: 60vh;
    overflow-y: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.search-result-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.search-result-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #222;
}

.search-result-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.search-result-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-results {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 20px 0;
    grid-column: 1 / -1;
    text-align: center;
}

/* Preloader */
.preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #000; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; padding: 0 20px; }
.preloader-logo { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem,6vw,5rem); font-weight: 800; letter-spacing: 0.15em; color: #fff; text-transform: uppercase; opacity: 0; }
.preloader-bar { width: 100%; max-width: 300px; height: 2px; background: rgba(255,255,255,0.1); margin: 30px 0; border-radius: 2px; overflow: hidden; }
.preloader-progress { width: 0; height: 100%; background: linear-gradient(90deg,#fff,#888); border-radius: 2px; }
.preloader-tagline { font-size: 0.9rem; letter-spacing: 0.3em; text-transform: uppercase; color: #666; opacity: 0; font-weight: 300; }

/* Custom Cursor */
.custom-cursor { position: fixed; width: 8px; height: 8px; background: #fff; border-radius: 50%; pointer-events: none; z-index: 99998; mix-blend-mode: difference; transform: translate(-50%,-50%); transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.cursor-follower { position: fixed; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; pointer-events: none; z-index: 99997; transform: translate(-50%,-50%); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease; display: flex; align-items: center; justify-content: center; }
.cursor-follower::after { content: attr(data-label); position: absolute; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: #000; font-weight: 600; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.cursor-hover .custom-cursor { width: 50px; height: 50px; background: #fff; }
.cursor-hover .cursor-follower { width: 80px; height: 80px; border-color: rgba(255,255,255,0.1); }
.cursor-hover.cursor-view .cursor-follower { width: 70px; height: 70px; background: #fff; mix-blend-mode: normal; border-color: transparent; }
.cursor-hover.cursor-view .cursor-follower::after { opacity: 1; }
.cursor-hover.cursor-view .custom-cursor { opacity: 0; }
@media (hover: none) { .custom-cursor, .cursor-follower { display: none; } }

/* Reveal Text Utility */
.split-line {
    overflow: hidden;
    display: block;
}
.split-line span {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}
.is-revealed .split-line span {
    transform: translateY(0);
    opacity: 1;
}

/* Film Grain */
.grain-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }

/* Marquee */
.marquee-section { padding: 50px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: #050505; position: relative; z-index: 10; width: 100vw; display: flex; }
.marquee-track { display: flex; align-items: center; gap: 40px; width: max-content; white-space: nowrap; animation: marqueeScroll 25s linear infinite; font-family: 'Outfit', sans-serif; font-size: clamp(1.2rem,3vw,2rem); font-weight: 300; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.1em; }
.marquee-dot { color: rgba(255,255,255,0.1); font-size: 0.6em; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section Eyebrow & Header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.4); margin-bottom: 15px; font-weight: 500; display: inline-block; }
.section-description { color: rgba(255,255,255,0.5); font-size: 1.1rem; margin-top: 20px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Testimonials */
.testimonials-section { padding: 120px 20px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 50px; }
.testimonial-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 40px 30px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease; text-align: left; }
.testimonial-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); }
.featured-testimonial { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); transform: scale(1.05); }
.featured-testimonial:hover { transform: scale(1.05) translateY(-10px); }
.testimonial-stars { color: #d4af37; font-size: 1.2rem; margin-bottom: 25px; letter-spacing: 4px; }
.testimonial-quote { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.7); font-weight: 300; font-style: italic; margin-bottom: 35px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 45px; height: 45px; border-radius: 50%; background: linear-gradient(135deg,#222,#444); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 600; color: #fff; letter-spacing: 0.05em; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); }
.testimonial-author h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.testimonial-author p { font-size: 0.8rem; color: #888; font-weight: 300; }

/* Footer CTA (High-End Plus Jakarta Sans Typography) */
.footer-cta {
    text-align: center;
    padding: 30px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.4rem, 4.8vw, 4.2rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 60%, #94a3b8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-transform: none !important;
}

.footer-cta-sub {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #94a3b8 !important;
    font-size: clamp(1rem, 1.3vw, 1.25rem) !important;
    margin-bottom: 40px !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

/* Playfair Display editorial font for luxury section titles */
.section-title, .hero-title { 
    font-family: 'Playfair Display', Georgia, serif; 
    font-weight: 600; 
    letter-spacing: -0.02em; 
}
.hero-eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.35em; color: rgba(255,255,255,0.4); margin-bottom: 15px; font-weight: 400; display: block; }

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .about-container { grid-template-columns: 1fr !important; height: auto; min-height: auto; }
    .about-section { height: auto; min-height: auto; }
    .about-content { padding: 80px 30px 40px 30px; text-align: center; }
    .about-visual { min-height: 50vh; }
    
    .about-stats {
        text-align: center;
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 20px;
    }
    
    .stat-item h3 { font-size: 2rem; }
    .stat-item p { font-size: 0.85rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    
    .dynamic-nav {
        width: 90vw;
        padding: 8px 12px;
        border-radius: 30px;
        overflow: hidden;
    }

    .dynamic-nav-links {
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .dynamic-nav-links::-webkit-scrollbar { display: none; }
    
    .nav-item { font-size: 0.75rem; padding: 6px 12px; white-space: nowrap; }
    .slider-btn { display: none; }
    .product-grid { gap: 20px; }
    .product-card { flex: 0 0 85%; scroll-snap-align: start; }
    .collections-section, .applications-section { padding: 80px 20px; }
    .product-info { padding: 24px; }
    
    .marquee-section { padding: 20px 0; overflow: hidden; }
    .marquee-track { white-space: nowrap; }
    
    .testimonials-section { padding: 80px 20px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
    .featured-testimonial { transform: scale(1); }
    .featured-testimonial:hover { transform: scale(1) translateY(-8px); }
    
    .footer-cta { padding: 80px 20px 60px; }
    .footer-cta-title { font-size: 2rem; }
    
    .map-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* =============================================
   COLLECTIONS V3 â€” TABBED FILTER + ARROW SLIDER
   ============================================= */
.collections-v3 {
    position: relative;
    z-index: 10;
    background: var(--bg-color);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background video for Collections & Projects sections */
.collections-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
}

/* Ensure all children sit above the video */
.collections-v3 > *:not(.collections-bg-video) {
    position: relative;
    z-index: 1;
}

/* Header */
.col-header {
    text-align: center;
    padding: 0 20px 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* Category Tabs */
.col-tabs {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 42px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.col-tab {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.45);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 10px 26px;
    border-radius: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.col-tab:hover { color: rgba(255,255,255,0.8); }

.col-tab.active { color: #000; }

.col-tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background: #ffffff;
    border-radius: 40px;
    z-index: 1;
    transition: transform 0.42s cubic-bezier(0.25, 1, 0.5, 1), width 0.42s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Slider wrapper (arrows + viewport) */
.col-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 70px;
}

/* Arrow buttons */
.col-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.col-arrow:hover:not(:disabled) {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.col-arrow:disabled {
    opacity: 0.2;
    cursor: default;
}

.col-arrow--prev { margin-right: 20px; }
.col-arrow--next { margin-left: 20px; }

/* Viewport clips the track */
.col-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

/* Track holds all (visible) cards side-by-side */
.col-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    align-items: stretch;
}

/* Individual collection card */
.col-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow 0.5s ease, border-color 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.col-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.12);
}

.col-card.hidden {
    display: none;
}

.col-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.col-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.16,1,0.3,1);
    display: block;
}

.col-card:hover .col-card-img img { transform: scale(1.07); }

.col-card-body {
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.col-card-tag {
    display: inline-block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 14px;
    align-self: flex-start;
}

.col-card-body h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.col-card-body p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    font-weight: 300;
    flex: 1;
}

/* Bottom UI */
.col-footer-ui {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 40px;
    padding: 0 20px;
}

.col-progress-bar {
    width: 220px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.col-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.25,1,0.5,1);
}

.col-counter {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.15em;
    font-family: 'Outfit', sans-serif;
}

.col-sep { opacity: 0.4; margin: 0 2px; }

/* Empty state when no cards match */
.col-empty {
    width: 100%;
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.2);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: none;
}

/* Mobile */
@media (max-width: 900px) {
    .col-slider-wrapper { padding: 0 20px; }
    .col-arrow--prev { margin-right: 10px; }
    .col-arrow--next { margin-left: 10px; }
    .col-card { flex: 0 0 calc((100% - 24px) / 2); }
    .col-tabs { flex-wrap: wrap; justify-content: center; border-radius: 20px; }
}

@media (max-width: 600px) {
    .col-slider-wrapper { padding: 0 14px; }
    .col-arrow { width: 42px; height: 42px; }
    .col-arrow--prev { margin-right: 8px; }
    .col-arrow--next { margin-left: 8px; }
    .col-card { flex: 0 0 80vw; }
    .collections-v3 { padding: 80px 0 60px; }
    .col-progress-bar { width: 130px; }
}

/* =============================================
   ROOM VISUALIZER  â€” Premium Design
   ============================================= */

/* â”€â”€ Nav trigger button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viz-nav-btn {
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 30px;
    color: #ffd700 !important;
    padding: 7px 18px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    text-transform: uppercase;
}
.viz-nav-btn:hover {
    background: rgba(255,215,0,0.2);
    box-shadow: 0 0 24px rgba(255,215,0,0.2);
    transform: translateZ(30px) scale(1.06) !important;
}

/* â”€â”€ Modal backdrop â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viz-modal {
    position: fixed; inset: 0; z-index: 99990;
    display: flex;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.viz-modal::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,215,0,0.04) 0%, rgba(0,0,0,0.96) 70%);
    z-index: 0;
}
.viz-modal.active { opacity: 1; pointer-events: auto; }

/* â”€â”€ Close button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viz-close {
    position: absolute; top: 20px; right: 24px; z-index: 100;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    backdrop-filter: blur(8px);
}
.viz-close:hover { background: rgba(255,255,255,0.16); transform: scale(1.12) rotate(90deg); }

/* â”€â”€ Layout: left + right â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viz-left {
    position: relative; z-index: 1;
    flex: 0 0 58%;
    display: flex; flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.07);
    background: #050507;
    overflow: hidden;
}
.viz-right {
    position: relative; z-index: 1;
    flex: 1; display: flex; flex-direction: column;
    background: #060608;
    overflow: hidden;
}

/* â”€â”€ Room / upload area â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viz-room-wrap {
    flex: 1; position: relative;
    overflow: hidden; min-height: 0;
    background: #070709;
}

/* Upload zone */
.viz-upload-zone {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    border: 2px dashed rgba(255,255,255,0.1);
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    text-align: center;
}
.viz-upload-zone:hover,
.viz-upload-zone.drag-over {
    border-color: rgba(255,215,0,0.4);
    background: rgba(255,215,0,0.03);
}
.viz-upload-icon {
    width: 72px; height: 72px; border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s, border-color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    margin-bottom: 4px;
}
.viz-upload-zone:hover .viz-upload-icon {
    color: rgba(255,215,0,0.7);
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-4px);
}
.viz-upload-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem,2vw,1.5rem);
    font-weight: 700; color: #fff; margin: 0;
    letter-spacing: -0.02em;
}
.viz-upload-sub {
    font-size: 0.82rem; color: rgba(255,255,255,0.3);
    font-weight: 300; margin: 0;
}
.viz-upload-btn {
    margin-top: 6px;
    background: linear-gradient(135deg, #ffd700, #c8a400);
    color: #000; border: none; border-radius: 30px;
    padding: 10px 28px; font-size: 0.82rem; font-weight: 700;
    font-family: 'Inter', sans-serif; letter-spacing: 0.08em;
    text-transform: uppercase; cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.viz-upload-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.3);
}

/* Preset row */
.viz-preset-row {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; justify-content: center;
    margin-top: 8px;
}
.viz-preset-label {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(255,255,255,0.2);
}
.viz-preset {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif; font-size: 0.75rem;
    font-weight: 500; padding: 5px 14px; cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.viz-preset:hover {
    background: rgba(255,255,255,0.1);
    color: #fff; border-color: rgba(255,255,255,0.25);
}

/* Result image */
.viz-result-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Loading overlay */
.viz-loading {
    position: absolute; inset: 0;
    background: rgba(5,5,7,0.88);
    backdrop-filter: blur(8px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 18px; z-index: 5;
}
.viz-spinner {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.06);
    border-top-color: #ffd700;
    animation: vizSpin 0.9s linear infinite;
}
@keyframes vizSpin { to { transform: rotate(360deg); } }
.viz-loading-text {
    font-size: 0.85rem; color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 400; margin: 0;
}

/* Result top bar */
.viz-result-bar {
    position: absolute; top: 16px; left: 16px; right: 16px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px; padding: 8px 8px 8px 18px;
    z-index: 6;
}
.viz-result-bar span {
    font-size: 0.8rem; color: rgba(255,255,255,0.7);
    font-weight: 500; letter-spacing: 0.04em;
}
.viz-reupload-btn {
    background: rgba(255,255,255,0.1); border: none;
    border-radius: 30px; color: #fff;
    font-family: 'Inter', sans-serif; font-size: 0.72rem;
    font-weight: 600; padding: 6px 14px; cursor: pointer;
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: background 0.25s;
}
.viz-reupload-btn:hover { background: rgba(255,255,255,0.18); }

/* â”€â”€ Controls row (bottom of left panel) â”€â”€â”€â”€â”€â”€ */
.viz-controls-row {
    flex: 0 0 auto;
    display: flex; gap: 0;
    background: #070709;
    border-top: 1px solid rgba(255,255,255,0.07);
    min-height: 140px;
}

.viz-ctrl-block {
    flex: 1; padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 10px;
}
.viz-ctrl-block:last-child { border-right: none; }

.viz-eyebrow {
    font-size: 0.6rem; text-transform: uppercase;
    letter-spacing: 0.25em; color: rgba(255,255,255,0.25);
    margin: 0; font-weight: 500;
}

/* Room type pills */
.viz-rt-btns,
.viz-pat-btns { display: flex; flex-wrap: wrap; gap: 6px; }

.viz-rt, .viz-pat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px; color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif; font-size: 0.72rem;
    font-weight: 500; padding: 5px 12px; cursor: pointer;
    transition: all 0.25s ease; white-space: nowrap;
}
.viz-rt:hover, .viz-pat:hover {
    background: rgba(255,255,255,0.08); color: #fff;
    border-color: rgba(255,255,255,0.18);
}
.viz-rt.active, .viz-pat.active {
    background: rgba(255,215,0,0.12);
    border-color: rgba(255,215,0,0.4);
    color: #ffd700;
}

/* Slab mini preview */
.viz-slab-mini-wrap { justify-content: flex-start; }
.viz-slab-mini {
    width: 100%; height: 52px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 6px;
    background-size: cover; background-position: center;
    transform: perspective(400px) rotateX(28deg);
    box-shadow: 0 16px 30px rgba(0,0,0,0.5);
    transition: background-image 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}
.viz-slab-mini.loaded {
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,215,0,0.08);
}
.viz-sel-name {
    font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6);
    font-family: 'Outfit', sans-serif; margin: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* â”€â”€ Right panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viz-right-head {
    padding: 28px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255,215,0,0.03) 0%, transparent 100%);
}
.viz-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.3rem,2.2vw,1.9rem);
    font-weight: 800; color: #fff;
    letter-spacing: -0.03em; margin-bottom: 5px;
}
.viz-title span { color: #ffd700; }
.viz-subtitle {
    color: rgba(255,255,255,0.3); font-size: 0.82rem;
    font-weight: 300; margin-bottom: 18px; line-height: 1.5;
}

/* Category tabs */
.viz-cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.viz-cat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif; font-size: 0.72rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 6px 14px; border-radius: 30px; cursor: pointer;
    transition: all 0.25s ease;
}
.viz-cat:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.viz-cat.active { background: #fff; color: #000; border-color: #fff; }

/* Material grid */
.viz-mat-grid {
    flex: 1; overflow-y: auto;
    padding: 18px 20px 24px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; align-content: start;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.viz-mat-grid::-webkit-scrollbar { width: 4px; }
.viz-mat-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.viz-mat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; overflow: hidden; cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
    position: relative;
}
.viz-mat-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.08), transparent);
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none; border-radius: 16px;
}
.viz-mat-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.viz-mat-card.selected {
    border-color: #ffd700;
    box-shadow: 0 0 0 1px rgba(255,215,0,0.5), 0 16px 40px rgba(0,0,0,0.5);
}
.viz-mat-card.selected::after { opacity: 1; }

.viz-mat-thumb {
    width: 100%; aspect-ratio: 4/3;
    background-size: cover; background-position: center;
    position: relative; overflow: hidden;
}
.viz-mat-thumb::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.viz-mat-thumb::after {
    content: 'âœ“'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #000; font-weight: 900;
    background: rgba(255,215,0,0.7); opacity: 0;
    transition: opacity 0.3s;
}
.viz-mat-card.selected .viz-mat-thumb::after { opacity: 1; }

.viz-mat-info { padding: 10px 13px 13px; }
.viz-mat-tag {
    font-size: 0.58rem; text-transform: uppercase;
    letter-spacing: 0.18em; color: rgba(255,215,0,0.5);
    margin-bottom: 3px; display: block; font-weight: 600;
}
.viz-mat-info h4 {
    font-size: 0.85rem; font-weight: 700; color: #fff;
    font-family: 'Outfit', sans-serif; letter-spacing: -0.01em;
    margin: 0;
}
.viz-mat-hidden { display: none; }

/* Backend status bar (shown at bottom of right panel) */
.viz-api-status {
    flex-shrink: 0; padding: 10px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 8px;
    background: #050507;
}
.viz-api-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.4s ease;
    flex-shrink: 0;
}
.viz-api-dot.online  { background: #4caf50; box-shadow: 0 0 8px rgba(76,175,80,0.5); }
.viz-api-dot.offline { background: #f44336; }
.viz-api-dot.checking { background: #ffd700; animation: vizDotPulse 1s infinite; }
@keyframes vizDotPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.viz-api-label { font-size: 0.68rem; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.12em; }

/* â”€â”€ Mobile responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
    .viz-modal { flex-direction: column; }
    .viz-left  { flex: 0 0 52%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .viz-right { flex: 1; }
    .viz-mat-grid { grid-template-columns: 1fr 1fr 1fr; }
    .viz-controls-row { min-height: 110px; }
}
@media (max-width: 600px) {
    .viz-mat-grid { grid-template-columns: 1fr 1fr; padding: 10px 12px; }
    .viz-right-head { padding: 18px 14px 14px; }
    .viz-controls-row { flex-wrap: wrap; }
    .viz-ctrl-block { flex: 0 0 50%; }
}



/* Modal overlay */
.viz-modal {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(4,4,6,0.97);
    backdrop-filter: blur(24px);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    overflow: hidden;
}
.viz-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* Close button */
.viz-close {
    position: absolute;
    top: 20px; right: 24px;
    z-index: 10;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.viz-close:hover { background: rgba(255,255,255,0.14); transform: scale(1.1) rotate(90deg); }

/* LEFT panel */
.viz-left {
    flex: 0 0 58%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.viz-room-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}
.viz-room-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
    filter: brightness(0.85) saturate(0.85);
}
.viz-room-overlay {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    mix-blend-mode: multiply;
    transition: opacity 0.55s ease, clip-path 0.55s ease;
    pointer-events: none;
}
.viz-room-overlay.floor-mode  { clip-path: polygon(0% 62%, 100% 55%, 100% 100%, 0% 100%); }
.viz-room-overlay.wall-mode   { clip-path: polygon(0% 0%, 100% 0%, 100% 52%, 0% 52%); }
.viz-room-overlay.counter-mode{ clip-path: polygon(10% 54%, 90% 54%, 95% 65%, 5% 65%); }
.viz-room-overlay.visible { opacity: 0.62; }

.viz-room-badge {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 30px;
    white-space: nowrap; pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Bottom of left panel */
.viz-bottom {
    flex: 0 0 200px;
    display: flex;
    gap: 0;
    background: #070709;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.viz-slab-col {
    flex: 1;
    padding: 20px 24px;
    display: flex; flex-direction: column; gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.viz-eyebrow {
    font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 0.25em; color: rgba(255,255,255,0.3);
    margin: 0;
}

.viz-slab-scene {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0;
}
.viz-slab {
    width: 90%; height: 70px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    transform: perspective(500px) rotateX(30deg);
    transition: background-image 0.45s ease, box-shadow 0.45s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.viz-slab.loaded {
    border: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.viz-slab-reflection {
    width: 90%; height: 30px;
    background-size: cover; background-position: center bottom;
    transform: perspective(500px) rotateX(-30deg) scaleY(-0.4);
    opacity: 0.18;
    filter: blur(4px);
    transition: background-image 0.45s ease;
    margin-top: -2px;
}

.viz-sel-name {
    font-size: 0.9rem; font-weight: 600; color: #fff;
    font-family: 'Outfit', sans-serif; margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.viz-sel-cat {
    font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(255,255,255,0.3); margin: 0;
}

/* Surface buttons */
.viz-surface-col {
    flex: 0 0 160px;
    padding: 20px 20px;
    display: flex; flex-direction: column; gap: 10px;
}
.viz-surface-btns { display: flex; flex-direction: column; gap: 8px; }
.viz-surf {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: rgba(255,255,255,0.45);
    font-family: 'Inter', sans-serif; font-size: 0.8rem;
    font-weight: 500; padding: 8px 14px; cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    text-align: left;
}
.viz-surf:hover { background: rgba(255,255,255,0.08); color: #fff; }
.viz-surf.active {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

/* RIGHT panel */
.viz-right {
    flex: 1;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.viz-right-head {
    padding: 32px 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.viz-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem,2.5vw,2rem);
    font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -0.02em;
}
.viz-subtitle { color: rgba(255,255,255,0.35); font-size: 0.9rem; font-weight: 300; margin-bottom: 20px; }

/* Category tabs */
.viz-cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.viz-cat {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif;
    font-size: 0.78rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 7px 16px; border-radius: 30px;
    cursor: pointer; transition: all 0.25s ease;
}
.viz-cat:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.viz-cat.active {
    background: #fff; color: #000; border-color: #fff;
}

/* Material grid */
.viz-mat-grid {
    flex: 1; overflow-y: auto;
    padding: 20px 28px 28px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; align-content: start;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.viz-mat-grid::-webkit-scrollbar { width: 4px; }
.viz-mat-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

.viz-mat-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; overflow: hidden; cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.viz-mat-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.viz-mat-card.selected {
    border-color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4), 0 10px 30px rgba(0,0,0,0.5);
}
.viz-mat-thumb {
    width: 100%; aspect-ratio: 4/3;
    background-size: cover; background-position: center;
    position: relative;
}
.viz-mat-thumb::after {
    content: 'âœ“'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; font-weight: 700;
    background: rgba(255,255,255,0.15); opacity: 0;
    transition: opacity 0.3s ease;
}
.viz-mat-card.selected .viz-mat-thumb::after { opacity: 1; }
.viz-mat-info { padding: 12px 14px; }
.viz-mat-tag {
    font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3); margin-bottom: 4px; display: block;
}
.viz-mat-info h4 {
    font-size: 0.88rem; font-weight: 600; color: #fff;
    font-family: 'Outfit', sans-serif; letter-spacing: -0.01em;
}
.viz-mat-hidden { display: none; }

/* Mobile */
@media (max-width: 900px) {
    .viz-modal { flex-direction: column; }
    .viz-left { flex: 0 0 55%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .viz-right { flex: 1; }
    .viz-mat-grid { grid-template-columns: 1fr 1fr 1fr; }
    .viz-bottom { flex: 0 0 160px; }
    .viz-slab { height: 50px; }
    .viz-surface-col { flex: 0 0 130px; }
}
@media (max-width: 600px) {
    .viz-mat-grid { grid-template-columns: 1fr 1fr; padding: 14px; }
    .viz-right-head { padding: 20px 14px 16px; }
    .viz-surface-col { display: none; }
    .viz-bottom { flex: 0 0 140px; }
}

/* =============================================
   PROJECTS: Z-DEPTH TUNNEL  (sticky-pin layout)
   ============================================= */

/* Section is just a container â€” no height set here */
.tunnel-section {
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

/* Header above the pinned zone â€” scrolls normally */
.tunnel-header {
    text-align: center;
    padding: 60px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* The tall wrapper gives us scroll distance (4 cards Ã— 100vh + extra) */
.tunnel-pin-wrap {
    position: relative;
    height: 500vh;   /* gives scroll room for 4 cards */
}

/* The panel sticks to the top of the viewport */
.tunnel-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    background: radial-gradient(circle at center, #ffffff 0%, #f6f6f6 100%) !important;
}

.tunnel-card {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.06) translateZ(-900px);
    transition: none;
    will-change: transform, opacity, filter;
    display: flex;
    flex-direction: row;
    background: #ffffff;
    padding: 60px 80px 80px 80px;
    gap: 4%;
    align-items: center;
}
.tunnel-card.is-active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0);
}
.tunnel-card.is-exit {
    opacity: 0;
    transform: scale(1.12) translateZ(80px);
    filter: blur(6px);
}
.tunnel-card img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
    opacity: 0.9;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.tunnel-card.is-active img {
    transform: scale(1);
    opacity: 1;
}
.tunnel-overlay {
    position: relative;
    width: 36%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: transparent !important;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.tunnel-card.is-active .tunnel-overlay {
    opacity: 1;
    transform: translateY(0);
}
.tunnel-overlay h3 {
    font-family: var(--font-heading) !important;
    font-size: clamp(2.5rem, 4vw, 4.5rem) !important;
    font-weight: 900 !important;
    margin-bottom: 24px !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.04em !important;
    line-height: 0.95 !important;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.tunnel-overlay p {
    font-family: var(--font-body) !important;
    color: #000000 !important;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    opacity: 0.65;
}

/* Alternating layout for project cards on desktop */
.tunnel-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Hide navigation dots and scroll hints for clean editorial style */
.tunnel-dots, .tunnel-scroll-hint {
    display: none !important;
}

@media (max-width: 768px) {
    .tunnel-card {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    .tunnel-card img {
        width: 100% !important;
        height: 45% !important;
        border-radius: 16px !important;
    }
    .tunnel-overlay {
        width: 100% !important;
        height: 55% !important;
        padding: 10px 0 !important;
        justify-content: center !important;
    }
}

/* =============================================
   TESTIMONIALS: DUAL INFINITE MARQUEE
   ============================================= */
.testimonials-marquee-section { padding: 120px 0; position: relative; z-index: 10; overflow: hidden; }
.testimonials-marquee-section .section-header { padding: 0 20px; margin-bottom: 70px; }
.tmarquee-row { overflow: hidden; padding: 16px 0; cursor: default; }
.tmarquee-row + .tmarquee-row { margin-top: 20px; }
.tmarquee-inner {
    display: flex;
    gap: 20px;
    width: max-content;
}
.tmarquee-row--fwd .tmarquee-inner { animation: tmFwd 40s linear infinite; }
.tmarquee-row--rev .tmarquee-inner { animation: tmRev 40s linear infinite; }
@keyframes tmFwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tmRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tmarquee-row:hover .tmarquee-inner { animation-play-state: paused; }
.tm-card {
    flex: 0 0 400px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 30px;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
    user-select: none;
}
.tm-card:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); transform: translateY(-8px); }
.tm-card.featured { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.tm-stars { color: #d4af37; font-size: 1rem; letter-spacing: 3px; margin-bottom: 20px; }
.tm-quote { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.65); font-style: italic; font-weight: 300; margin-bottom: 28px; }
.tm-author { display: flex; align-items: center; gap: 14px; }
.tm-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #222, #444); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; color: #fff; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); }
.tm-author h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.tm-author p { font-size: 0.78rem; color: #666; font-weight: 300; }

/* =============================================
   ABOUT: SPLIT CURTAIN REVEAL
   ============================================= */
.about-curtain {
    position: absolute;
    left: 0; right: 0;
    height: 50%;
    background: #000;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.05s linear;
    will-change: transform;
}
.about-curtain--top { top: 0; transform-origin: top center; }
.about-curtain--bot { bottom: 0; transform-origin: bottom center; }

/* Double pin pulse for About map */
.pin-pulse-2 {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseAnim 2s 1s infinite ease-out;
}

/* =============================================
   STAT ODOMETER
   ============================================= */
.stat-plus { font-size: 0.7em; vertical-align: super; opacity: 0.6; }
.odometer { font-variant-numeric: tabular-nums; }

@media (max-width: 768px) {
    .tunnel-overlay { padding: 40px 28px 28px; }
    .tunnel-overlay h3 { font-size: 1.8rem; }
    .tunnel-pin-wrap { height: 450vh; }
    .tmarquee-row--fwd .tmarquee-inner { animation-duration: 25s; }
    .tmarquee-row--rev .tmarquee-inner { animation-duration: 25s; }
    .tm-card { flex: 0 0 300px; }
}

/* ===========================================================================
   UMA TRADERSS â€” ELITE MINIMALIST LIGHT-MODE EDITORIAL SYSTEM
   (Inspired by Waterworks, Dribbble & Figma Professional Design Layouts)
   =========================================================================== */

/* Global Typographic and Layout Adjustments */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    color: var(--text-color) !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase;
}

.section-title {
    font-size: 4rem !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    margin-bottom: 20px;
}

.section-eyebrow {
    font-family: var(--font-mono) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.25em !important;
    color: var(--accent-gold) !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.section-description {
    font-family: var(--font-body) !important;
    font-size: 1.1rem !important;
    color: var(--text-secondary) !important;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Top main header bar */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px !important;
    width: 100%;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.main-header.header-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.header-nav-link.search-btn::after {
    display: none !important;
}

.header-nav-link.search-btn:hover svg {
    color: var(--text-color) !important;
}

.header-logo {
    text-decoration: none;
}

.logo-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 45px;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--border-dark);
    transition: width 0.3s;
}

.header-nav-link:hover {
    color: var(--text-color);
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-nav-link.active {
    color: var(--text-color) !important;
}

.header-nav-link.active::after {
    width: 100% !important;
}

.header-nav-btn {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    background: var(--text-color);
    border: none;
    padding: 11px 22px;
    border-radius: 30px;
    cursor: pointer;
    margin-left: 45px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}

.header-nav-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Background grid overlay styling */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

/* Preloader redesign â€” entrance1.png full-screen background */
.preloader {
    background-color: #000 !important;
    background-image: url('../assets/entrance1.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}
.preloader::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%);
    z-index: 0;
    pointer-events: none;
}
.preloader-inner {
    position: relative;
    z-index: 1;
}
.preloader-logo {
    font-family: 'Outfit', 'Syne', sans-serif !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: clamp(3rem, 8vw, 6.5rem) !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5) !important;
}
.preloader-tagline {
    font-family: var(--font-mono) !important;
    color: rgba(255,255,255,0.7) !important;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 400;
    font-size: 0.8rem !important;
}
.preloader-bar {
    background: rgba(255,255,255,0.2) !important;
}
.preloader-progress {
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5)) !important;
}

/* Film grain overlay opacity reduction for cleaner look */
.grain-overlay {
    opacity: 0.025 !important;
}

/* Hero Section Split Layout overrides â€” clean white background */
.hero-container {
    background: #ffffff !important;
}

.hero-sticky {
    background: #ffffff !important;
}

.hero-vignette {
    display: none !important;
}

.hero-bg-title {
    color: rgba(0, 0, 0, 0.05) !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.05) !important;
}

.hero-text-overlay {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    padding: 0 80px 0 120px !important;
    align-items: center !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    height: 100vh !important;
}

.hero-split-left {
    pointer-events: none;
}

.hero-split-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: auto;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-category {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(0, 0, 0, 0.55) !important;
    margin-bottom: 12px;
    font-weight: 400;
    display: block;
}

.hero-editorial-title {
    font-family: 'Outfit', 'Syne', sans-serif;
    font-size: 4.8rem !important;
    font-weight: 900 !important;
    color: #000000 !important;
    line-height: 0.85 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 35px;
    text-transform: uppercase;
    text-shadow: none !important;
}

.hero-metadata-table {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 45px;
}

.meta-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 0.85rem;
    line-height: 1.45;
}

.meta-label {
    width: 32%;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

.meta-value {
    width: 68%;
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.palette-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 40px;
}

.hero-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    padding-bottom: 6px;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s, border-color 0.3s;
}

.hero-link:hover {
    border-color: var(--accent-gold);
    opacity: 0.8;
}

/* Scroll indicator styling */
.scroll-indicator {
    z-index: 10;
}
.scroll-line {
    background: var(--border-color) !important;
}
.scroll-line::after {
    background: var(--border-dark) !important;
}
.scroll-text {
    font-family: var(--font-mono) !important;
    font-weight: 700;
    color: var(--text-secondary) !important;
}

/* Unified Ticker / Marquee Section styling */
.marquee-section {
    background: var(--bg-color) !important;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 30px 0 !important;
}
.marquee-track span {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: var(--text-color) !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase;
}
.marquee-dot {
    color: var(--accent-gold) !important;
    font-size: 1.4rem !important;
}

/* Collections section editorial polish */
.collections-v3 {
    background: var(--bg-color) !important;
    padding: 140px 80px !important;
    border-bottom: 1px solid var(--border-color);
}
.col-tabs {
    border-bottom: 1px solid var(--border-color) !important;
    gap: 40px !important;
}
.col-tab {
    font-family: var(--font-mono) !important;
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
}
.col-tab.active {
    color: #ffffff !important;
}
.col-tab-indicator {
    background: #000000 !important;
}
.col-card {
    border: 1px solid var(--border-color) !important;
    background: var(--bg-cream) !important;
    border-radius: 0 !important;
    overflow: hidden;
}
.col-card-body {
    background: #ffffff !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 30px !important;
}
.col-card-tag {
    font-family: var(--font-mono) !important;
    color: var(--accent-gold) !important;
    font-weight: 700 !important;
}
.col-card h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.6rem !important;
}
.col-card p {
    font-family: var(--font-body) !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
}
.col-arrow {
    background: #ffffff !important;
    border: 1px solid var(--border-dark) !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
}
.col-arrow:hover {
    background: var(--border-dark) !important;
    color: #ffffff !important;
}

/* Applications Bento Grid Overhaul with FEATURED Watermark */
.applications-section {
    background: var(--bg-color) !important;
    padding: 140px 80px !important;
    position: relative;
    overflow: hidden;
}

.huge-bg-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 16vw;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.022);
    text-transform: uppercase;
    z-index: 0;
    pointer-events: none;
    text-align: center;
    width: 100%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.05em;
}

.bento-grid {
    position: relative;
    z-index: 1;
    gap: 30px !important;
}

.bento-item {
    border: 1px solid var(--border-color) !important;
    background: var(--bg-cream) !important;
    border-radius: 0 !important;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-item:hover {
    border-color: var(--border-dark) !important;
}

.bento-content {
    background: #ffffff !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 35px !important;
}

.bento-content h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.5rem !important;
}

.bento-content p {
    font-family: var(--font-body) !important;
    color: var(--text-secondary) !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
}

/* Process Section video backdrop */
.process-video-section {
    background: var(--bg-color) !important;
    padding: 140px 80px !important;
}
.video-container {
    border: 1px solid var(--border-dark) !important;
    border-radius: 0 !important;
}
.video-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.15)) !important;
}

/* Dual Column About & Map block */
.about-section {
    background: var(--bg-color) !important;
    padding: 140px 80px !important;
    border-top: 1px solid var(--border-color);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
    align-items: center;
}
.map-container {
    background: var(--bg-cream) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 0 !important;
    padding: 20px;
}
.map-glow {
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, rgba(255,255,255,0) 70%) !important;
}
.map-svg path {
    stroke: var(--border-dark) !important;
    stroke-width: 1.2px !important;
}
.map-pin {
    background: var(--border-dark) !important;
    box-shadow: 0 0 15px rgba(0,0,0,0.1) !important;
}
.pin-pulse {
    background: rgba(197, 168, 128, 0.4) !important;
}

/* Figma-Style Command Nav Bar (Floating bottom) */
.dynamic-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid var(--border-dark) !important;
    border-radius: 40px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.nav-item {
    font-family: var(--font-mono) !important;
    color: var(--text-secondary) !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
}
.nav-item:hover {
    color: var(--text-color) !important;
}
.viz-nav-btn {
    background: var(--border-dark) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
}
.viz-nav-btn:hover {
    background: var(--accent-gold) !important;
}
.nav-glow {
    display: none !important; /* Hide neon blur glow */
}

/* Figma-Style Room Visualizer Modal interface */
.viz-modal {
    background: transparent !important;
    color: var(--text-color) !important;
    border-left: none !important;
}

.viz-dashboard-grid {
    background: transparent !important;
}

.viz-left {
    background: transparent !important;
    border-right: 1px solid var(--border-color) !important;
    padding: 60px 40px !important;
}

.viz-upload-zone {
    border: 2px dashed var(--border-dark) !important;
    background: #ffffff !important;
}

.viz-upload-title {
    font-family: var(--font-heading) !important;
    font-size: 1.3rem !important;
}

.viz-upload-sub {
    font-family: var(--font-mono) !important;
    font-size: 0.7rem !important;
    color: var(--text-secondary) !important;
}

.viz-upload-btn {
    font-family: var(--font-mono) !important;
    background: var(--border-dark) !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
}

.viz-preset-label {
    font-family: var(--font-mono) !important;
    font-size: 0.65rem !important;
}

.viz-preset {
    font-family: var(--font-mono) !important;
    font-size: 0.68rem !important;
    border: 1px solid var(--border-color) !important;
    background: #ffffff !important;
    color: var(--text-color) !important;
    font-weight: 700;
}

.viz-preset.active, .viz-preset:hover {
    background: var(--border-dark) !important;
    color: #ffffff !important;
    border-color: var(--border-dark) !important;
}

.viz-right {
    background: transparent !important;
    padding: 60px 50px !important;
}

.viz-title {
    font-family: var(--font-heading) !important;
    font-size: 2.4rem !important;
}

.viz-title span {
    color: var(--accent-gold) !important;
}

.viz-subtitle {
    font-family: var(--font-body) !important;
    color: var(--text-secondary) !important;
}

.viz-cat-tabs {
    border-bottom: 1px solid var(--border-color) !important;
    margin-top: 30px !important;
}

.viz-cat {
    font-family: var(--font-mono) !important;
    font-size: 0.72rem !important;
    color: var(--text-secondary) !important;
    font-weight: 700;
    padding: 12px 0 !important;
}

.viz-cat.active {
    color: var(--text-color) !important;
    border-bottom: 2px solid var(--border-dark) !important;
}

.viz-eyebrow {
    font-family: var(--font-mono) !important;
    font-weight: 700;
    color: var(--text-secondary) !important;
}

.viz-rt, .viz-pat {
    font-family: var(--font-mono) !important;
    font-size: 0.68rem !important;
    border: 1px solid var(--border-color) !important;
    background: #ffffff !important;
    color: var(--text-color) !important;
    font-weight: 700;
}

.viz-rt.active, .viz-pat.active {
    background: var(--border-dark) !important;
    color: #ffffff !important;
    border-color: var(--border-dark) !important;
}

/* Target Surface 5-Button Grid Layout */
.viz-surface-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 6px;
}

.viz-surface-grid .viz-rt[data-rt="countertop"] {
    grid-column: span 2;
}

.viz-surface-grid .viz-rt {
    font-family: var(--font-mono) !important;
    font-size: 0.68rem !important;
    padding: 8px 6px !important;
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--border-color) !important;
    background: #ffffff !important;
    color: var(--text-color) !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.viz-surface-grid .viz-rt.active {
    background: var(--border-dark) !important;
    color: #ffffff !important;
    border-color: var(--border-dark) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Pro Mode Toggle Styling */
.pro-mode-badge {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.12);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(197, 168, 128, 0.4);
}

.viz-pro-mode-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #faf9f6;
    border: 1.5px dashed #cccccc;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.viz-pro-mode-toggle:hover {
    border-color: var(--border-dark);
    background: #ffffff;
}

.viz-pro-mode-toggle.active {
    background: var(--border-dark);
    color: #ffffff;
    border-style: solid;
    border-color: var(--border-dark);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.viz-pro-mode-toggle .pro-toggle-pill {
    font-size: 0.62rem;
    padding: 3px 8px;
    border-radius: 12px;
    background: #e0e0e0;
    color: #555555;
    transition: all 0.2s ease;
}

.viz-pro-mode-toggle.active .pro-toggle-pill {
    background: var(--accent-gold);
    color: #ffffff;
}

.pro-settings-panel {
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.viz-sel-name {
    font-family: var(--font-mono) !important;
    color: var(--text-color) !important;
    font-weight: 700;
}

.viz-mat-card {
    border: 1px solid var(--border-color) !important;
    background: var(--bg-cream) !important;
    border-radius: 0 !important;
}

.viz-mat-card.selected {
    border-color: var(--border-dark) !important;
    outline: 1px solid var(--border-dark);
}

.viz-mat-info {
    background: #ffffff !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 12px 15px !important;
}

.viz-mat-tag {
    font-family: var(--font-mono) !important;
    color: var(--accent-gold) !important;
    font-weight: 700 !important;
    font-size: 0.52rem !important;
    text-transform: uppercase !important;
    background: rgba(197, 168, 128, 0.08) !important;
    padding: 2px 6px !important;
    border-radius: 2px !important;
    display: inline-block !important;
    width: fit-content !important;
    letter-spacing: 0.05em !important;
}

.viz-mat-info h4 {
    font-family: var(--font-heading) !important;
    font-size: 0.85rem !important;
    color: var(--text-color) !important;
}

.viz-loading {
    background: rgba(255, 255, 255, 0.95) !important;
}

.viz-loading-text {
    font-family: var(--font-mono) !important;
    color: var(--text-color) !important;
}

.viz-api-status {
    border-top: 1px solid var(--border-color) !important;
}

.viz-api-label {
    font-family: var(--font-mono) !important;
    color: var(--text-secondary) !important;
    font-weight: 700;
}

/* Search panel redesign */
.search-modal {
    background: rgba(255,255,255,0.98) !important;
}
.search-input-wrapper {
    border-bottom: 2px solid var(--border-dark) !important;
}
.search-input {
    font-family: var(--font-heading) !important;
    color: var(--text-color) !important;
}
.search-close {
    color: var(--text-color) !important;
}

/* Pinned Z-Depth projects slider background override */
.tunnel-sticky {
    background: radial-gradient(circle at center, #ffffff 0%, #f6f6f6 100%) !important;
}

/* Footer redesign */
.main-footer {
    background: #ffffff !important;
    border-top: 2px solid var(--border-dark) !important;
    padding: 100px 80px 50px !important;
    color: var(--text-color) !important;
}
.footer-logo {
    font-family: var(--font-heading) !important;
    font-size: 4rem !important;
    line-height: 0.9 !important;
    letter-spacing: -0.04em !important;
    color: var(--text-color) !important;
    margin-bottom: 30px;
}
.footer-grid h3 {
    font-family: var(--font-mono) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    color: var(--accent-gold) !important;
    margin-bottom: 25px;
    font-weight: 700 !important;
}
.footer-grid p, .footer-grid a {
    font-family: var(--font-body) !important;
    color: var(--text-secondary) !important;
    font-size: 0.88rem !important;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-grid a:hover {
    color: var(--text-color) !important;
}
.footer-bottom {
    border-top: 1px solid var(--border-color) !important;
    padding-top: 30px !important;
    font-family: var(--font-mono) !important;
    font-size: 0.7rem !important;
    color: var(--text-secondary) !important;
}

/* 3D Sandwich Stacking & Editorial Backdrop Titles */
#hero-canvas {
    z-index: 2 !important;
}

.hero-bg-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    padding: 0 80px 0 120px;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0; /* Hidden by default, driven by GSAP timeline! */
    will-change: transform, opacity;
}

.hero-bg-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.hero-bg-title {
    font-family: var(--font-heading) !important;
    font-size: 11vw !important;
    font-weight: 800 !important;
    color: rgba(255, 180, 180, 0.18) !important;
    text-transform: uppercase;
    letter-spacing: -0.05em !important;
    margin: 0 !important;
    line-height: 0.8 !important;
    text-align: center;
    pointer-events: none;
}

/* Responsive adjustments for background watermark */
@media (max-width: 768px) {
    .hero-bg-text-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .hero-bg-title {
        font-size: 16vw !important;
        color: rgba(255, 180, 180, 0.15) !important;
    }
}

/* 1. Hero Bottom-Right Editorial Alignment */
.hero-split-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 75vh !important;
    padding-top: 10vh !important;
    padding-bottom: 5vh !important;
}

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

.hero-bottom-block {
    margin-top: auto !important;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    padding-right: 40px;
}

.hero-desc-only {
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: var(--text-color) !important;
    margin: 0 !important;
    max-width: 480px;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

/* 2. Bento Grid Structural Fixes & Image Optimizations */
.bento-item {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid var(--border-color) !important;
    background: #faf9f6 !important;
    border-radius: 4px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    padding: 0 !important; /* Reset padding to frame the image perfectly */
}

.bento-card-img {
    width: 100% !important;
    height: 62% !important;
    object-fit: cover !important;
    border-bottom: 1px solid var(--border-color) !important;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-item:hover .bento-card-img {
    transform: scale(1.035) !important;
}

.bento-content {
    padding: 24px 28px !important;
    height: 38% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.bento-content h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    color: var(--text-color) !important;
}

.bento-content p {
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
}

/* Bento Wide Split Layout for Room Tiles */
.bento-wide .bento-split-wrap {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
}

.bento-wide .bento-card-img-wide {
    width: 55% !important;
    height: 100% !important;
    border-bottom: none !important;
    border-right: 1px solid var(--border-color) !important;
}

.bento-wide .bento-content {
    width: 45% !important;
    height: 100% !important;
}

/* 3. Testimonials Visibility & Styling In Light Mode */
.tm-card {
    background: #faf9f6 !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01) !important;
    border-radius: 12px !important;
}

.tm-card:hover {
    background: #ffffff !important;
    border-color: var(--text-color) !important;
    transform: translateY(-5px) !important;
}

.tm-quote {
    color: var(--text-color) !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    line-height: 1.65 !important;
    font-style: normal !important;
    font-weight: 400 !important;
    margin-bottom: 24px !important;
}

.tm-author h4 {
    color: var(--text-color) !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.tm-author p {
    color: var(--text-secondary) !important;
    font-family: var(--font-mono) !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin: 0 !important;
}

.tm-avatar {
    background: var(--text-color) !important;
    color: #ffffff !important;
    font-family: var(--font-mono) !important;
    font-size: 0.75rem !important;
    border: none !important;
    font-weight: 700 !important;
}

/* 4. Map Pin - Remove Black Box Overlay */
.map-pin {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 44px !important;
    height: 44px !important;
}

.map-pin:hover .pin-icon-wrap {
    transform: translate(-50%, -95%) scale(1.1) !important;
}

.pin-icon-wrap {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* 5. Complete Mobile & iPhone Responsiveness Overrides */
@media (max-width: 1024px) {
    .hero-text-overlay {
        grid-template-columns: 0.5fr 1.5fr !important;
        padding: 0 40px !important;
        gap: 20px !important;
    }
    .hero-split-right {
        height: 80vh !important;
    }
}

@media (max-width: 768px) {
    /* Main Layout Responsiveness */
    body {
        overflow-x: hidden !important;
    }
    
    /* Header Menu Collapse/Sizing */
    .main-header {
        padding: 15px 20px !important;
    }
    .header-nav {
        gap: 15px !important;
    }
    .header-nav-link {
        display: none !important; /* Hide secondary links on mobile to save space */
    }
    .header-nav-btn {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
    }

    /* Hero Stacking and Collapsing for iPhone */
    .hero-text-overlay {
        grid-template-columns: 1fr !important;
        padding: 0 24px !important;
        gap: 0 !important;
        height: 100vh !important;
    }
    .hero-split-left {
        height: 45vh !important; /* Dedicate top half of viewport to 3D canvas */
        pointer-events: none;
    }
    .hero-split-right {
        height: 50vh !important; /* Bottom half for labels, title, desc, cta */
        padding-top: 0 !important;
        padding-bottom: 20px !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }
    .hero-editorial-title {
        font-size: 3rem !important;
        line-height: 1.0 !important;
        margin-top: 5px !important;
    }
    .hero-desc-only {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    .hero-bottom-block {
        gap: 15px !important;
        padding-right: 0 !important;
    }
    .hero-actions {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }
    .hero-link {
        font-size: 0.8rem !important;
    }
    
    /* Bento Grid Responsiveness */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }
    .bento-item, .bento-large, .bento-wide {
        grid-column: span 1 !important;
        height: 420px !important;
    }
    .bento-wide .bento-split-wrap {
        flex-direction: column !important;
    }
    .bento-wide .bento-card-img-wide {
        width: 100% !important;
        height: 60% !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    .bento-wide .bento-content {
        width: 100% !important;
        height: 40% !important;
    }
    .bento-card-img {
        height: 60% !important;
    }
    .bento-content {
        height: 40% !important;
        padding: 20px !important;
    }
    
    /* About Us Map Layout Grid Collapse */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 60px 20px !important;
    }
    .about-content {
        order: 1 !important;
    }
    .about-map {
        order: 2 !important;
        width: 100% !important;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    .about-stats h3 {
        font-size: 1.6rem !important;
    }
    
    /* Testimonials Horizontal Slider Fix */
    .tm-card {
        flex: 0 0 280px !important;
        padding: 24px 20px !important;
    }
    .tm-quote {
        font-size: 0.88rem !important;
    }
    
    /* Bottom Commands Dock Sizing */
    .dynamic-nav {
        width: 90% !important;
        bottom: 20px !important;
        padding: 8px 16px !important;
    }
}

/* Floating Center Bottom Premium CTA Bar */
.floating-cta-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    pointer-events: none;
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(220, 215, 205, 0.6);
    border-radius: 50px;
    padding: 8px 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
    will-change: transform;
}

.floating-cta-bar.cta-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta-bar.cta-visible:hover {
    box-shadow: 0 16px 50px rgba(197, 168, 128, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%) translateY(-4px);
}

.floating-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    cursor: pointer;
}

/* AI Visualizer Button - Gold/Premium Look */
.floating-cta-viz {
    background: var(--border-dark);
    color: #ffffff;
    border: 1px solid var(--border-dark);
}

.floating-cta-viz:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
    transform: scale(1.02);
}

/* Call Us Button - White/Luxury Look */
.floating-cta-call {
    background: #ffffff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.floating-cta-call:hover {
    background: var(--bg-secondary);
    border-color: var(--border-dark);
    transform: scale(1.02);
}

/* Icon rotation animation for visualizer */
.floating-cta-btn .btn-icon {
    display: inline-flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta-btn:hover .btn-icon {
    transform: rotate(180deg);
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .floating-cta-bar {
        bottom: 16px;
        width: calc(100% - 32px);
        max-width: 360px;
        gap: 8px;
        padding: 6px;
    }
    .floating-cta-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.68rem;
        gap: 6px;
    }
}

/* =============================================
   AUTHENTICATION GATEWAY MODAL (70% IMAGE / 30% LIQUID GLASS FORM)
   ============================================= */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.auth-card-container {
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-radius: 0;
    display: grid;
    grid-template-columns: 68% 32%;
    padding: 0;
    box-sizing: border-box;
    box-shadow: none;
}

/* Left Architectural Visual Banner (Flush edge-to-edge on top, left, and bottom edges) */
.auth-banner-side {
    position: relative;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 50px 45px;
    box-sizing: border-box;
}

.auth-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 80%);
}

.auth-banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 600px;
}

.auth-banner-headline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.auth-banner-sub {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.auth-banner-foot {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    display: block;
}

/* Right Form Side (Clean White Backdrop for Liquid Glassmorphism) */
.auth-form-side {
    height: 100vh;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    box-sizing: border-box;
    overflow-y: auto;
}

.auth-header {
    margin-bottom: 24px;
    text-align: center !important;
}

.auth-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 2.1rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 8px;
    text-transform: none !important;
    text-align: center !important;
}

.auth-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.92rem !important;
    color: #64748b !important;
    line-height: 1.55 !important;
    text-align: center !important;
}

.auth-notice-box {
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.4;
    backdrop-filter: blur(12px);
}

.auth-notice-box.error {
    background: rgba(230, 70, 70, 0.15);
    border: 1px solid rgba(230, 70, 70, 0.35);
    color: #ff9999;
}

.auth-notice-box.success {
    background: rgba(40, 200, 120, 0.15);
    border: 1px solid rgba(40, 200, 120, 0.4);
    color: #6cf0b2;
}

.auth-notice-box.info {
    background: rgba(197, 168, 128, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: #d8be9a;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.auth-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.auth-label {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #334155 !important;
}

/* Water / Liquid Glassmorphism Input Styling on Light Background */
.auth-input {
    width: 100%;
    background: rgba(248, 250, 252, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1.5px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.9rem !important;
    color: #0f172a !important;
    outline: none !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), inset 0 2px 4px rgba(255, 255, 255, 1) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.auth-input::placeholder {
    color: #94a3b8 !important;
}

.auth-input:focus {
    background: #ffffff !important;
    border-color: #c5a880 !important;
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.22), 0 8px 20px rgba(197, 168, 128, 0.15) !important;
}

.auth-field-hint {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.75rem !important;
    color: #64748b !important;
    margin: -4px 0 16px 0 !important;
}

/* Soft Golden 3D Liquid Glassmorphism Submit Button */
.auth-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.95) 0%, rgba(197, 168, 128, 0.98) 100%) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    color: #0f172a !important;
    border: 1.5px solid rgba(255, 245, 215, 0.95) !important;
    border-radius: 9999px !important;
    padding: 15px 24px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    cursor: pointer !important;
    margin-top: 14px !important;
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.2), 0 14px 35px rgba(197, 168, 128, 0.35), inset 0 2px 4px rgba(255, 255, 255, 1) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 235, 195, 0.98) 0%, rgba(212, 180, 138, 0.98) 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 0 0 6px rgba(197, 168, 128, 0.3), 0 18px 45px rgba(197, 168, 128, 0.45), inset 0 2px 4px rgba(255, 255, 255, 1) !important;
}

.auth-footer-toggle {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    color: #64748b !important;
}

.auth-link-btn {
    background: transparent !important;
    border: none !important;
    color: #0f172a !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
    transition: color 0.2s ease !important;
}

.auth-link-btn:hover {
    color: #c5a880 !important;
}

.auth-terms-note {
    margin-top: 20px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.4;
}

.auth-terms-note a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

/* User Badge in Visualizer Header */
.viz-user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-color);
    font-weight: 700;
}

.user-avatar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #52e89e;
    box-shadow: 0 0 8px #52e89e;
}

.viz-signout-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: 6px;
    transition: color 0.2s ease;
}

.viz-signout-btn:hover {
    color: #ff5555;
}

/* Mobile Responsive Layout for Auth Modal */
@media (max-width: 1024px) {
    .auth-card-container {
        grid-template-columns: 60% 40%;
    }
}

@media (max-width: 800px) {
    .auth-card-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .auth-banner-side {
        display: none;
    }
    .auth-form-side {
        height: auto;
        padding: 24px 18px;
    }
    .auth-input-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   POST-LOGIN SPACE SETUP OVERLAY (assets/login01.png)
   ============================================= */
.space-setup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99998;
    background-image: url('../assets/login01.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: spaceSetupFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes spaceSetupFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.space-setup-container {
    width: 100%;
    max-width: 860px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.space-setup-headline {
    font-family: var(--font-body);
    font-size: 2.1rem;
    font-weight: 500;
    color: #111113;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.space-setup-subtext {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666668;
    margin-bottom: 40px;
}

.space-setup-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 720px;
    margin-bottom: 35px;
}

.space-setup-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-setup-card:hover {
    background: #ffffff;
    border-color: #111113;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.space-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f4f4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111113;
    margin-bottom: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.space-setup-card:hover .space-card-icon-wrap {
    background: #111113;
    color: #ffffff;
}

.space-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #111113;
    margin-bottom: 4px;
}

.space-card-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #777779;
}

.space-presets-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    width: 100%;
    max-width: 720px;
}

.space-presets-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #777779;
}

.space-presets-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.space-preset-pill {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: #333335;
    cursor: pointer;
    transition: all 0.2s ease;
}

.space-preset-pill:hover {
    background: #111113;
    color: #ffffff;
    border-color: #111113;
}

@media (max-width: 680px) {
    .space-setup-cards-grid {
        grid-template-columns: 1fr;
    }
    .space-setup-container {
        padding: 30px 20px;
    }
    .space-setup-headline {
        font-size: 1.6rem;
    }
}

/* =============================================
   LIVE CAMERA CAPTURE MODAL STYLING
   ============================================= */
.camera-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: cameraModalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cameraModalFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.camera-modal-card {
    width: 100%;
    max-width: 760px;
    background: #0c0c0e;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.camera-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.camera-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
}

.camera-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff4545;
    box-shadow: 0 0 10px #ff4545;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.camera-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
}

.camera-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.camera-viewport-wrap {
    position: relative;
    width: 100%;
    height: 440px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#camera-video-feed {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-viewfinder-grid {
    position: absolute;
    inset: 20px;
    pointer-events: none;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.vf-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: #c2c99b;
    border-style: solid;
}

.vf-corner.top-left { top: 0; left: 0; border-width: 3px 0 0 3px; }
.vf-corner.top-right { top: 0; right: 0; border-width: 3px 3px 0 0; }
.vf-corner.bottom-left { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.vf-corner.bottom-right { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.camera-status-overlay {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.camera-modal-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
}

.camera-snap-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.camera-snap-btn:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.35);
}

.snap-inner-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    transition: background 0.2s ease;
}

.camera-snap-btn:active .snap-inner-circle {
    background: #c2c99b;
}

@media (max-width: 768px) {
    .camera-viewport-wrap {
        height: 320px;
    }
    .camera-modal-card {
        padding: 18px;
    }
}

/* =============================================
   VISUALIZER PAGE BACKGROUND (assets/back02.png) & LIQUID GLASS UI
   ============================================= */
html,
body,
.viz-app-shell,
.viz-modal,
#viz-modal,
.viz-dashboard-grid {
    background-image: url('../assets/back02.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Translucent frosted glass containers allowing back02.png to shine through */
.viz-sidebar,
.viz-panel-card,
.viz-right-panel,
.viz-header-bar,
.viz-workspace-tray,
.viz-viewport-frame {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05), inset 0 1px 2px rgba(255, 255, 255, 0.85) !important;
    border-radius: 20px !important;
}

/* =============================================
   CUSTOM LIQUID GLASS SURFACE DROPDOWN
   ============================================= */
.viz-glass-select-wrap {
    position: relative;
    width: 100%;
}

.viz-glass-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 9999px !important;
    padding: 10px 18px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 0.95), inset 0 -2px 3px 0 rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.viz-glass-select-trigger:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 1), 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.viz-select-chevron {
    transition: transform 0.3s ease;
}

.viz-glass-select-wrap.open .viz-select-chevron {
    transform: rotate(180deg);
}

.viz-glass-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 18px !important;
    padding: 6px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14), inset 0 1px 2px rgba(255, 255, 255, 0.9) !important;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-sizing: border-box !important;
}

.viz-glass-select-wrap.open .viz-glass-select-dropdown {
    display: flex;
    animation: dropdownSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown Option with Vibrant Liquid Blue Hover Effect */
.viz-glass-option {
    padding: 10px 16px !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.viz-glass-option:hover {
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4) !important;
}

.viz-glass-option.active {
    background: #111113 !important;
    color: #ffffff !important;
}

/* =============================================
   LIQUID GLASS PILL BUTTON SYSTEM (Image 2 Reference)
   ============================================= */
.viz-btn-primary,
.viz-btn-secondary,
.viz-tray-icon-btn,
.viz-segment-btn,
.viz-pro-mode-toggle,
.space-preset-pill,
.viz-user-badge,
.viz-exit-btn,
button.viz-segment-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    color: #1a1a1a !important;
    text-transform: none !important;
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(24px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 9999px !important;
    padding: 9px 20px !important;
    box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 0.95), inset 0 -2px 3px 0 rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.05) !important;
    cursor: pointer !important;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Hover state for liquid glass pills */
.viz-btn-primary:hover,
.viz-btn-secondary:hover,
.viz-tray-icon-btn:hover,
.viz-segment-btn:hover,
.viz-pro-mode-toggle:hover,
.space-preset-pill:hover,
.viz-exit-btn:hover {
    background: rgba(255, 255, 255, 0.88) !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 1), 0 10px 28px rgba(0, 0, 0, 0.1) !important;
}

/* Active / Selected state for liquid glass pills */
.viz-segment-btn.active,
.viz-btn-primary.viz-btn-scan-active {
    background: #111113 !important;
    border-color: #111113 !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35), 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

/* =============================================
   HUMAN MODERN SANS-SERIF TYPOGRAPHY FOR PRO MODE BADGES & SLIDERS
   ============================================= */
.viz-control-value-badge,
.pro-mode-badge,
.pro-toggle-pill,
.viz-control-label,
#lbl-rotation,
#lbl-scale,
#lbl-exposure,
#lbl-shadow,
#lbl-blur,
#lbl-wall,
#lbl-opacity {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.01em !important;
}

/* Remove yellow AI badge styling */
.pro-mode-badge {
    background: rgba(0, 102, 255, 0.1) !important;
    color: #0055ff !important;
    border: 1px solid rgba(0, 102, 255, 0.25) !important;
    border-radius: 9999px !important;
    padding: 3px 10px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
}

.pro-toggle-pill {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #333333 !important;
    border-radius: 9999px !important;
    padding: 2px 8px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
}

.viz-pro-mode-toggle.active .pro-toggle-pill {
    background: #111113 !important;
    color: #ffffff !important;
}

/* =============================================
   HUMAN MODERN SANS-SERIF TYPOGRAPHY FOR SIDEBAR PANELS
   ============================================= */
.viz-section-title,
.viz-history-label,
.viz-sidebar-right,
.viz-sidebar-right h3,
.viz-sidebar-right h4,
.viz-sidebar-right span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.viz-section-title {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
}

.viz-history-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
}

/* =============================================
   TRAY ICON BUTTONS (Download & Fullscreen)
   ============================================= */
.viz-tray-icon-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a !important;
    box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 1), 0 6px 20px rgba(0, 0, 0, 0.08) !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.viz-tray-icon-btn svg {
    stroke: #1a1a1a !important;
    stroke-width: 2.2px !important;
    width: 20px !important;
    height: 20px !important;
    transition: stroke 0.2s ease !important;
}

.viz-tray-icon-btn:hover {
    background: #111113 !important;
    border-color: #111113 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.viz-tray-icon-btn:hover svg {
    stroke: #ffffff !important;
}

/* =============================================
   IMAGE-ONLY FULLSCREEN LIGHTBOX OVERLAY
   ============================================= */
.viz-fullscreen-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.viz-fullscreen-modal-overlay.active {
    display: flex;
}

.viz-fullscreen-img-card {
    max-width: 95vw;
    max-height: 92vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.viz-fullscreen-img-card img {
    max-width: 95vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.viz-fullscreen-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    font-size: 1.3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.25s ease !important;
    z-index: 1000000;
}

.viz-fullscreen-close-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: scale(1.1) rotate(90deg) !important;
}

/* =============================================
   HERO METADATA & ACTION BUTTONS STYLING
   ============================================= */
.hero-metadata-table {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    max-width: 480px !important;
    margin-top: 10px !important;
}

.meta-row {
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
}

.meta-label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #66666e !important;
    min-width: 65px !important;
}

.meta-value {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    color: #222226 !important;
}

.hero-actions {
    display: flex !important;
    gap: 14px !important;
    margin-top: 16px !important;
    flex-wrap: wrap !important;
}

.hero-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #111113 !important;
    text-decoration: none !important;
    padding: 10px 22px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1.5px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-link:hover {
    background: #111113 !important;
    color: #ffffff !important;
    border-color: #111113 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.hero-link-special {
    background: linear-gradient(135deg, #111113 0%, #2a2a30 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

.hero-link-special:hover {
    background: linear-gradient(135deg, #0055ff 0%, #0033cc 100%) !important;
    color: #ffffff !important;
    border-color: #0055ff !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(0, 85, 255, 0.35) !important;
}

/* =============================================
   BOOK PAGE-TURNING STEPS SECTION
   ============================================= */

/* Header nav links styling for About & Pricing */
.header-nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    font-size: 0.88rem !important;
}

/* Section Container - Clean White Theme */
.book-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: #ffffff !important;
    overflow: visible;
}

.book-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 85px 24px 35px !important;
    box-sizing: border-box;
    overflow: hidden;
    gap: 8px;
    background: #ffffff !important;
}

/* Section Title - Lowered & Clear from Fixed Header */
.book-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center;
    margin: 0 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.book-section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(0.88rem, 1.2vw, 1.05rem) !important;
    color: #64748b !important;
    text-align: center;
    margin: 0 0 6px 0 !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

/* ---- Book Scene (3D Perspective Container) ---- */
.book-scene {
    perspective: 2200px;
    perspective-origin: 50% 50%;
    width: 100%;
    max-width: 1080px;
    margin: 4px auto 0 !important;
    flex-shrink: 0;
}

/* ---- The Book - Crisp Pure White Surface with Soft Shadow ---- */
.book {
    position: relative;
    width: 100%;
    aspect-ratio: 1.82 / 1;
    max-height: calc(100vh - 290px);
    min-height: 320px;
    transform-style: preserve-3d;
    border-radius: 8px;
    background: #ffffff !important;
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.10),
        0 12px 28px rgba(15, 23, 42, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* ---- Spine Shadow ---- */
.book-spine {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.04) 20%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(0, 0, 0, 0.10) 50%,
        rgba(0, 0, 0, 0.08) 60%,
        rgba(0, 0, 0, 0.04) 80%,
        transparent 100%
    );
    z-index: 50;
    pointer-events: none;
    border-radius: 0;
}

/* ---- Static Base Pages ---- */
.book-page-static {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 0;
    overflow: hidden;
}

.book-page-static.page-left {
    left: 0;
    border-radius: 8px 0 0 8px;
    background: #ffffff !important;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.book-page-static.page-right {
    left: 50%;
    border-radius: 0 8px 8px 0;
    background: #ffffff !important;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

/* Subtle page overlay */
.book-page-static::before,
.turn-face::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

/* ---- Page Inner Content ---- */
.page-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 24px;
    box-sizing: border-box;
    text-align: center;
    gap: 4px;
}

.page-inner-right {
    align-items: flex-start;
    text-align: left;
    padding: 40px 38px;
    justify-content: center;
    gap: 12px;
}

/* Left Page: Step Number Watermark */
.page-watermark-num {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(3rem, 5.5vw, 5rem) !important;
    font-weight: 800 !important;
    color: rgba(0, 0, 0, 0.06) !important;
    line-height: 1;
    letter-spacing: -0.03em;
    position: absolute;
    top: 14px;
    left: 20px;
    z-index: 0;
    user-select: none;
}

/* Left Page: Step Title - Matching Page 2 Font */
.page-left-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.2rem, 1.8vw, 1.6rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    z-index: 1;
}

/* Left Page: Step Image - ENLARGED & PROMINENT */
.page-img-wrap {
    width: 100%;
    max-width: 520px;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: 2px;
    padding: 0;
    box-sizing: border-box;
}

.page-step-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    transform: scale(1.12);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.12));
}

/* Right Page: Description Label ("STEP ONE / TWO / THREE / FOUR") - Pencil Lead Graphite Color */
.page-desc-label {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    color: #71717a !important;
    margin: 0;
}

/* Right Page: Heading - Matching Page 2 Font */
.page-desc-heading {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.3rem, 1.9vw, 1.75rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

/* Right Page: Description Text - Matching Page 2 Font */
.page-desc-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(0.88rem, 1.05vw, 1rem) !important;
    color: #64748b !important;
    line-height: 1.65 !important;
    margin: 0;
    text-transform: none !important;
}

/* Right Page: Accent Line */
.page-accent-line {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #71717a, #e2e8f0);
    border-radius: 3px;
    margin-top: 4px;
}

/* ---- Turn Pages (3D Flip Elements) ---- */
.book-turn {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    transform-origin: left center;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    border-radius: 0 8px 8px 0;
    cursor: default;
}

.book-turn[data-turn="1"] { z-index: 3; }
.book-turn[data-turn="2"] { z-index: 2; }
.book-turn[data-turn="3"] { z-index: 1; }

/* Turn Face (front & back) - Clean White */
.turn-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.turn-front {
    background: #ffffff !important;
    border-radius: 0 8px 8px 0;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.turn-back {
    transform: rotateY(180deg);
    background: #ffffff !important;
    border-radius: 8px 0 0 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}

/* Dynamic Shadow on Turn Page */
.turn-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 15%,
        transparent 50%
    );
    border-radius: 0 8px 8px 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ---- Step Indicator Dots (Removed as requested) ---- */
.book-step-indicator {
    display: none !important;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.step-dot span {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.step-dot.active {
    background: #0f172a;
    border-color: #0f172a;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.20);
}

.step-dot.active span {
    color: #ffffff;
}

/* ---- 3D Iridescent Frosted Glassmorphism Action Buttons (Global) ---- */
.book-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 6px !important;
    z-index: 20;
}

.glass-action-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 28px !important;
    border-radius: 9999px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
}

/* 3D Soft Ice-Blue / Cyan Frosted Glass Capsule */
.glass-btn-blue {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(224, 242, 254, 0.92) 100%) !important;
    color: #0284c7 !important;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.25), 0 12px 30px rgba(56, 189, 248, 0.20), inset 0 2px 5px rgba(255, 255, 255, 1) !important;
}

.glass-btn-blue:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(207, 237, 254, 0.98) 100%) !important;
    color: #0284c7 !important;
    transform: translateY(-3px) scale(1.04) !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25), 0 16px 40px rgba(2, 132, 199, 0.30), inset 0 2px 6px rgba(255, 255, 255, 1) !important;
}

/* 3D Soft Warm Peach / Rose Frosted Glass Capsule */
.glass-btn-peach {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 241, 242, 0.92) 100%) !important;
    color: #e11d48 !important;
    box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.25), 0 12px 30px rgba(251, 113, 133, 0.20), inset 0 2px 5px rgba(255, 255, 255, 1) !important;
}

.glass-btn-peach:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 226, 226, 0.98) 100%) !important;
    color: #e11d48 !important;
    transform: translateY(-3px) scale(1.04) !important;
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.25), 0 16px 40px rgba(225, 29, 72, 0.28), inset 0 2px 6px rgba(255, 255, 255, 1) !important;
}

/* ---- Steps Video Container ---- */
.steps-video-container {
    width: 100%;
    max-width: 480px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.steps-video-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.steps-video-label .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ef4444;
    animation: labelPulse 1.8s infinite ease-in-out;
}

@keyframes labelPulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.steps-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    background: #000;
}

.steps-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .book-section {
        height: auto !important;
        min-height: 100vh !important;
    }
    .book-sticky {
        padding: 60px 16px 16px;
        gap: 12px;
    }
    .book-scene {
        max-width: 100%;
    }
    .book {
        aspect-ratio: 1.6 / 1;
        max-height: calc(100vh - 260px);
        min-height: 260px;
    }
    .page-inner {
        padding: 20px 16px;
    }
    .page-inner-right {
        padding: 24px 20px;
    }
    .page-watermark-num {
        font-size: clamp(2rem, 4vw, 3rem);
        top: 10px;
        left: 14px;
    }
    .page-left-title {
        font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    }
    .page-step-img {
        max-height: 220px;
    }
    .page-desc-heading {
        font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    }
    .page-desc-text {
        font-size: clamp(0.72rem, 0.9vw, 0.85rem);
        line-height: 1.6;
    }
    .page-desc-label {
        font-size: 0.6rem;
    }
    .book-spine {
        width: 30px;
    }
    .book-actions {
        flex-direction: row;
        gap: 10px;
    }
    .book-actions .glass-action-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

@media (max-width: 520px) {
    .book {
        aspect-ratio: 1.5 / 1;
        min-height: 220px;
    }
    .page-inner {
        padding: 14px 10px;
        gap: 4px;
    }
    .page-inner-right {
        padding: 16px 14px;
        gap: 6px;
    }
    .page-step-img {
        max-height: 110px;
        border-radius: 6px;
    }
    .page-watermark-num {
        font-size: 1.8rem;
        top: 6px;
        left: 8px;
    }
    .page-left-title {
        font-size: 0.78rem;
    }
    .page-desc-heading {
        font-size: 0.82rem;
    }
    .page-desc-text {
        font-size: 0.68rem;
        line-height: 1.5;
    }
    .book-spine {
        width: 20px;
    }
    .step-dot {
        width: 26px;
        height: 26px;
    }
    .step-dot span {
        font-size: 0.55rem;
    }
}


/* =============================================
   AI VISUALIZER HOVER FLIP TEXT ("Coming Soon")
   ============================================= */

.ai-viz-hover-btn {
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.ai-viz-hover-btn .btn-text {
    display: inline-block !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ai-viz-hover-btn::after {
    content: attr(data-hover-text) !important;
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: 700 !important;
    color: inherit !important;
    letter-spacing: inherit !important;
    white-space: nowrap !important;
}

.ai-viz-hover-btn:hover .btn-text {
    opacity: 0 !important;
    transform: translateY(-100%) !important;
}

.ai-viz-hover-btn:hover::after {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* =============================================
   AI VISUALIZER FEATURE SHOWCASE SECTION (PAGE 2)
   ============================================= */

.ai-showcase-section {
    background: #f8fafc;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 4% 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Top Center Header (Matching "A Visualizer That's Yours." in Screenshot 2) */
.ai-showcase-top-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.ai-showcase-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.ai-showcase-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

/* Left Column Content (Occupies Left-Most Area) */
.ai-showcase-content {
    flex: 0 0 38%;
    max-width: 520px;
    box-sizing: border-box;
}

.ai-showcase-subhead {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    margin: 0 0 16px 0 !important;
}

.ai-showcase-desc {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.02rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    text-transform: none !important;
    margin: 0 0 32px 0 !important;
}

/* Feature Grid */
.ai-features-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.ai-feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.ai-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.95));
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.08);
}

.ai-feature-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin: 0 0 4px 0 !important;
}

.ai-feature-text p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.85rem !important;
    color: #64748b !important;
    line-height: 1.48 !important;
    text-transform: none !important;
    margin: 0 !important;
}

.ai-showcase-cta {
    display: flex;
    align-items: center;
}

.showcase-consult-btn {
    width: auto !important;
    min-width: 220px;
    padding: 13px 28px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-transform: none !important;
}

/* Right Column Visual Presentation (Occupies Right-Most Area) */
.ai-showcase-visual {
    flex: 1 1 58%;
    max-width: 62%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.visusample-card-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visusample-card-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.visusample-img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 100px);
    display: block;
    object-fit: contain;
    border-radius: 20px;
}

@media (max-width: 960px) {
    .ai-showcase-section {
        min-height: auto;
        padding: 60px 20px;
    }
    .ai-showcase-container {
        flex-direction: column;
        gap: 30px;
    }
    .ai-showcase-content, .ai-showcase-visual {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }
    .ai-showcase-title {
        font-size: 1.85rem !important;
    }
}

/* ===========================================================================
   FLOATING DYNAMIC GLASSMORPHISM NAVIGATION BAR (70% Transparent)
   =========================================================================== */
.floating-glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 36px;
    background: rgba(255, 255, 255, 0.30) !important; /* 70% transparent light background */
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.floating-glass-nav.nav-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* 70% Transparent Black Mode for Last Page (#contact) */
.floating-glass-nav.nav-dark-mode {
    background: rgba(10, 10, 12, 0.30) !important; /* 70% transparent black background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35) !important;
}

.glass-nav-brand {
    display: flex;
    align-items: center;
    gap: 7px; /* Tight gap between logo and Uma Traderss */
    text-decoration: none;
}

.glass-nav-logo {
    height: 38px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    background: #111113 !important;
    padding: 6px 12px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    filter: none !important;
    transition: transform 0.25s ease;
}

.glass-nav-brand:hover .glass-nav-logo {
    transform: scale(1.04);
}

.glass-nav-title {
    font-family: 'Plus Jakarta Sans', var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #111113;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.floating-glass-nav.nav-dark-mode .glass-nav-title {
    color: #ffffff;
}

.glass-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.glass-nav-item {
    font-family: 'Plus Jakarta Sans', var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: #444444;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 9999px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.floating-glass-nav.nav-dark-mode .glass-nav-item {
    color: rgba(255, 255, 255, 0.7);
}

.glass-nav-item:hover {
    color: #111113;
    background: rgba(0, 0, 0, 0.05);
}

.floating-glass-nav.nav-dark-mode .glass-nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.glass-nav-item.active {
    color: #ffffff !important;
    font-weight: 600 !important;
    background: #111113 !important;
    border: 1px solid #111113 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
}

.floating-glass-nav.nav-dark-mode .glass-nav-item.active {
    color: #111113 !important;
    font-weight: 600 !important;
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

/* ===========================================================================
   ABOUT US SECTION (MATCHING SCREENSHOT 3 EDITORIAL LAYOUT)
   =========================================================================== */
.about-section {
    padding: 120px 40px;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.about-editorial-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #111113;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #444444;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.about-headline-wrap {
    padding: 40px 0 50px 0;
}

.about-main-title {
    font-family: 'Syne', 'Outfit', sans-serif;
    font-size: clamp(4.5rem, 13vw, 11rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.04em;
    color: #0f0e0c;
    text-transform: lowercase;
    margin: 0;
}

.about-body-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr 1.1fr;
    gap: 50px;
    align-items: start;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-sub-heading {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111113;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-arrow-icon {
    font-size: 2.2rem;
    color: #111113;
    font-weight: 300;
    line-height: 1;
}

.about-para {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.75;
    color: #444444;
    font-weight: 400;
    margin: 0;
}

.about-cta-row {
    margin-top: 32px;
}

/* ===========================================================================
   FAQ SECTION STYLING (MATCHING SCREENSHOT 2 LAYOUT)
   =========================================================================== */
.faq-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f2f2f4 0%, #e8e8ec 100%);
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-eyebrow-pill {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #333333;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 5px 16px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-main-title {
    font-family: 'Plus Jakarta Sans', var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #111113;
    letter-spacing: -0.03em;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    padding: 4px 6px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-card.open {
    border: 1.5px solid rgba(130, 155, 240, 0.7);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07), 0 0 22px rgba(130, 155, 240, 0.18);
}

.faq-card-header {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.faq-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: #666666;
    background: #f0f0f2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-q-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #111113;
    margin: 0;
    flex: 1;
}

.faq-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111113;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-card.open .faq-toggle-btn {
    background: #ffffff;
    color: #111113;
    border: 1px solid rgba(0, 0, 0, 0.18);
}

.faq-icon-plus { display: block; font-size: 1.3rem; line-height: 1; }
.faq-icon-close { display: none; font-size: 1.2rem; line-height: 1; }

.faq-card.open .faq-icon-plus { display: none; }
.faq-card.open .faq-icon-close { display: block; }

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0 22px 0 68px;
}

.faq-card.open .faq-card-body {
    max-height: 300px;
    opacity: 1;
    padding: 4px 22px 22px 68px;
}

.faq-card-body p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

.faq-footer-prompt {
    text-align: center;
    margin-top: 45px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.faq-contact-link {
    color: #111113;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .about-section {
        padding: 80px 20px;
    }
    .about-body-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-header-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .floating-glass-nav {
        padding: 6px 14px 6px 12px;
        gap: 12px;
    }
    .glass-nav-title {
        display: none;
    }
    .glass-nav-item {
        padding: 6px 12px;
        font-size: 0.78rem;
    }
}

/* =============================================
   ABOUT US SECTIONS (2 Distinct Full Pages)
   ============================================= */

/* ---- Visualizer Video Section (Before About Us) ---- */
.visualizer-video-section {
    position: relative;
    width: 100%;
    background: #ffffff !important;
    padding: 60px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 10;
    border-top: 1px solid #e2e8f0;
}

.visualizer-video-section .visualizer-video-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* PAGE 1: About Us & Our Story */
.about-page-1 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #ffffff !important;
    padding: 100px 0 80px;
    color: #0f172a;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

/* Top Hero Banner: Centered Title & Subtitle */
.about-hero {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 75px;
    padding: 0 4%;
    text-align: center;
    box-sizing: border-box;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.8rem, 4.8vw, 4rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center !important;
    margin: 0 0 22px 0 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
}

.about-hero-sub {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem) !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 720px;
    text-transform: none !important;
}

/* Our Story Grid (3 Columns with vertical dividers) */
.about-story-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    box-sizing: border-box;
}

.about-story-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.2rem, 3.5vw, 3rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center;
    margin: 0 0 45px 0 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
}

.about-story-col {
    padding: 0 36px;
    border-right: 1px solid #cbd5e1;
    box-sizing: border-box;
}

.about-story-col:last-child {
    border-right: none;
}

.about-story-heading {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 18px 0 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

.about-story-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    text-transform: none !important;
}


/* PAGE 2: Meet Our Team Section (Dedicated Full Page) */
.about-page-2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #f8fafc !important;
    padding: 100px 0;
    color: #0f172a;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    z-index: 10;
}

.about-team-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    box-sizing: border-box;
}

.about-team-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center;
    margin: 0 0 60px 0 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    background: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
    border-color: #cbd5e1;
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.team-card .uma-img-shield {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.team-card:hover .team-card-image {
    transform: scale(1.06);
    filter: blur(4px);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.team-card-overlay .team-name {
    color: #ffffff !important;
    margin-bottom: 8px !important;
}

.team-card-overlay .team-role {
    color: var(--accent-gold) !important;
    margin-bottom: 16px !important;
}

.team-card-overlay .team-bio {
    color: #e2e8f0 !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

.team-card-overlay .team-read-more {
    color: var(--accent-gold) !important;
}

.team-name {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

.team-role {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    margin: 0 0 22px 0 !important;
}

.team-bio {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.96rem !important;
    color: #64748b !important;
    line-height: 1.68 !important;
    margin: 0 0 28px 0 !important;
    flex: 1;
    text-transform: none !important;
}

.team-linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
    pointer-events: auto !important;
    z-index: 11;
}

.team-linkedin-link:hover {
    background: #0077b5; /* Premium LinkedIn Blue */
    border-color: #0077b5;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

.team-linkedin-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.team-linkedin-link:hover .team-linkedin-icon {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }
    .about-story-col {
        padding: 0 0 20px 0;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .about-story-col:last-child {
        border-bottom: none;
    }
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 800px;
    }
    .team-card {
        height: 380px !important;
    }
    .team-card-overlay {
        padding: 16px !important;
    }
    .team-card-overlay .team-bio {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }
}

/* =============================================
   FAQ SECTION (Matching Clean Accordion Design)
   ============================================= */

.faq-section {
    position: relative;
    width: 100%;
    background: #ffffff !important;
    padding: 80px 0 60px;
    color: #0f172a;
    box-sizing: border-box;
    z-index: 10;
    border-top: 1px solid #e2e8f0;
}

.faq-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 4%;
    box-sizing: border-box;
}

.faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.faq-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
}

.faq-title span {
    color: #64748b;
    font-weight: 400;
}

.faq-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(0.98rem, 1.3vw, 1.15rem) !important;
    color: #64748b !important;
    margin: 0 auto !important;
    max-width: 620px;
    line-height: 1.6 !important;
    text-transform: none !important;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid transparent;
}

.faq-item.active {
    background: #f8fafc;
    border-color: #e2e8f0;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: color 0.25s ease;
}

.faq-question span:first-child {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    letter-spacing: -0.01em !important;
    line-height: 1.4 !important;
    text-transform: none !important;
}

.faq-icon {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    color: #64748b !important;
    margin-left: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question span:first-child {
    color: #0f172a !important;
}

.faq-item.active .faq-icon {
    color: #0f172a !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    text-transform: none !important;
}

/* =============================================
/* =============================================
   PERMANENT FOOTER & ROOT BOTTOM BASE FIX (#141414)
   ============================================= */

html, body, .lenis, .lenis-content {
    background-color: #141414 !important;
}

footer, .footer, .mini-footer, #contact {
    background-color: #141414 !important;
    margin-bottom: 0 !important;
}

/* =============================================
   COMPACT FOOTER (Matching Reference Design)
   ============================================= */

.mini-footer {
    position: relative;
    width: 100% !important;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../assets/entrance1.png') no-repeat center center !important;
    background-size: cover !important;
    color: #ffffff;
    padding: 55px 0 40px;
    box-sizing: border-box;
    z-index: 10;
    border-top: 1px solid #262626;
}

.mini-footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 40px;
    align-items: start;
    box-sizing: border-box;
}

.mini-footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-brand-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.01em !important;
    margin: 0 0 4px 0 !important;
    text-transform: none !important;
}

.mini-brand-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #f59e0b !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    display: block;
}

.mini-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.82rem !important;
    color: #737373 !important;
    margin: 28px 0 0 0 !important;
    line-height: 1.4 !important;
}

.mini-nav-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    color: #a3a3a3 !important;
    text-decoration: none !important;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.mini-nav-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.mini-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.mini-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    color: #d4d4d4 !important;
}

.mini-contact-icon {
    width: 16px;
    height: 16px;
    stroke: #f59e0b;
    flex-shrink: 0;
}

.mini-contact-item a {
    color: #d4d4d4 !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.mini-contact-item a:hover {
    color: #ffffff !important;
}

.mini-social-boxes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-social-box {
    width: 36px;
    height: 36px;
    border: 1px solid #d97706;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mini-social-box svg {
    width: 17px;
    height: 17px;
    stroke: #ffffff;
}

.mini-social-box:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
}

@media (max-width: 850px) {
    .mini-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================================================================
   MASTER MOBILE & TABLET RESPONSIVENESS OVERRIDES
   =========================================================================== */

html {
    overflow-x: clip !important;
}

body {
    overflow-x: clip !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.hero-sticky, .book-sticky {
    position: relative;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 10;
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 8px;
    color: var(--text-color, #0f172a);
    z-index: 100001;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line.top {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger-line.mid {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line.bot {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 99995;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 90px 28px 40px;
    box-sizing: border-box;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-drawer-item {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-decoration: none !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-drawer-item:hover, .mobile-drawer-item.mobile-drawer-highlight {
    color: #d97706 !important;
    transform: translateX(6px);
}

.mobile-drawer-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
}

.mobile-drawer-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 50px;
    background: #0f172a;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

/* Tablet & Mobile Responsive Overrides (<1024px) */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: inline-flex !important;
    }

    .main-header {
        padding: 12px 20px !important;
    }

    .main-header .header-nav-link {
        display: none !important;
    }

    .main-header .header-nav-link.search-btn {
        display: inline-flex !important;
        margin-left: 0 !important;
    }

    .floating-glass-nav {
        padding: 8px 16px !important;
        justify-content: space-between !important;
    }

    .floating-glass-nav .glass-nav-links {
        display: none !important;
    }

    .hero-split-right {
        height: auto !important;
        padding-top: 4vh !important;
        padding-bottom: 4vh !important;
    }

    .hero-editorial-title {
        font-size: clamp(2.4rem, 5.5vw, 4rem) !important;
    }

    .book-sticky {
        padding: 75px 20px 25px !important;
    }

    .book {
        aspect-ratio: 1.65 / 1;
        max-height: calc(100vh - 240px);
    }

    .faq-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    .faq-question {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 20px !important;
        box-sizing: border-box !important;
        position: static !important;
    }

    .faq-icon {
        position: static !important;
        transform: none !important;
        margin-left: 12px !important;
        flex-shrink: 0 !important;
        right: auto !important;
        top: auto !important;
    }
}

/* Mobile & Small Tablet Overrides (<768px) */
@media (max-width: 768px) {
    .glass-nav-brand {
        gap: 6px !important;
    }

    .glass-nav-logo {
        height: 32px !important;
        padding: 4px 8px !important;
    }

    .hero-container {
        height: auto !important;
        min-height: 100vh !important;
    }

    .hero-bg-title {
        font-size: clamp(3.2rem, 14vw, 6.5rem) !important;
    }

    .hero-text-overlay {
        grid-template-columns: 1fr !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    .hero-split-left {
        height: 38vh !important;
    }

    .hero-split-right {
        height: 52vh !important;
        padding-top: 0 !important;
        justify-content: space-around !important;
    }

    .hero-editorial-title {
        font-size: clamp(2rem, 8vw, 3.2rem) !important;
        letter-spacing: -0.02em !important;
    }

    .hero-metadata-table {
        margin: 8px 0 !important;
    }

    .meta-row {
        flex-direction: column !important;
        gap: 4px !important;
    }

    .meta-label {
        font-size: 0.75rem !important;
    }

    .meta-value {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
    }

    .ai-showcase-section {
        padding: 50px 16px !important;
    }

    .ai-showcase-main-title {
        font-size: clamp(1.6rem, 5vw, 2.3rem) !important;
    }

    .ai-showcase-subhead {
        font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
    }

    .ai-showcase-desc {
        font-size: 0.92rem !important;
        margin-bottom: 20px !important;
    }

    .visusample-card-wrap {
        border-radius: 14px !important;
    }

    .visusample-img {
        max-height: 45vh !important;
        object-fit: cover !important;
    }

    .faq-section {
        padding: 50px 16px !important;
    }

    .faq-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    }

    .faq-item {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-answer {
        padding: 0 20px 20px 20px !important;
        font-size: 0.88rem !important;
        box-sizing: border-box !important;
    }

    .mini-footer {
        padding: 40px 20px 30px !important;
    }

    .mini-footer-container {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center !important;
    }

    .mini-brand-header {
        align-items: center !important;
    }

    .mini-nav-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px 18px !important;
    }

    .mini-contact-info {
        align-items: center !important;
    }

    .ai-showcase-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 10px auto 0 !important;
    }

    .mini-social-boxes {
        justify-content: center !important;
    }
}

/* Phones (<599px) Overrides — 3D Animations Intact */
@media (max-width: 599px) {
    .hero-editorial-title {
        font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
    }

    .ai-showcase-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .ai-showcase-cta {
        justify-content: center !important;
    }

    /* 3D Book Page-Turning Animation on Phone */
    .book-section {
        height: auto !important;
        min-height: 100vh !important;
    }

    .book-sticky {
        padding: 70px 14px 20px !important;
        gap: 8px !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .book-section-title {
        font-size: clamp(1.4rem, 5.2vw, 1.9rem) !important;
    }

    .book-section-subtitle {
        font-size: clamp(0.75rem, 3.2vw, 0.95rem) !important;
    }

    .book-scene {
        perspective: 1200px !important;
        perspective-origin: 50% 50% !important;
        width: 100% !important;
        margin: 8px auto !important;
        flex: 1 1 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .book {
        aspect-ratio: 1.45 / 1 !important;
        width: 100% !important;
        max-height: calc(100vh - 240px) !important;
        min-height: 270px !important;
        transform-style: preserve-3d !important;
        position: relative !important;
        background: #ffffff !important;
        border-radius: 10px !important;
        display: block !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1) !important;
    }

    .book-spine {
        display: block !important;
        left: 50% !important;
        width: 14px !important;
    }

    .book-page-static {
        position: absolute !important;
        top: 0 !important;
        width: 50% !important;
        height: 100% !important;
        display: flex !important;
    }

    .book-page-static.page-left {
        left: 0 !important;
        border-radius: 10px 0 0 10px !important;
    }

    .book-page-static.page-right {
        left: 50% !important;
        border-radius: 0 10px 10px 0 !important;
    }

    .book-turn {
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        width: 50% !important;
        height: 100% !important;
        transform-origin: left center !important;
        transform-style: preserve-3d !important;
        border-radius: 0 10px 10px 0 !important;
    }

    .turn-face {
        position: absolute !important;
        inset: 0 !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        display: flex !important;
    }

    .turn-front {
        border-radius: 0 10px 10px 0 !important;
    }

    .turn-back {
        transform: rotateY(180deg) !important;
        border-radius: 10px 0 0 10px !important;
    }

    .page-inner {
        padding: 10px 8px !important;
        gap: 4px !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .page-inner-right {
        padding: 14px 10px !important;
        gap: 6px !important;
    }

    .page-watermark-num {
        font-size: 1.6rem !important;
        font-weight: 800 !important;
        top: 6px !important;
        left: 8px !important;
        z-index: 0 !important;
        color: rgba(0, 0, 0, 0.08) !important;
        text-shadow: none !important;
    }

    .page-left-title {
        display: none !important;
    }

    .page-img-wrap {
        width: 100% !important;
        height: 100% !important;
        flex: 1 !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .page-step-img {
        width: 100% !important;
        height: auto !important;
        max-height: 185px !important;
        object-fit: contain !important;
        border-radius: 6px !important;
        transform: scale(1.04) !important;
        filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.1)) !important;
    }

    .page-desc-label {
        font-size: 0.55rem !important;
        letter-spacing: 0.1em !important;
    }

    .page-desc-heading {
        font-size: clamp(0.78rem, 2.8vw, 0.98rem) !important;
        line-height: 1.25 !important;
    }

    .page-desc-text {
        font-size: clamp(0.65rem, 2.3vw, 0.78rem) !important;
        line-height: 1.45 !important;
    }

    .page-accent-line {
        width: 24px !important;
        height: 2px !important;
    }

    .book-actions {
        margin-top: -8px !important;
        margin-bottom: 8px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        z-index: 30 !important;
    }

    .book-actions .glass-action-btn {
        padding: 10px 22px !important;
        font-size: 0.86rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    }

    /* Visualizer Video Section Phone Overrides */
    .visualizer-video-section {
        padding: 40px 16px 20px !important;
        background: #ffffff !important;
    }

    .visualizer-video-section .steps-video-wrap {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12) !important;
    }

    .steps-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Meet Our Team Phone Overrides */
    .about-page-2 {
        padding: 40px 14px 60px !important;
        min-height: auto !important;
    }

    .about-team-title {
        font-size: clamp(1.8rem, 5.5vw, 2.4rem) !important;
        margin-bottom: 24px !important;
    }

    .about-team-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        align-items: start !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .team-card {
        height: auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .team-card-image {
        width: 100% !important;
        height: 185px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12) !important;
        filter: none !important;
        transform: none !important;
    }

    .team-card:hover .team-card-image {
        transform: none !important;
        filter: none !important;
    }

    .team-card-overlay {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 12px 2px 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .team-card-overlay .team-name {
        color: #0f172a !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        margin-bottom: 2px !important;
    }

    .team-card-overlay .team-role {
        color: var(--accent-gold, #c5a880) !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        margin-bottom: 8px !important;
    }

    .team-card-overlay .team-bio {
        display: block !important;
        color: #475569 !important;
        font-size: 0.76rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .team-linkedin-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: #0077b5 !important;
        border: none !important;
        box-shadow: 0 4px 14px rgba(0, 119, 181, 0.35) !important;
        margin-top: 4px !important;
    }

    .team-linkedin-icon {
        width: 18px !important;
        height: 18px !important;
        fill: #ffffff !important;
    }

    .viz-modal {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .viz-left {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: 360px !important;
    }

    .viz-right {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .viz-mat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 12px !important;
    }

    .viz-close {
        top: 12px !important;
        right: 12px !important;
        width: 38px !important;
        height: 38px !important;
    }
}

/* ---- Glassmorphic Coming Soon Toast ---- */
.coming-soon-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: none;
    pointer-events: none;
    width: 90%;
    max-width: 420px;
}

.coming-soon-toast .toast-content {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(59, 130, 246, 0.25);
}

.coming-soon-toast .toast-sparkle {
    font-size: 1.3rem;
    animation: sparkleSpin 2s infinite ease-in-out;
}

@keyframes sparkleSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

.coming-soon-toast .toast-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.coming-soon-toast .toast-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.coming-soon-toast .toast-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    color: #94a3b8;
}



