@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", sans-serif;
    background-color: #000;
    color: #fff;
}

/* Elevator Digital Signage – Hero */
.points-hero {
    background-color: #1a1a1a;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 8vw, 10rem);
    min-height: calc(50vh - 88px);
    display: flex;
    align-items: center;
}

.points-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

.points-hero__heading {
    flex: 0 1 auto;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: 0.02em;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    color: #fff;
}

.points-hero__bold {
    font-weight: 800;
}

.points-hero__light {
    font-weight: 800;
}

.points-hero__text {
    flex: 0 1 480px;
    max-width: 480px;
    margin: 0;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
}

@keyframes points-hero-slide-left {
    from {
        opacity: 0;
        transform: translate3d(-32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes points-hero-slide-right {
    from {
        opacity: 0;
        transform: translate3d(32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.points-hero__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.points-hero__anim--left {
    animation-name: points-hero-slide-left;
    animation-delay: 0.15s;
}

.points-hero__anim--right {
    animation-name: points-hero-slide-right;
    animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
    .points-hero__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .points-hero {
        padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
        min-height: calc(30vh - 88px);
    }

    .points-hero__inner {
        gap: 2rem;
    }

    .points-hero__text {
        flex: 0 1 380px;
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .points-hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .points-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .points-hero__heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .points-hero__text {
        flex: none;
        max-width: 100%;
        font-size: 0.9375rem;
    }
}

/* Media points stats strip */
.points-stats {
    background-color: #222222;
    padding: clamp(2.75rem, 6vw, 4rem) clamp(1rem, 5vw, 5rem);
}

.points-stats__inner {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: start;
}

.points-stats__item {
    text-align: center;
}

.points-stats__value {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
}

.points-stats__label {
    margin: 0.55rem 0 0;
    font-size: clamp(0.9rem, 1.2vw, 1.35rem);
    line-height: 1.25;
    font-weight: 400;
    color: #b8b8b8;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@keyframes points-reveal-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.points-reveal__anim {
    opacity: 0;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.points-reveal.is-visible .points-stats__item:nth-child(1).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.points-reveal.is-visible .points-stats__item:nth-child(2).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.points-reveal.is-visible .points-stats__item:nth-child(3).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.3s;
}

.points-reveal.is-visible .points-stats__item:nth-child(4).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.4s;
}

@media (max-width: 1024px) {
    .points-stats {
        padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem);
    }

    .points-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1rem;
    }
}

@media (max-width: 640px) {
    .points-stats {
        padding: 2rem 1rem 2.25rem;
    }

    .points-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .points-stats__value {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }
    .points-stats__label {
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .points-reveal__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

/* Where and what we offer */
.points-offer {
    --points-pie-angle: 0deg;
    background-color: #1A1A1A;
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.points-offer__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.points-offer__heading {
    margin: 0 0 clamp(2rem, 4vw, 5rem);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.points-offer__heading-bold {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
}

.points-offer__heading-light {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
}

.points-offer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.points-offer__chart-wrap {
    position: relative;
    width: min(44vw, 300px);
    aspect-ratio: 1 / 1;
}

.points-offer__chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #222222 57%, transparent 58%),
        conic-gradient(#89f12f 0deg var(--points-pie-angle), #6f5af8 var(--points-pie-angle) 360deg);
}

.points-offer__chart-label {
    position: absolute;
    font-size: clamp(0.9rem, 1.4vw, 1.15rem);
    font-weight: 700;
    color: #fff;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    
}

.points-offer__chart-label--green {
    color: #89f12f;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.points-offer__chart-label--violet {
    color: #a899ff;
    top: calc(50% + 1.3rem);
    margin-top: 1.3rem;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.points-offer__details {
    width: min(100%, 560px);
}

.points-offer__line {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin: 0 0 0.95rem;
    font-size: clamp(1.15rem, 2.1vw, 2rem);
    font-weight: 700;
    color: #fff;
}

.points-offer__line:last-of-type {
    margin-bottom: 2rem;
}

.points-offer__arrow {
    line-height: 1;
}

.points-offer__line-text {
    font-size: clamp(1.2rem, 2.1vw, 2rem);
}

.points-offer__line-value {
    margin-left: 0.35rem;
    font-size: clamp(1.5rem, 2.6vw, 2.5rem);
    font-weight: 800;
}

.points-offer__line-value--violet {
    color: #6f5af8;
}

.points-offer__line-value--green {
    color: #89f12f;
}

.points-offer__tags {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 0.85rem 0.85rem;
}

.points-offer__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    background-color: #333;
    color: #fff;
    font-size: clamp(0.8rem, 1.2vw, 0.98rem);
    line-height: 1.2;
    white-space: nowrap;
}

.points-reveal.is-visible .points-offer__heading.points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.points-reveal.is-visible .points-offer__chart-wrap.points-reveal__anim--left {
    animation-name: points-hero-slide-left;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.points-reveal.is-visible .points-offer__details.points-reveal__anim--right {
    animation-name: points-hero-slide-right;
    animation-play-state: running;
    animation-delay: 0.3s;
}

@media (max-width: 1024px) {
    .points-offer {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem);
    }

    .points-offer__content {
        gap: 2rem;
    }

    .points-offer__chart-wrap {
        width: min(45vw, 320px);
    }

    .points-offer__line {
        font-size: clamp(1rem, 2vw, 1.5rem);
    }
}

@media (max-width: 640px) {
    .points-offer {
        padding: 2.25rem 1rem 2.75rem;
    }

    .points-offer__content {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }

    .points-offer__chart-wrap {
        width: min(82vw, 320px);
    }

    .points-offer__details {
        width: 100%;
        max-width: 360px;
    }

    .points-offer__line {
        margin-bottom: 0.8rem;
    }

    .points-offer__line:last-of-type {
        margin-bottom: 1.5rem;
    }

    .points-offer__tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .points-offer__tag {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}

/* Our media points locations */
.points-locations {
    background-color: #1A1A1A;
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.points-locations__inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.points-locations__heading {
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.points-locations__heading-bold {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
}

.points-locations__heading-light {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
}

.points-locations__text {
    max-width: 720px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.875rem, 1.4vw, 1.125rem);
    line-height: 1.55;
    color: #fff;
}

.points-locations__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.points-locations__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.points-locations__pin {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-color: #c5e836;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.points-locations__name {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

.points-reveal.is-visible .points-locations__heading.points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.points-reveal.is-visible .points-locations__text.points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.points-reveal.is-visible .points-locations__item:nth-child(1).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.25s;
}

.points-reveal.is-visible .points-locations__item:nth-child(2).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.3s;
}

.points-reveal.is-visible .points-locations__item:nth-child(3).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.35s;
}

.points-reveal.is-visible .points-locations__item:nth-child(4).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.4s;
}

.points-reveal.is-visible .points-locations__item:nth-child(5).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.45s;
}

.points-reveal.is-visible .points-locations__item:nth-child(6).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.5s;
}

.points-reveal.is-visible .points-locations__item:nth-child(7).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.55s;
}

.points-reveal.is-visible .points-locations__item:nth-child(8).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.6s;
}

.points-reveal.is-visible .points-locations__item:nth-child(9).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.65s;
}

.points-reveal.is-visible .points-locations__item:nth-child(10).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.7s;
}

.points-reveal.is-visible .points-locations__item:nth-child(11).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.75s;
}

.points-reveal.is-visible .points-locations__item:nth-child(12).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.8s;
}

.points-reveal.is-visible .points-locations__item:nth-child(13).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.85s;
}

.points-reveal.is-visible .points-locations__item:nth-child(14).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.9s;
}

@media (max-width: 1024px) {
    .points-locations {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem);
    }

    .points-locations__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem 1rem;
    }

    .points-locations__item {
        white-space: normal;
        justify-content: flex-start;
    }
    .points-locations__text {
        font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    }
    .points-locations__name {
        font-size: clamp(1rem, 1.2vw, 1rem);
    }
}

@media (max-width: 640px) {
    .points-locations {
        padding: 2.25rem 1rem 2.75rem;
    }

    .points-locations__heading-bold,
    .points-locations__heading-light {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .points-locations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.75rem;
    }

    .points-locations__name {
        font-size: 0.8125rem;
    }

    .points-locations__pin {
        width: 10px;
        height: 10px;
    }
}

/* CTA – Let's chat */
.eds-cta {
    background-color: #1a1a1a;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.eds-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    background-color: #222222;
    margin: 0 auto;
    padding: 50px;
}

.eds-cta__lead {
    flex: 0 1 48%;
    max-width: 48%;
}

.eds-cta__eyebrow {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.75rem;
}

.eds-cta__heading {
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
}

.eds-cta__heading-bold {
    display: block;
    font-weight: 800;
}

.eds-cta__heading-light {
    display: block;
    font-weight: 800;
}

.eds-cta__action {
    flex: 0 1 42%;
    max-width: 480px;
}

.eds-cta__text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.eds-cta__btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.eds-cta__btn:hover {
    background-color: #666666;
}

.eds-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.eds-reveal.is-visible .eds-cta__eyebrow.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.eds-reveal.is-visible .eds-cta__heading-bold.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.eds-reveal.is-visible .eds-cta__heading-light.eds-reveal__anim--left {
    animation-name: eds-reveal-left;
    animation-play-state: running;
    animation-delay: 0.32s;
}

.eds-reveal.is-visible .eds-cta__text.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.15s;
}

.eds-reveal.is-visible .eds-cta__btn.eds-reveal__anim--right {
    animation-name: eds-reveal-right;
    animation-play-state: running;
    animation-delay: 0.35s;
}

@media (max-width: 1024px) {
    .eds-cta {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .eds-cta__inner {
        gap: 2.5rem;
    }

    .eds-cta__lead {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .eds-cta__action {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .eds-cta {
        padding: 2.5rem 1rem;
    }

    .eds-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .eds-cta__lead,
    .eds-cta__action {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .eds-cta__heading {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .eds-cta__text {
        margin-bottom: 1.5rem;
    }
}
