.subpage-shell {
    width: min(calc(100% - 32px), 1080px);
    margin: 0 auto;
    padding: 28px 0 96px;
}

body.design-body {
    background:
        radial-gradient(circle at 50% 0%, rgba(65, 105, 225, 0.42), transparent 34rem),
        radial-gradient(circle at 82% 22%, rgba(142, 173, 255, 0.18), transparent 28rem),
        linear-gradient(180deg, #050914 0%, #030712 46%, #050914 100%);
    background-attachment: scroll, scroll, scroll;
}

.design-page {
    width: min(calc(100% - 32px), 1180px);
}

.design-hero,
.design-catalog,
.design-process {
    position: relative;
    isolation: isolate;
}

.design-hero {
    min-height: min(600px, calc(100svh - 112px));
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: center;
    padding: clamp(26px, 4.2vw, 58px);
    border: 1px solid rgba(132, 164, 248, 0.28);
    border-radius: 34px;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 36%, rgba(65, 105, 225, 0.08)),
        rgba(7, 12, 27, 0.82);
    box-shadow: 0 34px 88px rgba(0, 0, 0, 0.44);
    overflow: hidden;
}

.design-hero::before,
.design-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    z-index: -1;
}

.design-hero::before {
    inset: -28% auto auto -12%;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.42), transparent 64%);
    filter: blur(26px);
    animation: atmosphericShift 16s ease-in-out infinite alternate;
}

.design-hero::after {
    right: -12%;
    bottom: -30%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(142, 173, 255, 0.28), transparent 66%);
    filter: blur(34px);
    animation: atmosphericShift 19s ease-in-out infinite alternate-reverse;
}

.design-hero-copy {
    display: grid;
    gap: 14px;
    align-content: center;
    animation: designRiseIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.design-hero-title {
    max-width: 11ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-hero-accent);
    font-size: clamp(2.55rem, 5.9vw, 5.15rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
    overflow-wrap: break-word;
}

.design-hero-lead {
    max-width: 520px;
    margin: 0;
    color: rgba(224, 232, 255, 0.82);
    font-family: var(--font-copy);
    font-size: clamp(0.96rem, 1.15vw, 1.06rem);
    line-height: 1.58;
    letter-spacing: -0.01em;
}

.design-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.design-hero-art {
    position: relative;
    min-height: clamp(300px, 36vw, 430px);
    animation: designFloatIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.design-hero-art::before {
    content: '';
    position: absolute;
    inset: 12% 8% 8% 2%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.38), rgba(65, 105, 225, 0.08) 44%, transparent 68%);
    filter: blur(12px);
}

.design-hero-image {
    position: absolute;
    width: min(62%, 300px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.44);
}

.design-hero-image--main {
    inset: 6% auto auto 16%;
    z-index: 2;
    transform: rotate(-4deg);
}

.design-hero-image--side {
    right: 4%;
    top: 15%;
    width: min(40%, 190px);
    z-index: 3;
    object-fit: contain;
    padding: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        rgba(5, 9, 22, 0.92);
    transform: rotate(7deg);
}

.design-hero-image--bottom {
    left: 3%;
    bottom: 4%;
    width: min(42%, 210px);
    z-index: 1;
    transform: rotate(8deg);
    opacity: 0.92;
}

.design-hero-orbit {
    position: absolute;
    right: 11%;
    bottom: 10%;
    z-index: 4;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(196, 213, 255, 0.34);
    border-radius: 50%;
    background: rgba(5, 9, 22, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
}

.design-hero-orbit span {
    color: rgba(224, 232, 255, 0.72);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.design-hero-orbit strong {
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.design-catalog,
.design-process {
    display: grid;
    gap: 24px;
    margin-top: clamp(54px, 8vw, 86px);
}

.design-process {
    margin-top: clamp(40px, 6vw, 66px);
}

.design-section-heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

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

.design-category-card {
    min-height: 356px;
    animation: designRiseIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--design-card-index, 0) * 0.05s);
}

.design-category-card:nth-child(1) {
    --design-card-index: 1;
}

.design-category-card:nth-child(2) {
    --design-card-index: 2;
}

.design-category-card:nth-child(3) {
    --design-card-index: 3;
}

.design-category-card:nth-child(4) {
    --design-card-index: 4;
}

.design-category-card:nth-child(5) {
    --design-card-index: 5;
}

.design-category-card:nth-child(6) {
    --design-card-index: 6;
}

.design-category-card:nth-child(7) {
    --design-card-index: 7;
}

.design-category-card:nth-child(8) {
    --design-card-index: 8;
}

.design-category-card:nth-child(9) {
    --design-card-index: 9;
}

.design-category-card:nth-child(10) {
    --design-card-index: 10;
}

.design-category-card--wide {
    grid-column: span 2;
}

.design-card-link {
    position: relative;
    isolation: isolate;
    min-height: inherit;
    height: 100%;
    display: grid;
    align-content: end;
    overflow: hidden;
    border: 1px solid rgba(132, 164, 248, 0.22);
    border-radius: 28px;
    background: rgba(11, 18, 38, 0.88);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    outline: none;
    transform: translateZ(0);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.design-card-link::before,
.design-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.design-card-link::before {
    background:
        linear-gradient(180deg, rgba(3, 6, 15, 0.04) 0%, rgba(3, 6, 15, 0.36) 42%, rgba(3, 6, 15, 0.9) 100%),
        radial-gradient(circle at 18% 12%, rgba(142, 173, 255, 0.18), transparent 42%);
}

.design-card-link::after {
    opacity: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(255, 255, 255, 0.03));
    transition: opacity 0.32s ease;
}

.design-card-link:hover,
.design-card-link:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(170, 194, 255, 0.55);
    box-shadow: 0 34px 78px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(142, 173, 255, 0.08);
}

.design-card-link--archived {
    cursor: default;
}

.design-card-link--archived:hover {
    transform: translateZ(0);
    border-color: rgba(132, 164, 248, 0.22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.design-card-link:focus-visible {
    outline: 2px solid rgba(178, 201, 255, 0.78);
    outline-offset: 4px;
}

.design-card-link:hover::after,
.design-card-link:focus-visible::after {
    opacity: 1;
}

.design-card-link--archived:hover::after {
    opacity: 0;
}

.design-card-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(142, 173, 255, 0.22), transparent 42%),
        linear-gradient(145deg, rgba(18, 29, 62, 0.96), rgba(4, 9, 21, 0.98));
}

.design-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.52s ease, opacity 0.32s ease, filter 0.32s ease;
}

.design-card-link:hover .design-card-media img,
.design-card-link:focus-visible .design-card-media img {
    transform: scale(1.06);
    opacity: 0.98;
    filter: saturate(1.06);
}

.design-card-link--archived:hover .design-card-media img {
    transform: none;
    opacity: 0.88;
    filter: none;
}

.design-card-media--placeholder {
    display: grid;
    place-items: center;
}

.design-card-media--placeholder span {
    color: rgba(238, 244, 255, 0.16);
    font-family: var(--font-hero-accent);
    font-size: clamp(3.2rem, 7vw, 5.4rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    transform: rotate(-8deg);
}

.design-card-count {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(4, 9, 21, 0.54);
    color: rgba(238, 244, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.design-card-copy {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.design-card-title {
    color: #ffffff;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
}

.design-card-text {
    max-width: 32ch;
    color: rgba(224, 232, 255, 0.78);
    font-family: var(--font-copy);
    font-size: 0.92rem;
    line-height: 1.48;
}

.design-card-status {
    position: relative;
    width: fit-content;
    color: rgba(188, 205, 255, 0.74);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.design-card-status::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background: linear-gradient(90deg, rgba(142, 173, 255, 0.62), transparent);
    opacity: 0.58;
}

.design-process {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(132, 164, 248, 0.2);
    border-radius: 34px;
    background:
        linear-gradient(120deg, rgba(65, 105, 225, 0.14), rgba(255, 255, 255, 0.028) 42%, rgba(7, 12, 27, 0.84)),
        rgba(8, 14, 31, 0.72);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.design-process-copy {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.design-process-list {
    counter-reset: design-process;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(132, 164, 248, 0.2);
    border-bottom: 1px solid rgba(132, 164, 248, 0.2);
}

.design-process-list li {
    position: relative;
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 22px 18px;
}

.design-process-list li + li {
    border-left: 1px solid rgba(132, 164, 248, 0.2);
}

.design-process-list span {
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.design-process-list strong {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.design-process-list p,
.design-final-cta p {
    margin: 0;
    color: rgba(224, 232, 255, 0.72);
    font-family: var(--font-copy);
    line-height: 1.55;
}

.design-final-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.design-final-cta p {
    max-width: 620px;
}

@keyframes designRiseIn {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes designFloatIn {
    from {
        opacity: 0;
        transform: translate3d(18px, 20px, 0) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 1080px) {
    .design-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: clamp(26px, 5vw, 48px);
    }

    .design-hero-title {
        max-width: 11ch;
    }

    .design-hero-art {
        width: min(100%, 560px);
        min-height: clamp(280px, 52vw, 420px);
        justify-self: center;
    }

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

    .design-category-card--wide {
        grid-column: span 1;
    }

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

    .design-process-list li:nth-child(3) {
        border-left: 0;
    }

    .design-process-list li:nth-child(n + 3) {
        border-top: 1px solid rgba(132, 164, 248, 0.2);
    }
}

@media (max-width: 720px) {
    .design-page {
        width: min(calc(100% - 20px), 1180px);
    }

    .design-hero {
        padding: 20px;
        border-radius: 26px;
    }

    .design-hero-title {
        font-size: clamp(2rem, 9.6vw, 2.65rem);
        max-width: 11ch;
    }

    .design-hero-lead {
        font-size: 0.94rem;
        line-height: 1.54;
    }

    .design-hero-actions,
    .design-final-cta {
        display: grid;
    }

    .design-hero-actions .primary-action,
    .design-hero-actions .secondary-action,
    .design-final-cta .primary-action {
        width: 100%;
    }

    .design-hero-art {
        min-height: 200px;
    }

    .design-hero-image--main {
        left: 9%;
        width: 54%;
    }

    .design-hero-image--side {
        right: 0;
        width: 32%;
        padding: 10px;
    }

    .design-hero-image--bottom {
        width: 34%;
    }

    .design-hero-orbit {
        right: 4%;
        bottom: 6%;
        width: 70px;
        height: 70px;
    }

    .design-hero-orbit span {
        font-size: 0.44rem;
    }

    .design-hero-orbit strong {
        font-size: 0.68rem;
    }

    .design-category-grid,
    .design-process-list {
        grid-template-columns: 1fr;
    }

    .design-category-card {
        min-height: 328px;
    }

    .design-card-copy {
        padding: 20px;
    }

    .design-process {
        padding: 18px;
        border-radius: 24px;
    }

    .design-process-list li,
    .design-process-list li + li,
    .design-process-list li:nth-child(3),
    .design-process-list li:nth-child(n + 3) {
        border-left: 0;
        border-top: 1px solid rgba(132, 164, 248, 0.2);
    }

    .design-process-list li:first-child {
        border-top: 0;
    }
}

body.player-dock-visible .subpage-shell {
    padding-bottom: calc(var(--player-dock-safe-space, 72px) + 30px);
}

body.player-dock-visible.player-dock-collapsed .subpage-shell {
    padding-bottom: calc(var(--player-dock-safe-space, 72px) + 18px);
}

.subpage-topbar {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 28px;
    text-align: center;
}

.subpage-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subpage-home {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 2px 0 0;
    border-radius: 0;
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: clamp(0.72rem, 0.9vw, 0.88rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.22s ease, transform 0.24s ease;
}

.subpage-home::before,
.subpage-home::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 1px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.subpage-home::after {
    background: linear-gradient(90deg, rgba(142, 173, 255, 0), rgba(142, 173, 255, 0.96), rgba(255, 255, 255, 0.88));
    transform: translateX(-105%);
    transition: transform 0.28s ease;
}

.subpage-home:hover,
.subpage-home:focus-visible {
    color: #f8fbff;
    transform: translateY(-1px);
    outline: none;
}

.subpage-home:hover::after,
.subpage-home:focus-visible::after,
.subpage-logo-link:hover + .subpage-home::after,
.subpage-logo-link:focus-visible + .subpage-home::after {
    transform: translateX(0);
}

.subpage-logo-link:focus-visible {
    outline: none;
}

.subpage-hero,
.subpage-card,
.detail-hero {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.subpage-hero {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
}

.subpage-hero p,
.subpage-card-text,
.detail-lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.subpage-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.subpage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.subpage-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: var(--radius-lg);
}

.subpage-card-title {
    margin: 0;
    font-size: 1.12rem;
}

.bundle-hero,
.bundle-final {
    position: relative;
    overflow: hidden;
}

.bundle-hero::before,
.bundle-final::before {
    content: '';
    position: absolute;
    pointer-events: none;
    inset: auto -44px -120px auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(142, 173, 255, 0.2), transparent 68%);
    filter: blur(32px);
}

.bundle-hero::after {
    content: none;
}

.bundle-lead {
    max-width: 720px;
    font-size: 1rem;
}

.bundle-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bundle-badges .meta-chip {
    background: rgba(255, 255, 255, 0.05);
}

.bundle-final {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 24px;
}

.bundle-final-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.08;
}

.subpage-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.detail-hero {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.detail-artwork-wrap {
    overflow: hidden;
    border-radius: calc(var(--radius-xl) - 8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-artwork-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.detail-copy {
    display: grid;
    gap: 16px;
}

.detail-title {
    margin: 0;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.detail-artist {
    margin: 0;
    color: var(--accent-strong);
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-play-button,
.detail-download-button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.detail-play-button {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line);
    color: var(--text);
    font-weight: 600;
}

.detail-download-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #f8fbff;
    font-weight: 700;
}

.detail-empty {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.drumkit-shell {
    width: min(calc(100% - 32px), 1180px);
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
}

.drumkit-stage {
    position: relative;
    min-height: calc(100vh - 112px);
    display: grid;
    align-items: center;
    padding: clamp(12px, 3vw, 28px) 0;
    isolation: isolate;
}

.drumkit-stage::before {
    content: '';
    position: absolute;
    inset: 8% 10% auto;
    height: 58%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.28), transparent 70%);
    filter: blur(44px);
    z-index: 0;
    pointer-events: none;
}

.drumkit-stage::after {
    content: '';
    position: absolute;
    inset: 24px 8px 0;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    z-index: 0;
    pointer-events: none;
}

.product-box {
    position: relative;
    z-index: 1;
    width: min(100%, 1060px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 52px);
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    text-align: left;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(19, 27, 52, 0.96), rgba(20, 31, 59, 0.88) 54%, rgba(10, 17, 35, 0.96));
    border: 1px solid rgba(138, 166, 244, 0.24);
    border-radius: 34px;
    transform: translateY(18px) scale(0.985);
    opacity: 0;
    box-sizing: border-box;
    box-shadow: 0 36px 88px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(20px);
    overflow: hidden;
    animation: productBoxZoomIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
    transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease, background 0.38s ease;
    cursor: default;
}

.product-box::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(142, 173, 255, 0.28), transparent 68%);
    filter: blur(6px);
    opacity: 0.95;
    pointer-events: none;
}

.product-box::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.06), transparent 40%);
    pointer-events: none;
}

.product-box:hover,
.product-box:focus-within {
    transform: translateY(0) scale(1);
    border-color: rgba(179, 198, 255, 0.46);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(171, 190, 255, 0.08);
}

.product-box:focus-within {
    outline: none;
}

.product-box-visual {
    position: relative;
    min-height: 100%;
    padding: clamp(24px, 3vw, 32px);
    display: grid;
    align-content: space-between;
    gap: 24px;
    border-radius: 28px;
    background: linear-gradient(165deg, rgba(8, 14, 30, 0.82), rgba(29, 43, 82, 0.72));
    border: 1px solid rgba(134, 162, 243, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
}

.product-box-visual::before {
    content: '';
    position: absolute;
    inset: auto -12% -26% -12%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.26), transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

.product-box-visual::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.product-box-visual-badge {
    display: inline-flex;
    align-self: start;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(228, 202, 124, 0.34);
    background: linear-gradient(135deg, rgba(226, 190, 86, 0.18), rgba(255, 255, 255, 0.04));
    color: #f5ddb0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-box-image-wrap {
    position: relative;
    display: grid;
    width: fit-content;
    max-width: 100%;
    justify-self: center;
    place-items: center;
    padding: 12px 0 6px;
}

.product-box-image-wrap::before {
    content: '';
    position: absolute;
    width: min(100%, 300px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.48) 0%, rgba(65, 105, 225, 0.16) 42%, transparent 72%);
    filter: blur(10px);
    transform: translateY(22px);
    opacity: 0.88;
    transition: transform 0.38s ease, opacity 0.38s ease, filter 0.38s ease;
}

.product-box-image {
    position: relative;
    z-index: 1;
    width: min(100%, 300px);
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.38));
    transform: translate3d(0, -4px, 0) rotate(-7deg);
    transition: transform 0.38s ease, filter 0.38s ease;
}

.product-box-image-wrap:hover::before,
.product-box:focus-within .product-box-image-wrap::before {
    transform: translateY(12px) scale(1.08);
    opacity: 1;
    filter: blur(14px);
}

.product-box-image-wrap:hover .product-box-image,
.product-box:focus-within .product-box-image {
    transform: translate3d(0, -14px, 0) rotate(-9deg) scale(1.02);
    filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.44));
}

.product-box-visual-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.product-box-visual-copy span {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(199, 212, 238, 0.72);
}

.product-box-visual-copy strong {
    max-width: 240px;
    font-family: var(--font-hero-accent);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.05;
    color: #f8fbff;
}

.product-box-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 20px;
    transition: transform 0.38s ease;
}

.product-box:hover .product-box-visual,
.product-box:hover .product-box-content,
.product-box:focus-within .product-box-visual,
.product-box:focus-within .product-box-content {
    transform: none;
}

.product-box-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(199, 212, 238, 0.78);
}

.product-box-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.product-box-brand {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(188, 205, 241, 0.78);
}

.product-box-name {
    max-width: 10ch;
    font-family: var(--font-hero-accent);
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    line-height: 0.96;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.product-box-lead {
    max-width: 560px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(224, 232, 255, 0.8);
}

.product-box-subtitle {
    margin: 0;
    padding: 24px 0 0;
    display: grid;
    gap: 12px;
    background: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-box-subtitle-label {
    margin-bottom: 2px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(188, 205, 241, 0.72);
}

.product-box-subtitle > div {
    position: relative;
    margin: 0;
    padding-left: 20px;
    font-size: 0.98rem;
    line-height: 1.45;
    white-space: normal;
    color: rgba(236, 243, 255, 0.88);
}

.product-box-subtitle > div:not(.product-box-subtitle-label)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 224, 149, 0.96), rgba(120, 156, 255, 0.9));
    box-shadow: 0 0 18px rgba(120, 156, 255, 0.32);
}

.product-box-free {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    padding: 16px 18px 16px 16px;
    border-radius: 24px;
    border: 1px solid rgba(231, 203, 122, 0.34);
    background: linear-gradient(135deg, rgba(229, 194, 88, 0.16), rgba(255, 255, 255, 0.03) 36%, rgba(10, 16, 32, 0.9) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.product-box-free:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 218, 137, 0.5);
    background: linear-gradient(135deg, rgba(229, 194, 88, 0.2), rgba(255, 255, 255, 0.04) 36%, rgba(10, 16, 32, 0.92) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 22px 46px rgba(0, 0, 0, 0.24);
}

.product-box-free::before {
    content: '';
    position: absolute;
    inset: -35% 54% -35% -10%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(12deg);
    opacity: 0.55;
    pointer-events: none;
}

.product-box-free-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8ebb4, #d8b65b);
    color: #091021;
    font-size: 1.1rem;
    box-shadow: 0 10px 22px rgba(216, 182, 91, 0.24);
}

.product-box-free-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
}

.product-box-free-copy strong {
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff4c8;
}

.product-box-free-copy span {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 236, 185, 0.78);
}

.product-box-free-price {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    color: #ffe59e;
}

.product-box-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.product-box-meta .meta-chip {
    border-color: rgba(138, 166, 244, 0.24);
    background: rgba(255, 255, 255, 0.04);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.product-box-meta .meta-chip-label {
    font-size: 0.68rem;
}

.product-box-meta .meta-chip-value {
    font-size: 0.82rem;
}

.product-box-meta .meta-chip-tilde {
    display: inline-block;
    margin-right: 0.08em;
    font-family: Arial, sans-serif;
    line-height: 1;
    transform: translateY(0.03em);
}

.product-box-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10px;
    margin-top: 4px;
    padding: 15px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #f8fbff;
    background: linear-gradient(135deg, #92afff, #4169e1 58%, #2742a2);
    border-radius: 999px;
    box-shadow: 0 20px 38px rgba(50, 83, 192, 0.34);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.product-box-cta:hover,
.product-box-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(50, 83, 192, 0.42);
    filter: saturate(1.08);
}

.product-box-cta:focus-visible {
    outline: 2px solid rgba(178, 201, 255, 0.75);
    outline-offset: 3px;
}

.product-box-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@keyframes productBoxZoomIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pult-shell {
    width: min(calc(100% - 32px), 1180px);
    display: grid;
    gap: 26px;
}

.pult-hero,
.pult-workflow,
.pult-modules,
.pult-chain,
.pult-audience,
.pult-final {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 22px;
}

.pult-hero {
    min-height: min(680px, calc(100svh - 126px));
    align-content: center;
    padding: clamp(34px, 7vw, 88px) 0 clamp(26px, 5vw, 54px);
    overflow: hidden;
}

.pult-hero::before {
    content: '';
    position: absolute;
    inset: 6% calc(50% - 50vw) auto;
    height: 62%;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(65, 105, 225, 0.2), rgba(255, 255, 255, 0.03) 42%, rgba(4, 9, 21, 0));
    border-top: 1px solid rgba(132, 164, 248, 0.22);
    border-bottom: 1px solid rgba(132, 164, 248, 0.12);
    transform: skewY(-2deg);
}

.pult-hero-title {
    max-width: 920px;
    margin: 0;
    font-size: clamp(2.45rem, 7vw, 5.7rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.pult-hero-lead {
    max-width: 680px;
    margin: 0;
    color: rgba(224, 232, 255, 0.82);
    font-family: var(--font-copy);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.pult-workflow,
.pult-modules,
.pult-chain,
.pult-audience,
.pult-final {
    padding: clamp(28px, 4vw, 46px) 0;
    border-top: 1px solid rgba(132, 164, 248, 0.2);
}

.pult-section-copy {
    display: grid;
    gap: 12px;
    max-width: 740px;
}

.pult-proof-list,
.pult-audience-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.pult-proof-list span,
.pult-audience-list span,
.pult-chain-list li {
    min-width: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(132, 164, 248, 0.18);
    color: rgba(236, 243, 255, 0.9);
    font-family: var(--font-copy);
    line-height: 1.5;
}

.pult-module-list {
    display: grid;
    border-top: 1px solid rgba(132, 164, 248, 0.3);
    border-bottom: 1px solid rgba(132, 164, 248, 0.22);
}

.pult-chain-list {
    margin: 0;
    padding: 0;
    display: grid;
    counter-reset: pult-step;
    list-style: none;
}

.pult-chain-list li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    counter-increment: pult-step;
}

.pult-chain-list li::before {
    content: counter(pult-step, decimal-leading-zero);
    color: rgba(142, 173, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pult-final {
    padding-bottom: clamp(48px, 8vw, 96px);
}

.pult-video-page {
    width: min(calc(100% - 32px), 1040px);
    display: grid;
    gap: 24px;
}

.pult-video-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pult-video-back {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: rgba(226, 234, 252, 0.82);
    font-size: 0.94rem;
    letter-spacing: -0.01em;
    transition: color 0.24s ease, transform 0.24s ease;
}

.pult-video-back:hover,
.pult-video-back:focus-visible {
    color: #ffffff;
    transform: translateX(-2px);
    outline: none;
}

.pult-video-stage {
    position: relative;
    display: grid;
    gap: clamp(18px, 3vw, 28px);
}

.pult-video-title {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(2.55rem, 6.6vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.pult-video-embed {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: end;
    justify-items: center;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: clamp(24px, 4vw, 42px);
    border-radius: clamp(20px, 2.6vw, 30px);
    border: 1px solid rgba(255, 170, 92, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
        rgba(8, 11, 19, 0.92);
    box-shadow:
        0 28px 74px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pult-video-embed::before {
    content: '';
    position: absolute;
    inset: -20% auto auto 10%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 141, 51, 0.24), transparent 72%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}

.pult-video-embed iframe {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.pult-video-coming-soon {
    width: min(100%, 272px);
    min-height: clamp(92px, 12vw, 118px);
}

.pult-video-placeholder-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    width: min(100%, 560px);
    margin: 0;
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(11, 15, 28, 0.62);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    text-align: center;
}

.pult-video-placeholder-kicker,
.pult-video-placeholder-lead {
    margin: 0;
}

.pult-video-placeholder-kicker {
    color: rgba(255, 196, 140, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pult-video-placeholder-lead {
    color: rgba(232, 239, 255, 0.82);
    font-size: clamp(0.96rem, 1.45vw, 1.06rem);
    line-height: 1.55;
}

.beats-shell {
    width: min(calc(100% - 40px), 1300px);
    display: grid;
    align-content: start;
    gap: 22px;
}

.beats-shell .subpage-topbar {
    margin-bottom: 0;
}

.beats-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.beats-stage {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 22px 0 10px;
    text-align: center;
    overflow: hidden;
    animation: beatsSectionLift 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.beats-stage::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 50%;
    width: 420px;
    height: 220px;
    background: radial-gradient(circle, rgba(76, 118, 255, 0.18), transparent 72%);
    transform: translateX(-50%);
    filter: blur(20px);
    pointer-events: none;
}

.beats-stage > * {
    position: relative;
    z-index: 1;
}

.beats-stage .section-kicker {
    color: rgba(248, 251, 255, 0.94);
    font-family: var(--font-copy);
    font-size: clamp(0.98rem, 1.4vw, 1.16rem);
    font-weight: 800;
    letter-spacing: 0.07em;
    text-shadow: 0 10px 26px rgba(65, 105, 225, 0.28);
}

.beats-stage-title {
    margin: 0;
    max-width: 12ch;
    font-family: var(--font-ui);
    font-size: clamp(2.4rem, 6vw, 4.75rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.beats-stage-lead {
    margin: 0;
    max-width: 54ch;
    color: rgba(225, 231, 241, 0.72);
    font-size: 0.98rem;
    line-height: 1.65;
}

.beats-search-shell {
    position: relative;
    width: min(100%, 860px);
}

.beats-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid rgba(120, 146, 206, 0.18);
    background:
        linear-gradient(180deg, rgba(15, 18, 24, 0.96), rgba(9, 10, 14, 0.98));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.beats-search-input,
.beats-filter-select {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    color: #f7f9ff;
    outline: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.beats-search-input::placeholder {
    color: rgba(207, 214, 228, 0.34);
}

.beats-search-input:focus,
.beats-filter-select:focus {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(108, 143, 236, 0.38);
}

.beats-search-button {
    min-width: 124px;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f3f5fa, #dfe5ef);
    color: #090b0f;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.beats-search-button:hover,
.beats-search-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    outline: none;
}

.beats-search-suggestions {
    position: absolute;
    inset: calc(100% + 10px) 0 auto;
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(120, 146, 206, 0.16);
    background: rgba(11, 13, 19, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    z-index: 6;
}

.beats-search-suggestions[hidden] {
    display: none;
}

.beats-search-suggestion {
    width: 100%;
    padding: 12px 14px;
    display: grid;
    gap: 6px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease;
}

.beats-search-suggestion:hover,
.beats-search-suggestion:focus-visible {
    background: rgba(255, 255, 255, 0.04);
    outline: none;
}

.beats-search-suggestion-title {
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.beats-search-suggestion-meta {
    color: rgba(203, 210, 226, 0.62);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.beats-visualizer {
    width: min(100%, 1180px);
    height: 76px;
    padding: 8px 6px 0;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    overflow: hidden;
}

.beats-visualizer-bar {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    border-radius: 999px;
    transform-origin: center bottom;
    transform: scaleY(var(--bar-scale, 0.18));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.32));
    opacity: 0.92;
    animation: beatsVisualizerIdle 1.95s ease-in-out infinite;
    animation-delay: calc(var(--index) * 0.03s);
}

.beats-visualizer.is-live .beats-visualizer-bar {
    animation: none;
}

.beats-workspace {
    position: relative;
    overflow: visible;
    display: grid;
    gap: 22px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 26px;
    border: 1px solid rgba(112, 140, 210, 0.16);
    background:
        linear-gradient(180deg, rgba(14, 16, 21, 0.97), rgba(8, 10, 14, 0.985));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
    isolation: isolate;
    animation: beatsSectionLift 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.08s;
}

.beats-workspace::before {
    content: '';
    position: absolute;
    inset: auto clamp(18px, 4vw, 42px) 0 auto;
    width: min(300px, 64%);
    height: 320px;
    background: radial-gradient(circle, rgba(68, 112, 238, 0.12), transparent 70%);
    filter: blur(22px);
    pointer-events: none;
    z-index: 0;
}

.beats-workspace > * {
    position: relative;
    z-index: 2;
}

.beats-workspace-top,
.beats-workspace-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.beats-workspace-copy {
    display: grid;
    gap: 8px;
}

.beats-workspace-title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.beats-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.beats-toolbar-button,
.beats-apply-button,
.beats-clear-button {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(238, 242, 252, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.beats-toolbar-button:hover,
.beats-toolbar-button:focus-visible,
.beats-apply-button:hover,
.beats-apply-button:focus-visible,
.beats-clear-button:hover,
.beats-clear-button:focus-visible {
    border-color: rgba(117, 150, 234, 0.28);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    outline: none;
}

.beats-toolbar-button.is-active {
    border-color: rgba(112, 149, 248, 0.34);
    background: rgba(65, 105, 225, 0.12);
    color: #dce7ff;
}

.beats-apply-button {
    border-color: rgba(132, 164, 248, 0.34);
    background: linear-gradient(135deg, rgba(237, 242, 255, 0.96), rgba(196, 213, 255, 0.92));
    color: #070b16;
    box-shadow: 0 12px 28px rgba(13, 40, 118, 0.18);
}

.beats-apply-button.has-pending {
    border-color: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 30px rgba(29, 68, 160, 0.28), 0 0 0 1px rgba(142, 173, 255, 0.18);
}

.beats-clear-button:disabled {
    opacity: 0.42;
    cursor: default;
    transform: none;
}

.beats-filters-panel {
    position: relative;
    z-index: 44;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible;
}

.beats-filters-panel[hidden] {
    display: none;
}

.beats-filter-menu {
    position: relative;
    flex: 1 1 230px;
    min-width: 0;
}

.beats-filter-menu.is-open {
    z-index: 60;
}

.beats-filter-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.beats-filter-trigger:hover,
.beats-filter-trigger:focus-visible {
    border-color: rgba(122, 154, 235, 0.28);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    outline: none;
}

.beats-filter-trigger.is-active {
    border-color: rgba(112, 149, 248, 0.34);
    background: rgba(65, 105, 225, 0.11);
}

.beats-filter-trigger-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.beats-filter-trigger-label {
    color: rgba(188, 199, 223, 0.64);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.beats-filter-trigger-value {
    min-width: 0;
    color: rgba(244, 247, 255, 0.96);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beats-filter-trigger-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(231, 236, 249, 0.72);
}

.beats-filter-trigger-icon::before {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.18s ease;
}

.beats-filter-trigger.is-active .beats-filter-trigger-icon::before {
    transform: rotate(-135deg) translate(-1px, 1px);
}

.beats-filter-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    transform: translateY(var(--beats-filter-popover-shift-y, 0));
    width: min(276px, calc(100vw - 72px));
    padding: 12px;
    display: grid;
    gap: 12px;
    border: 1px solid rgba(115, 146, 224, 0.16);
    border-radius: 16px;
    background: linear-gradient(180deg, rgb(26, 30, 42), rgb(16, 19, 27));
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.44);
    z-index: 70;
    pointer-events: auto;
}

.beats-filter-popover.is-flipped {
    top: auto;
    bottom: calc(100% + 10px);
}

.beats-filter-popover[hidden] {
    display: none;
}

.beats-filter-popover--options {
    width: min(248px, calc(100vw - 72px));
}

.beats-filter-popover-title {
    margin: 0;
    color: rgba(189, 200, 223, 0.68);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.beats-filter-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.beats-filter-field {
    display: grid;
    gap: 8px;
    color: rgba(225, 232, 247, 0.88);
    font-size: 0.8rem;
    font-weight: 600;
}

.beats-filter-field span {
    color: rgba(189, 200, 223, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.beats-filter-input {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(10, 13, 20, 0.96);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.beats-filter-input:focus {
    border-color: rgba(117, 150, 234, 0.34);
    outline: none;
}

.beats-filter-option-list {
    max-height: var(--beats-filter-option-list-max-height, 220px);
    display: grid;
    gap: 8px;
    overflow-y: auto;
    padding-right: 4px;
}

.beats-filter-option {
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(12, 15, 23, 0.96);
    color: rgba(234, 239, 251, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.beats-filter-option:hover,
.beats-filter-option:focus-visible {
    border-color: rgba(118, 150, 229, 0.24);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    outline: none;
}

.beats-filter-option.is-active {
    border-color: rgba(112, 149, 248, 0.3);
    background: rgba(65, 105, 225, 0.14);
    color: #dce7ff;
}

.beats-filter-option-label {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beats-filter-option-mark {
    color: rgba(164, 189, 255, 0.84);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.beats-table {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.beats-results-list {
    display: grid;
    gap: 8px;
}

.beats-track-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1.18fr) minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 54px;
    padding: 0 14px 0 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: linear-gradient(180deg, rgba(20, 24, 35, 0.96), rgba(16, 19, 28, 0.98));
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.beats-track-row:hover,
.beats-track-row:focus-visible,
.beats-track-row.is-active {
    border-color: rgba(112, 149, 248, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.beats-track-row.is-active {
    box-shadow: inset 3px 0 0 rgba(123, 160, 255, 0.86), 0 20px 34px rgba(0, 0, 0, 0.18);
}

.beats-track-main {
    min-width: 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.beats-track-preview {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.beats-track-preview:hover,
.beats-track-preview:focus-visible {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.beats-track-preview[data-state="pause"] {
    border-color: rgba(112, 149, 248, 0.28);
    background: rgba(65, 105, 225, 0.18);
}

.beats-track-preview-icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.beats-track-preview-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.beats-track-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.beats-track-title-row {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.beats-track-title {
    min-width: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beats-track-artist {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.beats-track-details {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.beats-track-meta-badge {
    min-width: 56px;
    min-height: 34px;
    padding: 5px 9px;
    display: grid;
    gap: 2px;
    align-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.024);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.beats-track-meta-badge-label {
    color: rgba(188, 199, 223, 0.56);
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.beats-track-meta-badge-value {
    color: rgba(244, 248, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.beats-track-tags {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.beats-tag-chip {
    min-height: 20px;
    max-width: 100%;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(229, 235, 247, 0.82);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    white-space: nowrap;
}

.beats-track-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.beats-track-order {
    min-width: 96px;
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(92, 136, 252, 0.54);
    background: linear-gradient(180deg, rgba(73, 113, 233, 0.96), rgba(48, 82, 193, 0.96));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.beats-track-order:hover,
.beats-track-order:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(29, 52, 126, 0.26);
    outline: none;
}

.beats-track-artwork {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 54px;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    cursor: inherit;
}

.beats-track-artwork:hover,
.beats-track-artwork:focus-visible {
    border-color: transparent;
    transform: none;
    outline: none;
}

.beats-track-artwork-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    display: block;
}

.beats-empty-state {
    margin: 0;
    padding: 18px 4px 0;
    color: rgba(192, 201, 221, 0.64);
    line-height: 1.6;
}

@keyframes beatsVisualizerIdle {
    0%,
    100% {
        transform: scaleY(0.12);
        opacity: 0.42;
    }
    50% {
        transform: scaleY(0.92);
        opacity: 0.98;
    }
}

@keyframes beatsSectionLift {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 901px) {
    .drumkit-shell {
        width: min(calc(100% - 48px), 980px);
        padding-top: 18px;
        padding-bottom: 24px;
    }

    .drumkit-shell .subpage-topbar {
        margin-bottom: 16px;
    }

    .drumkit-stage {
        min-height: calc(100vh - 96px);
        padding: 4px 0 0;
    }

    .drumkit-stage::after {
        inset: 18px 6px 0;
        border-radius: 32px;
    }

    .product-box {
        width: min(100%, 860px);
        padding: clamp(22px, 2.8vw, 38px);
        grid-template-columns: minmax(240px, 0.84fr) minmax(0, 1.16fr);
        gap: clamp(22px, 2.8vw, 46px);
        border-radius: 28px;
    }

    .product-box::after {
        inset: 12px;
        border-radius: 22px;
    }

    .product-box-visual {
        padding: clamp(18px, 2.3vw, 26px);
        gap: 20px;
        border-radius: 24px;
    }

    .product-box-visual::after {
        inset: 14px;
        border-radius: 18px;
    }

    .product-box-visual-copy strong {
        max-width: 200px;
        font-size: clamp(1rem, 1.45vw, 1.32rem);
    }

    .product-box-image-wrap {
        padding: 8px 10px 2px;
    }

    .product-box-image-wrap::before,
    .product-box-image {
        width: min(100%, 248px);
    }

    .product-box-content {
        gap: 16px;
    }

    .product-box-kicker {
        padding: 7px 11px;
        font-size: 0.66rem;
    }

    .product-box-brand {
        font-size: 0.84rem;
    }

    .product-box-name {
        font-size: clamp(1.96rem, 3.3vw, 3.15rem);
    }

    .product-box-lead {
        max-width: 480px;
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .product-box-subtitle {
        padding-top: 18px;
        gap: 10px;
    }

    .product-box-subtitle > div {
        padding-left: 18px;
        font-size: 0.9rem;
    }

    .product-box-free {
        gap: 14px;
        padding: 14px 16px 14px 14px;
        border-radius: 20px;
    }

    .product-box-free-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .product-box-free-copy strong {
        font-size: 0.96rem;
    }

    .product-box-free-copy span {
        font-size: 0.76rem;
    }

    .product-box-free-price {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .product-box-meta {
        gap: 8px;
    }

    .product-box-cta {
        margin-top: 0;
        padding: 13px 22px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .subpage-grid,
    .detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .product-box {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-box-name,
    .product-box-visual-copy strong {
        max-width: none;
    }

    .beats-workspace-controls {
        align-items: start;
    }

    .pult-proof-list,
    .pult-audience-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .beats-track-row {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        gap: 8px 10px;
        min-height: 52px;
        padding: 0 10px 0 0;
    }

    .beats-track-main {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        gap: 12px;
    }

    .beats-track-details {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        gap: 7px;
    }

    .beats-track-side {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        align-items: center;
        gap: 10px;
    }

    .beats-track-order {
        min-width: 96px;
        min-height: 38px;
        padding: 0 12px;
    }

    .beats-track-artwork {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        min-height: 52px;
    }
}

@media (max-width: 720px) {
    .subpage-shell {
        width: min(calc(100% - 20px), 1080px);
        padding-top: 18px;
        padding-bottom: 64px;
    }

    .pult-video-page {
        width: min(calc(100% - 20px), 1040px);
        gap: 18px;
    }

    .pult-video-title {
        max-width: 8ch;
        font-size: clamp(2.2rem, 11.5vw, 3.3rem);
    }

    .pult-video-back {
        font-size: 0.88rem;
    }

    .pult-video-embed {
        border-radius: 22px;
        padding: 18px;
    }

    .pult-video-coming-soon {
        width: min(100%, 216px);
        min-height: 88px;
    }

    .pult-video-placeholder-copy {
        width: min(100%, 100%);
        gap: 10px;
        padding: 16px;
        border-radius: 18px;
    }

    .pult-video-placeholder-kicker {
        font-size: 0.72rem;
    }

    .subpage-logo-link .hero-top-logo {
        width: 62px;
    }

    body.player-dock-visible .subpage-shell {
        padding-bottom: calc(var(--player-dock-safe-space, 148px) + 14px);
    }

    body.player-dock-visible.player-dock-collapsed .subpage-shell {
        padding-bottom: calc(var(--player-dock-safe-space, 74px) + 12px);
    }

    .subpage-hero,
    .detail-hero,
    .subpage-card {
        padding: 20px;
    }

    .beats-shell {
        width: min(calc(100% - 16px), 1040px);
        gap: 16px;
    }

    .beats-stage {
        gap: 12px;
        padding-top: 10px;
    }

    .beats-stage-title {
        max-width: 12ch;
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .beats-stage-lead {
        font-size: 0.92rem;
    }

    .beats-search-row {
        grid-template-columns: 1fr;
        padding: 10px;
        border-radius: 18px;
    }

    .beats-search-button {
        width: 100%;
    }

    .beats-visualizer {
        height: 58px;
        gap: 3px;
    }

    .beats-workspace {
        gap: 16px;
        padding: 18px 14px;
        border-radius: 22px;
    }

    .beats-workspace-controls,
    .beats-toolbar-actions {
        width: 100%;
    }

    .beats-toolbar-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .beats-toolbar-button,
    .beats-apply-button,
    .beats-clear-button {
        width: 100%;
        padding-inline: 12px;
    }

    .beats-apply-button {
        grid-column: 1 / -1;
        order: 3;
    }

    .beats-filters-panel {
        gap: 14px;
    }

    .beats-filter-menu {
        flex-basis: 100%;
    }

    .beats-filter-popover,
    .beats-filter-popover--options {
        position: static;
        width: 100%;
    }

    .beats-filter-popover.is-flipped,
    .beats-filter-popover--options.is-flipped {
        position: absolute;
        width: 100%;
    }

    .beats-track-row {
        grid-template-columns: 52px 32px minmax(0, 1fr) 68px;
        grid-template-rows: 52px;
        gap: 0 8px;
        min-height: 52px;
        padding: 0 8px 0 0;
        overflow: hidden;
    }

    .beats-track-main {
        display: contents;
    }

    .beats-track-preview {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        align-self: center;
        width: 32px;
        height: 32px;
    }

    .beats-track-copy {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        align-self: start;
        margin-top: 6px;
    }

    .beats-track-title {
        font-size: 0.94rem;
    }

    .beats-track-artist {
        font-size: 0.62rem;
    }

    .beats-track-details {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        align-self: end;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 6px;
        flex-wrap: nowrap;
        gap: 4px;
        overflow: hidden;
    }

    .beats-track-meta-badge {
        min-width: auto;
        min-height: 18px;
        padding: 0 4px;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        border-radius: 8px;
    }

    .beats-track-meta-badge-label {
        font-size: 0.45rem;
    }

    .beats-track-meta-badge-value {
        font-size: 0.62rem;
    }

    .beats-track-tags {
        flex-wrap: nowrap;
        gap: 4px;
        overflow: hidden;
    }

    .beats-track-side {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
        align-items: center;
        flex-direction: row;
    }

    .beats-track-artwork {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        width: 100%;
        min-height: 52px;
        border-radius: 0;
    }

    .beats-track-order {
        min-width: 68px;
        min-height: 28px;
        padding: 0 8px;
        font-size: 0.62rem;
    }

    .beats-tag-chip {
        min-height: 18px;
        padding: 0 6px;
        font-size: 0.58rem;
    }

    .beats-track-tags .beats-tag-chip:nth-child(n + 2) {
        display: none;
    }

    .drumkit-shell {
        width: min(calc(100% - 20px), 1180px);
    }

    .pult-shell {
        width: min(calc(100% - 20px), 1180px);
        gap: 18px;
    }

    .pult-hero {
        min-height: auto;
        padding: 24px 0 18px;
    }

    .pult-hero-title {
        font-size: clamp(2.3rem, 13vw, 3.4rem);
    }

    .pult-proof-list,
    .pult-audience-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pult-chain-list li {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .drumkit-stage {
        min-height: auto;
        padding-top: 12px;
    }

    .drumkit-stage::after {
        inset: 12px 0 0;
        border-radius: 28px;
    }

    .product-box {
        padding: 24px 18px;
        gap: 22px;
        border-radius: 26px;
    }

    .product-box::after {
        inset: 10px;
        border-radius: 20px;
    }

    .product-box-visual {
        padding: 18px;
        border-radius: 22px;
    }

    .product-box-visual-copy strong {
        font-size: 1.25rem;
    }

    .product-box-image {
        width: min(100%, 230px);
        transform: translate3d(0, -2px, 0) rotate(-5deg);
    }

    .product-box-title {
        gap: 8px;
    }

    .product-box-name {
        font-size: clamp(2rem, 12vw, 3rem);
        max-width: none;
    }

    .product-box-lead {
        font-size: 0.95rem;
    }

    .product-box-subtitle {
        padding-top: 20px;
        gap: 10px;
    }

    .product-box-subtitle > div {
        font-size: 0.92rem;
    }

    .product-box-free {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 12px;
    }

    .product-box-free-price {
        min-height: 38px;
    }

    .product-box-meta {
        gap: 8px;
    }

    .product-box-cta {
        width: 100%;
    }
}
