/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Blue palette */
    --blue-50:  #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);

    /* Neutrals */
    --white:    #ffffff;
    --gray-50:  #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Shadows */
    --shadow-sm:   0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg:   0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-float: 0 25px 60px rgba(0, 0, 0, 0.12);

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-pill: 999px;

    /* Typography & Layout */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Courier New', monospace;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    --nav-height: 72px;

    /* Type Scale — Headings */
    --type-display:  clamp(40px, 5.5vw, 68px);   /* Hero h1 */
    --type-h2-lg:    clamp(32px, 4vw, 48px);      /* Primary showcase h2 */
    --type-h2:       clamp(28px, 4vw, 42px);       /* Secondary showcase h2 */
    --type-h2-sm:    clamp(28px, 3.5vw, 42px);     /* Section headers */
    --type-h3:       28px;                          /* Bento cards */
    --type-h4:       18px;                          /* Card/product titles */

    /* Type Scale — Body */
    --type-body-lg:  17px;                          /* Descriptions (fixed) */
    --type-body-md:  clamp(15px, 1.5vw, 17px);     /* Descriptions (fluid) */
    --type-body-sm:  14px;                          /* Card text, captions */
    --type-body-xs:  13px;                          /* Small card text */

    /* Type Scale — Labels */
    --type-badge:    13px;                          /* Badge/pill labels */
    --type-label:    9px;                           /* Monospace exploded labels */
    --type-label-sm: 7px;                           /* Monospace internal labels */

    /* Type Weights */
    --weight-extrabold: 800;
    --weight-bold:      700;
    --weight-semibold:  600;
    --weight-medium:    500;
    --weight-regular:   400;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   UNIFIED PAGE BACKGROUND
   ============================================ */
.page-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Dot-grid overlay (electronics schematic feel) */
.page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--blue-300) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

/* Major blueprint grid overlay */
.page-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,  var(--blue-400) 0.5px, transparent 0.5px),
        linear-gradient(to bottom, var(--blue-400) 0.5px, transparent 0.5px);
    background-size: 128px 128px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Noise grain overlay */
.page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 2;
}

/* Gradient mesh blobs — toned down for subtlety */
.page-bg__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.page-bg__blob--1 {
    width: 600px;
    height: 600px;
    background: var(--blue-200);
    opacity: 0.15;
    top: -150px;
    right: -200px;
}

.page-bg__blob--2 {
    width: 500px;
    height: 500px;
    background: var(--gray-300);
    opacity: 0.1;
    top: 16%;
    left: -250px;
}

.page-bg__blob--3 {
    width: 550px;
    height: 550px;
    background: var(--blue-200);
    opacity: 0.12;
    top: 38%;
    right: -200px;
}

.page-bg__blob--4 {
    width: 450px;
    height: 450px;
    background: var(--gray-300);
    opacity: 0.1;
    top: 60%;
    left: -200px;
}

.page-bg__blob--5 {
    width: 500px;
    height: 500px;
    background: var(--blue-200);
    opacity: 0.12;
    top: 80%;
    right: -150px;
}

/* ===== Blueprint sketch borders — curated containers ===== */
/* Section dividers */
.hero,
.tv-showcase,
.desktop-showcase,
.feature-hero,
.section {
    border-bottom: 1.5px dashed rgba(59, 130, 246, 0.35);
}

/* --- Nav / Header --- */
.nav                 { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.nav__logo           { border: 1.5px dashed rgba(59, 130, 246, 0.40); padding: 4px 8px; }
.nav__links          { border: 1.5px dashed rgba(59, 130, 246, 0.30); padding: 4px 12px; }
.nav__link           { border: 1.5px dashed rgba(59, 130, 246, 0.35); padding: 4px 8px; }
.nav__cta            { border: 1.5px dashed rgba(59, 130, 246, 0.45); }

/* --- Contact Dropdown --- */
.nav__cta-wrapper    { position: relative; }
.nav__cta-wrapper .nav__cta { cursor: pointer; }
.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1.5px dashed rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-md, 12px);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1001;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.nav__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--gray-800, #1e293b);
    font-size: var(--type-body-sm);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    border-bottom: 1px dashed rgba(59, 130, 246, 0.15);
}
.nav__dropdown-item:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-600, #2563eb);
}
.nav__dropdown-icon {
    width: 16px;
    height: 16px;
    color: var(--blue-400);
    flex-shrink: 0;
}

/* --- Hero --- */
.hero__content       { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.hero__badge         { border: 1.5px dashed rgba(59, 130, 246, 0.45); }
.hero__title         { border: 1.5px dashed rgba(59, 130, 246, 0.35); padding: 8px 12px; }
.hero__subtitle      { border: 1.5px dashed rgba(59, 130, 246, 0.35); padding: 8px 12px; }
.hero__actions       { border: 1.5px dashed rgba(59, 130, 246, 0.35); padding: 12px; }

/* --- Fridge showcase (text side only, NOT the fridge wireframe) --- */
.fridge-showcase__content  { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.fridge-showcase__badge    { border: 1.5px dashed rgba(59, 130, 246, 0.45); }
.fridge-showcase__title    { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.fridge-showcase__desc     { border: 1.5px dashed rgba(59, 130, 246, 0.30); }
.fridge-showcase__cta      { border: 1.5px dashed rgba(59, 130, 246, 0.45); }

/* --- TV showcase (text side only, NOT the TV wireframe) --- */
.tv-showcase__content  { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.tv-showcase__badge    { border: 1.5px dashed rgba(59, 130, 246, 0.45); }
.tv-showcase__title    { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.tv-showcase__desc     { border: 1.5px dashed rgba(59, 130, 246, 0.30); }
.tv-showcase__cards    { border: 1.5px dashed rgba(59, 130, 246, 0.30); }
.tv-showcase__card     { border: 1.5px dashed rgba(59, 130, 246, 0.40); }
.tv-showcase__cta      { border: 1.5px dashed rgba(59, 130, 246, 0.45); }

/* --- Desktop showcase (text side only, NOT the app wireframe) --- */
.desktop-showcase__content { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.desktop-showcase__badge   { border: 1.5px dashed rgba(59, 130, 246, 0.45); }
.desktop-showcase__title   { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.desktop-showcase__desc    { border: 1.5px dashed rgba(59, 130, 246, 0.30); }

/* --- Feature hero (text side only, NOT the mockup wireframe) --- */
.feature-hero__content     { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.feature-hero__badge       { border: 1.5px dashed rgba(59, 130, 246, 0.18); }
.feature-hero__title       { border: 1.5px dashed rgba(59, 130, 246, 0.12); }
.feature-hero__desc        { border: 1.5px dashed rgba(59, 130, 246, 0.10); }
.feature-hero__brands      { border: 1.5px dashed rgba(59, 130, 246, 0.10); }
.feature-hero__gallery     { border: 1.5px dashed rgba(59, 130, 246, 0.12); }
.feature-hero__gallery-img { border: 1.5px dashed rgba(59, 130, 246, 0.15); }

/* --- Services / Bento --- */
.section__header     { border: 1.5px dashed rgba(59, 130, 246, 0.10); }
.section__title      { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.section__subtitle   { border: 1.5px dashed rgba(59, 130, 246, 0.30); }
.bento               { border: 1.5px dashed rgba(59, 130, 246, 0.10); }
.bento__card         { border: 1.5px dashed rgba(59, 130, 246, 0.15); }
.bento__card--featured { border: 1.5px dashed rgba(255, 255, 255, 0.25); }
.bento__badge        { border: 1.5px dashed rgba(59, 130, 246, 0.18); }
.bento__title        { border: 1.5px dashed rgba(59, 130, 246, 0.10); }
.bento__desc         { border: 1.5px dashed rgba(59, 130, 246, 0.08); }
.bento__sm-title     { border: 1.5px dashed rgba(59, 130, 246, 0.10); }
.bento__sm-desc      { border: 1.5px dashed rgba(59, 130, 246, 0.08); }
.bento__notif        { border: 1.5px dashed rgba(59, 130, 246, 0.12); }

/* --- Products --- */
.products            { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.products__item      { border-bottom: 1.5px dashed rgba(59, 130, 246, 0.40); }
.products__item:first-child { border-top: 1.5px dashed rgba(59, 130, 246, 0.40); }
.products__number    { border: 1.5px dashed rgba(59, 130, 246, 0.35); }
.products__body      { border: 1.5px dashed rgba(59, 130, 246, 0.30); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SVG drawable text (JS-injected) */
.text-gradient-svg {
    display: inline-block;
    vertical-align: baseline;
    overflow: visible;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: var(--weight-semibold);
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1.5px dashed rgba(59, 130, 246, 0.45);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    line-height: 1;
    background: transparent;
}

.btn--primary {
    color: var(--blue-600);
}

.btn--primary:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.7);
}

.btn--outline {
    color: var(--gray-800);
}

.btn--outline:hover {
    border-color: rgba(59, 130, 246, 0.7);
    color: var(--blue-600);
    background: rgba(59, 130, 246, 0.05);
}

.btn--sm {
    padding: 10px 22px;
    font-size: var(--type-body-sm);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: relative;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: var(--nav-height);
    transition: box-shadow 0.3s var(--ease);
}

.nav--scrolled {
    box-shadow: none;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    flex-shrink: 0;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 15px;
    font-weight: var(--weight-medium);
    color: var(--gray-500);
    position: relative;
    padding: 4px 0;
    transition: color 0.25s var(--ease);
}

.nav__link:hover,
.nav__link--active {
    color: var(--gray-900);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 100px 0 0;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}


.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: var(--type-body-sm);
    font-weight: var(--weight-semibold);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--blue-100);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(24px) scaleX(0.8);
}

.hero__title {
    font-size: var(--type-display);
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
}

.hero__subtitle {
    font-size: var(--type-body-lg);
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(24px);
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(24px);
}

/* ---- Hero Mockup Frame ---- */
.hero__mockup {
    max-width: 1060px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(32px);
    position: relative;
    z-index: 1;
}

/* Hero frame lines start collapsed for draw-in effect */
.hero__frame-line {
    transform-origin: left center;
    transform: scaleX(0);
}

/* New wireframe elements start hidden for animation */
.hero__frame-product,
.hero__frame-banner,
.hero__frame-search,
.hero__frame-nav-link,
.hero__frame-pagination span {
    opacity: 0;
    transform: translateY(12px);
}

/* Reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {
    .hero__badge,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__mockup {
        opacity: 1;
        transform: none;
    }
    .hero__frame-line {
        transform: scaleX(1);
    }
    .hero__frame-product,
    .hero__frame-banner,
    .hero__frame-search,
    .hero__frame-nav-link,
    .hero__frame-pagination span {
        opacity: 1;
        transform: none;
    }
}

/* ---- Sketch / wireframe style (matches fridge-3d & tv-3d) ---- */
.hero__frame {
    background: transparent;
    border: 1.5px dashed var(--blue-400);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: none;
    overflow: hidden;
}

.hero__frame-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px dashed var(--blue-300);
}

.hero__frame-dots {
    display: flex;
    gap: 8px;
}

.hero__frame-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent !important;
    border: 1.5px dashed var(--blue-400);
}

.hero__frame-url {
    flex: 1;
    height: 32px;
    background: transparent;
    border: 1px dashed var(--blue-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 12px;
    color: var(--blue-400);
    font-family: var(--font);
}

.hero__frame-body {
    background: transparent;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    max-height: 320px;
    overflow: hidden;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
}

.hero__frame-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px dashed var(--blue-200);
    padding-right: 24px;
}

.hero__frame-logo {
    font-weight: var(--weight-extrabold);
    font-size: var(--type-body-sm);
    color: var(--blue-500);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.hero__frame-line {
    height: 10px;
    background: transparent;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 5px;
}

.hero__frame-line--blue {
    background: transparent;
    border-color: var(--blue-400);
}

.hero__frame-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sidebar extras */
.hero__frame-divider {
    border-top: 1px dashed var(--blue-200);
    margin: 4px 0;
}

.hero__frame-section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--blue-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: var(--weight-bold);
}

.hero__frame-filter {
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Nav bar inside wireframe */
.hero__frame-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--blue-200);
}

.hero__frame-nav-link {
    height: 8px;
    width: 48px;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 4px;
}

.hero__frame-nav-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px dashed var(--blue-400);
    margin-left: auto;
}

/* Search bar */
.hero__frame-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px dashed var(--blue-300);
    border-radius: 6px;
    padding: 10px 14px;
    background: transparent;
}

.hero__frame-search-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px dashed var(--blue-400);
    flex-shrink: 0;
}

/* Banner skeleton */
.hero__frame-banner {
    border: 1px dashed rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
}

.hero__frame-banner-btn {
    width: 80px;
    height: 24px;
    border: 1px dashed var(--blue-400);
    border-radius: 4px;
}

/* Product grid */
.hero__frame-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero__frame-product {
    border: 1px dashed rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    box-shadow: none;
}

.hero__frame-product-img {
    aspect-ratio: 1;
    border: 1px dashed rgba(59, 130, 246, 0.25);
    border-radius: 4px;
}

.hero__frame-product-btn {
    height: 20px;
    border: 1px dashed var(--blue-400);
    border-radius: 4px;
    margin-top: auto;
}

/* Pagination */
.hero__frame-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
}

.hero__frame-pagination span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px dashed var(--blue-300);
    background: transparent;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section__title {
    font-size: var(--type-h2-sm);
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: var(--type-body-lg);
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   FRIDGE SHOWCASE — 3D REFRIGERATOR
   ============================================ */
.fridge-showcase {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fridge-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.fridge-showcase__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fridge-showcase__badge {
    display: inline-flex;
    align-items: center;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: var(--type-badge);
    font-weight: var(--weight-semibold);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--blue-100);
    margin-bottom: 24px;
}

.fridge-showcase__title {
    font-size: var(--type-h2-lg);
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.fridge-showcase__desc {
    font-size: var(--type-body-lg);
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.fridge-showcase__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---- 3D Refrigerator ---- */
.fridge-3d {
    perspective: 1200px;
    perspective-origin: 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 3;
}

.fridge-3d__device {
    width: 260px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    transform: none;
    border-radius: 12px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 1;
}

/* Door panel */
.fridge-3d__door {
    position: absolute;
    inset: 6px;
    border-radius: 8px;
    background: transparent;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

/* Freezer compartment (top 30%) */
.fridge-3d__freezer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    border-bottom: 1.5px dashed rgba(59, 130, 246, 0.4);
}

/* Divider line between freezer and fridge */
.fridge-3d__divider {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(59, 130, 246, 0.25);
}

/* Main compartment (bottom 70%) */
.fridge-3d__compartment {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Shelf lines inside fridge compartment */
.fridge-3d__shelves {
    position: absolute;
    top: 30%;
    left: 8%;
    right: 8%;
    bottom: 8%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 28%,
        rgba(59, 130, 246, 0.2) 28%,
        rgba(59, 130, 246, 0.2) 29%
    );
}

/* Handle on right side */
.fridge-3d__handle {
    position: absolute;
    top: 35%;
    right: 4px;
    width: 4px;
    height: 20%;
    border-radius: 2px;
    border: 1px dashed rgba(59, 130, 246, 0.5);
    background: transparent;
}

/* Shadow under the fridge */
.fridge-3d__shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.7;
}

/* Glow behind fridge */
.fridge-3d__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.8;
    z-index: -1;
}

/* ============================================
   LAPTOP SHOWCASE
   ============================================ */
/* ============================================
   TV SHOWCASE
   ============================================ */
.tv-showcase {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tv-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* -- Text content -- */
.tv-showcase__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: var(--type-badge);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 1;
}

.tv-showcase__title {
    font-size: var(--type-h2);
    font-weight: var(--weight-extrabold);
    letter-spacing: -2px;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
    opacity: 1;
}

.tv-showcase__desc {
    font-size: var(--type-body-md);
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 28px;
    opacity: 1;
}

.tv-showcase__cta {
    opacity: 1;
}

/* -- Feature cards -- */
.tv-showcase__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.tv-showcase__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    opacity: 1;
}

.tv-showcase__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
}

.tv-showcase__card-icon--blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.tv-showcase__card-icon--green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.tv-showcase__card-icon--purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.tv-showcase__card-title {
    font-size: var(--type-body-sm);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    line-height: 1.3;
}

.tv-showcase__card-text {
    font-size: var(--type-body-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

/* -- TV visual -- */
.tv-showcase__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-3d {
    perspective: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
}

.tv-3d__device {
    position: relative;
    width: 420px;
    height: 280px;
    border-radius: 10px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.12);
    transform-style: preserve-3d;
    opacity: 1;
}

.tv-3d__bezel {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 22px;
    border-radius: 4px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.tv-3d__screen {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.tv-3d__ir-sensor-dot {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-600);
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}


/* -- TV internals -- */
.tv-3d__internal {
    position: absolute;
    opacity: 1;
    border: 1.5px dashed rgba(59, 130, 246, 0.5);
    background: transparent;
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
}

.tv-3d__internal-label {
    font-family: var(--font-mono);
    font-size: var(--type-label-sm);
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 4px;
    left: 6px;
    white-space: nowrap;
    opacity: 1;
}

/* Power Supply Unit — large, bottom-left */
.tv-3d__internal--psu {
    width: 30%;
    height: 35%;
    bottom: 8%;
    left: 5%;
    top: auto;
    border-radius: 4px;
}

/* Main Board — bottom-center-right */
.tv-3d__internal--mainboard {
    width: 32%;
    height: 35%;
    bottom: 8%;
    right: 5%;
    left: auto;
    top: auto;
    border-radius: 4px;
}

/* T-Con Board — small, top-center */
.tv-3d__internal--tcon {
    width: 22%;
    height: 10%;
    top: 10%;
    left: 39%;
    border-radius: 3px;
}

/* LED Backlight Array — wide strip behind panel */
.tv-3d__internal--led-backlight {
    width: 80%;
    height: 6%;
    top: 24%;
    left: 10%;
    border-radius: 2px;
    border-style: dotted;
    border-width: 1px;
}

/* Ribbon cables — connecting T-Con to main board */
.tv-3d__internal--ribbon {
    width: 12%;
    height: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.25);
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
}

.tv-3d__internal--ribbon-1 {
    top: 35%;
    left: 38%;
}

.tv-3d__internal--ribbon-2 {
    top: 40%;
    left: 50%;
}

/* Speakers — left and right edges */
.tv-3d__internal--speaker {
    width: 5%;
    height: 22%;
    border-radius: 4px;
}

.tv-3d__internal--speaker-left {
    bottom: 12%;
    left: 3%;
    top: auto;
}

.tv-3d__internal--speaker-right {
    bottom: 12%;
    right: 3%;
    left: auto;
    top: auto;
}

/* IR Sensor — small, bottom-center */
.tv-3d__internal--ir-sensor {
    width: 8%;
    height: 6%;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    border-radius: 3px;
}

/* WiFi/Bluetooth Module — near main board */
.tv-3d__internal--wifi {
    width: 10%;
    height: 10%;
    bottom: 46%;
    right: 8%;
    left: auto;
    top: auto;
    border-radius: 3px;
}

/* HDMI Port Cluster — back-right edge */
.tv-3d__internal--hdmi-cluster {
    width: 4%;
    height: 28%;
    top: 36%;
    right: -2%;
    left: auto;
    border-radius: 2px;
    border-right: none;
}

.tv-3d__internal--screw {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.4);
}

/* -- Shadow & Glow -- */
.tv-3d__shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.7;
}

.tv-3d__glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.8;
    z-index: -1;
}

/* -- Wireframe mode -- */
.tv-3d--wireframe .tv-3d__device {
    background: transparent !important;
    border: 1.5px dashed var(--blue-400);
    box-shadow: none !important;
}

.tv-3d--wireframe .tv-3d__bezel {
    background: transparent !important;
    border: 1px dashed var(--blue-300);
}

.tv-3d--wireframe .tv-3d__ir-sensor-dot {
    background: transparent !important;
    border: 1px dashed var(--blue-400);
}


/* -- TV 3-act text structure (parallels phone acts) -- */
.tv-showcase__content {
    position: relative;
}

.tv-showcase__act {
    width: 100%;
}

.tv-showcase__act--1 {
    position: relative;
    z-index: 3;
}

.tv-showcase__act--2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.tv-showcase__act--3 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

/* -- SVG connector lines for horizontal exploded view -- */
.tv-3d__connectors {
    position: absolute;
    top: -150px;
    left: -200px;
    width: calc(100% + 400px);
    height: calc(100% + 300px);
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.tv-3d__connector {
    stroke: rgba(59, 130, 246, 0.35);
    stroke-width: 1;
    stroke-dasharray: 4 3;
    fill: none;
    opacity: 0;
}

/* -- Exploded-view labels (positioned dynamically by JS) -- */
.tv-3d__exploded-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: var(--type-label);
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
    background: transparent;
    padding: 2px 6px;
    border-radius: 3px;
    border: none;
}

/* ============================================
   DESKTOP APP SHOWCASE
   ============================================ */
.desktop-showcase {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.desktop-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* -- Text content -- */
.desktop-showcase__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: var(--type-badge);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 1;
}

.desktop-showcase__title {
    font-size: var(--type-h2);
    font-weight: var(--weight-extrabold);
    letter-spacing: -2px;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
    opacity: 1;
}

.desktop-showcase__desc {
    font-size: var(--type-body-md);
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 28px;
    opacity: 1;
}

/* -- Desktop visual -- */
.desktop-showcase__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-3d {
    perspective: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
}

.desktop-3d__device {
    position: relative;
    width: 220px;
    height: 360px;
    border-radius: 20px;
    background: transparent;
    border: 1.5px dashed rgba(59, 130, 246, 0.5);
    transform-style: preserve-3d;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* -- Corner screws -- */
.desktop-3d__screw {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.35);
    opacity: 1;
}

.desktop-3d__screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 1px;
    background: rgba(59, 130, 246, 0.3);
    transform: translate(-50%, -50%);
}

.desktop-3d__screw--tl { top: 10px; left: 10px; }
.desktop-3d__screw--tr { top: 10px; right: 10px; }
.desktop-3d__screw--bl { bottom: 10px; left: 10px; }
.desktop-3d__screw--br { bottom: 10px; right: 10px; }

/* -- Tweeter (small top circle) -- */
.desktop-3d__tweeter {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: relative;
}

.desktop-3d__tweeter-cone {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: absolute;
}

.desktop-3d__tweeter-dome {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.4);
    opacity: 1;
    position: absolute;
}

/* -- Woofer (large center circle) -- */
.desktop-3d__woofer {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: relative;
}

.desktop-3d__woofer-spider {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.25);
    position: absolute;
    opacity: 1;
}

.desktop-3d__woofer-cone {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    position: absolute;
}

.desktop-3d__woofer-cap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.5);
    opacity: 1;
    position: absolute;
}

/* -- Bass reflex port -- */
.desktop-3d__port {
    width: 70px;
    height: 14px;
    border-radius: 7px;
    border: 1.5px dashed rgba(59, 130, 246, 0.35);
    opacity: 1;
}

/* -- Grille lines -- */
.desktop-3d__grille {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 75%;
    opacity: 1;
}

.desktop-3d__grille-line {
    width: 100%;
    height: 0;
    border-top: 1px dashed rgba(59, 130, 246, 0.2);
}

/* -- Label -- */
.desktop-3d__label {
    font-family: var(--font-mono);
    font-size: var(--type-label-sm);
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0.6;
}

/* -- Shadow & Glow -- */
.desktop-3d__shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.4;
}

.desktop-3d__glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

/* -- Wireframe mode (speaker is already wireframe by default) -- */
.desktop-3d--wireframe .desktop-3d__device {
    background: transparent !important;
    box-shadow: none !important;
}

/* ============================================
   SCROLL-SYNCHRONIZED ANIMATION STAGE
   ============================================ */
.scroll-stage {
    height: 300vh;
    position: relative;
}

.scroll-stage[data-scroll-stage="phone"] {
    height: 500vh;
}

.scroll-stage__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Scroll progress indicator (mobile-only) */
.scroll-stage__sticky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: calc(var(--scroll-progress, 0) * 100%);
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    z-index: 100;
    display: none;
    pointer-events: none;
}

.fridge-showcase--animated,
.tv-showcase--animated,
.desktop-showcase--animated {
    padding: 0;
    overflow: visible;
}

/* ---- Fridge internal components ---- */
.fridge-3d__internal {
    position: absolute;
    opacity: 1;
    border: 1.5px dashed rgba(59, 130, 246, 0.5);
    background: transparent;
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
}

.fridge-3d__internal-label {
    font-family: var(--font-mono);
    font-size: var(--type-label-sm);
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 4px;
    left: 6px;
    white-space: nowrap;
    opacity: 1;
}

/* Compressor — large box at bottom-center */
.fridge-3d__internal--compressor {
    width: 40%;
    height: 14%;
    bottom: 4%;
    left: 30%;
    border-radius: 4px;
}

/* Condenser coils — vertical runs on back-right */
.fridge-3d__internal--condenser {
    width: 18%;
    height: 50%;
    top: 25%;
    right: 6%;
    left: auto;
    border-radius: 3px;
    border-style: dotted;
}

/* Evaporator — inside freezer area, top-center */
.fridge-3d__internal--evaporator {
    width: 60%;
    height: 12%;
    top: 6%;
    left: 20%;
    border-radius: 3px;
}

/* Thermostat — top-center control */
.fridge-3d__internal--thermostat {
    width: 12%;
    height: 5%;
    top: 2%;
    left: 44%;
    border-radius: 50%;
}

/* Fan motor — behind evaporator */
.fridge-3d__internal--fan-motor {
    width: 14%;
    height: 8%;
    top: 8%;
    right: 12%;
    left: auto;
    border-radius: 50%;
}

/* Defrost heater — thin element near evaporator */
.fridge-3d__internal--defrost-heater {
    width: 50%;
    height: 3%;
    top: 20%;
    left: 25%;
    border-radius: 8px;
    border-style: dotted;
}

/* Water filter — middle area, left side */
.fridge-3d__internal--water-filter {
    width: 10%;
    height: 16%;
    top: 42%;
    left: 8%;
    border-radius: 3px;
}

/* Ice maker — top-left, inside freezer */
.fridge-3d__internal--ice-maker {
    width: 22%;
    height: 10%;
    top: 6%;
    left: 6%;
    border-radius: 4px;
}

/* Control PCB — behind top panel */
.fridge-3d__internal--control-pcb {
    width: 30%;
    height: 5%;
    top: 0%;
    left: 8%;
    border-radius: 3px;
    border-top: none;
}

/* Door gasket — runs along the door edge */
.fridge-3d__internal--door-gasket {
    position: absolute;
    inset: 2px;
    border: 1.5px dashed rgba(59, 130, 246, 0.25);
    border-radius: 10px;
}

/* Overload relay — near compressor, bottom-right */
.fridge-3d__internal--overload-relay {
    width: 10%;
    height: 6%;
    bottom: 6%;
    right: 15%;
    left: auto;
    border-radius: 3px;
}

.fridge-3d__internal--screw {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.4);
}

.fridge-3d__internal--coolant-line {
    width: 30%;
    height: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.25);
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
}

/* ---- Wireframe transition mode ---- */
.fridge-3d--wireframe .fridge-3d__device {
    background: transparent !important;
    border: 1.5px dashed var(--blue-400);
    box-shadow: none !important;
}

.fridge-3d--wireframe .fridge-3d__door {
    background: transparent !important;
    border: 1px dashed var(--blue-300);
}

/* ---- SVG connector lines for exploded view ---- */
.fridge-3d__connectors {
    position: absolute;
    left: -200px;
    top: -250px;
    width: calc(100% + 400px);
    height: calc(100% + 500px);
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.fridge-3d__connector {
    stroke: rgba(59, 130, 246, 0.35);
    stroke-width: 0.75;
    fill: none;
    opacity: 0;
}

/* ---- Exploded view label positioning ---- */
.fridge-3d__exploded-label {
    font-family: var(--font-mono);
    font-size: var(--type-label);
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 11;
}

/* ---- Fridge showcase act text layers (stacked) ---- */
.fridge-showcase__content {
    position: relative;
}

.fridge-showcase__act {
    width: 100%;
}

.fridge-showcase__act--1 {
    position: relative;
    z-index: 3;
}

.fridge-showcase__act--2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.fridge-showcase__act--3 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

/* ---- GPU acceleration for scroll animations (scoped to active stages) ---- */
.scroll-stage--active .fridge-3d__device,
.scroll-stage--active .fridge-3d__door,
.scroll-stage--active .fridge-3d__internal,
.scroll-stage--active .tv-3d__device,
.scroll-stage--active .tv-3d__screen,
.scroll-stage--active .tv-3d__bezel,
.scroll-stage--active .tv-3d__internal,
.scroll-stage--active .tv-3d__connector,
.scroll-stage--active .tv-3d__exploded-label,
.scroll-stage--active .desktop-3d__device {
    will-change: transform, opacity;
}

/* ---- Fridge showcase text starts hidden for scroll animation ---- */
.fridge-showcase--animated .fridge-showcase__badge,
.fridge-showcase--animated .fridge-showcase__title,
.fridge-showcase--animated .fridge-showcase__desc,
.fridge-showcase--animated .fridge-showcase__cta {
    opacity: 1;
}

.tv-showcase--animated .tv-showcase__badge,
.tv-showcase--animated .tv-showcase__title,
.tv-showcase--animated .tv-showcase__desc {
    opacity: 1;
}

/* ============================================
   FEATURE HERO — SPLIT SECTIONS
   ============================================ */
.feature-hero {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

/* Reversed layout */
.feature-hero--reverse .feature-hero__inner {
    grid-template-columns: 1.15fr 1fr;
    direction: rtl;
}

.feature-hero--reverse .feature-hero__inner > * {
    direction: ltr;
}

/* Content side */
.feature-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-hero__badge {
    display: inline-flex;
    align-items: center;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: var(--type-badge);
    font-weight: var(--weight-semibold);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--blue-100);
    margin-bottom: 24px;
}

.feature-hero__title {
    font-size: var(--type-h2-lg);
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.feature-hero__desc {
    font-size: var(--type-body-lg);
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Brand tags */
.feature-hero__brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.feature-hero__brands span {
    display: inline-flex;
    padding: 6px 16px;
    font-size: var(--type-badge);
    font-weight: var(--weight-semibold);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill);
    background: var(--white);
}

/* ---- Visual side ---- */
.feature-hero__visual {
    position: relative;
}

/* --- Mockup visual (Feature 1 — task list) --- */
.feature-hero__mockup {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.feature-hero__mockup-header {
    display: flex;
    gap: 8px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.feature-hero__mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.feature-hero__mockup-body {
    padding: 12px 0;
}

.feature-hero__mockup-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    transition: background 0.2s var(--ease);
}

.feature-hero__mockup-row--active {
    background: var(--blue-50);
}

.feature-hero__mockup-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    flex-shrink: 0;
}

.feature-hero__mockup-icon--blue {
    background: var(--blue-100);
}

.feature-hero__mockup-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-hero__mockup-line {
    height: 10px;
    background: var(--gray-200);
    border-radius: 5px;
}

.feature-hero__mockup-line--light {
    background: var(--gray-100);
    height: 8px;
}

.feature-hero__mockup-line--blue {
    background: var(--blue-200);
}

.feature-hero__mockup-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue-500);
    flex-shrink: 0;
    position: relative;
}

.feature-hero__mockup-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translate(-50%, -60%) rotate(-45deg);
}

.feature-hero__mockup-progress {
    width: 80px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-hero__mockup-progress-bar {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 3px;
}

.feature-hero__mockup-pending {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    flex-shrink: 0;
}

/* --- Gallery visual (Feature 2 — image placeholders) --- */
.feature-hero__gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
}

.feature-hero__gallery-img {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius-lg);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-hero__gallery-img span {
    font-size: var(--type-body-sm);
    font-weight: var(--weight-medium);
    color: var(--gray-400);
}

.feature-hero__gallery-img--lg {
    grid-row: span 2;
    min-height: 292px;
}

/* ============================================
   BENTO GRID — SERVICES
   ============================================ */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Stagger children on reveal instead of fading the whole grid */
.bento.reveal {
    opacity: 1;
    transform: none;
}

.bento .bento__card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.bento.visible .bento__card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i, 0) * 0.12s);
}

.bento__card {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Featured — blue gradient */
.bento__card--featured {
    grid-column: 1 / -1;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    position: relative;
}

.bento__card--featured::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bento__badge {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: var(--type-badge);
    font-weight: var(--weight-semibold);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.bento__title {
    font-size: var(--type-h3);
    font-weight: var(--weight-extrabold);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.bento__desc {
    font-size: var(--type-body-md);
    opacity: 0.85;
    line-height: 1.65;
    margin-bottom: 24px;
}

.bento__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: var(--weight-semibold);
    font-size: var(--type-body-md);
    color: var(--white);
    transition: gap 0.25s var(--ease);
}

/* Image card */
.bento__card--image {
    min-height: 220px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.bento__placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: var(--type-body-md);
    font-weight: var(--weight-medium);
}

/* Stat card */
.bento__card--stat {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Detail cards (Auth + Support) */
.bento__card--detail {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.6);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.bento__notif {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-100);
}

.bento__notif-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-500);
    flex-shrink: 0;
}

.bento__notif-title {
    font-size: var(--type-body-sm);
    font-weight: var(--weight-semibold);
    color: var(--gray-800);
}

.bento__notif-sub {
    font-size: var(--type-body-xs);
    color: var(--gray-400);
}

.bento__sm-title {
    font-size: var(--type-h4);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.bento__sm-desc {
    font-size: var(--type-body-sm);
    color: var(--gray-500);
    line-height: 1.6;
}


/* ============================================
   PRODUCTS — NUMBERED LIST (NO CARDS)
   ============================================ */
.products {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.products__item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
}

.products__item:first-child {
    border-top: 1px solid var(--gray-200);
}

.products__number {
    font-size: var(--type-body-sm);
    font-weight: var(--weight-bold);
    color: var(--gray-400);
    min-width: 28px;
    font-variant-numeric: tabular-nums;
}

.products__body {
    flex: 1;
}

.products__title {
    font-size: var(--type-h4);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.products__desc {
    font-size: var(--type-body-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    /* Scroll stage */
    .scroll-stage {
        height: 280vh;
    }

    /* Fridge showcase */
    .fridge-showcase__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    /* TV showcase */
    .tv-showcase__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    /* Desktop showcase */
    .desktop-showcase__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    /* Feature hero */
    .feature-hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .feature-hero--reverse .feature-hero__inner {
        grid-template-columns: 1fr 1fr;
    }

}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    /* Nav mobile */
    .nav__links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .nav--open .nav__links {
        display: flex;
    }

    .nav__link {
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }

    .nav__link:last-child {
        border-bottom: none;
    }

    .nav__cta-wrapper {
        display: none;
    }

    .nav--open .nav__cta-wrapper {
        display: block;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .nav--open .nav__cta-wrapper .nav__cta {
        display: none;
    }

    .nav--open .nav__cta-wrapper .nav__dropdown {
        display: flex;
        flex-direction: column;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: unset;
        background: transparent;
    }

    .nav--open .nav__cta-wrapper .nav__dropdown-item {
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 0.95rem;
    }

    .nav--open .nav__cta-wrapper .nav__dropdown-item:last-child {
        border-bottom: none;
    }

    .nav__hamburger {
        display: flex;
    }

    /* Hamburger animation */
    .nav--open .nav__hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav--open .nav__hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav--open .nav__hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Scroll stage — mobile */
    .scroll-stage {
        height: 250vh;
    }

    .scroll-stage__sticky::after {
        display: block;
    }

    .scroll-stage__sticky {
        touch-action: pan-y;
    }

    /* Fridge showcase */
    .fridge-showcase:not(.fridge-showcase--animated) {
        padding: 72px 0;
    }

    .fridge-showcase__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fridge-showcase__visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .fridge-3d__device {
        width: 220px;
        height: 360px;
        border-radius: 10px;
    }

    .fridge-3d {
        perspective: 900px;
    }

    /* TV showcase */
    .tv-showcase:not(.tv-showcase--animated) {
        padding: 72px 0;
    }

    .tv-showcase__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tv-showcase__visual {
        max-width: 360px;
        margin: 0 auto;
    }

    .tv-3d__device {
        width: 340px;
        height: 226px;
    }

    .tv-3d {
        perspective: 800px;
    }

    /* Center text on mobile */
    .fridge-showcase__content {
        align-items: center;
        text-align: center;
    }

    .fridge-showcase__desc {
        max-width: none;
    }

    .tv-showcase__content {
        align-items: center;
        text-align: center;
    }

    .tv-showcase__cards {
        width: 100%;
    }

    /* Desktop showcase */
    .desktop-showcase:not(.desktop-showcase--animated) {
        padding: 72px 0;
    }

    .desktop-showcase__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .desktop-showcase__visual {
        max-width: 340px;
        margin: 0 auto;
    }

    .desktop-3d__device {
        width: 180px;
        height: 300px;
    }

    .desktop-3d__woofer {
        width: 110px;
        height: 110px;
    }

    .desktop-3d__woofer-cone {
        width: 70px;
        height: 70px;
    }

    .desktop-3d__woofer-cap {
        width: 24px;
        height: 24px;
    }

    .desktop-3d__tweeter {
        width: 48px;
        height: 48px;
    }

    .desktop-3d__tweeter-dome {
        width: 22px;
        height: 22px;
    }

    .desktop-3d {
        perspective: 800px;
    }

    .desktop-showcase__content {
        align-items: center;
        text-align: center;
    }

    /* Scale glow/shadow for mobile */
    .fridge-3d__glow {
        width: 200px;
        height: 200px;
    }

    .fridge-3d__shadow {
        width: 160px;
    }

    .tv-3d__glow {
        width: 300px;
        height: 300px;
    }

    .tv-3d__shadow {
        width: 240px;
    }

    .desktop-3d__glow {
        width: 300px;
        height: 300px;
    }

    .desktop-3d__shadow {
        width: 220px;
    }

    /* Internal labels readability */
    .fridge-3d__internal-label,
    .tv-3d__internal-label {
        font-size: 8px;
    }

    /* Hide fine details at small size */
    .fridge-3d__internal--screw,
    .fridge-3d__internal--coolant-line,
    .fridge-3d__internal--door-gasket {
        display: none;
    }

    /* Feature hero */
    .feature-hero {
        padding: 72px 0;
    }

    .feature-hero__inner,
    .feature-hero--reverse .feature-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        direction: ltr;
    }

    .feature-hero__title {
        letter-spacing: -1.5px;
    }

    .feature-hero__desc {
        max-width: none;
    }

    /* Hero */
    .hero {
        padding: 48px 0 0;
    }

    .hero__title {
        letter-spacing: -1.5px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__frame-body {
        grid-template-columns: 1fr;
        min-height: 280px;
    }

    .hero__frame-sidebar {
        display: none;
    }

    .hero__frame-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__frame-banner {
        display: none;
    }

    /* Sections */
    .section {
        padding: 72px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

    /* Bento */
    .bento {
        grid-template-columns: 1fr;
    }

    .bento__card--featured {
        grid-column: auto;
        min-height: 240px;
        padding: 36px;
    }

    .bento__card--image {
        min-height: 200px;
    }

    .bento__placeholder {
        min-height: 200px;
    }

    /* Products */
    .products__item {
        gap: 16px;
    }

    .products__desc {
        font-size: var(--type-body-xs);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Touch targets — hamburger 44px minimum */
    .nav__hamburger {
        padding: 14px 11px;
    }

    /* Scroll stage — fix iOS Safari 100vh */
    .scroll-stage__sticky {
        height: 100vh;
        height: 100dvh;
    }

    /* Performance — hide background grid on mobile */
    .page-bg__grid {
        display: none;
    }

}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .scroll-stage {
        height: 200vh;
    }

    .fridge-3d__device {
        width: 180px;
        height: 290px;
        border-radius: 8px;
    }

    .fridge-3d {
        perspective: 800px;
    }

    .tv-3d__device {
        width: 280px;
        height: 186px;
    }

    .tv-3d {
        perspective: 700px;
    }

    .desktop-3d__device {
        width: 150px;
        height: 250px;
        gap: 14px;
    }

    .desktop-3d__woofer {
        width: 90px;
        height: 90px;
    }

    .desktop-3d__woofer-cone {
        width: 56px;
        height: 56px;
    }

    .desktop-3d__woofer-cap {
        width: 20px;
        height: 20px;
    }

    .desktop-3d__tweeter {
        width: 40px;
        height: 40px;
    }

    .desktop-3d__tweeter-dome {
        width: 18px;
        height: 18px;
    }

    .desktop-3d__port {
        width: 50px;
        height: 10px;
    }

    .desktop-3d {
        perspective: 700px;
    }

    /* Further scale glow/shadow */
    .fridge-3d__glow {
        width: 160px;
        height: 160px;
    }

    .fridge-3d__shadow {
        width: 120px;
    }

    .tv-3d__glow {
        width: 240px;
        height: 240px;
    }

    .tv-3d__shadow {
        width: 200px;
    }

    .desktop-3d__glow {
        width: 180px;
        height: 180px;
    }

    .desktop-3d__shadow {
        width: 160px;
    }

    .fridge-showcase__visual {
        max-width: 280px;
    }

    .hero__badge {
        font-size: var(--type-body-xs);
        padding: 6px 14px;
    }

    .bento__title {
        font-size: 22px; /* responsive step-down from var(--type-h3): 28px */
    }

    .bento__card--featured {
        padding: 28px;
    }



}

/* ============================================
   ACCESSIBILITY — Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .hero__badge,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__mockup {
        animation: none;
    }


    .fridge-3d__device {
        opacity: 1 !important;
        transform: none !important;
    }

    .fridge-3d__shadow {
        opacity: 0.7 !important;
    }

    .desktop-3d__device {
        opacity: 1 !important;
        transform: none !important;
    }

    .desktop-3d__screw,
    .desktop-3d__tweeter,
    .desktop-3d__tweeter-cone,
    .desktop-3d__tweeter-dome,
    .desktop-3d__woofer,
    .desktop-3d__woofer-spider,
    .desktop-3d__woofer-cone,
    .desktop-3d__woofer-cap,
    .desktop-3d__port,
    .desktop-3d__grille,
    .desktop-3d__glow,
    .desktop-3d__shadow {
        opacity: 1 !important;
        transform: none !important;
    }

    .desktop-3d__label {
        opacity: 0.6 !important;
    }

    .desktop-showcase__badge,
    .desktop-showcase__title,
    .desktop-showcase__desc {
        opacity: 1 !important;
        transform: none !important;
    }

    .fridge-3d__glow {
        opacity: 0.8 !important;
    }

    /* TV showcase — reduced motion */
    .tv-3d__device {
        opacity: 1 !important;
        transform: none !important;
    }

    .tv-3d__screen {
        opacity: 1 !important;
    }

    .tv-3d__shadow {
        opacity: 0.7 !important;
    }

    .tv-3d__glow {
        opacity: 0.8 !important;
    }

    .tv-showcase__badge,
    .tv-showcase__title,
    .tv-showcase__desc,
    .tv-showcase__cta {
        opacity: 1 !important;
        transform: none !important;
    }

    .tv-showcase__card {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Scroll stage — no tall scroll, show normally */
    .scroll-stage {
        height: auto;
    }

    .scroll-stage__sticky {
        position: relative;
        height: auto;
    }

    .fridge-showcase--animated,
    .tv-showcase--animated,
    .desktop-showcase--animated {
        padding: 100px 0;
    }

    /* Show all fridge showcase text */
    .fridge-showcase--animated .fridge-showcase__badge,
    .fridge-showcase--animated .fridge-showcase__title,
    .fridge-showcase--animated .fridge-showcase__desc,
    .fridge-showcase--animated .fridge-showcase__cta {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Show wireframe components statically (no animation) */
    .fridge-3d__internal,
    .tv-3d__internal {
        opacity: 1 !important;
    }

    .fridge-3d__internal-label,
    .tv-3d__internal-label {
        opacity: 1 !important;
    }
}
