:root {
    --ink: #111111;
    --muted: #666666;
    --soft: #f4f4f4;
    --card: #f9f9f9;
    --radius: 48px;
    /* Super round as requested */
    --wrap: 1600px;
    /* Massive width for "filling" feel */

    --navH: 80px;
    /* Taller nav */
    --purple: #6200ee;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* ===== Speakers section ===== */
.speakers {
    padding: 120px 0;
    background: #fff;
}

.spGrid {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Narrower text column to give space to cards */
    gap: 40px;
    /* Reduced gap */
    align-items: start;
}

.spTitle {
    margin: 0;
    font-size: 42px;
    /* Slightly adjusted for balance */
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    word-break: keep-all;
}

.spDesc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
    word-break: keep-all;
}

.spCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* Tight gap for "packed" feel */
}

/* ===== Product Cards (Image 3 & New Feedback) ===== */
.prodCard {
    background: transparent;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Tighter vertical gap */
}

.prodCard:hover {
    transform: translateY(-5px);
}

.prodImg {
    background: #f9f9f9;
    border-radius: 32px;
    height: 360px;
    /* Tall and big */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.prodImg img {
    width: 80%;
    /* Responsive fill */
    max-width: 280px;
    /* Cap size */
    height: auto;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    display: block;
}

.prodCard:hover .prodImg img {
    transform: scale(1.08);
}

/* The Info Box */
.prodFoot {
    background: #f9f9f9;
    border-radius: 32px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    /* Substantial footprint */
}

.prodMeta {
    margin-bottom: 20px;
}

.prodName {
    font-size: 19px;
    /* Larger name */
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.prodPrice {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Buy Button */
.buyPill {
    background: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyPill:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.buyPill .plus {
    width: 36px;
    /* Larger button icon */
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: #fff;
    word-break: keep-all;
    /* Important for Korean */
}

html {
    scroll-behavior: smooth;
}

/* =====================================================
   Header dropdown imported from QLAUDIO_Plugins
   ===================================================== */
.siteHeader {
    background: rgba(3, 3, 3, 0.86) !important;
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.siteHeader .navBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.siteHeader .navBrand,
.siteHeader .navLinks,
.siteHeader .navLinks a,
.siteHeader .navIcons,
.siteHeader .iconBtn,
.siteHeader .menuBtn,
.siteHeader .navIcons a {
    color: #ffffff !important;
}

.siteHeader .navLinks {
    display: flex;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.siteHeader .navLinks a {
    opacity: 0.78;
}

.siteHeader .navLinks a:hover {
    opacity: 1;
}

.siteHeader .navItem {
    position: relative;
    display: flex;
    align-items: center;
}

.siteHeader .navMain,
.siteHeader .navLinks > a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.035em;
    padding: 6px 0;
    white-space: nowrap;
}

.siteHeader .navDropdownMenu {
    position: absolute;
    left: 50%;
    top: calc(100% + 14px);
    z-index: 320;
    min-width: max-content;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.5s ease;
}

.siteHeader .navDropdownMenu a {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: max-content;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0);
    white-space: nowrap;
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}

.siteHeader .navDropdownMenu a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.siteHeader .navSubItem {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.siteHeader .navSubTitle {
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.siteHeader .navSubMeta {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.25;
    font-weight: 600;
}

.siteHeader .navSubUpcoming .navSubTitle {
    opacity: 0.9;
}

.mnav .mnavSub {
    padding: 10px 16px 10px 28px;
    font-size: 14px;
    opacity: 0.82;
}

.mnav .mnavSub .mnavSubTitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.mnav .mnavSub .mnavSubMeta {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.78;
    line-height: 1.2;
}

@media (min-width: 1025px) {
    .siteHeader {
        overflow: visible !important;
    }

    .siteHeader .navLinks {
        display: flex;
        width: auto;
        max-width: min(100%, 760px);
        justify-content: center;
        gap: clamp(60px, 5.5vw, 94px);
        margin-inline: auto;
        flex: 0 1 auto;
    }

    .siteHeader .navItem {
        min-width: 0;
        width: auto;
        justify-content: center;
    }

    .siteHeader .navDropdown-software {
        width: auto;
    }

    .siteHeader .navDropdown-plugins {
        width: auto;
    }

    .siteHeader .navDropdown-sample {
        width: auto;
    }

    .siteHeader .navLinks > a[href="/support"] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        text-align: center;
    }

    .navShell {
        position: relative;
        z-index: 2;
    }

    .siteHeader::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 0;
        opacity: 0;
        pointer-events: none;
        background: rgba(3, 3, 3, 0.86);
        backdrop-filter: saturate(160%) blur(18px);
        -webkit-backdrop-filter: saturate(160%) blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
        z-index: 1;
    }

    .siteHeader.nav-expanded {
        border-bottom-color: transparent !important;
    }

    .siteHeader.nav-expanded::after {
        height: 148px;
        opacity: 1;
    }

    .siteHeader .navDropdownMenu {
        top: calc(100% + 34px);
        width: max-content;
        max-width: none;
        min-width: max-content;
        transform: translateX(-50%) translateY(18px);
    }

    .siteHeader.nav-expanded .navDropdownMenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .siteHeader.nav-expanded .navDropdownMenu a {
        animation: navSubFade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .siteHeader.nav-expanded .navDropdown:nth-child(1) .navDropdownMenu a {
        animation-delay: 0.04s;
    }

    .siteHeader.nav-expanded .navDropdown:nth-child(2) .navDropdownMenu a {
        animation-delay: 0.07s;
    }

    .siteHeader.nav-expanded .navDropdown:nth-child(3) .navDropdownMenu a {
        animation-delay: 0.09s;
    }

    .siteHeader .navHoverPad {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 220px;
        z-index: 2;
        pointer-events: none;
    }

    .siteHeader.nav-expanded .navHoverPad {
        pointer-events: auto;
    }
}

@media (max-width: 1024px) {
    .siteHeader .navLinks {
        display: none;
    }

    .siteHeader .navHoverPad,
    .siteHeader::after {
        display: none;
    }
}

@keyframes navSubFade {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 40px;
    /* Generous side padding */
}

/* ===== NAV ===== */
.siteHeader {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000;
    /* Solid black matches Image 1 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navShell {
    padding: 0 40px;
    max-width: var(--wrap);
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
}

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

.navBrand {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.05em;
}

.navLinks {
    display: flex;
    gap: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.navLinks a {
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 8px 0;
}

.navLinks a:hover {
    opacity: 1;
}

.navIcons {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.navAccountLink {
    color: #bbb;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.82;
    transition: color 0.2s, opacity 0.2s;
}

.navAccountLink:hover {
    color: #fff;
    opacity: 1;
}

.iconBtn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
}

.iconBtn:hover {
    opacity: 1;
    background: none;
}

.menuBtn {
    display: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.menuBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mnav {
    margin-top: 8px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    padding: 12px;
    transform-origin: top center;
    animation: fadeInMenu 0.2s ease-out;
}

.mnav[hidden] {
    display: none;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

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

.mnav a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.mnav a:hover {
    background: rgba(255, 255, 255, .1);
}

/* ===== Buttons ===== */
.btnBlack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btnBlack:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btnPurple {
    margin-top: 22px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: none;
}

.btnPurple:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.chatDot {
    display: inline-block;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    margin-top: 0;
    height: 800px;
    /* Taller hero */
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Remove radius for full bleed feel */
}

.heroBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle zoom animation check */
    animation: heroZoom 15s infinite alternate linear;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.heroText {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: min(560px, 45vw);
    text-align: left;
    z-index: 10;
}

.heroKicker {
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #000;
    text-shadow:
        0 0 1px #000,
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 80px rgba(255, 255, 255, 0.4);
}

.heroTitle {
    margin: 0;
    font-size: 80px;
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 24px;
    color: #000;
    text-shadow:
        0 0 1px #000,
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 40px #fff,
        0 0 80px rgba(255, 255, 255, 1),
        0 0 120px rgba(255, 255, 255, 0.6),
        0 0 200px rgba(255, 255, 255, 0.3);
}

.heroSub {
    margin: 0 0 40px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-shadow:
        0 0 1px #000,
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 80px rgba(255, 255, 255, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.35;

}

/* ===== Award trust strip ===== */
.awardTrustStrip {
    padding: 42px 0;
    background:
        linear-gradient(180deg, #fff 0%, #f8f8f9 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #ececec;
}

.awardTrustInner {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    align-items: center;
    gap: 34px;
}

.awardTrustLead {
    color: #111;
}

.awardTrustLead span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.awardTrustLead strong {
    display: block;
    max-width: 340px;
    color: #111;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

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

.awardTrustBadge {
    min-height: 166px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.awardTrustBadge strong {
    color: #111;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.awardTrustBadge span {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.awardTrustBadge em {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ===== Category bar ===== */
.catBar {
    padding: 100px 0;
    /* More space between title/icons */
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.catInner {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Reduced gap to give more room to icons */
}

.catTitle {
    display: grid;
    gap: 11px;
    flex: 0 0 min(300px, 28vw);
}

.catTitle span {
    color: #8a8a8a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.catTitle strong {
    color: #111;
    font-size: 30px;
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.catIcons {
    flex: 1;
    display: flex;
    justify-content: space-between;
    /* Spread them out */
    align-items: flex-start;
    /* Align top */
    gap: 0;
    /* Let space-between/flex handle it */
}

.catIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* Logic gap */
    color: #d1d1d1;
    transition: transform 0.2s, color 0.2s;
    flex: 1;
    /* Make each icon take equal width */
    cursor: pointer;
}

.catIcon svg {
    color: inherit;
    transition: stroke 0.2s;
    width: 64px;
    /* Big Icon */
    height: 64px;
    stroke-width: 1.2px;
}

.catIcon div {
    color: var(--ink);
    font-size: 16px;
    /* Big Label */
    font-weight: 700;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.catIcon:hover {
    color: var(--ink);
    transform: translateY(-5px);
}

.catIcon:hover div {
    opacity: 1;
}

/* ===== Studio bridge ===== */
.studioBridge {
    padding: 0 0 24px;
    background: #fff;
}

.josun.landingJosun {
    background: #fff;
    padding: 28px 0 40px;
}

.josun.landingJosun .josun-gui-section {
    margin-bottom: 40px !important;
}

.studioBridgeFrame {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 36px;
    background: #111;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.14);
}

.studioBridgeFrame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.studioBridgeFrame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.04) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.studioBridgeCopy {
    position: relative;
    z-index: 2;
    max-width: 520px;
    min-height: 430px;
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.studioBridgeCopy span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}

.studioBridgeCopy h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.studioBridgeCopy p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.55;
}

/* ===== Homepage UNI-VERSE feature ===== */
.homeUniFeature {
    overflow: hidden;
    padding: 88px 0 108px;
    border-top: 1px solid #ececec;
    background:
        radial-gradient(circle at 88% 14%, rgba(181, 188, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f7f6f4 100%);
    color: #111;
}

.homeUniFeatureGrid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: clamp(48px, 8vw, 130px);
    align-items: center;
}

.homeProductEyebrow {
    margin: 0 0 20px;
    color: rgba(20, 20, 20, 0.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.homeUniCopy h2 {
    margin: 0;
    color: #111;
    font-size: clamp(46px, 5.5vw, 78px);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.91;
}

.homeUniLead {
    max-width: 570px;
    margin: 30px 0 0;
    color: rgba(20, 20, 20, 0.62);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.homeUniStats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.homeUniStats span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(20, 20, 20, 0.14);
    border-radius: 999px;
    color: rgba(20, 20, 20, 0.56);
    font-size: 12px;
    font-weight: 700;
}

.homeUniStats strong {
    color: #111;
    font-size: 13px;
}

.homeUniLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 36px;
    padding: 0 24px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.homeUniLink:hover {
    background: #333;
    transform: translateY(-2px);
}

.homeUniGallery {
    display: grid;
    gap: 16px;
}

.homeUniGalleryStage {
    position: relative;
    min-height: 430px;
    padding: 18px;
    perspective: 1100px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.96), transparent 32%),
        linear-gradient(135deg, #ecebe8 0%, #fafafa 56%, #e4e2de 100%);
    box-shadow: 0 30px 78px rgba(20, 20, 20, 0.12);
}

.homeUniGallery .uniGalleryPanel {
    inset: 8px 46px 14px;
}

.homeUniGallery .uniGalleryPanel img {
    width: min(48%, 280px);
    max-height: 350px;
}

.homeUniGallery .uniGalleryNav {
    top: 52%;
    border-color: rgba(20, 20, 20, 0.12);
    background: rgba(17, 17, 17, 0.76);
}

.homeUniGallery .uniGalleryPrev {
    left: 18px;
}

.homeUniGallery .uniGalleryNext {
    right: 18px;
}

.homeUniGallery .homeUniGalleryMeta {
    display: grid;
    gap: 6px;
    min-height: 102px;
    padding: 18px 20px;
    border-color: rgba(20, 20, 20, 0.1);
    background: rgba(255, 255, 255, 0.82);
    text-align: left;
}

.homeUniGallery .homeUniGalleryMeta span {
    color: rgba(20, 20, 20, 0.44);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.homeUniGallery .homeUniGalleryMeta strong {
    color: #111;
    font-size: clamp(24px, 2vw, 32px);
}

.homeUniGallery .homeUniGalleryMeta p {
    margin: 0;
    color: rgba(20, 20, 20, 0.58);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.homeUniGalleryRail {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
}

.homeUniGalleryRail button {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.homeUniFullSetWrap {
    margin-top: 82px;
}

.homeUniFullSetPanel {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 24px;
    background: #f5f4f6;
    box-shadow: 0 30px 78px rgba(20, 20, 20, 0.1);
}

.homeUniFullSetPanel img {
    display: block;
    width: 100%;
    height: auto;
}

.homeUniFullSetPanel figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.56);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.homeUniInterfaces {
    position: relative;
    min-height: 0;
    aspect-ratio: 1672 / 941;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background: #f5f4f6;
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.homeUniInterfaces::before {
    display: none;
}

.homeUniOverview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.homeUniInterface {
    display: none;
}

.homeUniInterface img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.homeUniInterfaceAir {
    top: 12%;
    left: 7%;
    width: 35%;
    aspect-ratio: 432 / 700;
    transform: rotate(-11deg);
}

.homeUniInterfaceComp {
    top: 10%;
    right: 12%;
    z-index: 2;
    width: 42%;
    aspect-ratio: 432 / 700;
    transform: rotate(7deg);
}

.homeUniInterfaceGain {
    right: 30%;
    bottom: -16%;
    z-index: 3;
    width: 38%;
    aspect-ratio: 432 / 700;
    transform: rotate(-2deg);
}

.homeUniInterfaceLabel {
    display: none;
}

.homeUniInterfaceLabel span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.homeUniInterfaceLabel strong {
    color: #fff;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .homeUniFeature {
        padding: 104px 0;
    }

    .homeUniFeatureGrid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .homeUniInterfaces {
        min-height: 0;
        max-width: 720px;
    }

    .homeUniGalleryStage {
        min-height: 400px;
        max-width: 720px;
    }
}

@media (max-width: 680px) {
    .catTitle {
        flex: none;
    }

    .catTitle strong {
        font-size: 28px;
    }

    .homeUniFeature {
        padding: 82px 0;
    }

    .homeUniCopy h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .homeUniLead {
        font-size: 16px;
    }

    .homeUniInterfaces {
        min-height: 0;
        border-radius: 22px;
    }

    .homeUniGalleryStage {
        min-height: 320px;
        border-radius: 18px;
    }

    .homeUniGallery .uniGalleryPanel {
        inset: 6px 30px 12px;
    }

    .homeUniGallery .uniGalleryPanel img {
        width: min(68%, 210px);
        max-height: 278px;
    }

    .homeUniGallery .uniGalleryPrev {
        left: 10px;
    }

    .homeUniGallery .uniGalleryNext {
        right: 10px;
    }

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

    .homeUniGalleryRail button {
        min-height: 38px;
        font-size: 9px;
    }

    .homeUniFullSetWrap {
        margin-top: 54px;
    }

    .homeUniFullSetPanel {
        border-radius: 18px;
    }

    .homeUniFullSetPanel figcaption,
    .uniCollectionVisualGrid figcaption,
    .uniClosingVisual figcaption {
        right: 12px;
        bottom: 12px;
        font-size: 9px;
    }

    .homeUniInterfaceAir {
        top: 12%;
        left: 4%;
        width: 39%;
    }

    .homeUniInterfaceComp {
        top: 8%;
        right: 7%;
        width: 46%;
    }

    .homeUniInterfaceGain {
        right: 28%;
        bottom: -18%;
        width: 43%;
    }

    .homeUniInterfaceLabel {
        right: 14px;
        bottom: 14px;
        padding: 11px 12px;
    }
}

/* ===== Pixie section ===== */
.pixie {
    background: #fbfbfb;
    padding: 80px 0 100px;
}

.pixieGrid {
    display: grid;
    grid-template-columns: 360px 1fr 480px;
    gap: 40px;
    align-items: center;
}

.pixieLeft {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cardLg {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px;
    min-height: 280px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease;
}

.cardLg:hover {
    transform: translateY(-5px);
}

.cardLg img {
    width: 240px;
    height: auto;
    transform: rotate(-12deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.cardLg:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.cardInfo {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.cardInfo .name {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 18px;
    margin-bottom: 6px;
}

.cardInfo .price {
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.buyPill {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 999px;
    padding: 5px 5px 5px 24px;
    /* Tight padding around button */
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.buyPill:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.buyPill .plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6200ee;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    /* Thin plus sign */
}

.pixieCenter {
    text-align: center;
}

.pixieTitle {
    margin: 0;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pixieSub {
    margin: 20px 0 32px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--muted);
}

.pixieRight {
    display: flex;
    justify-content: flex-end;
}

.pixieRight img {
    width: 460px;
    height: auto;
    transform: translateX(40px);
    transition: transform 0.5s;
}

.pixieRight:hover img {
    transform: translateX(40px) scale(1.02);
}

/* ===== Speakers section ===== */
.speakers {
    padding: 140px 0;
    /* More breathable */
    background: #fff;
}

.spGrid {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* Wider sidebar */
    gap: 60px;
    align-items: start;
}

.spTitle {
    margin: 0;
    font-size: 56px;
    /* Huge title */
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 32px;
    word-break: keep-all;
}

.spDesc {
    font-size: 18px;
    /* Larger body text */
    color: #666;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 500;
    word-break: keep-all;
}

.spCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* Keeping gap tight to make cards feel Huge */
}

/* ===== Product Cards (Big & Round) ===== */
.prodCard {
    background: transparent;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prodCard:hover {
    transform: translateY(-8px);
}

.prodImg {
    background: #f9f9f9;
    border-radius: var(--radius);
    /* 48px */
    height: 420px;
    /* Massive */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.prodImg img {
    width: 90%;
    /* Fill almost entire width */
    max-width: 360px;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
    display: block;
}

.prodCard:hover .prodImg img {
    transform: scale(1.05);
    /* Slight zoom */
}

/* The Info Box */
.prodFoot {
    background: #f9f9f9;
    border-radius: var(--radius);
    /* 48px */
    padding: 40px;
    /* Luxuriously padded */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.prodMeta {
    margin-bottom: 24px;
}

.prodName {
    font-size: 22px;
    /* Headline size name */
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.prodPrice {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Buy Button */
.buyPill {
    background: #fff;
    border-radius: 999px;
    padding: 8px 8px 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyPill:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.buyPill .plus {
    width: 44px;
    /* Huge button */
    height: 44px;
    border-radius: 50%;
    background: #6200ee;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Article ===== */
.article {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.aTitle {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.aDesc {
    margin: 20px 0 32px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 500;
    font-size: 16px;
}

.imgStrip {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 280px;
    gap: 2px;
}

.imgStrip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.imgStrip:hover img {
    opacity: 0.7;
}

.imgStrip img:hover {
    opacity: 1;
}

/* ===== Support (Image 5/6) ===== */
.support {
    background: #111;
    padding: 160px 0;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sTitle {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}

.sDesc {
    margin: 20px auto 40px;
    max-width: 600px;
    color: #999;
    line-height: 1.8;
    font-weight: 500;
    font-size: 15px;
}

.contactCard {
    background: #1f1f1f;
    border-radius: 24px;
    padding: 60px 40px;
    /* Increased padding */
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    gap: 60px;
    max-width: 600px;
    /* Wider if needed */
    margin: 0 auto 60px;
    /* Center the card itself */
    text-align: center;
    /* Center text */
}

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

.cLabel {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cValue {
    font-size: 32px;
    /* Much larger */
    font-weight: 700;
    color: #fff;
}

/* ===== Footer (Image 6) ===== */
.siteFooter {
    background: #000;
    color: #fff;
    padding: 80px 0 100px;
    border-top: 1px solid #222;
    position: relative;
    /* Cover fixed hero */
    z-index: 1;
}

.footerGrid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footerBrand {
    flex: 0 0 300px;
}

.fLogo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.fCopy {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.footerLinks {
    flex: 1;
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

.fCol h4 {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
    font-weight: 700;
}

.fCol a,
.fCol span {
    display: block;
    font-size: 13px;
    color: #ddd;
    margin-bottom: 12px;
    text-decoration: none;
}

.fCol a:hover {
    text-decoration: underline;
}

.fInfoRow {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.fInfoRow span:first-child {
    color: #777;
    width: 70px;
    /* Fixed width label */
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .siteHeader {
        background: rgba(0, 0, 0, 0.9);
    }

    .navLinks {
        display: none;
    }

    .menuBtn {
        display: inline-flex;
    }

    .hero {
        height: 580px;
    }

    .heroText {
        right: 6%;
        width: min(520px, 80vw);
    }

    .heroTitle {
        font-size: 48px;
    }

    .awardTrustInner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .awardTrustLead strong {
        margin: 0 auto;
    }

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

    .awardTrustBadge {
        min-height: auto;
    }

    .catInner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .catIcons {
        width: 100%;
        justify-content: flex-start;
        gap: 12vw;
        overflow-x: auto;
        padding-bottom: 10px;
        /* Hide scrollbar spacing if needed */
        scrollbar-width: none;
    }

    .studioBridge {
        padding: 0 0 20px;
    }

    .josun.landingJosun {
        padding-top: 24px;
    }

    .studioBridgeFrame,
    .studioBridgeCopy {
        min-height: 390px;
    }

    .studioBridgeCopy {
        padding: 34px;
    }

    .studioBridgeCopy h2 {
        font-size: 40px;
    }

    .pixieGrid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pixieLeft {
        align-items: center;
    }

    .cardLg {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .cardInfo {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pixieRight {
        justify-content: center;
        overflow: hidden;
    }

    .pixieRight img {
        transform: translateY(20px);
        width: min(420px, 90vw);
    }

    .spGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spDesc {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .spCards {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }

    .prodImg {
        height: 280px;
    }

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

    .cValue {
        font-size: 28px;
    }

    .mnav {
        text-align: center;
    }

    .footerGrid {
        flex-direction: column;
        gap: 40px;
    }

    .footerLinks {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .awardTrustStrip {
        padding: 32px 0;
    }

    .awardTrustLead strong {
        font-size: 30px;
    }

    .awardTrustBadges {
        gap: 10px;
    }

    .awardTrustBadge {
        padding: 18px 20px;
        gap: 8px;
        border-radius: 18px;
    }

    .awardTrustBadge strong {
        font-size: 20px;
    }

    .awardTrustBadge span {
        font-size: 13px;
    }

    .awardTrustBadge em {
        padding-top: 10px;
    }
}

/* ======================== *
 *    PRODUCT PAGE STYLES   *
 * ======================== */

/* Dark Mode Header Override */
.product-page .siteHeader.dark-mode {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-page .siteHeader.dark-mode .navBrand,
.product-page .siteHeader.dark-mode .navLinks a,
.product-page .siteHeader.dark-mode .iconBtn,
.product-page .siteHeader.dark-mode .menuBtn {
    color: #fff;
}

/* HERO (Dark) */
.prodHero {
    background: #000;
    color: #fff;
    padding-top: var(--navH);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.heroContent {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ... existing prodHero styles if needed ... */

/* UPDATED .heroText for Index Page (appended or existing) */
.heroText {
    position: absolute;
    top: 50%;
    right: 5%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    color: #fff;
    max-width: 600px;
    width: 90%;
    pointer-events: none;
    /* Let clicks pass through if covering */
}

.heroText a {
    pointer-events: auto;
    /* Re-enable for button */
}



/* Ensure sections cover the fixed image */
.catBar,
.awards,
.partners,
.josun,
.speakers,
.article,
#view-product {
    position: relative;
    z-index: 1;
    background: #fff;
    /* Opaque background to cover image */
}

/* Exception for Product View which has its own hero */
#view-product {
    background: #fff;
}

/* Ensure prodHero background covers main hero image if needed */
.prodHero {
    background: #000;
    z-index: 2;
    /* Ensure it covers properly */
}

/* Responsive override for .heroText */
@media (max-width: 1024px) {
    .heroText {
        right: 5%;
        width: 80%;
        align-items: flex-end;
        /* If flex */
    }

    .heroTitle {
        font-size: 48px;
    }
}

.ph-title {
    font-size: 100px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ph-sub {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.ph-desc {
    font-size: 18px;
    color: #dfdfdf;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.ph-visual {
    margin-top: 40px;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.ph-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 100px rgba(98, 0, 238, 0.4));
    /* Glow effect */
}

/* Floating Card */
.floatCard {
    position: absolute;
    bottom: 80px;
    right: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 32px;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.floatCard h3 {
    font-size: 20px;
    margin: 0 0 4px;
    color: #fff;
}

.floatCard p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.fc-price {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.buyPill.dark {
    background: #333;
    color: #fff;
    border: 1px solid #444;
}

.buyPill.dark:hover {
    background: #444;
}

.buyPill.dark .plus {
    background: #fff;
    /* Contrast on dark card */
    color: #000;
}


/* INTRO (Seemless) */
.prodIntro {
    background: #fff;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.secTitle {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.secDesc {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.introVisual {
    position: relative;
    margin-bottom: 100px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    opacity: 0.1;
    z-index: 1;
}

.intro-prod {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: 600px;
    filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.15));
}

.introGrid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.ig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ig-item img,
.ig-item .icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.ig-item .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
}

/* DETAILS (Macro) */
.prodDetail {
    background: #f9f9f9;
    padding: 160px 0;
    position: relative;
    z-index: 1;
}

.detailVisuals {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dv-large {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    height: 600px;
    position: relative;
}

.dv-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    height: 600px;
    position: relative;
}

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

.dv-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 14px;
}

/* LIFESTYLE */
.prodLife {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.lifeImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.lifeContent {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Text on right */
}

.lc-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: var(--radius);
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.lc-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 20px;
}

.lc-box h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.lc-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    text-shadow: 0 0 20px #fff, 0 0 30px #fff;
}

/* FEATURES GRID */
.prodFeatures {
    padding: 160px 0;
    background: #fff;
}

.pf-header {
    margin-bottom: 100px;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pf-card {
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s;
}

.pf-card:hover {
    transform: translateY(-5px);
    background: #f4f4f4;
}

.pf-card svg {
    margin-bottom: 10px;
}

.pf-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.pf-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* BOTTOM BANNER */
.prodBottom {
    padding: 100px 40px;
    background: #f4f4f4;
}

.pb-content {
    background: #fff;
    border-radius: var(--radius);
    padding: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pb-tag {
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
}

.pb-content h2 {
    font-size: 64px;
    margin-bottom: 20px;
}

.pb-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.pb-img {
    margin-top: 60px;
    transform: rotate(5deg);
}

.pb-img img {
    max-width: 600px;
}

/* ======================== *
 *    VISUAL UPGRADE        *
 * ======================== */

/* 1. Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* 2. Hero Enhancements */
.heroTitle {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Animated Gradient if desired, keeping simple for now */
}

/* 3. Card Glow Interaction & Premium Hover */
.prodCard {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy lift */
}

/* Lift Effect on Hover */
.prodCard.reveal.active:hover {
    transform: translateY(-12px) scale(1.02);
    z-index: 10;
    /* Bring to front */
}

/* Deep Shadow on Hover */
.prodCard:hover .prodImg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Image Zoom */
.prodImg {
    overflow: hidden;
    /* Ensure zoom stays inside */
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    /* rounded corners handled in main style usually */
}

.prodImg img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    /* Ensure width */
}

.prodCard:hover .prodImg img {
    transform: scale(1.08);
    /* Subtle Zoom */
}

/* Glow Background */
.prodCard::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(98, 0, 238, 0.15) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prodCard:hover::after {
    opacity: 1;
}

/* Buy Pill Pulse */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.buyPill .plus {
    animation: softPulse 2s infinite;
}

/* 4. Smooth Anchor Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Title Gradient Fix */
.heroTitle {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ======================== *
 *     JOSUN SERIES         *
 * ======================== */
.josun {
    padding: 120px 0;
    background: #fff;
}

.josunHeader {
    margin-bottom: 60px;
    max-width: 600px;
}

.josunTitle {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #111;
}

.josunDesc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Featured Bundle Block */
.josunFeatured {
    background: #111;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 34px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.jf-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 650px;
    color: #fff;
}

.jf-tag {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(18px);
}

.jf-name {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    line-height: 0.98;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.jf-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 26px;
    max-width: 600px;
    line-height: 1.6;
}

.jf-text strong {
    color: #fff;
}

.jf-bonusLine {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.jf-bonusLine strong {
    color: #e6bf4f;
}

.jf-bonusLine span {
    color: rgba(255, 255, 255, 0.72);
}

.jf-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jf-stats span {
    min-width: 122px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(16px);
}

.jf-stats strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 5px;
}

.jf-visual {
    width: 100%;
    min-height: 680px;
    position: relative;
    background: #ececec;
}

.jf-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.jf-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.24) 100%);
    z-index: 1;
}

.jf-overlay {
    position: relative;
    z-index: 2;
    min-height: 680px;
    padding: clamp(34px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: clamp(28px, 4vw, 58px);
    align-items: end;
}

.jf-pricePanel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    color: #111;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px);
}

.jf-offerLabel {
    display: block;
    margin-bottom: 14px;
    color: rgba(17, 17, 17, 0.55);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.jf-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.jf-price strong {
    font-size: clamp(42px, 4vw, 56px);
    line-height: 1;
    color: #111;
}

.jf-price span {
    color: rgba(17, 17, 17, 0.44);
    font-size: 21px;
    font-weight: 700;
    text-decoration: line-through;
}

.jf-save {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 74, 74, 0.1);
    color: #e53935;
    font-size: 14px;
    font-weight: 800;
}

.jf-includes {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
    color: rgba(17, 17, 17, 0.64);
    font-size: 14px;
    line-height: 1.45;
}

.jf-includes li {
    padding-top: 10px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.jf-pricePanel .btnBlack {
    width: 100%;
    justify-content: center;
}

/* Grid Layout */
.josunGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .josunFeatured {
        text-align: center;
    }

    .jf-visual,
    .jf-overlay {
        min-height: 760px;
    }

    .jf-overlay {
        grid-template-columns: 1fr;
        align-items: end;
        padding: 34px;
    }

    .jf-content {
        align-items: flex-start;
    }

    .jf-pricePanel {
        max-width: 440px;
    }

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

@media (max-width: 640px) {
    .jf-visual,
    .jf-overlay {
        min-height: 820px;
    }

    .jf-overlay {
        padding: 22px;
    }

    .jf-name {
        font-size: 40px;
    }

    .jf-pricePanel {
        padding: 24px;
    }

    .jf-price {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
}

/* Support Visual */
.supportVisual {
    margin-top: 100px;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    position: relative;
    width: 100%;
}

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

/* ======================== *
 *       AWARDS             *
 * ======================== */

/* ======================== *
 *       AWARDS             *
 * ======================== */
.awards {
    padding: 120px 0;
    background: #050505;
    /* Deep Dark */
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

/* Gold background glow */
.awards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    /* Increased from 140px */
    height: 200px;
    /* Increased from 140px */
    background: radial-gradient(circle, rgba(188, 140, 29, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.awSectionTitle {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(to right, #fff 20%, #d4af37 50%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.awGrid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awItem {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    /* Glassy dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.awItem:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #d4af37;
    /* Gold border on hover */
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    /* Gold shadow */
}

.awIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #222 0%, #000 100%);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #d4af37;
    /* Gold Icon */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.awItem:hover .awIcon {
    transform: scale(1.1) rotate(5deg);
    border-color: #d4af37;
    color: #fff;
    background: #d4af37;
}

/* Fix visibility on black background for icon */
.awItem:hover .awIcon svg {
    stroke: #000;
    /* Contrast when icon bg is gold */
}

.awYear {
    font-size: 12px;
    font-weight: 800;
    color: #d4af37;
    /* Gold Text */
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    letter-spacing: 0.1em;
}

.awTitle {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    /* White title for readability */
    line-height: 1.4;
    min-height: 56px;
    text-align: center;
}

.awBadge {
    font-size: 15px;
    color: #ccc;
    font-weight: 500;
}

.awSub {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* Ensure Support Section Text is Visible (Safe check) */
.sDesc {
    color: #bbb;
    /* Brighter grey */
}

.cLabel {
    color: #aaa;
    /* Brighter */
}

.awards {
    padding: 100px 0;
    background: #050505;
    /* Deep Black */
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

/* Background Glow Effect */
.awards::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.awSectionTitle {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(to right, #fff 20%, #d4af37 50%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.awGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awItem {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    /* Glassy dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.awItem:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #d4af37;
    /* Gold border */
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    /* Gold shadow */
}

.awIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #222 0%, #000 100%);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #d4af37;
    /* Gold Icon */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.awItem:hover .awIcon {
    transform: scale(1.1) rotate(5deg);
    border-color: #d4af37;
    color: #fff;
    background: #d4af37;
}

/* Fix visibility on black background for icon */
.awItem:hover .awIcon svg {
    stroke: #000;
    /* Contrast when icon bg is gold */
}

.awYear {
    font-size: 13px;
    font-weight: 800;
    color: #d4af37;
    /* Gold Text */
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    letter-spacing: 0.1em;
    border: none;
}

.awTitle {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    /* White title for readability */
    line-height: 1.4;
    min-height: 56px;
    text-align: center;
    margin-bottom: 5px;
}

.awBadge {
    font-size: 15px;
    color: #ccc;
    font-weight: 500;
}

.awSub {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* ======================== *
 *       AWARDS (LIGHT)     *
 * ======================== */
.awards {
    padding: 120px 0;
    background: #fbfbfd;
    /* Light Gray Background */
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #111;
}

/* Remove Dark Glow */
.awards::before {
    display: none;
}

.awSectionTitle {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #111;
    /* Clean Black Title */
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
}

.awGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awItem {
    flex: 1;
    min-width: 300px;
    background: #fff;
    /* White Card */
    border: 1px solid #eee;
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.awItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Soft Shadow */
    border-color: #ddd;
}

/* Laurel Decoration */
.awIcon {
    position: relative;
    /* For pseudo positioning */
    width: 80px;
    height: 80px;
    background: #f5f5f7;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #111;
    box-shadow: none;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
    z-index: 1;
}

.awIcon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    /* Big laurel */
    height: 200px;
    background-image: url('./assets/images/laurel.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    /* Subtle watermark look initially */
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease, transform 0.3s ease;
    mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
}

.awItem:hover .awIcon::before {
    opacity: 0.8;
    /* Make it more visible on hover */
    transform: translate(-50%, -50%) scale(1.1);
}

.awItem:hover .awIcon {
    /* Existing hover styles */
    transform: scale(1.05);
    /* Slight scale for icon itself */
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Icon visibility fix */
.awItem:hover .awIcon svg {
    stroke: currentColor;
}

.awYear {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    border: none;
}

.awTitle {
    font-size: 24px;
    /* Larger */
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    min-height: auto;
    /* Allow flexible height */
    text-align: center;
    margin-bottom: 8px;
    margin-top: 10px;
}

.awDesc {
    font-size: 16px;
    color: #666;
    /* Secondary Gray */
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}

.awBadge {
    display: none;
    /* Remove old class if lingering */
}

.awSub {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* ======================== *
 *       JOSUN SERIES       *
 * ======================== */
.josunHeritageGraphic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0 28px;
    text-align: left;
    width: 100%;
}

.jh-card {
    background: #fbfbfd;
    border: 1px solid #eee;
    padding: 32px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.jh-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #111;
}

.jh-card.accent {
    background: #111;
    color: #fff;
    border: none;
}

.jh-card.accent:hover {
    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.jh-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 16px;
}

.jh-head {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.jh-sub {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.jh-stat {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    background: linear-gradient(to bottom, #fff, #999);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jh-stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    opacity: 0.8;
}

.jh-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.jh-footer-text {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .josunHeritageGraphic {
        grid-template-columns: 1fr;
    }

    .jh-stat {
        font-size: 48px;
    }
}



/* ======================== *
 *       PARTNERS           *
 * ======================== */
.partners {
    padding: 120px 0;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ptTitle {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -0.02em;
}

.ptDesc {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    line-height: 1.6;
}

/* Partners Marquee */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 28px 0;
    margin: -28px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* Pause on hover optional
.track:hover {
    animation-play-state: paused;
}
*/

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }

    /* 4 sets, move 1 set width */
}

.ptItem {
    flex: 0 0 auto;
    /* Don't shrink */
    position: relative;
    z-index: 1;
    width: 240px;
    height: 140px;
    background: #fbfbfd;
    border: 1px solid #eee;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: #ccc;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: default;
}

.ptItem:hover {
    z-index: 2;
    color: #111;
    border-color: #111;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

/* ======================== *
 *     BONUS SECTION        *
 * ======================== */
.bonus-wrap {
    display: grid;
    grid-template-columns: 40% 55%;
    align-items: start;
    gap: 5%;
}

.bonus-text {
    position: sticky;
    top: 120px;
}

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

@media (max-width: 900px) {
    .bonus-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bonus-text {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

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

@media (max-width: 600px) {
    .bonus-cards {
        grid-template-columns: 1fr;
    }
}

/* ======================== *
 *       GLOBAL STATS       *
 * ======================== */
.globalStats {
    padding: 100px 0;
    background: #000;
    color: #fff;
    border-top: 1px solid #222;
    position: relative;
    z-index: 10;
    /* Boost z-index */
    opacity: 1;
    visibility: visible;
}

.gsGrid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.gsItem {
    text-align: center;
}

.gsValue {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    /* Fallback */
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 10px;
}

.gsLabel {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gsDivider {
    width: 1px;
    height: 60px;
    background: #333;
}

@media (max-width: 768px) {
    .gsDivider {
        display: none;
    }
}

/* ===============================
   PLATINUM BUNDLE V3 (Final Polish)
   =============================== */

.inst-category {
    margin-bottom: 80px;
    /* Reduced margin since we use padding now */
    padding: 60px 40px;
    /* Internal spacing */
    border-radius: 32px;
    /* Soft rounded corners */
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

/* Zebra Striping: Add background to every even category (Woodwinds) */
.inst-category:nth-of-type(even) {
    background-color: #fafafa;
    /* Very subtle gray */
    box-shadow: 0 0 0 1px rgba(0, 0, 10, 0.03);
    /* Extremely subtle border */
}

/* Hover Effect for Categories (Optional) */
/* .inst-category:hover {
    background-color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
} */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Typography */
.inst-category .cat-header {
    margin-bottom: 50px;
    text-align: center;
}

.cat-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    /* Use Serif for elegance */
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    letter-spacing: -0.02em;
}

.cat-desc {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Visual Image - Wide & Elegant (Ratio Preserved) */
.inst-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    /* Aspect Ratio Hack (16:9) -> Height auto-adjusts based on width */
    height: 0;
    padding-bottom: 60%;
    /* Slightly wider than 16:9 for cinematic feel */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #080808;
    /* Dark cinematic background */
}

.inst-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure NO cropping */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.inst-visual:hover img {
    transform: scale(1.02);
    /* Subtle zoom */
}

/* 3-Column Grid for Lists */
.inst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    /* Wider gap */
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.inst-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Improved List Item Visibility */
.inst-list li {
    font-size: 16px;
    /* Slightly larger base text */
    color: #444;
    /* Darker for better contrast */
    padding: 28px 24px;
    /* More padding, added horizontal padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Slightly stronger separator */
    line-height: 1.75;
    /* Relaxed reading experience */
    transition: all 0.2s ease;
    border-radius: 12px;
    /* Rounded corners for hover state */
    margin-bottom: 8px;
    /* Spacing between items */
}

/* Hover Effect: Clear visual cue */
.inst-list li:hover {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    /* Soft lift effect */
    transform: translateY(-2px);
    /* Slight lift */
    border-color: transparent;
}

/* Woodwinds Category (Gray Background) Hover Fix */
.inst-category:nth-of-type(even) .inst-list li:hover {
    background-color: #fff;
    /* Keep hover white even on gray bg */
}

/* Instrument Title Styling */
.inst-list li strong {
    color: #000;
    /* Deepest black */
    font-weight: 800;
    display: block;
    font-size: 21px;
    /* Larger Title */
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    letter-spacing: -0.01em;
}

/* Description Text Styling */
.inst-desc {
    display: block;
    font-size: 15px;
    /* Readable size */
    color: #4a4a4a;
    /* High contrast gray */
    line-height: 1.7;
    /* Good breathing room */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .inst-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inst-visual {
        height: 260px;
        border-radius: 16px;
        margin-bottom: 40px;
    }

    .cat-title {
        font-size: 36px;
    }
}

/* ===============================
   GALLERY SLIDER (FADE EFFECT)
   =============================== */

.inst-visual {
    position: relative;
    /* 기존 높이 등은 유지 */
}

/* 슬라이더 이미지 공통 설정 */
.inst-visual img.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlide 12s infinite;
    /* 3장 기준 12초 (4초씩) */
}

/* 3장 슬라이드 타이밍 */
.inst-visual img.slide-img:nth-child(1) {
    animation-delay: 0s;
}

.inst-visual img.slide-img:nth-child(2) {
    animation-delay: 4s;
}

.inst-visual img.slide-img:nth-child(3) {
    animation-delay: 8s;
}

.inst-visual img.slide-img:nth-child(4) {
    animation-delay: 12s;
    /* 4장일 경우 */
}

/* 애니메이션 키프레임 */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    5% {
        opacity: 1;
        transform: scale(1);
    }

    /* 등장 */
    33% {
        opacity: 1;
        transform: scale(1);
    }

    /* 유지 */
    38% {
        opacity: 0;
    }

    /* 퇴장 */
    100% {
        opacity: 0;
    }
}

/* Percussion은 4장이므로 별도 애니메이션 정의 (선택사항) */
.inst-visual.perc-visual img.slide-img {
    animation-duration: 16s;
    /* 4장 x 4초 = 16초 */
}

.inst-visual.perc-visual img.slide-img:nth-child(1) {
    animation-delay: 0s;
}

.inst-visual.perc-visual img.slide-img:nth-child(2) {
    animation-delay: 4s;
}

.inst-visual.perc-visual img.slide-img:nth-child(3) {
    animation-delay: 8s;
}

.inst-visual.perc-visual img.slide-img:nth-child(4) {
    animation-delay: 12s;
}

/* ===============================
   DARK THEME FEATURES SECTION
   =============================== */

.feat-card {
    background: rgba(255, 255, 255, 0.03);
    /* Ultra transparent dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    /* Glass effect */
}

/* Hover Effect: Glow & Lift */
.feat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Icon Styling */
.feat-icon {
    font-size: 48px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.feat-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: "Playfair Display", serif;
}

.feat-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .pf-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ======================== *
 *    SUPPORT EXPANSION     *
 * ======================== */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    text-align: left;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

.download-card {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.download-card:hover {
    background: #fff;
    border-color: #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: left;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-item summary {
    padding: 24px 0;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #555;
}

.faq-content {
    padding-bottom: 24px;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* Audio Demos */
.audioDemos {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-track {
    position: relative;
    width: 100%;
}

.dt-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #111;
    flex-shrink: 0;
}

.play-btn:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.play-btn svg {
    fill: currentColor;
    stroke: none;
    width: 16px;
    height: 16px;
}

.dt-info {
    flex-grow: 1;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.dt-time {
    font-size: 0.85rem;
    color: #999;
    font-family: monospace;
    min-width: 60px;
    text-align: right;
}

.dt-wave {
    width: 100%;
    height: 60px;
    display: block;
    cursor: pointer;
    border-radius: 4px;
    /* Optional aesthetics */
}

/* MIDI Pack Styles */
.midiHero {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 560px;
    margin: 0 auto 90px;
    padding: 42px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.2)),
        url("./assets/images/samplePack_1.webp");
    background-position: center;
    background-size: cover;
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.45);
}

.midiHero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 34%, transparent 62%, rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.midiHeroPanel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 30px 34px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.34);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px) saturate(1.12);
    -webkit-backdrop-filter: blur(10px) saturate(1.12);
}

.midiHeroEyebrow {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.midiHero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(38px, 4.8vw, 58px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
}

.midiHero p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.65vw, 19px);
    font-weight: 600;
    line-height: 1.55;
}

/* Shared purchase, installation, compatibility, and license summary. */
.productFacts {
    padding: 96px 0;
}

.productFactsDark {
    color: #f7f7f4;
    background:
        radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.1), transparent 30%),
        #10100f;
}

.productFactsLight {
    color: #161616;
    background: transparent;
}

.productFactsHeader {
    max-width: 640px;
    margin: 0 auto 42px;
    text-align: center;
}

.productFactsHeader p,
.productFact > span {
    display: block;
    margin: 0 0 13px;
    color: rgba(127, 127, 127, 0.9);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.productFactsHeader h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

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

.productFact {
    min-height: 238px;
    padding: 26px 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.productFactsDark .productFact {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.productFactsDark .productFactsHeader p,
.productFactsDark .productFact > span {
    color: rgba(255, 255, 255, 0.46);
}

.productFactsLight .productFact {
    background: rgba(255, 255, 255, 0.72);
}

.productFact h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.productFact p {
    margin: 0;
    color: rgba(25, 25, 25, 0.65);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.productFactsDark .productFact p {
    color: rgba(255, 255, 255, 0.62);
}

.uniProductFacts {
    position: relative;
    z-index: 2;
    margin-top: 42px;
}

.midiProductFacts {
    max-width: 1200px;
    margin: 0 auto 118px;
    padding: 54px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
}

.midiProductFacts .productFactsHeader {
    margin-bottom: 34px;
}

@media (max-width: 1024px) {
    .productFactsGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .productFacts {
        padding: 74px 0;
    }

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

    .productFact {
        min-height: auto;
        padding: 24px 22px;
    }

    .midiProductFacts {
        margin-bottom: 78px;
        padding: 34px 22px;
        border-radius: 22px;
    }
}

.midi-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.midi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #444;
}

.mc-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.mc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.midi-card:hover .mc-img img {
    transform: scale(1.05);
}

.mc-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mc-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.mc-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.mc-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.btnSmall {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btnSmall:hover {
    background: #ddd;
    transform: scale(1.05);
}

.btnWhite:hover {
    transform: scale(1.03);
    background: #f0f0f0;
}

.midiTeaserVisual {
    position: relative;
    max-width: 1180px;
    margin: 0 auto 110px;
    text-align: left;
}

.midiTeaserImage {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1672 / 941;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #111;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.midiTeaserImage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.midiTeaserImage img {
    display: block;
    width: 100%;
    height: auto;
}

.midiTeaserCaption {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 1;
    width: min(430px, calc(100% - 60px));
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(5, 5, 5, 0.36);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

.midiTeaserCaption span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.midiTeaserCaption strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.midiTeaserCaption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

.midiReviews {
    max-width: 1200px;
    margin: 0 auto 120px;
}

.midiReviewHeader {
    text-align: center;
    margin-bottom: 54px;
}

.midiReviewHeader h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.midiReviewStars {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.midiReviewCard {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.midiQuoteMark {
    height: 36px;
    color: rgba(255, 255, 255, 0.22);
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 0.7;
    margin-bottom: 18px;
}

.midiReviewCard h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.midiReviewCard p {
    margin: 0 0 24px;
    color: #a8a8a8;
    font-size: 15px;
    font-style: italic;
    line-height: 1.75;
}

.midiReviewCard strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.midiClosingImage {
    max-width: 1200px;
    margin: 90px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: #111;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.midiClosingImage img {
    display: block;
    width: 100%;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .midiReviewGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .midiHero {
        min-height: 420px;
        margin-bottom: 72px;
        padding: 20px;
        border-radius: 22px;
    }

    .midiHeroPanel {
        width: 100%;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .midiHeroEyebrow {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .midiHero h1 {
        font-size: clamp(34px, 12vw, 44px);
    }

    .midiTeaserVisual {
        margin-bottom: 82px;
    }

    .midiTeaserImage {
        border-radius: 22px;
    }

    .midiTeaserCaption {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin-top: -8px;
        padding: 24px 22px;
        border-radius: 18px;
    }

    .midiReviews {
        margin-bottom: 90px;
    }

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

    .midiReviewCard {
        padding: 28px;
    }

    .midiClosingImage {
        margin-top: 70px;
        border-radius: 22px;
    }
}

/* Gallery Section */
.gallery-section {
    margin: 80px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gallery-track.scroll-left {
    animation: scrollGalleryLeft 40s linear infinite;
}

.gallery-track.scroll-right {
    animation: scrollGalleryRight 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 350px;
    /* Wider for cinematic feel */
    height: 220px;
    /* Reduced height */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

@keyframes scrollGalleryLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollGalleryRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ===== PROMO POPUP ===== */
.promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    /* Darker overlay */
    backdrop-filter: blur(8px);
    z-index: 2147483647;
    /* Max Z-Index */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.4s;
    -webkit-backdrop-filter: blur(8px);
}

.promo-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal {
    background: #ffffff;
    /* Explicit White */
    color: #000000;
    /* Explicit Black text */
    border-radius: 24px;
    padding: 0;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    /* Stronger shadow */
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 2147483647;
}

.promo-overlay.active .promo-modal {
    transform: scale(1) translateY(0);
}

.promo-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 100;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.promo-close:hover {
    background: #000;
    transform: rotate(90deg) scale(1.1);
    border-color: #fff;
}

.promo-img-wrap {
    width: 100%;
    line-height: 0;
    background: #000;
    /* Fallback for image load */
}

.promo-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-actions {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    /* Explicit White */
}

.promo-btn-copy {
    background: #111111;
    /* Explicit Black */
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-btn-copy:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.promo-btn-copy:active {
    transform: translateY(0);
}


/* Toast for copy feedback */
.copy-toast {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 2147483647;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===== PRICING GRID (NEW) ===== */
.pricing-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.pricing-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

/* Featured Styling (Platinum Bundle) */
.pricing-card.featured {
    border: 2px solid #111;
    background: #fafafa;
}

.pricing-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.pc-img {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.pricing-card:hover .pc-img img {
    transform: scale(1.05);
}

.pc-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
}

.pc-title span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-top: 4px;
}

.pc-price {
    margin-top: auto;
    padding-top: 20px;
    margin-bottom: 20px;
}

.pc-price .original {
    display: block;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pc-price .current {
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.pc-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.pc-btn:hover {
    background: #333;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================
   INDIVIDUAL SERIES PRICING
   ================================== */
.landingSeriesCompact {
    margin: 48px 0 0;
    padding: 28px;
    border: 1px solid #ececec;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #fafafa);
}

.landingSeriesIntro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.landingSeriesIntro span {
    color: #888;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landingSeriesIntro h3 {
    margin: 5px 0 0;
    color: #111;
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.landingSeriesIntro p {
    max-width: 430px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
}

.landingSeriesList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.landingSeriesItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 128px;
    padding: 18px;
    border: 1px solid #ededed;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.landingSeriesItem h4 {
    margin: 0 0 8px;
    color: #111;
    font-size: 17px;
    font-weight: 850;
}

.landingSeriesItem p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.45;
}

.landingSeriesBuy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.landingSeriesBuy span {
    color: #111;
    font-size: 15px;
    font-weight: 850;
    white-space: nowrap;
}

.landingSeriesBuy s {
    color: #aaa;
    font-weight: 600;
}

.landingSeriesBuy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .landingSeriesList {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .landingSeriesCompact {
        margin-top: 36px;
        padding: 20px;
        border-radius: 20px;
    }

    .landingSeriesIntro {
        display: block;
    }

    .landingSeriesIntro p {
        margin-top: 10px;
        text-align: left;
    }

    .landingSeriesItem {
        align-items: flex-start;
        flex-direction: column;
    }

    .landingSeriesBuy {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.series-selection {
    background: #fff;
    padding: 100px 0;
    border-top: 1px solid #f4f4f4;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .series-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.series-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
    position: relative;
}

.series-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
}

.sc-img {
    width: 100%;
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
}

.sc-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.series-card:hover .sc-img img {
    transform: scale(1.06);
}

.sc-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sc-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
    font-family: inherit;
}

.sc-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sc-price-box {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sc-price .original {
    font-size: 16px;
    text-decoration: line-through;
    color: #aaa;
    margin-right: 6px;
    font-weight: 500;
}

.sc-price .current {
    font-size: 26px;
    font-weight: 800;
    color: #111;
}

.sc-btn {
    text-align: center;
    width: 100%;
    display: block;
    padding: 16px 0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.sc-btn:hover {
    background: #333;
    border-color: #333;
    transform: scale(1.02);
}

/* ======================== *
 *   UNI-VERSE SALES PAGE   *
 * ======================== */
.uniPage {
    --uni-bg: #f4f3ef;
    --uni-card: rgba(255, 255, 255, 0.84);
    --uni-card-strong: #ffffff;
    --uni-border: rgba(0, 0, 0, 0.08);
    --uni-border-strong: rgba(0, 0, 0, 0.2);
    --uni-text: #111111;
    --uni-muted: rgba(20, 20, 20, 0.62);
    --uni-muted-soft: rgba(20, 20, 20, 0.45);
    --uni-shadow: 0 18px 45px rgba(0, 0, 0, 0.045);
    --uni-shadow-lift: 0 28px 62px rgba(0, 0, 0, 0.1);
    background: #f4f3ef;
    color: #141414;
}

.uniCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: #fff;
}

.uniHero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 132px 0 76px;
    background: linear-gradient(180deg, #fff 0%, #fbfaf7 82%, var(--uni-bg) 100%);
    color: var(--uni-text);
}

.uniHero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 24%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--uni-bg));
    pointer-events: none;
    z-index: 1;
}

.uniHeroMediaArt {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.uniHeroMediaArt::before {
    content: "";
    position: absolute;
    inset: 74px 0 auto;
    height: 54%;
    background:
        linear-gradient(90deg, transparent 0 7%, rgba(0, 0, 0, 0.055) 7.1% 7.25%, transparent 7.35% 100%),
        linear-gradient(180deg, transparent 0 18%, rgba(0, 0, 0, 0.045) 18.1% 18.22%, transparent 18.32% 100%);
    background-size: 120px 120px;
    mask-image: radial-gradient(ellipse at 50% 44%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 44%, black 0%, transparent 70%);
    opacity: 0.54;
    z-index: 0;
}

.uniHeroMediaArt::after {
    content: "";
    position: absolute;
    top: 84px;
    left: 50%;
    width: min(72vw, 980px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.07), transparent 2px),
        repeating-conic-gradient(from 18deg, rgba(0, 0, 0, 0.07) 0deg 1deg, transparent 1deg 12deg);
    mask-image: radial-gradient(circle, transparent 0 18%, black 19% 63%, transparent 64%);
    -webkit-mask-image: radial-gradient(circle, transparent 0 18%, black 19% 63%, transparent 64%);
    transform: translateX(-50%);
    opacity: 0.2;
    animation: uniArtRotate 42s linear infinite;
    z-index: 1;
}

.uniArtWebCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.82;
    z-index: 2;
}

.uniArtRing,
.uniArtWave,
.uniArtCore,
.uniArtNode {
    position: absolute;
    left: 50%;
    top: 34%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.uniArtRing {
    width: min(66vw, 850px);
    aspect-ratio: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.uniArtRingTwo {
    width: min(49vw, 620px);
    border-style: dashed;
    opacity: 0.62;
    animation: uniArtSpinCentered 30s linear infinite reverse;
}

.uniArtRingThree {
    width: min(31vw, 390px);
    opacity: 0.46;
}

.uniArtWave {
    width: min(82vw, 1080px);
    height: 120px;
    border-radius: 999px;
    background:
        repeating-linear-gradient(90deg, transparent 0 20px, rgba(0, 0, 0, 0.11) 21px 22px, transparent 23px 48px);
    filter: blur(0.2px);
    opacity: 0.18;
    transform: translate(-50%, -50%) rotate(-8deg);
}

.uniArtWaveTwo {
    top: 42%;
    width: min(74vw, 920px);
    opacity: 0.12;
    transform: translate(-50%, -50%) rotate(8deg);
}

.uniArtCore {
    width: min(19vw, 210px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 38%, rgba(0, 0, 0, 0.06) 39% 41%, transparent 42%),
        radial-gradient(circle, rgba(0, 0, 0, 0.1), transparent 66%);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.uniArtNode {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #111;
    opacity: 0.18;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.04);
    z-index: 3;
}

.uniArtNode:nth-of-type(7) {
    transform: translate(calc(-50% - 320px), calc(-50% - 120px));
}

.uniArtNode:nth-of-type(8) {
    transform: translate(calc(-50% - 210px), calc(-50% + 110px));
}

.uniArtNode:nth-of-type(9) {
    transform: translate(calc(-50% - 70px), calc(-50% - 190px));
}

.uniArtNode:nth-of-type(10) {
    transform: translate(calc(-50% + 110px), calc(-50% + 170px));
}

.uniArtNode:nth-of-type(11) {
    transform: translate(calc(-50% + 260px), calc(-50% - 95px));
}

.uniArtNode:nth-of-type(12) {
    transform: translate(calc(-50% + 350px), calc(-50% + 90px));
}

.uniArtNode:nth-of-type(13) {
    transform: translate(calc(-50% - 430px), calc(-50% + 36px));
}

.uniArtNode:nth-of-type(14) {
    transform: translate(calc(-50% + 450px), calc(-50% - 2px));
}

@keyframes uniArtRotate {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes uniArtSpinCentered {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.uniHeroInner {
    position: relative;
    z-index: 2;
}

.uniHeroGrid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    align-items: start;
    gap: clamp(44px, 7vw, 120px);
}

.uniHeroCopy {
    max-width: 980px;
    margin: 0 auto 68px;
    text-align: center;
}

.uniKicker,
.uniKickerDark {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.uniKicker {
    color: var(--uni-muted-soft);
}

.uniKickerDark {
    color: var(--uni-muted-soft);
}

.uniHero h1 {
    margin: 0;
    font-size: clamp(48px, 5.25vw, 86px);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.045em;
    word-spacing: 0.02em;
}

.uniHeadlineLine {
    display: block;
}

.uniHeroMessage {
    position: relative;
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 30px auto 0;
    padding: 24px 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
        rgba(255, 255, 255, 0.5);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(24px) saturate(1.18);
    -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.uniHeroMessage::before {
    content: "";
    position: absolute;
    inset: 1px 1px auto;
    height: 44%;
    border-radius: 13px 13px 999px 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent);
    pointer-events: none;
}

.uniHeroMessage > * {
    position: relative;
    z-index: 1;
}

.uniHeroMessage strong {
    color: var(--uni-text);
    font-size: clamp(24px, 2.7vw, 42px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.uniHeroMessage span {
    color: var(--uni-muted);
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(15px, 1.18vw, 18px);
    line-height: 1.62;
    font-weight: 620;
}

.uniHeroProductRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
    align-items: stretch;
    gap: clamp(24px, 4vw, 56px);
}

.uniHeroProductRow .uniBundleOffer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    margin: 0;
}

.uniBundleOffer {
    position: relative;
    max-width: 560px;
    margin: 40px 0 0;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46)),
        rgba(255, 255, 255, 0.52);
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24px) saturate(1.14);
    -webkit-backdrop-filter: blur(24px) saturate(1.14);
}

.uniBundleOffer::before {
    content: "";
    position: absolute;
    inset: 1px 1px auto;
    height: 34%;
    border-radius: 13px 13px 999px 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent);
    pointer-events: none;
}

.uniBundleOffer > * {
    position: relative;
    z-index: 1;
}

.uniHeroSide {
    display: contents;
}

.uniHeroSide .uniBundleOffer {
    max-width: none;
    margin-top: 0;
}

.uniBundleBadge {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.07);
    color: rgba(20, 20, 20, 0.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.uniBundlePrice {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
}

.uniBundlePrice strong {
    display: block;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.uniBundlePrice span {
    color: rgba(20, 20, 20, 0.42);
    font-size: 24px;
    font-weight: 650;
    text-decoration: line-through;
}

.uniBundleSave {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 18px;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(255, 68, 68, 0.1);
    color: #e83535;
    font-size: 14px;
    font-weight: 900;
}

.uniBundleSave.is-prelaunch {
    background: rgba(20, 20, 20, 0.07);
    color: rgba(20, 20, 20, 0.6);
}

.uniBundleBuy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin-top: 24px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.uniBundleBuy:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.uniBundleBuy.is-disabled {
    cursor: default;
    background: rgba(20, 20, 20, 0.18);
    color: rgba(255, 255, 255, 0.78);
}

.uniBundleBuy.is-disabled:hover {
    transform: none;
    background: rgba(20, 20, 20, 0.18);
}

.uniBundleOffer ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(20, 20, 20, 0.58);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 650;
    text-align: center;
}

.uniBundleOffer li {
    padding: 10px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.uniHeroActions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.uniHeroActions .btnWhite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.02em;
}

.uniHeroActions .btnWhite:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.btnGhostLight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 999px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.btnGhostLight:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.uniHeroVisual {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 650px;
    padding: clamp(18px, 2vw, 28px);
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.74), transparent 31%),
        radial-gradient(circle at 16% 78%, rgba(210, 216, 224, 0.3), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(249, 248, 244, 0.38)),
        rgba(255, 255, 255, 0.48);
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(26px) saturate(1.15);
    -webkit-backdrop-filter: blur(26px) saturate(1.15);
    isolation: isolate;
}

.uniHeroSide .uniHeroVisual {
    grid-column: 1 / -1;
    min-height: 430px;
    margin-top: 42px;
}

.uniHeroProductRow .uniHeroVisual {
    min-height: 520px;
}

.uniHeroVisual::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%);
    pointer-events: none;
    z-index: -1;
}

.uniGalleryStage {
    position: relative;
    min-height: 410px;
    perspective: 1100px;
}

.uniHeroSide .uniGalleryStage {
    min-height: 250px;
}

.uniHeroProductRow .uniGalleryStage {
    min-height: 330px;
}

.uniGalleryPanel {
    position: absolute;
    inset: 12px 54px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    opacity: 0;
    filter: blur(2px);
    transform: translateX(0) scale(0.68) rotateY(0deg);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
    pointer-events: none;
}

.uniGalleryPanel::before {
    content: "";
    position: absolute;
    inset: auto 12% 2% 12%;
    height: 22%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.32), transparent 70%);
    filter: blur(18px);
    opacity: 0.65;
}

.uniGalleryPanel.is-active {
    z-index: 5;
    opacity: 1;
    filter: none;
    transform: translateX(0) scale(1) rotateY(0deg);
}

.uniGalleryPanel.is-prev {
    z-index: 4;
    opacity: 0.45;
    filter: blur(0.35px);
    transform: translateX(-27%) scale(0.72) rotateY(11deg);
}

.uniGalleryPanel.is-next {
    z-index: 4;
    opacity: 0.45;
    filter: blur(0.35px);
    transform: translateX(27%) scale(0.72) rotateY(-11deg);
}

.uniGalleryPanel.is-prev-far {
    z-index: 2;
    opacity: 0.18;
    filter: blur(1.2px);
    transform: translateX(-53%) scale(0.58) rotateY(17deg);
}

.uniGalleryPanel.is-next-far {
    z-index: 2;
    opacity: 0.18;
    filter: blur(1.2px);
    transform: translateX(53%) scale(0.58) rotateY(-17deg);
}

.uniGalleryPanel img {
    position: relative;
    z-index: 1;
    width: min(58%, 275px);
    max-height: 430px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 32px 36px rgba(0, 0, 0, 0.42));
}

.uniHeroSide .uniGalleryPanel img {
    width: min(34%, 230px);
    max-height: 270px;
}

.uniHeroProductRow .uniGalleryPanel img {
    width: min(34%, 235px);
    max-height: 320px;
}

.uniGalleryNav {
    position: absolute;
    top: 50%;
    z-index: 8;
    min-width: 58px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(-50%);
}

.uniGalleryNav:hover {
    color: #fff;
    background: #111;
}

.uniGalleryNav:focus,
.uniGalleryRail button:focus,
.uniFilterBar button:focus {
    outline: none;
}

.uniGalleryNav:focus-visible,
.uniGalleryRail button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.52);
    outline-offset: 3px;
}

.uniFilterBar button:focus-visible {
    outline: 2px solid rgba(20, 20, 20, 0.34);
    outline-offset: 3px;
}

.uniGalleryPrev {
    left: 0;
}

.uniGalleryNext {
    right: 0;
}

.uniGalleryInfo {
    display: grid;
    gap: 6px;
    min-height: 92px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.uniHeroSide .uniGalleryInfo {
    display: none;
}

.uniHeroProductRow .uniGalleryInfo {
    min-height: auto;
    border-color: rgba(255, 255, 255, 0.56);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.36)),
        rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.uniHeroProductRow .uniGalleryInfo span,
.uniHeroProductRow .uniGalleryInfo p {
    color: var(--uni-muted-soft);
}

.uniHeroProductRow .uniGalleryInfo strong {
    color: var(--uni-text);
}

.uniGalleryInfo span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.uniGalleryInfo strong {
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.uniGalleryInfo p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.uniGalleryRail {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
}

.uniGalleryRail button {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    min-width: 0;
    min-height: 46px;
    padding: 5px 7px;
    border: 1px solid var(--uni-border);
    border-radius: 8px;
    color: rgba(20, 20, 20, 0.55);
    background: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.uniGalleryRail button:hover,
.uniGalleryRail button.active {
    color: #fff;
    border-color: #111;
    background: #111;
}

.uniGalleryRail button.active {
    transform: translateY(-1px);
}

.uniGalleryRail img {
    width: 24px;
    height: 34px;
    object-fit: contain;
}

.uniGalleryRail span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.uniStats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.uniStats div {
    min-height: 108px;
    padding: 22px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: var(--uni-card);
    box-shadow: var(--uni-shadow);
}

.uniStats strong,
.uniStats span {
    display: block;
}

.uniStats strong {
    margin-bottom: 8px;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1;
}

.uniStats span {
    color: var(--uni-muted-soft);
    font-size: 13px;
    font-weight: 700;
}

.uniCollectionVisuals {
    padding: 88px 0 104px;
    border-top: 1px solid var(--uni-border);
    background: var(--uni-bg);
}

.uniCollectionVisualsHead {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.52fr);
    gap: clamp(28px, 6vw, 88px);
    align-items: end;
    margin-bottom: 34px;
}

.uniCollectionVisualsIntro {
    display: grid;
    gap: 18px;
}

.uniCollectionVisualsIntro .uniKickerDark {
    margin: 0;
}

.uniCollectionVisualsHead h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.uniCollectionVisualsCopy {
    max-width: 420px;
    margin: 0 0 4px auto;
    color: var(--uni-muted);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 550;
}

.uniCollectionVisualGrid {
    display: grid;
    gap: 22px;
}

.uniCollectionVisualGrid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--uni-border);
    border-radius: 18px;
    background: #f5f4f6;
    box-shadow: var(--uni-shadow-lift);
}

.uniCollectionVisualGrid img {
    display: block;
    width: 100%;
    height: auto;
}

.uniCollectionVisualGrid figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.58);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.uniClosingVisual {
    padding: 0 0 118px;
    background: var(--uni-bg);
}

.uniClosingVisual figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--uni-border);
    border-radius: 18px;
    background: #f5f4f6;
    box-shadow: var(--uni-shadow-lift);
}

.uniClosingVisual img {
    display: block;
    width: 100%;
    height: auto;
}

.uniClosingVisual figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.58);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.uniStory,
.uniEngineering,
.uniProof,
.uniLineup,
.uniReviews,
.uniPricing,
.uniFaq {
    position: relative;
    padding: 118px 0;
}

.uniStory {
    background: var(--uni-bg);
}

.uniEngineering {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.13), transparent 28%),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #161614 0%, #0d0d0c 100%);
    color: #f6f4ed;
}

.uniProof {
    border-top: 1px solid var(--uni-border);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
        linear-gradient(180deg, #f4f3ef, #ebe9e2);
}

.uniLineup {
    border-top: 1px solid var(--uni-border);
    background: var(--uni-bg);
    scroll-margin-top: 24px;
}

.uniPricing {
    border-top: 1px solid var(--uni-border);
    background: var(--uni-bg);
    color: var(--uni-text);
    scroll-margin-top: 24px;
}

.uniFaq {
    border-top: 1px solid var(--uni-border);
    background:
        radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.92), transparent 34%),
        linear-gradient(180deg, #f4f3ef, #ebe9e2);
    color: var(--uni-text);
}

.uniFaq .uniSectionHead {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.uniSectionHead {
    max-width: 840px;
    margin-bottom: 54px;
}

.uniSectionHead h2,
.uniPricingCopy h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
    word-spacing: 0.015em;
}

.uniSectionHead p,
.uniPricingCopy p {
    margin: 24px 0 0;
    color: var(--uni-muted);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 550;
}

.uniPricingCopy p {
    color: var(--uni-muted);
}

.uniKickerLight {
    margin: 0 0 18px;
    color: rgba(246, 244, 237, 0.52);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.uniEngineeringIntro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(32px, 7vw, 110px);
    align-items: end;
    margin-bottom: 48px;
}

.uniEngineeringIntro h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 78px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.uniEngineeringIntro p {
    margin: 0 0 8px;
    color: rgba(246, 244, 237, 0.68);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 560;
}

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

.uniEngineeringGrid article {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

.uniEngineeringGrid span {
    display: block;
    margin-bottom: 42px;
    color: rgba(246, 244, 237, 0.42);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.uniEngineeringGrid h3 {
    margin: 0 0 14px;
    color: #fffdf8;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.uniEngineeringGrid p {
    margin: 0;
    color: rgba(246, 244, 237, 0.64);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 560;
}

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

.uniSweetSpotPanel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    margin: -18px 0 22px;
    padding: 38px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.92), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 242, 0.82));
    box-shadow: var(--uni-shadow);
}

.uniSweetSpotPanel span {
    display: block;
    margin-bottom: 18px;
    color: var(--uni-muted-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.uniSweetSpotPanel strong {
    display: block;
    max-width: 620px;
    color: var(--uni-text);
    font-size: clamp(30px, 4vw, 56px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.uniSweetSpotPanel p {
    margin: 0;
    color: var(--uni-muted);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 580;
}

.uniConceptGrid div {
    min-height: 270px;
    padding: 34px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: var(--uni-card);
    box-shadow: var(--uni-shadow);
}

.uniConceptGrid span {
    display: block;
    margin-bottom: 38px;
    color: var(--uni-muted-soft);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.uniConceptGrid h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.uniConceptGrid p {
    margin: 0;
    color: var(--uni-muted);
    line-height: 1.65;
    font-weight: 550;
}

.uniProofGrid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

.uniProofCopy h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.uniProofCopy > p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--uni-muted);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 550;
}

.uniProofPoints {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.uniProofPoints div {
    min-height: 140px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.38)),
        rgba(255, 255, 255, 0.48);
    box-shadow: var(--uni-shadow);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.uniProofPoints strong,
.uniProofPoints span {
    display: block;
}

.uniProofPoints strong {
    margin-bottom: 10px;
    color: var(--uni-text);
    font-size: 18px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.uniProofPoints span {
    color: var(--uni-muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 620;
}

.uniMacroDemo {
    position: relative;
    min-height: 560px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
        rgba(255, 255, 255, 0.46);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24px) saturate(1.16);
    -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.uniMacroDemo::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 14px;
    pointer-events: none;
}

.uniMacroHeader {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.uniMacroHeader span {
    color: var(--uni-muted-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.uniMacroHeader strong {
    color: var(--uni-text);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.uniPluginKnobMount {
    --uni-gain-light: #f4f3ef;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 330px);
    margin: 38px auto 34px;
    font-size: clamp(12px, 3.7vw, 16px);
}

.uniPluginKnobMount:focus {
    outline: none;
}

.uniPluginKnobMount:focus-visible {
    outline: 2px solid rgba(17, 17, 17, 0.34);
    outline-offset: 8px;
    border-radius: 18px;
}

.uniGainKnobContainer {
    position: relative;
    width: 15.75rem;
    height: 15.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uniGainBase {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow:
        inset 0 1rem 0.5rem rgba(0, 0, 0, 0.035),
        inset 0 4rem 1.5rem rgba(0, 0, 0, 0.035),
        0 -0.3em 0.3em rgba(0, 0, 0, 0.07),
        0 0.3em 0.3em rgba(255, 255, 255, 0.5);
}

.uniGainKnob {
    position: relative;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: var(--uni-gain-light);
    cursor: grab;
    z-index: 10;
    box-shadow:
        -0.45rem -0.45rem 1rem 0.2rem rgba(255, 255, 255, 0.72),
        0.6rem 0.6rem 1.2rem 0.2rem rgba(0, 0, 0, 0.13),
        inset 0.3rem 0.3rem 0.6rem rgba(255, 255, 255, 0.72),
        inset -0.3rem -0.3rem 0.6rem rgba(0, 0, 0, 0.13);
}

.uniPluginKnobMount.is-dragging .uniGainKnob {
    cursor: grabbing;
}

.uniGainTick {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 0.35rem;
    height: 1.8rem;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow:
        inset 0.08rem 0.08rem 0.1rem rgba(0, 0, 0, 0.24),
        inset -0.05rem -0.05rem 0.1rem rgba(255, 255, 255, 0.56);
}

.uniGainLedRing {
    position: absolute;
    width: 18.5rem;
    height: 18.5rem;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uniGainLedDot {
    position: absolute;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 32%, #e7e3d9 0 24%, #c9c4b8 58%, #aaa397 100%);
    opacity: 0.72;
    box-shadow:
        inset 1px 1px 1px rgba(70, 66, 58, 0.2),
        inset -1px -1px 1px rgba(255, 255, 255, 0.78),
        0 1px 2px rgba(92, 86, 74, 0.1);
    transition: all 0.08s ease;
}

.uniGainLedDot.active {
    opacity: 1;
    background: radial-gradient(circle at 38% 32%, #fff 0 28%, #f0f0ec 50%, #c8c7c1 100%);
    box-shadow:
        inset 0 0 1px rgba(255, 255, 255, 0.92),
        0 0 0.14rem 0.03rem rgba(255, 255, 255, 0.78),
        0 0 0.34rem 0.06rem rgba(130, 130, 124, 0.28);
}

.uniMacroRows {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.uniMacroRows div {
    --level: 50%;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.uniMacroRows span {
    color: rgba(20, 20, 20, 0.56);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.uniMacroRows i {
    position: relative;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.07);
}

.uniMacroRows i::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--level);
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.56), #111);
    transition: width 0.16s ease;
}

.uniMacroDemo > p {
    position: relative;
    z-index: 1;
    margin: 22px 0 0;
    color: var(--uni-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 620;
    text-align: center;
}

.uniDemoSection {
    margin-top: 106px;
}

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

.uniDemoCard {
    min-height: 360px;
    padding: 26px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: var(--uni-card);
    box-shadow: var(--uni-shadow);
}

.uniWaveform {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 86px;
    margin-bottom: 30px;
    padding: 0 4px;
}

.uniWaveform span {
    flex: 1;
    height: 36%;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.16);
}

.uniWaveform span:nth-child(2) {
    height: 68%;
}

.uniWaveform span:nth-child(3) {
    height: 46%;
}

.uniWaveform span:nth-child(4) {
    height: 82%;
}

.uniWaveform span:nth-child(5) {
    height: 56%;
}

.uniWaveform span:nth-child(6) {
    height: 28%;
}

.uniDemoCard > span {
    display: block;
    margin-bottom: 12px;
    color: var(--uni-muted-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.uniDemoCard h3 {
    margin: 0 0 14px;
    color: var(--uni-text);
    font-size: 28px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.uniDemoCard p {
    margin: 0 0 24px;
    color: var(--uni-muted);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 580;
}

.uniDemoCard button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: rgba(20, 20, 20, 0.52);
    background: rgba(0, 0, 0, 0.06);
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.uniFilterBar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 34px;
    padding: 10px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
}

.uniFilterBar button {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: rgba(20, 20, 20, 0.68);
    background: rgba(0, 0, 0, 0.055);
    font-size: 13px;
    font-weight: 850;
    border: 1px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.uniFilterBar button:hover,
.uniFilterBar button.active {
    color: #fff;
    background: #111;
}

.uniFilterBar button:hover {
    transform: translateY(-1px);
}

.uniFilterBar span {
    opacity: 0.58;
}

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

.uniPluginCard {
    display: flex;
    flex-direction: column;
    min-height: 680px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: var(--uni-card);
    overflow: hidden;
    box-shadow: var(--uni-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.uniPluginCard:hover {
    transform: translateY(-8px);
    border-color: var(--uni-border-strong);
    box-shadow: var(--uni-shadow-lift);
}

.uniPluginCard[hidden] {
    display: none;
}

.uniPluginMedia {
    padding: 24px 18px 18px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.06);
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.94), transparent 36%),
        linear-gradient(180deg, #fbfaf7, #fff);
}

.uniPluginVideo {
    display: block;
    width: min(100%, 245px);
    aspect-ratio: 444 / 720;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.4);
    object-fit: contain;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.uniVideoDisclaimer {
    margin: 12px auto 0;
    max-width: 270px;
    color: rgba(20, 20, 20, 0.38);
    font-size: 10.5px;
    line-height: 1.45;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.uniPluginBody {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.uniTag {
    display: block;
    margin-bottom: 12px;
    color: rgba(20, 20, 20, 0.45);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.uniPluginBody h3 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.uniPluginBody p {
    margin: 0 0 18px;
    color: var(--uni-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 560;
}

.uniPluginBody ul {
    margin: 0;
    padding: 0 0 0 17px;
    color: rgba(20, 20, 20, 0.76);
    font-size: 13px;
    line-height: 1.52;
}

.uniPluginBody li + li {
    margin-top: 7px;
}

.uniControls {
    margin-top: auto;
    padding-top: 20px;
    color: rgba(20, 20, 20, 0.42);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.uniPluginBody > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    margin-top: 16px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    color: #111;
    font-size: 13px;
    font-weight: 850;
}

.uniPluginBody > a:hover {
    color: #fff;
    background: #111;
}

.uniPluginFooter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

.uniPluginFooter .uniPluginAvailability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    color: rgba(20, 20, 20, 0.54);
    font-size: 13px;
    font-weight: 850;
}

.uniManualLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    color: #111;
    font-size: 13px;
    font-weight: 850;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.uniManualLink:hover,
.uniManualLink:focus-visible {
    border-color: #111;
    color: #fff;
    background: #111;
}

.uniReviews {
    padding: 118px 0;
    border-top: 1px solid var(--uni-border);
    background: var(--uni-bg);
}

.uniReviewHeader {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: clamp(30px, 7vw, 100px);
    align-items: end;
    margin-bottom: 46px;
}

.uniReviewHeader h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
    word-spacing: 0.015em;
}

.uniReviewHeader > p {
    margin: 0 0 8px;
    color: var(--uni-muted);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 550;
}

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

.uniReviewCard {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: var(--uni-card);
    box-shadow: var(--uni-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.uniReviewCard:hover {
    transform: translateY(-6px);
    border-color: var(--uni-border-strong);
    box-shadow: var(--uni-shadow-lift);
}

.uniReviewStars {
    margin-bottom: 24px;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.uniReviewCard h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.uniReviewCard p {
    margin: 0 0 24px;
    color: var(--uni-muted);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 550;
}

.uniReviewCard strong {
    display: block;
    margin-top: auto;
    color: #111;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.uniReviewCard span {
    display: block;
    margin-top: 6px;
    color: rgba(20, 20, 20, 0.42);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.uniPricingGrid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: clamp(34px, 7vw, 110px);
    align-items: start;
}

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

.uniPriceCard {
    padding: 30px;
    border: 1px solid var(--uni-border);
    border-radius: 14px;
    background: var(--uni-card);
    box-shadow: var(--uni-shadow);
}

.uniPriceCard.featured {
    border-color: var(--uni-border-strong);
    background: var(--uni-card-strong);
    color: var(--uni-text);
    box-shadow: var(--uni-shadow-lift);
}

.uniPriceCard span,
.uniPriceCard strong,
.uniPriceCard p {
    display: block;
}

.uniPriceCard span {
    margin-bottom: 18px;
    color: var(--uni-muted-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.uniPriceCard strong {
    margin-bottom: 18px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.uniPriceCard strong.uniLaunchPrice {
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 0.98;
}

.uniPriceCard del {
    display: block;
    margin: -8px 0 12px;
    color: rgba(20, 20, 20, 0.42);
    font-size: 22px;
    font-weight: 700;
}

.uniPriceCard em {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 68, 68, 0.1);
    color: #e83535;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.uniPriceCard em.uniPriceStatus {
    background: rgba(20, 20, 20, 0.07);
    color: rgba(20, 20, 20, 0.62);
}

.uniPriceCard p {
    margin: 0 0 26px;
    color: var(--uni-muted);
    line-height: 1.6;
}

.uniPriceCard a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: #111;
    font-size: 13px;
    font-weight: 850;
}

.uniPriceCard a:hover {
    color: #fff;
    background: #111;
    transform: translateY(-1px);
}

.uniPriceCard.featured a {
    color: #fff;
    background: #111;
}

.uniPriceCard.featured a:hover {
    background: #2a2a2a;
}

.uniPriceAvailability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    color: rgba(20, 20, 20, 0.54) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.3;
    text-align: center;
    text-transform: none !important;
}

.uniFaqList {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.uniFaqItem {
    border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.uniFaqItem summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    cursor: pointer;
    list-style: none;
    color: var(--uni-text);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 900;
    letter-spacing: -0.025em;
}

.uniFaqItem summary::-webkit-details-marker {
    display: none;
}

.uniFaqItem summary:focus {
    outline: none;
}

.uniFaqItem summary:focus-visible {
    outline: none;
}

.uniFaqItem summary:focus-visible span {
    text-decoration: underline;
    text-decoration-color: rgba(20, 20, 20, 0.24);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.uniFaqItem summary span {
    display: block;
}

.uniFaqItem summary i {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(20, 20, 20, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.06), inset -3px -3px 8px rgba(255, 255, 255, 0.86);
}

.uniFaqItem summary i::before,
.uniFaqItem summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: rgba(20, 20, 20, 0.72);
    transform: translate(-50%, -50%);
}

.uniFaqItem summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.2s ease;
}

.uniFaqItem[open] summary i::after {
    opacity: 0;
}

.uniFaqItem > div {
    max-width: 760px;
    padding: 0 58px 28px 0;
    color: var(--uni-muted);
    font-size: 16px;
    font-weight: 560;
    line-height: 1.75;
}

.uniFaqItem strong {
    color: var(--uni-text);
    font-weight: 850;
}

@media (max-width: 1200px) {
    .uniReviewGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 1024px) {
    .uniHero {
        padding-top: 112px;
    }

    .uniHeroGrid,
    .uniHeroSide,
    .uniHeroProductRow,
    .uniEngineeringIntro,
    .uniProofGrid,
    .uniReviewHeader,
    .uniCollectionVisualsHead,
    .uniPricingGrid {
        grid-template-columns: 1fr;
    }

    .uniHeroSide {
        display: grid;
        gap: 22px;
    }

    .uniHeroVisual {
        min-height: 590px;
    }

    .uniHeroProductRow .uniHeroVisual {
        min-height: 520px;
    }

    .uniHeroSide .uniHeroVisual {
        grid-column: auto;
        margin-top: 0;
        min-height: 520px;
    }

    .uniGalleryStage {
        min-height: 370px;
    }

    .uniGalleryPanel img {
        width: min(54%, 250px);
    }

    .uniHeroProductRow .uniGalleryPanel img {
        width: min(48%, 245px);
        max-height: 360px;
    }

    .uniHeroSide .uniGalleryPanel img {
        width: min(56%, 245px);
        max-height: 360px;
    }

    .uniStats,
    .uniSweetSpotPanel,
    .uniConceptGrid,
    .uniEngineeringGrid,
    .uniProofPoints,
    .uniPriceCards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 680px) {
    .uniHero {
        padding-top: 96px;
    }

    .uniHeroCopy {
        margin-bottom: 42px;
        text-align: left;
    }

    .uniHeroMessage {
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
    }

    .uniHeroMessage span {
        margin-left: 0;
        margin-right: 0;
    }

    .uniHeroActions {
        justify-content: flex-start;
    }

    .uniHero h1 {
        font-size: clamp(32px, 8.4vw, 40px);
    }

    .uniBundleOffer,
    .uniHeroProductRow,
    .uniStats,
    .uniSweetSpotPanel,
    .uniConceptGrid,
    .uniProofPoints,
    .uniDemoGrid,
    .uniPluginGrid,
    .uniReviewGrid,
    .uniPriceCards {
        grid-template-columns: 1fr;
    }

    .uniStory,
    .uniEngineering,
    .uniProof,
    .uniLineup,
    .uniReviews,
    .uniCollectionVisuals,
    .uniClosingVisual,
    .uniPricing,
    .uniFaq {
        padding: 82px 0;
    }

    .uniMacroDemo {
        min-height: auto;
        padding: 24px;
    }

    .uniMacroRows div {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 10px;
    }

    .uniProofPoints div {
        min-height: auto;
    }

    .uniEngineeringIntro {
        margin-bottom: 34px;
    }

    .uniEngineeringIntro p {
        font-size: 15px;
    }

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

    .uniEngineeringGrid article {
        min-height: auto;
        padding: 24px;
    }

    .uniEngineeringGrid span {
        margin-bottom: 24px;
    }

    .uniFilterBar {
        position: static;
        border-radius: 14px;
        width: 100%;
    }

    .uniFilterBar button {
        flex: 1 1 auto;
    }

    .uniHeroVisual {
        min-height: 560px;
        padding: 16px;
    }

    .uniHeroMediaArt {
        opacity: 0.6;
    }

    .uniHeroProductRow .uniHeroVisual {
        min-height: 500px;
    }

    .uniHeroSide .uniHeroVisual {
        min-height: 500px;
    }

    .uniGalleryStage {
        min-height: 310px;
    }

    .uniGalleryPanel {
        inset: 8px 34px 16px;
    }

    .uniGalleryPanel img {
        width: min(70%, 210px);
        max-height: 320px;
    }

    .uniHeroProductRow .uniGalleryPanel img {
        width: min(70%, 210px);
        max-height: 320px;
    }

    .uniHeroSide .uniGalleryPanel img {
        width: min(70%, 210px);
        max-height: 320px;
    }

    .uniGalleryPanel.is-prev {
        transform: translateX(-28%) scale(0.72) rotateY(10deg);
    }

    .uniGalleryPanel.is-next {
        transform: translateX(28%) scale(0.72) rotateY(-10deg);
    }

    .uniGalleryPanel.is-prev-far,
    .uniGalleryPanel.is-next-far {
        opacity: 0;
    }

    .uniGalleryNav {
        min-width: 46px;
        padding: 0 10px;
        font-size: 10px;
    }

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

    .uniGalleryRail button {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .uniGalleryRail span {
        display: none;
    }

    .uniPluginCard {
        min-height: auto;
    }

    .uniPluginMedia {
        padding: 18px 16px 15px;
    }

    .uniPluginVideo {
        width: min(100%, 260px);
    }

    .uniVideoDisclaimer {
        font-size: 10px;
    }

    .uniFaq .uniSectionHead {
        text-align: left;
    }

    .uniFaqItem summary {
        min-height: 76px;
        font-size: 18px;
    }

    .uniFaqItem > div {
        padding-right: 0;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .uniHeroMediaArt::after,
    .uniArtRingTwo {
        animation: none;
    }

    .uniGalleryPanel,
    .uniPluginCard,
    .uniReviewCard,
    .uniPriceCard a,
    .uniHeroActions .btnWhite,
    .btnGhostLight,
    .uniBundleBuy {
        transition-duration: 0.01ms;
    }
}
