/* =========================================================
   VENTACTIVE
   PRODUCT DETAILS / PRODUCT DNA
========================================================= */

.vcProductDetails {
    position: relative;
    padding:
        10px
        clamp(18px, 4vw, 70px)
        clamp(70px, 7vw, 110px);
}

.vcProductDetails::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -220px;
    top: 80px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(56, 143, 203, 0.08),
            transparent 70%
        );
    pointer-events: none;
}

.vcProductDetailsInner {
    position: relative;
    z-index: 2;
    width: min(1540px, 100%);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.vcProductDetailsHeader {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 28px;
}

.vcProductDetailsHeaderCopy {
    max-width: 800px;
}

.vcProductDetailsEyebrow {
    display: block;
    margin-bottom: 8px;
    color: #7e97aa;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vcProductDetailsHeader h2 {
    margin: 0;
    color: #123f68;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(36px, 4.4vw, 64px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.vcProductDetailsHeader h2 strong {
    display: block;
    color: #2a79ad;
    font-weight: 700;
}

.vcProductDetailsHeader p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #7d92a4;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SIGNAL
========================================================= */

.vcProductDetailsSignal {
    min-width: 155px;
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(22, 77, 124, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 12px 30px rgba(22, 65, 99, 0.06);
    backdrop-filter: blur(12px);
}

.vcProductDetailsSignal > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #35c89b;
    box-shadow:
        0 0 0 6px rgba(53, 200, 155, 0.1);
}

.vcProductDetailsSignal small {
    color: #54738d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.vcProductDetailsLayout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(390px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}


/* =========================================================
   PRODUCT STORY
========================================================= */

.vcProductStory {
    position: relative;
    min-width: 0;
    min-height: 650px;
    overflow: hidden;
    padding:
        clamp(26px, 3vw, 44px);
    border: 1px solid rgba(22, 77, 124, 0.08);
    border-radius:
        clamp(28px, 3vw, 42px);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 251, 253, 0.96)
        );
    box-shadow:
        0 28px 70px rgba(20, 63, 97, 0.08);
    isolation: isolate;
}


/* =========================================================
   STORY AMBIENT
========================================================= */

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

.vcProductStoryGlow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    bottom: -210px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(47, 144, 207, 0.09),
            transparent 70%
        );
}

.vcProductStoryGrid {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(40, 102, 149, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(40, 102, 149, 0.08) 1px,
            transparent 1px
        );
    background-size:
        42px 42px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 82%,
            transparent
        );
}


/* =========================================================
   STORY TOP
========================================================= */

.vcProductStoryTop {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom:
        1px solid
        rgba(22, 77, 124, 0.08);
}

.vcProductStoryIndex {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            #164d78,
            #2d7eb4
        );
    color: #ffffff;
    box-shadow:
        0 10px 24px rgba(22, 77, 124, 0.16);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.vcProductStoryTop > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductStoryTop > div > span {
    color: #8ca0b1;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.vcProductStoryTop strong {
    margin-top: 2px;
    color: #315675;
    font-size: 14px;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.vcProductStoryContent {
    padding:
        clamp(28px, 3vw, 44px)
        0;
}

.vcProductStoryText {
    max-width: 900px;
    color: #657e92;
    font-size:
        clamp(15px, 1.15vw, 17px);
    line-height: 1.85;
}

.vcProductStoryText > *:first-child {
    margin-top: 0;
}

.vcProductStoryText > *:last-child {
    margin-bottom: 0;
}

.vcProductStoryText p {
    margin:
        0 0 18px;
}

.vcProductStoryText h2,
.vcProductStoryText h3,
.vcProductStoryText h4 {
    margin:
        30px 0 12px;
    color: #173f63;
    font-family: "Inter", sans-serif;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.vcProductStoryText h2 {
    font-size: 30px;
}

.vcProductStoryText h3 {
    font-size: 24px;
}

.vcProductStoryText h4 {
    font-size: 19px;
}

.vcProductStoryText strong {
    color: #284f70;
}

.vcProductStoryText ul,
.vcProductStoryText ol {
    margin:
        18px 0;
    padding-left: 22px;
}

.vcProductStoryText li {
    margin-bottom: 9px;
}

.vcProductStoryText a {
    color: #2676aa;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.vcProductStoryText blockquote {
    position: relative;
    margin:
        26px 0;
    padding:
        20px 22px
        20px 25px;
    border-left:
        3px solid
        #2f82b8;
    border-radius:
        0 18px 18px 0;
    background:
        linear-gradient(
            90deg,
            rgba(44, 128, 184, 0.07),
            rgba(44, 128, 184, 0.015)
        );
    color: #436781;
}


/* =========================================================
   STORY EMPTY
========================================================= */

.vcProductStoryEmpty {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vcProductStoryEmpty > span {
    color: #5c8caf;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vcProductStoryEmpty h3 {
    max-width: 500px;
    margin:
        10px 0 0;
    color: #173f63;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(27px, 3vw, 40px);
    line-height: 1.05;
}

.vcProductStoryEmpty p {
    max-width: 520px;
    margin:
        12px 0 0;
    color: #8094a5;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   STORY FOOT
========================================================= */

.vcProductStoryFoot {
    position: absolute;
    left:
        clamp(26px, 3vw, 44px);
    right:
        clamp(26px, 3vw, 44px);
    bottom:
        clamp(24px, 2.5vw, 34px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 17px;
    border-top:
        1px solid
        rgba(22, 77, 124, 0.08);
}

.vcProductStoryFoot > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #899cab;
    font-size: 9px;
}

.vcProductStoryFoot i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31c596;
    box-shadow:
        0 0 0 5px rgba(49, 197, 150, 0.09);
}

.vcProductStoryFoot strong {
    color: #41647d;
}


/* =========================================================
   PRODUCT DNA
========================================================= */

.vcProductDNA {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding:
        clamp(24px, 2.7vw, 38px);
    border-radius:
        clamp(28px, 3vw, 42px);
    background:
        linear-gradient(
            145deg,
            #123f68 0%,
            #1c5a8a 50%,
            #267caf 100%
        );
    color: #ffffff;
    box-shadow:
        0 30px 72px
        rgba(15, 55, 88, 0.18);
    isolation: isolate;
}

.vcProductDNA::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -150px;
    top: -160px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(108, 223, 196, 0.19),
            transparent 68%
        );
    pointer-events: none;
}

.vcProductDNA::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );
    background-size:
        38px 38px;
}


/* =========================================================
   DNA HEADER
========================================================= */

.vcProductDNAHeader {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.vcProductDNAHeader > div {
    min-width: 0;
}

.vcProductDNAHeader span {
    display: block;
    color: rgba(255,255,255,0.57);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vcProductDNAHeader strong {
    display: block;
    max-width: 310px;
    margin-top: 4px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(20px, 2vw, 28px);
    line-height: 1.05;
}

.vcProductDNABadge {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid !important;
    place-items: center;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background:
        rgba(255, 255, 255, 0.08);
    color: #a9ead8 !important;
    backdrop-filter: blur(10px);
}

.vcProductDNABadge svg {
    width: 22px;
    height: 22px;
}


/* =========================================================
   DNA GRID
========================================================= */

.vcProductDNAGrid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.vcProductDNAItem {
    position: relative;
    min-width: 0;
    min-height: 125px;
    padding: 14px;
    overflow: hidden;
    border:
        1px solid
        rgba(255,255,255,0.1);
    border-radius: 19px;
    background:
        rgba(255,255,255,0.065);
    backdrop-filter: blur(10px);
    transition:
        transform 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease;
}

.vcProductDNAItem::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    bottom: -55px;
    border-radius: 50%;
    background:
        rgba(255,255,255,0.045);
    transition:
        transform 0.35s ease;
}

.vcProductDNAItem:hover {
    transform: translateY(-3px);
    border-color:
        rgba(255,255,255,0.18);
    background:
        rgba(255,255,255,0.095);
}

.vcProductDNAItem:hover::before {
    transform: scale(1.4);
}


/* =========================================================
   DNA ITEM TOP
========================================================= */

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

.vcProductDNAIcon {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background:
        rgba(255, 255, 255, 0.1);
    color: #a7e6d3;
}

.vcProductDNAIcon svg {
    width: 20px;
    height: 20px;
}

.vcProductDNAIndex {
    color: rgba(255,255,255,0.37);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
}


/* =========================================================
   DNA VALUE
========================================================= */

.vcProductDNAValue {
    margin-top: 17px;
}

.vcProductDNAValue > span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vcProductDNAValue strong {
    display: block;
    margin-top: 4px;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size:
        clamp(15px, 1.3vw, 19px);
    line-height: 1.15;
}

.vcProductDNAValue small {
    margin-left: 3px;
    color: rgba(255,255,255,0.55);
    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   DNA EMPTY
========================================================= */

.vcProductDNAEmpty {
    position: relative;
    z-index: 2;
    min-height: 170px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border:
        1px solid
        rgba(255,255,255,0.1);
    border-radius: 20px;
    background:
        rgba(255,255,255,0.06);
}

.vcProductDNAEmpty > span {
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background:
        rgba(255,255,255,0.09);
    color: #a9ead8;
}

.vcProductDNAEmpty svg {
    width: 22px;
    height: 22px;
}

.vcProductDNAEmpty > div {
    min-width: 0;
}

.vcProductDNAEmpty strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
}

.vcProductDNAEmpty small {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,0.58);
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   DIMENSIONS
========================================================= */

.vcProductDimensions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        110px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding: 16px;
    border:
        1px solid
        rgba(255,255,255,0.1);
    border-radius: 21px;
    background:
        rgba(5, 32, 54, 0.18);
    backdrop-filter: blur(10px);
}


/* =========================================================
   DIMENSION CUBE
========================================================= */

.vcProductDimensionsVisual {
    min-height: 110px;
    display: grid;
    place-items: center;
    perspective: 700px;
}

.vcProductDimensionCube {
    position: relative;
    width: 62px;
    height: 62px;
    display: block;
    transform:
        rotateX(-16deg)
        rotateY(34deg);
    transform-style: preserve-3d;
    animation:
        vcProductCubeFloat
        5s ease-in-out
        infinite;
}

.vcProductDimensionFace {
    position: absolute;
    width: 62px;
    height: 62px;
    border:
        1px solid
        rgba(174, 234, 218, 0.35);
    background:
        linear-gradient(
            145deg,
            rgba(174, 234, 218, 0.16),
            rgba(255,255,255,0.04)
        );
    box-shadow:
        inset 0 0 20px
        rgba(173, 230, 216, 0.05);
}

.vcProductDimensionFaceFront {
    transform:
        translateZ(31px);
}

.vcProductDimensionFaceSide {
    transform:
        rotateY(90deg)
        translateZ(31px);
}

.vcProductDimensionFaceTop {
    transform:
        rotateX(90deg)
        translateZ(31px);
}

@keyframes vcProductCubeFloat {

    0%,
    100% {
        transform:
            rotateX(-16deg)
            rotateY(34deg)
            translateY(0);
    }

    50% {
        transform:
            rotateX(-13deg)
            rotateY(40deg)
            translateY(-5px);
    }

}


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

.vcProductDimensionsCopy {
    min-width: 0;
}

.vcProductDimensionsCopy > span {
    color: rgba(255,255,255,0.5);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcProductDimensionsCopy > strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size:
        clamp(20px, 2vw, 27px);
    line-height: 1.05;
}

.vcProductDimensionsCopy > strong small {
    color: rgba(255,255,255,0.48);
    font-size: 9px;
}

.vcProductDimensionsCopy p {
    max-width: 290px;
    margin:
        7px 0 0;
    color: rgba(255,255,255,0.55);
    font-size: 8.5px;
    line-height: 1.5;
}


/* =========================================================
   DNA FOOT
========================================================= */

.vcProductDNAFoot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 15px;
    border-top:
        1px solid
        rgba(255,255,255,0.1);
}

.vcProductDNAFoot > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.47);
    font-size: 8px;
}

.vcProductDNAFoot i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6de0bd;
    box-shadow:
        0 0 0 5px
        rgba(109, 224, 189, 0.1);
}


/* =========================================================
   RESPONSIVE 1200
========================================================= */

@media (max-width: 1200px) {

    .vcProductDetailsLayout {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(360px, 0.85fr);
    }

    .vcProductStory {
        min-height: 620px;
    }

}


/* =========================================================
   RESPONSIVE 1000
========================================================= */

@media (max-width: 1000px) {

    .vcProductDetails {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .vcProductStory {
        min-height: auto;
        padding-bottom: 90px;
    }

    .vcProductDNA {
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.75fr);
        column-gap: 20px;
    }

    .vcProductDNAHeader,
    .vcProductDNAGrid,
    .vcProductDNAEmpty {
        grid-column: 1;
    }

    .vcProductDimensions {
        grid-column: 2;
        grid-row: 1 / span 3;
        margin-top: 0;
        align-self: stretch;
        grid-template-columns: 1fr;
        align-content: center;
        text-align: center;
    }

    .vcProductDimensionsCopy p {
        margin-left: auto;
        margin-right: auto;
    }

    .vcProductDNAFoot {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE 760
========================================================= */

@media (max-width: 760px) {

    .vcProductDetails {
        padding:
            6px 12px
            55px;
    }

    .vcProductDetailsHeader {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vcProductDetailsHeader h2 {
        font-size: 36px;
    }

    .vcProductDetailsHeader p {
        font-size: 13px;
    }

    .vcProductDetailsSignal {
        width: fit-content;
        min-width: 0;
    }

    .vcProductStory,
    .vcProductDNA {
        border-radius: 27px;
    }

    .vcProductStory {
        padding: 22px 18px 85px;
    }

    .vcProductStoryText {
        font-size: 14px;
        line-height: 1.75;
    }

    .vcProductStoryFoot {
        left: 18px;
        right: 18px;
        bottom: 22px;
    }

    .vcProductDNA {
        display: block;
        padding: 22px 18px;
    }

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

    .vcProductDimensions {
        margin-top: 10px;
        grid-template-columns:
            100px minmax(0, 1fr);
        text-align: left;
    }

    .vcProductDimensionsCopy p {
        margin-left: 0;
        margin-right: 0;
    }

}


/* =========================================================
   RESPONSIVE 480
========================================================= */

@media (max-width: 480px) {

    .vcProductDetails {
        padding-left: 8px;
        padding-right: 8px;
    }

    .vcProductDetailsHeader {
        padding-left: 8px;
        padding-right: 8px;
    }

    .vcProductDetailsHeader h2 {
        font-size: 32px;
    }

    .vcProductStory {
        padding:
            20px 15px
            90px;
        border-radius: 24px;
    }

    .vcProductStoryIndex {
        width: 43px;
        height: 43px;
    }

    .vcProductStoryTop strong {
        font-size: 12px;
    }

    .vcProductStoryText {
        font-size: 13.5px;
    }

    .vcProductStoryText h2 {
        font-size: 25px;
    }

    .vcProductStoryText h3 {
        font-size: 21px;
    }

    .vcProductStoryFoot {
        left: 15px;
        right: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .vcProductDNA {
        padding:
            20px 15px;
        border-radius: 24px;
    }

    .vcProductDNAHeader strong {
        font-size: 22px;
    }

    .vcProductDNAGrid {
        gap: 7px;
    }

    .vcProductDNAItem {
        min-height: 116px;
        padding: 12px;
        border-radius: 16px;
    }

    .vcProductDNAIcon {
        width: 35px;
        height: 35px;
        border-radius: 11px;
    }

    .vcProductDNAValue strong {
        font-size: 15px;
    }

    .vcProductDimensions {
        grid-template-columns:
            85px minmax(0, 1fr);
        padding: 13px;
    }

    .vcProductDimensionsVisual {
        min-height: 90px;
        transform: scale(0.8);
    }

    .vcProductDimensionsCopy > strong {
        font-size: 18px;
    }

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

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    .vcProductDimensionCube {
        animation: none;
    }

    .vcProductDNAItem,
    .vcProductStory * {
        transition: none !important;
    }

}