@font-face {
    font-family: "Art Brush";
    src: url("../fonts/ArtBrush/Artbrush.ttf") format("truetype");
    font-display: swap;
}

:root {
    color-scheme: dark;
    --bg: #050607;
    --bg-soft: #0c0d0e;
    --panel: rgba(20, 20, 20, 0.78);
    --panel-strong: #151515;
    --line: rgba(213, 164, 91, 0.22);
    --line-soft: rgba(255, 255, 255, 0.1);
    --gold: #d5a45b;
    --gold-dark: #8e6230;
    --gold-soft: #f1d18c;
    --text: #f5f4ef;
    --muted: #b9b7b0;
    --ink: #111;
    --max: 1360px;
    --header-h: 104px;
    --ease-soft: cubic-bezier(0.19, 1, 0.22, 1);
    --display-font: "Art Brush", "Inter", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 18px);
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        /* Resplandor superior derecho (Héroe) - Suave y elegante */
        radial-gradient(circle at 75% 15%, rgba(213, 164, 91, 0.18), transparent 34rem),
        /* Resplandor medio izquierdo (Productos y Proceso) - Nebulosa sutil */
        radial-gradient(circle at 15% 42%, rgba(213, 164, 91, 0.11), transparent 28rem),
        /* Resplandor inferior derecho (Contacto y Footer) - Cálido e integrado */
        radial-gradient(circle at 85% 82%, rgba(213, 164, 91, 0.14), transparent 30rem),
        /* Resplandor central secundario ultra-sutil */
        radial-gradient(circle at 50% 60%, rgba(213, 164, 91, 0.06), transparent 24rem),
        /* Fondo degradado base oscuro mate de alto contraste */
        linear-gradient(180deg, #08090a 0%, #050607 45%, #08090a 80%, #0c0d0e 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3 {
    font-family: var(--display-font);
}

h1 *,
h2 *,
h3 * {
    font-family: inherit;
}

h4,
h5,
h6 {
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

h4 *,
h5 *,
h6 * {
    font-family: inherit;
}

main {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

.section {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
    scroll-margin-top: calc(var(--header-h) + 18px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(213, 164, 91, 0.22);
    background: rgba(5, 6, 7, 0.92);
    backdrop-filter: blur(18px);
    transition: transform 0.55s var(--ease-soft), background 0.55s ease, border-color 0.55s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header.is-scrolled {
    background: rgba(5, 6, 7, 0.94);
    border-color: var(--line);
}


.navbar {
    display: grid;
    grid-template-columns: 116px 1fr auto;
    gap: 40px;
    align-items: center;
    width: min(100% - 40px, var(--max));
    min-height: 98px;
    margin: 0 auto;
    overflow: visible;
}

.brand {
    display: inline-flex;
    align-items: center;
    overflow: visible;
    width: max-content;
}

.brand__mark {
    display: block;
    width: auto;
    height: 104px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(39%) saturate(662%) hue-rotate(358deg) brightness(89%) contrast(89%);
}

.nfc-icon::before,
.nfc-icon::after {
    display: block;
    border: 3px solid var(--gold);
    border-left: 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    content: "";
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    align-items: center;
}

.nav-menu a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    position: relative;
    padding: 14px 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.42s ease;
}

.nav-chevron {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 0.42s var(--ease-soft);
}

.nav-menu > a::after,
.nav-item > a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.42s ease, transform 0.42s var(--ease-soft);
}

.nav-menu a:hover,
.nav-menu a.is-active,
.nav-item:hover > a,
.nav-item:focus-within > a {
    color: #fff;
}

.nav-menu > a:hover::after,
.nav-menu > a.is-active::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item > a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 230px;
    gap: 2px;
    padding: 12px;
    border: 1px solid rgba(213, 164, 91, 0.22);
    border-radius: 8px;
    background: rgba(7, 8, 9, 0.97);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 0.42s ease, transform 0.42s var(--ease-soft);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown a {
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 6px;
    color: rgba(245, 244, 239, 0.78);
    font-size: 13px;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background: rgba(213, 164, 91, 0.12);
    color: #fff;
}

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

.icon-btn,
.menu-toggle {
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    transition: transform 0.52s var(--ease-soft), color 0.52s ease;
}

.icon-btn:hover {
    color: var(--gold-soft);
    transform: translateY(-2px) scale(1.08);
}

.icon-btn svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cart-btn span {
    position: absolute;
    top: 0;
    right: -5px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.42s var(--ease-soft), opacity 0.42s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 42px;
    align-items: center;
    min-height: 900px;
    padding-top: calc(var(--header-h) + 54px);
    padding-bottom: 64px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.personalize h2,
.contact h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero-title__line {
    display: block;
}

.hero-title__line--gold {
    color: var(--gold);
}

.hero__copy .eyebrow {
    margin-bottom: 24px;
}

.hero__lead {
    max-width: 640px;
    margin: 34px 0 0;
    color: var(--text);
    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.58;
}

.hero__actions {
    margin-top: 42px;
}

.personalize__copy .btn {
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.58s var(--ease-soft), box-shadow 0.58s ease, border-color 0.58s ease, background 0.58s ease;
    will-change: transform;
}

.btn + .btn {
    margin-left: 24px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.04);
}

.btn--gold {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--gold-soft), var(--gold) 46%, var(--gold-dark));
    color: #fff;
    box-shadow: 0 14px 34px rgba(213, 164, 91, 0.22);
}

.btn--gold:hover {
    box-shadow: 0 20px 48px rgba(213, 164, 91, 0.32);
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.btn--small {
    min-height: 42px;
    padding: 0 20px;
    font-size: 12px;
}

.hero__features {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 18px;
    margin-top: clamp(12px, 2vw, 28px);
}

.hero__features article {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero__features strong {
    display: block;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.hero__features small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.feature-icon,
.step-icon {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    color: var(--gold);
}

.nfc-icon::before,
.nfc-icon::after {
    position: absolute;
    top: 7px;
    left: 4px;
    width: 14px;
    height: 20px;
}

.nfc-icon::after {
    left: 12px;
    width: 20px;
}

.pencil-icon::before {
    position: absolute;
    top: 16px;
    left: 4px;
    width: 27px;
    height: 6px;
    border: 2px solid var(--gold);
    border-radius: 2px;
    content: "";
    transform: rotate(-45deg);
}

.shield-icon::before {
    position: absolute;
    inset: 3px 7px;
    border: 3px solid var(--gold);
    border-top-width: 4px;
    border-radius: 15px 15px 18px 18px;
    content: "";
    clip-path: polygon(50% 0, 100% 18%, 90% 74%, 50% 100%, 10% 74%, 0 18%);
}

.truck-icon::before {
    position: absolute;
    top: 11px;
    left: 2px;
    width: 20px;
    height: 13px;
    border: 3px solid var(--gold);
    content: "";
}

.truck-icon::after {
    position: absolute;
    right: 1px;
    bottom: 5px;
    width: 23px;
    height: 8px;
    border: 3px solid var(--gold);
    border-top-width: 0;
    content: "";
}

.hero__stage {
    position: relative;
    min-height: 650px;
    perspective: 1000px;
}

.hero-products {
    position: absolute;
    inset: 16px -28px 0 auto;
    width: min(112%, 780px);
    height: 620px;
    filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.55));
    isolation: isolate;
    --orbit-items-offset-y: 93px;
    --orbit-radius-x: 185px;
    --orbit-depth-y: 42px;
}

.hero-products::before {
    position: absolute;
    inset: auto 7% 16px 7%;
    z-index: 0;
    height: 132px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.74) 0 42%, rgba(0, 0, 0, 0.34) 60%, transparent 72%),
        radial-gradient(ellipse at center, rgba(213, 164, 91, 0.2), transparent 68%);
    content: "";
    filter: blur(4px);
}

.hero-products__halo {
    position: absolute;
    z-index: 0;
    top: 10px;
    right: 8%;
    width: min(86%, 657px);
    aspect-ratio: 1;
    border: 2px solid rgba(213, 164, 91, 0.86);
    border-radius: 50%;
    box-shadow:
        0 0 46px rgba(213, 164, 91, 0.58),
        inset 0 0 58px rgba(213, 164, 91, 0.14);
    animation: pulse 7.5s ease-in-out infinite;
}

.hero-products__spark {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: rotate(calc(-90deg + var(--hero-progress-fluid, 0) * 1turn));
    transform-origin: center;
}

.hero-products__spark::before,
.hero-products__spark::after {
    position: absolute;
    left: 50%;
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.hero-products__spark::before {
    top: -13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 0 10px 4px #fff,
        0 0 20px 8px var(--gold-soft),
        0 0 35px 14px rgba(213, 164, 91, 0.48);
    filter: none;
}

.hero-products__spark::after {
    top: -43px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 164, 91, 0.28) 0%, transparent 70%);
    filter: blur(8px);
}

.hero-products__item {
    display: block;
    position: absolute;
    bottom: 38px;
    left: 50%;
    user-select: none;
    cursor: pointer;
    pointer-events: auto;
    object-fit: contain;
    transform-origin: 50% 100%;
    will-change: transform, filter;
}

.hero-products__item img {
    display: block;
    width: 100%;
    pointer-events: none;
}

.hero-products__item--keychain {
    width: 50%;
}

.hero-products__item--figure {
    width: 47%;
}

.hero-products__item--qr {
    width: 56%;
}

.hero-products__item--cosplay {
    width: 67%;
}

@media (min-width: 1151px) {
    .hero-products__item--figure {
        --orbit-item-offset-y: -48px;
    }

    .hero-products__item--keychain {
        --orbit-item-offset-y: -25px;
    }
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2,
.personalize h2,
.contact h2 {
    font-size: clamp(32px, 4.2vw, 58px);
}

.process,
.personalize,
.story,
.faq,
.contact {
    padding: 84px 0;
}

.products {
    position: relative;
    z-index: 6;
    margin-top: clamp(52px, 5.6vw, 104px);
    padding: 84px 0;
}

.products .section-heading {
    display: none;
}

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

.product-card,
.process-panel,
.faq details,
.contact-form,
.custom-card {
    border: 1px solid var(--line-soft);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
        var(--panel);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 20px 46px rgba(0, 0, 0, 0.24);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 248px;
    overflow: hidden;
    border-color: rgba(213, 164, 91, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 32%, rgba(213, 164, 91, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 228, 211, 0.78) 48%, rgba(213, 164, 91, 0.12)),
        #f7f3eb;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), 0 20px 46px rgba(0, 0, 0, 0.22);
    transition: transform 0.68s var(--ease-soft), border-color 0.68s ease, box-shadow 0.68s ease;
}

.product-card::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.58), transparent 14rem),
        linear-gradient(120deg, rgba(255, 255, 255, 0.44), transparent 34%),
        repeating-linear-gradient(135deg, rgba(20, 14, 8, 0.055) 0 1px, transparent 1px 5px);
    content: "";
    opacity: 0.42;
    pointer-events: none;
}

.product-card:hover {
    border-color: rgba(213, 164, 91, 0.55);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.95), 0 26px 70px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

.mini-visual {
    position: relative;
    height: 170px;
    background: radial-gradient(circle at 60% 35%, rgba(213, 164, 91, 0.22), transparent 42%), #101010;
}

.mini-visual img {
    display: block;
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.mini-keychain,
.mini-figure,
.mini-qr,
.mini-card {
    position: absolute;
    inset: 0;
    height: auto;
    background: none;
}

.mini-keychain img {
    right: -8px;
    bottom: 18px;
    width: 54%;
    max-width: 208px;
    transform: rotate(-8deg);
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.56));
}

.mini-figure img {
    right: 6px;
    bottom: 16px;
    width: 43%;
    max-width: 170px;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
}

.mini-qr img {
    right: -28px;
    bottom: 4px;
    width: 70%;
    max-width: 282px;
    transform: rotate(-3deg);
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
}

.mini-keychain span {
    position: absolute;
    right: 50px;
    bottom: 28px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(145deg, #303030, #090909);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.mini-keychain span::before {
    position: absolute;
    top: -55px;
    right: -10px;
    width: 58px;
    height: 70px;
    border: 5px solid #cfc7ba;
    border-radius: 50%;
    content: "";
}

.mini-keychain span::after {
    position: absolute;
    inset: 28px;
    border: solid var(--gold);
    border-width: 0 4px 4px 0;
    border-radius: 50%;
    content: "";
    transform: rotate(-25deg);
}

.mini-figure span {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 88px;
    height: 124px;
    border-radius: 36px 36px 12px 12px;
    background:
        radial-gradient(circle at 38% 35%, #060606 0 6px, transparent 7px),
        radial-gradient(circle at 64% 35%, #060606 0 6px, transparent 7px),
        linear-gradient(#1f140f 0 23%, #d29961 23% 62%, #101010 62%);
    transform: translateX(-50%);
}

.mini-figure span::after {
    position: absolute;
    right: -20px;
    bottom: -16px;
    left: -20px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2a241a, #080808);
    color: var(--gold);
    content: "";
}

.mini-qr span {
    position: absolute;
    right: 45px;
    bottom: 25px;
    width: 92px;
    height: 110px;
    border: 5px solid #beb6aa;
    border-radius: 48% 48% 10px 10px;
    background: linear-gradient(#f5f0e5, #bdb4a5);
}

.mini-qr span::before {
    position: absolute;
    top: 30px;
    left: 19px;
    width: 45px;
    height: 45px;
    background: repeating-linear-gradient(90deg, #111 0 5px, transparent 5px 10px), repeating-linear-gradient(#111 0 5px, transparent 5px 10px), #fff;
    content: "";
}

.mini-card span {
    position: absolute;
    right: 16px;
    bottom: 70px;
    width: 146px;
    height: 86px;
    border-radius: 10px;
    background: linear-gradient(145deg, #252525, #060606);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: rotate(-8deg);
}

.mini-card span::before {
    position: absolute;
    top: 28px;
    left: 22px;
    color: var(--gold);
    content: "BORER";
    font-size: 20px;
    font-weight: 800;
}

.mini-card span::after {
    position: absolute;
    right: 14px;
    bottom: -48px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 44%, transparent 0 22px, rgba(255, 255, 255, 0.12) 23px 24px, transparent 25px),
        linear-gradient(145deg, #2b2b2b, #050505);
    color: rgba(255, 255, 255, 0.84);
    content: "NFC";
    display: grid;
    place-items: center;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.06em;
    transform: rotate(11deg);
}

.product-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.product-card:has(.mini-keychain) .product-card__body,
.product-card:has(.mini-figure) .product-card__body,
.product-card:has(.mini-qr) .product-card__body,
.product-card:has(.mini-card) .product-card__body {
    max-width: 58%;
    min-height: 248px;
}

.product-card:has(.mini-keychain) .product-card__body {
    max-width: 56%;
}

.product-grid .product-card:nth-child(1) .product-card__body {
    max-width: 56%;
    min-height: 248px;
}

.product-grid .product-card:nth-child(2) .product-card__body,
.product-grid .product-card:nth-child(3) .product-card__body,
.product-grid .product-card:nth-child(4) .product-card__body {
    max-width: 58%;
    min-height: 248px;
}

.product-grid .product-card:nth-child(3) .product-card__body {
    max-width: 54%;
}

.product-card h3,
.steps h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
    text-transform: uppercase;
}

.product-card h3 {
    color: #111;
}

.product-card p,
.steps p,
.personalize p,
.contact p,
.faq p {
    color: var(--text);
    margin: 0;
}

.product-card p {
    color: #302820;
    margin-bottom: 20px;
}

.product-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.swatches {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.swatches span {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.black { background: #050505; }
.white { background: #ededed; }
.blue { background: #153c86; }
.red { background: #8b1f24; }
.gold { background: var(--gold); }

.process-panel {
    position: relative;
    padding: clamp(46px, 5vw, 78px) 0 16px;
    border-radius: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
}

.process-panel h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.2vw, 84px);
    font-weight: 900;
    line-height: 1.06;
    text-transform: none;
}

.process-panel h2 em {
    color: var(--gold);
}

.process-panel .eyebrow {
    margin-bottom: 14px;
}

.process-subtitle {
    max-width: 620px;
    margin: 16px auto 58px;
    color: rgba(245, 244, 239, 0.76);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.steps article {
    position: relative;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    padding: 56px 22px 26px;
    border: 1px solid rgba(213, 164, 91, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 34%),
        rgba(9, 10, 11, 0.76);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 22px 46px rgba(0, 0, 0, 0.26);
    text-align: center;
}

.steps article::after {
    position: absolute;
    top: 50%;
    right: -30px;
    z-index: 2;
    color: var(--gold);
    content: "";
    width: 38px;
    height: 8px;
    background:
        linear-gradient(90deg, rgba(213, 164, 91, 0.18), var(--gold) 52%, rgba(213, 164, 91, 0.18)),
        linear-gradient(45deg, transparent 45%, var(--gold) 46% 54%, transparent 55%) right center / 10px 8px no-repeat;
    opacity: 0.78;
    transform: translateY(-50%);
}

.steps article:last-child::after {
    display: none;
}

.steps article.is-featured {
    border-color: rgba(213, 164, 91, 0.62);
    background:
        radial-gradient(circle at 50% 0%, rgba(213, 164, 91, 0.22), transparent 52%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
        rgba(15, 11, 7, 0.86);
    box-shadow: 0 0 42px rgba(213, 164, 91, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
}

.steps article > span {
    color: var(--gold);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    line-height: 1;
}

.step-icon {
    position: absolute;
    top: -34px;
    left: 50%;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 1px solid rgba(213, 164, 91, 0.65);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(213, 164, 91, 0.16), rgba(8, 8, 8, 0.94) 68%);
    box-shadow: 0 0 30px rgba(213, 164, 91, 0.42), inset 0 0 24px rgba(213, 164, 91, 0.12);
    transform: translateX(-50%);
}

.steps h4 {
    margin: 14px 0 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: none;
}

.steps p {
    margin: 0;
    color: rgba(245, 244, 239, 0.74);
    font-size: 14px;
    line-height: 1.45;
}

.idea-icon::before,
.sketch-icon::before,
.confirm-icon::before,
.craft-icon::before,
.package-icon::before {
    display: block;
    width: 42px;
    height: 42px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.idea-icon::before {
    background-image: url("assets/images/home/steps/step1.png");
}

.sketch-icon::before {
    background-image: url("assets/images/home/steps/step2.png");
}

.confirm-icon::before {
    background-image: url("assets/images/home/steps/step3.png");
}

.craft-icon::before {
    background-image: url("assets/images/home/steps/step4.png");
}

.package-icon::before {
    background-image: url("assets/images/home/steps/step5.png");
}

.personalize {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: clamp(30px, 3.4vw, 50px);
    row-gap: clamp(24px, 3vw, 34px);
    align-items: center;
    width: min(100% - 40px, 1120px);
    max-width: 1120px;
    margin: clamp(78px, 8vw, 128px) auto;
    padding: clamp(32px, 3.2vw, 46px) clamp(32px, 4vw, 56px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(213, 164, 91, 0.16), transparent 21rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(238, 228, 211, 0.88) 54%, rgba(213, 164, 91, 0.12)),
        repeating-linear-gradient(135deg, rgba(20, 14, 8, 0.052) 0 1px, transparent 1px 6px),
        #f7f3eb;
    border: 1px solid rgba(213, 164, 91, 0.20);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    isolation: isolate;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.personalize:hover {
    border-color: rgba(213, 164, 91, 0.42);
    box-shadow: 0 38px 90px rgba(213, 164, 91, 0.08), 0 30px 80px rgba(0, 0, 0, 0.35);
}

.personalize__visual {
    position: relative;
    min-height: 0;
}

.personalize__header {
    grid-column: 1 / -1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.personalize__header .eyebrow {
    margin-bottom: 10px;
}

.personalize__header h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 48px); /* Reducido ligeramente para evitar auto-envolturas indeseadas */
    font-weight: 900;
    line-height: 1.15;
}

/* Forzar que el título se divida en dos líneas exactas y asignar los colores correspondientes */
.personalize__header h2 span.brush-write:nth-child(1) {
    color: #111 !important;
    display: block !important;
    white-space: nowrap !important;
}

.personalize__header h2 span.brush-write:nth-child(2) {
    color: var(--gold) !important;
    display: block !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .personalize__header h2 span.brush-write:nth-child(1),
    .personalize__header h2 span.brush-write:nth-child(2) {
        white-space: normal !important;
    }
}

.personalize__header p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px auto 0;
    color: #3d3328;
    font-size: 17px;
    line-height: 1.55;
}

.personalize-photo {
    position: relative;
    min-height: clamp(280px, 22vw, 340px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(213, 164, 91, 0.36);
    border-radius: 8px;
    background: #080808;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 28px 64px rgba(42, 25, 10, 0.22);
}

.personalize-photo::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
    content: "";
    pointer-events: none;
}

.personalize-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 0;
    object-fit: cover;
    object-position: center;
    filter: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.personalize-photo:hover img {
    transform: scale(1.04);
}

.personalize__copy {
    max-width: 620px;
    color: #21170d;
}

.personalize__copy .customize-options {
    display: grid;
    gap: 14px;
    margin-top: 0;
}

.personalize__copy .option-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon text";
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 4px;
    align-items: start;
    padding: 8px 12px;
    border-radius: 8px;
    transition: transform 0.4s var(--ease-soft), background-color 0.4s ease;
}

.personalize__copy .option-item:hover {
    transform: translateX(8px);
    background-color: rgba(213, 164, 91, 0.035);
}

.personalize__copy .option-item .option-icon {
    grid-area: icon;
    align-self: start;
    transition: transform 0.4s var(--ease-soft), background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.personalize__copy .option-item:hover .option-icon {
    transform: scale(1.08) rotate(5deg);
    background: var(--gold-soft);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 14px rgba(213, 164, 91, 0.38);
}

.personalize__copy .option-item h4 {
    grid-area: title;
    margin: 0;
    color: #15100b;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.18;
    text-transform: none;
}

.personalize__copy .option-item p {
    grid-area: text;
    margin: 0;
    color: #4d4033;
    font-size: 14px;
    line-height: 1.5;
}

.option-icon {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(213, 164, 91, 0.58);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 0 16px rgba(213, 164, 91, 0.12);
}

.option-icon::before {
    display: block;
    content: "";
}

.option-icon--finish::before {
    width: 25px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 3px;
    transform: rotate(-45deg);
}

.option-icon--digital::before {
    width: 24px;
    height: 24px;
    background:
        linear-gradient(currentColor 0 0) 0 0 / 8px 8px no-repeat,
        linear-gradient(currentColor 0 0) 16px 0 / 8px 8px no-repeat,
        linear-gradient(currentColor 0 0) 0 16px / 8px 8px no-repeat,
        linear-gradient(currentColor 0 0) 16px 16px / 8px 8px no-repeat,
        linear-gradient(currentColor 0 0) 10px 10px / 4px 4px no-repeat;
}

.option-icon--detail::before {
    width: 26px;
    height: 26px;
    background:
        linear-gradient(45deg, transparent 42%, currentColor 43% 57%, transparent 58%),
        linear-gradient(-45deg, transparent 42%, currentColor 43% 57%, transparent 58%);
}

.option-icon--delivery::before {
    width: 24px;
    height: 20px;
    border: 2px solid currentColor;
    transform: perspective(60px) rotateX(18deg) rotateY(-18deg);
}

.personalize__copy .btn {
    width: min(100%, 540px);
    margin-top: 20px;
    justify-content: space-between;
}

.personalize__copy .btn::after {
    margin-left: 18px;
    content: "->";
    font-size: 24px;
    line-height: 1;
}

.personalize-proof {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: clamp(16px, 2vw, 24px) calc(clamp(32px, 4vw, 56px) * -1) 0;
    padding: 10px clamp(32px, 4vw, 56px);
    border-top: 1px solid rgba(213, 164, 91, 0.12);
    background: rgba(213, 164, 91, 0.04);
}

.personalize-proof article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon text";
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border-right: 1px solid rgba(213, 164, 91, 0.12);
}

.personalize-proof .option-icon {
    grid-area: icon;
    align-self: center;
}

.personalize-proof article:last-child {
    border-right: 0;
}

.personalize-proof strong,
.personalize-proof small {
    display: block;
}

.personalize-proof strong {
    grid-area: title;
    align-self: end;
    color: #17110a;
    font-size: 13px;
    line-height: 1.25;
}

.personalize-proof small {
    grid-area: text;
    align-self: start;
    color: #5a4a3a;
    font-size: 11px;
    line-height: 1.3;
}

.story {
    position: relative;
    z-index: 1;
    isolation: isolate;
    width: min(100% - 40px, var(--max));
    margin: clamp(76px, 8vw, 120px) auto;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.story::before,
.story::after {
    display: none;
}

.story-hero {
    position: relative;
    display: flex;
    min-height: clamp(500px, 43vw, 650px);
    align-items: center;
    overflow: hidden;
    padding: clamp(42px, 5vw, 72px);
    background: transparent;
}

.story-hero::before {
    position: absolute;
    inset: 0 0 0 auto;
    width: 66%;
    background: url("assets/images/home/grafico-intencion-3.png") center right / contain no-repeat;
    content: "";
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
}

.story-hero::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.96) 34%, rgba(5, 6, 7, 0.88) 42%, rgba(5, 6, 7, 0.34) 52%, rgba(5, 6, 7, 0.02) 66%, transparent 100%);
    content: "";
    pointer-events: none;
}

.story-hero__content {
    position: relative;
    z-index: 1;
    width: min(40%, 540px);
    max-width: 540px;
}

.story-hero h2 {
    max-width: 100%;
    margin: 16px 0 22px;
    color: #fff;
    font-size: clamp(40px, 4.7vw, 72px);
    line-height: 0.98;
    text-transform: uppercase;
}

.story-hero h2 em {
    color: var(--gold);
}

.story-hero__content > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0;
    color: rgba(245, 244, 239, 0.86);
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.45;
}

.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.story-actions .btn + .btn {
    margin-left: 0;
}

.story-actions .btn::after {
    margin-left: 18px;
    content: "->";
    font-size: 22px;
    line-height: 1;
}

.faq-list {
    display: grid;
    max-width: 920px;
    gap: 14px;
    margin: 0 auto;
}

.faq details {
    padding: 22px 24px;
    border-radius: 8px;
}

.faq summary {
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.faq p {
    margin-top: 14px;
    color: var(--muted);
}

.contact {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 42px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 8px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: 0;
    padding: 14px 16px;
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(213, 164, 91, 0.75);
    box-shadow: 0 0 0 4px rgba(213, 164, 91, 0.12);
}

.contact-form textarea {
    resize: vertical;
}

.footer {
    background: #f2f4f6;
    color: #121212;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
    padding: 26px 0;
}

.trust-strip article {
    display: grid;
    gap: 2px;
}

.trust-strip strong {
    text-transform: uppercase;
}

.trust-strip span {
    color: #373737;
}

.footer p {
    margin: 0;
    padding: 22px 20px;
    border-top: 1px solid #dfe3e6;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(7px);
    transition: opacity 1.35s ease, transform 1.35s var(--ease-soft), filter 1.35s ease;
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

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

@property --halo-progress {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}

@keyframes halo-fill {
    0% {
        --halo-progress: 0%;
    }
    100% {
        --halo-progress: 100%;
    }
}

@keyframes halo-spark {
    0% {
        opacity: 0.74;
        transform: rotate(0turn) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(0.5turn) scale(1.018);
    }
    100% {
        opacity: 0.74;
        transform: rotate(1turn) scale(1);
    }
}

@keyframes hero-fade-up {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(28px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes brush-write {
    0% {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

@keyframes hero-title-settle {
    0% {
        transform: translate(var(--hero-intro-shift-x), 142px) scale(1.24);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes process-intro-settle {
    0% {
        transform: translateY(148px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes process-title-settle {
    0% {
        transform: scale(1.16);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes process-subtitle-in {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes process-step-in {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(34px) scale(0.96);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes product-card-spin-in {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(42px) rotate(-7deg) scale(0.88);
    }
    68% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(-4px) rotate(1.2deg) scale(1.015);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) rotate(0) scale(1);
    }
}

@keyframes scene-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scene-frame-in {
    from {
        opacity: 0.82;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brush-write {
    display: block;
    -webkit-mask-image: linear-gradient(90deg, #000 0 42%, rgba(0, 0, 0, 0.92) 45%, rgba(0, 0, 0, 0.42) 49%, transparent 54% 100%);
    mask-image: linear-gradient(90deg, #000 0 42%, rgba(0, 0, 0, 0.92) 45%, rgba(0, 0, 0, 0.42) 49%, transparent 54% 100%);
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 250% 100%;
    mask-size: 250% 100%;
    will-change: mask-position;
}

.brush-write-title em {
    color: var(--gold);
    font-style: normal;
}

h1.brush-write.is-brush-visible,
h2.brush-write.is-brush-visible {
    animation: brush-write 2.8s cubic-bezier(0.22, 0.68, 0.18, 1) 0.18s both;
}

.hero__copy.is-visible .brush-write {
    animation: brush-write 2.6s cubic-bezier(0.22, 0.68, 0.18, 1) 0.32s both;
}

.hero__copy.is-visible .hero-title__line--gold {
    animation-delay: 0.6s;
}

.process-panel.is-visible .brush-write,
.personalize__header.is-visible .brush-write,
.story-hero.is-visible .brush-write {
    animation: brush-write 2.8s cubic-bezier(0.22, 0.68, 0.18, 1) 0.24s both;
}

.process-panel.is-visible .brush-write:nth-child(2),
.personalize__header.is-visible .brush-write:nth-child(2),
.story-hero.is-visible .brush-write:nth-child(2) {
    animation-delay: 2.72s;
}

@media (min-width: 901px) {
    .hero__copy .eyebrow,
    .hero-title__line,
    .hero__copy .hero__lead,
    .hero__copy .hero__actions,
    .hero__features.reveal {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(28px);
    }

    .hero-title__line {
        will-change: opacity, transform, filter;
    }

    .hero-title {
        --hero-intro-shift-x: clamp(-74px, calc(66.6vh - 37vw), 0px);
        transform: translate(var(--hero-intro-shift-x), 142px) scale(1.24);
        transform-origin: 50% 50%;
        will-change: transform;
    }

    .hero__copy.is-visible .hero-title {
        animation: hero-title-settle 1.35s var(--ease-soft) 1.0s both;
    }

    .hero__copy.is-visible .eyebrow {
        animation: hero-fade-up 1.15s var(--ease-soft) 0.7s both;
    }

    .hero__copy.is-visible .hero-title__line:first-child {
        animation:
            hero-fade-up 1.5s var(--ease-soft) 0.42s both,
            brush-write 2.8s cubic-bezier(0.22, 0.68, 0.18, 1) 0.42s both;
    }

    .hero__copy.is-visible .hero-title__line--gold {
        animation:
            hero-fade-up 1.5s var(--ease-soft) 0.6s both,
            brush-write 2.45s cubic-bezier(0.22, 0.68, 0.18, 1) 0.6s both;
    }

    .hero__copy.is-visible .hero__lead {
        animation: hero-fade-up 1.25s var(--ease-soft) 0.76s both;
    }

    .hero__copy.is-visible .hero__actions {
        animation: hero-fade-up 1.25s var(--ease-soft) 0.82s both;
    }

    .hero__features.reveal.is-visible {
        transition: none;
        animation: hero-fade-up 1.2s var(--ease-soft) 0.88s both;
    }

    .process-intro {
        transform: translateY(148px);
        will-change: transform;
    }

    .process-panel h2 {
        transform: scale(1.16);
        transform-origin: 50% 50%;
        will-change: transform;
    }

    .process-panel .eyebrow,
    .process-panel .process-subtitle,
    .steps article {
        opacity: 0;
    }

    .process-panel.is-visible .process-subtitle {
        animation: process-subtitle-in 1.1s var(--ease-soft) 3.18s both;
    }

    .process-panel.is-visible .process-intro {
        animation: process-intro-settle 1.3s var(--ease-soft) 4.62s both;
    }

    .process-panel.is-visible h2 {
        animation: process-title-settle 1.3s var(--ease-soft) 4.62s both;
    }

    .process-panel.is-visible .eyebrow {
        animation: hero-fade-up 0.95s var(--ease-soft) 5.48s both;
    }

    .process-panel.is-visible .steps article {
        animation: process-step-in 1.05s var(--ease-soft) both;
    }

    .process-panel.is-visible .steps article:nth-child(1) { animation-delay: 5.48s; }
    .process-panel.is-visible .steps article:nth-child(2) { animation-delay: 5.68s; }
    .process-panel.is-visible .steps article:nth-child(3) { animation-delay: 5.88s; }
    .process-panel.is-visible .steps article:nth-child(4) { animation-delay: 6.08s; }
    .process-panel.is-visible .steps article:nth-child(5) { animation-delay: 6.28s; }
}

@media (min-width: 901px) {
    .products-scroll-scene {
        min-height: 100vh;
        position: relative;
        isolation: isolate;
        overflow: hidden;
        background: transparent;
    }

    .products-scroll-scene > .products {
        display: flex;
        min-height: 100vh;
        flex-direction: column;
        justify-content: center;
        margin-top: 0;
        padding: 112px 0 82px;
        background: transparent;
    }

    .products-scroll-scene.scene-is-playing::before,
    .scroll-driven-home .process-scroll-scene.scene-is-playing::before {
        position: fixed;
        inset: 0;
        z-index: 29;
        background: transparent;
        content: "";
        animation: scene-backdrop-in 0.34s ease-out both;
    }

    .products-scroll-scene.scene-is-playing > .products {
        position: relative;
        z-index: 30;
        width: min(100% - 40px, var(--max));
        animation: scene-frame-in 0.42s var(--ease-soft) both;
    }

    .products-scroll-scene .product-grid {
        gap: 18px;
        width: min(100%, 1440px);
        margin: 0 auto;
    }

    .products-scroll-scene .product-card {
        min-height: 286px;
    }

    .product-grid .product-card.reveal {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(42px) rotate(-7deg) scale(0.88);
        transform-origin: 50% 68%;
    }

    .products-scroll-scene.scene-is-playing .product-grid .product-card.reveal {
        transition: none;
        animation: product-card-spin-in 1.5s var(--ease-soft) both;
    }

    .products-scroll-scene.scene-is-playing .product-grid .product-card.reveal:nth-child(1) { animation-delay: 0.15s; }
    .products-scroll-scene.scene-is-playing .product-grid .product-card.reveal:nth-child(2) { animation-delay: 0.85s; }
    .products-scroll-scene.scene-is-playing .product-grid .product-card.reveal:nth-child(3) { animation-delay: 1.55s; }
    .products-scroll-scene.scene-is-playing .product-grid .product-card.reveal:nth-child(4) { animation-delay: 2.25s; }

    .products-scroll-scene.scene-is-complete .product-grid .product-card.reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@media (min-width: 901px) {
    .hero-scroll-scene.scene-is-playing .hero-products__halo {
        border-color: rgba(213, 164, 91, 0.24);
    }

    .hero-scroll-scene.scene-is-playing .hero-products__spark {
        opacity: 1;
    }

    .hero-scroll-scene.scene-is-playing .hero-products__halo::after {
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background:
            conic-gradient(
                from -90deg,
                #fff0b7 0,
                #c88e43 8%,
                #f7d990 16%,
                #a96e2d 27%,
                #e8bf71 39%,
                #fff5c9 50%,
                #b87831 63%,
                #efd18c 76%,
                #9f6528 88%,
                #f4d99b 100%
            );
        content: "";
        filter:
            drop-shadow(0 0 10px rgba(255, 230, 168, 0.98))
            drop-shadow(0 0 24px rgba(213, 164, 91, 0.9));
        -webkit-mask:
            radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent calc(100% - 1px)),
            conic-gradient(from -90deg, #000 calc(var(--hero-progress-fluid) * 1turn), transparent 0);
        -webkit-mask-composite: source-in;
        mask:
            radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent calc(100% - 1px)),
            conic-gradient(from -90deg, #000 calc(var(--hero-progress-fluid) * 1turn), transparent 0);
        mask-composite: intersect;
    }

    .hero-scroll-scene.scene-is-playing .hero-products__halo::before {
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        background:
            conic-gradient(
                from -22deg,
                transparent 0 14deg,
                rgba(255, 247, 215, 0.08) 18deg,
                #fff 22deg,
                var(--gold-soft) 26deg,
                transparent 34deg 1turn
            );
        content: "";
        filter:
            blur(0.6px)
            drop-shadow(0 0 12px rgba(255, 245, 208, 1))
            drop-shadow(0 0 30px rgba(213, 164, 91, 1))
            drop-shadow(0 0 52px rgba(213, 164, 91, 0.78));
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 13px), #000 calc(100% - 9px), #000 calc(100% - 4px), transparent calc(100% - 1px));
        mask: radial-gradient(farthest-side, transparent calc(100% - 13px), #000 calc(100% - 9px), #000 calc(100% - 4px), transparent calc(100% - 1px));
        pointer-events: none;
        transform: rotate(calc(-90deg + var(--hero-progress-fluid) * 1turn));
        transform-origin: center;
    }
}

@media (min-width: 901px) {
    .scroll-driven-home main {
        overflow: visible;
    }

    .scroll-driven-home .hero-scroll-scene {
        --hero-line-one: 0;
        --hero-line-one-opacity: 0;
        --hero-line-two: 0;
        --hero-settle: 0;
        --hero-lead: 0;
        --hero-primary-action: 0;
        --hero-secondary-action: 0;
        --hero-meta: 0;
        --hero-progress: 0;
        --hero-progress-fluid: 0;
        min-height: 100vh;
    }

    .scroll-driven-home .process-scroll-scene {
        --process-title: 1;
        --process-title-opacity: 1;
        --process-subtitle: 0;
        --process-settle: 0;
        --process-step-1: 0;
        --process-step-2: 0;
        --process-step-3: 0;
        --process-step-4: 0;
        --process-step-5: 0;
        height: auto;
        min-height: 100vh;
        position: relative;
        isolation: isolate;
        overflow: hidden;
        background: transparent;
    }

    .scroll-driven-home .hero-scroll-scene > .hero,
    .scroll-driven-home .process-scroll-scene > .process {
        position: relative;
    }

    .scroll-driven-home .process-scroll-scene > .process {
        display: flex;
        align-items: center;
        min-height: 100vh;
        background: transparent;
    }

    .scroll-driven-home .process-scroll-scene.scene-is-playing > .process {
        position: relative;
        z-index: 30;
        width: min(100% - 40px, var(--max));
        animation: scene-frame-in 0.42s var(--ease-soft) both;
    }

    .scroll-driven-home .process-panel {
        width: 100%;
    }

    .scroll-driven-home .hero-title,
    .scroll-driven-home .hero-title__line,
    .scroll-driven-home .hero__copy .eyebrow,
    .scroll-driven-home .hero__copy .hero__lead,
    .scroll-driven-home .hero__copy .hero__actions,
    .scroll-driven-home .hero__features.reveal,
    .scroll-driven-home .process-intro,
    .scroll-driven-home .process-panel h2,
    .scroll-driven-home .process-panel .brush-write,
    .scroll-driven-home .process-panel .eyebrow,
    .scroll-driven-home .process-panel .process-subtitle,
    .scroll-driven-home .steps article {
        animation: none !important;
        transition: none !important;
    }

    .scroll-driven-home .hero-title {
        transform:
            translate(
                calc(var(--hero-intro-shift-x) * (1 - var(--hero-settle))),
                calc(142px * (1 - var(--hero-settle)))
            )
            scale(calc(1 + 0.24 * (1 - var(--hero-settle))));
    }

    .scroll-driven-home .hero-title__line:first-child {
        opacity: var(--hero-line-one-opacity);
        filter: blur(calc(8px * (1 - var(--hero-line-one-opacity))));
        transform: none;
        -webkit-mask-position: calc(100% * (1 - var(--hero-line-one))) 0;
        mask-position: calc(100% * (1 - var(--hero-line-one))) 0;
    }

    .scroll-driven-home .hero-title__line--gold {
        opacity: 1;
        filter: none;
        transform: none;
        -webkit-mask-position: calc(100% * (1 - var(--hero-line-two))) 0;
        mask-position: calc(100% * (1 - var(--hero-line-two))) 0;
    }

    .scroll-driven-home .hero__copy .hero__lead {
        opacity: var(--hero-lead);
        filter: blur(calc(8px * (1 - var(--hero-lead))));
        transform: translateY(calc(22px * (1 - var(--hero-lead))));
    }

    .scroll-driven-home .hero__copy .hero__actions {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .scroll-driven-home .hero__copy .hero__actions .btn:first-child {
        opacity: var(--hero-primary-action);
        filter: blur(calc(8px * (1 - var(--hero-primary-action))));
        transform: translateY(calc(22px * (1 - var(--hero-primary-action))));
    }

    .scroll-driven-home .hero__copy .hero__actions .btn:nth-child(2) {
        opacity: var(--hero-secondary-action);
        filter: blur(calc(8px * (1 - var(--hero-secondary-action))));
        transform: translateY(calc(22px * (1 - var(--hero-secondary-action))));
    }

    .scroll-driven-home .hero__copy .eyebrow,
    .scroll-driven-home .hero__features.reveal {
        opacity: var(--hero-meta);
        filter: blur(calc(8px * (1 - var(--hero-meta))));
        transform: translateY(calc(22px * (1 - var(--hero-meta))));
    }

    .scroll-driven-home .hero-products__halo {
        border-color: rgba(213, 164, 91, 0.28);
    }

    .scroll-driven-home .hero-products__halo::after {
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background:
            conic-gradient(
                from -90deg,
                #fff0b7 0,
                #c88e43 8%,
                #f7d990 16%,
                #a96e2d 27%,
                #e8bf71 39%,
                #fff5c9 50%,
                #b87831 63%,
                #efd18c 76%,
                #9f6528 88%,
                #f4d99b 100%
            );
        content: "";
        filter: drop-shadow(0 0 10px rgba(213, 164, 91, 0.92));
        -webkit-mask:
            radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent calc(100% - 1px)),
            conic-gradient(from -90deg, #000 calc(var(--hero-progress-fluid) * 1turn), transparent 0);
        -webkit-mask-composite: source-in;
        mask:
            radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px), #000 calc(100% - 2px), transparent calc(100% - 1px)),
            conic-gradient(from -90deg, #000 calc(var(--hero-progress-fluid) * 1turn), transparent 0);
        mask-composite: intersect;
    }

    .scroll-driven-home .hero-products__halo::before {
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        background:
            conic-gradient(
                from -22deg,
                transparent 0 14deg,
                rgba(255, 245, 208, 0.08) 18deg,
                #fff3cf 22deg,
                var(--gold) 26deg,
                transparent 34deg 1turn
            );
        content: "";
        filter:
            blur(1px)
            drop-shadow(0 0 8px rgba(255, 226, 155, 0.98))
            drop-shadow(0 0 18px rgba(213, 164, 91, 0.88));
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 7px), #000 calc(100% - 4px), transparent calc(100% - 2px));
        mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 7px), #000 calc(100% - 4px), transparent calc(100% - 2px));
        pointer-events: none;
        transform: rotate(calc(-90deg + var(--hero-progress-fluid) * 1turn));
        transform-origin: center;
    }

    .hero-scroll-scene.scene-is-playing .hero-products__halo::before,
    .scroll-driven-home .hero-products__halo::before {
        content: none;
    }

    .scroll-driven-home .process-intro {
        transform: translateY(calc(148px * (1 - var(--process-settle))));
    }

    .scroll-driven-home .process-panel h2 {
        opacity: var(--process-title-opacity);
        filter: blur(calc(8px * (1 - var(--process-title-opacity))));
        transform: scale(calc(1 + 0.16 * (1 - var(--process-settle))));
    }

    .scroll-driven-home .process-panel .brush-write {
        -webkit-mask-position: calc(100% * (1 - var(--process-title))) 0;
        mask-position: calc(100% * (1 - var(--process-title))) 0;
    }

    .scroll-driven-home .process-panel .process-subtitle {
        opacity: var(--process-subtitle);
        filter: blur(calc(8px * (1 - var(--process-subtitle))));
        transform: translateY(calc(18px * (1 - var(--process-subtitle))));
    }

    .scroll-driven-home .process-panel .eyebrow {
        opacity: var(--process-settle);
        filter: blur(calc(8px * (1 - var(--process-settle))));
        transform: translateY(calc(18px * (1 - var(--process-settle))));
    }

    .scroll-driven-home .steps article {
        opacity: var(--step-progress);
        filter: blur(calc(8px * (1 - var(--step-progress))));
        transform: translateY(calc(34px * (1 - var(--step-progress)))) scale(calc(0.96 + 0.04 * var(--step-progress)));
    }

    .scroll-driven-home .steps article:nth-child(1) { --step-progress: var(--process-step-1); }
    .scroll-driven-home .steps article:nth-child(2) { --step-progress: var(--process-step-2); }
    .scroll-driven-home .steps article:nth-child(3) { --step-progress: var(--process-step-3); }
    .scroll-driven-home .steps article:nth-child(4) { --step-progress: var(--process-step-4); }
    .scroll-driven-home .steps article:nth-child(5) { --step-progress: var(--process-step-5); }
}

@media (max-width: 1150px) {
    :root {
        --header-h: 86px;
    }
    .nav-actions {
        display: none;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        min-height: var(--header-h);
    }

    .menu-toggle {
        display: inline-grid;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-h);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 18px 20px 28px;
        border-top: 1px solid var(--line-soft);
        background: rgba(5, 6, 7, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.45s ease, transform 0.45s var(--ease-soft);
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-item {
        display: grid;
    }

    .nav-item > a {
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 10px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown a {
        padding: 10px 0 10px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        color: rgba(245, 244, 239, 0.7);
        font-size: 13px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: calc(var(--header-h) + 54px);
    }

    .hero__stage {
        min-height: 600px;
    }

    .hero-products {
        inset: 0 50% auto auto;
        width: min(100vw - 28px, 760px);
        height: 590px;
        transform: translateX(50%);
        --orbit-items-offset-y: 0px;
        --orbit-radius-x: 176px;
        --orbit-depth-y: 38px;
    }

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

    .personalize {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .personalize__visual {
        order: 2;
    }

    .personalize__copy {
        order: 3;
        max-width: none;
    }

    .personalize__header {
        order: 1;
    }

    .steps,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .personalize-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .personalize-proof article:nth-child(2) {
        border-right: 0;
    }

    .steps article::after {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --header-h: 78px;
    }

    body {
        overflow-x: hidden;
    }

    .site-header.is-hidden {
        transform: none;
    }

    .navbar {
        min-height: var(--header-h);
    }

    .nav-menu {
        max-height: calc(100dvh - var(--header-h));
        overflow-y: auto;
    }

    .nav-menu a {
        justify-content: space-between;
        min-height: 54px;
    }

    .hero {
        gap: 22px;
        padding-top: calc(var(--header-h) + 30px);
        padding-bottom: 38px;
    }

    .hero__copy {
        max-width: 680px;
    }

    .hero__features {
        margin-top: 18px;
    }

    .products {
        margin-top: 42px;
        padding: 48px 0;
    }

    .section-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .personalize {
        grid-template-columns: 1fr;
    }

    .personalize__visual {
        order: 1;
    }

    .personalize__copy {
        order: 2;
        max-width: none;
    }

    .personalize-photo {
        min-height: 320px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 72px;
    }

    .section {
        width: min(100% - 28px, var(--max));
    }

    .navbar {
        width: min(100% - 28px, var(--max));
        min-height: var(--header-h);
    }

    .brand__mark {
        height: 54px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .nav-menu {
        top: var(--header-h);
        padding: 10px 20px 22px;
    }

    .hero {
        padding-top: calc(var(--header-h) + 26px);
        padding-bottom: 28px;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.35;
    }

    .hero__copy .eyebrow {
        margin-bottom: 12px;
    }

    .hero h1,
    .section-heading h2,
    .personalize h2,
    .contact h2 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1;
    }

    .hero__lead {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero__actions {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .btn,
    .btn + .btn {
        width: 100%;
        min-height: 48px;
        margin-left: 0;
        padding: 0 18px;
    }

    .hero__stage {
        min-height: clamp(340px, 95vw, 430px);
        margin: 4px 0 0;
        transform: none;
    }

    .hero-products {
        inset: 0 50% auto auto;
        width: min(108vw, 460px);
        height: clamp(330px, 92vw, 410px);
        max-width: none;
        transform: translateX(50%);
        --orbit-radius-x: clamp(92px, 26vw, 122px);
        --orbit-depth-y: 24px;
    }

    .hero-products::before {
        inset: auto 4% 8px 4%;
        height: 78px;
    }

    .hero-products__halo {
        top: 16px;
        right: -10%;
        width: min(122%, 510px);
    }

    .hero-products__item {
        bottom: 28px;
    }

    .hero-products__item--keychain {
        width: 39%;
    }

    .hero-products__item--figure {
        width: 43%;
    }

    .hero-products__item--qr {
        width: 54%;
    }

    .hero-products__item--cosplay {
        width: 36%;
    }

    .hero__features,
    .product-grid,
    .steps,
    .personalize,
    .contact,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero__features {
        gap: 12px;
        margin-top: 16px;
    }

    .hero__features article {
        min-height: 70px;
        padding: 10px 0;
    }

    .products,
    .process,
    .story,
    .faq,
    .contact {
        padding: 48px 0;
    }

    .personalize {
        width: min(100% - 28px, 1120px);
        margin: 62px auto;
        padding: 24px 20px 0;
    }

    .products {
        margin-top: 30px;
    }

    .product-card {
        min-height: auto;
    }

    .mini-visual {
        height: 150px;
    }

    .mini-keychain,
    .mini-figure,
    .mini-qr,
    .mini-card {
        position: relative;
        height: 190px;
    }

    .mini-keychain img {
        right: 0;
        bottom: 10px;
        width: min(58%, 210px);
    }

    .mini-figure img {
        right: 8px;
        bottom: 0;
        width: min(46%, 165px);
    }

    .mini-qr img {
        right: -12px;
        bottom: 0;
        width: min(66%, 238px);
    }

    .mini-card span {
        right: 18px;
        bottom: 72px;
    }

    .product-card:has(.mini-keychain) .product-card__body,
    .product-card:has(.mini-figure) .product-card__body,
    .product-card:has(.mini-qr) .product-card__body,
    .product-card:has(.mini-card) .product-card__body,
    .product-grid .product-card:nth-child(1) .product-card__body,
    .product-grid .product-card:nth-child(2) .product-card__body,
    .product-grid .product-card:nth-child(3) .product-card__body,
    .product-grid .product-card:nth-child(4) .product-card__body {
        max-width: none;
        min-height: auto;
        padding-top: 0;
    }

    .product-card__body,
    .contact-form {
        padding: 22px;
    }

    .product-card h3,
    .steps h4 {
        font-size: 18px;
    }

    .process-panel {
        padding: 28px 0 8px;
    }

    .steps article {
        min-height: auto;
        padding: 54px 22px 24px;
    }

    .process-panel h2 {
        font-size: clamp(38px, 10.5vw, 54px);
    }

    .process-subtitle {
        margin-bottom: 48px;
        font-size: 15px;
    }

    .personalize__visual {
        min-height: 0;
        order: 2;
    }

    .personalize__copy {
        order: 3;
    }

    .personalize-photo {
        min-height: 250px;
    }

    .personalize-photo img {
        padding: 0;
    }

    .personalize__copy .option-item {
        grid-template-columns: 48px 1fr;
        column-gap: 14px;
        row-gap: 4px;
    }

    .option-icon {
        width: 44px;
        height: 44px;
    }

    .personalize-proof {
        grid-template-columns: 1fr;
        margin: 22px -20px 0;
        padding: 12px 20px;
    }

    .personalize-proof article {
        min-height: auto;
        padding: 10px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(73, 43, 18, 0.14);
    }

    .personalize-proof article:last-child {
        border-bottom: 0;
    }

    .faq details {
        padding: 18px;
    }

    .faq summary {
        font-size: 18px;
        line-height: 1.25;
    }

    .trust-strip {
        width: min(100% - 28px, var(--max));
        gap: 16px;
    }
}

@media (max-width: 430px) {
    .brand__mark {
        height: 50px;
    }

    .hero {
        padding-top: calc(var(--header-h) + 20px);
    }

    .hero h1,
    .section-heading h2,
    .personalize h2,
    .contact h2 {
        font-size: clamp(32px, 10.4vw, 42px);
    }

    .hero__stage {
        min-height: 330px;
    }

    .hero-products {
        width: 420px;
        height: 330px;
        --orbit-radius-x: 96px;
        --orbit-depth-y: 20px;
    }

    .hero-products__item {
        bottom: 22px;
    }

    .hero-products__halo {
        top: 12px;
        right: -12%;
        width: 120%;
    }

    .hero-products__item--keychain {
        width: 38%;
    }

    .hero-products__item--figure {
        width: 47%;
    }

    .hero-products__item--qr {
        width: 53%;
    }

    .hero-products__item--cosplay {
        width: 39%;
    }

    .product-card__body,
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 1150px) {
    .story-hero {
        min-height: clamp(460px, 52vw, 620px);
    }

    .story-hero::before {
        width: 58%;
        background-size: contain;
    }

    .story-hero__content {
        width: min(44%, 500px);
        max-width: 500px;
    }
}

@media (max-width: 760px) {
    .story {
        width: min(100% - 28px, var(--max));
        margin: 62px auto;
    }

    .story-hero {
        min-height: 560px;
        align-items: flex-end;
        padding: 28px 22px;
    }

    .story-hero::before {
        inset: 0 0 auto;
        width: 100%;
        height: 62%;
        background: url("assets/images/home/grafico-intencion-3.png") center top / contain no-repeat;
    }

    .story-hero::after {
        background:
            linear-gradient(180deg, rgba(5, 6, 7, 0.02) 0%, rgba(5, 6, 7, 0.24) 40%, rgba(5, 6, 7, 0.92) 68%, #050607 100%);
    }

    .story-hero__content {
        width: 100%;
        max-width: none;
    }

    .story-hero h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .story-actions {
        gap: 12px;
    }

    .story-actions .btn {
        width: 100%;
        justify-content: space-between;
    }
}

/* Product category pages */
.product-page main {
    overflow: hidden;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 54px;
    align-items: center;
    min-height: 840px;
    padding-top: calc(var(--header-h) + 70px);
    padding-bottom: 78px;
}

.product-back {
    display: inline-flex;
    width: max-content;
    margin-bottom: 22px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-back::before {
    content: "<";
    margin-right: 10px;
}

.product-hero h1,
.product-detail h2,
.product-process h2,
.product-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: uppercase;
}

.product-hero__lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--text);
    font-size: clamp(18px, 1.6vw, 23px);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.product-tags span {
    border: 1px solid rgba(213, 164, 91, 0.28);
    border-radius: 999px;
    background: rgba(213, 164, 91, 0.08);
    color: var(--gold-soft);
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-hero__visual {
    position: relative;
    min-height: 620px;
}

.product-orbit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.product-orbit::before {
    position: absolute;
    inset: 8% 3% 2%;
    z-index: -2;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(213, 164, 91, 0.16), rgba(213, 164, 91, 0.04) 42%, transparent 70%);
    content: "";
    filter: blur(6px);
}

.product-orbit__ring {
    position: absolute;
    width: min(82%, 560px);
    aspect-ratio: 1;
    border: 2px solid rgba(213, 164, 91, 0.55);
    border-radius: 50%;
    box-shadow: 0 0 48px rgba(213, 164, 91, 0.24), inset 0 0 42px rgba(213, 164, 91, 0.08);
}

.product-orbit__platform {
    position: absolute;
    right: 12%;
    bottom: 58px;
    left: 12%;
    height: 118px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(213, 164, 91, 0.24), rgba(13, 13, 13, 0.95) 48%, rgba(4, 4, 4, 0.4) 72%, transparent 78%);
    filter: drop-shadow(0 32px 32px rgba(0, 0, 0, 0.42));
}

.product-photo-slot {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(72%, 420px);
    min-height: 500px;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.48);
    border-radius: 28px 28px 48px 48px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
        radial-gradient(circle at 50% 30%, rgba(213, 164, 91, 0.14), transparent 44%),
        rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    transform: translateY(-12px);
}

.product-photo-slot::before,
.product-photo-slot::after {
    position: absolute;
    content: "";
}

.product-photo-slot::before {
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
}

.product-photo-slot::after {
    right: 20%;
    bottom: -54px;
    left: 20%;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(213, 164, 91, 0.28), rgba(0, 0, 0, 0.78) 62%, transparent 72%);
}

.product-photo-slot span,
.product-photo-slot strong {
    position: relative;
    z-index: 1;
}

.product-photo-slot span {
    align-self: end;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-photo-slot strong {
    align-self: start;
    max-width: 260px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.product-page--funkos .product-photo-slot {
    border-radius: 42px 42px 34px 34px;
}

.product-page--bustos .product-photo-slot {
    border-radius: 999px 999px 42px 42px;
}

.product-page--resina .product-photo-slot {
    width: min(78%, 450px);
    border-radius: 18px 54px 18px 54px;
    transform: rotate(-2deg) translateY(-10px);
}

.product-page--cosplay .product-photo-slot {
    width: min(82%, 500px);
    min-height: 470px;
    border-radius: 18px;
    transform: rotate(3deg) translateY(-4px);
}

.product-detail,
.product-showcase,
.product-process,
.product-cta {
    padding: 84px 0;
}

.product-detail__intro {
    display: grid;
    max-width: 880px;
    gap: 18px;
    margin-bottom: 34px;
}

.product-detail__intro h2,
.product-process h2,
.product-cta h2 {
    font-size: clamp(36px, 5vw, 64px);
}

.product-detail__intro p:not(.eyebrow),
.product-cta p {
    color: var(--muted);
    font-size: 18px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-feature,
.gallery-slot,
.product-cta {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 35%),
        rgba(18, 18, 18, 0.72);
}

.product-feature {
    min-height: 240px;
    padding: 28px;
}

.product-feature span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.product-feature h3 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.05;
    text-transform: uppercase;
}

.product-feature p {
    color: var(--muted);
}

.product-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 16px;
}

.gallery-slot {
    display: grid;
    min-height: 360px;
    place-items: center;
    border-style: dashed;
    background:
        radial-gradient(circle at 50% 40%, rgba(213, 164, 91, 0.12), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 36%),
        rgba(14, 14, 14, 0.78);
}

.gallery-slot:first-child {
    min-height: 440px;
}

.gallery-slot span {
    color: rgba(245, 244, 239, 0.58);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 84px;
    padding: 36px;
}

.product-cta h2 {
    margin-top: 8px;
}

.product-cta p {
    max-width: 760px;
    margin: 16px 0 0;
}

@media (max-width: 1150px) {
    .product-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: calc(var(--header-h) + 54px);
    }

    .product-hero__visual {
        min-height: 560px;
    }

    .product-feature-grid,
    .product-gallery,
    .product-cta {
        grid-template-columns: 1fr;
    }

    .product-cta .btn {
        width: max-content;
    }
}

@media (max-width: 760px) {
    .product-hero {
        gap: 28px;
        padding-top: calc(var(--header-h) + 32px);
        padding-bottom: 34px;
    }

    .product-hero h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .product-hero__lead,
    .product-detail__intro p:not(.eyebrow),
    .product-cta p {
        font-size: 16px;
    }

    .product-hero__visual {
        min-height: 430px;
    }

    .product-photo-slot {
        width: min(84%, 340px);
        min-height: 340px;
        border-radius: 22px;
    }

    .product-orbit__platform {
        right: 4%;
        bottom: 36px;
        left: 4%;
        height: 84px;
    }

    .product-detail,
    .product-showcase,
    .product-process,
    .product-cta {
        padding: 48px 0;
    }

    .product-feature,
    .product-cta {
        padding: 22px;
    }

    .gallery-slot,
    .gallery-slot:first-child {
        min-height: 260px;
    }

    .product-cta .btn {
        width: 100%;
    }
}
/* Distinct product page concepts */
.category-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 56px;
    align-items: center;
    min-height: 840px;
    padding-top: calc(var(--header-h) + 70px);
    padding-bottom: 78px;
}

.category-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.8vw, 90px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: uppercase;
}

.category-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--text);
    font-size: clamp(18px, 1.55vw, 22px);
}

.category-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.category-stats span,
.catalog-header,
.bust-notes span,
.resin-spec,
.blueprint-panel span {
    border: 1px solid rgba(213, 164, 91, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.category-stats span {
    display: grid;
    min-width: 126px;
    padding: 12px 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.category-stats strong {
    color: var(--gold-soft);
    font-size: 30px;
    line-height: 1;
}

.funko-stage,
.bust-museum,
.resin-hero__cabinet,
.cosplay-workbench {
    position: relative;
    min-height: 620px;
    isolation: isolate;
}

.funko-stage::before,
.bust-museum::before,
.resin-hero__cabinet::before,
.cosplay-workbench::before {
    position: absolute;
    inset: 5% 2%;
    z-index: -1;
    border: 2px solid rgba(213, 164, 91, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(213, 164, 91, 0.22);
    content: "";
}

.funko-card-stack {
    position: absolute;
    inset: 7% 0 0;
}

.funko-showpiece {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.44);
    background: radial-gradient(circle at 50% 24%, rgba(213, 164, 91, 0.18), transparent 34%), rgba(255, 255, 255, 0.04);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.42);
    color: rgba(245, 244, 239, 0.66);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.funko-showpiece--back {
    top: 70px;
    left: 4%;
    width: 34%;
    min-height: 300px;
    border-radius: 32px;
    transform: rotate(-9deg);
}

.funko-showpiece--mid {
    right: 2%;
    bottom: 112px;
    width: 36%;
    min-height: 330px;
    border-radius: 32px;
    transform: rotate(8deg);
}

.funko-showpiece--front {
    top: 20px;
    left: 27%;
    width: 44%;
    min-height: 500px;
    border-radius: 42px 42px 28px 28px;
    background: radial-gradient(circle at 50% 18%, rgba(241, 209, 140, 0.2), transparent 36%), rgba(255, 255, 255, 0.055);
}

.funko-families,
.funko-catalog,
.bust-collection,
.bust-editorial,
.resin-wall,
.resin-specs,
.cosplay-workshop,
.cosplay-blueprint {
    padding: 84px 0;
}

.funko-family-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.92fr;
    gap: 16px;
}

.funko-family,
.bust-slot,
.workshop-card,
.resin-specs article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%), rgba(17, 17, 17, 0.78);
}

.funko-family {
    display: grid;
    min-height: 420px;
    grid-template-rows: 1fr auto auto auto;
    padding: 18px;
}

.family-visual {
    display: grid;
    min-height: 220px;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.35);
    border-radius: 8px;
    background: radial-gradient(circle at 50% 40%, rgba(213, 164, 91, 0.14), transparent 42%), rgba(255, 255, 255, 0.035);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.family-visual--themed {
    min-height: 260px;
}

.funko-family h3,
.workshop-card h3,
.resin-specs h3 {
    margin: 20px 0 8px;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    text-transform: uppercase;
}

.funko-family p,
.workshop-card p,
.resin-specs p {
    color: var(--muted);
}

.funko-family small {
    color: rgba(241, 209, 140, 0.72);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-header {
    display: grid;
    gap: 8px;
    padding: 24px;
    margin-bottom: 16px;
}

.catalog-header h2,
.bust-collection h2,
.resin-wall h2,
.cosplay-workshop h2,
.bust-editorial h2,
.cosplay-blueprint h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.98;
    text-transform: uppercase;
}

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

.miniature-slot,
.resin-tile {
    display: grid;
    min-height: 260px;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.34);
    border-radius: 8px;
    background: radial-gradient(circle at 50% 38%, rgba(213, 164, 91, 0.12), transparent 42%), rgba(255, 255, 255, 0.035);
    color: rgba(245, 244, 239, 0.58);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.miniature-slot.wide {
    min-height: 360px;
}

.bust-museum {
    display: grid;
    place-items: center;
}

.museum-arch {
    display: grid;
    width: min(76%, 440px);
    min-height: 520px;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.42);
    border-radius: 999px 999px 44px 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%), rgba(255, 255, 255, 0.035);
    color: rgba(245, 244, 239, 0.62);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.museum-plinth {
    position: absolute;
    right: 14%;
    bottom: 52px;
    left: 14%;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(213, 164, 91, 0.22), rgba(11, 11, 11, 0.95) 56%, transparent 76%);
}

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

.bust-slot {
    display: grid;
    min-height: 320px;
    align-content: end;
    padding: 22px;
    background: radial-gradient(circle at 50% 22%, rgba(213, 164, 91, 0.12), transparent 38%), rgba(18, 18, 18, 0.78);
}

.bust-slot span,
.workshop-card span,
.resin-specs span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.bust-slot strong {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.bust-editorial,
.cosplay-blueprint {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 28px;
    align-items: center;
}

.bust-editorial p,
.cosplay-blueprint p {
    color: var(--muted);
    font-size: 18px;
}

.bust-notes,
.blueprint-panel {
    display: grid;
    gap: 12px;
}

.bust-notes span,
.blueprint-panel span {
    padding: 18px;
    color: var(--gold-soft);
    font-weight: 900;
    text-transform: uppercase;
}

.resin-hero__cabinet {
    display: grid;
    place-items: center;
}

.resin-main-slot {
    display: grid;
    width: min(86%, 540px);
    min-height: 500px;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.42);
    border-radius: 8px;
    background: radial-gradient(circle at 50% 44%, rgba(213, 164, 91, 0.16), transparent 40%), rgba(255, 255, 255, 0.035);
    color: rgba(245, 244, 239, 0.64);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.resin-spec {
    position: absolute;
    right: 8%;
    bottom: 76px;
    display: grid;
    gap: 4px;
    padding: 16px 18px;
}

.resin-spec strong {
    color: #fff;
    text-transform: uppercase;
}

.resin-spec small {
    color: var(--muted);
}

.resin-mosaic {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
    grid-auto-rows: 180px;
    gap: 14px;
}

.resin-tile.tall {
    grid-row: span 2;
}

.resin-tile.wide {
    grid-column: span 2;
}

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

.resin-specs article,
.workshop-card {
    min-height: 230px;
    padding: 24px;
}

.cosplay-workbench {
    min-height: 610px;
}

.cosplay-workbench::after {
    position: absolute;
    right: 6%;
    bottom: 70px;
    left: 6%;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(213, 164, 91, 0.2), rgba(0, 0, 0, 0.86) 62%, transparent 76%);
    content: "";
}

.prop {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(241, 209, 140, 0.42);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 244, 239, 0.68);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prop--mask {
    top: 36px;
    right: 8%;
    width: 44%;
    min-height: 330px;
    border-radius: 44px;
    transform: rotate(4deg);
}

.prop--weapon {
    bottom: 118px;
    left: 5%;
    width: 58%;
    min-height: 110px;
    border-radius: 999px;
    transform: rotate(-18deg);
}

.prop--armor {
    right: 18%;
    bottom: 34px;
    width: 36%;
    min-height: 210px;
    border-radius: 18px;
    transform: rotate(-3deg);
}

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

.blueprint-panel {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(213, 164, 91, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(rgba(213, 164, 91, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(213, 164, 91, 0.07) 1px, transparent 1px),
        rgba(255, 255, 255, 0.035);
    background-size: 28px 28px;
}

@media (max-width: 1150px) {
    .category-shell,
    .bust-editorial,
    .cosplay-blueprint {
        grid-template-columns: 1fr;
    }

    .miniature-board,
    .bust-rail,
    .resin-specs,
    .workshop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .resin-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .category-shell {
        gap: 28px;
        min-height: auto;
        padding-top: calc(var(--header-h) + 32px);
        padding-bottom: 38px;
    }

    .category-copy h1 {
        font-size: clamp(34px, 10vw, 52px);
    }

    .funko-stage,
    .bust-museum,
    .resin-hero__cabinet,
    .cosplay-workbench {
        min-height: 430px;
    }

    .funko-family-grid,
    .miniature-board,
    .bust-rail,
    .resin-specs,
    .workshop-grid,
    .resin-mosaic {
        grid-template-columns: 1fr;
    }

    .resin-tile.tall,
    .resin-tile.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .funko-families,
    .funko-catalog,
    .bust-collection,
    .bust-editorial,
    .resin-wall,
    .resin-specs,
    .cosplay-workshop,
    .cosplay-blueprint {
        padding: 48px 0;
    }
}
/* Product page proportion and scroll fade refinements */
.category-shell {
    grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(38px, 5vw, 72px);
    min-height: 760px;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 58px;
}

.category-copy {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.category-copy h1 {
    max-width: 640px;
    text-wrap: balance;
    font-size: clamp(44px, 4.75vw, 76px);
    line-height: 0.96;
}

.category-lead {
    max-width: 610px;
    text-wrap: pretty;
    font-size: clamp(17px, 1.25vw, 20px);
    line-height: 1.55;
}

.category-stats {
    max-width: 520px;
}

.category-stats span {
    min-width: 118px;
    padding: 11px 13px;
}

.category-stats strong {
    font-size: 26px;
}

.funko-stage,
.bust-museum,
.resin-hero__cabinet,
.cosplay-workbench {
    min-height: 540px;
}

.funko-stage::before,
.bust-museum::before,
.resin-hero__cabinet::before,
.cosplay-workbench::before {
    inset: 10% 8% 7%;
}

.funko-card-stack {
    inset: 5% 5% 2%;
}

.funko-showpiece {
    border-radius: 24px;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.38);
}

.funko-showpiece--back {
    top: 90px;
    left: 7%;
    width: 30%;
    min-height: 250px;
    transform: rotate(-8deg);
}

.funko-showpiece--mid {
    right: 7%;
    bottom: 98px;
    width: 31%;
    min-height: 270px;
    transform: rotate(7deg);
}

.funko-showpiece--front {
    top: 42px;
    left: 33%;
    width: 34%;
    min-height: 400px;
    border-radius: 32px 32px 24px 24px;
}

.funko-families,
.funko-catalog,
.bust-collection,
.bust-editorial,
.resin-wall,
.resin-specs,
.cosplay-workshop,
.cosplay-blueprint {
    padding: 72px 0;
}

.funko-family-grid {
    grid-template-columns: 1.08fr 1fr 0.92fr;
    gap: 18px;
    align-items: stretch;
}

.funko-family {
    min-height: 360px;
    padding: 16px;
}

.family-visual {
    min-height: 180px;
}

.family-visual--themed {
    min-height: 220px;
}

.miniature-board {
    grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
}

.miniature-slot {
    min-height: 220px;
}

.miniature-slot.wide {
    min-height: 310px;
}

.museum-arch {
    width: min(64%, 380px);
    min-height: 440px;
}

.museum-plinth {
    right: 20%;
    bottom: 60px;
    left: 20%;
    height: 92px;
}

.bust-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bust-slot {
    min-height: 270px;
}

.resin-main-slot {
    width: min(74%, 450px);
    min-height: 420px;
}

.resin-spec {
    right: 12%;
    bottom: 72px;
}

.resin-mosaic {
    grid-auto-rows: 155px;
    gap: 16px;
}

.resin-tile {
    min-height: 0;
}

.cosplay-workbench {
    min-height: 530px;
}

.prop--mask {
    top: 44px;
    right: 10%;
    width: 38%;
    min-height: 280px;
}

.prop--weapon {
    bottom: 126px;
    left: 9%;
    width: 52%;
    min-height: 92px;
}

.prop--armor {
    right: 19%;
    bottom: 48px;
    width: 32%;
    min-height: 170px;
}

.category-copy.reveal > *,
.section-heading.reveal > *,
.catalog-header.reveal > *,
.bust-editorial__text.reveal > *,
.cosplay-blueprint.reveal > div:first-child > *,
.product-cta.reveal > div > * {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
}

.category-copy.reveal.is-visible > *,
.section-heading.reveal.is-visible > *,
.catalog-header.reveal.is-visible > *,
.bust-editorial__text.reveal.is-visible > *,
.cosplay-blueprint.reveal.is-visible > div:first-child > *,
.product-cta.reveal.is-visible > div > * {
    animation: product-text-fade 1.1s var(--ease-soft) both;
}

.category-copy.reveal.is-visible > *:nth-child(1),
.section-heading.reveal.is-visible > *:nth-child(1),
.catalog-header.reveal.is-visible > *:nth-child(1),
.bust-editorial__text.reveal.is-visible > *:nth-child(1),
.cosplay-blueprint.reveal.is-visible > div:first-child > *:nth-child(1),
.product-cta.reveal.is-visible > div > *:nth-child(1) { animation-delay: 0.05s; }

.category-copy.reveal.is-visible > *:nth-child(2),
.section-heading.reveal.is-visible > *:nth-child(2),
.catalog-header.reveal.is-visible > *:nth-child(2),
.bust-editorial__text.reveal.is-visible > *:nth-child(2),
.cosplay-blueprint.reveal.is-visible > div:first-child > *:nth-child(2),
.product-cta.reveal.is-visible > div > *:nth-child(2) { animation-delay: 0.16s; }

.category-copy.reveal.is-visible > *:nth-child(3),
.section-heading.reveal.is-visible > *:nth-child(3),
.catalog-header.reveal.is-visible > *:nth-child(3),
.bust-editorial__text.reveal.is-visible > *:nth-child(3),
.cosplay-blueprint.reveal.is-visible > div:first-child > *:nth-child(3),
.product-cta.reveal.is-visible > div > *:nth-child(3) { animation-delay: 0.28s; }

.category-copy.reveal.is-visible > *:nth-child(4),
.category-copy.reveal.is-visible > *:nth-child(5) { animation-delay: 0.4s; }

@keyframes product-text-fade {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@media (max-width: 1280px) {
    .category-shell {
        grid-template-columns: minmax(390px, 0.9fr) minmax(440px, 1.1fr);
        gap: 38px;
    }

    .category-copy h1 {
        font-size: clamp(42px, 4.35vw, 66px);
    }
}

@media (max-width: 1150px) {
    .category-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .category-copy,
    .category-copy h1,
    .category-lead {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .category-copy h1 {
        font-size: clamp(34px, 10vw, 50px);
    }

    .funko-stage,
    .bust-museum,
    .resin-hero__cabinet,
    .cosplay-workbench {
        min-height: 380px;
    }
}
/* Final product page layout pass */
.category-stats {
    display: none !important;
}

.product-page .site-header,
.product-page .nav-menu a,
.product-page .btn,
.product-page .eyebrow,
.product-page p,
.product-page span,
.product-page small,
.product-page strong {
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.product-page .eyebrow,
.product-page .product-back,
.product-page .nav-menu a,
.product-page .btn {
    letter-spacing: 0.08em;
}

.product-page h1 *,
.product-page h2 *,
.product-page h3 *,
.product-page h4 *,
.product-page h5 *,
.product-page h6 * {
    font-family: inherit;
}

.category-shell {
    grid-template-columns: minmax(360px, 520px) minmax(520px, 1fr);
    gap: clamp(44px, 5.2vw, 78px);
    align-items: center;
    min-height: min(760px, calc(100vh - 18px));
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 46px;
}

.category-copy {
    max-width: 560px;
}

.category-copy h1 {
    max-width: 540px;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 0.98;
    letter-spacing: 0;
}

.category-lead {
    max-width: 540px;
    margin-top: 24px;
    font-size: clamp(17px, 1.1vw, 19px);
    line-height: 1.58;
}

.category-copy .hero__actions {
    margin-top: 34px;
}

.funko-stage,
.bust-museum,
.resin-hero__cabinet,
.cosplay-workbench {
    min-height: 500px;
}

.funko-stage::before,
.bust-museum::before,
.resin-hero__cabinet::before,
.cosplay-workbench::before {
    inset: 12% 6% 9%;
    opacity: 0.72;
}

.funko-card-stack {
    inset: 7% 4% 5%;
}

.funko-showpiece {
    border-color: rgba(241, 209, 140, 0.28);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.075), transparent 42%),
        radial-gradient(circle at 50% 35%, rgba(213, 164, 91, 0.11), transparent 46%),
        rgba(15, 15, 15, 0.72);
    color: rgba(245, 244, 239, 0.52);
}

.funko-showpiece--back {
    top: 110px;
    left: 9%;
    width: 27%;
    min-height: 220px;
    transform: rotate(-7deg);
}

.funko-showpiece--mid {
    right: 8%;
    bottom: 116px;
    width: 28%;
    min-height: 236px;
    transform: rotate(6deg);
}

.funko-showpiece--front {
    top: 54px;
    left: 36%;
    width: 30%;
    min-height: 350px;
    border-radius: 28px;
}

.funko-families,
.funko-catalog,
.bust-collection,
.bust-editorial,
.resin-wall,
.resin-specs,
.cosplay-workshop,
.cosplay-blueprint {
    padding: 66px 0;
}

.funko-family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.funko-family {
    min-height: 330px;
    padding: 18px;
}

.family-visual {
    min-height: 170px;
}

.family-visual--themed {
    min-height: 190px;
}

.funko-family h3,
.workshop-card h3,
.resin-specs h3 {
    font-size: 24px;
    letter-spacing: 0;
}

.funko-family p,
.workshop-card p,
.resin-specs p,
.section-heading p,
.catalog-header p,
.bust-editorial p,
.cosplay-blueprint p {
    line-height: 1.55;
}

.catalog-header {
    padding: 22px 24px;
}

.catalog-header h2,
.bust-collection h2,
.resin-wall h2,
.cosplay-workshop h2,
.bust-editorial h2,
.cosplay-blueprint h2,
.product-cta h2 {
    font-size: clamp(32px, 3.6vw, 52px);
    letter-spacing: 0;
}

.miniature-board {
    grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.miniature-slot {
    min-height: 200px;
}

.miniature-slot.wide {
    min-height: 280px;
}

.bust-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bust-slot {
    min-height: 250px;
    padding: 20px;
}

.museum-arch {
    width: min(58%, 340px);
    min-height: 400px;
}

.resin-main-slot {
    width: min(68%, 400px);
    min-height: 390px;
}

.resin-mosaic {
    grid-auto-rows: 146px;
}

.resin-specs article,
.workshop-card {
    min-height: 210px;
}

.cosplay-workbench {
    min-height: 500px;
}

.product-cta {
    margin-bottom: 66px;
}

@media (max-width: 1280px) {
    .category-shell {
        grid-template-columns: minmax(340px, 500px) minmax(440px, 1fr);
        gap: 42px;
    }

    .category-copy h1 {
        font-size: clamp(38px, 3.75vw, 58px);
    }

    .funko-showpiece--front {
        min-height: 330px;
    }
}

@media (max-width: 1150px) {
    .category-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .category-copy,
    .category-copy h1,
    .category-lead {
        max-width: 760px;
    }
}
/* Business and events pages */
.business-page main {
    overflow: hidden;
}

.business-hero {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(46px, 5vw, 82px);
    align-items: center;
    min-height: min(820px, calc(100vh + 80px));
    padding-top: calc(var(--header-h) + 58px);
    padding-bottom: 64px;
}

.business-display,
.gift-composition {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.business-glow,
.gift-composition::before {
    position: absolute;
    width: min(76%, 560px);
    aspect-ratio: 1;
    border: 2px solid rgba(213, 164, 91, 0.48);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 164, 91, 0.16), rgba(213, 164, 91, 0.04) 44%, transparent 70%);
    box-shadow: 0 0 64px rgba(213, 164, 91, 0.2);
    content: "";
    z-index: -2;
}

.business-asset {
    position: relative;
    z-index: 2;
    width: min(58%, 390px);
    height: auto;
    filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.62));
}

.business-asset--keychain {
    width: min(54%, 350px);
    transform: rotate(-8deg) translateY(-14px);
}

.business-asset--qr {
    width: min(62%, 430px);
    transform: rotate(4deg) translateY(8px);
}

.business-plinth {
    position: absolute;
    right: 18%;
    bottom: 92px;
    left: 18%;
    height: 118px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(213, 164, 91, 0.22), rgba(12, 12, 12, 0.96) 50%, transparent 72%);
    filter: blur(0.2px) drop-shadow(0 30px 28px rgba(0, 0, 0, 0.42));
    z-index: 1;
}

.business-note,
.gift-ribbon {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(213, 164, 91, 0.32);
    border-radius: 999px;
    background: rgba(7, 8, 9, 0.78);
    color: var(--gold-soft);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.business-note--tap {
    top: 18%;
    left: 14%;
}

.business-note--profile {
    right: 10%;
    bottom: 22%;
}

.business-note--scan {
    top: 22%;
    right: 14%;
}

.qr-signal {
    position: absolute;
    border: 1px solid rgba(213, 164, 91, 0.28);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(213, 164, 91, 0.12), transparent 54%);
    transform: rotate(-8deg);
}

.qr-signal--one {
    width: 220px;
    height: 320px;
    left: 10%;
    bottom: 18%;
}

.qr-signal--two {
    width: 180px;
    height: 250px;
    right: 8%;
    top: 16%;
    transform: rotate(10deg);
}

.business-use-grid,
.gift-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 70px 0;
}

.business-use,
.qr-card,
.gift-idea {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%),
        rgba(18, 18, 18, 0.72);
}

.business-use span,
.qr-card span,
.gift-idea span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.business-use h2,
.qr-card h3,
.gift-idea h3 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
}

.business-use p,
.qr-copy p,
.gift-idea p {
    color: var(--muted);
    font-size: 17px;
}

.business-process {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    gap: 44px;
    align-items: center;
    padding: 76px 0;
}

.business-process h2,
.qr-copy h2,
.gift-ideas h2 {
    margin: 8px 0 16px;
    color: #fff;
    font-size: clamp(34px, 4.2vw, 64px);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.business-process p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.business-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.business-steps span {
    min-height: 128px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(213, 164, 91, 0.24);
    border-radius: 8px;
    background: radial-gradient(circle at 50% 10%, rgba(213, 164, 91, 0.18), rgba(255, 255, 255, 0.035) 58%);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.qr-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.76fr) minmax(520px, 1fr);
    gap: 36px;
    align-items: stretch;
    padding: 78px 0;
}

.qr-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qr-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.qr-card {
    min-height: 220px;
}

.gift-composition::before {
    width: min(78%, 560px);
}

.gift-card {
    position: absolute;
    width: min(54%, 410px);
    aspect-ratio: 1.56;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(18, 18, 18, 0.94));
    box-shadow: 0 34px 58px rgba(0, 0, 0, 0.54);
    transform: rotate(-5deg) translate(-10%, -8%);
}

.gift-card img {
    position: absolute;
    width: 48%;
    right: 9%;
    top: 16%;
    filter: brightness(0) saturate(100%) invert(70%) sepia(39%) saturate(662%) hue-rotate(358deg) brightness(89%) contrast(89%);
}

.gift-object {
    position: absolute;
    z-index: 3;
    height: auto;
    filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.62));
}

.gift-object--keychain {
    width: min(32%, 220px);
    left: 18%;
    bottom: 20%;
    transform: rotate(10deg);
}

.gift-object--qr {
    width: min(34%, 230px);
    right: 16%;
    bottom: 16%;
    transform: rotate(-7deg);
}

.gift-ribbon {
    left: 17%;
    top: 20%;
}

.gift-ideas {
    padding: 74px 0;
}

.gift-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
}

.gift-idea {
    min-height: 250px;
}

@media (max-width: 1150px) {
    .business-hero,
    .business-process,
    .qr-layout {
        grid-template-columns: 1fr;
    }

    .business-display,
    .gift-composition {
        min-height: 540px;
    }

    .business-use-grid,
    .gift-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .business-hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + 34px);
    }

    .business-display,
    .gift-composition {
        min-height: 420px;
    }

    .business-asset--keychain,
    .business-asset--qr {
        width: min(72%, 310px);
    }

    .business-use-grid,
    .gift-grid,
    .qr-cards,
    .business-steps {
        grid-template-columns: 1fr;
    }

    .business-use,
    .qr-card,
    .gift-idea {
        min-height: 210px;
        padding: 22px;
    }
}

/* Header desktop single-line pass */
:root {
    --display-font: "Art Brush", "Inter", Arial, Helvetica, sans-serif;
}

@media (min-width: 1151px) {
    :root {
        --header-h: 84px;
    }

    .navbar {
        grid-template-columns: 88px minmax(0, 1fr) auto;
        gap: clamp(18px, 2vw, 30px);
        height: var(--header-h);
        min-height: 0;
    }

    .brand {
        display: inline-flex;
        height: var(--header-h);
        align-items: center;
    }

    .brand__mark {
        height: 118px;
        transform: translate(18px, 8px);
    }

    .nav-menu {
        min-width: 0;
        gap: clamp(14px, 1.45vw, 24px);
    }

    .nav-menu a,
    .product-page .nav-menu a {
        gap: 6px;
        padding: 8px 0;
        white-space: nowrap;
        font-size: clamp(12px, 0.72vw, 13px);
        line-height: 1;
        letter-spacing: 0.015em;
    }

    .nav-chevron {
        flex: 0 0 auto;
        width: 10px;
        height: 10px;
    }

    .nav-actions {
        gap: clamp(14px, 1.3vw, 22px);
    }

    .icon-btn {
        width: 34px;
        height: 34px;
    }

    .icon-btn svg {
        width: 24px;
        height: 24px;
    }
}

.product-page .category-copy h1,
.product-page .catalog-header h2,
.product-page .split-copy h2,
.product-page .bust-title h2,
.product-page .resin-intro h2,
.product-page .cosplay-copy h2 {
    font-family: var(--display-font);
}
/* Warm alternating page backgrounds */
.product-page main {
    position: relative;
    background: #050607;
}

.product-page main > section {
    position: relative;
    isolation: isolate;
}

.product-page main > section:not(:first-child) {
    padding-top: clamp(88px, 8vw, 142px);
    padding-bottom: clamp(88px, 8vw, 142px);
}

.product-page main > section::before {
    position: absolute;
    top: -120px;
    bottom: -120px;
    left: 50%;
    z-index: -2;
    width: 100vw;
    pointer-events: none;
    content: "";
    transform: translateX(-50%);
}

.product-page main > section:not(:first-child)::before {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.product-page main > section:nth-of-type(2)::before,
.product-page main > section:nth-of-type(4)::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 242, 214, 0.95), transparent 28rem),
        radial-gradient(circle at 78% 22%, rgba(213, 164, 91, 0.42), transparent 30rem),
        radial-gradient(circle at 52% 92%, rgba(102, 63, 24, 0.25), transparent 28rem),
        linear-gradient(180deg, rgba(6, 7, 8, 0) 0%, #d8c4a4 20%, #f1e6d3 50%, #c99a5a 78%, rgba(6, 7, 8, 0) 100%);
}

.product-page main > section:nth-of-type(3)::before,
.product-page main > section:nth-of-type(5)::before {
    background:
        radial-gradient(circle at 82% 18%, rgba(213, 164, 91, 0.24), transparent 28rem),
        radial-gradient(circle at 16% 74%, rgba(116, 72, 31, 0.22), transparent 30rem),
        linear-gradient(180deg, rgba(6, 7, 8, 0) 0%, #080807 18%, #15100b 52%, #070707 84%, rgba(6, 7, 8, 0) 100%);
}

.product-page main > section:nth-of-type(even) .eyebrow,
.product-page main > section:nth-of-type(even) .product-back,
.product-page main > section:nth-of-type(even) span:not(.button-loader) {
    color: #8b5f27;
}

.product-page main > section:nth-of-type(even) h2,
.product-page main > section:nth-of-type(even) h3,
.product-page main > section:nth-of-type(even) strong {
    color: #17110a;
}

.product-page main > section:nth-of-type(even) p,
.product-page main > section:nth-of-type(even) small {
    color: #3c3326;
}

.product-page main > section:nth-of-type(even) .section-heading p,
.product-page main > section:nth-of-type(even) .catalog-header p,
.product-page main > section:nth-of-type(even) .qr-copy p,
.product-page main > section:nth-of-type(even) .business-process p,
.product-page main > section:nth-of-type(even) .product-cta p {
    color: #4a3d2f;
}

.product-page main > section:nth-of-type(even) .btn--gold {
    color: #fff;
}

.product-page main > section:nth-of-type(even) .funko-family,
.product-page main > section:nth-of-type(even) .bust-slot,
.product-page main > section:nth-of-type(even) .resin-tile,
.product-page main > section:nth-of-type(even) .workshop-card,
.product-page main > section:nth-of-type(even) .business-use,
.product-page main > section:nth-of-type(even) .qr-card,
.product-page main > section:nth-of-type(even) .gift-idea,
.product-page main > section:nth-of-type(even) .miniature-slot,
.product-page main > section:nth-of-type(even) .business-steps span,
.product-page main > section:nth-of-type(even) .blueprint-panel span,
.product-page main > section:nth-of-type(even) .bust-notes span {
    border-color: rgba(104, 66, 25, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26) 44%, rgba(176, 125, 59, 0.18)),
        rgba(247, 237, 219, 0.62);
    box-shadow: 0 26px 70px rgba(64, 38, 14, 0.14);
}

.product-page main > section:nth-of-type(even) .family-visual,
.product-page main > section:nth-of-type(even) .miniature-slot,
.product-page main > section:nth-of-type(even) .resin-tile,
.product-page main > section:nth-of-type(even) .bust-slot {
    background:
        radial-gradient(circle at 50% 20%, rgba(213, 164, 91, 0.24), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(180, 129, 66, 0.18));
}

.product-page main > section:nth-of-type(odd):not(:first-child) .product-cta,
.product-page main > section:nth-of-type(odd):not(:first-child) .business-use,
.product-page main > section:nth-of-type(odd):not(:first-child) .qr-card,
.product-page main > section:nth-of-type(odd):not(:first-child) .gift-idea,
.product-page main > section:nth-of-type(odd):not(:first-child) .workshop-card,
.product-page main > section:nth-of-type(odd):not(:first-child) .resin-specs article {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 38%),
        rgba(15, 13, 11, 0.78);
    border-color: rgba(213, 164, 91, 0.16);
}

.product-page .section-heading,
.product-page .catalog-header,
.product-page .qr-copy {
    max-width: 900px;
}

.product-page .section-heading h2,
.product-page .catalog-header h2,
.product-page .qr-copy h2,
.product-page .business-process h2,
.product-page .product-cta h2 {
    text-wrap: balance;
}

.product-page .category-lead,
.product-page .section-heading p,
.product-page .catalog-header p,
.product-page .business-process p,
.product-page .product-cta p {
    text-wrap: pretty;
}

.product-page .product-cta {
    overflow: hidden;
    border-color: rgba(213, 164, 91, 0.22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
    .product-page main > section:not(:first-child) {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .product-page main > section::before {
        top: -76px;
        bottom: -76px;
    }
}
/* Product CTA on warm bands */
.product-page main > section:nth-of-type(even).product-cta {
    border-color: rgba(104, 66, 25, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26) 44%, rgba(176, 125, 59, 0.18)),
        rgba(247, 237, 219, 0.68);
    box-shadow: 0 30px 80px rgba(64, 38, 14, 0.16);
}

.product-page main > section:nth-of-type(odd):not(:first-child).product-cta {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 38%),
        rgba(15, 13, 11, 0.82);
}
/* Refined section transition depth */
.product-page main > section:first-child {
    min-height: max(900px, 100svh);
    padding-bottom: clamp(150px, 13vw, 230px);
}

.product-page main > section:not(:first-child) {
    margin-top: clamp(72px, 7vw, 128px);
    padding-top: clamp(118px, 9vw, 172px);
    padding-bottom: clamp(110px, 9vw, 166px);
}

.product-page main > section::before {
    top: -96px;
    bottom: -160px;
}

.product-page main > section:not(:first-child)::before {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.62) 94%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.62) 94%, transparent 100%);
}

.product-page main > section:nth-of-type(2)::before,
.product-page main > section:nth-of-type(4)::before {
    background:
        radial-gradient(circle at 18% 16%, rgba(213, 164, 91, 0.34), transparent 30rem),
        radial-gradient(circle at 78% 22%, rgba(112, 72, 34, 0.38), transparent 34rem),
        radial-gradient(circle at 48% 92%, rgba(35, 21, 10, 0.3), transparent 30rem),
        linear-gradient(180deg, rgba(6, 7, 8, 0) 0%, #23170d 8%, #6f4822 26%, #8a5d2e 58%, #563516 82%, rgba(6, 7, 8, 0) 100%);
}

.product-page main > section:nth-of-type(3)::before,
.product-page main > section:nth-of-type(5)::before {
    background:
        radial-gradient(circle at 82% 18%, rgba(213, 164, 91, 0.18), transparent 30rem),
        radial-gradient(circle at 16% 74%, rgba(116, 72, 31, 0.18), transparent 34rem),
        linear-gradient(180deg, rgba(6, 7, 8, 0) 0%, #060606 20%, #120d08 52%, #060606 82%, rgba(6, 7, 8, 0) 100%);
}

.product-page main > section:nth-of-type(even) .eyebrow,
.product-page main > section:nth-of-type(even) .product-back,
.product-page main > section:nth-of-type(even) span:not(.button-loader) {
    color: var(--gold-soft);
}

.product-page main > section:nth-of-type(even) h2,
.product-page main > section:nth-of-type(even) h3,
.product-page main > section:nth-of-type(even) strong {
    color: #fff;
}

.product-page main > section:nth-of-type(even) p,
.product-page main > section:nth-of-type(even) small,
.product-page main > section:nth-of-type(even) .section-heading p,
.product-page main > section:nth-of-type(even) .catalog-header p,
.product-page main > section:nth-of-type(even) .qr-copy p,
.product-page main > section:nth-of-type(even) .business-process p,
.product-page main > section:nth-of-type(even) .product-cta p {
    color: rgba(245, 244, 239, 0.86);
}

.product-page main > section:nth-of-type(even) .funko-family,
.product-page main > section:nth-of-type(even) .bust-slot,
.product-page main > section:nth-of-type(even) .resin-tile,
.product-page main > section:nth-of-type(even) .workshop-card,
.product-page main > section:nth-of-type(even) .business-use,
.product-page main > section:nth-of-type(even) .qr-card,
.product-page main > section:nth-of-type(even) .gift-idea,
.product-page main > section:nth-of-type(even) .miniature-slot,
.product-page main > section:nth-of-type(even) .business-steps span,
.product-page main > section:nth-of-type(even) .blueprint-panel span,
.product-page main > section:nth-of-type(even) .bust-notes span {
    border-color: rgba(213, 164, 91, 0.24);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 42%),
        rgba(24, 17, 10, 0.72);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.product-page main > section:nth-of-type(even) .family-visual,
.product-page main > section:nth-of-type(even) .miniature-slot,
.product-page main > section:nth-of-type(even) .resin-tile,
.product-page main > section:nth-of-type(even) .bust-slot {
    background:
        radial-gradient(circle at 50% 20%, rgba(213, 164, 91, 0.24), transparent 44%),
        linear-gradient(145deg, rgba(80, 52, 25, 0.7), rgba(18, 13, 8, 0.84));
}

.product-page main > section:nth-of-type(even).product-cta {
    border-color: rgba(213, 164, 91, 0.24);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 42%),
        rgba(24, 17, 10, 0.76);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
    .product-page main > section:first-child {
        min-height: max(760px, 100svh);
        padding-bottom: 96px;
    }

    .product-page main > section:not(:first-child) {
        margin-top: 54px;
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .product-page main > section::before {
        top: -64px;
        bottom: -96px;
    }
}

/* Funkos collections */
.product-page--funkos .funko-collections {
    display: grid;
    gap: clamp(22px, 3vw, 34px);
}

.product-page--funkos .funko-collections .section-heading {
    max-width: 980px;
}

.funko-collection-block {
    position: relative;
    display: grid;
    gap: clamp(24px, 3vw, 42px);
    align-items: center;
    overflow: hidden;
    min-height: 520px;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(104, 66, 25, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 78% 18%, rgba(213, 164, 91, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 237, 219, 0.88) 48%, rgba(213, 164, 91, 0.14)),
        #f7f3eb;
    box-shadow: 0 28px 78px rgba(64, 38, 14, 0.14);
}

.funko-collection-block::before {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(142, 98, 48, 0.055) 0 1px, transparent 1px 7px);
    content: "";
    pointer-events: none;
}

.funko-collection-block--basics {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.funko-collection-block--theme {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    background:
        radial-gradient(circle at 82% 24%, rgba(213, 164, 91, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(16, 16, 16, 0.94), rgba(10, 10, 10, 0.82)),
        #090909;
    border-color: rgba(213, 164, 91, 0.24);
    box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.collection-copy {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.product-page--funkos .collection-copy h3 {
    margin: 12px 0 16px;
    color: #15100b;
    font-size: clamp(34px, 4.1vw, 58px);
    line-height: 0.98;
    text-transform: uppercase;
}

.product-page--funkos .funko-collection-block--basics .collection-copy h3 {
    color: #111 !important;
    text-align: left;
}

.product-page--funkos .funko-collection-block--basics .collection-copy > p:not(.eyebrow) {
    color: #2d251d;
}

.product-page--funkos .collection-copy p {
    margin: 0;
    color: #4a3e32;
    font-size: 16px;
    line-height: 1.62;
}

.collection-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.product-page--funkos .collection-points li {
    position: relative;
    padding-left: 24px;
    color: #241a10;
    font-weight: 700;
}

.collection-points li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 9px;
    height: 9px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    content: "";
}

.product-page--funkos .funko-collection-block--theme .collection-copy h3 {
    color: #fff;
}

.product-page--funkos .funko-collection-block--theme .collection-copy p {
    color: rgba(245, 244, 239, 0.74);
}

.funko-collection-block--theme .btn {
    margin-top: 26px;
}

.basic-model-grid,
.theme-model-grid {
    position: relative;
    z-index: 1;
}

.basic-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.basic-model {
    display: grid;
    grid-template-rows: minmax(250px, 1fr) auto auto;
    min-height: 390px;
    padding: 14px;
    border: 1px solid rgba(104, 66, 25, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.76), 0 20px 42px rgba(64, 38, 14, 0.1);
}

.model-strip {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    place-items: end center;
    min-height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 72%, rgba(213, 164, 91, 0.22), transparent 42%),
        rgba(255, 255, 255, 0.42);
}

.model-strip img {
    grid-area: 1 / 1;
    width: auto;
    max-width: 74%;
    max-height: 248px;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(36, 22, 8, 0.22));
}

.model-strip img:nth-child(2) {
    max-width: 46%;
    opacity: 0.78;
    transform: translateX(-52%) scale(0.78);
}

.model-strip img:nth-child(3) {
    max-width: 46%;
    opacity: 0.66;
    transform: translateX(52%) scale(0.74);
}

.product-page--funkos .basic-model strong {
    margin-top: 16px;
    color: #15100b;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.product-page--funkos .basic-model small {
    margin-top: 8px;
    color: #5b4b3a;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.theme-model-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 12px;
}

.theme-model-grid img {
    width: 100%;
    height: 100%;
    padding: 14px;
    object-fit: contain;
    border: 1px solid rgba(213, 164, 91, 0.14);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 76%, rgba(213, 164, 91, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.3));
}

.theme-model-grid img:nth-child(1),
.theme-model-grid img:nth-child(6) {
    grid-row: span 2;
}

.theme-model-grid img:nth-child(3) {
    grid-column: span 2;
}

@media (max-width: 1150px) {
    .funko-collection-block--basics,
    .funko-collection-block--theme {
        grid-template-columns: 1fr;
    }

    .collection-copy {
        max-width: 760px;
    }

    .theme-model-grid {
        grid-auto-rows: 170px;
    }
}

@media (max-width: 760px) {
    .funko-collection-block {
        min-height: auto;
        padding: 22px;
    }

    .basic-model-grid {
        grid-template-columns: 1fr;
    }

    .basic-model {
        min-height: auto;
        grid-template-rows: 260px auto auto;
    }

    .theme-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
    }

    .theme-model-grid img:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 430px) {
    .theme-model-grid {
        grid-auto-rows: 138px;
        gap: 8px;
    }

    .theme-model-grid img {
        padding: 10px;
    }
}

/* Funkos hero composition */
.product-page--funkos .category-copy {
    align-self: center;
}

.product-page--funkos .category-lead {
    max-width: 620px;
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.5;
}

.hero-copy-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 560px;
    margin-top: 22px;
}

.hero-copy-points span {
    position: relative;
    padding: 10px 12px 10px 34px;
    border: 1px solid rgba(213, 164, 91, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(245, 244, 239, 0.86);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-copy-points span::before {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.product-page--funkos .funko-stage {
    min-height: clamp(620px, 43vw, 760px);
    overflow: visible;
}

.product-page--funkos .funko-stage::before {
    top: -7%;
    left: 5%;
    width: 34%;
    height: 96%;
    border: 0;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 50% 3%, rgba(255, 249, 224, 0.98) 0 3%, rgba(255, 222, 151, 0.72) 5%, rgba(213, 164, 91, 0.18) 11%, transparent 17%),
        radial-gradient(ellipse at 50% 40%, rgba(234, 176, 88, 0.28) 0 15%, rgba(213, 164, 91, 0.13) 34%, rgba(213, 164, 91, 0.04) 54%, transparent 76%);
    box-shadow: none;
    opacity: 0.74;
    filter: blur(24px);
    transform: rotate(-15deg) translateX(-18px);
    transform-origin: 50% 0%;
    mix-blend-mode: screen;
    mask-image: radial-gradient(ellipse at 50% 42%, #000 0 38%, rgba(0, 0, 0, 0.72) 52%, transparent 76%);
    animation: funko-spot-left 6.8s ease-in-out infinite;
}

.product-page--funkos .funko-stage::after {
    position: absolute;
    top: -7%;
    right: 10%;
    z-index: -1;
    width: 34%;
    height: 96%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 50% 3%, rgba(255, 249, 224, 0.98) 0 3%, rgba(255, 222, 151, 0.72) 5%, rgba(213, 164, 91, 0.18) 11%, transparent 17%),
        radial-gradient(ellipse at 50% 40%, rgba(234, 176, 88, 0.28) 0 15%, rgba(213, 164, 91, 0.13) 34%, rgba(213, 164, 91, 0.04) 54%, transparent 76%);
    content: "";
    opacity: 0.74;
    filter: blur(24px);
    transform: rotate(15deg) translateX(18px);
    transform-origin: 50% 0%;
    mix-blend-mode: screen;
    mask-image: radial-gradient(ellipse at 50% 42%, #000 0 38%, rgba(0, 0, 0, 0.72) 52%, transparent 76%);
    animation: funko-spot-right 7.4s ease-in-out infinite;
}

.product-page--funkos .funko-card-stack {
    inset: 4% 0 0;
    background:
        radial-gradient(circle at 22% 2%, rgba(255, 250, 226, 0.74) 0 10px, rgba(255, 222, 151, 0.28) 22px, transparent 58px),
        radial-gradient(circle at 73% 2%, rgba(255, 250, 226, 0.74) 0 10px, rgba(255, 222, 151, 0.28) 22px, transparent 58px);
}

.product-page--funkos .funko-card-stack::before,
.product-page--funkos .funko-card-stack::after {
    position: absolute;
    left: 50%;
    z-index: 1;
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.product-page--funkos .funko-card-stack::before {
    bottom: -3%;
    width: min(100%, 1080px);
    height: 315px;
    border-radius: 50%;
    background:
        linear-gradient(92deg, transparent 0 8%, rgba(255, 226, 160, 0.08) 11%, transparent 15%, transparent 23%, rgba(213, 164, 91, 0.12) 27%, transparent 32%, transparent 45%, rgba(255, 199, 107, 0.1) 49%, transparent 56%, transparent 68%, rgba(188, 119, 52, 0.1) 72%, transparent 80%),
        radial-gradient(ellipse at 50% 34%, rgba(244, 190, 105, 0.46), rgba(213, 164, 91, 0.18) 30%, rgba(83, 50, 23, 0.16) 48%, transparent 76%);
    filter: blur(34px);
    opacity: 0.78;
    mask-image: radial-gradient(ellipse at center, #000 0 30%, rgba(0, 0, 0, 0.5) 54%, transparent 86%);
    animation: funko-floor-glow 5.8s ease-in-out infinite;
}

.product-page--funkos .funko-card-stack::after {
    bottom: -12%;
    width: min(100%, 1230px);
    height: 450px;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 0 12%, rgba(119, 74, 34, 0.13) 20%, transparent 30%, rgba(213, 164, 91, 0.1) 45%, transparent 58%, rgba(113, 68, 29, 0.12) 72%, transparent 88%),
        radial-gradient(ellipse at 50% 18%, rgba(255, 226, 170, 0.2), rgba(213, 164, 91, 0.09) 34%, rgba(54, 31, 14, 0.2) 52%, transparent 76%);
    filter: blur(52px);
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at center, #000 0 24%, rgba(0, 0, 0, 0.42) 52%, transparent 90%);
}

.product-page--funkos .funko-showpiece {
    display: grid;
    place-items: end center;
    margin: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.44));
    transition: transform 0.62s var(--ease-soft), filter 0.62s ease, opacity 0.62s ease;
    will-change: transform;
}

.product-page--funkos .funko-showpiece img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-page--funkos .funko-showpiece figcaption {
    display: none;
}

.product-page--funkos .funko-showpiece--front {
    top: 10px;
    left: 27%;
    z-index: 3;
    width: 49%;
    height: min(660px, 42vw);
    min-height: 0;
    transform: none;
}

.product-page--funkos .funko-showpiece--back {
    top: 104px;
    left: 0;
    z-index: 2;
    width: 34%;
    height: min(520px, 34vw);
    min-height: 0;
    opacity: 0.92;
    transform: rotate(-8deg);
}

.product-page--funkos .funko-showpiece--mid {
    right: 0;
    bottom: 58px;
    z-index: 1;
    width: 34%;
    height: min(520px, 34vw);
    min-height: 0;
    opacity: 0.9;
    transform: rotate(7deg);
}

.product-page--funkos .funko-showpiece:hover {
    z-index: 5;
    filter: drop-shadow(0 42px 42px rgba(0, 0, 0, 0.56));
    opacity: 1;
}

.product-page--funkos .funko-showpiece--front:hover {
    transform: translateY(-12px) scale(1.1);
}

.product-page--funkos .funko-showpiece--back:hover {
    transform: translateY(-14px) rotate(-5deg) scale(1.16);
}

.product-page--funkos .funko-showpiece--mid:hover {
    transform: translateY(-14px) rotate(4deg) scale(1.16);
}

.funko-rotator {
    position: absolute;
    right: 50%;
    bottom: 7%;
    z-index: 6;
    display: grid;
    min-width: min(88%, 360px);
    min-height: 44px;
    place-items: center;
    padding: 0 22px;
    border: 1px solid rgba(213, 164, 91, 0.34);
    border-radius: 999px;
    background: rgba(5, 6, 7, 0.72);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 0 22px rgba(213, 164, 91, 0.08);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateX(50%);
    backdrop-filter: blur(12px);
}

.funko-rotator span {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(8px);
    animation: funko-rotator 12s ease-in-out infinite;
}

.funko-rotator span:nth-child(2) {
    animation-delay: 3s;
}

.funko-rotator span:nth-child(3) {
    animation-delay: 6s;
}

.funko-rotator span:nth-child(4) {
    animation-delay: 9s;
}

@keyframes funko-rotator {
    0%, 9% {
        opacity: 0;
        transform: translateY(8px);
    }
    14%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    31%, 100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@media (max-width: 1150px) {
    .product-page--funkos .funko-stage {
        min-height: 560px;
    }

    .product-page--funkos .funko-showpiece--front {
        top: 22px;
        left: 28%;
        width: 46%;
        height: 500px;
    }

    .product-page--funkos .funko-showpiece--back {
        top: 112px;
        left: 0;
        width: 33%;
        height: 400px;
    }

    .product-page--funkos .funko-showpiece--mid {
        right: 0;
        bottom: 72px;
        width: 33%;
        height: 400px;
    }
}

@media (max-width: 760px) {
    .hero-copy-points {
        grid-template-columns: 1fr;
    }

    .product-page--funkos .funko-stage {
        min-height: 460px;
    }

    .product-page--funkos .funko-showpiece figcaption {
        display: none;
    }

    .product-page--funkos .funko-showpiece--front {
        top: 26px;
        left: 25%;
        width: 50%;
        height: 390px;
    }

    .product-page--funkos .funko-showpiece--back {
        top: 104px;
        left: -2%;
        width: 36%;
        height: 290px;
    }

    .product-page--funkos .funko-showpiece--mid {
        right: -2%;
        bottom: 76px;
        width: 36%;
        height: 290px;
    }

    .funko-rotator {
        bottom: 4%;
        min-width: min(92%, 310px);
        font-size: 10px;
    }
}

/* Funkos hero one-by-one showcase */
.product-page--funkos .funko-card-stack {
    inset: 0;
}

.funko-cycle {
    position: absolute;
    inset: 5% 1% 14%;
    z-index: 2;
}

.funko-cycle-item {
    position: absolute;
    top: 55%;
    left: 50%;
    display: grid;
    width: min(70%, 580px);
    height: 60%;
    margin: 0;
    place-items: center;
    opacity: 0;
    filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.5));
    transform: translate(-50%, -50%) scale(1.02);
    transition: transform 0.68s var(--ease-soft), filter 0.68s ease;
    animation: funko-cycle-focus 42s linear infinite;
    animation-delay: calc(var(--i) * 7s);
    will-change: opacity, transform;
    perspective: 1100px;
    transform-style: preserve-3d;
}

.funko-cycle-item::before {
    position: absolute;
    inset: 18% 18% 12%;
    z-index: -1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(213, 164, 91, 0.22), rgba(213, 164, 91, 0.08) 34%, transparent 68%);
    content: "";
    opacity: 0;
    filter: blur(16px);
    transform: scale(0.72);
    animation: funko-orbit-glow 42s ease-in-out infinite;
    animation-delay: calc(var(--i) * 7s);
}

.funko-cycle-item span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: funko-showcase-float 3.6s ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.45s);
}

.funko-cycle-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    animation: funko-image-slide 42s linear infinite;
    animation-delay: calc(var(--i) * 7s);
}

.funko-cycle:hover .funko-cycle-item {
    animation-play-state: paused;
    filter: drop-shadow(0 46px 44px rgba(0, 0, 0, 0.62));
    transform: translate(-50%, -50%) scale(1.44);
}

.funko-cycle:hover .funko-cycle-item span,
.funko-cycle:hover .funko-cycle-item img {
    animation-play-state: paused;
}

.funko-cycle:hover .funko-cycle-item span {
    transform: translateY(-8px) scale(1.02);
}

.funko-cycle::after {
    content: none;
}

.funko-rotator {
    right: 50%;
    top: 16%;
    bottom: auto;
    z-index: 5;
    min-width: 0;
    min-height: 0;
    width: min(72%, 560px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    transform: translateX(50%);
    backdrop-filter: none;
    pointer-events: none;
}

.funko-rotator span {
    color: var(--gold-soft);
    font-size: clamp(15px, 1.15vw, 19px);
    line-height: 1.25;
    letter-spacing: 0.13em;
    text-shadow: 0 0 20px rgba(213, 164, 91, 0.24), 0 2px 14px rgba(0, 0, 0, 0.5);
    animation: funko-rotator 42s ease-in-out infinite;
}

.funko-rotator span:nth-child(2) {
    animation-delay: 7s;
}

.funko-rotator span:nth-child(3) {
    animation-delay: 14s;
}

.funko-rotator span:nth-child(4) {
    animation-delay: 21s;
}

.funko-rotator span:nth-child(5) {
    animation-delay: 28s;
}

.funko-rotator span:nth-child(6) {
    animation-delay: 35s;
}

@keyframes funko-cycle-focus {
    0% {
        opacity: 0;
        filter: blur(8px) drop-shadow(0 20px 24px rgba(0, 0, 0, 0.36));
    }
    0.55%, 16.2% {
        opacity: 1;
        filter: blur(0) drop-shadow(0 34px 34px rgba(0, 0, 0, 0.5));
    }
    16.9%, 100% {
        opacity: 0;
        filter: blur(8px) drop-shadow(0 20px 24px rgba(0, 0, 0, 0.36));
    }
}

@keyframes funko-image-slide {
    0% {
        opacity: 0.18;
        filter: blur(8px);
        transform: translateX(-34%) translateY(3%) scale(0.72);
    }
    0.55% {
        opacity: 0.82;
        filter: blur(4px);
        transform: translateX(-16%) translateY(1.5%) scale(0.9);
    }
    1.4% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) translateY(0) scale(1);
    }
    14.8% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) translateY(0) scale(1);
    }
    15.75% {
        opacity: 0.64;
        filter: blur(4px);
        transform: translateX(16%) translateY(1.5%) scale(0.9);
    }
    16.66% {
        opacity: 0.18;
        filter: blur(8px);
        transform: translateX(34%) translateY(3%) scale(0.72);
    }
    16.9%, 100% {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(38%) translateY(3%) scale(0.68);
    }
}

@keyframes funko-spot-left {
    0%, 100% {
        opacity: 0.64;
        transform: rotate(-13deg) translateX(-24px);
    }
    50% {
        opacity: 0.82;
        transform: rotate(-18deg) translateX(-4px);
    }
}

@keyframes funko-spot-right {
    0%, 100% {
        opacity: 0.66;
        transform: rotate(13deg) translateX(24px);
    }
    50% {
        opacity: 0.84;
        transform: rotate(18deg) translateX(4px);
    }
}

@keyframes funko-floor-glow {
    0%, 100% {
        opacity: 0.68;
        transform: translateX(-50%) scaleX(0.92);
    }
    50% {
        opacity: 0.94;
        transform: translateX(-50%) scaleX(1.08);
    }
}

@keyframes funko-showcase-float {
    0%, 100% {
        transform: translateY(0) rotate(-0.4deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.6deg);
    }
}

@keyframes funko-orbit-glow {
    0% {
        opacity: 0.58;
        transform: scale(0.76);
    }
    2.4%, 12.8% {
        opacity: 0.18;
        transform: scale(1);
    }
    16.66%, 100% {
        opacity: 0.5;
        transform: scale(0.76);
    }
}

@keyframes funko-hover-cue {
    0%, 100% {
        opacity: 0.24;
        transform: translateX(50%) scaleX(0.55);
    }
    50% {
        opacity: 0.82;
        transform: translateX(50%) scaleX(1);
    }
}

@keyframes funko-rotator {
    0%, 8% {
        opacity: 0;
        transform: translateY(10px);
    }
    12%, 17% {
        opacity: 1;
        transform: translateY(0);
    }
    23%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 1150px) {
    .funko-cycle-item {
        width: min(72%, 520px);
        height: 60%;
    }
}

@media (max-width: 760px) {
    .funko-cycle {
        inset: 6% 0 14%;
    }

    .funko-cycle-item {
        top: 38%;
        width: min(76%, 390px);
        height: 60%;
    }

    .funko-rotator {
        bottom: 16%;
        width: min(86%, 360px);
    }

    .funko-cycle::after {
        bottom: 11%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .category-copy.reveal > *,
    .section-heading.reveal > *,
    .catalog-header.reveal > *,
    .bust-editorial__text.reveal > *,
    .cosplay-blueprint.reveal > div:first-child > *,
    .product-cta.reveal > div > *,
    .hero__copy .eyebrow,
    .hero-title,
    .hero-title__line,
    .hero__copy .hero__lead,
    .hero__copy .hero__actions,
    .process-intro,
    .process-panel h2,
    .process-panel .eyebrow,
    .process-panel .process-subtitle,
    .steps article {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .brush-write {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Estilos premium para imágenes de producto integradas */
.museum-arch img,
.resin-main-slot img,
.prop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(12px, 2.2vw, 24px);
    border-radius: inherit;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efecto hover interactivo en vitrinas de producto */
.museum-arch:hover img,
.resin-main-slot:hover img,
.prop:hover img {
    transform: scale(1.04) translateY(-5px);
}

/* Borde sólido y sutil en lugar de los placeholders discontinuos */
.museum-arch,
.resin-main-slot,
.prop {
    border: 1px solid rgba(213, 164, 91, 0.28) !important;
}

/* Desactivar el destello secundario que causa artefactos de círculo doble */
.hero-products__halo::before {
    display: none !important;
    content: none !important;
}

.hero-scroll-scene.scene-is-complete .hero-products__spark {
    transform: rotate(270deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-out;
}

/* Barra de progreso de escena dorada y luminosa (Scroll-Locking Indicator - Full Width Blurred) */
.scene-progress-bar {
    position: fixed;
    top: calc(var(--header-h) + 12px);
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(213, 164, 91, 0.08);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.products-scroll-scene.scene-is-playing .scene-progress-bar,
.process-scroll-scene.scene-is-playing .scene-progress-bar {
    opacity: 1;
}

.scene-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(var(--scene-progress, 0) * 100%);
    background: linear-gradient(90deg, var(--gold-soft), var(--gold));
    box-shadow: 
        0 0 12px var(--gold), 
        0 0 4px #fff;
    transition: width 0.05s linear;
}

/* ==========================================================================
   SECCIÓN SOBRE MÍ
   ========================================================================== */

.about {
    padding: 84px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
    margin-top: 42px;
}

/* Columna Izquierda: Tarjeta Visual */
.about-visual {
    position: sticky;
    top: calc(var(--header-h) + 32px);
}

.about-card {
    border: 1px solid var(--line-soft);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 32%), var(--panel);
    border-radius: 8px;
    padding: 24px;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 20px 46px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-avatar {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(213, 164, 91, 0.28);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05);
    transition: transform 0.6s var(--ease-soft);
}

.about-card:hover .about-avatar img {
    transform: scale(1.03);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    background: rgba(213, 164, 91, 0.09);
    border: 1px solid rgba(213, 164, 91, 0.32);
    border-radius: 20px;
    color: var(--gold-soft);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.about-badge:hover {
    background: rgba(213, 164, 91, 0.18);
    border-color: var(--gold);
}

.about-quote {
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
    border-left: 2px solid var(--gold);
    padding-left: 14px;
    margin: 8px 0 4px;
}

/* Columna Derecha: Bloques de Historia */
.about-story {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.story-block {
    position: relative;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    transition: transform 0.5s var(--ease-soft), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.story-block:hover {
    transform: translateX(8px);
    background: rgba(213, 164, 91, 0.02);
    border-color: rgba(213, 164, 91, 0.24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-number {
    position: absolute;
    top: 24px;
    right: 30px;
    font-family: var(--display-font);
    font-size: 28px;
    color: rgba(213, 164, 91, 0.22);
    transition: color 0.4s ease;
    line-height: 1;
}

.story-block:hover .story-number {
    color: var(--gold-soft);
}

.story-block h3 {
    font-family: "Inter", Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.story-block p {
    font-size: 15px;
    line-height: 1.62;
    color: var(--muted);
    margin: 0 0 14px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

.story-block strong {
    color: #fff;
    font-weight: 600;
}

.story-highlight {
    font-family: var(--display-font);
    font-size: 26px;
    color: var(--gold);
    margin: 16px 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

/* Adaptabilidad Móvil */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        position: static;
    }
    
    .about-avatar {
        aspect-ratio: 16 / 9;
    }
}

/* --- COMO FUNCIONA - TIMELINE STYLES --- */

.how-it-works-page {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 100px;
    background: #060606; /* Darker background for contrast */
    min-height: 100vh;
    overflow-x: hidden;
}

.how-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.how-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.how-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.how-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 900;
}

.how-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Center vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(213, 164, 91, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
    padding: 40px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Glow/Icon circle on the line */
.timeline-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #111;
    border: 2px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--gold);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(213, 164, 91, 0.2);
    transition: all 0.4s ease;
}

.timeline-item.visible .timeline-icon {
    box-shadow: 0 0 30px rgba(213, 164, 91, 0.5);
    background: rgba(213, 164, 91, 0.1);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

/* Content Card */
.timeline-content {
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(213, 164, 91, 0.3);
    background: rgba(25, 25, 25, 0.8);
    transform: translateY(-5px);
}

/* Step Number Overlay */
.timeline-step-num {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    top: -20px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.timeline-item:nth-child(odd) .timeline-step-num {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-step-num {
    left: 20px;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.timeline-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* CTA at the end */
.timeline-cta {
    text-align: center;
    margin-top: 100px;
    padding: 40px 20px;
}

.timeline-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}


/* Media Queries for Mobile */
@media screen and (max-width: 900px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 6px;
        right: auto;
    }
    
    .timeline-item:nth-child(odd) .timeline-step-num,
    .timeline-item:nth-child(even) .timeline-step-num {
        right: 20px;
        left: auto;
    }

    .how-title {
        font-size: 2.5rem;
    }
}
