:root {
    --bg: #070707;
    --ink: #f2eee7;
    --muted: #9c9992;
    --line: rgba(255, 255, 255, .13);
    --line-soft: rgba(255, 255, 255, .08);
    --accent: #015ea5;
    --orange: #d7793a;
    --panel: #0c0c0c;
    --max: 1440px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: auto;
    background: var(--bg)
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, system-ui, sans-serif;
    overflow-x: hidden
}

body.is-loading {
    overflow: hidden
}

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

button,
input {
    font: inherit;
    color: inherit
}

button {
    background: none;
    border: 0;
    cursor: pointer
}

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

::selection {
    background: var(--accent);
    color: #050505
}

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

.gridlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .17;
    background: linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .06) 50%, transparent calc(50% + .5px));
}

.container {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    position: relative;
    z-index: 2
}

/* PRELOADER */
.preloader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 100;
    display: grid;
    place-items: center;
    transition: opacity .9s var(--ease), visibility .9s
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.loader-mark {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center
}

.loader-logo {
    font-family: 'Barlow Condensed';
    font-weight: 900;
    font-size: clamp(54px, 8vw, 120px);
    letter-spacing: -.06em;
    line-height: .85
}

.loader-bar {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden
}

.loader-bar i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 1.8s var(--ease)
}

/* CURSOR */
.cursor-dot,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 80;
    border-radius: 50%;
    mix-blend-mode: difference
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    transform: translate(-50%, -50%)
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .9);
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, border-color .25s
}

body.cursor-hover .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: var(--accent)
}

@media (pointer:coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none
    }
}

/* NAV */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 18px 0;
    transition: transform .45s var(--ease), background .45s
}

.nav-wrap.scrolled {
    background: rgba(7, 7, 7, .76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-soft)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed';
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -.03em;
    line-height: .8
}

.brand .slash {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--accent);
    transform: skew(-32deg);
    margin-top: 7px
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-family: 'DM Mono';
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #d2d0ca
}

.nav-links a {
    position: relative;
    padding: 10px 0
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 1px;
    background: var(--accent);
    transition: right .35s var(--ease)
}

.nav-links a:hover:after {
    right: 0
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.nav-pill {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: 'DM Mono';
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: .35s var(--ease)
}

.nav-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px)
}

.cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.cart-btn svg {
    width: 16px
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -1px;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--accent);
    color: #050505;
    font-size: 8px;
    font-weight: 800;
    display: grid;
    place-items: center
}

.mobile-menu {
    display: none
}

/* HERO */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 130px 0 64px
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
    filter: grayscale(.25) contrast(1.04) brightness(.62);
    transform: scale(1)
}

.hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 35%, transparent 0 16%, rgba(0, 0, 0, .34) 58%, #070707 100%), linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .34) 48%, rgba(0, 0, 0, .18) 100%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 0 24px;
    opacity: .18
}

.hero-grid span {
    border-left: 1px solid rgba(255, 255, 255, .08)
}

.hero-copy {
    max-width: 760px;
    position: relative;
    z-index: 3
}

.eyebrow {
    font-family: 'DM Mono';
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b8b6af;
    display: flex;
    align-items: center;
    gap: 12px
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent)
}

.hero h1 {
    margin: 22px 0 24px;
    font-family: 'Barlow Condensed';
    font-size: clamp(72px, 10.4vw, 174px);
    line-height: .82;
    letter-spacing: -.045em;
    text-transform: uppercase;
    font-weight: 800;
    max-width: 940px
}

.hero h1 .ghost {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .72)
}

.hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #c1beb7;
    max-width: 460px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-transform: uppercase;
    font-family: 'DM Mono';
    font-size: 10px;
    letter-spacing: .1em;
    overflow: hidden;
    transition: .45s var(--ease)
}

.btn:before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateY(101%);
    background: var(--accent);
    transition: transform .45s var(--ease);
    z-index: -1
}

.btn:hover {
    color: #050505;
    border-color: var(--accent);
    transform: translateY(-2px)
}

.btn:hover:before {
    transform: none
}

.btn.primary {
    background: var(--ink);
    color: #050505;
    border-color: var(--ink)
}

.btn.primary:before {
    background: var(--accent)
}

.hero-meta {
    position: absolute;
    right: 24px;
    bottom: 68px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    z-index: 3;
    font-family: 'DM Mono';
    font-size: 9px;
    color: #a7a49c;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero-meta strong {
    font-size: 10px;
    color: #fff
}

.scroll-cue {
    position: absolute;
    right: 24px;
    bottom: 0;
    height: 70px;
    width: 1px;
    background: linear-gradient(#fff, transparent);
    opacity: .55
}

.scroll-cue span {
    position: absolute;
    right: 10px;
    top: 6px;
    white-space: nowrap;
    font-family: 'DM Mono';
    font-size: 8px;
    letter-spacing: .15em;
    transform: rotate(90deg);
    transform-origin: right top;
    color: #aaa
}

/* MARQUEE */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    background: #0a0a0a
}

.marquee-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    min-width: max-content;
    animation: marquee 26s linear infinite
}

.marquee-item {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: .01em;
    color: #d2d0cb;
    display: flex;
    align-items: center;
    gap: 36px
}

.marquee-item b {
    color: var(--accent);
    font-size: 15px
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

/* SHOP */
.section {
    padding: 140px 0
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px
}

.kicker {
    font-family: 'DM Mono';
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8f8d88
}

.section-title {
    font-family: 'Barlow Condensed';
    font-weight: 800;
    font-size: clamp(56px, 8vw, 110px);
    line-height: .84;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 16px 0 0;
    max-width: 760px
}

.section-title .accent {
    color: var(--accent)
}

.section-note {
    max-width: 300px;
    color: #8f8d88;
    font-size: 12px;
    line-height: 1.7
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.product-card {
    position: relative;
    border: 1px solid var(--line-soft);
    background: #0b0b0b;
    overflow: hidden;
    transition: transform .6s var(--ease), border-color .35s
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 255, 62, .4)
}

.product-media {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1c1c1c, #080808)
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(.72);
    transition: transform 1s var(--ease), filter .7s
}

.product-card:hover .product-media img {
    transform: scale(1.06);
    filter: contrast(1.1) saturate(.9)
}

.product-sheen {
    position: absolute;
    inset: -50%;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .18) 50%, transparent 58%);
    transform: translateX(-60%) rotate(8deg);
    transition: transform 1s var(--ease)
}

.product-card:hover .product-sheen {
    transform: translateX(60%) rotate(8deg)
}

.tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 8px;
    background: rgba(0, 0, 0, .56);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .14);
    font-family: 'DM Mono';
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.product-info {
    padding: 18px 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end
}

.product-name {
    font-family: 'Barlow Condensed';
    font-size: 24px;
    text-transform: uppercase;
    line-height: .9
}

.product-sub {
    font-size: 10px;
    color: #898780;
    margin-top: 8px;
    line-height: 1.5
}

.price {
    font-family: 'DM Mono';
    font-size: 11px;
    color: #d0cdc5;
    white-space: nowrap
}

.add-btn {
    margin-top: 14px;
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--line);
    font-family: 'DM Mono';
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: .35s var(--ease)
}

.add-btn:hover {
    background: var(--accent);
    color: #050505;
    border-color: var(--accent)
}

/* EDITORIAL */
.editorial {
    padding-top: 20px
}

.editorial-frame {
    position: relative;
    min-height: 760px;
    border: 1px solid var(--line-soft);
    overflow: hidden;
    background: #101010
}

.editorial-bg {
    position: absolute;
    inset: 0
}

.editorial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    filter: brightness(.56) grayscale(.25);
    transform: scale(1.06)
}

.editorial-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #060606 2%, rgba(6, 6, 6, .76) 34%, rgba(6, 6, 6, .16) 72%, rgba(6, 6, 6, .44) 100%), linear-gradient(0deg, #070707, transparent 25%)
}

.editorial-content {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 70px 64px
}

.editorial-copy {
    max-width: 670px
}

.editorial-copy h2 {
    font-family: 'Barlow Condensed';
    font-size: clamp(64px, 9vw, 138px);
    line-height: .77;
    letter-spacing: -.05em;
    text-transform: uppercase;
    margin: 18px 0 24px
}

.editorial-copy p {
    max-width: 450px;
    color: #b7b4ad;
    line-height: 1.7;
    font-size: 14px
}

.editorial-number {
    font-family: 'Barlow Condensed';
    font-size: 20vw;
    line-height: .7;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .15);
    user-select: none
}

/* CULTURE */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.culture-card {
    min-height: 680px;
    border: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
    background: #0a0a0a
}

.culture-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.5) contrast(1.05) brightness(.66);
    transition: transform 1.1s var(--ease), filter .7s
}

.culture-card:hover img {
    transform: scale(1.06);
    filter: grayscale(.1) contrast(1.06) brightness(.72)
}

.culture-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .78) 80%, #070707)
}

.culture-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.culture-index {
    font-family: 'DM Mono';
    font-size: 9px;
    letter-spacing: .16em;
    color: #bbb7b0
}

.culture-overlay h3 {
    font-family: 'Barlow Condensed';
    font-size: 68px;
    line-height: .8;
    text-transform: uppercase;
    margin: 0;
    max-width: 420px;
    letter-spacing: -.045em
}

.culture-overlay p {
    max-width: 380px;
    color: #bdbab3;
    font-size: 12px;
    line-height: 1.7
}

.culture-link {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'DM Mono';
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent)
}

/* =========================================================
   3D BASKETBALL SECTION CONTAINER
   ========================================================= */

   .orb-section {
    position: relative;
    width: 100%;
    padding: 120px 0 100px;
    overflow: hidden;
    box-sizing: border-box;
}

.orb-wrap {
    position: relative;
    width: 100%;
    max-width: 1300px;
    min-height: 640px;
    margin: 0 auto;
    /* Cambiamos de Grid a Flex para mejor control en móvil */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* =========================================================
   COPY
   ========================================================= */

.orb-copy {
    position: absolute;
    z-index: 10;
    left: clamp(20px, 5vw, 60px);
    top: 15%; /* Bajamos ligeramente para centrarlo mejor con el balón */
    max-width: 440px;
    pointer-events: auto;
}

.orb-copy h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 7vw, 110px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: #f4f4f4;
}

.orb-copy p {
    color: #a8a49c;
    font-size: 13px;
    line-height: 1.6;
    max-width: 360px;
    margin: 0;
}


/* =========================================================
   STAGE (Strictly constrained boundary)
   ========================================================= */

.orb-stage {
    position: relative;
    width: min(85vw, 560px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    transform: perspective(1200px) rotateX(6deg);
}


/* =========================================================
   ATMOSPHERIC GLOW
   ========================================================= */

.orb-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(216, 255, 62, 0.05) 0%,
        rgba(216, 255, 62, 0.02) 40%,
        transparent 70%
    );
    filter: blur(25px);
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   GROUND SHADOW
   ========================================================= */

.orb-stage::after {
    content: "";
    position: absolute;
    bottom: 4%;
    left: 50%;
    width: 65%;
    height: 12%;
    transform: translateX(-50%) rotateX(70deg);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}


/* =========================================================
   BASKETBALL (Contained via Grid)
   ========================================================= */

.basketball {
    position: relative;
    width: 68%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 4;
    transform: rotate(-12deg);

    background:
        /* Seams */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23110a08' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M 0 50 Q 50 51 100 50' /%3E%3Cpath d='M 50 0 Q 51 50 50 100' /%3E%3Cpath d='M 15 0 C 35 25 35 75 15 100' /%3E%3Cpath d='M 85 0 C 65 25 65 75 85 100' /%3E%3C/g%3E%3Cg fill='none' stroke='%23ff944d' stroke-width='0.8' opacity='0.45' stroke-linecap='round'%3E%3Cpath d='M 0 51.5 Q 50 52.5 100 51.5' /%3E%3Cpath d='M 51.2 0 Q 52.2 50 51.2 100' /%3E%3Cpath d='M 16.2 0 C 36.2 25 36.2 75 16.2 100' /%3E%3Cpath d='M 86.2 0 C 66.2 25 66.2 75 86.2 100' /%3E%3C/g%3E%3C/svg%3E"),
        /* Pebbles */
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.2px),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.22) 0 1px, transparent 1.2px),
        /* Spherical shading */
        radial-gradient(circle at 35% 30%, #ff9343 0%, #e65814 28%, #bd3c07 55%, #7a2103 80%, #300902 96%, #110300 100%);

    background-size: 100% 100%, 3.5px 3.5px, 3.5px 3.5px, 100% 100%;
    background-position: center, 0 0, 1.75px 1.75px, center;
    background-repeat: no-repeat, repeat, repeat, no-repeat;

    box-shadow:
        inset 12px 10px 24px rgba(255, 215, 160, 0.28),
        inset -18px -18px 36px rgba(0, 0, 0, 0.75),
        inset -35px -35px 70px rgba(0, 0, 0, 0.9),
        0 30px 60px rgba(0, 0, 0, 0.65);

    filter: saturate(1.1) contrast(1.05);
}

.basketball::before {
    content: "";
    position: absolute;
    z-index: 8;
    width: 44%;
    height: 27%;
    left: 15%;
    top: 9%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse,
        rgba(255, 245, 220, 0.3) 0%,
        rgba(255, 225, 175, 0.14) 32%,
        rgba(255, 200, 120, 0.05) 55%,
        transparent 76%
    );
    transform: rotate(-22deg);
    filter: blur(7px);
    pointer-events: none;
}

.basketball::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 9;
    background: radial-gradient(
        circle at 48% 45%,
        transparent 53%,
        rgba(0, 0, 0, 0.035) 62%,
        rgba(0, 0, 0, 0.13) 73%,
        rgba(0, 0, 0, 0.35) 87%,
        rgba(0, 0, 0, 0.72) 100%
    );
    pointer-events: none;
}


/* =========================================================
   ORBITS
   ========================================================= */

.orbit {
    position: absolute;
    inset: 4%;
    border: 1px solid rgba(216, 255, 62, 0.13);
    border-radius: 50%;
    transform: rotate(63deg);
    z-index: 2;
    pointer-events: none;
}

.orbit.o2 {
    inset: 10%;
    transform: rotate(115deg) scale(0.85);
    border-color: rgba(255, 255, 255, 0.06);
}

.orbit.o3 {
    inset: 18%;
    transform: rotate(18deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.03);
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, #d8ff3e);
    top: 50%;
    left: -4px;
    box-shadow: 0 0 10px var(--accent, #d8ff3e);
    z-index: 5;
}


/* =========================================================
   BADGES & LABELS
   ========================================================= */

.orb-label {
    position: absolute;
    right: clamp(16px, 4vw, 40px);
    bottom: 8%;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    line-height: 1.5;
    color: #86837b;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    max-width: 160px;
    z-index: 10;
}

.orb-stamp {
    position: absolute;
    right: clamp(16px, 4vw, 40px);
    top: 8%;
    width: 95px;
    height: 95px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b1aea6;
    animation: spin 15s linear infinite;
    z-index: 10;
}

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


/* =========================================================
   RESPONSIVE ADJUSTMENTS (Agency Layout)
   ========================================================= */

/* Tablet Portrait & Small Laptops */
@media (max-width: 992px) {
    .orb-wrap {
        min-height: 580px;
    }
    
    .orb-copy {
        top: 8%; /* Subimos el texto para que no choque con el balón */
    }
    
    .orb-stage {
        margin-top: 80px; /* Empujamos el balón hacia abajo */
    }

    .orb-stamp {
        top: 5%;
        right: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .orb-section {
        padding: 80px 0 60px;
    }

    .orb-wrap {
        /* Rompemos el layout absoluto y pasamos a una columna ordenada */
        flex-direction: column;
        justify-content: flex-start;
        min-height: auto;
        padding: 0 20px;
        gap: 50px; /* Espacio uniforme entre bloque de texto y balón */
    }

    .orb-copy {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .orb-copy p {
        margin: 0 auto;
        text-align: center;
    }

    .orb-stage {
        margin-top: 0;
        width: min(85vw, 360px);
    }

    /* En lugar de ocultar los detalles de marca, los acomodamos abajo */
    .orb-stamp,
    .orb-label {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        display: block;
    }
    
    .orb-stamp {
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }

    .orb-label {
        text-align: center;
        margin-top: -30px; /* Acerca la etiqueta técnica al sello */
    }
}

/* =========================================================
   LOOKBOOK GRID (Mobile-First / Cero Aplastamientos)
   ========================================================= */

/* 1. MÓVIL (Por defecto: 1 Columna, Altura Editorial Fija) */
.lookbook-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.look {
    position: relative;
    width: 100%;
    height: 450px; /* Altura fija en móvil = jamás se aplasta */
    overflow: hidden;
    border: 1px solid var(--line-soft, rgba(255, 255, 255, 0.1));
    background-color: #050505;
}

/* El !important blinda la imagen contra cualquier otra clase de tu tema */
.look img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Corta el sobrante, nunca deforma */
    object-position: center !important;
    filter: grayscale(0.4) contrast(1.08) brightness(0.75);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), filter 0.7s ease;
}

.look:hover img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.08) brightness(0.8);
}

.look:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.look span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #e5e2da;
}

/* =========================================================
   BREAKPOINTS (Adaptación hacia pantallas grandes)
   ========================================================= */

/* 2. TABLETS (2 Columnas simples) */
@media (min-width: 640px) and (max-width: 991px) {
    .lookbook-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px; /* Altura controlada para tablet */
    }
    .look {
        height: 100%; /* Anula los 450px del móvil */
    }
    /* Rompe la monotonía haciendo que cada 3ra foto sea horizontal */
    .look:nth-child(3n) {
        grid-column: span 2;
    }
}

/* 3. DESKTOP (Mosaico de Agencia Entrelazado) */
@media (min-width: 992px) {
    .lookbook-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 85px; /* Celda base más pequeña para mayor precisión */
        grid-auto-flow: row; /* Apagamos el relleno automático */
    }
    
    .look {
        height: 100%; 
    }

    /* 
       MAPA DE COORDENADAS EXACTAS (12 Columnas x 14 Filas) 
       grid-area: fila-inicio / col-inicio / fila-fin / col-fin;
    */
    .look:nth-child(9n + 1) { grid-area: 1 / 1 / 8 / 7; }    /* Gigante Izquierda */
    .look:nth-child(9n + 2) { grid-area: 1 / 7 / 6 / 10; }   /* Vertical Arriba Centro */
    .look:nth-child(9n + 3) { grid-area: 1 / 10 / 5 / 13; }  /* Pequeña Arriba Derecha */
    
    .look:nth-child(9n + 4) { grid-area: 5 / 10 / 10 / 13; } /* Vertical Centro Derecha */
    .look:nth-child(9n + 5) { grid-area: 6 / 7 / 10 / 10; }  /* Pequeña Centro */
    .look:nth-child(9n + 6) { grid-area: 8 / 1 / 15 / 5; }   /* Vertical Alta Izquierda */
    
    .look:nth-child(9n + 7) { grid-area: 8 / 5 / 12 / 7; }   /* Vertical Delgada Centro-Izq */
    .look:nth-child(9n + 8) { grid-area: 10 / 7 / 15 / 13; } /* Horizontal Panorámica Abajo Derecha */
    .look:nth-child(9n + 9) { grid-area: 12 / 5 / 15 / 7; }  /* Pequeña Delgada Centro-Izq */
}

/* VISUAL ARCHIVE SECTION */
.visual-archive {
    border-top: 1px solid var(--line, #333);
    border-bottom: 1px solid var(--line, #333);
    padding: 120px 0;
    background-color: #050505; /* Fondo negro profundo */
    overflow: hidden;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Tipografía y Contenido */
.archive-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.archive-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(60px, 9vw, 150px);
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.05em;
    margin: 20px 0;
    color: #f4f4f4;
}

.archive-title .stroke {
    color: transparent;
    -webkit-text-stroke: 1px #f4f4f4;
}

.archive-title .accent {
    color: #0051FF; /* Azul BasketZone */
}

.archive-copy {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.7;
    color: #a7a49d;
    margin-bottom: 40px;
}

/* Botón Minimalista Premium */
.btn-minimal {
    display: inline-block;
    padding: 12px 24px;
    font-family: monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Contenedor del Elemento 3D */
.archive-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
}

.asset-frame {
    position: relative;
    flex-grow: 1;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* Ligero brillo interior simulando cristal */
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.asset-3d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Si usas video, esto evita colores lavados en fondos negros */
    mix-blend-mode: screen; 
}

/* UI Técnica del Marco */
.frame-ui {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.ui-label {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #555;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .archive-media {
        aspect-ratio: 16 / 9;
    }
}

/* NEWSLETTER */
.newsletter {
    padding: 100px 0
}

.newsletter-box {
    border: 1px solid var(--line);
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(130deg, #0b0b0b, #0e0e0e)
}

.newsletter h3 {
    font-family: 'Barlow Condensed';
    font-size: 72px;
    line-height: .82;
    text-transform: uppercase;
    margin: 12px 0 0;
    letter-spacing: -.04em
}

.newsletter-copy {
    color: #8f8c84;
    font-size: 12px;
    line-height: 1.7;
    max-width: 360px;
    margin-top: 18px
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--line);
    height: 56px
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    background: transparent;
    border: 0;
    outline: 0;
    font-family: 'DM Mono';
    font-size: 10px;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: .08em
}

.newsletter-form button {
    width: 160px;
    background: var(--ink);
    color: #050505;
    font-family: 'DM Mono';
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: .35s
}

.newsletter-form button:hover {
    background: var(--accent)
}

/* FOOTER */
footer {
    padding: 40px 0 28px;
    border-top: 1px solid var(--line);
    position: relative
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 65px
}

.footer-brand {
    font-family: 'Barlow Condensed';
    font-weight: 900;
    font-size: 50px;
    line-height: .8;
    letter-spacing: -.05em
}

.footer-tagline {
    margin-top: 22px;
    color: #7f7c75;
    font-size: 11px;
    line-height: 1.7;
    max-width: 280px
}

.footer-col h4 {
    font-family: 'DM Mono';
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8b8881;
    margin: 0 0 18px
}

.footer-col a {
    display: block;
    color: #c4c0b8;
    font-size: 12px;
    padding: 4px 0;
    transition: color .25s
}

.footer-col a:hover {
    color: var(--accent)
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: 'DM Mono';
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6c6963
}

/* CART */
.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .64);
    backdrop-filter: blur(5px);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: .45s
}

.cart-backdrop.open {
    opacity: 1;
    visibility: visible
}

.cart-drawer {
    position: fixed;
    z-index: 61;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(440px, 100vw);
    background: #0c0c0c;
    border-left: 1px solid var(--line);
    transform: translateX(102%);
    transition: transform .65s var(--ease);
    display: flex;
    flex-direction: column
}

.cart-drawer.open {
    transform: none
}

.cart-head {
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cart-title {
    font-family: 'Barlow Condensed';
    font-size: 28px;
    text-transform: uppercase
}

.cart-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.cart-list {
    flex: 1;
    overflow: auto;
    padding: 16px 22px
}

.cart-empty {
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'DM Mono';
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #6f6c65
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft)
}

.cart-item img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    filter: grayscale(.25)
}

.cart-item h5 {
    font-family: 'Barlow Condensed';
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 8px
}

.cart-item p {
    margin: 0;
    color: #85827b;
    font-family: 'DM Mono';
    font-size: 8px;
    line-height: 1.5;
    text-transform: uppercase
}

.qty {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px
}

.qty button {
    width: 22px;
    height: 22px;
    border: 1px solid var(--line);
    font-size: 11px
}

.qty span {
    font-family: 'DM Mono';
    font-size: 9px
}

.cart-remove {
    font-family: 'DM Mono';
    font-size: 8px;
    color: #6f6d67;
    margin-top: 9px;
    text-transform: uppercase
}

.cart-foot {
    border-top: 1px solid var(--line);
    padding: 20px 22px 24px
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Mono';
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.checkout {
    width: 100%;
    height: 54px;
    background: var(--ink);
    color: #050505;
    font-family: 'DM Mono';
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .11em
}

.checkout:hover {
    background: var(--accent)
}

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

.reveal.in {
    opacity: 1;
    transform: none
}

.clip-reveal {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s var(--ease)
}

.clip-reveal.in {
    clip-path: inset(0 0 0 0)
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .nav-links {
        gap: 16px
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .split {
        grid-template-columns: 1fr
    }

    .culture-card {
        min-height: 600px
    }

    .newsletter-box {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr
    }
}

@media(max-width:760px) {
    .container {
        width: min(calc(100% - 28px), var(--max))
    }

    .nav-links,
    .nav-pill {
        display: none
    }

    .mobile-menu {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--line);
        border-radius: 50%
    }

    .hero {
        padding: 120px 0 32px
    }

    .hero-grid {
        padding: 0 14px
    }

    .hero h1 {
        font-size: clamp(65px, 18vw, 118px)
    }

    .hero-sub {
        font-size: 13px;
        max-width: 350px
    }

    .hero-meta {
        display: none
    }

    .section {
        padding: 100px 0
    }

    .section-head {
        display: block
    }

    .section-note {
        margin-top: 22px
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .editorial-frame,
    .editorial-content {
        min-height: 650px
    }

    .editorial-content {
        padding: 28px
    }

    .editorial-number {
        display: none
    }

    .culture-card {
        min-height: 540px
    }

    .culture-overlay {
        padding: 24px
    }

    .culture-overlay h3 {
        font-size: 60px
    }

    .orb-section {
        padding: 110px 0
    }

    .orb-wrap {
        min-height: 700px
    }

    .orb-copy {
        position: relative;
        left: auto;
        top: auto;
        z-index: 6;
        max-width: 100%;
        margin-bottom: 50px;
        padding: 0 4px
    }

    .orb-stage {
        width: 104vw;
        max-width: 720px
    }

    .orb-stamp {
        right: 10%;
        top: 20%
    }

    .orb-label {
        right: 10%;
        bottom: 8%
    }

    .lookbook-grid {
        grid-auto-rows: 70px;
        gap: 8px
    }

    .look:nth-child(1) {
        grid-column: span 12;
        grid-row: span 7
    }

    .look:nth-child(2) {
        grid-column: span 6;
        grid-row: span 5
    }

    .look:nth-child(3) {
        grid-column: span 6;
        grid-row: span 5
    }

    .look:nth-child(4) {
        grid-column: span 6;
        grid-row: span 5
    }

    .look:nth-child(5) {
        grid-column: span 6;
        grid-row: span 5
    }

    .look:nth-child(6) {
        grid-column: span 12;
        grid-row: span 7
    }

    .manifesto {
        padding: 100px 0
    }

    .manifesto-copy {
        margin-top: 50px
    }

    .newsletter {
        padding: 70px 0
    }

    .newsletter-box {
        padding: 28px
    }

    .newsletter h3 {
        font-size: 60px
    }

    .newsletter-form {
        height: auto;
        display: block;
        border: 0
    }

    .newsletter-form input {
        height: 52px;
        width: 100%;
        border: 1px solid var(--line);
        margin-bottom: 8px
    }

    .newsletter-form button {
        height: 52px;
        width: 100%
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand-col {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block;
        line-height: 2
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .clip-reveal {
        clip-path: none
    }
}


/* --- NEW TILT CARD STYLES --- */
.tilt-card {
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.tilt-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}

.tilt-card:hover .tilt-card-img {
    transform: scale(1.1);
    opacity: 0.4;
}

.tilt-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    pointer-events: none;
}

.tilt-card-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--ink);
    z-index: 2;
}

.tilt-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.tilt-icon svg {
    width: 16px;
    height: 16px;
}

.tilt-card:hover .tilt-icon {
    background: var(--ink);
    color: #050505;
}

.tilt-title {
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
    line-height: 1;
}

.tilt-sub {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #a7a49c;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.tilt-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tilt-price {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: bold;
}

.tilt-add {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.35s var(--ease);
}

.tilt-card:hover .tilt-add {
    color: var(--accent);
}

/* =========================================================
   POLYMIND FLOATING BADGE
   ========================================================= */

   .polymind-badge {
    position: fixed;
    bottom: clamp(15px, 3vw, 30px); /* Se adapta al tamaño de la pantalla */
    right: clamp(15px, 3vw, 30px);
    z-index: 9999; /* Garantiza que siempre esté por encima de todo */
    pointer-events: auto;
}

.polymind-badge a {
    display: inline-block;
    font-family: 'DM Mono', monospace; /* Misma tipografía técnica del sitio */
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #86837b;
    text-decoration: none;
    padding: 10px 14px;
    
    /* Estilo de etiqueta premium */
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(5, 5, 5, 0.65);
    backdrop-filter: blur(8px); /* Efecto cristal para que no bloquee totalmente el fondo */
    -webkit-backdrop-filter: blur(8px);
    
    transition: all 0.3s ease;
}

/* Efecto hover interactivo */
.polymind-badge a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(5, 5, 5, 0.95);
    transform: translateY(-2px); /* Ligero salto al pasar el mouse */
}

/* Opcional: Ocultarlo o hacerlo más discreto en móviles muy pequeños si es necesario */
@media (max-width: 480px) {
    .polymind-badge a {
        font-size: 8px;
        padding: 8px 10px;
    }
}
