/* MaisonRoboto - Main Stylesheet */
/* Luxury Fashion for Humanoid Robots */
/* Theme: Futuristic iRobot / Ghost in the Shell */

:root {
    /* === Chrome Sci-Fi Palette === */
    --chrome-purple: #a855f7;
    --chrome-cyan: #06b6d4;
    --chrome-pink: #ec4899;
    --chrome-gold: #d4af37;

    /* === Neutrals === */
    --void-black: #030303;
    --obsidian: #0a0a0a;
    --graphite: #1a1a1a;
    --charcoal: #262626;
    --platinum: #e5e5e5;
    --silver: #a3a3a3;

    /* === Gradients === */
    --gradient-chrome: linear-gradient(135deg, var(--chrome-purple) 0%, var(--chrome-cyan) 50%, var(--chrome-pink) 100%);
    --gradient-dark: linear-gradient(180deg, var(--void-black) 0%, var(--obsidian) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);

    /* === Typography === */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-ui: 'Rajdhani', sans-serif;

    /* === Spacing === */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* === Transitions === */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--void-black);
    color: var(--platinum);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Dedicated fixed background div - avoids Safari/iOS background-attachment:fixed bug */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../images/bg-night.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--void-black);
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* Atelier Blueprint Grid Background */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(168,85,247,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   Holographic Thread Overlay
   Animated diagonal thread lines
   ======================================== */
.thread-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.thread-overlay::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 300%;
    background: linear-gradient(180deg, transparent, rgba(168,85,247,0.15), transparent);
    transform: rotate(15deg);
    animation: threadFloat 12s linear infinite;
}

.thread-overlay::after {
    content: '';
    position: absolute;
    top: -100%;
    right: 20%;
    width: 1px;
    height: 300%;
    background: linear-gradient(180deg, transparent, rgba(168,85,247,0.1), transparent);
    transform: rotate(-10deg);
    animation: threadFloat 16s linear infinite reverse;
}

@keyframes threadFloat {
    0% { transform: translateY(-33%) rotate(15deg); }
    100% { transform: translateY(33%) rotate(15deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-medium);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-variant: small-caps;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--chrome-purple);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--platinum);
}

.section-intro {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--silver);
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Navigation
   Chrome sci-fi nav with purple accents
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3,3,3,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168,85,247,0.15);
    transition: all var(--transition-medium);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent);
}

.nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(3,3,3,0.98);
}

.nav-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(168,85,247,0.3));
    transition: transform var(--transition-medium);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--chrome-purple);
    transition: width var(--transition-medium);
}

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

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

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--void-black);
    border: 1px solid rgba(168,85,247,0.15);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    margin-top: 0.5rem;
}

.nav-menu > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
    color: var(--platinum);
    background: rgba(168,85,247,0.08);
    padding-left: 2rem;
}

/* ========================================
   CTA Buttons
   Chrome gradient primary, purple outlines
   ======================================== */
.btn {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: inline-block;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Button shimmer animation */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn:hover::after {
    left: 120%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--chrome-purple), #7c3aed);
    color: var(--void-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(168,85,247,0.25);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--chrome-purple);
    color: var(--platinum);
}

.btn-secondary:hover {
    border-color: var(--chrome-purple);
    background: rgba(168,85,247,0.08);
    color: var(--chrome-purple);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--chrome-purple);
    color: var(--platinum);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--chrome-purple), #7c3aed);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--void-black);
    border-color: transparent;
}

.nav-cta {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--chrome-purple);
    color: var(--platinum);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--chrome-purple), #7c3aed);
    transition: left var(--transition-medium);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    border-color: transparent;
    color: var(--void-black);
}

/* ========================================
   Hero Section
   Stitch-line border, chrome gradient, ruler
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    /* Background now handled by body - hero is transparent */
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(3,3,3,0.3) 0%,
        rgba(3,3,3,0.5) 30%,
        rgba(3,3,3,0.7) 60%,
        rgba(3,3,3,0.95) 100%),
        linear-gradient(135deg, rgba(168,85,247,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem;
    border: 1px dashed rgba(168,85,247,0.2);
    background: rgba(3,3,3,0.3);
}

/* Stitch corners for hero content */
.hero-content::before,
.hero-content::after {
    content: '+';
    position: absolute;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(168,85,247,0.4);
    line-height: 1;
}

.hero-content::before {
    top: -0.4rem;
    left: -0.4rem;
}

.hero-content::after {
    bottom: -0.4rem;
    right: -0.4rem;
}

/* Measuring tape ruler on the side */
.hero .measuring-ruler {
    position: absolute;
    right: 2rem;
    top: 15%;
    bottom: 15%;
    width: 20px;
    z-index: 2;
    opacity: 0.3;
}

.measuring-ruler::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(180deg,
        var(--chrome-purple) 0px,
        var(--chrome-purple) 1px,
        transparent 1px,
        transparent 8px);
}

.measuring-ruler::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: repeating-linear-gradient(180deg,
        var(--chrome-purple) 0px,
        var(--chrome-purple) 1px,
        transparent 1px,
        transparent 40px);
}

.hero-logo {
    width: min(500px, 70vw);
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(168,85,247,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.4em;
    color: var(--chrome-purple);
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--chrome-purple), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* Page Hero (smaller for inner pages) */
.page-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.06) 0%, transparent 60%),
                var(--void-black);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(168,85,247,0.02) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(168,85,247,0.02) 50%, transparent 50.5%);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

/* Sections */
section {
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.section-dark {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(168, 85, 247, 0.06);
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.section-gradient {
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.6) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(3, 3, 3, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ========================================
   Cards
   Fabric swatch feel with chrome borders
   ======================================== */
.card {
    background: var(--graphite);
    border: 1px solid rgba(168,85,247,0.12);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    /* Fabric weave texture */
    background-image:
        linear-gradient(45deg, rgba(168,85,247,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(168,85,247,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(168,85,247,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(168,85,247,0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-color: var(--graphite);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--chrome-purple), var(--chrome-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(168,85,247,0.3);
    background-position: 5px 5px, 5px 15px, 15px -5px, -5px 5px;
}

.card:hover::before {
    transform: scaleX(1);
}

/* Pin indicator on hover */
.card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: var(--chrome-purple);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
    box-shadow: 0 0 6px rgba(168,85,247,0.4);
}

.card:hover::after {
    opacity: 1;
}

.card-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--platinum);
}

.card p {
    color: var(--silver);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-meta {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--chrome-purple);
}

/* ========================================
   Robot Cards
   Chrome swatch hover effect
   ======================================== */
.robot-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(168,85,247,0.1);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.robot-card:hover {
    border-color: rgba(168,85,247,0.4);
    background: rgba(168,85,247,0.04);
    box-shadow: 0 20px 60px rgba(168,85,247,0.08), 0 0 1px rgba(168,85,247,0.3);
}

.robot-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--chrome-purple), var(--chrome-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--void-black);
}

.robot-card h4 {
    margin-bottom: 0.5rem;
    color: var(--platinum);
}

.robot-card .brand {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chrome-purple);
    margin-bottom: 1rem;
    display: block;
}

/* Feature Blocks */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-block:nth-child(even) {
    direction: rtl;
}

.feature-block:nth-child(even) > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-visual {
    background: var(--gradient-subtle);
    border: 1px solid rgba(168,85,247,0.15);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--chrome-purple), var(--chrome-pink));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

/* Process Timeline */
.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--chrome-purple), var(--chrome-pink));
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-number {
    position: absolute;
    left: -80px;
    width: 60px;
    height: 60px;
    background: var(--graphite);
    border: 1px solid var(--chrome-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--chrome-purple);
}

.timeline-step h3 {
    margin-bottom: 0.5rem;
    color: var(--platinum);
}

.timeline-step p {
    color: var(--silver);
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(168,85,247,0.1);
}

.specs-table th {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chrome-purple);
    background: var(--graphite);
}

.specs-table td {
    font-size: 1rem;
    color: var(--silver);
}

.specs-table tr:hover td {
    background: rgba(168,85,247,0.04);
}

/* Quote/Testimonial */
.quote-block {
    text-align: center;
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.quote-block blockquote {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--platinum);
    position: relative;
    padding: 2rem 0;
}

.quote-block blockquote::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: var(--font-body);
    background: var(--gradient-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.quote-attribution {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 1.5rem;
}

/* Contact Box */
.contact-box {
    background: var(--graphite);
    border: 1px solid rgba(168,85,247,0.2);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-box h3 {
    margin-bottom: 1rem;
}

.contact-email {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--chrome-purple);
    transition: color var(--transition-medium);
}

.contact-email:hover {
    color: var(--chrome-pink);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--silver);
    margin-top: 1.5rem;
}

/* ========================================
   Footer as Atelier Workbench
   Textured background, purple accents
   (Enhanced styles at end of file)
   ======================================== */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(168,85,247,0.2));
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--silver);
}

.footer-atelier-locations {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chrome-purple);
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links h4 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--platinum);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--silver);
}

.footer-links a:hover {
    color: var(--chrome-purple);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(168,85,247,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--silver);
}

.footer-location {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--chrome-purple);
}

/* Scissors icon before MaisonRoboto in footer */
.footer-brand-name {
    position: relative;
}

.footer-brand-name::before {
    content: '\2702';
    margin-right: 0.5em;
    color: var(--chrome-purple);
    font-size: 1.1em;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all var(--transition-slow);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all var(--transition-slow);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--platinum);
    transition: all var(--transition-medium);
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .nav {
        padding: 1rem 2rem;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-block:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--void-black);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
        z-index: 999;
        border-top: 1px solid rgba(168,85,247,0.2);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(168,85,247,0.1);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 1rem 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-menu > li:hover .nav-dropdown {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .currency-toggle {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        left: -60px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .measuring-ruler {
        display: none;
    }
}

/* Print Styles */
@media print {
    .nav, .footer, .scroll-indicator, .thread-overlay {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* ========================================
   LOADING ANIMATION
   Couture needle-and-thread spinner
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--void-black);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-needle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

/* The needle */
.loader-needle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--silver), var(--platinum));
    transform-origin: left center;
    animation: needleSew 2s ease-in-out infinite;
    border-radius: 0 2px 2px 0;
}

/* The needle eye / thread */
.loader-needle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-top-color: var(--chrome-purple);
    border-right-color: var(--chrome-pink);
    border-radius: 50%;
    animation: threadSpin 1.5s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes needleSew {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(45deg) translateX(5px); }
    50% { transform: rotate(0deg) translateX(0); }
    75% { transform: rotate(-45deg) translateX(5px); }
}

@keyframes threadSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.loader-brand {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--platinum);
    opacity: 0;
    animation: brandReveal 1s ease 0.5s forwards;
}

.loader-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.3em;
    color: var(--chrome-purple);
    opacity: 0;
    animation: brandReveal 1s ease 0.8s forwards;
    margin-top: 0.5rem;
}

@keyframes brandReveal {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Gallery Lightbox CSS
   Full-screen image viewer
   ======================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border: 1px solid rgba(168,85,247,0.2);
}

.lightbox-caption {
    text-align: center;
    padding: 1rem 0;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid rgba(168,85,247,0.3);
    color: var(--platinum);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    z-index: 10001;
    font-family: var(--font-ui);
}

.lightbox-close:hover {
    border-color: var(--chrome-purple);
    background: rgba(168,85,247,0.1);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    background: none;
    border: 1px solid rgba(168,85,247,0.2);
    color: var(--platinum);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    z-index: 10001;
    font-family: var(--font-ui);
}

.lightbox-arrow:hover {
    border-color: var(--chrome-purple);
    background: rgba(168,85,247,0.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--silver);
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 40px;
        height: 60px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   Section Dividers
   Stitch-line pattern dividers
   ======================================== */
.thread-divider,
.section-divider {
    position: relative;
    height: 20px;
    max-width: 600px;
    margin: 4rem auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thread-divider::before,
.section-divider::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: repeating-linear-gradient(90deg,
        rgba(168,85,247,0.4) 0px,
        rgba(168,85,247,0.4) 8px,
        transparent 8px,
        transparent 16px);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s ease;
}

.thread-divider.visible::before,
.section-divider.visible::before {
    transform: scaleX(1);
}

/* Decorative center marker */
.thread-divider::after,
.section-divider::after {
    content: '\2666';
    position: relative;
    z-index: 1;
    font-size: 0.6rem;
    color: var(--chrome-purple);
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
    background: var(--void-black);
    padding: 0 0.5rem;
}

.thread-divider.visible::after,
.section-divider.visible::after {
    opacity: 0.7;
}

/* ========================================
   Measuring Tape Progress
   Scroll progress with tick marks
   ======================================== */
.measuring-tape {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--chrome-purple), var(--chrome-pink));
    z-index: 9998;
    transition: width 0.1s linear;
}

.measuring-tape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
        transparent 0px,
        transparent 18px,
        rgba(255,255,255,0.3) 18px,
        rgba(255,255,255,0.3) 20px);
}

.measuring-tape::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 7px;
    height: 7px;
    background: var(--chrome-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--chrome-purple);
}

/* ========================================
   Social Proof Ticker
   CSS-only infinite scroll marquee
   ======================================== */
.social-proof-ticker {
    background: var(--obsidian);
    border-top: 1px solid rgba(168,85,247,0.08);
    border-bottom: 1px solid rgba(168,85,247,0.08);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 3rem;
    white-space: nowrap;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
}

.ticker-item::before {
    content: '\2666';
    font-size: 0.5rem;
    color: var(--chrome-purple);
    flex-shrink: 0;
    opacity: 0.6;
}

.ticker-label {
    color: var(--chrome-purple);
    margin-right: 0.3rem;
}

/* ========================================
   Newsletter / Waitlist Capture
   "Join the Atelier" chrome form
   ======================================== */
.newsletter-section {
    background: linear-gradient(180deg, var(--void-black) 0%, rgba(168,85,247,0.04) 50%, var(--void-black) 100%);
    padding: 5rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(168,85,247,0.08);
}

.newsletter-inner {
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-section .section-label {
    display: block;
    margin-bottom: 1rem;
}

.newsletter-section h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    color: var(--platinum);
}

.newsletter-section p {
    color: var(--silver);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(168,85,247,0.3);
    transition: border-color var(--transition-medium);
}

.newsletter-form:focus-within {
    border-color: var(--chrome-purple);
    box-shadow: 0 0 30px rgba(168,85,247,0.1);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(3, 3, 3, 0.8);
    border: none;
    color: var(--platinum);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.05em;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--silver);
    opacity: 0.5;
    font-style: italic;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--chrome-purple), #7c3aed);
    border: none;
    color: var(--void-black);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.newsletter-btn:hover {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

.newsletter-note {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--silver);
    opacity: 0.5;
    margin-top: 1rem;
}

.newsletter-success {
    display: none;
    padding: 1.5rem;
    border: 1px solid rgba(168,85,247,0.3);
    background: rgba(168,85,247,0.05);
    color: var(--chrome-purple);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.newsletter-success.show {
    display: block;
    animation: lightboxFadeIn 0.4s ease;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
        border: none;
    }
    .newsletter-input {
        border: 1px solid rgba(168,85,247,0.3);
        border-bottom: none;
    }
    .newsletter-btn {
        padding: 1rem;
    }
    .newsletter-section {
        padding: 4rem 2rem;
    }
}

/* ========================================
   Multi-Currency Toggle
   EUR/USD/AED/SGD selector
   ======================================== */
.currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(168,85,247,0.2);
    background: rgba(3, 3, 3, 0.6);
    margin-left: 1rem;
}

.currency-btn {
    padding: 0.4rem 0.8rem;
    background: none;
    border: none;
    color: var(--silver);
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.currency-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(168,85,247,0.15);
}

.currency-btn:hover {
    color: var(--platinum);
}

.currency-btn.active {
    background: linear-gradient(135deg, var(--chrome-purple), #7c3aed);
    color: var(--void-black);
    font-weight: 600;
}

.currency-btn.active::after {
    display: none;
}

@media (max-width: 768px) {
    .currency-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* ========================================
   Counter Animation
   Animated number styles
   ======================================== */
.counter-stat {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.counter-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 0.5rem;
}

/* Gallery item cursor hint */
.gallery-item {
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(229, 229, 229, 0.4);
    border-radius: 50%;
    background: rgba(3, 3, 3, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e5e5' stroke-width='2'%3E%3Cpath d='M15 3h6v6M14 10l6.1-6.1M9 21H3v-6M10 14l-6.1 6.1'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

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

/* ========================================
   Atelier Philosophy Section
   Paris x Robot fusion pillars
   ======================================== */
.atelier-philosophy {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.philosophy-pillar {
    padding: 2.5rem;
    border: 1px solid rgba(168,85,247,0.12);
    background: rgba(26, 26, 26, 0.4);
    position: relative;
    transition: all var(--transition-medium);
}

.philosophy-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--chrome-purple), var(--chrome-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.philosophy-pillar:hover {
    border-color: rgba(168,85,247,0.3);
    transform: translateY(-4px);
}

.philosophy-pillar:hover::before {
    transform: scaleX(1);
}

.philosophy-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-chrome);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.philosophy-pillar h3 {
    color: var(--chrome-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.philosophy-pillar p {
    color: var(--silver);
    font-size: 1rem;
}

/* ========================================
   Stitch animation on scroll
   Sections get stitch border on enter
   ======================================== */
.stitch-animate {
    position: relative;
}

.stitch-animate::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px dashed transparent;
    transition: border-color 1s ease;
}

.stitch-animate.stitched::after {
    border-color: rgba(168,85,247,0.12);
}

/* ========================================
   Fabric shimmer effect
   Diagonal light sweep on hover
   ======================================== */
.shimmer-hover {
    position: relative;
    overflow: hidden;
}

.shimmer-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(168,85,247,0.08) 40%,
        rgba(229,229,229,0.12) 50%,
        rgba(168,85,247,0.08) 60%,
        transparent 80%
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.shimmer-hover:hover::before {
    left: 140%;
}

/* ========================================
   Custom Cursor
   Needle/pin on interactive elements
   ======================================== */
@media (pointer: fine) {
    .custom-cursor-active a,
    .custom-cursor-active button,
    .custom-cursor-active .card,
    .custom-cursor-active .robot-card,
    .custom-cursor-active .btn,
    .custom-cursor-active .gallery-item {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='4' r='3' fill='%23a855f7'/%3E%3Cline x1='12' y1='7' x2='12' y2='22' stroke='%23a855f7' stroke-width='1.5'/%3E%3C/svg%3E") 12 4, pointer;
    }
}

/* ========================================
   Collection card hover (fabric swatch)
   ======================================== */
.collection-card:hover,
.robot-card:hover {
    border-color: rgba(168,85,247,0.4);
    box-shadow: 0 20px 60px rgba(168,85,247,0.08), 0 0 1px rgba(168,85,247,0.3);
}

/* ========================================
   Fashion Runway Horizontal Scroll
   ======================================== */
.runway-section { padding: 80px 0; overflow: hidden; }
.runway-title { text-align: center; margin-bottom: 40px; }
.runway-track {
    display: flex;
    gap: 30px;
    padding: 20px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--chrome-purple) transparent;
    -webkit-overflow-scrolling: touch;
}
.runway-track::-webkit-scrollbar { height: 4px; }
.runway-track::-webkit-scrollbar-track { background: transparent; }
.runway-track::-webkit-scrollbar-thumb { background: var(--chrome-purple); border-radius: 4px; }
.runway-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border: 1px solid rgba(168,85,247,0.15);
    border-radius: 8px;
    padding: 30px;
    background: rgba(26,26,26,0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.runway-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-5px); }
.runway-card h3 { font-family: 'Orbitron', sans-serif; font-size: 0.9rem; color: var(--chrome-purple); margin-bottom: 10px; }
.runway-card p { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--silver); line-height: 1.6; }

/* ========================================
   Dynamic Pricing Card Flip
   ======================================== */
.pricing-card { perspective: 1000px; }
.pricing-card-inner {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.pricing-card:hover .pricing-card-inner { transform: rotateY(180deg); }
.pricing-card-front, .pricing-card-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.pricing-card-back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(26,26,26,0.95);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 12px;
}
.pricing-card-back h4 { font-family: 'Orbitron', sans-serif; color: var(--chrome-purple); font-size: 0.8rem; margin-bottom: 15px; }
.pricing-card-back ul { list-style: none; padding: 0; }
.pricing-card-back li { font-family: 'Cormorant Garamond', serif; color: var(--silver); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
.pricing-card-back li::before { content: '+ '; color: var(--chrome-purple); }
@media (max-width: 768px) {
    .pricing-card:hover .pricing-card-inner { transform: none; }
    .pricing-card-back { position: relative; transform: none; margin-top: 20px; }
}

/* ========================================
   Material Science Tooltips
   ======================================== */
.material-tip {
    position: relative;
    border-bottom: 1px dotted var(--chrome-purple);
    cursor: help;
    color: var(--chrome-purple);
}
.material-tip::after {
    content: attr(data-spec);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(3,3,3,0.98);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    color: var(--platinum);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}
.material-tip:hover::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(-8px); }

/* ========================================
   Atelier Workbench Footer Enhancement
   Richer texture, chrome glow, and craft feel
   ======================================== */
.footer {
    background: var(--void-black);
    border-top: 1px solid rgba(168,85,247,0.15);
    padding: var(--spacing-lg);
    position: relative;
    /* Layered workbench texture: wood grain + leather + warm glow */
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 39px,
            rgba(168,85,247,0.02) 39px,
            rgba(168,85,247,0.02) 40px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 39px,
            rgba(168,85,247,0.015) 39px,
            rgba(168,85,247,0.015) 40px
        ),
        radial-gradient(ellipse at 15% 80%, rgba(168,85,247,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(236,72,153,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.05) 0%, transparent 40%);
    background-color: var(--void-black);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(168,85,247,0.15) 15%,
        var(--chrome-purple) 50%,
        rgba(168,85,247,0.15) 85%,
        transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(168,85,247,0.02) 0%, transparent 100%);
    pointer-events: none;
}

/* ========================================
   Commission Progress Tracker
   Needle-and-thread connector between
   timeline steps
   ======================================== */
.needle-thread-connector {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 1;
}
.needle-thread-connector .thread-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--chrome-purple) 0px,
        var(--chrome-purple) 6px,
        transparent 6px,
        transparent 12px
    );
    opacity: 0.4;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0s;
}
.needle-thread-connector .thread-line.thread-visible {
    clip-path: inset(0 0 0% 0);
    transition: clip-path 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.needle-thread-connector .needle {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.needle-thread-connector .needle.needle-animate {
    opacity: 1;
    animation: needleTravel 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.needle-thread-connector .needle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 10px;
    background: linear-gradient(to bottom, var(--platinum), var(--silver));
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 6px rgba(168,85,247,0.6);
}
.needle-thread-connector .needle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    width: 6px;
    height: 6px;
    border: 1.5px solid var(--chrome-purple);
    border-radius: 50%;
    background: transparent;
}
@keyframes needleTravel {
    0% { top: 0; }
    100% { top: calc(100% - 14px); }
}

/* ========================================
   Robot Platform Selector
   Interactive platform compatibility tool
   ======================================== */
.platform-selector {
    padding: 80px 0;
    text-align: center;
}

.platform-selector-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.platform-btn {
    padding: 15px 25px;
    background: rgba(26,26,26,0.6);
    border: 1px solid rgba(168,85,247,0.15);
    border-radius: 8px;
    color: var(--silver);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-btn:hover,
.platform-btn.active {
    background: rgba(168,85,247,0.1);
    border-color: var(--chrome-purple);
    color: var(--chrome-purple);
}

.platform-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.platform-result-card {
    padding: 25px;
    background: rgba(26,26,26,0.4);
    border: 1px solid rgba(168,85,247,0.1);
    border-radius: 8px;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.4s ease forwards;
}

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

.platform-result-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--chrome-purple);
    margin-bottom: 8px;
}

.platform-result-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--silver);
}

.platform-result-card .compatibility {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    color: var(--chrome-cyan, #06b6d4);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .platform-selector {
        padding: 60px 2rem;
    }
    .platform-selector-grid {
        gap: 10px;
    }
    .platform-btn {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
}

/* ========================================
   Lookbook Page Transitions
   Smooth overlay between page navigations
   ======================================== */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--void-black);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--chrome-purple), transparent);
    animation: transitionLine 0.8s ease infinite;
}

@keyframes transitionLine {
    0%, 100% {
        width: 60px;
        opacity: 0.5;
    }
    50% {
        width: 120px;
        opacity: 1;
    }
}

/* ========================================
   Paris Skyline Divider
   SVG-based section divider with Eiffel
   Tower, Haussmann buildings, and robot
   ======================================== */
.paris-divider {
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    margin: 40px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 60' fill='%23a855f7'%3E%3Crect x='80' y='25' width='50' height='35'/%3E%3Crect x='82' y='28' width='8' height='10' fill='%23030303'/%3E%3Crect x='94' y='28' width='8' height='10' fill='%23030303'/%3E%3Crect x='106' y='28' width='8' height='10' fill='%23030303'/%3E%3Crect x='82' y='42' width='8' height='10' fill='%23030303'/%3E%3Crect x='94' y='42' width='8' height='10' fill='%23030303'/%3E%3Crect x='106' y='42' width='8' height='10' fill='%23030303'/%3E%3Cpolygon points='78,25 135,25 130,18 83,18'/%3E%3Crect x='90' y='12' width='4' height='6'/%3E%3Crect x='140' y='30' width='40' height='30'/%3E%3Crect x='143' y='33' width='7' height='8' fill='%23030303'/%3E%3Crect x='154' y='33' width='7' height='8' fill='%23030303'/%3E%3Crect x='165' y='33' width='7' height='8' fill='%23030303'/%3E%3Crect x='143' y='45' width='7' height='8' fill='%23030303'/%3E%3Crect x='154' y='45' width='7' height='8' fill='%23030303'/%3E%3Crect x='165' y='45' width='7' height='8' fill='%23030303'/%3E%3Cpolygon points='138,30 182,30 180,24 140,24'/%3E%3Crect x='190' y='20' width='25' height='40'/%3E%3Crect x='193' y='23' width='6' height='7' fill='%23030303'/%3E%3Crect x='203' y='23' width='6' height='7' fill='%23030303'/%3E%3Crect x='193' y='34' width='6' height='7' fill='%23030303'/%3E%3Crect x='203' y='34' width='6' height='7' fill='%23030303'/%3E%3Crect x='193' y='45' width='6' height='7' fill='%23030303'/%3E%3Crect x='203' y='45' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='188,20 217,20 215,15 190,15'/%3E%3Crect x='225' y='28' width='45' height='32'/%3E%3Crect x='228' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='239' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='250' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='261' y='32' width='6' height='7' fill='%23030303'/%3E%3Cellipse cx='247' cy='28' rx='22' ry='10'/%3E%3Cpolygon points='400,2 397,2 380,60 385,60'/%3E%3Cpolygon points='400,2 403,2 420,60 415,60'/%3E%3Crect x='384' y='35' width='32' height='3'/%3E%3Crect x='388' y='20' width='24' height='2'/%3E%3Crect x='394' y='2' width='12' height='2'/%3E%3Crect x='460' y='28' width='45' height='32'/%3E%3Crect x='463' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='474' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='485' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='496' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='463' y='44' width='6' height='7' fill='%23030303'/%3E%3Crect x='474' y='44' width='6' height='7' fill='%23030303'/%3E%3Crect x='485' y='44' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='458,28 507,28 505,22 460,22'/%3E%3Crect x='515' y='18' width='30' height='42'/%3E%3Crect x='518' y='22' width='6' height='7' fill='%23030303'/%3E%3Crect x='527' y='22' width='6' height='7' fill='%23030303'/%3E%3Crect x='536' y='22' width='6' height='7' fill='%23030303'/%3E%3Crect x='518' y='33' width='6' height='7' fill='%23030303'/%3E%3Crect x='527' y='33' width='6' height='7' fill='%23030303'/%3E%3Crect x='536' y='33' width='6' height='7' fill='%23030303'/%3E%3Crect x='518' y='44' width='6' height='7' fill='%23030303'/%3E%3Crect x='527' y='44' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='513,18 547,18 545,12 515,12'/%3E%3Crect x='555' y='35' width='35' height='25'/%3E%3Crect x='558' y='38' width='6' height='7' fill='%23030303'/%3E%3Crect x='568' y='38' width='6' height='7' fill='%23030303'/%3E%3Crect x='578' y='38' width='6' height='7' fill='%23030303'/%3E%3Crect x='558' y='49' width='6' height='7' fill='%23030303'/%3E%3Crect x='568' y='49' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='553,35 592,35 590,30 555,30'/%3E%3Crect x='600' y='25' width='50' height='35'/%3E%3Crect x='603' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='614' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='625' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='636' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='603' y='42' width='7' height='8' fill='%23030303'/%3E%3Crect x='614' y='42' width='7' height='8' fill='%23030303'/%3E%3Crect x='625' y='42' width='7' height='8' fill='%23030303'/%3E%3Cpolygon points='598,25 652,25 648,18 602,18'/%3E%3Ccircle cx='680' cy='44' r='4'/%3E%3Crect x='678' y='48' width='4' height='7'/%3E%3Cline x1='678' y1='50' x2='674' y2='53' stroke='%23a855f7' stroke-width='1.5'/%3E%3Cline x1='682' y1='50' x2='686' y2='53' stroke='%23a855f7' stroke-width='1.5'/%3E%3Cline x1='679' y1='55' x2='676' y2='60' stroke='%23a855f7' stroke-width='1.5'/%3E%3Cline x1='681' y1='55' x2='684' y2='60' stroke='%23a855f7' stroke-width='1.5'/%3E%3Crect x='676' y='43' width='2' height='1' rx='0.5'/%3E%3Crect x='682' y='43' width='2' height='1' rx='0.5'/%3E%3Cline x1='60' y1='60' x2='740' y2='60' stroke='%23a855f7' stroke-width='0.5'/%3E%3C/svg%3E");
}

.paris-divider-reverse {
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    margin: 40px 0;
    transform: scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 60' fill='%23a855f7'%3E%3Crect x='80' y='25' width='50' height='35'/%3E%3Crect x='82' y='28' width='8' height='10' fill='%23030303'/%3E%3Crect x='94' y='28' width='8' height='10' fill='%23030303'/%3E%3Crect x='106' y='28' width='8' height='10' fill='%23030303'/%3E%3Crect x='82' y='42' width='8' height='10' fill='%23030303'/%3E%3Crect x='94' y='42' width='8' height='10' fill='%23030303'/%3E%3Crect x='106' y='42' width='8' height='10' fill='%23030303'/%3E%3Cpolygon points='78,25 135,25 130,18 83,18'/%3E%3Crect x='90' y='12' width='4' height='6'/%3E%3Crect x='140' y='30' width='40' height='30'/%3E%3Crect x='143' y='33' width='7' height='8' fill='%23030303'/%3E%3Crect x='154' y='33' width='7' height='8' fill='%23030303'/%3E%3Crect x='165' y='33' width='7' height='8' fill='%23030303'/%3E%3Crect x='143' y='45' width='7' height='8' fill='%23030303'/%3E%3Crect x='154' y='45' width='7' height='8' fill='%23030303'/%3E%3Crect x='165' y='45' width='7' height='8' fill='%23030303'/%3E%3Cpolygon points='138,30 182,30 180,24 140,24'/%3E%3Crect x='190' y='20' width='25' height='40'/%3E%3Crect x='193' y='23' width='6' height='7' fill='%23030303'/%3E%3Crect x='203' y='23' width='6' height='7' fill='%23030303'/%3E%3Crect x='193' y='34' width='6' height='7' fill='%23030303'/%3E%3Crect x='203' y='34' width='6' height='7' fill='%23030303'/%3E%3Crect x='193' y='45' width='6' height='7' fill='%23030303'/%3E%3Crect x='203' y='45' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='188,20 217,20 215,15 190,15'/%3E%3Crect x='225' y='28' width='45' height='32'/%3E%3Crect x='228' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='239' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='250' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='261' y='32' width='6' height='7' fill='%23030303'/%3E%3Cellipse cx='247' cy='28' rx='22' ry='10'/%3E%3Cpolygon points='400,2 397,2 380,60 385,60'/%3E%3Cpolygon points='400,2 403,2 420,60 415,60'/%3E%3Crect x='384' y='35' width='32' height='3'/%3E%3Crect x='388' y='20' width='24' height='2'/%3E%3Crect x='394' y='2' width='12' height='2'/%3E%3Crect x='460' y='28' width='45' height='32'/%3E%3Crect x='463' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='474' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='485' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='496' y='32' width='6' height='7' fill='%23030303'/%3E%3Crect x='463' y='44' width='6' height='7' fill='%23030303'/%3E%3Crect x='474' y='44' width='6' height='7' fill='%23030303'/%3E%3Crect x='485' y='44' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='458,28 507,28 505,22 460,22'/%3E%3Crect x='515' y='18' width='30' height='42'/%3E%3Crect x='518' y='22' width='6' height='7' fill='%23030303'/%3E%3Crect x='527' y='22' width='6' height='7' fill='%23030303'/%3E%3Crect x='536' y='22' width='6' height='7' fill='%23030303'/%3E%3Crect x='518' y='33' width='6' height='7' fill='%23030303'/%3E%3Crect x='527' y='33' width='6' height='7' fill='%23030303'/%3E%3Crect x='536' y='33' width='6' height='7' fill='%23030303'/%3E%3Crect x='518' y='44' width='6' height='7' fill='%23030303'/%3E%3Crect x='527' y='44' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='513,18 547,18 545,12 515,12'/%3E%3Crect x='555' y='35' width='35' height='25'/%3E%3Crect x='558' y='38' width='6' height='7' fill='%23030303'/%3E%3Crect x='568' y='38' width='6' height='7' fill='%23030303'/%3E%3Crect x='578' y='38' width='6' height='7' fill='%23030303'/%3E%3Crect x='558' y='49' width='6' height='7' fill='%23030303'/%3E%3Crect x='568' y='49' width='6' height='7' fill='%23030303'/%3E%3Cpolygon points='553,35 592,35 590,30 555,30'/%3E%3Crect x='600' y='25' width='50' height='35'/%3E%3Crect x='603' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='614' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='625' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='636' y='28' width='7' height='8' fill='%23030303'/%3E%3Crect x='603' y='42' width='7' height='8' fill='%23030303'/%3E%3Crect x='614' y='42' width='7' height='8' fill='%23030303'/%3E%3Crect x='625' y='42' width='7' height='8' fill='%23030303'/%3E%3Cpolygon points='598,25 652,25 648,18 602,18'/%3E%3Ccircle cx='680' cy='44' r='4'/%3E%3Crect x='678' y='48' width='4' height='7'/%3E%3Cline x1='678' y1='50' x2='674' y2='53' stroke='%23a855f7' stroke-width='1.5'/%3E%3Cline x1='682' y1='50' x2='686' y2='53' stroke='%23a855f7' stroke-width='1.5'/%3E%3Cline x1='679' y1='55' x2='676' y2='60' stroke='%23a855f7' stroke-width='1.5'/%3E%3Cline x1='681' y1='55' x2='684' y2='60' stroke='%23a855f7' stroke-width='1.5'/%3E%3Crect x='676' y='43' width='2' height='1' rx='0.5'/%3E%3Crect x='682' y='43' width='2' height='1' rx='0.5'/%3E%3Cline x1='60' y1='60' x2='740' y2='60' stroke='%23a855f7' stroke-width='0.5'/%3E%3C/svg%3E");
}

/* ================================================================
   BATCH 3: INTERACTIVE SCI-FI FEATURES
   Theme: iRobot / Ghost in the Shell / Deus Ex Machina + Paris Atelier
   ================================================================ */

/* ----------------------------------------
   1. GLITCH TEXT EFFECT ON HOVER
   Subtle digital distortion on h2/h3
   ---------------------------------------- */
h2[class*="section"],
.section-title,
h2,
h3 {
    position: relative;
}

h2:hover,
h3:hover {
    animation: glitchText 0.4s ease forwards;
}

h2::before,
h2::after,
h3::before,
h3::after {
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

h2::before,
h3::before {
    color: var(--chrome-cyan);
    clip-path: inset(0 0 65% 0);
    transform: translate(-2px, -1px);
}

h2::after,
h3::after {
    color: var(--chrome-pink);
    clip-path: inset(40% 0 0 0);
    transform: translate(2px, 1px);
}

h2:hover::before,
h2:hover::after,
h3:hover::before,
h3:hover::after {
    opacity: 0.6;
    animation: glitchLayers 0.3s ease-in-out;
}

@keyframes glitchText {
    0% { transform: translate(0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, 0); }
    40% { transform: translate(1px, 1px); }
    50% { transform: translate(0, -1px); }
    60% { transform: translate(-1px, 1px); }
    100% { transform: translate(0); }
}

@keyframes glitchLayers {
    0% {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
    }
    15% {
        opacity: 0.8;
        clip-path: inset(10% 0 60% 0);
    }
    30% {
        opacity: 0.4;
        clip-path: inset(50% 0 10% 0);
    }
    50% {
        opacity: 0.7;
        clip-path: inset(20% 0 40% 0);
    }
    70% {
        opacity: 0.3;
        clip-path: inset(60% 0 5% 0);
    }
    100% {
        opacity: 0;
    }
}

/* ----------------------------------------
   2. CURSOR TRAIL - SEWING STITCH DOTS
   Tiny fading dots that follow the mouse
   ---------------------------------------- */
.stitch-dot {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--chrome-purple);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.7;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stitch-dot.fade {
    opacity: 0;
    transform: scale(0);
}

.stitch-dot:nth-child(even) {
    background: var(--chrome-cyan);
    width: 2px;
    height: 2px;
}

/* ----------------------------------------
   3. HOLOGRAPHIC CARD TILT EFFECT
   3D tilt + rainbow sheen on .card elements
   ---------------------------------------- */
.card,
.robot-card,
.philosophy-pillar,
.runway-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.card .holo-sheen,
.robot-card .holo-sheen,
.philosophy-pillar .holo-sheen,
.runway-card .holo-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(
        125deg,
        transparent 0%,
        rgba(168, 85, 247, 0.06) 20%,
        rgba(6, 182, 212, 0.08) 35%,
        rgba(236, 72, 153, 0.06) 50%,
        rgba(168, 85, 247, 0.08) 65%,
        rgba(6, 182, 212, 0.06) 80%,
        transparent 100%
    );
    background-size: 200% 200%;
    border-radius: inherit;
    mix-blend-mode: screen;
}

.card:hover .holo-sheen,
.robot-card:hover .holo-sheen,
.philosophy-pillar:hover .holo-sheen,
.runway-card:hover .holo-sheen {
    opacity: 1;
}

.card.holo-active,
.robot-card.holo-active,
.philosophy-pillar.holo-active,
.runway-card.holo-active {
    box-shadow:
        0 8px 32px rgba(168, 85, 247, 0.1),
        0 2px 8px rgba(6, 182, 212, 0.08);
}

/* ----------------------------------------
   4. DATA STREAM BACKGROUND
   Falling fashion symbols on .section-dark
   ---------------------------------------- */
.data-stream-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.section-dark {
    position: relative;
}

.section-dark > *:not(.data-stream-container) {
    position: relative;
    z-index: 1;
}

.data-stream-char {
    position: absolute;
    font-size: 14px;
    color: var(--chrome-purple);
    opacity: 0;
    animation: dataStreamFall linear infinite;
    pointer-events: none;
    font-family: var(--font-ui);
    user-select: none;
}

@keyframes dataStreamFall {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    5% {
        opacity: 0.06;
    }
    90% {
        opacity: 0.04;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* ----------------------------------------
   5. BLUEPRINT SCANNER LINE
   Horizontal sweep on section enter
   ---------------------------------------- */
.blueprint-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--chrome-purple) 20%,
        var(--chrome-cyan) 50%,
        var(--chrome-purple) 80%,
        transparent 100%
    );
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transform: translateY(0);
    box-shadow:
        0 0 12px rgba(168, 85, 247, 0.3),
        0 0 30px rgba(6, 182, 212, 0.15);
}

.blueprint-scanner.active {
    animation: scannerSweep 1.5s ease-in-out forwards;
}

@keyframes scannerSweep {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

section {
    position: relative;
    overflow: hidden;
}

/* ----------------------------------------
   6. TYPEWRITER EFFECT FOR BLOCKQUOTES
   Characters appear one by one
   ---------------------------------------- */
blockquote.typewriter-ready {
    visibility: visible;
}

blockquote .typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--chrome-cyan);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.6s step-end infinite;
}

blockquote .typewriter-cursor.done {
    animation: cursorBlink 0.6s step-end infinite 2;
    animation-fill-mode: forwards;
    opacity: 0;
    transition: opacity 0.3s ease 1.2s;
}

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

/* ----------------------------------------
   7. MAGNETIC BUTTONS
   Subtle pull toward cursor
   ---------------------------------------- */
.btn {
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.25s ease,
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
    will-change: transform;
}

.btn.magnetic-hover {
    box-shadow:
        0 4px 20px rgba(168, 85, 247, 0.15),
        0 0 40px rgba(6, 182, 212, 0.05);
}

/* ----------------------------------------
   8. NERV-STYLE ALERT STATUS BAR
   Evangelion / mecha HUD aesthetic
   ---------------------------------------- */
.nerv-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(
        180deg,
        rgba(168, 85, 247, 0.04) 0%,
        var(--obsidian) 50%,
        rgba(6, 182, 212, 0.04) 100%
    );
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chrome-cyan);
    overflow: hidden;
    position: relative;
}

.nerv-status-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(168, 85, 247, 0.03),
        transparent
    );
    animation: nervScanline 6s linear infinite;
}

@keyframes nervScanline {
    0% { left: -50%; }
    100% { left: 150%; }
}

.nerv-bracket {
    color: var(--chrome-purple);
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.5;
}

.nerv-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--chrome-cyan);
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.5);
    animation: nervPulse 2s ease-in-out infinite;
}

@keyframes nervPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.nerv-label {
    color: var(--chrome-purple);
    font-weight: 600;
    opacity: 0.6;
    font-size: 0.65rem;
}

.nerv-message {
    color: var(--chrome-cyan);
    font-weight: 500;
    min-width: 240px;
    text-align: center;
    white-space: nowrap;
}

.nerv-cursor {
    color: var(--chrome-cyan);
    animation: cursorBlink 0.6s step-end infinite;
    font-weight: 700;
}

/* ----------------------------------------
   9. PARALLAX DEPTH LAYERS
   Multi-speed scroll for depth effect
   ---------------------------------------- */
.parallax-layer {
    will-change: transform;
    transition: transform 0.05s linear;
}

.hero-content {
    will-change: transform;
}

/* ----------------------------------------
   10. ENTRY ANIMATION ORCHESTRA
   Choreographed page load sequence
   ---------------------------------------- */

/* Everything starts invisible until orchestrated */
.orchestra-ready .nav {
    opacity: 0;
    transform: translateY(-30px);
}

.orchestra-ready .hero-content {
    opacity: 0;
    transform: translateY(40px);
}

.orchestra-ready .hero-logo {
    opacity: 0;
    transform: scale(0.8);
}

.orchestra-ready .scroll-indicator {
    opacity: 0;
    transform: translateY(20px);
}

.orchestra-ready .hero-cta-group .btn {
    opacity: 0;
    transform: translateY(20px);
}

/* Animate in sequence */
.orchestra-go .nav {
    animation: orchestraSlideDown 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
}

.orchestra-go .hero-logo {
    animation: orchestraFadeScale 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.orchestra-go .hero-content {
    animation: orchestraSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.orchestra-go .hero-cta-group .btn:nth-child(1) {
    animation: orchestraSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.7s forwards;
}

.orchestra-go .hero-cta-group .btn:nth-child(2) {
    animation: orchestraSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.85s forwards;
}

.orchestra-go .scroll-indicator {
    animation: orchestraSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
}

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

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

@keyframes orchestraFadeScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered card entry */
.orchestra-go .card.fade-in,
.orchestra-go .robot-card.fade-in,
.orchestra-go .philosophy-pillar.fade-in {
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ----------------------------------------
   REDUCED MOTION: Disable all animations
   for users who prefer reduced motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    h2:hover,
    h3:hover {
        animation: none;
    }

    h2:hover::before,
    h2:hover::after,
    h3:hover::before,
    h3:hover::after {
        animation: none;
        opacity: 0;
    }

    .stitch-dot {
        display: none;
    }

    .card,
    .robot-card,
    .philosophy-pillar,
    .runway-card {
        transform: none !important;
    }

    .holo-sheen {
        display: none;
    }

    .data-stream-char {
        display: none;
    }

    .blueprint-scanner {
        display: none;
    }

    blockquote .typewriter-cursor {
        display: none;
    }

    .btn {
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
        transform: none !important;
    }

    .nerv-status-bar::before {
        animation: none;
    }

    .nerv-indicator {
        animation: none;
        opacity: 0.7;
    }

    .nerv-cursor {
        animation: none;
    }

    .orchestra-ready .nav,
    .orchestra-ready .hero-content,
    .orchestra-ready .hero-logo,
    .orchestra-ready .scroll-indicator,
    .orchestra-ready .hero-cta-group .btn {
        opacity: 1;
        transform: none;
    }

    .orchestra-go .nav,
    .orchestra-go .hero-logo,
    .orchestra-go .hero-content,
    .orchestra-go .hero-cta-group .btn,
    .orchestra-go .scroll-indicator {
        animation: none;
        opacity: 1;
        transform: none;
    }

    @keyframes scannerSweep { from, to { opacity: 0; } }
    @keyframes dataStreamFall { from, to { opacity: 0; } }
    @keyframes glitchText { from, to { transform: none; } }
}

/* ----------------------------------------
   MOBILE: Disable pointer-dependent effects
   ---------------------------------------- */
@media (pointer: coarse) {
    .stitch-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .nerv-status-bar {
        font-size: 0.6rem;
        padding: 0.6rem 1rem;
        gap: 0.4rem;
    }

    .nerv-message {
        min-width: 180px;
    }

    .nerv-label {
        display: none;
    }
}


/* ================================================================
   HOMEPAGE OVERHAUL: LUXURY CYBERPUNK COUTURE
   iRobot / Neon Genesis Evangelion / Paris Atelier
   NERV's Couture Division. Balenciaga in Blade Runner's world.
   ================================================================ */

/* ========================================
   1. HERO V2: Spectacular Full-Screen
   ======================================== */
.hero-v2 { overflow: hidden; }

.hero-circuit-svg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0.6;
}

.circuit-path {
    stroke-dasharray: 2000; stroke-dashoffset: 2000;
    animation: circuitDraw 8s ease forwards;
}
.circuit-path-1 { animation-delay: 0.5s; }
.circuit-path-2 { animation-delay: 1.5s; }
.circuit-path-3 { animation-delay: 2.5s; }

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

.thread-line { animation: threadPulseAnim 6s ease-in-out infinite alternate; }
@keyframes threadPulseAnim { 0% { stroke-opacity: 0.04; } 100% { stroke-opacity: 0.12; } }

.circuit-node { animation: nodePulseAnim 3s ease-in-out infinite; }
.circuit-node:nth-child(odd) { animation-delay: 0.5s; }
.circuit-node:nth-child(even) { animation-delay: 1.5s; }
@keyframes nodePulseAnim { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.4; } }

.hero-scanlines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(168,85,247,0.015) 2px, rgba(168,85,247,0.015) 4px);
    animation: scanlineShift 0.1s steps(2) infinite;
}
@keyframes scanlineShift { 0% { background-position: 0 0; } 100% { background-position: 0 4px; } }

.holo-swatches {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none; overflow: hidden;
}

.holo-swatch {
    position: absolute; width: 80px; height: 100px;
    border: 1px solid rgba(168,85,247,0.12); border-radius: 2px;
    backdrop-filter: blur(2px); animation: swatchFloat 18s ease-in-out infinite; opacity: 0.4;
}
.holo-swatch-1 { top: 15%; left: 8%; background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(6,182,212,0.06)); animation-delay: 0s; transform: rotate(-8deg); }
.holo-swatch-2 { top: 60%; right: 10%; width: 60px; height: 80px; background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(236,72,153,0.06)); animation-delay: -4s; transform: rotate(5deg); }
.holo-swatch-3 { top: 25%; right: 15%; width: 50px; height: 70px; background: linear-gradient(135deg, rgba(236,72,153,0.06), rgba(212,175,55,0.06)); animation-delay: -8s; transform: rotate(-3deg); }
.holo-swatch-4 { bottom: 20%; left: 12%; width: 70px; height: 90px; background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(168,85,247,0.08)); animation-delay: -12s; transform: rotate(7deg); }

@keyframes swatchFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    25% { transform: translateY(-20px) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(-7deg); }
    75% { transform: translateY(-25px) rotate(-4deg); }
}

.hero-parallax-layer { position: absolute; top: -10%; left: -5%; width: 110%; height: 120%; z-index: 0; pointer-events: none; }

.hero-content-v2 { max-width: 1100px; border: none; background: none; padding: 3rem 2rem; }
.hero-content-v2::before, .hero-content-v2::after { display: none; }

.hero-brand-reveal { margin-bottom: 2rem; text-align: center; }
.hero-brand-letters { display: flex; justify-content: center; flex-wrap: nowrap; gap: 0; }

.brand-letter {
    font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 700;
    letter-spacing: 0.12em; color: var(--platinum); display: inline-block;
    opacity: 0; transform: translateY(30px) scale(0.8);
    animation: letterReveal 0.6s cubic-bezier(0.23,1,0.32,1) forwards;
    animation-delay: calc(2.2s + var(--letter-index) * 0.08s);
    text-shadow: 0 0 40px rgba(168,85,247,0.15);
}
.brand-space { width: 0.3em; }

@keyframes letterReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.8); filter: blur(8px); }
    60% { opacity: 1; filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero-est {
    font-family: var(--font-body); font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-variant: small-caps; letter-spacing: 0.6em; color: var(--chrome-purple);
    margin-top: 0.8rem; opacity: 0; animation: fadeInUpNew 0.8s ease 3.5s forwards;
}

.hero-tagline-v2 { opacity: 0; animation: fadeInUpNew 0.8s ease 3.8s forwards; }

.hero-locations {
    font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--silver); margin-bottom: 2rem;
    opacity: 0; animation: fadeInUpNew 0.8s ease 4s forwards;
}

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

/* ========================================
   2. TRANSMISSION INCOMING
   Terminal readout, intercepted comms
   ======================================== */
.transmission-section {
    padding: 5rem 4rem; display: flex; justify-content: center; align-items: center;
    background: var(--void-black); overflow: hidden;
}
.transmission-container {
    max-width: 700px; width: 100%; padding: 2.5rem 3rem;
    background: rgba(3,3,3,0.9); border: 1px solid rgba(6,182,212,0.2);
    position: relative; font-family: 'Rajdhani', monospace; font-size: 0.85rem;
    line-height: 2; letter-spacing: 0.08em; color: rgba(6,182,212,0.85); overflow: hidden;
}
.transmission-header {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(6,182,212,0.12);
}
.transmission-status-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--chrome-cyan);
    box-shadow: 0 0 8px rgba(6,182,212,0.6); animation: nervPulse 2s ease-in-out infinite;
}
.transmission-label {
    font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--chrome-cyan);
}
.transmission-body { position: relative; z-index: 1; }
.transmission-line { margin-bottom: 0.3rem; opacity: 0; animation: txLineAppear 0.4s ease forwards; }
.transmission-line:nth-child(1) { animation-delay: 0.2s; }
.transmission-line:nth-child(2) { animation-delay: 0.6s; }
.transmission-line:nth-child(3) { animation-delay: 1s; }
.transmission-line:nth-child(4) { animation-delay: 1.4s; }
.transmission-line:nth-child(5) { animation-delay: 1.8s; }
.transmission-line:nth-child(6) { animation-delay: 2.2s; }

@keyframes txLineAppear { from { opacity: 0; transform: translateX(-5px); } to { opacity: 1; transform: translateX(0); } }

.tx-bracket { color: rgba(6,182,212,0.4); }
.tx-classified { color: #ff4444; font-weight: 600; animation: txFlicker 3s infinite; }
.tx-key { color: rgba(6,182,212,0.5); font-weight: 500; }
.tx-val { color: rgba(6,182,212,0.9); font-weight: 600; }
.tx-dim { color: rgba(6,182,212,0.25); }
.tx-operational { color: #00ff88; }

@keyframes txFlicker { 0%, 95%, 100% { opacity: 1; } 96% { opacity: 0.3; } 97% { opacity: 0.8; } 98% { opacity: 0.4; } }

.transmission-divider { color: rgba(6,182,212,0.25); letter-spacing: 0.15em; margin: 0.5rem 0; opacity: 0; animation: txLineAppear 0.4s ease 1.4s forwards; }
.transmission-divider:last-of-type { animation-delay: 2.6s; }

.transmission-quote {
    font-family: var(--font-body); font-size: 1.4rem; font-style: italic; font-weight: 300;
    color: var(--platinum); text-align: center; padding: 1rem 0; line-height: 1.6;
    opacity: 0; animation: txLineAppear 0.6s ease 2s forwards;
}
.transmission-cursor {
    position: absolute; bottom: 2.5rem; right: 3rem;
    color: var(--chrome-cyan); font-weight: 700; animation: cursorBlink 0.6s step-end infinite;
}
.transmission-scanline {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(6,182,212,0.02) 3px, rgba(6,182,212,0.02) 6px);
    z-index: 0;
}

@media (max-width: 768px) {
    .transmission-section { padding: 3rem 1.5rem; }
    .transmission-container { padding: 1.5rem; font-size: 0.75rem; }
    .transmission-quote { font-size: 1.1rem; }
}

/* ========================================
   3. DOSSIER CARDS
   Classified military-fashion aesthetic
   ======================================== */
.dossier-card { position: relative; overflow: visible; }
.dossier-stamp {
    position: absolute; top: 12px; right: 12px; font-family: var(--font-display);
    font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(168,85,247,0.3); border: 1px solid rgba(168,85,247,0.2);
    padding: 2px 8px; transform: rotate(3deg); z-index: 2;
}
.dossier-clearance {
    position: absolute; top: 12px; left: 12px; font-family: var(--font-ui);
    font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--chrome-cyan); opacity: 0.5; z-index: 2;
}
.dossier-stats { display: flex; justify-content: center; gap: 0.8rem; margin-top: 0.8rem; flex-wrap: wrap; }
.dossier-stats span {
    font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--silver); opacity: 0.5;
}
.dossier-barcode {
    margin-top: 1rem; height: 20px;
    background: repeating-linear-gradient(90deg,
        rgba(168,85,247,0.15) 0px, rgba(168,85,247,0.15) 2px, transparent 2px, transparent 4px,
        rgba(168,85,247,0.1) 4px, rgba(168,85,247,0.1) 5px, transparent 5px, transparent 8px,
        rgba(168,85,247,0.12) 8px, rgba(168,85,247,0.12) 10px, transparent 10px, transparent 11px,
        rgba(168,85,247,0.08) 11px, rgba(168,85,247,0.08) 14px, transparent 14px, transparent 16px);
    opacity: 0.5;
}
.dossier-border-anim { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.dossier-border-anim::before, .dossier-border-anim::after {
    content: ''; position: absolute; background: var(--chrome-purple);
    transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
}
.dossier-border-anim::before { top: 0; left: 0; width: 0; height: 1px; }
.dossier-border-anim::after { bottom: 0; right: 0; width: 0; height: 1px; }
.dossier-card:hover .dossier-border-anim::before,
.dossier-card:hover .dossier-border-anim::after { width: 100%; }
.dossier-card:hover .dossier-stamp { color: var(--chrome-purple); border-color: var(--chrome-purple); }

/* ========================================
   4. COLLECTIONS: Runway Style
   ======================================== */
.collections-runway { text-align: center; }
.collections-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; margin-top: 3rem; }
.collection-runway-card {
    position: relative; display: block; padding: 3rem 2.5rem;
    background: var(--col-grad, linear-gradient(135deg, rgba(168,85,247,0.1), rgba(26,26,26,0.8)));
    border: 1px solid rgba(168,85,247,0.12); transition: all var(--transition-medium);
    overflow: hidden; text-align: left;
}
.collection-runway-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--col-grad); opacity: 0; transition: opacity 0.6s ease; z-index: 0;
}
.collection-runway-card:hover::before { opacity: 0.5; }
.collection-runway-card:hover {
    border-color: rgba(168,85,247,0.4); transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(168,85,247,0.1);
}
.col-runway-inner { position: relative; z-index: 1; }
.col-runway-name {
    display: block; font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.3rem);
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--platinum); margin-bottom: 0.8rem;
}
.col-runway-range { display: block; font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.15em; color: var(--chrome-gold); margin-bottom: 0.5rem; }
.col-runway-pieces {
    display: inline-block; font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--chrome-cyan); background: rgba(6,182,212,0.08);
    padding: 0.25rem 0.8rem; border: 1px solid rgba(6,182,212,0.15); margin-bottom: 1rem;
}
.col-runway-desc { font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: var(--silver); line-height: 1.6; margin-bottom: 1.5rem; }
.col-runway-cta { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--chrome-purple); transition: color 0.3s ease; }
.collection-runway-card:hover .col-runway-cta { color: var(--platinum); }

@media (max-width: 768px) {
    .collections-grid { grid-template-columns: 1fr; }
    .collection-runway-card { padding: 2rem 1.5rem; }
}

/* ========================================
   5. ATELIER INTELLIGENCE DASHBOARD
   Mission control HUD stats
   ======================================== */
.atelier-dashboard { text-align: center; }
.dashboard-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; }
.dashboard-stat {
    position: relative; min-width: 180px; padding: 2rem 2.5rem;
    background: rgba(26,26,26,0.6); border: 1px solid rgba(168,85,247,0.15);
    text-align: center; overflow: hidden;
}
.dashboard-stat::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(168,85,247,0.015) 3px, rgba(168,85,247,0.015) 6px);
    pointer-events: none;
}
.dashboard-stat::after {
    content: ''; position: absolute; top: 6px; left: 6px; width: 12px; height: 12px;
    border-top: 1px solid rgba(168,85,247,0.3); border-left: 1px solid rgba(168,85,247,0.3); pointer-events: none;
}
.dash-stat-value {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    background: var(--gradient-chrome); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.5rem;
}
.dash-stat-label { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); }
.dash-stat-pulse {
    position: absolute; bottom: 8px; right: 8px; width: 6px; height: 6px;
    border-radius: 50%; background: var(--chrome-cyan);
    box-shadow: 0 0 6px rgba(6,182,212,0.5); animation: nervPulse 2s ease-in-out infinite;
}
.dashboard-connectors { margin-top: 1.5rem; overflow: hidden; }
.dash-connector-svg { width: 100%; height: 20px; opacity: 0.4; }

@media (max-width: 768px) {
    .dashboard-grid { gap: 1rem; }
    .dashboard-stat { min-width: 140px; padding: 1.5rem; }
    .dashboard-connectors { display: none; }
}

/* ========================================
   6. THE PROCESS: Horizontal Timeline
   ======================================== */
.process-timeline-section { text-align: center; padding: var(--spacing-xl) var(--spacing-md); overflow: hidden; }
.process-track-wrapper {
    overflow-x: auto; overflow-y: hidden; padding: 2rem 0 3rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--chrome-purple) transparent;
}
.process-track-wrapper::-webkit-scrollbar { height: 3px; }
.process-track-wrapper::-webkit-scrollbar-track { background: transparent; }
.process-track-wrapper::-webkit-scrollbar-thumb { background: var(--chrome-purple); border-radius: 3px; }
.process-track { display: flex; gap: 0; min-width: max-content; padding: 2rem 4rem; position: relative; align-items: flex-start; }
.process-line { position: absolute; top: 50px; left: 4rem; right: 4rem; height: 2px; background: rgba(168,85,247,0.1); }
.process-line-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--chrome-purple), var(--chrome-cyan), var(--chrome-pink)); transition: width 2s cubic-bezier(0.23,1,0.32,1); }
.process-step { flex: 0 0 180px; text-align: center; position: relative; padding: 0 1rem; }
.process-hex {
    width: 70px; height: 70px; margin: 0 auto 1.2rem; position: relative;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    background: var(--graphite); border: 1px solid rgba(168,85,247,0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s ease;
}
.process-hex:hover { background: rgba(168,85,247,0.1); }
.process-hex-num { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--chrome-purple); line-height: 1; }
.process-hex-icon { font-size: 0.7rem; color: var(--chrome-cyan); margin-top: 2px; }
.process-step h4 { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--platinum); margin-bottom: 0.5rem; }
.process-step p { font-family: var(--font-body); font-size: 0.85rem; font-weight: 300; color: var(--silver); line-height: 1.5; margin-bottom: 0.5rem; }
.process-time { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--chrome-cyan); opacity: 0.6; }

/* ========================================
   7. NEURAL FABRIC LAB
   ======================================== */
.neural-fabric-section { text-align: center; }
.fabric-lab-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.fabric-card {
    position: relative; padding: 2.5rem 2rem; background: rgba(26,26,26,0.5);
    border: 1px solid rgba(168,85,247,0.1); text-align: left; overflow: hidden;
    transition: all 0.4s ease;
}
.fabric-card:hover { border-color: rgba(168,85,247,0.35); transform: translateY(-4px); }
.fabric-classified {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg); font-family: var(--font-display);
    font-size: 3rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(168,85,247,0.04); pointer-events: none; white-space: nowrap; z-index: 0;
}
.fabric-card h4 { position: relative; z-index: 1; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.12em; color: var(--platinum); margin-bottom: 0.5rem; }
.fabric-tagline { position: relative; z-index: 1; font-family: var(--font-body); font-size: 1.05rem; font-style: italic; font-weight: 300; color: var(--chrome-purple); margin-bottom: 1.2rem; }
.fabric-specs { position: relative; z-index: 1; display: flex; gap: 1rem; flex-wrap: wrap; }
.fabric-specs span {
    font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--silver); opacity: 0.6;
    padding: 0.2rem 0.6rem; border: 1px solid rgba(168,85,247,0.08);
}
.fabric-glow {
    position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px;
    border-radius: 50%; filter: blur(40px); opacity: 0.15;
    animation: fabricGlowPulse 4s ease-in-out infinite alternate; pointer-events: none;
}
.fabric-glow-purple { background: var(--chrome-purple); }
.fabric-glow-cyan { background: var(--chrome-cyan); }
.fabric-glow-pink { background: var(--chrome-pink); }
.fabric-glow-gold { background: var(--chrome-gold); }

@keyframes fabricGlowPulse { 0% { opacity: 0.08; transform: scale(0.8); } 100% { opacity: 0.2; transform: scale(1.2); } }
.fabric-card:hover .fabric-glow { opacity: 0.35; }

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

/* ========================================
   8. CLIENT TESTIMONIALS: Cyberpunk
   ======================================== */
.testimonials-cyber { text-align: center; padding: var(--spacing-xl) var(--spacing-lg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-terminal {
    position: relative; text-align: left; padding: 2rem;
    background: rgba(3,3,3,0.85); border: 1px solid rgba(6,182,212,0.15); overflow: hidden;
}
.testimonial-terminal::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(6,182,212,0.01) 2px, rgba(6,182,212,0.01) 4px);
    pointer-events: none; z-index: 0;
}
.tt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(6,182,212,0.1); position: relative; z-index: 1; }
.tt-status { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: #00ff88; }
.tt-id { font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 0.1em; color: rgba(6,182,212,0.4); }
.tt-body { position: relative; z-index: 1; margin-bottom: 1.2rem; }
.tt-body p { font-family: var(--font-body); font-size: 1.05rem; font-style: italic; font-weight: 300; color: var(--platinum); line-height: 1.7; }
.tt-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 0.8rem; border-top: 1px solid rgba(6,182,212,0.1); position: relative; z-index: 1; }
.tt-platform { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--chrome-purple); }
.tt-location { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); opacity: 0.5; }
.tt-verified-stamp {
    position: absolute; top: 50%; right: 20px; transform: translateY(-50%) rotate(15deg);
    font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(0,255,136,0.06); pointer-events: none; z-index: 0;
}
.testimonial-terminal:hover { border-color: rgba(6,182,212,0.3); }

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-cyber { padding: var(--spacing-lg) var(--spacing-md); }
}

/* ========================================
   9. FOOTER: Global Bureaux + Status
   ======================================== */
.global-bureaux { text-align: center; padding-bottom: 3rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(168,85,247,0.08); position: relative; z-index: 1; }
.bureaux-title { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--chrome-purple); margin-bottom: 2rem; opacity: 0.7; }
.bureaux-map {
    position: relative; width: 100%; max-width: 600px; height: 180px; margin: 0 auto;
    background: radial-gradient(ellipse at 42% 45%, rgba(168,85,247,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 65% 40%, rgba(6,182,212,0.02) 0%, transparent 40%);
    border: 1px solid rgba(168,85,247,0.06);
}
.bureaux-map::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, transparent 24.9%, rgba(168,85,247,0.04) 25%, transparent 25.1%),
        linear-gradient(90deg, transparent 49.9%, rgba(168,85,247,0.04) 50%, transparent 50.1%),
        linear-gradient(90deg, transparent 74.9%, rgba(168,85,247,0.04) 75%, transparent 75.1%),
        linear-gradient(0deg, transparent 32%, rgba(168,85,247,0.04) 33%, transparent 34%),
        linear-gradient(0deg, transparent 65%, rgba(168,85,247,0.04) 66%, transparent 67%);
    pointer-events: none;
}
.bureaux-dot {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    background: var(--chrome-purple);
    box-shadow: 0 0 12px rgba(168,85,247,0.6), 0 0 30px rgba(168,85,247,0.2);
    animation: bureauPulse 2.5s ease-in-out infinite; z-index: 2;
}
.bureaux-dot::before {
    content: ''; position: absolute; top: -6px; left: -6px; width: 20px; height: 20px;
    border-radius: 50%; border: 1px solid rgba(168,85,247,0.3);
    animation: bureauRing 2.5s ease-in-out infinite;
}
@keyframes bureauPulse { 0%, 100% { opacity: 0.6; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes bureauRing { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.5); opacity: 0; } }

.bureaux-paris { top: 35%; left: 40%; animation-delay: 0s; }
.bureaux-tokyo { top: 38%; left: 78%; animation-delay: 0.6s; }
.bureaux-dubai { top: 48%; left: 58%; animation-delay: 1.2s; }
.bureaux-singapore { top: 58%; left: 72%; animation-delay: 1.8s; }

.bureaux-label {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--silver); white-space: nowrap; opacity: 0.6;
}
.bureaux-paris .bureaux-label { color: var(--chrome-purple); opacity: 0.8; }

.footer-encrypted-channel { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(168,85,247,0.08); position: relative; z-index: 1; }
.encrypted-label { display: block; font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--chrome-cyan); opacity: 0.5; margin-bottom: 0.3rem; }
.encrypted-email { font-family: var(--font-body); font-size: 1rem; font-style: italic; color: var(--chrome-purple); }
.encrypted-email:hover { color: var(--chrome-pink); }

.footer-system-status {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 0; margin-top: 2rem; border-top: 1px solid rgba(168,85,247,0.08);
    font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--chrome-cyan); opacity: 0.6; position: relative; z-index: 1;
}
.system-status-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #00ff88;
    box-shadow: 0 0 6px rgba(0,255,136,0.5); animation: nervPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .bureaux-map { height: 120px; }
    .bureaux-label { font-size: 0.5rem; }
    .global-bureaux { padding-bottom: 2rem; }
}

/* ========================================
   10. KANJI WATERMARKS
   ======================================== */
.section-kanji-wrap { position: relative; overflow: hidden; }
.kanji-watermark {
    position: absolute; font-size: 20vw; font-weight: 400;
    color: rgba(168,85,247,0.03); pointer-events: none; z-index: 0;
    user-select: none; line-height: 1; white-space: nowrap;
}
.hero-v2 > .kanji-watermark { top: 15%; right: -5%; font-size: 25vw; color: rgba(168,85,247,0.025); z-index: 1; }
.kanji-wm-section { top: 10%; left: -5%; }
#about .kanji-wm-section { left: auto; right: -3%; top: 5%; }
#platforms .kanji-wm-section { left: -3%; top: 15%; }
.collections-runway .kanji-wm-section { left: auto; right: -5%; top: 8%; }

/* ========================================
   REDUCED MOTION + MOBILE: New sections
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .brand-letter { opacity: 1; transform: none; animation: none; filter: none; }
    .hero-est, .hero-tagline-v2, .hero-locations { opacity: 1; animation: none; }
    .circuit-path { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
    .circuit-node, .thread-line { animation: none; }
    .hero-scanlines { animation: none; }
    .holo-swatch { animation: none; }
    .transmission-line, .transmission-quote, .transmission-divider { opacity: 1; animation: none; }
    .tx-classified { animation: none; }
    .fabric-glow { animation: none; }
    .bureaux-dot, .bureaux-dot::before { animation: none; opacity: 0.8; }
    .process-line-fill { width: 100%; transition: none; }
}

@media (max-width: 768px) {
    .hero-v2 > .kanji-watermark { font-size: 40vw; }
    .kanji-wm-section { font-size: 30vw; }
    .hero-brand-letters { gap: 0; }
    .brand-letter { letter-spacing: 0.05em; }
    .holo-swatches { display: none; }
    .process-step { flex: 0 0 150px; }
    .process-hex { width: 55px; height: 55px; }
}

/* ================================================================
   BATCH 4: MAJOR OVERHAUL - REAL WEBSITE ELEMENTS + 10 UI ENHANCEMENTS
   Time-of-day, editorial photos, press bar, cookie consent, etc.
   ================================================================ */

/* ========================================
   BREADCRUMB BAR
   ======================================== */
.breadcrumb-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.4rem 4rem;
    background: rgba(3,3,3,0.9);
    border-bottom: 1px solid rgba(168,85,247,0.08);
    transform: translateY(100%);
    margin-top: 0;
}

.nav ~ .breadcrumb-bar {
    position: relative;
    transform: none;
}

.breadcrumb {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--silver);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--chrome-purple);
}

.breadcrumb a + a::before {
    content: ' > ';
    margin: 0 0.5rem;
    color: rgba(168,85,247,0.4);
}

@media (max-width: 768px) {
    .breadcrumb-bar {
        padding: 0.3rem 1.5rem;
    }
}

/* ========================================
   COMMISSION STATUS BADGE
   ======================================== */
.commission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00ff88;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(0,255,136,0.3);
    background: rgba(0,255,136,0.05);
    white-space: nowrap;
}

.commission-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0,255,136,0.6);
    animation: commissionPulse 2s ease-in-out infinite;
}

@keyframes commissionPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0,255,136,0.6); }
    50% { opacity: 0.4; box-shadow: 0 0 4px rgba(0,255,136,0.3); }
}

@media (max-width: 1024px) {
    .commission-badge { display: none; }
}

/* ========================================
   PRESS BAR - "As Featured In"
   ======================================== */
.press-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.2rem 4rem;
    background: var(--obsidian);
    border-top: 1px solid rgba(168,85,247,0.06);
    border-bottom: 1px solid rgba(168,85,247,0.06);
    flex-wrap: wrap;
}

.press-bar-label {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
    opacity: 0.5;
}

.press-bar-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.press-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--silver);
    opacity: 0.35;
    transition: opacity var(--transition-medium);
}

.press-name:hover {
    opacity: 0.7;
}

.press-divider {
    color: rgba(168,85,247,0.2);
    font-size: 0.6rem;
}

@media (max-width: 600px) {
    .press-bar { padding: 1rem 1.5rem; gap: 1rem; }
    .press-bar-label { width: 100%; text-align: center; }
    .press-name { font-size: 0.65rem; }
}

/* ========================================
   EDITORIAL PHOTO BREAK
   Full-bleed magazine-style section
   ======================================== */
.editorial-break {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.editorial-break::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3,3,3,0.85) 0%,
        rgba(3,3,3,0.6) 40%,
        rgba(3,3,3,0.2) 70%,
        transparent 100%
    );
    z-index: 1;
}

.editorial-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.03) 2px,
            rgba(0,0,0,0.03) 4px
        );
    pointer-events: none;
    z-index: 2;
}

.editorial-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.editorial-content .section-label {
    margin-bottom: 1.5rem;
}

.editorial-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--platinum);
    margin-bottom: 1.5rem;
}

.editorial-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--silver);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .editorial-break {
        min-height: 50vh;
        padding: 3rem 2rem;
        justify-content: center;
        text-align: center;
    }
    .editorial-break::before {
        background: rgba(3,3,3,0.7);
    }
}

/* ========================================
   RUNWAY CARD IMAGES
   ======================================== */
.runway-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center top;
    border-bottom: 1px solid rgba(168,85,247,0.15);
    margin: -30px -30px 20px -30px;
    width: calc(100% + 60px);
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
}

/* Scan line effect on runway card images */
.runway-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 4px
    );
    pointer-events: none;
}

/* ========================================
   COLLECTION CARD BACKGROUND IMAGES
   ======================================== */
.collection-runway-card {
    position: relative;
    overflow: hidden;
}

.collection-runway-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--col-img);
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transition: opacity var(--transition-medium);
    z-index: 0;
}

.collection-runway-card:hover::before {
    opacity: 0.22;
}

.col-runway-inner {
    position: relative;
    z-index: 1;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 4rem;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid rgba(168,85,247,0.2);
    backdrop-filter: blur(20px);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-text p {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--silver);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--chrome-purple), #7c3aed);
    border: none;
    color: var(--void-black);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-accept:hover {
    box-shadow: 0 0 15px rgba(168,85,247,0.4);
}

.cookie-dismiss {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(168,85,247,0.3);
    color: var(--silver);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-dismiss:hover {
    border-color: var(--chrome-purple);
    color: var(--platinum);
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(168,85,247,0.3);
    color: var(--chrome-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

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

.back-to-top:hover {
    background: rgba(168,85,247,0.15);
    border-color: var(--chrome-purple);
    box-shadow: 0 0 20px rgba(168,85,247,0.2);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER SOCIAL ICONS
   ======================================== */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168,85,247,0.2);
    color: var(--silver);
    transition: all var(--transition-medium);
}

.social-icon:hover {
    color: var(--chrome-purple);
    border-color: var(--chrome-purple);
    background: rgba(168,85,247,0.08);
    transform: translateY(-2px);
}

/* ================================================================
   10 CYBERPUNK / EVANGELION UI ENHANCEMENTS
   ================================================================ */

/* ========================================
   1. EVANGELION WARNING LABELS
   Decorative side labels on sections
   ======================================== */
.eva-warning {
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    font-family: var(--font-ui);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--chrome-cyan);
    opacity: 0.12;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.eva-warning::before {
    content: '\26A0';
    margin-right: 0.5em;
}

/* ========================================
   2. HEXAGONAL GRID OVERLAY
   Subtle HUD hex pattern on dark sections
   ======================================== */
.hex-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23a855f7' stroke-width='0.5'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%2306b6d4' stroke-width='0.3'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}

.section-dark .hex-overlay,
.section-gradient .hex-overlay {
    opacity: 0.06;
}

/* ========================================
   3. CYBERPUNK CORNER BRACKETS
   L-shaped corner borders on cards
   ======================================== */
.corner-brackets {
    position: relative;
}

.corner-brackets::before,
.corner-brackets::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--chrome-purple);
    border-style: solid;
    opacity: 0.4;
    transition: opacity var(--transition-medium);
    pointer-events: none;
    z-index: 5;
}

.corner-brackets::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.corner-brackets::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.corner-brackets:hover::before,
.corner-brackets:hover::after {
    opacity: 0.8;
    border-color: var(--chrome-cyan);
}

/* ========================================
   4. SCAN LINE EFFECT ON IMAGES
   Repeating horizontal lines over images
   ======================================== */
.gallery-photo::after,
.editorial-break .editorial-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.04) 2px,
        rgba(0,0,0,0.04) 4px
    );
    pointer-events: none;
    z-index: 2;
}

.editorial-break .editorial-content::before {
    display: none;
}

/* ========================================
   5. ANIMATED BORDER PULSE
   Slow cycling border glow on cards
   ======================================== */
@keyframes borderPulse {
    0%, 100% { border-color: rgba(168,85,247,0.25); box-shadow: 0 0 0 rgba(168,85,247,0); }
    33% { border-color: rgba(6,182,212,0.3); box-shadow: 0 0 12px rgba(6,182,212,0.06); }
    66% { border-color: rgba(236,72,153,0.25); box-shadow: 0 0 8px rgba(236,72,153,0.04); }
}

.border-pulse {
    animation: borderPulse 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .border-pulse { animation: none; }
}

/* ========================================
   6. MECHA-STYLE SECTION NUMBERS
   Large faded numbers on section left
   ======================================== */
.mecha-number {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(168,85,247,0.06);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
}

@media (max-width: 768px) {
    .mecha-number {
        font-size: 3rem;
        left: 0.5rem;
        -webkit-text-stroke: 1px rgba(168,85,247,0.04);
    }
}

/* ========================================
   7. TERMINAL READOUT FOR STATS
   Monospace + blinking cursor on numbers
   ======================================== */
.terminal-readout {
    font-family: 'Rajdhani', monospace;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.terminal-readout::after {
    content: '_';
    animation: terminalBlink 1s step-end infinite;
    color: var(--chrome-cyan);
    margin-left: 2px;
}

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

/* ========================================
   8. CROSSHAIR CURSOR ON IMAGE HOVER
   Targeting animation on image hover
   ======================================== */
.gallery-photo,
.runway-card-img,
.editorial-break {
    cursor: crosshair;
}

.gallery-photo:hover,
.runway-card-img:hover {
    position: relative;
}

/* ========================================
   9. GLOWING DIVIDERS
   Chrome-gradient pulsing line dividers
   ======================================== */
.glow-divider {
    height: 1px;
    max-width: 80%;
    margin: 0 auto;
    background: linear-gradient(90deg,
        transparent,
        var(--chrome-purple) 20%,
        var(--chrome-cyan) 50%,
        var(--chrome-pink) 80%,
        transparent
    );
    position: relative;
    opacity: 0.4;
    animation: glowDividerPulse 4s ease-in-out infinite;
}

@keyframes glowDividerPulse {
    0%, 100% { opacity: 0.3; filter: blur(0px); }
    50% { opacity: 0.6; filter: blur(1px); }
}

.glow-divider::before {
    content: '';
    position: absolute;
    inset: -3px 20% -3px 20%;
    background: inherit;
    filter: blur(6px);
    opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
    .glow-divider { animation: none; opacity: 0.3; }
}

/* ========================================
   10. PARALLAX KANJI
   Kanji watermarks move at different scroll speed
   (JS-controlled via transform)
   ======================================== */
.kanji-parallax {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ================================================================
   GLASSMORPHISM UTILITY CLASSES
   Frosted glass panels floating over the background
   ================================================================ */
.glass {
    background: rgba(3, 3, 3, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 2px;
}

.glass-light {
    background: rgba(3, 3, 3, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.08);
}

.glass-heavy {
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

/* Apply glassmorphism to all major content sections */
.quote-block {
    background: rgba(3, 3, 3, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(168, 85, 247, 0.08);
    border-radius: 2px;
}

.transmission-section {
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(168, 85, 247, 0.08);
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
    position: relative;
    z-index: 2;
}

.atelier-philosophy {
    background: rgba(3, 3, 3, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}

.philosophy-pillar {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.12);
}

.section-kanji-wrap {
    background: rgba(3, 3, 3, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}

.collections-runway {
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.atelier-dashboard {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative;
    z-index: 2;
}

.neural-fabric-section {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.fabric-card {
    background: rgba(26, 26, 26, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.testimonials-cyber {
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    z-index: 2;
}

.testimonial-terminal {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.process-timeline-section {
    background: rgba(3, 3, 3, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}

.platform-selector {
    background: rgba(3, 3, 3, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}

.runway-section {
    background: rgba(3, 3, 3, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    z-index: 2;
}

.runway-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card {
    background: rgba(26, 26, 26, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background-image:
        linear-gradient(45deg, rgba(168,85,247,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(168,85,247,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(168,85,247,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(168,85,247,0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-color: rgba(26, 26, 26, 0.55);
}

.robot-card {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dashboard-stat {
    background: rgba(26, 26, 26, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.08);
    border-radius: 2px;
}

.newsletter-section {
    background: rgba(3, 3, 3, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(168, 85, 247, 0.08);
    position: relative;
    z-index: 2;
}

.contact-box {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.footer {
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    position: relative;
    z-index: 2;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 39px,
            rgba(168,85,247,0.02) 39px,
            rgba(168,85,247,0.02) 40px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 39px,
            rgba(168,85,247,0.015) 39px,
            rgba(168,85,247,0.015) 40px
        ),
        radial-gradient(ellipse at 15% 80%, rgba(168,85,247,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(236,72,153,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.05) 0%, transparent 40%);
    background-color: rgba(3, 3, 3, 0.8);
}

.social-proof-ticker {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(168, 85, 247, 0.08);
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
    position: relative;
    z-index: 2;
}

.press-bar {
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    z-index: 2;
}

.nerv-status-bar {
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
}

.breadcrumb-bar {
    position: relative;
    z-index: 2;
}

/* Thread dividers need z-index to stay above ambient layers */
.thread-divider,
.paris-divider,
.paris-divider-reverse {
    position: relative;
    z-index: 2;
}

/* Hero content sits above ambient layers */
.hero {
    z-index: 2;
}

/* ================================================================
   AMBIENT LIGHTING & ATMOSPHERE CSS LAYERS
   Create depth, lighting, and atmosphere over the background
   ================================================================ */

/* Layer 1: Volumetric Light Rays - moonlight/neon bleed */
.ambient-light-rays {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at 80% 10%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    mix-blend-mode: screen;
}

/* Layer 2: Fog/Mist - animated subtle drift */
.ambient-fog {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    animation: fogDrift 30s ease-in-out infinite alternate;
}

@keyframes fogDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-2%, 1%) scale(1.02); opacity: 0.8; }
    100% { transform: translate(1%, -1%) scale(0.98); opacity: 0.5; }
}

/* Layer 3: Light Flicker - flickering neon/ambient light */
.ambient-flicker {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at 30% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    animation: lightFlicker 8s ease-in-out infinite;
}

@keyframes lightFlicker {
    0%, 100% { opacity: 0.3; }
    10% { opacity: 0.5; }
    11% { opacity: 0.2; }
    12% { opacity: 0.6; }
    13% { opacity: 0.3; }
    50% { opacity: 0.4; }
    70% { opacity: 0.5; }
    71% { opacity: 0.1; }
    72% { opacity: 0.6; }
    90% { opacity: 0.4; }
}

/* Layer 4: Vignette - dark edges to focus attention (cinematic) */
.ambient-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(3, 3, 3, 0.65) 100%);
}

/* Layer 5: Rain/Particle Effect - subtle animated dots drifting down */
.ambient-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(168,85,247,0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 40%, rgba(6,182,212,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 15%, rgba(236,72,153,0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 70% 60%, rgba(168,85,247,0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 30%, rgba(6,182,212,0.2) 50%, transparent 50%);
    background-size: 200px 300px;
    animation: particleFall 20s linear infinite;
}

@keyframes particleFall {
    0% { background-position: 0 0; }
    100% { background-position: 0 300px; }
}

/* Layer 6: Color Temperature Shift - time-of-day tinting */
.ambient-temperature {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

body.time-day .ambient-temperature {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

body.time-night .ambient-temperature {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
}

/* ================================================================
   ENHANCED ATMOSPHERE LAYERS
   Stronger volumetric effects, neon reflections, fog, bokeh, haze
   ================================================================ */

/* Layer A: Stronger Volumetric God Rays */
.ambient-god-rays {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(168,85,247,0.06) 0%, transparent 40%),
        linear-gradient(225deg, rgba(6,182,212,0.04) 0%, transparent 30%),
        radial-gradient(ellipse at 75% 5%, rgba(168,85,247,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 25% 90%, rgba(6,182,212,0.06) 0%, transparent 40%);
    mix-blend-mode: screen;
    animation: godRaysPulse 15s ease-in-out infinite alternate;
}

@keyframes godRaysPulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(0.99); }
}

/* Layer B: Neon Glow Reflection (ground bounce) */
.ambient-neon-reflection {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(0deg,
        rgba(168,85,247,0.08) 0%,
        rgba(6,182,212,0.04) 30%,
        transparent 100%);
    animation: neonReflectionShift 20s ease-in-out infinite alternate;
}

@keyframes neonReflectionShift {
    0% { background: linear-gradient(0deg, rgba(168,85,247,0.08) 0%, rgba(6,182,212,0.04) 30%, transparent 100%); }
    50% { background: linear-gradient(0deg, rgba(236,72,153,0.06) 0%, rgba(168,85,247,0.04) 30%, transparent 100%); }
    100% { background: linear-gradient(0deg, rgba(6,182,212,0.08) 0%, rgba(168,85,247,0.04) 30%, transparent 100%); }
}

/* Layer C: Stronger Multi-Layer Fog */
.ambient-fog-heavy {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(3,3,3,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 15%, rgba(168,85,247,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6,182,212,0.03) 0%, transparent 70%);
    animation: heavyFogDrift 40s ease-in-out infinite alternate;
}

@keyframes heavyFogDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    33% { transform: translate(-3%, 2%) scale(1.05); opacity: 1; }
    66% { transform: translate(2%, -1%) scale(0.97); opacity: 0.7; }
    100% { transform: translate(-1%, 1%) scale(1.02); opacity: 0.9; }
}

/* Layer D: Animated Light Streaks (light through blinds) */
.ambient-light-streaks {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ambient-light-streaks::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(168,85,247,0.02) 80px,
        rgba(168,85,247,0.02) 81px
    );
    animation: lightStreaksSweep 60s linear infinite;
}

@keyframes lightStreaksSweep {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

/* Layer E: Bokeh Effect (out-of-focus light circles) */
.ambient-bokeh {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.bokeh-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: bokehFloat 30s ease-in-out infinite alternate;
}

@keyframes bokehFloat {
    0% { transform: translateY(0) scale(1); opacity: var(--bokeh-opacity, 0.06); }
    25% { transform: translateY(-15px) scale(1.05); opacity: calc(var(--bokeh-opacity, 0.06) * 1.3); }
    50% { transform: translateY(10px) scale(0.95); opacity: var(--bokeh-opacity, 0.06); }
    75% { transform: translateY(-8px) scale(1.02); opacity: calc(var(--bokeh-opacity, 0.06) * 0.8); }
    100% { transform: translateY(5px) scale(1); opacity: var(--bokeh-opacity, 0.06); }
}

/* Layer F: Atmospheric Haze (subtle overall haze reduces contrast for mood) */
.ambient-haze {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: rgba(3, 3, 3, 0.12);
    mix-blend-mode: normal;
}

/* ================================================================
   TIME-OF-DAY SPECIFIC ATMOSPHERE
   Different mood for day vs night
   ================================================================ */

body.time-night .ambient-god-rays {
    background:
        radial-gradient(ellipse at 75% 5%, rgba(168,85,247,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 25% 90%, rgba(6,182,212,0.08) 0%, transparent 40%);
}

body.time-day .ambient-god-rays {
    background:
        radial-gradient(ellipse at 60% 10%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(168,85,247,0.05) 0%, transparent 40%);
}

body.time-night .ambient-neon-reflection {
    opacity: 1;
}

body.time-day .ambient-neon-reflection {
    opacity: 0.4;
}

body.time-night .ambient-haze {
    background: rgba(3, 3, 3, 0.14);
}

body.time-day .ambient-haze {
    background: rgba(3, 3, 3, 0.08);
}

body.time-night .ambient-fog-heavy {
    opacity: 1;
}

body.time-day .ambient-fog-heavy {
    opacity: 0.5;
}

/* Ensure existing overlays don't conflict */
.thread-overlay {
    z-index: 1;
}

/* Body pseudo-elements (noise + blueprint grid) stay on top of ambient but below content */
body::before {
    z-index: 9999; /* Noise texture stays topmost non-interactive */
}

body::after {
    z-index: 1; /* Blueprint grid same as ambient layers */
}

/* ================================================================
   MOBILE PERFORMANCE: Reduce blur for backdrop-filter
   ================================================================ */
@media (max-width: 768px) {
    .section-dark,
    .section-gradient,
    .transmission-section,
    .atelier-philosophy,
    .section-kanji-wrap,
    .collections-runway,
    .atelier-dashboard,
    .neural-fabric-section,
    .testimonials-cyber,
    .process-timeline-section,
    .platform-selector,
    .runway-section,
    .newsletter-section,
    .footer,
    .social-proof-ticker,
    .press-bar,
    .nerv-status-bar {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .glass {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .glass-heavy {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .glass-light {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .philosophy-pillar,
    .fabric-card,
    .testimonial-terminal,
    .runway-card,
    .card,
    .robot-card,
    .dashboard-stat,
    .contact-box {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    /* Reduce ambient layer complexity on mobile */
    .ambient-particles {
        background-image:
            radial-gradient(1px 1px at 10% 20%, rgba(168,85,247,0.2) 50%, transparent 50%),
            radial-gradient(1px 1px at 50% 50%, rgba(6,182,212,0.15) 50%, transparent 50%),
            radial-gradient(1px 1px at 90% 30%, rgba(236,72,153,0.15) 50%, transparent 50%);
        background-size: 200px 300px;
    }

    /* Reduce enhanced atmosphere layers on mobile for performance */
    .ambient-god-rays { animation: none; opacity: 0.6; }
    .ambient-fog-heavy { animation: none; opacity: 0.5; }
    .ambient-light-streaks::before { animation: none; }
    .ambient-neon-reflection { animation: none; }
    .bokeh-circle { filter: blur(20px); } /* Reduce blur radius on mobile */
    .ambient-haze { background: rgba(3,3,3,0.08); } /* Lighter haze on mobile */
}

/* ================================================================
   REDUCED MOTION: Disable all ambient animations
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .ambient-fog { animation: none; opacity: 0.6; }
    .ambient-flicker { animation: none; opacity: 0.3; }
    .ambient-particles { animation: none; }
    .ambient-god-rays { animation: none; opacity: 0.6; }
    .ambient-neon-reflection { animation: none; }
    .ambient-fog-heavy { animation: none; opacity: 0.5; }
    .ambient-light-streaks::before { animation: none; }
    .bokeh-circle { animation: none; }
    .commission-badge-dot { animation: none; opacity: 0.8; }
    .cookie-consent { transition: none; }
    .back-to-top { transition: none; }
    .editorial-break::after { display: none; }
    @keyframes glowDividerPulse { 0%, 100% { opacity: 0.3; } }
    .border-pulse { animation: none; }
    .terminal-readout::after { animation: none; opacity: 1; }

    /* Batch 5: Disable ambient effects under reduced motion */
    .couture-ripple { display: none !important; }
    .atelier-spotlight { display: none !important; }
    .dust-motes-container { display: none !important; }
}


/* =============================================
   BATCH 5 EFFECT STYLES
   Luxury Atmospheric Enhancements
   ============================================= */

/* --- B5-6: Couture Fabric Ripple --- */
.couture-ripple {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 165, 116, 0.15) 0%,
        rgba(212, 165, 116, 0.08) 40%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    filter: blur(8px);
    opacity: 0;
    transition: none;
}
.couture-ripple.active {
    animation: coutureRippleExpand 800ms ease-out forwards;
}
@keyframes coutureRippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.15;
    }
    50% {
        opacity: 0.12;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* --- B5-7: Atelier Spotlight Cursor --- */
.atelier-spotlight {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 165, 116, 0.05) 0%,
        rgba(212, 165, 116, 0.02) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s, width 0.4s ease, height 0.4s ease, background 0.4s ease;
    will-change: transform;
}
.atelier-spotlight.intensified {
    width: 260px;
    height: 260px;
    background: radial-gradient(
        circle,
        rgba(212, 165, 116, 0.10) 0%,
        rgba(212, 165, 116, 0.04) 40%,
        transparent 70%
    );
}

/* --- B5-8: Atmospheric Dust Motes --- */
.dust-motes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.dust-mote {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 1);
    pointer-events: none;
    will-change: transform, opacity;
}

/* --- Mobile: hide desktop-only effects --- */
@media (max-width: 767px) {
    .atelier-spotlight {
        display: none !important;
    }
}
