body.loading {
    overflow: hidden;
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

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

.loader-logo {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    animation: loaderPulse 2s infinite ease-in-out;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.loader-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 200px;
}

#load-percent {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

#load-percent::after {
    content: '%';
}

.progress-bar-wrap {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.loader-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    opacity: 0.4;
    margin-top: 2rem;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff4d00;
    --font-primary: 'GT America Trial', 'Outfit', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

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

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.logo-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.pill-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pill-btn.white {
    background: #fff;
    color: #000;
}

.pill-btn .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.pill-btn.white .dots {
    letter-spacing: 0;
    font-weight: 900;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 800vh;
    /* Increased for cinematic pacing */
    background: var(--bg-color);
}

.canvas-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 80%, rgba(255, 77, 0, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
}

#sequence-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Content */
.hero-content {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
    margin-top: -100vh;
    /* Overlay on top of canvas-container */
}

.hero-content h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    line-height: 0.85;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin: 0;
}

.text-left {
    position: absolute;
    top: 20%;
    left: 8%;
    width: 35%;
}

.text-right {
    position: absolute;
    top: 45%;
    right: 8%;
    width: 35%;
    text-align: right;
}

.text-bottom-left {
    position: absolute;
    bottom: 12%;
    left: 8%;
    max-width: 380px;
}

.text-bottom-left h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.text-bottom-left .line {
    width: 80px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--text-color), var(--text-color) 4px, transparent 4px, transparent 8px);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.text-bottom-left p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}


/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

/* Technical Callouts */
.technical-content {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 15;
    margin-top: -100vh;
}

.callout {
    position: absolute;
    display: flex;
    align-items: center;
    opacity: 0;
}

.callout.left {
    left: 5%;
    transform: translateX(-50px);
}

.callout.right {
    right: 5%;
    transform: translateX(50px);
}

.callout-text {
    font-size: 1rem;
    /* Increased font size */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    color: #fff;
}

.callout.left .callout-text {
    padding-right: 1.5rem;
}

.callout.right .callout-text {
    padding-left: 1.5rem;
}

.callout-line {
    width: 250px;
    /* Longer lines */
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.callout-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Anchor dot at the end of the line (shoe side) */
.callout.left .callout-line::after {
    right: 0;
}

.callout.right .callout-line::after {
    left: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    /* White base for difference blending */
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.cursor-hover {
    transform: scale(3);
    background: var(--accent-color) !important;
    mix-blend-mode: normal !important;
    box-shadow: 0 0 20px var(--accent-color) !important;
}

/* Optional: if you want it white only on the dark hero section, 
   we can add a specific class in JS, but black works well globally here. */

/* Numeric Progress Indicator */
#scroll-progress {
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 1000;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 2px;
}

#scroll-progress .current-progress {
    color: var(--accent-color);
    font-size: 1.2rem;
}

#scroll-progress::after {
    content: '/';
    opacity: 0.3;
    margin: 0 2px;
}

#scroll-progress .total-progress {
    opacity: 0.4;
}

/* Menu Overlay */
#menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: flex-end;
}

.menu-container {
    width: 400px;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.menu-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    color: #000;
}

.nav-card {
    padding-bottom: 3.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu li a {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu .dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.newsletter-card h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.input-group {
    background: #f4f4f9;
    border-radius: 20px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    outline: none;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.labs-card {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
}

.labs-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.labs-logo {
    font-size: 2.5rem;
    line-height: 1;
}

.arrow-up-right {
    font-size: 1.8rem;
}

/* Product Showcase Section */
#product-showcase {
    width: 100%;
    min-height: 100vh;
    background: #000;
    padding: 0;
    /* Removed padding */
    position: relative;
    z-index: 10;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Removed gap */
    height: 100vh;
    /* Full screen height */
}

.product-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    /* Removed border-radius */
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.image-wrapper {
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), filter 1s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
    z-index: 2;
    opacity: 0;
    /* Fully hidden by default */
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.text-group h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1;
}

.text-group p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-arrow {
    width: 60px;
    height: 60px;
    color: #fff;
    transform: rotate(-45deg);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Effects */
.product-card:hover .image-wrapper img {
    transform: scale(1.05);
    filter: grayscale(1);
    /* Added grayscale effect */
}

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

.product-card:hover .card-arrow {
    transform: rotate(0deg);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .product-card {
        height: 80vh;
    }

    .card-content {
        opacity: 1;
        transform: translateY(0);
        padding: 2rem;
    }
}

/* Gallery Scatter Section */
#gallery-scatter {
    width: 100%;
    height: 100vh;
    background: #000;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.gallery-info {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    pointer-events: none;
}

.gallery-img {
    position: absolute;
    width: 350px;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 6;
}

/* Stats Section */
#stats-section {
    width: 100%;
    padding: 10rem 2%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
}

.collab-container {
    width: 100%;
    margin-bottom: 6rem;
}

.collab-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 3rem;
    font-family: serif;
    font-style: italic;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.logo-item {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    transition: opacity 0.3s ease;
}

.stats-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 2rem;
}

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

.stat-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.stat-desc {
    font-size: 0.9rem;
    max-width: 220px;
    opacity: 0.6;
    line-height: 1.4;
    font-family: serif;
    font-style: italic;
    color: #fff;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* Dual Showcase Section */
#dual-showcase {
    width: 100%;
    padding: 2rem 1%;
    background: #000;
    position: relative;
    z-index: 5;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.showcase-card {
    background: #111;
    border-radius: 40px;
    padding: 3rem;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.showcase-visuals {
    height: 60%;
    width: 100%;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.v-item {
    border-radius: 20px;
    overflow: hidden;
    background: #222;
}

.v-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.i2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.i3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.i4 { grid-column: 4 / 5; grid-row: 2 / 3; }

.visual-grid.secondary {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}
.i5 { grid-column: 1 / 2; }
.i6 { grid-column: 2 / 3; }

.showcase-content {
    padding-top: 2rem;
    position: relative;
}

.showcase-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    max-width: 90%;
}

.showcase-content p {
    font-size: 1.1rem;
    opacity: 0.6;
    max-width: 80%;
    line-height: 1.5;
    color: #fff;
}

.plus-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plus-btn svg {
    width: 32px;
    height: 32px;
}

.plus-btn:hover {
    transform: scale(1.1) rotate(90deg);
}

.callout.left {
    left: 2%;
    transform: translateX(-50px);
}

.callout.right {
    right: 2%;
    transform: translateX(50px);
}

/* Product List Section */
#product-list-section {
    width: 100%;
    padding: 10rem 0;
    background: #000;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.list-item {
    width: 100%;
    padding: 2.5rem 2%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.list-item:hover {
    background-color: #ff3c00; /* Brand Red */
}

.item-name {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.item-arrow {
    font-size: 3rem;
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.list-item:hover .item-name {
    transform: translateX(20px);
}

.list-item:hover .item-arrow {
    opacity: 1;
    transform: translate(10px, -10px);
}

/* Floating Preview */
.hover-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 450px;
    height: 550px;
    pointer-events: none;
    z-index: 2000;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    scale: 0.5; /* Default scale */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full Feature Section */
#full-feature {
    width: 100vw;
    height: 100vh;
    background: url('gallery/shose 2.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    margin: 0;
}

#full-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 60, 0, 0.3);
    z-index: 1;
}

.feature-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: #000;
    opacity: 0.9;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.5vw;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

.feature-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 4;
    color: #fff;
}

.feature-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
}

/* Main Footer Styles */
#main-footer {
    width: 100vw;
    margin: 0;
    padding: 5rem 5% 5rem;
    background: #ff3c00;
    color: #000;
    z-index: 5;
    position: relative;
    font-weight: 600;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-row.middle {
    align-items: flex-start;
    padding: 3rem 0;
}

.label {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.row-content {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.sub-label {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.footer-link {
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.4;
    max-width: 800px;
}

.footer-massive {
    width: 100%;
    text-align: center;
    padding: 5rem 0;
}

.footer-massive h1 {
    font-size: 20vw;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -1vw;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.clock-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.city {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.time {
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-row { flex-direction: column; gap: 1rem; }
    .row-content { width: 100%; }
    .about-text { font-size: 1.1rem; }
    .footer-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}


@media (max-width: 1200px) {
    .showcase-content h2 { font-size: 2.5rem; }
}

@media (max-width: 1024px) {
    .showcase-container { grid-template-columns: 1fr; }
    .showcase-card { height: auto; padding: 2rem; }
    .visual-grid { height: 400px; }
}

@media (max-width: 768px) {

    .text-left,
    .text-right,
    .text-bottom-left {
        width: 90%;
        position: relative;
        top: auto;
        left: 5%;
        right: auto;
        margin-top: 2rem;
    }

    .hero-content {
        position: relative;
        height: auto;
        padding-top: 100vh;
    }

    .text-right {
        text-align: left;
    }
}