:root {
    --pink: #ff1f76;
    --pink-dark: #e80063;
    --pink-soft: #ffd9e7;

    --purple: #9366df;

    --black: #151515;
    --dark: #19191f;

    --grey: #777777;
    --light-grey: #f6f6f6;

    --border: #e9e9e9;

    --container: 1280px;
}


* {
    box-sizing: border-box;

    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    overflow-x: hidden;

    background: white;

    color: var(--black);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    -webkit-font-smoothing:
        antialiased;
}


body.modal-open {
    overflow: hidden;
}


button,
input {
    font: inherit;
}


button {
    border: 0;
}


a {
    color: inherit;
}


.container {
    width:
        min(
            var(--container),
            calc(100% - 48px)
        );

    margin: 0 auto;
}


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

.site-header {
    height: 80px;

    position: sticky;

    z-index: 1000;

    top: 0;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.06);

    background:
        rgba(
            255,
            255,
            255,
            0.93
        );

    backdrop-filter:
        blur(18px);
}


.header-inner {
    height: 100%;

    display: grid;

    grid-template-columns:
        210px
        1fr
        auto;

    align-items: center;

    gap: 25px;
}


.logo {
    color: #ff0a72;

    font-family:
        "Michroma",
        sans-serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.8px;

    text-decoration: none;

    text-transform: uppercase;

    transform:
        scaleX(1.06);

    transform-origin: left center;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.logo:hover {
    opacity: 0.82;

    transform:
        scaleX(1.06)
        translateY(-1px);
}


.desktop-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 36px;
}


.desktop-nav a {
    position: relative;

    padding: 31px 0;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.desktop-nav a::after {
    content: "";

    height: 2px;

    position: absolute;

    left: 50%;
    right: 50%;
    bottom: 19px;

    border-radius: 999px;

    background: var(--pink);

    transition:
        left 0.2s ease,
        right 0.2s ease;
}


.desktop-nav a:hover {
    color: var(--pink);
}


.desktop-nav a:hover::after {
    left: 0;
    right: 0;
}


.header-actions {
    display: flex;

    align-items: center;

    gap: 7px;
}


.icon-button {
    width: 42px;
    height: 42px;

    position: relative;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: transparent;

    color: #222;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.icon-button:hover {
    background: #f4f4f4;

    transform:
        translateY(-2px);
}


.cart-count {
    min-width: 17px;
    height: 17px;

    position: absolute;

    top: 0;
    right: -2px;

    padding: 0 4px;

    border-radius: 999px;

    display: grid;

    place-items: center;

    background: var(--pink);

    color: white;

    font-size: 9px;

    font-weight: 700;
}


.store-button {
    height: 42px;

    margin-left: 5px;

    padding: 0 21px;

    border-radius: 7px;

    background: var(--pink);

    color: white;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.store-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--pink-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height:
        calc(
            100vh - 80px
        );

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #fff9fb 0%,
            #fce7ef 48%,
            #f6d8e5 100%
        );
}


.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(70px);
}


.glow-one {
    width: 560px;
    height: 560px;

    top: 25px;
    right: 6%;

    background:
        rgba(
            255,
            32,
            118,
            0.16
        );
}


.glow-two {
    width: 370px;
    height: 370px;

    right: 32%;
    bottom: -160px;

    background:
        rgba(
            143,
            104,
            219,
            0.13
        );
}


.hero-grid {
    min-height:
        calc(
            100vh - 80px
        );

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    align-items: center;

    gap: 45px;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--pink);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.eyebrow.light {
    color: #ff72a7;
}


.hero-copy h1 {
    max-width: 720px;

    color: #171717;

    font-size:
        clamp(
            60px,
            6.1vw,
            94px
        );

    line-height: 0.94;

    letter-spacing: -5px;
}


.hero-copy h1 span {
    display: block;

    color: var(--pink);
}


.hero-description {
    max-width: 570px;

    margin-top: 27px;

    color: #696969;

    font-size: 18px;

    line-height: 1.6;
}


.hero-actions {
    margin-top: 32px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.primary-button,
.secondary-button {
    min-height: 53px;

    padding: 0 25px;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.primary-button {
    background: var(--pink);

    color: white;
}


.secondary-button {
    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    background:
        rgba(
            255,
            255,
            255,
            0.7
        );

    color: #222;

    backdrop-filter:
        blur(12px);
}


.primary-button:hover,
.secondary-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(
            0,
            0,
            0,
            0.1
        );
}


.hero-stats {
    margin-top: 48px;

    display: flex;

    gap: 45px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.hero-stats strong {
    font-size: 16px;
}


.hero-stats span {
    color: #8d8d8d;

    font-size: 11px;
}


/* =========================================================
   HERO PRODUCT
   ========================================================= */

.hero-product {
    min-height: 650px;

    position: relative;

    display: grid;

    place-items: center;
}


.product-halo {
    width: 520px;
    height: 520px;

    position: absolute;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff4d8f,
            #ff8eb7
        );

    box-shadow:
        0 50px 90px
        rgba(
            198,
            37,
            102,
            0.25
        );
}


.product-orbit {
    position: absolute;

    z-index: 1;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.65
        );

    border-radius: 50%;

    animation:
        orbitPulse
        4s ease-in-out
        infinite;
}


.orbit-large {
    width: 460px;
    height: 460px;
}


.orbit-small {
    width: 335px;
    height: 335px;

    animation-delay:
        0.6s;
}


.lush-image {
    width: min(
        610px,
        90%
    );

    max-height: 560px;

    position: relative;

    z-index: 5;

    object-fit: contain;

    user-select: none;

    pointer-events: none;

    filter:
        drop-shadow(
            0 38px 35px
            rgba(
                120,
                0,
                50,
                0.3
            )
        );

    animation:
        lushFloat
        4.6s
        ease-in-out
        infinite;
}


.floating-card {
    width: 190px;

    position: absolute;

    z-index: 8;

    padding:
        18px
        19px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.7
        );

    border-radius: 20px;

    background:
        rgba(
            255,
            255,
            255,
            0.88
        );

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 22px 50px
        rgba(
            0,
            0,
            0,
            0.12
        );
}


.floating-label {
    display: block;

    margin-bottom: 6px;

    color: var(--pink);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.floating-card strong {
    font-size: 16px;
}


.remote-card {
    top: 21%;
    left: 0;

    animation:
        floatingCardA
        4s ease-in-out
        infinite;
}


.pattern-card {
    right: 0;
    bottom: 20%;

    animation:
        floatingCardB
        4.8s ease-in-out
        infinite;
}


.signal-bars {
    height: 25px;

    margin-top: 12px;

    display: flex;

    align-items: flex-end;

    gap: 4px;
}


.signal-bars i {
    width: 4px;

    border-radius: 5px;

    background: var(--pink);

    animation:
        signalBar
        1s ease-in-out
        infinite alternate;
}


.signal-bars i:nth-child(1) {
    height: 8px;
}


.signal-bars i:nth-child(2) {
    height: 15px;

    animation-delay:
        0.15s;
}


.signal-bars i:nth-child(3) {
    height: 23px;

    animation-delay:
        0.3s;
}


.mini-wave {
    height: 27px;

    margin-top: 12px;

    display: flex;

    align-items: center;

    gap: 4px;
}


.mini-wave span {
    width: 4px;

    border-radius: 999px;

    background: var(--pink);

    animation:
        miniWave
        0.9s ease-in-out
        infinite alternate;
}


.mini-wave span:nth-child(1) {
    height: 7px;
}


.mini-wave span:nth-child(2) {
    height: 17px;

    animation-delay:
        0.1s;
}


.mini-wave span:nth-child(3) {
    height: 24px;

    animation-delay:
        0.2s;
}


.mini-wave span:nth-child(4) {
    height: 14px;

    animation-delay:
        0.3s;
}


.mini-wave span:nth-child(5) {
    height: 9px;

    animation-delay:
        0.4s;
}


.connection-badge {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 9%;

    transform:
        translateX(-50%);

    padding:
        9px
        14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.65
        );

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 8px;

    background:
        rgba(
            255,
            255,
            255,
            0.85
        );

    color: #333;

    font-size: 11px;

    font-weight: 600;

    backdrop-filter:
        blur(14px);
}


.connection-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #36ca7d;

    box-shadow:
        0 0 0 4px
        rgba(
            54,
            202,
            125,
            0.15
        );

    animation:
        connectedPulse
        1.6s ease-in-out
        infinite;
}


.scroll-indicator {
    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 20px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    background: transparent;

    color: #777;

    cursor: pointer;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    margin-bottom: 42px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}


.section-heading h2 {
    max-width: 700px;

    font-size:
        clamp(
            42px,
            4.2vw,
            61px
        );

    line-height: 0.98;

    letter-spacing: -3px;
}


.section-heading > p {
    max-width: 430px;

    color: #7b7b7b;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products-section {
    padding:
        115px
        0;

    background: white;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 18px;
}


.product-card {
    min-height: 420px;

    padding: 16px;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        var(--border);

    border-radius: 23px;

    background: white;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.product-card:hover {
    transform:
        translateY(-7px);

    border-color:
        #dddddd;

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


.product-image-wrap {
    height: 245px;

    position: relative;

    overflow: hidden;

    border-radius: 17px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #faf4f7,
            #f5f5f5
        );
}


.product-image-wrap img {
    width: 88%;
    height: 88%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 17px
            rgba(
                0,
                0,
                0,
                0.13
            )
        );

    transition:
        transform 0.3s ease;
}


.product-card:hover
.product-image-wrap img {
    transform:
        scale(1.05)
        rotate(-2deg);
}


.product-tag {
    position: absolute;

    top: 12px;
    left: 12px;

    padding:
        6px
        10px;

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            0.86
        );

    color: var(--pink);

    font-size: 9px;

    font-weight: 800;

    backdrop-filter:
        blur(10px);
}


.product-info {
    flex: 1;

    padding:
        18px
        3px
        2px;

    display: flex;

    flex-direction: column;
}


.product-info h3 {
    font-size: 18px;
}


.product-subtitle {
    margin-top: 6px;

    color: #858585;

    font-size: 12px;

    line-height: 1.45;
}


.price-row {
    margin-top: 13px;

    display: flex;

    align-items: center;

    gap: 9px;
}


.price-row strong {
    font-size: 18px;
}


.price-row span {
    color: #aaa;

    font-size: 12px;

    text-decoration:
        line-through;
}


.quick-button {
    width: 100%;
    height: 45px;

    margin-top: auto;

    border-radius: 999px;

    background: #171717;

    color: white;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.quick-button:hover {
    transform:
        translateY(-2px);

    background: var(--pink);
}


/* =========================================================
   FEATURE
   ========================================================= */

.feature-section {
    padding:
        110px
        0;

    overflow: hidden;

    background: #15151b;

    color: white;
}


.feature-grid {
    min-height: 600px;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 90px;
}


.feature-visual {
    height: 540px;

    position: relative;

    display: grid;

    place-items: center;
}


.feature-circle {
    position: absolute;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.13
        );

    border-radius: 50%;

    animation:
        featureCircle
        4s ease-in-out
        infinite;
}


.circle-1 {
    width: 470px;
    height: 470px;
}


.circle-2 {
    width: 340px;
    height: 340px;

    animation-delay:
        0.4s;
}


.circle-3 {
    width: 210px;
    height: 210px;

    animation-delay:
        0.8s;
}


.feature-device {
    width: 95px;
    height: 175px;

    position: absolute;

    border-radius:
        45px
        45px
        33px
        33px;

    display: grid;

    place-items: center;

    box-shadow:
        0 30px 60px
        rgba(
            0,
            0,
            0,
            0.3
        );
}


.device-a {
    left: 20%;

    background:
        linear-gradient(
            145deg,
            #ff3889,
            #dd0060
        );

    transform:
        rotate(-17deg);
}


.device-b {
    right: 20%;

    background:
        linear-gradient(
            145deg,
            #555661,
            #141419
        );

    transform:
        rotate(17deg);
}


.feature-device span {
    width: 18px;
    height: 18px;

    border:
        2px solid
        rgba(
            255,
            255,
            255,
            0.7
        );

    border-radius: 50%;
}


.connection-particles {
    width: 220px;

    position: absolute;

    display: flex;

    justify-content:
        space-between;
}


.connection-particles i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 16px
        var(--pink);

    animation:
        particleBlink
        1.3s ease-in-out
        infinite;
}


.connection-particles i:nth-child(2) {
    animation-delay:
        0.2s;
}


.connection-particles i:nth-child(3) {
    animation-delay:
        0.4s;
}


.connection-particles i:nth-child(4) {
    animation-delay:
        0.6s;
}


.connection-particles i:nth-child(5) {
    animation-delay:
        0.8s;
}


.feature-copy h2 {
    max-width: 600px;

    font-size:
        clamp(
            55px,
            5vw,
            75px
        );

    line-height: 0.94;

    letter-spacing: -4px;
}


.feature-copy > p {
    max-width: 520px;

    margin-top: 25px;

    color: #a0a0a5;

    font-size: 16px;

    line-height: 1.7;
}


.feature-list {
    margin-top: 32px;

    display: grid;

    gap: 15px;
}


.feature-list > div {
    display: flex;

    align-items: center;

    gap: 15px;
}


.feature-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background:
        rgba(
            255,
            31,
            118,
            0.13
        );

    color: var(--pink);
}


.feature-list strong,
.feature-list small {
    display: block;
}


.feature-list strong {
    font-size: 14px;
}


.feature-list small {
    margin-top: 3px;

    color: #77777e;

    font-size: 11px;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.categories-section {
    padding:
        115px
        0;

    background: #fafafa;
}


.category-tabs {
    margin-bottom: 32px;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.category-tab {
    min-height: 43px;

    padding: 0 20px;

    border:
        1px solid
        #dedede;

    border-radius: 999px;

    background: white;

    color: #444;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition:
        all 0.2s ease;
}


.category-tab:hover {
    transform:
        translateY(-2px);
}


.category-tab.active {
    border-color:
        #171717;

    background: #171717;

    color: white;
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 17px;
}


/* =========================================================
   APP
   ========================================================= */

.app-section {
    padding:
        105px
        0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8edf3,
            #f1e9fa
        );
}


.app-grid {
    min-height: 620px;

    display: grid;

    grid-template-columns:
        0.85fr
        1fr;

    align-items: center;

    gap: 80px;
}


.app-copy h2 {
    max-width: 570px;

    font-size:
        clamp(
            55px,
            5vw,
            75px
        );

    line-height: 0.94;

    letter-spacing: -4px;
}


.app-copy > p {
    max-width: 500px;

    margin-top: 25px;

    color: #727272;

    font-size: 16px;

    line-height: 1.7;
}


.app-downloads {
    margin-top: 30px;

    display: flex;

    gap: 10px;
}


.app-downloads button {
    min-height: 57px;

    padding: 0 21px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #161616;

    color: white;

    cursor: pointer;
}


.app-downloads i {
    font-size: 22px;
}


.app-downloads span {
    display: flex;

    flex-direction: column;

    align-items:
        flex-start;

    font-weight: 700;
}


.app-downloads small {
    color: #999;

    font-size: 8px;

    font-weight: 500;
}


.phone-stage {
    min-height: 600px;

    position: relative;

    display: grid;

    place-items: center;
}


.phone-background {
    width: 470px;
    height: 470px;

    position: absolute;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff448e,
            #9c70df
        );

    box-shadow:
        0 40px 80px
        rgba(
            130,
            75,
            160,
            0.24
        );
}


.phone {
    width: 280px;
    height: 555px;

    position: relative;

    z-index: 4;

    padding: 10px;

    border:
        5px solid
        #292929;

    border-radius: 51px;

    background: #101010;

    box-shadow:
        0 45px 85px
        rgba(
            0,
            0,
            0,
            0.27
        );

    animation:
        phoneFloat
        5s ease-in-out
        infinite;
}


.phone-island {
    width: 86px;
    height: 21px;

    position: absolute;

    z-index: 10;

    top: 16px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 999px;

    background: #000;
}


.phone-interface {
    height: 100%;

    padding:
        65px
        23px
        22px;

    border-radius: 39px;

    background:
        linear-gradient(
            180deg,
            #23232b,
            #141418
        );

    color: white;
}


.phone-logo {
    width: 56px;
    height: 56px;

    margin:
        0
        auto
        27px;

    border-radius: 17px;

    display: grid;

    place-items: center;

    background: var(--pink);

    font-size: 23px;

    font-weight: 800;

    box-shadow:
        0 12px 35px
        rgba(
            255,
            31,
            118,
            0.28
        );
}


.phone-status {
    margin-bottom: 42px;

    text-align: center;
}


.phone-status span {
    display: block;

    color: #777;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.phone-status strong {
    display: block;

    margin-top: 5px;

    font-size: 18px;
}


.intensity-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #999;

    font-size: 12px;
}


.intensity-row strong {
    color: white;

    font-size: 16px;
}


.intensity-slider {
    width: 100%;

    margin-top: 17px;

    accent-color: var(--pink);

    cursor: pointer;
}


.phone-patterns {
    margin-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 6px;
}


.phone-pattern {
    padding: 10px 4px;

    border:
        1px solid
        #34343a;

    border-radius: 9px;

    background: #25252b;

    color: #888;

    font-size: 9px;

    cursor: pointer;
}


.phone-pattern.active {
    border-color:
        var(--pink);

    background:
        rgba(
            255,
            31,
            118,
            0.14
        );

    color: white;
}


.phone-main-button {
    width: 66px;
    height: 66px;

    margin:
        55px
        auto
        0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--pink);

    color: white;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 14px 35px
        rgba(
            255,
            31,
            118,
            0.3
        );

    transition:
        all 0.2s ease;
}


.phone-main-button.off {
    background: #35353c;

    box-shadow: none;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.community-section {
    padding:
        110px
        0;

    background: white;
}


.reviews {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 18px;
}


.review {
    min-height: 235px;

    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    background: white;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


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

    box-shadow:
        0 20px 45px
        rgba(
            0,
            0,
            0,
            0.07
        );
}


.stars {
    margin-bottom: 23px;

    color: var(--pink);

    letter-spacing: 3px;
}


.review p {
    color: #333;

    font-size: 16px;

    line-height: 1.65;
}


.review > span {
    display: block;

    margin-top: 25px;

    color: #999;

    font-size: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding:
        75px
        0
        25px;

    background: #121212;

    color: white;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        repeat(
            3,
            0.65fr
        );

    gap: 50px;
}


.footer-logo {
    color: #ff0a72;

    font-family:
        "Michroma",
        sans-serif;

    font-size: 25px;

    font-weight: 400;

    letter-spacing: -1.7px;

    text-decoration: none;

    text-transform: uppercase;

    transform:
        scaleX(1.05);

    transform-origin: left center;

    display: inline-block;
}


.footer-brand p {
    max-width: 260px;

    margin-top: 15px;

    color: #777;

    font-size: 12px;

    line-height: 1.6;
}


.footer h4 {
    margin-bottom: 15px;

    font-size: 12px;
}


.footer-grid > div:not(.footer-brand)
a {
    display: block;

    margin-bottom: 10px;

    color: #777;

    font-size: 11px;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.footer-grid > div:not(.footer-brand)
a:hover {
    color: white;
}


.footer-bottom {
    margin-top: 60px;

    padding-top: 20px;

    border-top:
        1px solid
        #2a2a2a;

    display: flex;

    justify-content:
        space-between;

    color: #666;

    font-size: 10px;
}


/* =========================================================
   MODAL
   ========================================================= */

.quick-modal {
    position: fixed;

    z-index: 3000;

    inset: 0;

    padding: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(
            8,
            8,
            12,
            0.65
        );

    backdrop-filter:
        blur(12px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.quick-modal.open {
    opacity: 1;

    visibility: visible;
}


.quick-modal-panel {
    width:
        min(
            900px,
            100%
        );

    position: relative;

    padding: 26px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 35px;

    border-radius: 27px;

    background: white;

    transform:
        translateY(20px)
        scale(0.97);

    transition:
        transform 0.25s ease;
}


.quick-modal.open
.quick-modal-panel {
    transform:
        translateY(0)
        scale(1);
}


.modal-close {
    width: 41px;
    height: 41px;

    position: absolute;

    z-index: 5;

    top: 14px;
    right: 14px;

    border-radius: 50%;

    background: #f0f0f0;

    color: #333;

    font-size: 25px;

    cursor: pointer;
}


.modal-product-visual {
    height: 420px;

    border-radius: 20px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #f8edf3,
            #f4f4f4
        );
}


.modal-product-visual img {
    width: 90%;
    height: 90%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 25px
            rgba(
                0,
                0,
                0,
                0.15
            )
        );
}


.modal-product-info {
    padding-right: 20px;
}


.modal-product-info h2 {
    font-size: 43px;

    line-height: 1;

    letter-spacing: -2px;
}


.modal-product-info > p {
    margin-top: 17px;

    color: #777;

    font-size: 14px;

    line-height: 1.65;
}


.modal-price-row {
    margin-top: 24px;

    display: flex;

    align-items: center;

    gap: 13px;
}


.modal-price-row strong {
    font-size: 28px;
}


.modal-price-row span {
    color: #999;

    font-size: 13px;

    text-decoration:
        line-through;
}


.modal-cart-button {
    margin-top: 25px;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast {
    position: fixed;

    z-index: 4000;

    right: 25px;
    bottom: 25px;

    padding:
        13px
        22px;

    border-radius: 999px;

    background: #171717;

    color: white;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 14px 40px
        rgba(
            0,
            0,
            0,
            0.2
        );

    opacity: 0;

    transform:
        translateY(15px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.toast.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes lushFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-7deg);
    }

    50% {
        transform:
            translateY(-17px)
            rotate(-4deg);
    }
}


@keyframes orbitPulse {

    0%,
    100% {
        opacity: 0.65;

        transform:
            scale(0.96);
    }

    50% {
        opacity: 1;

        transform:
            scale(1.035);
    }
}


@keyframes floatingCardA {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-11px);
    }
}


@keyframes floatingCardB {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(10px);
    }
}


@keyframes signalBar {

    from {
        transform:
            scaleY(0.55);
    }

    to {
        transform:
            scaleY(1);
    }
}


@keyframes miniWave {

    from {
        transform:
            scaleY(0.55);
    }

    to {
        transform:
            scaleY(1);
    }
}


@keyframes connectedPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}


@keyframes featureCircle {

    0%,
    100% {
        opacity: 0.35;

        transform:
            scale(0.95);
    }

    50% {
        opacity: 0.8;

        transform:
            scale(1.025);
    }
}


@keyframes particleBlink {

    0%,
    100% {
        opacity: 0.2;

        transform:
            scale(0.7);
    }

    50% {
        opacity: 1;

        transform:
            scale(1.25);
    }
}


@keyframes phoneFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-1deg);
    }

    50% {
        transform:
            translateY(-14px)
            rotate(1deg);
    }
}


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

@media
(max-width: 1050px) {

    .desktop-nav {
        gap: 20px;
    }


    .hero-grid {
        grid-template-columns:
            0.95fr
            1fr;
    }


    .hero-product {
        transform:
            scale(0.88);
    }


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


@media
(max-width: 820px) {

    .site-header {
        height: 68px;
    }


    .header-inner {
        grid-template-columns:
            1fr
            auto;
    }


    .desktop-nav {
        display: none;
    }


    .hero,
    .hero-grid {
        min-height: 950px;
    }


    .hero-grid {
        padding-top: 55px;

        grid-template-columns:
            1fr;
    }


    .hero-product {
        min-height: 520px;

        transform:
            scale(0.78);

        margin-top: -40px;
    }


    .feature-grid,
    .app-grid {
        grid-template-columns:
            1fr;
    }


    .feature-copy {
        order: -1;
    }


    .section-heading {
        align-items:
            flex-start;

        flex-direction: column;
    }


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


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


@media
(max-width: 560px) {

    .container {
        width:
            calc(
                100% - 30px
            );
    }


    .store-button {
        display: none;
    }


    .hero-copy h1 {
        font-size: 53px;

        letter-spacing:
            -3px;
    }


    .hero-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .hero-actions button {
        width: 100%;
    }


    .hero-stats {
        gap: 25px;
    }


    .hero-product {
        transform:
            scale(0.62);

        margin-left: -10px;
    }


    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }


    .app-downloads {
        flex-direction: column;
    }


    .app-downloads button {
        width: 100%;

        justify-content:
            center;
    }


    .phone-stage {
        transform:
            scale(0.83);

        margin:
            -40px
            0;
    }


    .quick-modal-panel {
        max-height: 90vh;

        overflow-y: auto;

        grid-template-columns: 1fr;
    }


    .modal-product-visual {
        height: 280px;
    }


    .modal-product-info h2 {
        font-size: 34px;
    }


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

/* =========================================================
   REMOTE APP SHOWCASE
   ========================================================= */

.remote-app-section {
    min-height: 820px;

    padding:
        90px
        0;

    overflow: hidden;

    background:
        #ffffff;
}


.remote-app-grid {
    min-height: 680px;

    display: grid;

    grid-template-columns:
        0.82fr
        1.18fr;

    align-items: center;

    gap: 70px;
}


/* LEFT */

.remote-app-copy {
    padding-left: 35px;
}


.remote-app-eyebrow {
    display: block;

    margin-bottom: 15px;

    color: var(--pink);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.remote-app-copy h2 {
    margin: 0;

    color: #333333;

    font-size:
        clamp(
            58px,
            5vw,
            82px
        );

    line-height: 1.05;

    letter-spacing:
        -4px;
}


.remote-app-copy > p {
    max-width: 570px;

    margin-top: 30px;

    color: #686868;

    font-size: 22px;

    line-height: 1.45;
}


.download-label {
    margin-top: 62px;

    color: #777;

    font-size: 15px;
}


.download-platforms {
    margin-top: 13px;

    display: flex;

    gap: 18px;
}


.platform-button {
    width: 58px;
    height: 58px;

    border:
        1px solid
        #cfcfcf;

    border-radius: 8px;

    display: grid;

    place-items: center;

    background: white;

    color: #111;

    font-size: 29px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.platform-button:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--pink);

    box-shadow:
        0 10px 25px
        rgba(
            0,
            0,
            0,
            0.1
        );
}


.remote-learn-button {
    width: 205px;
    height: 58px;

    margin-top: 35px;

    border-radius: 8px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background:
        var(--pink);

    color: white;

    font-size: 17px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.remote-learn-button:hover {
    transform:
        translateY(-3px);

    background:
        var(--pink-dark);

    box-shadow:
        0 15px 30px
        rgba(
            255,
            31,
            118,
            0.22
        );
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.remote-app-visual {
    min-height: 700px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}


.remote-pink-glow {
    width: 650px;
    height: 650px;

    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                255,
                213,
                230,
                0.7
            ),
            rgba(
                255,
                238,
                245,
                0.42
            )
            55%,
            transparent
            72%
        );
}


/* =========================================================
   PHONE
   ========================================================= */

.remote-phone {
    width: 290px;
    height: 590px;

    position: relative;

    z-index: 5;

    padding: 7px;

    border:
        4px solid
        #222;

    border-radius: 48px;

    background:
        #111;

    box-shadow:
        0 32px 70px
        rgba(
            0,
            0,
            0,
            0.25
        );

    animation:
        remotePhoneFloat
        5s
        ease-in-out
        infinite;
}


.remote-phone-island {
    width: 88px;
    height: 25px;

    position: absolute;

    z-index: 20;

    top: 14px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius:
        999px;

    background:
        #080808;
}


.remote-phone-screen {
    height: 100%;

    position: relative;

    overflow: hidden;

    padding:
        21px
        13px
        11px;

    border-radius:
        39px;

    background:
        #f9f9fb;
}


.remote-statusbar {
    height: 25px;

    padding:
        0
        6px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color:
        #171717;

    font-size: 8px;
}


.remote-statusbar div {
    display: flex;

    align-items: center;

    gap: 5px;
}


.remote-statusbar span {
    padding:
        2px
        4px;

    border-radius:
        5px;

    background:
        #111;

    color: white;

    font-size: 6px;
}


.remote-phone-title {
    margin:
        4px
        7px
        15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    font-size: 11px;
}


.remote-phone-title > div {
    display: flex;

    gap: 6px;
}


.round-small {
    width: 22px;
    height: 22px;

    border-radius:
        50%;

    display: grid;

    place-items: center;

    background: white;

    color: #555;

    box-shadow:
        0 3px 8px
        rgba(
            0,
            0,
            0,
            0.07
        );
}


.pink-dot::after {
    content: "";

    width: 7px;
    height: 7px;

    border-radius:
        50%;

    background:
        var(--pink);
}


/* =========================================================
   PHONE CONTENT
   ========================================================= */

.app-dashboard {
    display: grid;

    gap: 10px;
}


.dashboard-item {
    min-height: 67px;

    padding:
        11px;

    border-radius:
        16px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:
        white;

    box-shadow:
        0 5px 15px
        rgba(
            0,
            0,
            0,
            0.045
        );
}


.dashboard-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius:
        12px;

    display: grid;

    place-items: center;

    color: white;

    font-size: 13px;
}


.dashboard-icon.purple,
.floating-app-icon.purple {
    background:
        linear-gradient(
            145deg,
            #706dff,
            #9f5cf1
        );
}


.dashboard-icon.pink,
.floating-app-icon.pink {
    background:
        linear-gradient(
            145deg,
            #ff6a94,
            #ff95c3
        );
}


.dashboard-icon.blue,
.floating-app-icon.blue {
    background:
        linear-gradient(
            145deg,
            #417fff,
            #785eff
        );
}


.dashboard-icon.music {
    background:
        linear-gradient(
            145deg,
            #8a42e9,
            #ff6f9b
        );
}


.dashboard-item strong {
    display: block;

    color: #353535;

    font-size: 10px;
}


.dashboard-item span {
    display: block;

    margin-top: 3px;

    color: #aaa;

    font-size: 7px;
}


.dashboard-music {
    min-height: 130px;

    padding:
        13px;

    border-radius:
        17px;

    background:
        white;

    box-shadow:
        0 5px 15px
        rgba(
            0,
            0,
            0,
            0.045
        );
}


.music-heading {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 10px;
}


.music-controls {
    margin-top: 21px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    color: #333;

    font-size: 10px;
}


.music-controls button {
    width: 37px;
    height: 37px;

    border-radius:
        50%;

    display: grid;

    place-items: center;

    background:
        #f0f1f5;

    color: #222;

    cursor: pointer;
}


.remote-bottom-nav {
    height: 45px;

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 5px;

    display: flex;

    align-items: center;
    justify-content:
        space-around;

    background:
        rgba(
            249,
            249,
            251,
            0.95
        );

    color: #777;

    font-size: 11px;
}


.remote-bottom-nav .active {
    color: var(--pink);
}


/* =========================================================
   FLOATING FEATURE CARDS
   ========================================================= */

.remote-floating-card {
    position: absolute;

    z-index: 10;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.03
        );

    border-radius:
        20px;

    background:
        rgba(
            255,
            255,
            255,
            0.95
        );

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 18px 55px
        rgba(
            0,
            0,
            0,
            0.11
        );
}


.remote-feature-card {
    width: 300px;

    top: 125px;
    right: -5px;

    padding:
        19px;

    display: flex;

    align-items: center;

    gap: 13px;

    animation:
        remoteCardFloatA
        4.3s
        ease-in-out
        infinite;
}


.floating-app-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius:
        14px;

    display: grid;

    place-items: center;

    color: white;

    font-size: 16px;
}


.remote-floating-card strong {
    display: block;

    color: #383838;

    font-size: 13px;
}


.remote-floating-card span {
    display: block;

    margin-top: 4px;

    color: #a1a1a1;

    font-size: 8px;
}


.patterns-feature-card {
    width: 305px;

    top: 230px;
    left: -55px;

    padding:
        19px;

    animation:
        remoteCardFloatB
        5s
        ease-in-out
        infinite;
}


.floating-card-heading {
    display: flex;

    align-items: center;

    gap: 12px;
}


.floating-player {
    margin-top: 18px;

    display: flex;

    align-items: center;
    justify-content:
        space-between;
}


.floating-player > span {
    color:
        var(--pink);

    font-size: 8px;
}


.floating-player > div {
    display: flex;

    align-items: center;

    gap: 17px;

    color: #333;

    font-size: 10px;
}


.floating-player button {
    width: 39px;
    height: 39px;

    border-radius:
        50%;

    display: grid;

    place-items: center;

    background:
        #f2f2f4;

    color: #333;

    cursor: pointer;
}


.link-feature-card {
    width: 270px;

    right: -50px;
    bottom: 140px;

    padding:
        18px;

    display: flex;

    align-items: center;

    gap: 13px;

    animation:
        remoteCardFloatA
        5.3s
        ease-in-out
        infinite;
}


/* =========================================================
   PEOPLE
   ========================================================= */

.remote-person {
    position: absolute;

    z-index: 8;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: #555;

    font-size: 9px;

    font-weight: 600;
}


.remote-person > div {
    width: 45px;
    height: 45px;

    border:
        4px solid
        #92bbff;

    border-radius:
        50%;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #ffd3bd,
            #e7a586
        );

    color: #555;

    font-size: 13px;

    font-weight: 800;
}


.remote-person-left {
    left: 0;
    bottom: 110px;
}


.remote-person-right {
    right: 0;
    bottom: 25px;
}


.remote-person-right > div {
    border-color:
        #ff5e91;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes remotePhoneFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(0.5deg);
    }
}


@keyframes remoteCardFloatA {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }
}


@keyframes remoteCardFloatB {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(9px);
    }
}


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

@media
(max-width: 1050px) {

    .remote-app-grid {
        grid-template-columns:
            0.8fr
            1.2fr;
    }


    .remote-app-visual {
        transform:
            scale(0.85);
    }


    .remote-app-copy h2 {
        font-size: 58px;
    }

}


@media
(max-width: 800px) {

    .remote-app-section {
        padding:
            75px
            0
            30px;
    }


    .remote-app-grid {
        grid-template-columns:
            1fr;
    }


    .remote-app-copy {
        padding: 0;

        text-align: center;
    }


    .remote-app-copy > p {
        margin-left: auto;
        margin-right: auto;
    }


    .download-platforms {
        justify-content: center;
    }


    .remote-app-visual {
        min-height: 690px;

        margin-top: 20px;

        transform:
            scale(0.82);
    }

}


@media
(max-width: 520px) {

    .remote-app-copy h2 {
        font-size: 47px;

        letter-spacing:
            -2.5px;
    }


    .remote-app-copy > p {
        font-size: 17px;
    }


    .remote-app-visual {
        width: 720px;

        left: 50%;

        margin-left: -360px;

        transform:
            scale(0.58);
    }

}

/* =========================================================
   HERO SLIDER V2
   ========================================================= */

.hero {
    --hero-color: #ff1f76;
    --hero-color-soft: #ff8eb7;

    transition:
        background 0.65s ease;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.hero-copy {
    position: relative;

    z-index: 10;
}


.hero-copy h1 {
    display: flex;

    flex-direction: column;
}


.hero-product-name {
    display: block;

    color: #171717;
}


.hero-product-tagline {
    display: block;

    color:
        var(--hero-color) !important;

    transition:
        color 0.45s ease;
}


.hero-product-link {
    text-decoration: none;

    background:
        var(--hero-color);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.45s ease;
}


.hero-product-link:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            0.12
        );
}


/* =========================================================
   PRODUCT IMAGE STAGE
   ========================================================= */

.hero-image-stage {
    width: 100%;
    height: 100%;

    position: absolute;

    z-index: 5;

    inset: 0;

    display: grid;

    place-items: center;

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
}


.hero-image-stage.is-leaving {
    opacity: 0;

    transform:
        translateX(55px)
        scale(0.94);
}


.hero-image-stage.is-entering {
    animation:
        heroProductEnter
        0.55s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


/* =========================================================
   DIFFERENT PRODUCT SIZES
   ========================================================= */

.lush-image {
    width:
        min(
            610px,
            90%
        );

    max-height: 560px;

    transition:
        width 0.45s ease,
        max-height 0.45s ease,
        filter 0.45s ease;
}


.hero[data-product="lush4"]
.lush-image {
    width:
        min(
            610px,
            90%
        );

    max-height: 560px;
}


.hero[data-product="domi2"]
.lush-image {
    width:
        min(
            400px,
            66%
        );

    max-height: 570px;
}


.hero[data-product="ferri"]
.lush-image {
    width:
        min(
            500px,
            78%
        );

    max-height: 470px;
}


.hero[data-product="nora"]
.lush-image {
    width:
        min(
            430px,
            68%
        );

    max-height: 570px;
}


/* =========================================================
   HALO
   ========================================================= */

.product-halo {
    background:
        linear-gradient(
            145deg,
            var(--hero-color),
            var(--hero-color-soft)
        );

    transition:
        background 0.6s ease,
        box-shadow 0.6s ease;
}


/* =========================================================
   FLOATING CARD COLORS
   ========================================================= */

.hero
.floating-label {
    color:
        var(--hero-color);

    transition:
        color 0.4s ease;
}


.hero
.signal-bars i,
.hero
.mini-wave span {
    background:
        var(--hero-color);

    transition:
        background 0.4s ease;
}


/* =========================================================
   ARROWS
   ========================================================= */

.hero-slider-arrow {
    width: 58px;
    height: 58px;

    position: absolute;

    z-index: 30;

    top: 50%;

    transform:
        translateY(-50%);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.7
        );

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        rgba(
            255,
            255,
            255,
            0.52
        );

    color: #555;

    font-size: 16px;

    cursor: pointer;

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            0.06
        );

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


.hero-slider-arrow:hover {
    transform:
        translateY(-50%)
        scale(1.08);

    background: white;

    color:
        var(--hero-color);

    box-shadow:
        0 16px 35px
        rgba(
            0,
            0,
            0,
            0.1
        );
}


.hero-slider-prev {
    left: 30px;
}


.hero-slider-next {
    right: 30px;
}


/* =========================================================
   DOT NAVIGATION
   ========================================================= */

.hero-slider-dots {
    position: absolute;

    z-index: 35;

    left: 50%;
    bottom: 64px;

    transform:
        translateX(-50%);

    padding: 5px;

    display: flex;

    align-items: center;

    gap: 3px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.7
        );

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            0.42
        );

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 8px 25px
        rgba(
            0,
            0,
            0,
            0.05
        );
}


.hero-dot {
    width: 36px;
    height: 32px;

    padding: 0;

    border-radius: 999px;

    background: transparent;

    color:
        rgba(
            50,
            50,
            50,
            0.55
        );

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}


.hero-dot:hover {
    color: #111;
}


.hero-dot.active {
    width: 47px;

    background: white;

    color:
        var(--hero-color);

    box-shadow:
        0 5px 15px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


/* =========================================================
   TEXT CHANGE ANIMATION
   ========================================================= */

.hero-copy.hero-copy-changing {
    animation:
        heroTextChange
        0.5s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


/* =========================================================
   PRODUCT SPECIFIC BACKGROUNDS
   ========================================================= */

.hero[data-product="lush4"] {
    --hero-color: #ff1f76;
    --hero-color-soft: #ff90b7;

    background:
        linear-gradient(
            120deg,
            #fff9fb 0%,
            #fce7ef 48%,
            #f6d8e5 100%
        );
}


.hero[data-product="domi2"] {
    --hero-color: #25252c;
    --hero-color-soft: #747480;

    background:
        linear-gradient(
            120deg,
            #fbfbfc 0%,
            #ececef 50%,
            #dadbe0 100%
        );
}


.hero[data-product="ferri"] {
    --hero-color: #ff286f;
    --hero-color-soft: #ff9dbd;

    background:
        linear-gradient(
            120deg,
            #fff9fb 0%,
            #ffe6ef 52%,
            #f8cedd 100%
        );
}


.hero[data-product="nora"] {
    --hero-color: #f21975;
    --hero-color-soft: #fe8fb9;

    background:
        linear-gradient(
            120deg,
            #fff8fb 0%,
            #fbe4ee 50%,
            #f5ccdE 100%
        );
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes heroProductEnter {

    from {
        opacity: 0;

        transform:
            translateX(-55px)
            scale(0.94);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }
}


@keyframes heroTextChange {

    0% {
        opacity: 0;

        transform:
            translateY(18px);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media
(max-width: 820px) {

    .hero-slider-arrow {
        width: 46px;
        height: 46px;

        top: 67%;
    }


    .hero-slider-prev {
        left: 12px;
    }


    .hero-slider-next {
        right: 12px;
    }


    .hero-slider-dots {
        bottom: 55px;
    }

}


@media
(max-width: 560px) {

    .hero-slider-arrow {
        width: 42px;
        height: 42px;

        top: 70%;
    }


    .hero-dot {
        width: 30px;
        height: 29px;
    }


    .hero-dot.active {
        width: 40px;
    }


    .hero[data-product="domi2"]
    .lush-image {
        width: 370px;
    }


    .hero[data-product="ferri"]
    .lush-image {
        width: 430px;
    }


    .hero[data-product="nora"]
    .lush-image {
        width: 380px;
    }

}

/* =========================================================
   DESKTOP UPGRADE PACK
   HEADER + MEGA MENU + SEARCH + CATEGORIES + APP
   ========================================================= */


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

.site-header {
    overflow: visible;
}


.header-inner {
    position: relative;
}


.desktop-nav {
    height: 100%;
}


.desktop-nav > a,
.nav-main-button {
    height: 100%;

    position: relative;

    padding:
        0;

    display: flex;

    align-items: center;

    gap: 7px;

    border: 0;

    background: transparent;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.2s ease;
}


.desktop-nav > a::after,
.nav-main-button::after {
    content: "";

    height: 2px;

    position: absolute;

    left: 50%;
    right: 50%;
    bottom: 18px;

    border-radius: 999px;

    background:
        var(--pink);

    transition:
        left 0.2s ease,
        right 0.2s ease;
}


.desktop-nav > a:hover,
.nav-main-button:hover,
.nav-products-wrap.menu-open
.nav-main-button {
    color:
        var(--pink);
}


.desktop-nav > a:hover::after,
.nav-main-button:hover::after,
.nav-products-wrap.menu-open
.nav-main-button::after {
    left: 0;
    right: 0;
}


.nav-main-button i {
    font-size: 9px;

    transition:
        transform 0.25s ease;
}


.nav-products-wrap.menu-open
.nav-main-button i {
    transform:
        rotate(180deg);
}


.nav-products-wrap {
    height: 100%;

    position: relative;

    display: flex;

    align-items: center;
}


/* =========================================================
   PRODUCTS MEGA MENU
   ========================================================= */

.products-mega-menu {
    width:
        min(
            1040px,
            calc(100vw - 70px)
        );

    position: absolute;

    z-index: 2500;

    top:
        calc(100% - 1px);

    left: 50%;

    padding-top: 13px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(-10px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}


.nav-products-wrap:hover
.products-mega-menu,
.nav-products-wrap.menu-open
.products-mega-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.mega-menu-inner {
    padding:
        28px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.07
        );

    border-radius:
        25px;

    background:
        rgba(
            255,
            255,
            255,
            0.98
        );

    backdrop-filter:
        blur(22px);

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            0.15
        );
}


.mega-menu-top {
    margin-bottom: 22px;

    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 20px;
}


.mega-eyebrow {
    color:
        var(--pink);

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        1.6px;
}


.mega-menu-top h3 {
    margin-top: 5px;

    font-size: 29px;

    letter-spacing:
        -1.5px;
}


.mega-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        11px
        16px;

    border-radius:
        999px;

    background:
        #f4f4f5;

    color: #333;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.mega-view-all:hover {
    transform:
        translateY(-2px);

    background:
        #171717;

    color:
        white;
}


.mega-product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 11px;
}


.mega-product-card {
    min-width: 0;

    padding:
        12px;

    border:
        1px solid
        #ededed;

    border-radius:
        18px;

    display: block;

    background:
        #fafafa;

    text-decoration: none;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}


.mega-product-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #ffd0e1;

    background:
        white;

    box-shadow:
        0 16px 35px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


.mega-product-image {
    height: 150px;

    position: relative;

    overflow: hidden;

    border-radius:
        13px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #fff2f7,
            #f5f5f5
        );
}


.mega-product-image img {
    width: 90%;
    height: 90%;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}


.mega-product-card:hover
.mega-product-image img {
    transform:
        scale(1.07);
}


.mega-product-copy {
    padding:
        13px
        4px
        3px;
}


.mega-product-copy span {
    color:
        var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.2px;
}


.mega-product-copy strong {
    margin-top: 4px;

    display: block;

    color:
        #191919;

    font-size: 16px;
}


.mega-product-copy small {
    margin-top: 4px;

    display: block;

    overflow: hidden;

    color:
        #909090;

    font-size: 9px;

    line-height:
        1.45;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


.mega-menu-bottom {
    margin-top: 19px;

    padding-top: 18px;

    border-top:
        1px solid
        #ececec;

    display: flex;

    align-items: center;

    justify-content:
        center;

    gap: 11px;

    color:
        #8b8b8b;

    font-size: 9px;

    font-weight: 600;
}


.mega-bottom-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        var(--pink);
}


/* =========================================================
   SEARCH OVERLAY
   ========================================================= */

body.search-open {
    overflow: hidden;
}


.site-search-overlay {
    position: fixed;

    z-index: 5000;

    inset: 0;

    padding:
        105px
        28px
        28px;

    display: flex;

    justify-content: center;

    background:
        rgba(
            10,
            10,
            14,
            0.52
        );

    backdrop-filter:
        blur(17px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.site-search-overlay.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.search-shell {
    width:
        min(
            960px,
            100%
        );

    max-height:
        calc(
            100vh - 140px
        );

    align-self:
        flex-start;

    overflow-y: auto;

    padding:
        26px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.55
        );

    border-radius:
        29px;

    background:
        rgba(
            255,
            255,
            255,
            0.97
        );

    box-shadow:
        0 35px 100px
        rgba(
            0,
            0,
            0,
            0.28
        );

    transform:
        translateY(-18px)
        scale(0.98);

    transition:
        transform 0.28s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


.site-search-overlay.open
.search-shell {
    transform:
        translateY(0)
        scale(1);
}


.search-top {
    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 12px;
}


.search-field {
    height: 64px;

    padding:
        0
        20px;

    border:
        1px solid
        #e7e7e7;

    border-radius:
        17px;

    display: flex;

    align-items: center;

    gap: 14px;

    background:
        #f8f8f8;
}


.search-field i {
    color:
        var(--pink);

    font-size: 17px;
}


.search-field input {
    width: 100%;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        #171717;

    font-size: 18px;

    font-weight: 500;
}


.search-field input::placeholder {
    color:
        #aaa;
}


.search-close {
    width: 64px;
    height: 64px;

    border-radius:
        17px;

    display: grid;

    place-items: center;

    background:
        #171717;

    color:
        white;

    font-size: 17px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.search-close:hover {
    transform:
        rotate(5deg);

    background:
        var(--pink);
}


.search-heading {
    margin:
        27px
        4px
        14px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;
}


.search-heading span {
    color:
        #999;

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        1.5px;
}


.search-heading strong {
    color:
        #aaa;

    font-size: 10px;
}


.search-results {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 10px;
}


.search-product {
    min-width: 0;

    padding: 11px;

    border:
        1px solid
        #ededed;

    border-radius:
        17px;

    display: grid;

    grid-template-columns:
        105px
        1fr
        auto;

    align-items: center;

    gap: 15px;

    background:
        white;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.search-product:hover {
    transform:
        translateY(-3px);

    border-color:
        #ffc5da;

    box-shadow:
        0 13px 30px
        rgba(
            0,
            0,
            0,
            0.065
        );
}


.search-product-image {
    width: 105px;
    height: 90px;

    border-radius:
        12px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #fff0f6,
            #f5f5f5
        );
}


.search-product-image img {
    width: 90%;
    height: 90%;

    object-fit: contain;
}


.search-product-copy {
    min-width: 0;
}


.search-product-copy span {
    color:
        var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.2px;
}


.search-product-copy strong {
    margin-top: 3px;

    display: block;

    color:
        #171717;

    font-size: 17px;
}


.search-product-copy p {
    margin-top: 4px;

    overflow: hidden;

    color:
        #999;

    font-size: 9px;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.search-product-arrow {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        #f3f3f4;

    color:
        #555;

    font-size: 10px;
}


.search-empty {
    grid-column:
        1 / -1;

    padding:
        55px
        20px;

    border:
        1px dashed
        #ddd;

    border-radius:
        18px;

    color:
        #999;

    text-align: center;
}


/* =========================================================
   EXPERIENCE CATEGORIES
   ========================================================= */

.categories-section {
    padding:
        120px
        0;

    background:
        linear-gradient(
            180deg,
            #fafafa,
            #f5f5f6
        );
}


.categories-main-heading {
    margin-bottom:
        42px;
}


.experience-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 13px;
}


.experience-card.category-tab {
    min-height: 315px;

    position: relative;

    overflow: hidden;

    padding:
        23px;

    border:
        1px solid
        #e8e8e8;

    border-radius:
        25px;

    display: flex;

    flex-direction: column;

    align-items:
        flex-start;

    background:
        white;

    color:
        #171717;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.experience-card.category-tab::before {
    content: "";

    width: 180px;
    height: 180px;

    position: absolute;

    right: -80px;
    bottom: -90px;

    border-radius: 50%;

    background:
        var(--pink);

    opacity:
        0.08;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease;
}


.experience-card.category-tab:hover {
    transform:
        translateY(-7px);

    border-color:
        #ffc8db;

    box-shadow:
        0 22px 50px
        rgba(
            0,
            0,
            0,
            0.075
        );
}


.experience-card.category-tab:hover::before {
    transform:
        scale(1.4);

    opacity:
        0.12;
}


.experience-card.category-tab.active {
    border-color:
        #171717;

    background:
        #171717;

    color:
        white;

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            0.17
        );
}


.experience-card.category-tab.active::before {
    opacity:
        0.3;

    transform:
        scale(1.45);
}


.experience-number {
    position: absolute;

    top: 22px;
    right: 22px;

    color:
        #c5c5c5;

    font-size: 10px;

    font-weight: 800;
}


.experience-card.active
.experience-number {
    color:
        rgba(
            255,
            255,
            255,
            0.5
        );
}


.experience-icon {
    width: 52px;
    height: 52px;

    border-radius:
        16px;

    display: grid;

    place-items: center;

    background:
        #fff0f6;

    color:
        var(--pink);

    font-size: 17px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.experience-card:hover
.experience-icon {
    transform:
        rotate(-5deg)
        scale(1.07);
}


.experience-card.active
.experience-icon {
    background:
        var(--pink);

    color:
        white;
}


.experience-card-content {
    margin-top: auto;

    position: relative;

    z-index: 2;
}


.experience-card-content > span {
    color:
        var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.4px;
}


.experience-card.active
.experience-card-content > span {
    color:
        #ff8cb6;
}


.experience-card-content h3 {
    margin-top: 5px;

    font-size: 27px;

    letter-spacing:
        -1px;
}


.experience-card-content p {
    max-width: 210px;

    margin-top: 8px;

    color:
        #999;

    font-size: 11px;

    line-height:
        1.55;
}


.experience-card.active
.experience-card-content p {
    color:
        #9f9f9f;
}


.experience-arrow {
    width: 36px;
    height: 36px;

    position: absolute;

    right: 21px;
    bottom: 21px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        #f1f1f2;

    color:
        #555;

    font-size: 10px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.experience-card.active
.experience-arrow {
    background:
        var(--pink);

    color:
        white;
}


.experience-card:hover
.experience-arrow {
    transform:
        translateX(4px);
}


.category-results-heading {
    margin:
        65px
        0
        25px;

    padding-bottom:
        18px;

    border-bottom:
        1px solid
        #dedede;

    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;
}


.category-results-heading span {
    color:
        #999;

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.5px;
}


.category-results-heading h3 {
    margin-top: 5px;

    font-size: 31px;

    letter-spacing:
        -1.2px;
}


.category-result-count {
    padding:
        8px
        12px;

    border-radius:
        999px;

    background:
        white;

    color:
        #777 !important;

    letter-spacing:
        0 !important;
}


/* =========================================================
   APP LEFT FEATURES
   ========================================================= */

.app-feature-points {
    margin-top: 31px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.app-feature-points > div {
    padding:
        9px
        12px;

    border:
        1px solid
        #e7e7e7;

    border-radius:
        999px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background:
        #fafafa;

    color:
        #666;

    font-size: 10px;

    font-weight: 600;
}


.app-feature-points i {
    color:
        var(--pink);
}


/* =========================================================
   APP PHONE V2
   ========================================================= */

.remote-phone {
    width: 310px;
    height: 625px;
}


.remote-phone-screen {
    padding:
        21px
        13px
        12px;
}


.remote-phone-title {
    margin-bottom:
        12px;
}


.remote-phone-title > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.remote-phone-title small {
    color:
        #a2a2a2;

    font-size: 7px;

    font-weight: 500;
}


.phone-power {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        #fff0f5;

    color:
        var(--pink);

    font-size: 10px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.phone-power:hover {
    transform:
        scale(1.07);
}


.phone-power.off {
    background:
        #ececef;

    color:
        #aaa;
}


/* =========================================================
   APP MODE
   ========================================================= */

.app-mode-switch {
    margin:
        0
        5px
        10px;

    padding:
        4px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 3px;

    border-radius:
        12px;

    background:
        #eeeeF2;
}


.app-mode-button {
    min-height: 30px;

    padding:
        0
        7px;

    border-radius:
        9px;

    background:
        transparent;

    color:
        #999;

    font-size: 7px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


.app-mode-button.active {
    background:
        white;

    color:
        #222;

    box-shadow:
        0 3px 10px
        rgba(
            0,
            0,
            0,
            0.06
        );
}


/* =========================================================
   LIVE CONTROL
   ========================================================= */

.app-live-card {
    margin:
        0
        4px;

    padding:
        14px;

    border-radius:
        19px;

    background:
        white;

    box-shadow:
        0 7px 20px
        rgba(
            0,
            0,
            0,
            0.05
        );
}


.app-live-top {
    display: flex;

    align-items: center;

    justify-content:
        space-between;
}


.app-live-top > div:first-child {
    display: flex;

    flex-direction: column;
}


.app-live-top span {
    color:
        #aaa;

    font-size: 6px;

    font-weight: 800;

    letter-spacing:
        1px;
}


.app-live-top strong {
    margin-top: 3px;

    color:
        #242424;

    font-size: 24px;

    letter-spacing:
        -1px;
}


.live-indicator {
    padding:
        5px
        7px;

    border-radius:
        999px;

    display: flex;

    align-items: center;

    gap: 4px;

    background:
        #fff0f5;

    color:
        var(--pink);

    font-size: 6px;

    font-weight: 800;
}


.live-indicator i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--pink);

    animation:
        livePulse
        1.2s ease-in-out
        infinite;
}


.app-live-wave {
    height: 74px;

    margin-top: 10px;

    padding:
        5px
        3px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 3px;
}


.app-live-wave span {
    width: 100%;

    border-radius:
        999px;

    background:
        linear-gradient(
            180deg,
            #ff6a9e,
            var(--pink)
        );

    transform-origin:
        center;

    transition:
        height 0.18s ease,
        opacity 0.18s ease;

    animation:
        appWaveMove
        0.85s ease-in-out
        infinite alternate;
}


.app-live-wave span:nth-child(1) {
    animation-delay:
        0.05s;
}

.app-live-wave span:nth-child(2) {
    animation-delay:
        0.18s;
}

.app-live-wave span:nth-child(3) {
    animation-delay:
        0.3s;
}

.app-live-wave span:nth-child(4) {
    animation-delay:
        0.12s;
}

.app-live-wave span:nth-child(5) {
    animation-delay:
        0.38s;
}

.app-live-wave span:nth-child(6) {
    animation-delay:
        0.2s;
}

.app-live-wave span:nth-child(7) {
    animation-delay:
        0.46s;
}

.app-live-wave span:nth-child(8) {
    animation-delay:
        0.13s;
}

.app-live-wave span:nth-child(9) {
    animation-delay:
        0.33s;
}

.app-live-wave span:nth-child(10) {
    animation-delay:
        0.08s;
}

.app-live-wave span:nth-child(11) {
    animation-delay:
        0.28s;
}

.app-live-wave span:nth-child(12) {
    animation-delay:
        0.4s;
}


.remote-phone.power-off
.app-live-wave span {
    height:
        4px !important;

    opacity:
        0.25;

    animation-play-state:
        paused;
}


.app-intensity-slider {
    width: 100%;

    height: 4px;

    appearance: none;

    border-radius:
        999px;

    outline: none;

    background:
        linear-gradient(
            90deg,
            var(--pink)
            0%,
            var(--pink)
            62%,
            #e8e8eb
            62%,
            #e8e8eb
            100%
        );

    cursor: pointer;
}


.app-intensity-slider::-webkit-slider-thumb {
    width: 15px;
    height: 15px;

    appearance: none;

    border:
        3px solid
        white;

    border-radius: 50%;

    background:
        var(--pink);

    box-shadow:
        0 2px 8px
        rgba(
            0,
            0,
            0,
            0.18
        );
}


.phone-patterns {
    margin-top: 12px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 4px;
}


.phone-pattern {
    min-height: 27px;

    padding:
        0
        4px;

    border-radius:
        8px;

    background:
        #f3f3f5;

    color:
        #999;

    font-size: 6px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.phone-pattern:hover {
    transform:
        translateY(-1px);
}


.phone-pattern.active {
    background:
        var(--pink);

    color:
        white;
}


/* =========================================================
   MUSIC V2
   ========================================================= */

.remote-phone
.dashboard-music {
    min-height: auto;

    margin:
        9px
        4px
        0;

    padding:
        10px
        12px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;
}


.remote-phone
.music-heading > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.remote-phone
.music-heading span {
    color:
        #aaa;

    font-size: 6px;
}


.remote-phone
.music-controls {
    margin-top: 0;

    gap: 9px;
}


.remote-phone
.music-controls > i {
    color:
        #aaa;

    font-size: 7px;
}


.remote-phone
.music-controls button {
    width: 30px;
    height: 30px;
}


.dashboard-music.is-playing
.dashboard-icon.music {
    animation:
        musicIconPulse
        0.8s ease-in-out
        infinite alternate;
}


/* =========================================================
   APP BOTTOM NAV
   ========================================================= */

.remote-bottom-nav {
    height: 42px;
}


.remote-nav-button {
    width: 33px;
    height: 33px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    background:
        transparent;

    color:
        #999;

    font-size: 9px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.remote-nav-button.active {
    background:
        #fff0f5;

    color:
        var(--pink);
}


/* =========================================================
   FLOATING APP UPGRADES
   ========================================================= */

.link-feature-card {
    border: 0;

    text-align: left;

    cursor: pointer;

    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.link-feature-card:hover {
    box-shadow:
        0 25px 65px
        rgba(
            0,
            0,
            0,
            0.15
        );
}


.floating-level {
    min-width: 55px;

    padding:
        8px
        10px;

    border-radius:
        10px;

    background:
        #fff0f5;

    color:
        var(--pink);

    text-align: center;
}


.floating-level strong {
    font-size: 11px;
}


/* =========================================================
   APP ANIMATIONS
   ========================================================= */

@keyframes livePulse {

    0%,
    100% {
        opacity: 0.4;

        transform:
            scale(0.8);
    }

    50% {
        opacity: 1;

        transform:
            scale(1.2);
    }

}


@keyframes appWaveMove {

    from {
        transform:
            scaleY(0.8);
    }

    to {
        transform:
            scaleY(1.08);
    }

}


@keyframes musicIconPulse {

    from {
        transform:
            scale(0.95);
    }

    to {
        transform:
            scale(1.1);
    }

}

/* =========================================================
   HEADER V2
   ========================================================= */

.site-header {
    overflow: visible;
}

.header-inner {
    position: relative;
}

.desktop-nav {
    height: 100%;
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.desktop-nav > a,
.nav-main-button {
    height: 100%;

    position: relative;

    padding: 0;

    display: flex;

    align-items: center;

    gap: 7px;

    border: 0;

    background: transparent;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.2s ease;
}


.desktop-nav > a::after,
.nav-main-button::after {
    content: "";

    height: 2px;

    position: absolute;

    left: 50%;
    right: 50%;
    bottom: 18px;

    border-radius: 999px;

    background: var(--pink);

    transition:
        left 0.2s ease,
        right 0.2s ease;
}


.desktop-nav > a:hover,
.nav-main-button:hover {
    color: var(--pink);
}


.desktop-nav > a:hover::after,
.nav-main-button:hover::after {
    left: 0;
    right: 0;
}


.nav-main-button i {
    font-size: 9px;

    transition:
        transform 0.25s ease;
}


.nav-products-wrap {
    height: 100%;

    position: relative;

    display: flex;

    align-items: center;
}


/* =========================================================
   PRODUCTS OPEN STATE
   ========================================================= */

.nav-products-wrap.menu-open
.nav-main-button {
    color: var(--pink);
}


.nav-products-wrap.menu-open
.nav-main-button::after {
    left: 0;
    right: 0;
}


.nav-products-wrap.menu-open
.nav-main-button i {
    transform: rotate(180deg);
}


/* =========================================================
   MEGA MENU
   ========================================================= */

.products-mega-menu {
    width:
        min(
            1040px,
            calc(100vw - 70px)
        );

    position: absolute;

    z-index: 2500;

    top: calc(100% - 1px);

    left: 50%;

    padding-top: 13px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(-10px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}


.nav-products-wrap:hover
.products-mega-menu,
.nav-products-wrap.menu-open
.products-mega-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.mega-menu-inner {
    padding: 28px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.07
        );

    border-radius: 25px;

    background:
        rgba(
            255,
            255,
            255,
            0.98
        );

    backdrop-filter: blur(22px);

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            0.15
        );
}


/* =========================================================
   MEGA TOP
   ========================================================= */

.mega-menu-top {
    margin-bottom: 22px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;
}


.mega-eyebrow {
    color: var(--pink);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.mega-menu-top h3 {
    margin-top: 5px;

    font-size: 29px;

    letter-spacing: -1.5px;
}


.mega-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        11px
        16px;

    border-radius: 999px;

    background: #f4f4f5;

    color: #333;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.mega-view-all:hover {
    transform: translateY(-2px);

    background: #171717;

    color: white;
}


/* =========================================================
   MEGA PRODUCTS
   ========================================================= */

.mega-product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 11px;
}


.mega-product-card {
    min-width: 0;

    padding: 12px;

    border:
        1px solid
        #ededed;

    border-radius: 18px;

    display: block;

    background: #fafafa;

    text-decoration: none;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}


.mega-product-card:hover {
    transform: translateY(-5px);

    border-color: #ffd0e1;

    background: white;

    box-shadow:
        0 16px 35px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


.mega-product-image {
    height: 150px;

    overflow: hidden;

    border-radius: 13px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #fff2f7,
            #f5f5f5
        );
}


.mega-product-image img {
    width: 90%;
    height: 90%;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}


.mega-product-card:hover
.mega-product-image img {
    transform: scale(1.07);
}


.mega-product-copy {
    padding:
        13px
        4px
        3px;
}


.mega-product-copy span {
    color: var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.mega-product-copy strong {
    margin-top: 4px;

    display: block;

    color: #191919;

    font-size: 16px;
}


.mega-product-copy small {
    margin-top: 4px;

    display: block;

    overflow: hidden;

    color: #909090;

    font-size: 9px;

    line-height: 1.45;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   MEGA BOTTOM
   ========================================================= */

.mega-menu-bottom {
    margin-top: 19px;

    padding-top: 18px;

    border-top:
        1px solid
        #ececec;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    color: #8b8b8b;

    font-size: 9px;

    font-weight: 600;
}


.mega-bottom-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--pink);
}


/* =========================================================
   SEARCH OVERLAY
   ========================================================= */

body.search-open {
    overflow: hidden;
}


.site-search-overlay {
    position: fixed;

    z-index: 5000;

    inset: 0;

    padding:
        105px
        28px
        28px;

    display: flex;

    justify-content: center;

    background:
        rgba(
            10,
            10,
            14,
            0.52
        );

    backdrop-filter: blur(17px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.site-search-overlay.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.search-shell {
    width:
        min(
            960px,
            100%
        );

    max-height:
        calc(
            100vh - 140px
        );

    align-self: flex-start;

    overflow-y: auto;

    padding: 26px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.55
        );

    border-radius: 29px;

    background:
        rgba(
            255,
            255,
            255,
            0.97
        );

    box-shadow:
        0 35px 100px
        rgba(
            0,
            0,
            0,
            0.28
        );

    transform:
        translateY(-18px)
        scale(0.98);

    transition:
        transform 0.28s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


.site-search-overlay.open
.search-shell {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   SEARCH TOP
   ========================================================= */

.search-top {
    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 12px;
}


.search-field {
    height: 64px;

    padding:
        0
        20px;

    border:
        1px solid
        #e7e7e7;

    border-radius: 17px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #f8f8f8;
}


.search-field i {
    color: var(--pink);

    font-size: 17px;
}


.search-field input {
    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: #171717;

    font-size: 18px;

    font-weight: 500;
}


.search-field input::placeholder {
    color: #aaa;
}


.search-close {
    width: 64px;
    height: 64px;

    border-radius: 17px;

    display: grid;

    place-items: center;

    background: #171717;

    color: white;

    font-size: 17px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.search-close:hover {
    transform: rotate(5deg);

    background: var(--pink);
}


/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.search-heading {
    margin:
        27px
        4px
        14px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.search-heading span {
    color: #999;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.search-heading strong {
    color: #aaa;

    font-size: 10px;
}


.search-results {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 10px;
}


.search-product {
    min-width: 0;

    padding: 11px;

    border:
        1px solid
        #ededed;

    border-radius: 17px;

    display: grid;

    grid-template-columns:
        105px
        1fr
        auto;

    align-items: center;

    gap: 15px;

    background: white;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.search-product:hover {
    transform: translateY(-3px);

    border-color: #ffc5da;

    box-shadow:
        0 13px 30px
        rgba(
            0,
            0,
            0,
            0.065
        );
}


.search-product-image {
    width: 105px;
    height: 90px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #fff0f6,
            #f5f5f5
        );
}


.search-product-image img {
    width: 90%;
    height: 90%;

    object-fit: contain;
}


.search-product-copy {
    min-width: 0;
}


.search-product-copy span {
    color: var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.search-product-copy strong {
    margin-top: 3px;

    display: block;

    color: #171717;

    font-size: 17px;
}


.search-product-copy p {
    margin-top: 4px;

    overflow: hidden;

    color: #999;

    font-size: 9px;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.search-product-arrow {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #f3f3f4;

    color: #555;

    font-size: 10px;
}


.search-empty {
    grid-column:
        1 / -1;

    padding:
        55px
        20px;

    border:
        1px dashed
        #ddd;

    border-radius: 18px;

    color: #999;

    text-align: center;
}

/* =========================================================
   CATEGORIES V2
   ========================================================= */

.categories-section {
    padding:
        120px
        0;

    background:
        linear-gradient(
            180deg,
            #fafafa,
            #f5f5f6
        );
}


.categories-main-heading {
    margin-bottom:
        42px;
}


.categories-main-heading > p {
    max-width: 420px;

    color: #8f8f8f;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   EXPERIENCE GRID
   ========================================================= */

.experience-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 13px;
}


.experience-card.category-tab {
    min-height: 315px;

    position: relative;

    overflow: hidden;

    padding: 23px;

    border:
        1px solid
        #e8e8e8;

    border-radius:
        25px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    background: white;

    color: #171717;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.experience-card.category-tab::before {
    content: "";

    width: 180px;
    height: 180px;

    position: absolute;

    right: -80px;
    bottom: -90px;

    border-radius: 50%;

    background: var(--pink);

    opacity: 0.08;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease;
}


.experience-card.category-tab:hover {
    transform:
        translateY(-7px);

    border-color:
        #ffc8db;

    box-shadow:
        0 22px 50px
        rgba(
            0,
            0,
            0,
            0.075
        );
}


.experience-card.category-tab:hover::before {
    transform:
        scale(1.4);

    opacity: 0.12;
}


/* =========================================================
   ACTIVE CATEGORY
   ========================================================= */

.experience-card.category-tab.active {
    border-color:
        #171717;

    background:
        #171717;

    color:
        white;

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            0.17
        );
}


.experience-card.category-tab.active::before {
    opacity: 0.3;

    transform:
        scale(1.45);
}


/* =========================================================
   NUMBER
   ========================================================= */

.experience-number {
    position: absolute;

    top: 22px;
    right: 22px;

    color:
        #c5c5c5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;
}


.experience-card.active
.experience-number {
    color:
        rgba(
            255,
            255,
            255,
            0.5
        );
}


/* =========================================================
   ICON
   ========================================================= */

.experience-icon {
    width: 52px;
    height: 52px;

    border-radius:
        16px;

    display: grid;

    place-items: center;

    background:
        #fff0f6;

    color:
        var(--pink);

    font-size: 17px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.experience-card:hover
.experience-icon {
    transform:
        rotate(-5deg)
        scale(1.07);
}


.experience-card.active
.experience-icon {
    background:
        var(--pink);

    color:
        white;
}


/* =========================================================
   TEXT
   ========================================================= */

.experience-card-content {
    margin-top: auto;

    position: relative;

    z-index: 2;
}


.experience-card-content > span {
    color:
        var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.4px;
}


.experience-card.active
.experience-card-content > span {
    color:
        #ff8cb6;
}


.experience-card-content h3 {
    margin-top: 5px;

    font-size: 27px;

    letter-spacing:
        -1px;
}


.experience-card-content p {
    max-width: 210px;

    margin-top: 8px;

    color:
        #999;

    font-size: 11px;

    line-height: 1.55;
}


.experience-card.active
.experience-card-content p {
    color:
        #b6b6b6;
}


/* =========================================================
   ARROW
   ========================================================= */

.experience-arrow {
    width: 36px;
    height: 36px;

    position: absolute;

    right: 21px;
    bottom: 21px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        #f1f1f2;

    color:
        #555;

    font-size: 10px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.experience-card.active
.experience-arrow {
    background:
        var(--pink);

    color:
        white;
}


.experience-card:hover
.experience-arrow {
    transform:
        translateX(4px);
}


/* =========================================================
   RESULTS HEADING
   ========================================================= */

.category-results-heading {
    margin:
        65px
        0
        25px;

    padding-bottom:
        18px;

    border-bottom:
        1px solid
        #dedede;

    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;
}


.category-results-heading span {
    color:
        #999;

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.5px;
}


.category-results-heading h3 {
    margin-top: 5px;

    font-size: 31px;

    letter-spacing:
        -1.2px;
}


.category-result-count {
    padding:
        8px
        12px;

    border-radius:
        999px;

    background:
        white;

    color:
        #777 !important;

    letter-spacing:
        0 !important;

    box-shadow:
        0 5px 14px
        rgba(
            0,
            0,
            0,
            0.04
        );
}


/* =========================================================
   CATEGORY PRODUCT GRID
   ========================================================= */

.categories-section
.category-grid {
    margin-top: 0;
}

/* =========================================================
   MEGA MENU FIX
   ========================================================= */

.products-mega-menu {
    width:
        min(
            940px,
            calc(100vw - 80px)
        );

    position: fixed;

    top: 72px;
    left: 50%;

    padding-top: 12px;

    transform:
        translateX(-50%)
        translateY(-8px);
}


.nav-products-wrap:hover
.products-mega-menu,
.nav-products-wrap.menu-open
.products-mega-menu {
    transform:
        translateX(-50%)
        translateY(0);
}


/* PANEL */

.mega-menu-inner {
    position: relative;

    overflow: hidden;

    padding:
        25px
        25px
        18px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 28px 80px
        rgba(
            20,
            20,
            25,
            0.18
        );
}


.mega-menu-inner::before {
    content: "";

    height: 3px;

    position: absolute;

    top: 0;
    left: 80px;
    right: 80px;

    border-radius:
        0
        0
        999px
        999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink),
            transparent
        );
}


/* TOP */

.mega-menu-top {
    margin-bottom: 18px;

    align-items: center;
}


.mega-eyebrow {
    font-size: 8px;

    letter-spacing: 1.8px;
}


.mega-menu-top h3 {
    margin-top: 4px;

    font-size: 25px;

    line-height: 1;
}


.mega-view-all {
    padding:
        9px
        14px;

    border:
        1px solid
        #e9e9eb;

    background: #f8f8f9;

    font-size: 9px;
}


/* PRODUCT GRID */

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

    gap: 10px;
}


/* PRODUCT CARD */

.mega-product-card {
    padding: 9px;

    border:
        1px solid
        #e8e8eb;

    border-radius: 17px;

    background:
        #f8f8f9;

    box-shadow:
        none;
}


.mega-product-card:hover {
    transform:
        translateY(-4px);

    border-color:
        #ffbdd4;

    background:
        #ffffff;

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            0.09
        );
}


/* PRODUCT IMAGE */

.mega-product-image {
    height: 135px;

    border-radius: 13px;

    background:
        radial-gradient(
            circle at 50% 50%,
            #ffffff 0%,
            #fff3f7 58%,
            #f5f5f6 100%
        );
}


.mega-product-image img {
    width: 82%;
    height: 82%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 10px
            rgba(
                0,
                0,
                0,
                0.1
            )
        );
}


/* INDIVIDUAL PRODUCT IMAGE SIZES */

.mega-product-card:nth-child(1)
.mega-product-image img {
    width: 90%;
    height: 90%;
}


.mega-product-card:nth-child(2)
.mega-product-image img {
    width: 65%;
    height: 88%;
}


.mega-product-card:nth-child(3)
.mega-product-image img {
    width: 67%;
    height: 88%;
}


.mega-product-card:nth-child(4)
.mega-product-image img {
    width: 68%;
    height: 88%;
}


/* COPY */

.mega-product-copy {
    padding:
        10px
        5px
        5px;
}


.mega-product-copy span {
    font-size: 7px;

    letter-spacing: 1.3px;
}


.mega-product-copy strong {
    margin-top: 4px;

    font-size: 15px;

    line-height: 1.1;
}


.mega-product-copy small {
    margin-top: 5px;

    color: #8f8f94;

    font-size: 8px;
}


/* BOTTOM */

.mega-menu-bottom {
    margin-top: 15px;

    padding-top: 13px;

    border-top:
        1px solid
        #eeeeef;

    gap: 12px;

    color: #77777d;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2px;
}


.mega-bottom-dot {
    width: 4px;
    height: 4px;
}

/* =========================================================
   MEGA MENU IMAGE SIZE FIX
   ========================================================= */

.mega-product-image {
    height: 155px;
}


/* LUSH 4 */

.mega-product-card:nth-child(1)
.mega-product-image img {
    width: 76%;
    height: 76%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    object-position: center;
}


/* DOMI 2 */

.mega-product-card:nth-child(2)
.mega-product-image img {
    width: 58%;
    height: 82%;
}


/* FERRI */

.mega-product-card:nth-child(3)
.mega-product-image img {
    width: 60%;
    height: 82%;
}


/* NORA */

.mega-product-card:nth-child(4)
.mega-product-image img {
    width: 60%;
    height: 82%;
}

/* =========================================================
   REMOTE APP V2
   ========================================================= */

.remote-app-section {
    min-height: 860px;

    padding:
        110px
        0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafd 55%,
            #ffffff 100%
        );
}


.remote-app-grid {
    min-height: 700px;

    display: grid;

    grid-template-columns:
        0.82fr
        1.18fr;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.remote-app-copy {
    padding-left: 20px;
}


.remote-app-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--pink);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.remote-app-copy h2 {
    margin: 0;

    color: #252525;

    font-size:
        clamp(
            58px,
            5vw,
            82px
        );

    line-height: 0.98;

    letter-spacing: -4px;
}


.remote-app-copy > p {
    max-width: 530px;

    margin-top: 28px;

    color: #777;

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   FEATURE PILLS
   ========================================================= */

.app-feature-points {
    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.app-feature-points > div {
    min-height: 37px;

    padding:
        0
        13px;

    border:
        1px solid
        #e9e9eb;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #fafafa;

    color: #666;

    font-size: 9px;

    font-weight: 700;
}


.app-feature-points i {
    color: var(--pink);

    font-size: 9px;
}


/* =========================================================
   DOWNLOAD
   ========================================================= */

.download-label {
    margin-top: 45px;

    color: #999;

    font-size: 11px;
}


.download-platforms {
    margin-top: 11px;

    display: flex;

    gap: 10px;
}


.platform-button {
    width: 52px;
    height: 52px;

    border:
        1px solid
        #dedee1;

    border-radius: 14px;

    display: grid;

    place-items: center;

    background: white;

    color: #171717;

    font-size: 23px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.platform-button:hover {
    transform: translateY(-4px);

    border-color: #ffc0d7;

    box-shadow:
        0 12px 30px
        rgba(
            0,
            0,
            0,
            0.09
        );
}


.remote-learn-button {
    width: auto;
    height: 52px;

    margin-top: 28px;

    padding:
        0
        21px;

    border: 0;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--pink);

    color: white;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.remote-learn-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(
            255,
            31,
            118,
            0.25
        );
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.remote-app-visual {
    min-height: 720px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.remote-pink-glow {
    width: 640px;
    height: 640px;

    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                255,
                202,
                224,
                0.72
            )
            0%,
            rgba(
                255,
                231,
                240,
                0.52
            )
            48%,
            rgba(
                255,
                245,
                249,
                0.22
            )
            65%,
            transparent
            73%
        );

    filter: blur(5px);
}


/* =========================================================
   PHONE
   ========================================================= */

.remote-phone {
    width: 315px;
    height: 630px;

    position: relative;

    z-index: 10;

    padding: 7px;

    border:
        4px solid
        #202023;

    border-radius: 49px;

    background: #101012;

    box-shadow:
        0 35px 80px
        rgba(
            0,
            0,
            0,
            0.25
        );

    animation:
        remotePhoneFloat
        5s
        ease-in-out
        infinite;
}


.remote-phone-screen {
    height: 100%;

    position: relative;

    overflow: hidden;

    padding:
        22px
        13px
        10px;

    border-radius: 39px;

    background:
        linear-gradient(
            180deg,
            #fbfbfd,
            #f2f2f5
        );
}


.remote-phone-island {
    width: 88px;
    height: 24px;

    position: absolute;

    z-index: 30;

    top: 13px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 999px;

    background: #09090a;
}


/* =========================================================
   STATUS BAR
   ========================================================= */

.remote-statusbar {
    height: 25px;

    padding:
        0
        7px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #242424;

    font-size: 7px;
}


.remote-statusbar > div {
    display: flex;

    align-items: center;

    gap: 5px;
}


.remote-statusbar span {
    padding:
        2px
        4px;

    border-radius: 4px;

    background: #171717;

    color: white;

    font-size: 5px;
}


/* =========================================================
   PHONE TITLE
   ========================================================= */

.remote-phone-title {
    margin:
        5px
        6px
        12px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.remote-phone-title > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.remote-phone-title strong {
    color: #242424;

    font-size: 13px;
}


.remote-phone-title small {
    color: #aaa;

    font-size: 6px;

    font-weight: 600;
}


/* =========================================================
   POWER BUTTON
   ========================================================= */

.phone-power {
    width: 31px;
    height: 31px;

    border: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #fff0f5;

    color: var(--pink);

    font-size: 10px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.phone-power:hover {
    transform: scale(1.08);
}


.phone-power.off {
    background: #e9e9ec;

    color: #aaa;
}


/* =========================================================
   MODE SWITCHER
   ========================================================= */

.app-mode-switch {
    margin:
        0
        5px
        10px;

    padding: 4px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 3px;

    border-radius: 12px;

    background: #eaeaec;
}


.app-mode-button {
    height: 30px;

    padding: 0;

    border: 0;

    border-radius: 9px;

    background: transparent;

    color: #999;

    font-size: 7px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


.app-mode-button.active {
    background: white;

    color: #252525;

    box-shadow:
        0 3px 10px
        rgba(
            0,
            0,
            0,
            0.07
        );
}


/* =========================================================
   LIVE CARD
   ========================================================= */

.app-live-card {
    margin:
        0
        4px;

    padding: 14px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.025
        );

    border-radius: 19px;

    background: white;

    box-shadow:
        0 8px 24px
        rgba(
            0,
            0,
            0,
            0.055
        );
}


.app-live-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.app-live-top > div:first-child {
    display: flex;

    flex-direction: column;
}


.app-live-top span {
    color: #aaa;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;
}


.app-live-top strong {
    margin-top: 3px;

    color: #222;

    font-size: 25px;

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================================
   LIVE INDICATOR
   ========================================================= */

.live-indicator {
    padding:
        5px
        7px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 4px;

    background: #fff0f5;

    color: var(--pink);

    font-size: 6px;

    font-weight: 800;
}


.live-indicator i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--pink);

    animation:
        appLivePulse
        1.1s
        ease-in-out
        infinite;
}


/* =========================================================
   WAVE
   ========================================================= */

.app-live-wave {
    height: 75px;

    margin-top: 8px;

    padding:
        5px
        2px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;
}


.app-live-wave span {
    width: 8px;
    height: 25px;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            #ff80ad,
            var(--pink)
        );

    transform-origin: center;

    animation:
        appWaveMove
        0.85s
        ease-in-out
        infinite
        alternate;
}


.app-live-wave span:nth-child(1) {
    animation-delay: 0.05s;
}

.app-live-wave span:nth-child(2) {
    animation-delay: 0.18s;
}

.app-live-wave span:nth-child(3) {
    animation-delay: 0.32s;
}

.app-live-wave span:nth-child(4) {
    animation-delay: 0.11s;
}

.app-live-wave span:nth-child(5) {
    animation-delay: 0.4s;
}

.app-live-wave span:nth-child(6) {
    animation-delay: 0.23s;
}

.app-live-wave span:nth-child(7) {
    animation-delay: 0.48s;
}

.app-live-wave span:nth-child(8) {
    animation-delay: 0.15s;
}

.app-live-wave span:nth-child(9) {
    animation-delay: 0.36s;
}

.app-live-wave span:nth-child(10) {
    animation-delay: 0.08s;
}

.app-live-wave span:nth-child(11) {
    animation-delay: 0.28s;
}

.app-live-wave span:nth-child(12) {
    animation-delay: 0.43s;
}


/* =========================================================
   RANGE
   ========================================================= */

.app-intensity-slider {
    width: 100%;
    height: 4px;

    appearance: none;
    -webkit-appearance: none;

    border-radius: 999px;

    outline: none;

    background:
        linear-gradient(
            90deg,
            var(--pink) 0%,
            var(--pink) 62%,
            #e4e4e7 62%,
            #e4e4e7 100%
        );

    cursor: pointer;
}


.app-intensity-slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;

    -webkit-appearance: none;

    border:
        3px solid
        white;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 3px 9px
        rgba(
            0,
            0,
            0,
            0.2
        );

    cursor: pointer;
}


.app-intensity-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;

    border:
        3px solid
        white;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 3px 9px
        rgba(
            0,
            0,
            0,
            0.2
        );

    cursor: pointer;
}


/* =========================================================
   PATTERN BUTTONS
   ========================================================= */

.phone-patterns {
    margin-top: 12px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 4px;
}


.phone-pattern {
    min-height: 28px;

    padding:
        0
        3px;

    border: 0;

    border-radius: 8px;

    background: #f1f1f4;

    color: #999;

    font-size: 6px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
}


.phone-pattern:hover {
    transform: translateY(-2px);
}


.phone-pattern.active {
    background: var(--pink);

    color: white;
}


/* =========================================================
   MUSIC CARD
   ========================================================= */

.remote-phone
.dashboard-music {
    min-height: 68px;

    margin:
        9px
        4px
        0;

    padding:
        10px
        11px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: white;

    box-shadow:
        0 7px 20px
        rgba(
            0,
            0,
            0,
            0.045
        );
}


.remote-phone
.music-heading {
    display: flex;

    align-items: center;

    gap: 8px;
}


.remote-phone
.music-heading > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.remote-phone
.music-heading strong {
    color: #333;

    font-size: 8px;
}


.remote-phone
.music-heading span {
    color: #aaa;

    font-size: 6px;
}


.remote-phone
.dashboard-icon.music {
    width: 34px;
    height: 34px;

    border-radius: 11px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #8a42e9,
            #ff6f9b
        );

    color: white;

    font-size: 10px;
}


.remote-phone
.music-controls {
    margin-top: 0;

    display: flex;

    align-items: center;

    gap: 8px;
}


.remote-phone
.music-controls > i {
    color: #aaa;

    font-size: 7px;
}


.remote-phone
.music-controls button {
    width: 30px;
    height: 30px;

    border: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #f0f0f3;

    color: #333;

    font-size: 8px;

    cursor: pointer;
}


.dashboard-music.is-playing
.dashboard-icon.music {
    animation:
        musicPulse
        0.75s
        ease-in-out
        infinite
        alternate;
}


/* =========================================================
   BOTTOM NAV
   ========================================================= */

.remote-bottom-nav {
    height: 45px;

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 4px;

    display: flex;

    align-items: center;

    justify-content: space-around;

    background:
        rgba(
            246,
            246,
            248,
            0.96
        );
}


.remote-nav-button {
    width: 34px;
    height: 34px;

    border: 0;

    border-radius: 11px;

    display: grid;

    place-items: center;

    background: transparent;

    color: #999;

    font-size: 9px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.remote-nav-button:hover {
    transform: translateY(-2px);
}


.remote-nav-button.active {
    background: #fff0f5;

    color: var(--pink);
}


/* =========================================================
   PHONE OFF STATE
   ========================================================= */

.remote-phone.power-off
.app-live-wave span {
    height: 4px !important;

    opacity: 0.2;

    animation-play-state: paused;
}


.remote-phone.power-off
.live-indicator {
    color: #aaa;

    background: #eeeeef;
}


.remote-phone.power-off
.live-indicator i {
    background: #aaa;

    animation: none;
}


.remote-phone.power-off
.phone-pattern {
    opacity: 0.45;
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.remote-floating-card {
    position: absolute;

    z-index: 20;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.05
        );

    border-radius: 19px;

    background:
        rgba(
            255,
            255,
            255,
            0.94
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 55px
        rgba(
            0,
            0,
            0,
            0.12
        );
}


.remote-feature-card {
    width: 245px;

    top: 105px;
    right: -20px;

    padding: 16px;

    display: flex;

    align-items: center;

    gap: 12px;

    animation:
        remoteCardFloatA
        4.3s
        ease-in-out
        infinite;
}


.patterns-feature-card {
    width: 250px;

    top: 260px;
    left: -45px;

    padding: 16px;

    animation:
        remoteCardFloatB
        5s
        ease-in-out
        infinite;
}


.link-feature-card {
    width: 230px;

    right: -30px;
    bottom: 135px;

    padding: 15px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.05
        );

    display: flex;

    align-items: center;

    gap: 11px;

    color: inherit;

    text-align: left;

    cursor: pointer;

    animation:
        remoteCardFloatA
        5.2s
        ease-in-out
        infinite;
}


.link-feature-card:hover {
    box-shadow:
        0 27px 65px
        rgba(
            0,
            0,
            0,
            0.17
        );
}


/* =========================================================
   FLOATING ICONS
   ========================================================= */

.floating-app-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 13px;

    display: grid;

    place-items: center;

    color: white;

    font-size: 13px;
}


.floating-app-icon.purple {
    background:
        linear-gradient(
            145deg,
            #706dff,
            #9f5cf1
        );
}


.floating-app-icon.pink {
    background:
        linear-gradient(
            145deg,
            #ff6a94,
            #ff95c3
        );
}


.floating-app-icon.blue {
    background:
        linear-gradient(
            145deg,
            #417fff,
            #785eff
        );
}


.remote-floating-card strong {
    display: block;

    color: #333;

    font-size: 11px;
}


.remote-floating-card span {
    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 7px;
}


/* =========================================================
   FLOATING PATTERN PLAYER
   ========================================================= */

.floating-card-heading {
    display: flex;

    align-items: center;

    gap: 10px;
}


.floating-player {
    margin-top: 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.floating-player > span {
    color: var(--pink);

    font-size: 9px;

    font-weight: 800;
}


.floating-level {
    min-width: 52px;

    padding:
        7px
        9px;

    border-radius: 10px;

    background: #fff0f5;

    color: var(--pink);

    text-align: center;
}


.floating-level strong {
    color: var(--pink);

    font-size: 10px;
}


/* =========================================================
   PEOPLE
   ========================================================= */

.remote-person {
    position: absolute;

    z-index: 15;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: #777;

    font-size: 7px;

    font-weight: 700;
}


.remote-person > div {
    width: 42px;
    height: 42px;

    border:
        4px solid
        #93baff;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #ffd3bd,
            #e7a586
        );

    color: #555;

    font-size: 11px;

    font-weight: 800;
}


.remote-person-left {
    left: 10px;
    bottom: 85px;
}


.remote-person-right {
    right: 15px;
    bottom: 35px;
}


.remote-person-right > div {
    border-color: #ff6498;
}


/* =========================================================
   DEMO POP
   ========================================================= */

.remote-phone.demo-pop {
    animation:
        appDemoPop
        0.5s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes appLivePulse {

    0%,
    100% {
        opacity: 0.35;

        transform: scale(0.8);
    }

    50% {
        opacity: 1;

        transform: scale(1.2);
    }

}


@keyframes appWaveMove {

    from {
        transform: scaleY(0.72);
    }

    to {
        transform: scaleY(1.08);
    }

}


@keyframes musicPulse {

    from {
        transform: scale(0.94);
    }

    to {
        transform: scale(1.08);
    }

}


@keyframes appDemoPop {

    0% {
        transform: scale(1);
    }

    45% {
        transform:
            scale(1.04)
            translateY(-7px);
    }

    100% {
        transform: scale(1);
    }

}

/* =========================================================
   PHONE CONNECTED DEVICE
   ========================================================= */

.phone-device-card {
    margin:
        9px
        4px
        0;

    padding:
        12px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.025
        );

    border-radius: 16px;

    background: white;

    box-shadow:
        0 7px 20px
        rgba(
            0,
            0,
            0,
            0.045
        );
}


.phone-device-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.phone-device-top > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.phone-device-top span {
    color: #aaa;

    font-size: 5px;

    font-weight: 800;

    letter-spacing: 0.8px;
}


.phone-device-top strong {
    color: #292929;

    font-size: 10px;
}


.phone-device-online {
    padding:
        5px
        7px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 4px;

    background: #f3f7f4;

    color: #6f8f79;

    font-size: 5px;

    font-weight: 800;
}


.phone-device-online i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #69b77d;

    box-shadow:
        0 0 0 3px
        rgba(
            105,
            183,
            125,
            0.12
        );
}


.phone-device-info {
    margin-top: 10px;

    padding-top: 9px;

    border-top:
        1px solid
        #f0f0f2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.phone-device-info > span {
    color: #999;

    font-size: 6px;

    font-weight: 700;
}


.phone-battery {
    display: flex;

    align-items: center;

    gap: 7px;
}


.phone-battery-track {
    width: 60px;
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

    background: #ededf0;
}


.phone-battery-track i {
    width: 86%;
    height: 100%;

    display: block;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #ff75a7,
            var(--pink)
        );
}


.phone-battery strong {
    color: #777;

    font-size: 6px;
}

/* =========================================================
   REMOTE APP TEXT SCALE FIX
   ========================================================= */

/* STATUS BAR */

.remote-statusbar {
    font-size: 8px;
}

.remote-statusbar span {
    font-size: 6px;
}


/* PHONE TITLE */

.remote-phone-title strong {
    font-size: 15px;
}

.remote-phone-title small {
    font-size: 7px;
}


/* MODE BUTTONS */

.app-mode-button {
    font-size: 8px;
}


/* LIVE CARD */

.app-live-top span {
    font-size: 7px;

    letter-spacing: 0.9px;
}

.app-live-top strong {
    font-size: 27px;
}

.live-indicator {
    font-size: 7px;
}


/* PATTERNS */

.phone-pattern {
    font-size: 7px;
}


/* MUSIC */

.remote-phone
.music-heading strong {
    font-size: 9px;
}

.remote-phone
.music-heading span {
    font-size: 7px;
}


/* CONNECTED DEVICE */

.phone-device-top span {
    font-size: 6px;
}

.phone-device-top strong {
    font-size: 11px;
}

.phone-device-online {
    font-size: 6px;
}

.phone-device-info > span {
    font-size: 7px;
}

.phone-battery strong {
    font-size: 7px;
}


/* FLOATING CARDS */

.remote-floating-card strong {
    font-size: 13px;
}

.remote-floating-card span {
    font-size: 8px;
}

.floating-player > span {
    font-size: 10px;
}

.floating-level strong {
    font-size: 11px;
}


/* PEOPLE */

.remote-person {
    font-size: 8px;
}

.remote-person > div {
    font-size: 12px;
}

/* =========================================================
   SEARCH V2 POLISH
   ========================================================= */

.site-search-overlay {
    padding-top: 95px;

    background:
        rgba(
            17,
            17,
            20,
            0.45
        );

    backdrop-filter:
        blur(14px);
}


.search-shell {
    width: 880px;

    max-height:
        calc(
            100vh - 130px
        );

    padding: 22px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.7
        );

    border-radius: 25px;

    background:
        rgba(
            255,
            255,
            255,
            0.985
        );

    box-shadow:
        0 35px 100px
        rgba(
            0,
            0,
            0,
            0.22
        );
}


/* SEARCH INPUT */

.search-top {
    gap: 10px;
}


.search-field {
    height: 58px;

    padding:
        0
        18px;

    border:
        1px solid
        #e7e7ea;

    border-radius: 15px;

    background: #f7f7f8;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.search-field:focus-within {
    border-color:
        #ffb7d1;

    background: white;

    box-shadow:
        0 0 0 4px
        rgba(
            255,
            31,
            118,
            0.07
        );
}


.search-field i {
    font-size: 15px;
}


.search-field input {
    font-size: 16px;

    font-weight: 600;
}


.search-field input::placeholder {
    color: #aaa;

    font-weight: 500;
}


/* CLOSE */

.search-close {
    width: 58px;
    height: 58px;

    border-radius: 15px;

    font-size: 15px;
}


/* RESULT TITLE */

.search-heading {
    margin:
        22px
        3px
        13px;
}


.search-heading span {
    color: var(--pink);

    font-size: 8px;

    letter-spacing: 1.5px;
}


.search-heading strong {
    padding:
        6px
        9px;

    border-radius: 999px;

    background: #f3f3f5;

    color: #888;

    font-size: 8px;
}


/* =========================================================
   RESULT GRID
   ========================================================= */

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

    gap: 9px;
}


.search-product {
    min-height: 118px;

    padding: 10px;

    grid-template-columns:
        105px
        minmax(
            0,
            1fr
        )
        34px;

    gap: 13px;

    border:
        1px solid
        #e9e9eb;

    border-radius: 16px;

    background: #fafafa;
}


.search-product:hover {
    transform:
        translateY(-3px);

    border-color:
        #ffc2d8;

    background: white;

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


/* PRODUCT IMAGE */

.search-product-image {
    width: 105px;
    height: 96px;

    overflow: hidden;

    border-radius: 12px;

    background:
        radial-gradient(
            circle,
            #ffffff 0%,
            #fff2f7 55%,
            #f3f3f5 100%
        );
}


.search-product-image img {
    width: 82%;
    height: 82%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 8px 8px
            rgba(
                0,
                0,
                0,
                0.09
            )
        );

    transition:
        transform 0.25s ease;
}


.search-product:hover
.search-product-image img {
    transform:
        scale(1.06);
}


/* PRODUCT TEXT */

.search-product-copy span {
    font-size: 7px;

    letter-spacing: 1.2px;
}


.search-product-copy strong {
    margin-top: 4px;

    font-size: 16px;
}


.search-product-copy p {
    margin-top: 6px;

    color: #8f8f94;

    font-size: 9px;

    line-height: 1.45;
}


/* ARROW */

.search-product-arrow {
    width: 32px;
    height: 32px;

    background: white;

    color: #555;

    box-shadow:
        0 4px 12px
        rgba(
            0,
            0,
            0,
            0.06
        );

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.search-product:hover
.search-product-arrow {
    transform:
        translateX(3px);

    background: var(--pink);

    color: white;
}


/* EMPTY SEARCH */

.search-empty {
    padding:
        65px
        20px;

    border:
        1px dashed
        #d9d9dd;

    border-radius: 17px;

    background: #fafafa;

    color: #999;

    font-size: 12px;
}


.search-empty strong {
    color: #333;
}

/* =========================================================
   PRODUCT CARDS V2
   ========================================================= */

.products-section {
    padding:
        125px
        0
        135px;

    background:
        #ffffff;
}


.products-section
.section-heading {
    margin-bottom:
        42px;
}


/* GRID */

.product-grid {
    gap: 14px;
}


/* CARD */

.product-card {
    min-height: 470px;

    padding: 11px;

    position: relative;

    overflow: hidden;

    border:
        1px solid
        #e9e9eb;

    border-radius: 25px;

    background: #fafafa;

    transition:
        transform 0.3s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        ),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.product-card:hover {
    transform:
        translateY(-8px);

    border-color:
        #ffc7db;

    background:
        white;

    box-shadow:
        0 25px 60px
        rgba(
            18,
            18,
            22,
            0.11
        );
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-image-wrap {
    height: 275px;

    position: relative;

    overflow: hidden;

    border-radius: 19px;

    background:
        radial-gradient(
            circle at 50% 45%,
            #ffffff 0%,
            #fff4f8 52%,
            #f3f3f5 100%
        );
}


.product-image-wrap::after {
    content: "";

    width: 130px;
    height: 130px;

    position: absolute;

    right: -50px;
    bottom: -55px;

    border-radius: 50%;

    background:
        var(--pink);

    opacity: 0.05;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


.product-card:hover
.product-image-wrap::after {
    transform:
        scale(1.5);

    opacity: 0.09;
}


.product-image-wrap img {
    width: 82%;
    height: 82%;

    position: relative;

    z-index: 2;

    object-fit: contain;

    filter:
        drop-shadow(
            0 17px 18px
            rgba(
                0,
                0,
                0,
                0.12
            )
        );

    transition:
        transform 0.35s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


.product-card:hover
.product-image-wrap img {
    transform:
        translateY(-5px)
        scale(1.055);
}


/* INDIVIDUAL IMAGE BALANCE */

.product-card:nth-child(1)
.product-image-wrap img {
    width: 78%;
    height: 78%;
}


.product-card:nth-child(2)
.product-image-wrap img {
    width: 58%;
    height: 84%;
}


.product-card:nth-child(3)
.product-image-wrap img {
    width: 62%;
    height: 84%;
}


.product-card:nth-child(4)
.product-image-wrap img {
    width: 61%;
    height: 84%;
}


/* =========================================================
   TAG + INDEX
   ========================================================= */

.product-tag {
    z-index: 5;

    top: 14px;
    left: 14px;

    padding:
        6px
        9px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.8
        );

    background:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 7px;

    letter-spacing: 1.1px;

    box-shadow:
        0 5px 15px
        rgba(
            0,
            0,
            0,
            0.04
        );
}


.product-card-index {
    position: absolute;

    z-index: 5;

    top: 17px;
    right: 16px;

    color:
        rgba(
            30,
            30,
            35,
            0.28
        );

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PRODUCT COPY
   ========================================================= */

.product-info {
    padding:
        17px
        7px
        5px;
}


.product-name-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.product-info h3 {
    color: #222;

    font-size: 20px;

    letter-spacing: -0.6px;
}


.product-online-dot {
    padding:
        5px
        7px;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    background:
        #fff0f5;

    color:
        var(--pink);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 0.7px;
}


.product-online-dot i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--pink);
}


.product-subtitle {
    min-height: 35px;

    margin-top: 7px;

    color: #8c8c91;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   META
   ========================================================= */

.product-card-meta {
    margin-top: 13px;

    display: flex;

    align-items: center;

    gap: 7px;
}


.product-card-meta > span {
    padding:
        6px
        8px;

    border-radius: 8px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    background:
        #f1f1f3;

    color:
        #77777c;

    font-size: 7px;

    font-weight: 700;
}


.product-card-meta i {
    color:
        var(--pink);

    font-size: 7px;
}


/* =========================================================
   PRODUCT BUTTON
   ========================================================= */

.quick-button {
    height: 44px;

    margin-top: 17px;

    padding:
        0
        15px;

    border: 0;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #1b1b1e;

    color: white;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.quick-button i {
    font-size: 9px;

    transition:
        transform 0.2s ease;
}


.quick-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--pink);

    box-shadow:
        0 12px 25px
        rgba(
            255,
            31,
            118,
            0.2
        );
}


.quick-button:hover i {
    transform:
        translateX(3px);
}

/* =========================================================
   TECHNOLOGY V2
   ========================================================= */

.feature-section {
    min-height: 850px;

    padding:
        120px
        0;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 45%,
            #28242f 0%,
            #19181f 35%,
            #121216 75%
        );

    color: white;
}


.feature-grid {
    min-height: 650px;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 95px;
}


/* =========================================================
   TECH VISUAL
   ========================================================= */

.tech-visual {
    height: 620px;

    position: relative;

    display: grid;

    place-items: center;
}


.tech-glow {
    width: 520px;
    height: 520px;

    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(
                255,
                31,
                118,
                0.18
            ),
            rgba(
                147,
                102,
                223,
                0.08
            )
            45%,
            transparent
            70%
        );

    filter: blur(15px);
}


.tech-ring {
    position: absolute;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    border-radius: 50%;

    animation:
        techRingPulse
        5s
        ease-in-out
        infinite;
}


.tech-ring-one {
    width: 500px;
    height: 500px;
}


.tech-ring-two {
    width: 370px;
    height: 370px;

    animation-delay: 0.5s;
}


.tech-ring-three {
    width: 240px;
    height: 240px;

    animation-delay: 1s;
}


/* =========================================================
   DEVICES
   ========================================================= */

.tech-device {
    position: absolute;

    z-index: 10;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;
}


.tech-device-left {
    left: 35px;

    transform: rotate(-7deg);
}


.tech-device-right {
    right: 55px;

    transform: rotate(7deg);
}


.tech-device-image {
    width: 190px;
    height: 310px;

    display: grid;

    place-items: center;
}


.tech-device-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 35px 30px
            rgba(
                0,
                0,
                0,
                0.4
            )
        );
}


.tech-device-right
.tech-device-image img {
    width: 63%;
}


.tech-device > span {
    padding:
        6px
        10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;

    backdrop-filter: blur(10px);
}


/* =========================================================
   CORE
   ========================================================= */

.tech-core {
    width: 120px;
    height: 120px;

    position: relative;

    z-index: 15;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.14
        );

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        rgba(
            25,
            24,
            31,
            0.88
        );

    color: white;

    box-shadow:
        0 0 80px
        rgba(
            255,
            31,
            118,
            0.22
        );

    backdrop-filter: blur(18px);
}


.tech-core > i {
    color: var(--pink);

    font-size: 19px;
}


.tech-core strong {
    margin-top: 8px;

    font-size: 7px;

    letter-spacing: 1.2px;
}


.tech-core small {
    margin-top: 3px;

    color: #77777e;

    font-size: 6px;
}


.tech-core-pulse {
    position: absolute;

    inset: -12px;

    border:
        1px solid
        rgba(
            255,
            31,
            118,
            0.35
        );

    border-radius: 50%;

    animation:
        techCorePulse
        2s
        ease-out
        infinite;
}


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

.tech-signal {
    width: 95px;

    position: absolute;

    z-index: 9;

    display: flex;

    justify-content: space-around;
}


.tech-signal-left {
    left: 205px;
}


.tech-signal-right {
    right: 220px;
}


.tech-signal i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 12px
        var(--pink);

    animation:
        techSignalMove
        1.2s
        ease-in-out
        infinite;
}


.tech-signal i:nth-child(2) {
    animation-delay: 0.2s;
}


.tech-signal i:nth-child(3) {
    animation-delay: 0.4s;
}


/* =========================================================
   FLOATING PILLS
   ========================================================= */

.tech-floating-pill {
    position: absolute;

    z-index: 20;

    padding:
        10px
        13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 7px;

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 8px;

    font-weight: 700;

    backdrop-filter: blur(12px);

    animation:
        techFloat
        4s
        ease-in-out
        infinite;
}


.tech-floating-pill i {
    color: var(--pink);
}


.tech-pill-top {
    top: 70px;
    left: 220px;
}


.tech-pill-bottom {
    bottom: 70px;
    left: 210px;

    animation-delay: 0.6s;
}


.tech-pill-side {
    top: 120px;
    right: 75px;

    animation-delay: 1.1s;
}


/* =========================================================
   TECHNOLOGY COPY
   ========================================================= */

.feature-copy h2 {
    max-width: 620px;

    font-size:
        clamp(
            58px,
            5.2vw,
            80px
        );

    line-height: 0.92;

    letter-spacing: -4.5px;
}


.feature-copy h2 span {
    display: block;

    color: var(--pink);
}


.feature-copy > p {
    max-width: 510px;

    margin-top: 28px;

    color: #95959d;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   TECH FEATURE ROWS
   ========================================================= */

.tech-feature-list {
    margin-top: 34px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );
}


.tech-feature-row {
    min-height: 76px;

    padding:
        0
        4px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );

    display: grid;

    grid-template-columns:
        38px
        1fr
        auto;

    align-items: center;

    gap: 12px;

    transition:
        padding-left 0.2s ease;
}


.tech-feature-row:hover {
    padding-left: 9px;
}


.tech-feature-number {
    color: var(--pink);

    font-size: 8px;

    font-weight: 800;
}


.tech-feature-row strong {
    display: block;

    color: white;

    font-size: 12px;
}


.tech-feature-row small {
    display: block;

    margin-top: 4px;

    color: #686871;

    font-size: 8px;
}


.tech-feature-row > i {
    color: #595961;

    font-size: 9px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.tech-feature-row:hover > i {
    color: var(--pink);

    transform: translateX(4px);
}


/* =========================================================
   TECH BUTTON
   ========================================================= */

.tech-app-button {
    height: 48px;

    margin-top: 30px;

    padding:
        0
        18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    color: white;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.tech-app-button:hover {
    transform: translateY(-3px);

    border-color: var(--pink);

    background:
        rgba(
            255,
            31,
            118,
            0.12
        );
}


/* =========================================================
   TECHNOLOGY ANIMATIONS
   ========================================================= */

@keyframes techRingPulse {

    0%,
    100% {
        opacity: 0.45;

        transform: scale(0.97);
    }

    50% {
        opacity: 0.9;

        transform: scale(1.02);
    }

}


@keyframes techCorePulse {

    0% {
        opacity: 0.7;

        transform: scale(0.9);
    }

    100% {
        opacity: 0;

        transform: scale(1.35);
    }

}


@keyframes techSignalMove {

    0%,
    100% {
        opacity: 0.2;

        transform: scale(0.7);
    }

    50% {
        opacity: 1;

        transform: scale(1.15);
    }

}


@keyframes techFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   COMMUNITY V2
   ========================================================= */

.community-section {
    padding:
        125px
        0
        135px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f7f8
        );
}


.community-top {
    margin-bottom: 45px;

    display: grid;

    grid-template-columns:
        1fr
        380px;

    align-items: end;

    gap: 50px;
}


.community-top h2 {
    max-width: 720px;

    margin-top: 8px;

    color: #202024;

    font-size:
        clamp(
            52px,
            5vw,
            72px
        );

    line-height: 0.95;

    letter-spacing: -4px;
}


.community-top h2 span {
    display: block;

    color: var(--pink);
}


.community-top > p {
    margin-bottom: 6px;

    color: #85858a;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   COMMUNITY GRID
   ========================================================= */

.community-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    grid-template-rows:
        330px
        170px;

    gap: 13px;
}


.community-card {
    position: relative;

    overflow: hidden;

    padding: 25px;

    border:
        1px solid
        #e8e8ea;

    border-radius: 25px;

    display: flex;

    flex-direction: column;

    background: white;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.community-card:hover {
    transform: translateY(-6px);

    border-color: #ffc5da;

    box-shadow:
        0 23px 55px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


.community-card::after {
    content: "";

    width: 180px;
    height: 180px;

    position: absolute;

    right: -80px;
    bottom: -85px;

    border-radius: 50%;

    background: var(--pink);

    opacity: 0.055;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.community-card:hover::after {
    transform: scale(1.35);

    opacity: 0.1;
}


.community-card-main {
    background:
        #1a1a1e;

    color: white;

    border-color:
        #1a1a1e;
}


.community-card-main::after {
    opacity: 0.22;
}


/* NUMBER */

.community-card-number {
    position: absolute;

    top: 23px;
    right: 23px;

    color: #c3c3c6;

    font-size: 9px;

    font-weight: 800;
}


.community-card-main
.community-card-number {
    color:
        rgba(
            255,
            255,
            255,
            0.35
        );
}


/* ICON */

.community-card-icon {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    display: grid;

    place-items: center;

    background: #fff0f5;

    color: var(--pink);

    font-size: 16px;
}


.community-card-main
.community-card-icon {
    background: var(--pink);

    color: white;
}


/* COPY */

.community-card-copy {
    margin-top: auto;

    position: relative;

    z-index: 2;
}


.community-card-copy > span,
.community-card-cta span {
    color: var(--pink);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.community-card-copy h3 {
    max-width: 290px;

    margin-top: 7px;

    color: #27272a;

    font-size: 26px;

    line-height: 1.04;

    letter-spacing: -1.2px;
}


.community-card-main
.community-card-copy h3 {
    color: white;
}


.community-card-copy p {
    max-width: 285px;

    margin-top: 11px;

    color: #929297;

    font-size: 10px;

    line-height: 1.65;
}


.community-card-main
.community-card-copy p {
    color: #8c8c95;
}


/* =========================================================
   COMMUNITY CTA
   ========================================================= */

.community-card-cta {
    grid-column:
        1 / -1;

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    padding:
        28px
        32px;

    background:
        linear-gradient(
            110deg,
            #fff1f6,
            #ffffff
        );
}


.community-card-cta h3 {
    margin-top: 6px;

    color: #222;

    font-size: 28px;

    letter-spacing: -1.3px;
}


.community-card-cta button {
    height: 48px;

    padding:
        0
        18px;

    border: 0;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: #19191d;

    color: white;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.community-card-cta button:hover {
    transform: translateY(-3px);

    background: var(--pink);
}

/* =========================================================
   REMOTE APP POSITION FIX
   ========================================================= */

.remote-app-section {
    min-height: auto;

    padding:
        70px
        0
        85px;
}


.remote-app-grid {
    min-height: 650px;
}

/* =========================================================
   TECHNOLOGY TEXT READABILITY
   ========================================================= */

.feature-copy > p {
    font-size: 17px;
}

.tech-feature-row {
    min-height: 84px;
}

.tech-feature-row strong {
    font-size: 14px;
}

.tech-feature-row small {
    margin-top: 5px;

    font-size: 10px;
}

.tech-feature-number {
    font-size: 9px;
}

.tech-app-button {
    font-size: 11px;
}

/* =========================================================
   PRODUCTS READABILITY
   ========================================================= */

.product-subtitle {
    font-size: 11px;
}

.product-card-meta > span {
    font-size: 8px;
}

.product-online-dot {
    font-size: 7px;
}

.product-tag {
    font-size: 8px;
}

.quick-button {
    font-size: 11px;
}

/* =========================================================
   COMMUNITY COMPACT FIX
   ========================================================= */

.community-grid {
    grid-template-rows:
        295px
        155px;
}


.community-card {
    padding: 23px;
}


.community-card-copy h3 {
    font-size: 25px;
}


.community-card-copy p {
    font-size: 11px;
}