/* ================================
   PROMPTR LAB - Complete Redesign
   Same elegant style as main site
   ================================ */

@font-face {
    font-family: 'Mencken Head Compress';
    src: url('../assets/fonts/MENCKEN/fonnts.com-Mencken-Std-Head-Compress-.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-primary: #0a1628;
    --bg-secondary: #0d1d35;
    --bg-tertiary: #132744;
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    /* Blue Accents for LYNX */
    --accent-blue: #00a8ff;
    --accent-light: #33bbff;
    --nav-accent: #00a8ff;
    
    --font-serif: 'Mencken Head Compress', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-blue);
    color: white;
}

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

img, video {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   Loader
   ================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.loader-logo {
    position: relative;
}

.loader-icon {
    width: 50px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Hide content until loaded */
body:not(.loaded) .lynx-hero-split,
body:not(.loaded) .lynx-hero-centered {
    opacity: 0;
}

body.loaded .lynx-hero-split,
body.loaded .lynx-hero-centered {
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* ================================
   Film Grain Overlay
   ================================ */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.grain-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    mix-blend-mode: overlay;
    filter: contrast(2) brightness(1.2);
}

/* ================================
   Back Link
   ================================ */
.lab-back-link {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
}

.lab-back-link a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out);
}

.lab-back-link a:hover {
    color: var(--text-primary);
}

.back-arrow {
    font-size: 1rem;
    transition: transform 0.3s var(--ease-out);
}

.lab-back-link a:hover .back-arrow {
    transform: translateX(-4px);
}

/* ================================
   Navigation - Same as Main Site
   ================================ */
.nav {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0.8rem 0.6rem;
    width: auto;
    max-height: 70vh;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

/* Nav Social Icons */
.nav-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.nav-social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social-icon svg {
    position: relative;
    z-index: 2;
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
    transition: all 0.3s ease;
}

.nav-social-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.3s ease;
    z-index: 1;
}

.nav-social-icon[data-color="#E4405F"] .nav-social-fill {
    background: #E4405F;
}

.nav-social-icon[data-color="#0A66C2"] .nav-social-fill {
    background: #0A66C2;
}

.nav-social-icon:hover .nav-social-fill {
    height: 100%;
}

.nav-social-icon:hover svg {
    fill: #ffffff;
    transform: scale(1.1);
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 1rem 0;
}

.nav-links a:hover {
    color: var(--accent-blue);
    letter-spacing: 0.25em;
}

.nav-links a.active {
    color: var(--accent-blue);
    letter-spacing: 0.25em;
}

/* PROMPTR Link - Special Highlight */
.nav-links a.nav-lynx {
    position: relative;
    color: var(--text-muted) !important;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: none;
}

.nav-links a.nav-lynx:hover {
    color: var(--text-primary) !important;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .nav-social {
        display: none;
    }
}

/* ================================
   Hero Section with Video BG
   ================================ */
.lab-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lab-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.lab-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lab-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.6) 0%,
        rgba(10, 22, 40, 0.3) 40%,
        rgba(10, 22, 40, 0.5) 80%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.lab-hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

/* ================================
   LYNX Hero - Split Layout with 3D
   ================================ */
.lynx-hero {
    align-items: stretch;
}

.lynx-hero .lab-hero-bg {
    z-index: 0;
}

.lynx-hero .lab-hero-overlay {
    display: none; /* Kein Overlay für LYNX */
}

.lynx-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary); /* Einfacher dunkler Hintergrund */
}

/* Hero Background Video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    mix-blend-mode: screen;
}

.lynx-hero-split {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.lynx-hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.lynx-hero-centered .lynx-intro {
    max-width: 600px;
}

.lynx-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 6rem;
    max-width: 600px;
    position: relative;
    z-index: 10; /* Text über dem 3D */
    background: transparent;
    pointer-events: none; /* Lässt Maus-Events durch für 3D */
}

.lynx-hero-text > * {
    pointer-events: auto; /* Aber Kinder sind klickbar */
}

.lynx-hero-3d {
    flex: 1.2;
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 5; /* Hinter dem Text */
}

.hero-3d-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300%;
    height: 300%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    isolation: isolate;
}

.hero-3d-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen !important;
    background: transparent !important;
    opacity: 0.35;
}

/* Force video transparency */
.hero-3d-bg video {
    mix-blend-mode: screen !important;
    background: transparent !important;
}

#spline-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.lynx-intro {
    margin: 2rem 0 3rem;
}

.lynx-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.lynx-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--accent-blue);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.lynx-cta:hover {
    background: #fff;
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3);
}

.lynx-cta .cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.lynx-cta:hover .cta-arrow {
    transform: translateY(4px);
}

@media (max-width: 1100px) {
    .lynx-hero-split {
        flex-direction: column;
    }
    
    .lynx-hero-text {
        padding: 8rem 2rem 2rem;
        max-width: 100%;
        text-align: center;
        align-items: center;
        z-index: 10;
    }
    
    .lynx-hero-3d {
        position: relative;
        width: 100%;
        height: 400px;
        z-index: 5;
    }
    
    .lynx-intro {
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .lynx-hero-text {
        padding: 6rem 1.5rem 2rem;
    }
    
    .lynx-hero-3d {
        height: 300px;
    }
}

.lab-logo {
    margin-bottom: 2rem;
}

.lab-logo-icon {
    width: 50px;
    height: auto;
    margin: 0 auto;
}

.lab-title {
    margin-bottom: 1rem;
}

.lynx-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.lab-title .title-small {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.lab-title .title-large {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: var(--accent-blue);
}

.lab-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

.lab-intro p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.8;
}

.lab-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(0.7); }
}

/* ================================
   Product Sections - Full Width
   ================================ */
.product-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-section.dark {
    background: var(--bg-primary);
}

.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: blur(30px);
}

.product-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, transparent 50%, var(--bg-secondary) 100%);
}

.product-section.dark .product-bg-overlay {
    background: linear-gradient(135deg, var(--bg-primary) 0%, transparent 50%, var(--bg-primary) 100%);
}

.product-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.product-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-content.reverse {
    direction: rtl;
}

.product-content.reverse > * {
    direction: ltr;
}

.product-info {
    max-width: 550px;
}

.product-label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.product-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.product-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-size: 0.8rem;
}

.product-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.05em;
}

.price-note {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--accent-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.product-cta:hover {
    background: var(--accent-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.product-cta.coming-soon {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
}

.product-cta.coming-soon:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: transparent;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.product-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.product-visual {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-light);
    color: var(--bg-primary);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 2px;
    z-index: 10;
}

.product-badge.soon {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    
    .product-content.reverse {
        direction: ltr;
    }
    
    .product-visual {
        order: -1;
    }
    
    .product-image {
        max-width: 100%;
    }
}

/* ================================
   Feature Showcase Section
   ================================ */
.feature-showcase {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Info */
.showcase-info {
    padding-right: 2rem;
}

.showcase-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-blue);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.showcase-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.showcase-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

/* Chips */
.showcase-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.chip {
    padding: 0.4rem 0.8rem;
    background: var(--bg-tertiary);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Accordion */
.showcase-accordion {
    margin-bottom: 2rem;
}

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

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-trigger:hover {
    color: var(--accent-blue);
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1rem;
}

.accordion-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* CTA */
.showcase-cta {
    margin-top: 2rem;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-blue);
    color: var(--bg-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Right Column - Visual */
.showcase-visual {
    position: sticky;
    top: 100px;
}

.showcase-card {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

/* CRAFTR Gallery Styles */
.showcase-card.craftr-gallery {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 25, 40, 0.6);
    max-width: 100%;
}

/* CRAFTR Section - Clean Layout */
.craftr-section {
    padding: 6rem 0 8rem;
}

.craftr-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.craftr-header .showcase-badge {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(207, 126, 55, 0.2), rgba(207, 126, 55, 0.05));
    border: 1px solid rgba(207, 126, 55, 0.4);
    color: #cf7e37;
}

.craftr-header .showcase-description {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
}

.craftr-header .showcase-description strong {
    color: #cf7e37;
}

.craftr-logo-title {
    margin-bottom: 0;
}

.craftr-logo {
    height: 70px;
    width: auto;
}

.craftr-fullwidth-gallery {
    margin-bottom: 3rem;
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 0;
}

.craftr-main-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    width: 100%;
    margin-bottom: 1.5rem;
}

.craftr-main-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05) saturate(1.1);
}

/* Compact Features */
.craftr-features-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    color: #cf7e37;
    font-size: 1rem;
    line-height: 1.4;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .craftr-features-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .craftr-features-compact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .craftr-logo {
        height: 50px;
    }
    
    .craftr-header .showcase-description {
        font-size: 1rem;
    }
}

/* Compact Platforms */
.craftr-platforms-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.platforms-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.craftr-platforms-compact .platforms-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.craftr-platforms-compact .platforms-list span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* CTA Section */
.craftr-cta {
    text-align: center;
}

.craftr-license {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Thumbnail Navigation */
.craftr-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    justify-content: center;
}

.craftr-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.craftr-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.craftr-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.craftr-thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.4;
    transition: all 0.25s ease;
}

.craftr-thumb:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.craftr-thumb.active {
    border-color: #cf7e37;
    opacity: 1;
    box-shadow: 0 0 20px rgba(207, 126, 55, 0.3);
}

.craftr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .craftr-thumb {
        width: 60px;
        height: 42px;
    }
    
    .craftr-thumbnails {
        justify-content: flex-start;
    }
}


.showcase-tabs {
    position: absolute;
    inset: 0;
}

.tab-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
}

.tab-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tab Controls */
.tab-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 10;
}

.tab-btn {
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* Responsive */
@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-info {
        padding-right: 0;
    }
    
    .showcase-visual {
        position: relative;
        top: 0;
    }
}

/* ================================
   Why Section
   ================================ */
.why-section {
    padding: 10rem 0;
    background: var(--bg-secondary);
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    line-height: 0.95;
}

.section-title .line1 {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title .line2 {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--accent-light);
}

.why-text {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}

.why-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.why-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out);
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .why-stats {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 0.05em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--accent-blue);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ================================
   Contact Section
   ================================ */
.contact-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.contact-content {
    max-width: 650px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.contact-title .line2 {
    color: var(--accent-blue);
    font-style: italic;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* ================================
   Footer
   ================================ */
.lab-footer {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    display: block;
}

.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copyright p {
    font-size: 0.65rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
