/* // PRELOADER___________________________________ */


.vs-preloader {
    position: fixed;
    inset: 0;
    z-index: var(--z-cursor);
    background-color: #ffffff;
    /* Pure white for maximum logo contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s var(--ease-expo), visibility 0.8s var(--ease-expo);
}

/* Preloader Exit State */
.vs-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.vs-preloader__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    transform: translateY(0);
    transition: transform 1s var(--ease-expo);
}

/* Logo Wrapper & Entrance */
.vs-preloader__logo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    animation: vsLogoEnter 1.2s var(--ease-expo) 0.2s forwards;
}

.vs-preloader__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /* Soft, natural drop shadow for light mode */
    filter: drop-shadow(0 12px 30px rgba(27, 67, 50, 0.12));
}

/* Subtle Warm Glow Behind Logo */
.vs-preloader__logo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(201, 165, 90, 0.10) 0%, transparent 70%);
    opacity: 0;
    filter: blur(40px);
    z-index: 1;
    animation: vsGlowPulse 3s var(--ease-smooth) 0.8s infinite;
}

/* Elegant Progress Line */
.vs-preloader__progress {
    width: 100px;
    height: 1px;
    background: var(--vs-border);
    /* Uses root border color for subtle track */
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: vsFadeIn 0.6s var(--ease-out) 0.6s forwards;
}

.vs-preloader__progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    /* Gold to Forest Green gradient */
    background: linear-gradient(90deg, var(--vs-gold-bright), var(--vs-forest));
    animation: vsLoadLine 2.5s var(--ease-smooth) 0.8s forwards;
}

/* VITALIS Text Spelling */
.vs-preloader__text {
    position: relative;
    display: flex;
    gap: 4px;
    font-family: var(--font-display);
    /* Cormorant Garamond */
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5em;
    color: var(--vs-forest);
    /* Deep brand green for high contrast */
    text-transform: uppercase;
    margin-left: 0.5em;
    /* Offset for letter-spacing */
    opacity: 0;
    animation: vsFadeIn 0.6s var(--ease-out) 1s forwards;
}

/* Add a subtle "SIGMA" subtitle using CSS pseudo-element to match the logo */
.vs-preloader__text::after {
    content: "SIGMA";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    /* Inter */
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--vs-gold-bright);
    /* Gold accent */
    margin-left: 0.4em;
    opacity: 0;
    animation: vsFadeIn 0.6s var(--ease-out) 1.8s forwards;
}

.vs-preloader__text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    animation: vsLetterReveal 0.6s var(--ease-out) forwards;
}

.vs-preloader__text-v {
    animation-delay: 1.1s;
}

.vs-preloader__text-i {
    animation-delay: 1.2s;
}

.vs-preloader__text-t {
    animation-delay: 1.3s;
}

.vs-preloader__text-a {
    animation-delay: 1.4s;
}

.vs-preloader__text-l {
    animation-delay: 1.5s;
}

.vs-preloader__text-i2 {
    animation-delay: 1.6s;
}

.vs-preloader__text-s {
    animation-delay: 1.7s;
}

/* Exit Animation (Triggered by JS) */
.vs-preloader.is-exiting .vs-preloader__logo-wrap {
    animation: vsLogoExit 1s var(--ease-expo) forwards;
}

.vs-preloader.is-exiting .vs-preloader__content {
    transform: translateY(-40px);
}

/* Keyframes */
@keyframes vsLogoEnter {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes vsGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes vsFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes vsLoadLine {
    0% {
        width: 0%;
    }

    40% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

@keyframes vsLetterReveal {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vsLogoExit {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
        filter: blur(8px);
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .vs-preloader__logo-wrap {
        width: 100px;
        height: 100px;
    }

    .vs-preloader__progress {
        width: 80px;
    }

    .vs-preloader__text {
        font-size: 12px;
        letter-spacing: 0.4em;
        margin-left: 0.4em;
    }

    .vs-preloader__text::after {
        font-size: 8px;
        letter-spacing: 0.3em;
        bottom: -14px;
    }
}




       /* ============================================================ LANDING */
        /* ==========================================================
   HOME SECTION — LANDING
   Fully scoped. No collision with previous sections.
   Prefix: hsld- (Home Section Landing)
========================================================== */

        .home-section-landing {
            --hsld-ivory: #F1EDE3;
            --hsld-cream: #F8F5EC;
            --hsld-card: rgba(248, 245, 236, 0.78);
            --hsld-deep: #103522;
            --hsld-green: #1B4332;
            --hsld-rich: #0C2F1F;
            --hsld-sage: #8FBC8F;
            --hsld-muted: #66776C;
            --hsld-gold: #B89968;
            --hsld-charcoal: #202820;
            --hsld-white: #FFFDF6;

            position: relative;
            min-height: 100svh;
            overflow: hidden;
            isolation: isolate;
            background: var(--hsld-ivory);
            color: var(--hsld-charcoal);
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .home-section-landing,
        .home-section-landing * {
            box-sizing: border-box;
        }

        /* ----------------------------------------------------------
   Right-side video field
---------------------------------------------------------- */

        .home-section-landing__media {
            position: absolute;
            inset: 0 0 0 auto;
            width: 66.5%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            background: #dce2d6;
        }

        .home-section-landing__video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 58% center;
            display: block;
            transform: scale(1.05);
            filter: saturate(1.04) contrast(1.02);
            will-change: transform;
        }

        .home-section-landing__media::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(90deg, rgba(241, 237, 227, 0.96) 0%, rgba(241, 237, 227, 0.78) 14%, rgba(241, 237, 227, 0.20) 35%, rgba(16, 53, 34, 0.06) 62%, rgba(16, 53, 34, 0.05) 100%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(8, 39, 24, 0.10) 55%, rgba(4, 32, 20, 0.72) 100%);
            pointer-events: none;
        }

        .home-section-landing__ambient {
            position: absolute;
            inset: auto 0 0 0;
            height: 28%;
            z-index: 1;
            pointer-events: none;
            background:
                radial-gradient(700px 240px at 58% 0%, rgba(20, 69, 43, 0.16), transparent 72%),
                linear-gradient(180deg, transparent, rgba(7, 43, 27, 0.78));
        }

        /* ----------------------------------------------------------
   Navigation
---------------------------------------------------------- */

        .home-section-landing__nav {
            position: relative;
            z-index: 8;
            height: clamp(86px, 7vw, 118px);
            display: grid;
            grid-template-columns: 260px 1fr auto;
            align-items: center;
            gap: 30px;
            padding: 0 clamp(28px, 4vw, 76px);
        }

        .home-section-landing__brand {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            color: var(--hsld-deep);
            text-decoration: none;
        }

        .home-section-landing__brand-mark {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            color: var(--hsld-deep);
        }

        .home-section-landing__brand-mark svg {
            width: 100%;
            height: 100%;
        }

        .home-section-landing__brand-mark path {
            fill: none;
            stroke: currentColor;
            stroke-width: 4.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .home-section-landing__brand-copy {
            display: grid;
            gap: 4px;
        }

        .home-section-landing__brand-copy strong {
            font-family: "Fraunces", Georgia, serif;
            font-size: 19px;
            line-height: 1;
            font-weight: 500;
            letter-spacing: 0.105em;
        }

        .home-section-landing__brand-copy small {
            font-size: 9px;
            line-height: 1;
            letter-spacing: 0.47em;
            font-weight: 700;
        }

        .home-section-landing__menu {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(28px, 3vw, 56px);
        }

        .home-section-landing__menu a {
            color: #111A14;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.01em;
            display: inline-flex;
            gap: 4px;
            align-items: center;
            transition: color 0.28s ease, transform 0.28s ease;
        }

        .home-section-landing__menu a:hover {
            color: var(--hsld-deep);
            transform: translateY(-2px);
        }

        .home-section-landing__contact {
            min-width: 170px;
            height: 58px;
            padding: 0 28px;
            border: 1.4px solid rgba(16, 53, 34, 0.92);
            border-radius: 999px;
            color: var(--hsld-deep);
            text-decoration: none;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            font-size: 15px;
            font-weight: 700;
            background: rgba(248, 245, 236, 0.22);
            backdrop-filter: blur(8px);
            transition: background 0.32s ease, transform 0.32s ease;
        }

        .home-section-landing__contact:hover {
            background: rgba(248, 245, 236, 0.68);
            transform: translateY(-2px);
        }

        .home-section-landing__contact svg,
        .home-section-landing__button svg {
            width: 20px;
            height: 20px;
        }

        .home-section-landing__contact path,
        .home-section-landing__button path {
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ----------------------------------------------------------
   Hero inner
---------------------------------------------------------- */

        .home-section-landing__inner {
            position: relative;
            z-index: 3;
            min-height: calc(100svh - clamp(86px, 7vw, 118px));
            padding: clamp(6%, 6vw, 46px) clamp(28px, 2vw, 76px) clamp(37px, 4vw, 50px);
        }

        /* ----------------------------------------------------------
   Overlay card - SMALLER AND MORE TO LEFT
---------------------------------------------------------- */

        .home-section-landing__card {
            position: relative;
            z-index: 5;
            /* Reduced width from min(48.4vw, 780px) to min(40vw, 650px) */
            width: min(40vw);
            /* Reduced min-height from clamp(650px, 64vh, 780px) to clamp(560px, 58vh, 720px) */
            min-height: clamp(560px, 58vh, 720px);
            /* Shifted left by 30px */
            transform: translateX(-30px);
            padding: clamp(40px, 3vw, 72px) clamp(42px, 3vw, 72px);
            border-radius: 18px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(248, 245, 236, 0.60)),
                var(--hsld-card);
            border: 1px solid rgba(255, 255, 255, 0.74);
            box-shadow:
                0 34px 80px rgba(27, 67, 50, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(18px);
            overflow: hidden;
        }

        .home-section-landing__card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(360px 300px at 12% 10%, rgba(255, 255, 255, 0.55), transparent 70%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
            pointer-events: none;
        }

        .home-section-landing__eyebrow,
        .home-section-landing__headline,
        .home-section-landing__short-line,
        .home-section-landing__subhead,
        .home-section-landing__copy,
        .home-section-landing__actions,
        .home-section-landing__proofs {
            position: relative;
            z-index: 2;
        }

        .home-section-landing__eyebrow {
            margin: 0 0 clamp(36px, 1vw, 50px);
            color: #6C9B63;
            font-size: clamp(11px, 0.9vw, 14px);
            letter-spacing: 0.26em;
            font-weight: 800;
        }

        .home-section-landing__headline {
            margin: 0;
            font-family: "Fraunces", Georgia, serif;
            color: var(--hsld-deep);
            font-size: clamp(46px, 3vw, 72px);
            letter-spacing: -0.052em;
            font-weight: 500;
        }

        .home-section-landing__headline-line {
            display: block;
            overflow: hidden;
        }

        .home-section-landing__headline-line span {
            display: inline-block;
            will-change: transform;
        }

        .home-section-landing__short-line {
            display: block;
            width: 100px;
            height: 1px;
            background: #6C9B63;
            margin: clamp(25px, 1vw, 38px) 0 clamp(26px, 1vw, 40px);
            transform-origin: left center;
        }

        .home-section-landing__subhead {
            margin: 0 0 22px;
            color: #22352A;
            font-size: clamp(22px, 1.9vw, 29px);
            line-height: 1.25;
            font-weight: 500;
            letter-spacing: -0.035em;
        }

        .home-section-landing__copy {
            max-width: 530px;
            margin: 0;
            color: #4C554F;
            font-size: clamp(16px, 1.22vw, 19px);
            line-height: 1.64;
        }

        .home-section-landing__actions {
            display: flex;
            align-items: center;
            gap: clamp(22px, 2vw, 34px);
            margin: clamp(42px, 1vw, 60px) 0 clamp(56px, 1vw, 78px);
        }

        .home-section-landing__button {
            height: 58px;
            min-width: 212px;
            padding: 0 28px;
            border-radius: 999px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            font-size: 15px;
            font-weight: 800;
            transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
        }

        .home-section-landing__button--primary {
            color: var(--hsld-white);
            background: linear-gradient(135deg, #0E3D22, #06401F);
            box-shadow: 0 16px 30px rgba(13, 55, 30, 0.20);
        }

        .home-section-landing__button--secondary {
            color: var(--hsld-deep);
            background: rgba(255, 255, 255, 0.12);
            border: 1.2px solid rgba(16, 53, 34, 0.82);
        }

        .home-section-landing__button:hover {
            transform: translateY(-3px);
        }

        .home-section-landing__proofs {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .home-section-landing__proofs li {
            position: relative;
            display: flex;
            align-items: center;
            gap: 15px;
            padding-right: 18px;
            color: #36433B;
            font-size: 14px;
            line-height: 1.2;
            font-weight: 500;
        }

        .home-section-landing__proofs li:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 14px;
            top: 6px;
            bottom: 6px;
            width: 1px;
            background: rgba(27, 67, 50, 0.18);
        }

        .home-section-landing__proof-icon {
            width: 36px;
            height: 36px;
            flex: 0 0 36px;
            display: grid;
            place-items: center;
            color: var(--hsld-deep);
        }

        .home-section-landing__proof-icon svg {
            width: 100%;
            height: 100%;
        }

        .home-section-landing__proof-icon path,
        .home-section-landing__proof-icon circle {
            fill: none;
            stroke: currentColor;
            stroke-width: 1.35;
            stroke-linecap: round;
            stroke-linejoin: round;
            vector-effect: non-scaling-stroke;
        }

        /* ----------------------------------------------------------
   Right caption + video control
---------------------------------------------------------- */

        .home-section-landing__video-caption {
            position: absolute;
            left: 54.5%;
            bottom: clamp(118px, 13vh, 170px);
            z-index: 6;
            color: rgba(255, 255, 246, 0.96);
        }

        .home-section-landing__video-caption p {
            margin: 0 0 22px;
            font-family: "Fraunces", Georgia, serif;
            font-size: clamp(21px, 1.7vw, 29px);
            line-height: 1.23;
            font-weight: 400;
            letter-spacing: -0.025em;
        }

        .home-section-landing__video-caption span {
            display: block;
            width: 88px;
            height: 1.4px;
            background: #80A86F;
            transform-origin: left center;
        }

        .home-section-landing__video-control {
            position: absolute;
            right: clamp(54px, 6vw, 105px);
            bottom: clamp(112px, 12vh, 164px);
            z-index: 7;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            border: 0;
            background: transparent;
            color: #FFFFFF;
            cursor: pointer;
            font: inherit;
            padding: 0;
        }

        .home-section-landing__pause-icon {
            width: 58px;
            height: 58px;
            border: 1.4px solid rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, background 0.3s ease;
            display: flex;
            justify-content: center;
            place-items: center;
            font-size: 1.3rem;
        }

        .home-section-landing__pause-icon span {
            display: block;
            width: 3px;
            height: 15px;
            background: currentColor;
            border-radius: 2px;
        }

        .home-section-landing__video-control strong {
            font-size: 15px;
            font-weight: 700;
        }

        .home-section-landing__video-control:hover .home-section-landing__pause-icon {
            transform: scale(1.06);
            background: rgba(255, 255, 255, 0.12);
        }

        /* ----------------------------------------------------------
   Scroll indicator
---------------------------------------------------------- */

        .home-section-landing__scroll {
            position: absolute;
            left: 50%;
            bottom: 18px;
            z-index: 7;
            transform: translateX(-50%);
            display: grid;
            justify-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.90);
        }

        .home-section-landing__mouse {
            width: 30px;
            height: 48px;
            border-radius: 999px;
            border: 1.3px solid rgba(255, 255, 255, 0.88);
            display: flex;
            justify-content: center;
            padding-top: 9px;
        }

        .home-section-landing__mouse span {
            width: 3px;
            height: 10px;
            border-radius: 3px;
            background: currentColor;
            animation: hsldMouseWheel 1.8s ease-in-out infinite;
        }

        .home-section-landing__scroll small {
            font-size: 12px;
        }

        .home-section-landing__scroll i {
            display: block;
            width: 1px;
            height: 44px;
            background: rgba(255, 255, 255, 0.62);
        }

        @keyframes hsldMouseWheel {

            0%,
            100% {
                transform: translateY(0);
                opacity: 0.5;
            }

            50% {
                transform: translateY(8px);
                opacity: 1;
            }
        }

        /* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

        @media (max-width: 1180px) {
            .home-section-landing__nav {
                grid-template-columns: 230px 1fr auto;
            }

            .home-section-landing__menu {
                gap: 24px;
            }

            .home-section-landing__card {
                width: min(56vw, 720px);
                /* Reset left shift on smaller screens */
                transform: translateX(0);
            }

            .home-section-landing__media {
                width: 70%;
            }

            .home-section-landing__proofs {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px 0;
            }

            .home-section-landing__proofs li:nth-child(2)::after {
                display: none;
            }
        }

        @media (max-width: 920px) {
            .home-section-landing {
                min-height: auto;
            }

            .home-section-landing__media {
                position: absolute;
                inset: 0;
                width: 100%;
            }

            .home-section-landing__media::before {
                background:
                    linear-gradient(180deg, rgba(241, 237, 227, 0.92) 0%, rgba(241, 237, 227, 0.72) 38%, rgba(8, 39, 24, 0.78) 100%);
            }

            .home-section-landing__nav {
                grid-template-columns: 1fr auto;
                height: 92px;
                padding: 0 22px;
            }

            .home-section-landing__menu {
                display: none;
            }

            .home-section-landing__brand-copy strong {
                font-size: 16px;
            }

            .home-section-landing__brand-copy small {
                font-size: 8px;
            }

            .home-section-landing__contact {
                min-width: 140px;
                height: 50px;
                padding: 0 20px;
            }

            .home-section-landing__inner {
                padding: 15% 20% 0 0;
                margin-left: 2%;
            }

            .home-section-landing__card {
                width: 100%;
                min-height: auto;
                padding: 42px 28px;
                /* Reset transform on mobile */
                transform: translateX(0);
            }

            .home-section-landing__video-caption {
                left: 32px;
                bottom: 140px;
            }

            .home-section-landing__video-control {
                right: 32px;
                bottom: 178px;
            }

            .home-section-landing__scroll {
                bottom: 22px;
            }
        }

        @media (max-width: 640px) {
            .home-section-landing__brand-mark {
                width: 42px;
                height: 42px;
            }

            .home-section-landing__contact {
                min-width: 48px;
                width: 48px;
                padding: 0;
            }

            .home-section-landing__contact span {
                display: none;
            }

            .home-section-landing__inner {
                min-height: 1050px;
                padding: 100px 16px 88px;
            }

            .home-section-landing__card {
                padding: 34px 22px;
                border-radius: 18px;
                transform: translateX(0);
            }

            .home-section-landing__eyebrow {
                font-size: 10px;
                margin-bottom: 28px;
                display: none;
                visibility: hidden;
            }

            .home-section-landing__headline {
                font-size: clamp(30px, 10vw, 58px);
            }

            .home-section-landing__subhead {
                font-size: 21px;
            }

            .home-section-landing__copy {
                font-size: 15px;
            }

            .home-section-landing__actions {
                flex-direction: column;
                align-items: stretch;
                margin: 34px 0 42px;
            }

            .home-section-landing__button {
                width: 100%;
            }

            .home-section-landing__proofs {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }

            .home-section-landing__proofs li::after {
                display: none !important;
            }

            .home-section-landing__video-caption {
                left: 22px;
                right: 22px;
                bottom: 140px;
            }

            .home-section-landing__video-control {
                right: 22px;
                bottom: 112px;
            }

            .home-section-landing__video-control strong {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .home-section-landing *,
            .home-section-landing *::before,
            .home-section-landing *::after {
                animation: none !important;
                transition: none !important;
            }


        }







/* ================================================================================== Products */

/* ==========================================================
   HOME SECTION — PRODUCT
   Fully scoped. No collision with previous sections.
========================================================== */

.home-section-product {
    --hsp-bg: #071B12;
    --hsp-bg-2: #0D2B1A;
    --hsp-card: rgba(255, 255, 255, 0.045);
    --hsp-deep: #081B12;
    --hsp-cream: #F8F5EC;
    --hsp-white: #FFFDF6;
    --hsp-sage: #A7B96A;
    --hsp-muted-sage: #6F8B5A;
    --hsp-gold: #B89968;
    --hsp-border: rgba(167, 185, 106, 0.40);
    --hsp-border-strong: rgba(167, 185, 106, 0.62);
    --hsp-text-soft: rgba(248, 245, 236, 0.78);
    --hsp-shadow: rgba(0, 0, 0, 0.36);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(1000px 600px at 22% 5%, rgba(65, 110, 62, 0.22), transparent 70%),
        radial-gradient(900px 580px at 82% 38%, rgba(85, 108, 45, 0.16), transparent 72%),
        linear-gradient(180deg, #06170F 0%, var(--hsp-bg) 52%, #06160F 100%);
    color: var(--hsp-white);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: clamp(72px, 6vw, 110px) clamp(22px, 5vw, 108px) clamp(76px, 6vw, 108px);
}

.home-section-product,
.home-section-product * {
    box-sizing: border-box;
}

.home-section-product::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    background-image:
        radial-gradient(rgba(248, 245, 236, 0.10) 0.55px, transparent 0.75px),
        radial-gradient(rgba(167, 185, 106, 0.12) 0.45px, transparent 0.7px);
    background-size: 24px 24px, 36px 36px;
    background-position: 0 0, 13px 17px;
    mix-blend-mode: screen;
}

.home-section-product__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-section-product__glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(58px);
    opacity: 0.17;
}

.home-section-product__glow--top {
    left: 4%;
    top: -220px;
    background: #7D9D54;
}

.home-section-product__glow--bottom {
    right: 8%;
    bottom: -240px;
    background: #B89968;
}

.home-section-product__molecule {
    position: absolute;
    top: 92px;
    right: 8%;
    width: 190px;
    color: rgba(248, 245, 236, 0.075);
}

.home-section-product__molecule path,
.home-section-product__molecule circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.home-section-product__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1680px);
    margin: 0 auto;
}

/* ----------------------------------------------------------
   Header
---------------------------------------------------------- */

.home-section-product__header {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.58fr);
    gap: clamp(40px, 7vw, 120px);
    align-items: end;
    margin-bottom: clamp(48px, 5vw, 74px);
}

.home-section-product__eyebrow {
    margin: 0 0 clamp(28px, 2.8vw, 42px);
    color: var(--hsp-sage);
    font-size: clamp(12px, 0.95vw, 16px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.home-section-product__headline {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    color: var(--hsp-white);
    font-size: clamp(48px, 5.15vw, 86px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.home-section-product__headline-line {
    display: block;
    overflow: hidden;
}

.home-section-product__headline-line span {
    display: inline-block;
    will-change: transform;
}

.home-section-product__intro {
    max-width: 520px;
    margin: 0 0 16px;
    color: var(--hsp-text-soft);
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.48;
    letter-spacing: -0.018em;
}

/* ----------------------------------------------------------
   Cards
---------------------------------------------------------- */

.home-section-product__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2vw, 28px);
}

.home-section-product__card {
    position: relative;
    min-height: clamp(480px, 39vw, 590px);
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--hsp-card);
    border: 1px solid var(--hsp-border);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    will-change: transform, opacity;
    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.home-section-product__card:hover {
    transform: translateY(-8px);
    border-color: var(--hsp-border-strong);
    box-shadow:
        0 40px 88px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.home-section-product__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.92;
    transform: scale(1.065);
    will-change: transform;
    transition: transform 1.15s cubic-bezier(.2, .8, .2, 1), opacity 0.4s ease;
}

.home-section-product__card:hover .home-section-product__card-image {
    transform: scale(1.105);
}

.home-section-product__card--pharma .home-section-product__card-image {
    object-position: 68% center;
}

.home-section-product__card--nutra .home-section-product__card-image {
    object-position: 68% center;
}

.home-section-product__card--cosmetics .home-section-product__card-image {
    object-position: 70% center;
}

.home-section-product__card-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(520px 360px at 78% 72%, rgba(141, 173, 91, 0.20), transparent 62%),
        linear-gradient(90deg, rgba(7, 27, 18, 0.88) 0%, rgba(7, 27, 18, 0.70) 34%, rgba(7, 27, 18, 0.30) 66%, rgba(7, 27, 18, 0.10) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
}

.home-section-product__card--nutra .home-section-product__card-shade {
    background:
        radial-gradient(540px 380px at 78% 72%, rgba(151, 183, 63, 0.30), transparent 64%),
        linear-gradient(90deg, rgba(7, 27, 18, 0.86) 0%, rgba(7, 27, 18, 0.66) 38%, rgba(7, 27, 18, 0.22) 72%, rgba(7, 27, 18, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.26) 100%);
}

.home-section-product__card-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding: clamp(38px, 3.3vw, 46px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-section-product__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: clamp(34px, 4vw, 54px);
    background: rgba(143, 188, 143, 0.12);
    border: 1px solid rgba(167, 185, 106, 0.30);
    color: var(--hsp-cream);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.home-section-product__icon svg {
    width: 33px;
    height: 33px;
}

.home-section-product__icon path,
.home-section-product__icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.home-section-product__card h3 {
    margin: 0;
    color: var(--hsp-white);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(36px, 3vw, 52px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.048em;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.home-section-product__title-rule {
    width: 40px;
    height: 1.2px;
    background: var(--hsp-sage);
    margin: clamp(26px, 2vw, 34px) 0 clamp(22px, 2vw, 30px);
    transform-origin: left center;
}

.home-section-product__card p {
    max-width: 310px;
    margin: 0;
    color: rgba(248, 245, 236, 0.82);
    font-size: clamp(15px, 1.08vw, 19px);
    line-height: 1.42;
}

.home-section-product__link {
    margin-top: auto;
    color: var(--hsp-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.home-section-product__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 42px;
    bottom: 0;
    height: 1.2px;
    background: var(--hsp-sage);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.home-section-product__link:hover::after {
    transform: scaleX(1.08);
}

.home-section-product__link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.32s ease;
}

.home-section-product__link:hover svg {
    transform: translateX(5px);
}

.home-section-product__link path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */

@media (max-width: 1180px) {
    .home-section-product__header {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-section-product__intro {
        max-width: 760px;
    }

    .home-section-product__grid {
        gap: 18px;
    }

    .home-section-product__card-content {
        padding: 34px 28px;
    }
}

@media (max-width: 920px) {
    .home-section-product {
        padding: 70px 18px 78px;
    }

    .home-section-product__grid {
        grid-template-columns: 1fr;
    }

    .home-section-product__card {
        min-height: 510px;
    }

    .home-section-product__card-image {
        object-position: 72% center;
    }

    .home-section-product__card p {
        max-width: 390px;
    }

    .home-section-product__molecule {
        display: none;
    }
}

@media (max-width: 640px) {
    .home-section-product__headline {
        font-size: clamp(42px, 13vw, 58px);
    }

    .home-section-product__intro {
        font-size: 16px;
    }

    .home-section-product__card {
        min-height: 500px;
        border-radius: 14px;
    }

    .home-section-product__card-content {
        padding: 30px 24px;
    }

    .home-section-product__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 38px;
    }

    .home-section-product__card h3 {
        font-size: 38px;
    }

    .home-section-product__card p {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-section-product *,
    .home-section-product *::before,
    .home-section-product *::after {
        animation: none !important;
        transition: none !important;
    }
}






/* =================================================================================== CAPSULE R & D */


/* ==========================================================
   HOME SECTION — CAPSULE R&D (Clean Premium Redesign)
========================================================== */

.home-section-capsule-rd {
    --hsc-bg-deep: #040F08;
    --hsc-bg-mid: #071810;
    --hsc-bg-surface: #0B2016;

    --hsc-forest: #1B4332;
    --hsc-sage: #74C69D;
    --hsc-sage-bright: #95D5B2;
    --hsc-leaf: #52B788;
    --hsc-mint: #B7E4C7;
    --hsc-vivid: #40916C;

    --hsc-gold: #C9A55A;
    --hsc-gold-bright: #E8C47A;
    --hsc-gold-pale: #F0D898;
    --hsc-gold-glow: rgba(201, 165, 90, 0.25);

    --hsc-white: #FDFCF8;
    --hsc-cream: #F8F5EC;
    --hsc-text: rgba(248, 245, 236, 0.92);
    --hsc-text-soft: rgba(248, 245, 236, 0.68);
    --hsc-text-faint: rgba(248, 245, 236, 0.35);

    --hsc-line: rgba(116, 198, 157, 0.18);
    --hsc-line-strong: rgba(116, 198, 157, 0.42);
    --hsc-line-gold: rgba(201, 165, 90, 0.35);

    --hsc-glow-sage: rgba(116, 198, 157, 0.20);
    --hsc-glow-gold: rgba(201, 165, 90, 0.15);
    --hsc-glow-vivid: rgba(64, 145, 108, 0.30);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(64, 145, 108, 0.22), transparent 65%),
        radial-gradient(ellipse 70% 50% at 85% 70%, rgba(52, 183, 136, 0.16), transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(28, 67, 50, 0.40), transparent 55%),
        linear-gradient(160deg, #040F08 0%, #071810 40%, #050E09 100%);
    color: var(--hsc-white);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 0;
}

.home-section-capsule-rd,
.home-section-capsule-rd * {
    box-sizing: border-box;
}

/* Soft ambient dot texture */
.home-section-capsule-rd::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(116, 198, 157, 0.10) 0.6px, transparent 0.8px);
    background-size: 28px 28px;
    opacity: 0.55;
}

/* ==========================================================
   INNER GRID (video in natural document flow)
========================================================== */

.home-section-capsule-rd__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: stretch;
    min-height: clamp(600px, 75vh, 900px);
    padding: clamp(56px, 5vw, 96px) clamp(24px, 4.8vw, 76px);
}

/* ==========================================================
   LEFT CONTENT
========================================================== */

.home-section-capsule-rd__content {
    position: relative;
    z-index: 4;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-section-capsule-rd__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
}

.home-section-capsule-rd__eyebrow-line {
    width: 48px;
    height: 1px;
    background: var(--hsc-gold);
    display: block;
}

.home-section-capsule-rd__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--hsc-gold);
}

.home-section-capsule-rd__eyebrow-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hsc-gold);
    margin: 6px 0 28px 64px;
    box-shadow: 0 0 14px rgba(201, 165, 90, 0.5);
}

.home-section-capsule-rd__headline {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    color: var(--hsc-white);
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.04em;
    text-shadow: 0 0 60px rgba(116, 198, 157, 0.08);
    text-rendering: optimizeLegibility;
}

.home-section-capsule-rd__headline-line {
    display: block;
    overflow: hidden;
    padding-bottom: 3px;
}

.home-section-capsule-rd__headline-line span {
    display: inline-block;
    will-change: transform;
}

.home-section-capsule-rd__headline em {
    font-style: italic;
    color: var(--hsc-sage-bright);
    font-weight: 300;
    margin-right: 4px;
}

.home-section-capsule-rd__underline-wrap {
    position: relative;
    display: inline-block;
}

.home-section-capsule-rd__underline-wrap::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -10px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9 Q 60 2 120 6 T 240 7 T 318 5' fill='none' stroke='%23C9A55A' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0.85;
}

.home-section-capsule-rd__copy {
    margin: 26px 0 40px;
    color: var(--hsc-text);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.6;
    max-width: 480px;
}

/* ---------- Feature cards (glassmorphism) ---------- */
.home-section-capsule-rd__features {
    list-style: none;
    margin: 0 0 44px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.home-section-capsule-rd__features li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(116, 198, 157, 0.14);
    border-left: 2px solid transparent;
    background: rgba(116, 198, 157, 0.04);
    backdrop-filter: blur(8px);
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.home-section-capsule-rd__features li:hover {
    background: rgba(116, 198, 157, 0.09);
    border-color: rgba(116, 198, 157, 0.35);
    border-left-color: var(--hsc-sage);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(116, 198, 157, 0.12);
}

.home-section-capsule-rd__feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hsc-sage-bright);
    background: radial-gradient(circle, rgba(116, 198, 157, 0.18), rgba(116, 198, 157, 0.04));
    border: 1.5px solid var(--hsc-sage);
    box-shadow: 0 0 16px rgba(116, 198, 157, 0.15), inset 0 0 8px rgba(116, 198, 157, 0.05);
}

.home-section-capsule-rd__feature-icon svg {
    width: 26px;
    height: 26px;
}

.home-section-capsule-rd__feature-icon path,
.home-section-capsule-rd__feature-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.home-section-capsule-rd__features h4 {
    margin: 0 0 6px;
    color: var(--hsc-sage-bright);
    font-family: "Fraunces", Georgia, serif;
    font-size: 16px;
    font-weight: 500;
}

.home-section-capsule-rd__features p {
    margin: 0;
    color: var(--hsc-text-soft);
    font-size: 13.5px;
    line-height: 1.55;
}

/* ---------- CTA button ---------- */
.home-section-capsule-rd__button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    align-self: flex-start;
    height: 62px;
    padding: 0 32px;
    border-radius: 999px;
    text-decoration: none;
    color: #03100A;
    background: linear-gradient(135deg, #74C69D 0%, #52B788 40%, #40916C 100%);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    box-shadow:
        0 0 0 1px rgba(116, 198, 157, 0.3),
        0 20px 40px rgba(64, 145, 108, 0.30),
        0 0 60px rgba(116, 198, 157, 0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.home-section-capsule-rd__button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(116, 198, 157, 0.45),
        0 26px 50px rgba(64, 145, 108, 0.36),
        0 0 80px rgba(116, 198, 157, 0.18);
}

.home-section-capsule-rd__button svg {
    width: 22px;
    height: 22px;
}

.home-section-capsule-rd__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================
   RIGHT MEDIA — CLEAN (no overlays, no decorations)
========================================================== */

.home-section-capsule-rd__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(500px, 65vh, 800px);
    border-radius: 24px;
    overflow: hidden;
}

.home-section-capsule-rd__video {
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: saturate(1.06) contrast(1.04) brightness(0.94);
}

/* ==========================================================
   STATS STRIP
========================================================== */

.home-section-capsule-rd__stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: clamp(28px, 2.5vw, 42px) clamp(24px, 4.8vw, 76px);
    background: rgba(4, 12, 8, 0.70);
    border-top: 1px solid var(--hsc-line);
    backdrop-filter: blur(20px);
}

.home-section-capsule-rd__stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 22px;
}

.home-section-capsule-rd__stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(116, 198, 157, 0.35) 30%, rgba(116, 198, 157, 0.35) 70%, transparent);
}

.home-section-capsule-rd__stat-icon {
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1.5px solid var(--hsc-sage);
    color: var(--hsc-sage-bright);
    background: radial-gradient(circle, rgba(116, 198, 157, 0.16), transparent);
    box-shadow: 0 0 20px rgba(116, 198, 157, 0.12), inset 0 0 10px rgba(116, 198, 157, 0.06);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.home-section-capsule-rd__stat:hover .home-section-capsule-rd__stat-icon {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(116, 198, 157, 0.24), inset 0 0 10px rgba(116, 198, 157, 0.10);
}

.home-section-capsule-rd__stat-icon svg {
    width: 22px;
    height: 22px;
}

.home-section-capsule-rd__stat-icon path,
.home-section-capsule-rd__stat-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.home-section-capsule-rd__stat h5 {
    margin: 0 0 4px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
    color: var(--hsc-cream);
    font-weight: 400;
    letter-spacing: -0.025em;
}

.home-section-capsule-rd__stat p {
    margin: 0;
    color: var(--hsc-sage);
    font-size: 13.5px;
    font-weight: 500;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1180px) {
    .home-section-capsule-rd__inner {
        gap: 32px;
    }
}

@media (max-width: 920px) {
    .home-section-capsule-rd__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .home-section-capsule-rd__content {
        max-width: 720px;
        margin: 0 auto;
        text-align: left;
    }

    .home-section-capsule-rd__media {
        min-height: 460px;
        border-radius: 20px;
        order: -1;
    }

    .home-section-capsule-rd__features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .home-section-capsule-rd__features li {
        padding: 16px 18px;
        gap: 14px;
    }

    .home-section-capsule-rd__feature-icon {
        width: 48px;
        height: 48px;
    }

    .home-section-capsule-rd__feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .home-section-capsule-rd__stats {
        grid-template-columns: 1fr 1fr;
        gap: 26px 0;
    }

    .home-section-capsule-rd__stat:not(:last-child)::after {
        display: none;
    }

    .home-section-capsule-rd__stat:nth-child(2n)::after {
        content: "";
        display: block;
    }

    .home-section-capsule-rd__stat:nth-child(2n) {
        padding-left: 30px;
    }
}

@media (max-width: 640px) {
    .home-section-capsule-rd__inner {
        padding: 40px 16px;
        gap: 32px;
    }

    .home-section-capsule-rd__media {
        min-height: 360px;
        border-radius: 16px;
    }

    .home-section-capsule-rd__headline {
        font-size: clamp(36px, 11vw, 46px);
    }

    .home-section-capsule-rd__copy {
        font-size: 15px;
        margin: 20px 0 30px;
    }

    .home-section-capsule-rd__features {
        grid-template-columns: 1fr;
    }

    .home-section-capsule-rd__features li {
        grid-template-columns: 50px 1fr;
    }

    .home-section-capsule-rd__button {
        height: 56px;
        padding: 0 24px;
        font-size: 14px;
        gap: 16px;
    }

    .home-section-capsule-rd__stats {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 22px 16px;
    }

    .home-section-capsule-rd__stat {
        padding: 16px 0 !important;
        border-bottom: 1px solid var(--hsc-line);
    }

    .home-section-capsule-rd__stat:last-child {
        border-bottom: 0;
    }

    .home-section-capsule-rd__stat::after {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-section-capsule-rd *,
    .home-section-capsule-rd *::before,
    .home-section-capsule-rd *::after {
        animation: none !important;
        transition: none !important;
    }
}




/* ===================================================================================  SERVICES */



.home-section-services {
    --hss-ivory: #F1EDE3;
    --hss-paper: #F8F5EC;
    --hss-cream: #FFFDF6;
    --hss-deep-green: #103522;
    --hss-rich-green: #0F3B24;
    --hss-soft-green: #8FBC8F;
    --hss-muted-green: #78956F;
    --hss-mint: #E6EDE0;
    --hss-gold: #B89968;
    --hss-gold-soft: rgba(184, 153, 104, 0.58);
    --hss-charcoal: #303530;
    --hss-muted-text: #555D56;
    --hss-border: rgba(27, 67, 50, 0.12);
    --hss-shadow: rgba(27, 67, 50, 0.13);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(900px 460px at 50% 12%, rgba(143, 188, 143, 0.11), transparent 68%),
        radial-gradient(800px 560px at 15% 64%, rgba(184, 153, 104, 0.08), transparent 68%),
        linear-gradient(180deg, #FBF8EF 0%, var(--hss-ivory) 100%);
    color: var(--hss-charcoal);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: clamp(58px, 6vw, 90px) clamp(22px, 4.5vw, 72px) clamp(62px, 6vw, 88px);
}

.home-section-services,
.home-section-services * {
    box-sizing: border-box;
}

.home-section-services__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-section-services__glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.16;
}

.home-section-services__glow--left {
    left: -170px;
    bottom: 60px;
    background: var(--hss-gold);
}

.home-section-services__glow--right {
    right: -170px;
    top: 120px;
    background: var(--hss-soft-green);
}

.home-section-services__molecule {
    position: absolute;
    top: 130px;
    right: 8%;
    width: 190px;
    color: rgba(27, 67, 50, 0.16);
}

.home-section-services__molecule path,
.home-section-services__molecule circle {
    stroke: currentColor;
    stroke-width: 1.1;
    vector-effect: non-scaling-stroke;
}

.home-section-services__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1780px);
    margin: 0 auto;
}

/* ==========================================================
   HEADER
   ========================================================== */

.home-section-services__header {
    text-align: center;
    max-width: 1120px;
    margin: 0 auto clamp(34px, 4vw, 54px);
}

.home-section-services__eyebrow {
    margin: 0 0 14px;
    color: var(--hss-muted-green);
    font-size: clamp(11px, 0.85vw, 15px);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-section-services__headline {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    color: var(--hss-deep-green);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
    font-size: clamp(44px, 5vw, 82px);
}

.home-section-services__headline-line {
    display: block;
    overflow: hidden;
}

.home-section-services__headline-line span {
    display: inline-block;
    will-change: transform;
}

.home-section-services__headline-line--italic {
    color: rgba(120, 149, 111, 0.88);
    font-style: italic;
    font-weight: 400;
    margin-top: 12px;
}

.home-section-services__intro {
    max-width: 860px;
    margin: clamp(22px, 2.5vw, 32px) auto 0;
    color: var(--hss-muted-text);
    font-size: clamp(16px, 1.22vw, 21px);
    line-height: 1.52;
    letter-spacing: 0.01em;
}

/* ==========================================================
   TABS
   ========================================================== */

.home-section-services__tabs {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
    padding: 0 clamp(4px, 2vw, 44px);
}

.home-section-services__tab {
    position: relative;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.2vw, 20px);
    padding: 14px clamp(14px, 2vw, 28px);
    border: 0;
    background: transparent;
    color: var(--hss-charcoal);
    cursor: pointer;
    text-align: left;
    font: inherit;
    transition: color 0.32s ease;
}

.home-section-services__tab:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(27, 67, 50, 0.12);
}

.home-section-services__tab-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(230, 237, 224, 0.74);
    color: var(--hss-charcoal);
    box-shadow: inset 0 0 0 1px rgba(27, 67, 50, 0.05);
    transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.home-section-services__tab-icon svg {
    width: 27px;
    height: 27px;
}

.home-section-services__tab-icon path,
.home-section-services__tab-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.home-section-services__tab-text {
    display: block;
    font-size: clamp(12px, 0.98vw, 16px);
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.home-section-services__tab.is-active {
    color: var(--hss-deep-green);
}

.home-section-services__tab.is-active .home-section-services__tab-icon {
    background: var(--hss-mint);
    color: var(--hss-deep-green);
    transform: scale(1.04);
}

.home-section-services__tabs-indicator {
    position: absolute;
    left: clamp(4px, 2vw, 44px);
    bottom: 0;
    width: calc((100% - clamp(8px, 4vw, 88px)) / 4);
    height: 3px;
    background: var(--hss-deep-green);
    border-radius: 999px;
    transform-origin: left center;
    transition: transform 0.52s cubic-bezier(.2, .8, .2, 1);
}

.home-section-services__tabs-indicator::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hss-deep-green);
    transform: translate(-50%, -50%);
}

/* ==========================================================
   MAIN PANEL
   ========================================================== */

.home-section-services__panel {
    position: relative;
    display: grid;
    grid-template-columns: 0.71fr 1fr;
    min-height: clamp(520px, 38vw, 690px);
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--hss-border);
    background: rgba(255, 253, 246, 0.55);
    box-shadow:
        0 28px 60px rgba(27, 67, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
    margin-top: 1%;
}

.home-section-services__content-card {
    position: relative;
    padding: clamp(42px, 4vw, 64px) clamp(38px, 4vw, 58px);
    background:
        radial-gradient(480px 320px at 15% 15%, rgba(184, 153, 104, 0.07), transparent 72%),
        rgba(255, 253, 246, 0.74);
    z-index: 2;
}

.home-section-services__index {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--hss-muted-green);
    font-size: 17px;
    margin-bottom: 26px;
}

.home-section-services__index span {
    width: 38px;
    height: 2px;
    background: var(--hss-muted-green);
}

.home-section-services__index strong {
    font-weight: 500;
    letter-spacing: 0.03em;
}

.home-section-services__title {
    margin: 0;
    color: var(--hss-deep-green);
    font-family: "Fraunces", Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
    font-size: clamp(34px, 3vw, 51px);
}

.home-section-services__title-rule {
    display: block;
    width: 52px;
    height: 2px;
    background: var(--hss-deep-green);
    margin: 26px 0 27px;
    transform-origin: left center;
}

.home-section-services__description {
    max-width: 640px;
    margin: 0;
    color: var(--hss-muted-text);
    font-size: clamp(14px, 1.03vw, 17px);
    line-height: 1.75;
}

.home-section-services__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 38px;
    margin: clamp(28px, 3vw, 42px) 0 clamp(30px, 3vw, 42px);
    padding: 0;
    list-style: none;
}

.home-section-services__features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--hss-charcoal);
    font-size: clamp(13px, 0.98vw, 16px);
    line-height: 1.55;
}

.home-section-services__feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(230, 237, 224, 0.88);
    color: var(--hss-deep-green);
}

.home-section-services__feature-icon svg {
    width: 25px;
    height: 25px;
}

.home-section-services__feature-icon path,
.home-section-services__feature-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.home-section-services__actions {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.2vw, 38px);
    flex-wrap: wrap;
}

.home-section-services__primary,
.home-section-services__secondary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 16px);
    transition: transform 0.32s ease, color 0.32s ease, background 0.32s ease;
}

.home-section-services__primary svg,
.home-section-services__secondary svg {
    width: 20px;
    height: 20px;
}

.home-section-services__primary path,
.home-section-services__secondary path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-section-services__primary {
    min-width: 250px;
    min-height: 58px;
    justify-content: center;
    padding: 0 26px;
    border-radius: 999px;
    color: var(--hss-cream);
    background: linear-gradient(135deg, #063719, #0E4A25);
    box-shadow: 0 16px 28px rgba(16, 53, 34, 0.18);
}

.home-section-services__secondary {
    position: relative;
    color: var(--hss-deep-green);
    padding-bottom: 9px;
}

.home-section-services__secondary::after {
    content: "";
    position: absolute;
    left: 0;
    right: 34px;
    bottom: 0;
    height: 1px;
    background: var(--hss-gold);
    transform-origin: left center;
}

.home-section-services__primary:hover,
.home-section-services__secondary:hover {
    transform: translateY(-3px);
}

.home-section-services__image-wrap {
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: #DCE0D3;
}

.home-section-services__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 420px at 44% 55%, rgba(255, 255, 255, 0.07), transparent 64%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
    pointer-events: none;
}

.home-section-services__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(520px, 38vw, 690px);
    object-fit: cover;
    transform: scale(1.045);
    will-change: transform;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1180px) {
    .home-section-services__tabs {
        padding: 0;
    }

    .home-section-services__tabs-indicator {
        left: 0;
        width: 20%;
    }

    .home-section-services__tab {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home-section-services__tab-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .home-section-services__panel {
        grid-template-columns: 0.82fr 1fr;
    }
}

@media (max-width: 920px) {
    .home-section-services {
        padding: 62px 18px 72px;
    }

    .home-section-services__tabs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 0 0 10px;
        scrollbar-width: none;
    }

    .home-section-services__tabs::-webkit-scrollbar {
        display: none;
    }

    .home-section-services__tab {
        flex: 0 0 240px;
        justify-content: flex-start;
        border: 1px solid rgba(27, 67, 50, 0.10);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.32);
    }

    .home-section-services__tab:not(:last-of-type)::after,
    .home-section-services__tabs-indicator {
        display: none;
    }

    .home-section-services__panel {
        grid-template-columns: 1fr;
    }

    .home-section-services__image-wrap {
        order: -1;
        min-height: 360px;
    }

    .home-section-services__image-wrap img {
        min-height: 360px;
    }

    .home-section-services__features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .home-section-services__headline {
        font-size: clamp(38px, 12vw, 54px);
    }

    .home-section-services__intro {
        font-size: 15px;
    }

    .home-section-services__content-card {
        padding: 34px 22px 36px;
    }

    .home-section-services__features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-section-services__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-section-services__primary {
        width: 100%;
        min-width: 0;
    }

    .home-section-services__secondary {
        width: max-content;
    }

    .home-section-services__molecule {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-section-services *,
    .home-section-services *::before,
    .home-section-services *::after {
        animation: none !important;
        transition: none !important;
    }
}


/* ============================================================ HOME NUTRITION   */



/* ==========================================================
   HOME SECTION — NUTRITION
   Premium $1500 Build — Pixel Perfect
   ========================================================== */

.home-section-nutrition {
    /* Premium Color Palette */
    --bg-ivory: #F5F0E8;
    --bg-cream: #FAF8F3;
    --text-charcoal: #1A1A1A;
    --text-deep: #2C2C2C;
    --gold-accent: #B8956A;
    --gold-bright: #C9A66B;
    --sage-muted: #8FA68E;
    --sage-light: #A8B8A5;
    --mint-soft: #E8F0E5;
    --border-hairline: rgba(184, 149, 106, 0.3);
    --grid-line: rgba(184, 149, 106, 0.15);

    position: relative;
    width: 100%;
    background:
        linear-gradient(to bottom, var(--bg-ivory) 0%, var(--bg-cream) 100%);
    color: var(--text-charcoal);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

/* ---------- Background Grid Texture ---------- */
.home-section-nutrition::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, var(--grid-line) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(0deg, var(--grid-line) 0 1px, transparent 1px 120px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* ---------- Decorative Layer ---------- */
.home-section-nutrition__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Leaf Outline (Left) */
.hsn-decor--leaf {
    position: absolute;
    left: -2%;
    top: 30%;
    width: 180px;
    height: 400px;
    color: var(--sage-muted);
    opacity: 0.4;
}

.hsn-decor--leaf svg {
    width: 100%;
    height: 100%;
}

.hsn-decor--leaf path {
    stroke: currentColor;
    stroke-width: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Molecular Structure (Top Left) */
.hsn-decor--molecule {
    position: absolute;
    top: 12%;
    left: 28%;
    width: 80px;
    height: 60px;
    color: var(--sage-muted);
    opacity: 0.5;
}

.hsn-decor--molecule circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
}

.hsn-decor--molecule line {
    stroke: currentColor;
    stroke-width: 1;
}

/* Flask/Beaker (Bottom Right) */
.hsn-decor--flask {
    position: absolute;
    bottom: 8%;
    right: 5%;
    width: 60px;
    height: 80px;
    color: var(--sage-muted);
    opacity: 0.3;
}

.hsn-decor--flask path,
.hsn-decor--flask line {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Crosshair Markers */
.hsn-decor--cross {
    position: absolute;
    width: 24px;
    height: 24px;
    color: var(--sage-muted);
}

.hsn-decor--cross svg {
    width: 100%;
    height: 100%;
}

.hsn-decor--cross path {
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.hsn-decor--cross--tl {
    top: 40px;
    left: 40px;
}

.hsn-decor--cross--tr {
    top: 40px;
    right: 40px;
}

/* Rotating Leaf Badge (Top Right) */
.hsn-decor--badge {
    position: absolute;
    top: 50px;
    right: 60px;
    width: 100px;
    height: 100px;
    color: var(--sage-muted);
}

.hsn-decor--badge-rotate {
    width: 100%;
    height: 100%;
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hsn-decor--badge circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    stroke-dasharray: 3 3;
}

.hsn-decor--badge .leaf-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    color: var(--sage-muted);
}

.hsn-decor--badge .leaf-icon svg {
    width: 100%;
    height: 100%;
}

.hsn-decor--badge .leaf-icon path {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Constellation Dots (Bottom) */
.hsn-decor--constellation {
    position: absolute;
    bottom: 15%;
    right: 25%;
    width: 200px;
    height: 100px;
    z-index: 1;
}

.hsn-decor--constellation svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hsn-decor--constellation line {
    stroke: var(--text-charcoal);
    stroke-width: 1;
    stroke-dasharray: 3 3;
    opacity: 0.3;
}

.hsn-decor--constellation circle {
    fill: var(--text-charcoal);
}

/* ---------- Top Bundle Bar ---------- */
.home-section-nutrition__top-bar {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(40px, 5vw, 60px);
    z-index: 2;
}

.hsn-top-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-hairline) 20%, var(--border-hairline) 80%, transparent);
    max-width: 400px;
}

.hsn-bundle-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(143, 166, 142, 0.15);
    border: 1px solid var(--sage-muted);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-deep);
    margin: 0 20px;

    white-space: nowrap;
    backdrop-filter: blur(4px);
}

/* ---------- Main Grid Layout ---------- */
.home-section-nutrition__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin: 0 auto;
    padding: 5% 6%;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Left Column: Large Image */
.hsn-col-left {
    grid-row: 1 / -1;
    position: relative;
}

.hsn-image-large {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.15),
        0 10px 20px -10px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.6s ease;
}

.hsn-image-large:hover {
    transform: rotate(0deg) scale(1.02);
}

.hsn-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center Column: Content */
.hsn-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    position: relative;
}

/* Vertical Gold Line */
.hsn-vertical-line {
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 20%;
    width: 1px;
    background: var(--gold-accent);
    opacity: 0.6;
}

.hsn-vertical-line::before,
.hsn-vertical-line::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-accent);
}

.hsn-vertical-line::before {
    top: 0;
}

.hsn-vertical-line::after {
    bottom: 0;
}

.hsn-content {
    padding-left: 40px;
}

.hsn-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-charcoal);
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.hsn-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-deep);
    margin: 0 0 32px 0;
    max-width: 90%;
}

.hsn-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    position: relative;
    width: fit-content;
}

.hsn-cta-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-charcoal);
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold-accent);
    transition: border-color 0.3s;
}

.hsn-cta:hover .hsn-cta-text {
    border-color: var(--text-charcoal);
}

.hsn-cta-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text-charcoal);
    display: grid;
    place-items: center;
    color: var(--bg-ivory);
    transition: transform 0.3s ease, background 0.3s;
}

.hsn-cta:hover .hsn-cta-arrow {
    transform: translateX(4px);
    background: var(--gold-accent);
}

.hsn-cta-arrow svg {
    width: 18px;
    height: 18px;
}

/* Right Column: Stacked Images */
.hsn-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hsn-image-small {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.12),
        0 8px 16px -8px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
}

.hsn-image-small:hover {
    transform: translateY(-4px);
}

.hsn-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top image in right column (herbs) */
.hsn-image-small--top {
    margin-top: -20px;
    /* Slight offset up */
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */

@media (max-width: 1200px) {
    .home-section-nutrition__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
    }

    .hsn-col-left {
        grid-row: 1 / 3;
    }

    .hsn-col-right {
        flex-direction: row;
        grid-column: 1 / -1;
    }

    .hsn-image-small {
        aspect-ratio: 16/9;
    }

    .hsn-image-small--top {
        margin-top: 0;
    }

    .hsn-decor--badge {
        width: 80px;
        height: 80px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .home-section-nutrition {
        padding: 60px 20px;
    }

    .home-section-nutrition__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hsn-col-left {
        grid-row: auto;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .hsn-image-large {
        transform: rotate(0);
        aspect-ratio: 1;
    }

    .hsn-col-center {
        order: -1;
        text-align: center;
        padding: 0;
    }

    .hsn-vertical-line {
        display: none;
    }

    .hsn-content {
        padding-left: 0;
    }

    .hsn-headline {
        font-size: 32px;
    }

    .hsn-body {
        max-width: 100%;
    }

    .hsn-cta {
        margin: 0 auto;
    }

    .hsn-col-right {
        flex-direction: column;
    }

    .hsn-image-small {
        aspect-ratio: 4/3;
    }

    .hsn-decor--leaf,
    .hsn-decor--molecule,
    .hsn-decor--flask,
    .hsn-decor--constellation {
        display: none;
    }

    .hsn-decor--badge {
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

/* ============================================================ LABS SECTION  */

/* ==========================================================
   HOME SECTION — LABS (Vitalis Labs)
   Premium $1500 Build — Collision Free with home-section-nutrition
   Unique Prefix: hsl- (Home Section Labs)
   ========================================================== */

.home-section-labs {
    /* Unique Color Palette for Labs to avoid variable conflicts */
    --hsl-bg-ivory: #F8F6F1;
    --hsl-bg-warm: #F5F2EC;
    --hsl-text-charcoal: #1A1A1A;
    --hsl-text-ivory: #F8F6F1;
    --hsl-sage-primary: #8FA68E;
    --hsl-sage-dark: #5C7A5A;
    --hsl-gold-accent: #B8956A;
    --hsl-gold-bright: #C9A66B;
    --hsl-deep-green: #2D5F3F;
    --hsl-forest-green: #1B4332;
    --hsl-border-dot: #A8B5A0;

    position: relative;
    width: 100%;
    background: var(--hsl-bg-ivory);
    color: var(--hsl-text-charcoal);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 60px 0;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

/* ---------- Top & Bottom Borders with Dots ---------- */
.home-section-labs__border {
    position: absolute;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--hsl-gold-accent) 5%,
            var(--hsl-gold-accent) 95%,
            transparent 100%);
    z-index: 10;
}

.home-section-labs__border--top {
    top: 30px;
}

.home-section-labs__border--bottom {
    bottom: 30px;
}

.hsl-border-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hsl-border-dot);
    top: 50%;
    transform: translateY(-50%);
}

.hsl-border-dot--left {
    left: 0;
}

.hsl-border-dot--right {
    right: 0;
}

.hsl-border-dot--center {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--hsl-gold-accent);
}

/* ---------- Main Grid Layout ---------- */
.home-section-labs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin: 0 auto;
    padding: 5% 6%;
    position: relative;
    min-height: 85vh;
    align-items: stretch;
}

/* ---------- Left Column: Video/Image ---------- */
.hsl-col-left {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #2a2a2a;
}

.hsl-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hsl-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vertical Text */
.hsl-vertical-text {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hsl-text-ivory);
    font-weight: 500;
    white-space: nowrap;
    z-index: 5;
    opacity: 0.9;
}

/* Play Button */
.hsl-play-btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--hsl-text-ivory);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s ease, background 0.3s;
}

.hsl-play-btn:hover {
    transform: translateX(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.hsl-play-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: hsl-pulseRing 2s ease-out infinite;
}

@keyframes hsl-pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.hsl-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--hsl-text-ivory);
    margin-left: 4px;
}

/* ---------- Center Column: Stacked Cards ---------- */
.hsl-col-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Top Card: Seed Labs */
.hsl-card-labs {
    position: relative;
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    background: var(--hsl-forest-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    min-height: 320px;
}

.hsl-card-labs__bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hsl-card-labs__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hsl-card-labs__content {
    position: relative;
    z-index: 2;
    color: var(--hsl-text-ivory);
}

.hsl-card-labs__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 500;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.hsl-card-labs__subtitle {
    font-size: 16px;
    margin: 0 0 28px 0;
    opacity: 0.9;
    font-weight: 400;
}

.hsl-btn-read {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--hsl-text-ivory);
    color: var(--hsl-forest-green);
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.hsl-btn-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Bottom Card: Green Product Card */
.hsl-card-product {
    position: relative;
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    background: var(--hsl-deep-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    min-height: 320px;
}

.hsl-capsules {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.hsl-capsule {
    width: 24px;
    height: 48px;
    background: linear-gradient(135deg, #1a3d2a 0%, #0f2a1e 100%);
    border-radius: 12px;
    box-shadow:
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hsl-capsule::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hsl-card-product__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 500;
    color: var(--hsl-text-ivory);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.hsl-card-product__subtitle {
    font-size: 14px;
    color: var(--hsl-text-ivory);
    opacity: 0.85;
    margin: 0 0 28px 0;
}

.hsl-btn-shop {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--hsl-text-ivory);
    color: var(--hsl-deep-green);
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.hsl-btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ---------- Right Column: Image ---------- */
.hsl-col-right {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #1a1a1a;
}

.hsl-image-tall {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.hsl-image-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Crosshair Decorations on Right Image */
.hsl-crosshair {
    position: absolute;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.hsl-crosshair svg {
    width: 100%;
    height: 100%;
}

.hsl-crosshair path {
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.hsl-crosshair--tr {
    top: 30px;
    right: 30px;
}

.hsl-crosshair--br {
    bottom: 120px;
    right: 30px;
}

/* Constellation lines on right image */
.hsl-constellation-mini {
    position: absolute;
    bottom: 80px;
    right: 60px;
    width: 80px;
    height: 60px;
}

.hsl-constellation-mini svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hsl-constellation-mini line {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    stroke-dasharray: 2 2;
}

.hsl-constellation-mini circle {
    fill: rgba(255, 255, 255, 0.6);
}

/* Vertical gold line on right edge */
.hsl-gold-line {
    position: absolute;
    right: 12px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--hsl-gold-accent);
    opacity: 0.6;
}

/* ---------- Floating Badges (Between Columns) ---------- */
.hsl-badges-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 140px;
    pointer-events: none;
    z-index: 10;
}

.hsl-badge {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--hsl-bg-ivory);
    border: 2px solid var(--hsl-sage-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hsl-badge--left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hsl-badge--right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hsl-badge svg {
    width: 50px;
    height: 50px;
    color: var(--hsl-sage-dark);
}

.hsl-badge path,
.hsl-badge circle {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Text around badges */
.hsl-badge-text {
    position: absolute;
    width: 120%;
    height: 120%;
    animation: hsl-rotateText 20s linear infinite;
}

@keyframes hsl-rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hsl-badge-text text {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    fill: var(--hsl-sage-dark);
    font-family: 'Inter', sans-serif;
}

/* Connecting Line and Sprig */
.hsl-connecting-line {
    position: absolute;
    left: 100px;
    right: 100px;
    top: 50%;
    height: 1px;
    border-top: 1px dashed var(--hsl-sage-primary);
    opacity: 0.5;
    transform: translateY(-50%);
}

.hsl-sprig {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    color: var(--hsl-sage-primary);
}

.hsl-sprig svg {
    width: 100%;
    height: 100%;
}

.hsl-sprig path {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 1200px) {
    .home-section-labs__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 40px;
    }

    .hsl-col-right {
        grid-column: 1 / -1;
        height: 400px;
    }

    .hsl-image-tall {
        min-height: 400px;
    }

    .hsl-badges-container {
        width: 40%;
        left: 30%;
        top: 40%;
    }
}

@media (max-width: 768px) {
    .home-section-labs {
        padding: 40px 0;
    }

    .home-section-labs__border {
        left: 20px;
        right: 20px;
    }

    .home-section-labs__grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 24px;
    }

    .hsl-col-left,
    .hsl-col-right {
        min-height: 400px;
    }

    .hsl-vertical-text {
        left: 20px;
        font-size: 10px;
    }

    .hsl-play-btn {
        width: 60px;
        height: 60px;
        bottom: 40px;
    }

    .hsl-badges-container {
        display: none;
    }

    .hsl-card-labs,
    .hsl-card-product {
        min-height: 280px;
        padding: 32px 24px;
    }

    .hsl-gold-line {
        display: none;
    }
}


/* Smooth scroll spacer for nav */
[id] {
    scroll-margin-top: 80px;
}