/* ==========================================================================
   FRONT PAGE STYLES - BEM Convention with Tailwind @apply
   ========================================================================== */

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

.video-modal {
    pointer-events: none;
    position: fixed;
    inset: 0px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.video-modal.is-active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0px;
    background-color: rgb(0 0 0 / 0.8);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.is-active .video-modal__backdrop {
    opacity: 1;
}

.video-modal__content {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
    width: 100%;
    max-width: 900px;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.video-modal.is-active .video-modal__content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.video-modal__close {
    position: absolute;
    top: -3rem;
    right: 0px;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgb(255 255 255 / 0.1);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.video-modal__close:hover {
    background-color: rgb(255 255 255 / 0.2);
}

.video-modal__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
    padding-bottom: 56.25%;
}

.video-modal__wrapper iframe {
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
}

/* ==========================================================================
   HOME HERO SECTION
   ========================================================================== */

.home-hero__gradient {
    position: absolute;
    left: 0px;
    top: 0px;
    min-height: 836px;
    width: 100vw;
    overflow-x: hidden;
}

.home-hero {
    width: 100%;
}

@media (min-width: 1200px) {

    .home-hero {
        max-width: 1200px;
    }
}

.home-hero {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 104px;
}

@media (min-width: 768px) {

    .home-hero {
        overflow-x: hidden;
        padding-top: 128px;
    }
}

.home-hero__wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 996px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {

    .home-hero__wrapper {
        flex-direction: row;
    }
}

.home-hero__code-bg--desktop {
    position: absolute;
    top: 50%;
    right: 0px;
    display: none;
    height: 524px;
    width: 680px;
    --tw-translate-y: -50%;
    --tw-translate-x: 25%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {

    .home-hero__code-bg--desktop {
        display: block;
    }
}

.home-hero__code-bg--mobile {
    position: absolute;
    left: 50%;
    bottom: 0px;
    display: block;
    height: 524px;
    width: 100vw;
    --tw-translate-x: -50%;
    --tw-translate-y: 15%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    overflow: hidden;
}

@media (min-width: 768px) {

    .home-hero__code-bg--mobile {
        display: none;
    }
}

.home-hero__code-bg-inner {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 524px;
    width: 440px;
}

.home-hero__code-bg-img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.home-hero__content {
    width: calc(100% - var(--horizontal-edge-space));
    max-width: 588.08px;
}

.home-hero__title {
    font-family: Tiempos Fine, serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {

    .home-hero__title {
        font-size: 56px;
    }
}

.home-hero__title-italic {
    font-style: italic;
}

.home-hero__title-ampersand {
    font-family: Canela, sans-serif;
    font-style: italic;
}

.home-hero__title .split-word {
    --tw-translate-x: 0.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
}

.home-hero__cta {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {

    .home-hero__cta {
        margin-top: 32px;
    }
}

.home-hero__video-thumbnail {
    position: relative;
    height: 63px;
    width: 112px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

@media (min-width: 768px) {

    .home-hero__video-thumbnail {
        height: 77px;
        width: 136px;
        border-radius: 12px;
    }
}

.home-hero__video-thumbnail img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.home-hero__video-thumbnail:hover img {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.home-hero__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    display: flex;
    height: 44px;
    width: 44px;
    --tw-translate-y: -50%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.home-hero__cta-text {
    max-width: 172px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 125%;
    color: #00000099;
}

@media (min-width: 768px) {

    .home-hero__cta-text {
        font-size: 16px;
    }
}

.home-hero__image-wrapper {
    margin-top: 64px;
    width: calc(100% - var(--horizontal-edge-space));
}

@media (min-width: 768px) {

    .home-hero__image-wrapper {
        margin-top: 0px;
        width: auto;
    }
}

.home-hero__image-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 381px;
    width: 100%;
    max-width: 384px;
    overflow: hidden;
    border-radius: 20px;
}

@media (min-width: 768px) {

    .home-hero__image-container {
        margin-right: 0px;
        margin-left: auto;
        height: 400px;
        width: 359.4px;
    }
}

.home-hero__image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-hero__image--fg {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right center;
       object-position: right center;
}

.home-hero__image--fg-container {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 80%;
    width: 100%;
}

.home-hero__image-link {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-top: 19.5px;
    padding-bottom: 19.5px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 125%;
    --tw-text-opacity: 1;
    color: rgb(136 45 23 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.home-hero__image-link:hover {
    background-color: rgb(255 255 255 / 0.8);
}

.home-hero__brands--mobile {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    display: flex;
    width: 100%;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {

    .home-hero__brands--mobile {
        display: none;
    }
}

.home-hero__brands--desktop {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    display: none;
    max-width: 1198px;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {

    .home-hero__brands--desktop {
        display: flex;
    }
}

.home-hero__brands-track {
    display: flex;
    flex-shrink: 0;
}

@keyframes marquee {

    0% {
        transform: translateX(0);
    }

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

.home-hero__brands-track {
    animation: marquee 25s linear infinite;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
}

@media (min-width: 768px) {

    .home-hero__brands-track {
        gap: 36px;
        padding-right: 36px;
    }
}

.home-hero__brand {
    flex-shrink: 0;
    -o-object-fit: contain;
       object-fit: contain;
}

.home-hero__brand--fair-price {
    height: 28px;
    width: 129px;
}

@media (min-width: 768px) {

    .home-hero__brand--fair-price {
        height: 33px;
        width: 151px;
    }
}

.home-hero__brand--far-east {
    height: 36px;
    width: 151px;
}

@media (min-width: 768px) {

    .home-hero__brand--far-east {
        height: 39px;
        width: 167px;
    }
}

.home-hero__brand--grab {
    height: 26px;
    width: 72.94px;
}

@media (min-width: 768px) {

    .home-hero__brand--grab {
        height: 29.97px;
        width: 84.09px;
    }
}

.home-hero__brand--nathan {
    height: 36px;
    width: 78px;
}

@media (min-width: 768px) {

    .home-hero__brand--nathan {
        height: 43.96px;
        width: 94.92px;
    }
}

.home-hero__brand--bread-talk {
    height: 22px;
    width: 117px;
}

@media (min-width: 768px) {

    .home-hero__brand--bread-talk {
        height: 23.97px;
        width: 126.89px;
    }
}

.home-hero__brand--jll {
    height: 36px;
    width: 82px;
}

@media (min-width: 768px) {

    .home-hero__brand--jll {
        height: 40px;
        width: 90px;
    }
}

.home-hero__brand--singtel {
    height: 36px;
    width: 65px;
}

@media (min-width: 768px) {

    .home-hero__brand--singtel {
        height: 48px;
        width: 87px;
    }
}

.home-hero__brand--vivo {
    height: 36px;
    width: 74px;
}

@media (min-width: 768px) {

    .home-hero__brand--vivo {
        height: 40px;
        width: 83px;
    }
}

.home-hero__brands-fade {
    pointer-events: none;
    position: absolute;
    left: 0px;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    justify-content: space-between;
}

.home-hero__brands-fade-left {
    height: 48px;
    width: 160px;
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #F0EFEB var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(240 239 235 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #F0EFEB00 var(--tw-gradient-to-position);
}

.home-hero__brands-fade-right {
    height: 48px;
    width: 160px;
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
    --tw-gradient-from: #F0EFEB var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(240 239 235 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #F0EFEB00 var(--tw-gradient-to-position);
}

/* --------- */

.dc {
  align-items: center;
  display: flex;
  gap: 16px;
}

.dc__thumbnail {
  aspect-ratio: 16/10;
  background-color: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  width: 108px;
}

.dc__thumbnail img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
}

.dc__thumbnail img.active {
  opacity: 1;
}

.dc__text-wrapper {
  height: 20px;
  overflow: hidden;
  position: relative;
  width: 200px;
}

.dc__text {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  left: 0;
  line-height: 1.25;
  max-width: 200px;
  opacity: 0;
  position: absolute;
  top: 20px;
  transition: top 0.6s ease-in-out;
}

.dc__text.active {
  opacity: 1;
  top: 0;
}

.dc__text.exiting {
  opacity: 1;
  top: -20px;
}

/* ==========================================================================
   HOME ABOUT SECTION
   ========================================================================== */

.home-about {
    width: 100%;
}

@media (min-width: 1200px) {

    .home-about {
        max-width: 1200px;
    }
}

.home-about {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}

@media (min-width: 768px) {

    .home-about {
        margin-top: 160px;
    }
}

.home-about__content {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
    max-width: 831px;
}

.home-about__content > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(36px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(36px * var(--tw-space-y-reverse));
}

.home-about__content {
    text-align: center;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 150%;
    color: #3333335C;
}

@media (min-width: 768px) {

    .home-about__content {
        font-size: 44px;
    }
}

.home-about__content .split-word {
    color: #3333335C;
}

.home-about__italic {
    font-style: italic;
}

.home-about__brand {
    font-family: Styrene A, sans-serif;
}

.home-about__avatar {
    position: relative;
    top: -4px;
    margin-left: 0.625rem;
    margin-right: 0.125rem;
    display: inline-block;
    height: 52px;
    width: 80px;
    overflow: hidden;
    border-radius: 9999px;
    vertical-align: middle;
}

.home-about__avatar-bg {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-about__avatar-img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

/* ==========================================================================
   HOME BENEFITS SECTION
   ========================================================================== */

.home-benefits {
    width: 100%;
}

@media (min-width: 1200px) {

    .home-benefits {
        max-width: 1200px;
    }
}

.home-benefits {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}

.home-benefits__grid {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: calc(100% - 96px);
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
}

@media (min-width: 768px) {

    .home-benefits__grid {
        flex-direction: row;
        gap: 24px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.home-benefits__card {
    width: 100%;
    max-width: 258px;
}

.home-benefits__card:nth-child(even) {
    margin-left: auto;
}

.home-benefits__card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 258px;
    overflow: hidden;
    border-radius: 20px;
}

.home-benefits__card-bg {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-benefits__card-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.home-benefits__card-content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
}

.home-benefits__card-label {
    font-family: Fragment Mono, monospace;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 115%;
    letter-spacing: 0.08em;
    color: #00000099;
}

@media (min-width: 768px) {

    .home-benefits__card-label {
        font-size: 12px;
    }
}

.home-benefits__card-text {
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 125%;
}

/* Stats Widget */

.home-benefits__stats {
    border-radius: 16px;
    background-color: #FFFFFFEB;
}

.home-benefits__stats-header {
    display: flex;
    height: 32px;
}

.home-benefits__stats-header-item {
    height: 100%;
    width: 72px;
    padding: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

.home-benefits__stats-header-item--border {
    border-right-width: 1px;
    border-color: #0000001A;
}

.home-benefits__stats-body {
    position: relative;
    display: flex;
    height: 99px;
}

.home-benefits__stats-chart {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 72px;
    width: 100%;
}

.home-benefits__stats-value {
    height: 100%;
    width: 72px;
    border-top-width: 1px;
    border-color: #0000001A;
    padding: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.home-benefits__stats-value--border {
    border-right-width: 1px;
}

.home-benefits__stats-footer {
    display: flex;
    height: 35px;
}

.home-benefits__stats-footer-item {
    display: flex;
    height: 100%;
    width: 72px;
    align-items: center;
    justify-content: center;
    border-top-width: 1px;
    border-color: #0000001A;
    padding: 0.5rem;
}

.home-benefits__stats-footer-item--border {
    border-right-width: 1px;
}

.home-benefits__stats-footer-item--value {
    gap: 0.25rem;
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(96 108 56 / var(--tw-text-opacity, 1));
}

.home-benefits__stats-line {
    height: 1.5px;
    width: 0.75rem;
    --tw-bg-opacity: 1;
    background-color: rgb(96 108 56 / var(--tw-bg-opacity, 1));
}

/* Calendar Widget */

.home-benefits__calendar {
    border-radius: 16px;
    background-color: #FFFFFFEB;
}

.home-benefits__calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.625rem;
}

.home-benefits__calendar-selects {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-benefits__calendar-select {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 6.5px;
    padding-bottom: 6.5px;
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    --tw-ring-color: #0000001A;
}

.home-benefits__calendar-days {
    margin-top: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.home-benefits__calendar-day {
    flex-shrink: 0;
}

.home-benefits__calendar-day > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(6px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(6px * var(--tw-space-y-reverse));
}

.home-benefits__calendar-day-name {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

.home-benefits__calendar-day-number {
    display: flex;
    height: 26px;
    width: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

.home-benefits__calendar-day-number--active {
    --tw-bg-opacity: 1;
    background-color: rgb(136 45 23 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.home-benefits__calendar-footer {
    margin-top: 1rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.625rem;
}

.home-benefits__calendar-button {
    width: 100%;
    border-radius: 4px;
    border-width: 1.5px;
    --tw-border-opacity: 1;
    border-color: rgb(136 45 23 / var(--tw-border-opacity, 1));
    padding-top: 9px;
    padding-bottom: 9px;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(136 45 23 / var(--tw-text-opacity, 1));
}

/* Product Widget */

.home-benefits__product {
    aspect-ratio: 1 / 1;
    width: 166px;
    border-radius: 16px;
    background-color: #FFFFFFEB;
    padding: 0.25rem;
}

.home-benefits__product-inner {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 11px;
}

.home-benefits__product-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-benefits__product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    background-color: #FFFFFF47;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    --tw-backdrop-blur: blur(16px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.home-benefits__product-badge-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.home-benefits__product-footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

.home-benefits__product-blur {
    height: 54px;
    border-bottom-right-radius: 11px;
    border-bottom-left-radius: 11px;
    --tw-backdrop-blur: blur(8px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    -webkit-mask: linear-gradient(#8C7E5B00, #8C7E5B);
            mask: linear-gradient(#8C7E5B00, #8C7E5B);
}

.home-benefits__product-name {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Tech Stack Widget */

.home-benefits__tech-stack {
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    flex-direction: column;
    gap: 2px;
    border-bottom-left-radius: 20px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.home-benefits__tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.home-benefits__tech-item--active {
    border-radius: 8px;
    --tw-bg-opacity: 1;
    background-color: rgb(136 45 23 / var(--tw-bg-opacity, 1));
}

.home-benefits__tech-icon {
    width: 26px;
    height: 26px;
}

.home-benefits__tech-name {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.home-benefits__tech-name--light {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* ==========================================================================
   HOME WORK SECTION
   ========================================================================== */

.home-work {
    overflow: hidden;
    padding-top: 80px;
}

@media (min-width: 768px) {

    .home-work {
        padding-bottom: 80px;
    }
}

.home-work__header {
    width: 100%;
}

@media (min-width: 1200px) {

    .home-work__header {
        max-width: 1200px;
    }
}

.home-work__header {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: calc(100% - var(--horizontal-edge-space));
    align-items: center;
    justify-content: space-between;
}

.home-work__title {
    font-family: Tiempos Fine, serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .home-work__title {
        font-size: 44px;
    }
}

.home-work__link {
    align-items: center;
    gap: 2px;
    border-radius: 9999px;
    border-bottom-width: 1px;
    border-color: #0000001A;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-top: 10.5px;
    padding-bottom: 10.5px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 15px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.home-work__link:hover {
    background-color: rgb(255 255 255 / 0.8);
}

.home-work__link.home-work__link--desktop {
    display: none;
}

@media (min-width: 768px) {

    .home-work__link.home-work__link--desktop {
        display: flex;
    }
}

.home-work__link--mobile {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {

    .home-work__link--mobile {
        display: none;
    }
}

.home-work__gallery--desktop {
    margin-top: 40px;
    display: none;
}

.home-work__gallery--desktop > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.home-work__gallery--desktop {
    overflow: hidden;
}

@media (min-width: 768px) {

    .home-work__gallery--desktop {
        display: block;
    }
}

.home-work__gallery--mobile {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    display: block;
    width: calc(100% - var(--horizontal-edge-space));
}

.home-work__gallery--mobile > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

@media (min-width: 768px) {

    .home-work__gallery--mobile {
        display: none;
    }
}

.home-work__row {
    display: flex;
    align-items: stretch;
}

.home-work__track {
    display: flex;
    flex-shrink: 0;
    gap: 1rem;
    animation: work-marquee-left 30s linear infinite;
    padding-right: 16px;
}

.home-work__row--reverse .home-work__track {
    animation: work-marquee-right 30s linear infinite;
}

@keyframes work-marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes work-marquee-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.home-work__item {
    aspect-ratio: 384/240;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px) {

    .home-work__item {
        aspect-ratio: 588/367.5;
        width: 588px;
    }
}

.home-work__image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* ==========================================================================
   HOME RESULTS SECTION
   ========================================================================== */

.home-results {
    padding-top: 80px;
    padding-bottom: 0px;
}

@media (min-width: 768px) {

    .home-results {
        padding-bottom: 80px;
    }
}

.home-results__container {
    width: 100%;
}

@media (min-width: 1200px) {

    .home-results__container {
        max-width: 1200px;
    }
}

.home-results__container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
}

.home-results__title {
    max-width: 340px;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .home-results__title {
        margin-left: auto;
        margin-right: auto;
        max-width: 642px;
        text-align: center;
        font-size: 44px;
    }
}

.home-results__title-italic {
    font-style: italic;
}

.home-results__grid {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.home-results__grid > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

@media (min-width: 768px) {

    .home-results__grid {
        margin-top: 2.5rem;
        flex-direction: row;
    }

    .home-results__grid > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }

    .home-results__grid {
        border-radius: 20px;
        border-width: 1px;
        border-color: #0000001A;
        background-color: #FFFFFF52;
    }
}

.home-results__card {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    background-color: #FFFFFF85;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1rem;
}

@media (min-width: 768px) {

    .home-results__card {
        max-width: -moz-max-content;
        max-width: max-content;
        flex: 1 1 0%;
        border-radius: 0px;
        border-right-width: 1px;
        border-color: #0000001A;
        background-color: transparent;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
        padding-top: 1.75rem;
    }
}

.home-results__card:nth-child(even) {
    margin-left: auto;
}

.home-results__card:last-child {
    border-right-width: 0px;
}

.home-results__card-content {
    width: calc(100% - 40px);
}

.home-results__card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .home-results__card-title {
        font-size: 17px;
    }
}

.home-results__card-text {
    margin-top: 0.375rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #00000099;
}

@media (min-width: 768px) {

    .home-results__card-text {
        font-size: 15px;
    }
}

.home-results__card-illustration {
    margin-top: 1.25rem;
    height: 111.9997634888px;
}

@media (min-width: 768px) {

    .home-results__card-illustration {
        margin-top: 38px;
        height: 136px;
    }
}

.home-results__card-illustration--short {
    margin-top: 24px;
}

.home-results__card-svg {
    margin-left: auto;
}

@media (min-width: 768px) {

    .home-results__card-svg {
        margin-left: auto;
        margin-right: auto;
    }
}

.home-results__card-svg--conversion {
    margin-right: 19.7px;
    height: 91.99976348876953px;
    width: 125.2957534790039px;
}

@media (min-width: 768px) {

    .home-results__card-svg--conversion {
        margin-right: 0px;
        height: 113px;
        width: 155px;
    }
}

.home-results__card-svg--mobile {
    margin-right: 11.97px;
    height: 103.00016784667969px;
    width: 189.02745056152344px;
}

@media (min-width: 768px) {

    .home-results__card-svg--mobile {
        margin-right: 0px;
        height: 126px;
        width: 230px;
    }
}

.home-results__card-svg--secure {
    margin-right: 20.5px;
    height: 108.0001449584961px;
    width: 136.5000457763672px;
}

@media (min-width: 768px) {

    .home-results__card-svg--secure {
        margin-right: 0px;
        height: 146px;
        width: 184px;
    }
}

.home-results__card-svg--affordable {
    margin-right: 27.6px;
    height: 136.00006103515625px;
    width: 86.3966064453125px;
}

@media (min-width: 768px) {

    .home-results__card-svg--affordable {
        margin-right: 0px;
        height: 168px;
        width: 107px;
    }
}

/* ==========================================================================
   HOME PROCESS SECTION
   ========================================================================== */

.home-process {
    display: none;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .home-process {
        display: block;
    }
}

.home-process__container {
    width: 100%;
}

@media (min-width: 1200px) {

    .home-process__container {
        max-width: 1200px;
    }
}

.home-process__container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
}

.home-process__header {
    max-width: 580px;
}

.home-process__label {
    font-family: Fragment Mono, monospace;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    line-height: 115%;
    letter-spacing: 0.16em;
    --tw-text-opacity: 1;
    color: rgb(136 45 23 / var(--tw-text-opacity, 1));
}

.home-process__title {
    margin-top: 0.625rem;
    font-family: Tiempos Fine, serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
}

.home-process__title-italic {
    font-style: italic;
}

.home-process__content {
    margin-top: 40px;
    display: flex;
    height: 528px;
    overflow: hidden;
    border-radius: 20px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(174 178 174 / var(--tw-border-opacity, 1));
    background-size: cover;
}

.home-process__steps {
    display: flex;
    width: 100%;
    align-items: stretch;
    background-color: #F0EFEB99;
    --tw-backdrop-blur: blur(24px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.home-process__step {
    flex: 1 1 0%;
    flex-shrink: 0;
    border-right-width: 1px;
    border-color: #0000001A;
}

.home-process__step:last-child {
    border-right-width: 0px;
}

.home-process__step-header {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom-width: 1px;
    border-color: #0000001A;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.home-process__step-number {
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(136 45 23 / var(--tw-bg-opacity, 1));
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: Fragment Mono, monospace;
    font-size: 13px;
    line-height: 125%;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.home-process__step-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

.home-process__step-body {
    position: relative;
    display: flex;
    height: 480px;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.home-process__step-body--right {
    align-items: flex-end;
}

.home-process__step-body--left {
    align-items: flex-start;
}

.home-process__step-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.home-process__step-list {
    position: relative;
    z-index: 10;
    max-width: 160px;
    font-size: 15px;
    line-height: 140%;
    color: #000000CC;
}

.home-process__step-item {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.home-process__step-item--border {
    border-bottom-width: 1px;
    border-bottom-color: #0000001A;
}

/* ==========================================================================
   FIGMA CURSOR WITH LABEL
   ========================================================================== */

.cursor-figma,
.cursor-figma *,
.cursor-figma *::before,
.cursor-figma *::after {
    cursor: none !important;
}

.figma-cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.figma-cursor.is-visible {
    opacity: 1;
}

.figma-cursor__pointer {
    position: relative;
}

.figma-cursor__pointer svg {
    height: 22px;
    width: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.figma-cursor__label {
    position: absolute;
    left: 14px;
    top: 16px;
    white-space: nowrap;
    border-radius: 3px;
    --tw-bg-opacity: 1;
    background-color: rgb(242 78 30 / var(--tw-bg-opacity, 1));
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 500 !important;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Hide Figma cursor on mobile/tablet */

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

    .cursor-figma,
    .cursor-figma *,
    .cursor-figma *::before,
    .cursor-figma *::after {
        cursor: auto !important;
    }
}


.testimonials {
    padding-top: 80px;
    padding-bottom: 80px
}
@media (min-width: 768px) {
    .testimonials {
        padding-bottom: 160px
    }
}

.testimonials__container {
    width: 100%
}

@media (min-width: 1200px) {
    .testimonials__container {
        max-width: 1200px
    }
}

.testimonials__container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 80px)
}

.testimonials__header {
    margin-left: auto;
    margin-right: auto;
    max-width: 486px
}

.testimonials__badge {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    background-color: #AB550814;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    text-align: center;
    font-family: Fragment Mono, monospace;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 115%;
    letter-spacing: 0.16em;
    --tw-text-opacity: 1;
    color: rgb(136 45 23 / var(--tw-text-opacity, 1))
}

@media (min-width: 768px) {
    .testimonials__badge {
        font-size: 12px
    }
}

.testimonials__title {
    margin-top: 0.625rem;
    text-align: center;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em
}

@media (min-width: 768px) {
    .testimonials__title {
        font-size: 40px
    }
}

.testimonials__title-italic {
    font-style: italic
}

.testimonials__grid {
    margin-top: 32px;
    -moz-columns: 1;
         columns: 1;
    gap: 1rem
}

@media (min-width: 768px) {
    .testimonials__grid {
        margin-top: 40px;
        -moz-columns: 4;
             columns: 4
    }
}

.testimonials__card {
    margin-bottom: 1rem;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    border-bottom-width: 1px;
    border-color: #0000001A;
    background-color: #FFFFFF99;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.testimonials__card-text {
    font-size: 15px;
    line-height: 140%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1))
}

.testimonials__card-footer {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem
}

.testimonials__card-footer div:first-child {
    flex-shrink: 0
}

.testimonials__card-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
    -o-object-fit: cover;
       object-fit: cover
}

.testimonials__card-info {
    font-size: 11px
}

.testimonials__card-name {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    --tw-text-opacity: 1;
    color: rgb(23 23 23 / var(--tw-text-opacity, 1))
}

.testimonials__card-role {
    font-family: Fragment Mono, monospace;
    font-size: 12px;
    line-height: 125%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1))
}

.faq {
    padding-top: 80px;
    padding-bottom: 80px;
}@media (min-width: 768px) {.faq {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}

.faq__container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: calc(100% - 96px);
    max-width: 976px;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {.faq__container {
        flex-direction: row;
        gap: 56px;
    }
}

.faq__title {
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {.faq__title {
        font-size: 44px;
    }
}

.dark .faq__title {
    --tw-text-opacity: 1;
    color: rgb(238 238 238 / var(--tw-text-opacity, 1));
}

.faq__title-ampersand {
    font-family: Canela, sans-serif;
}

.faq__grid {
    max-width: 824px;
    -moz-columns: 1;
         columns: 1;
    gap: 56px;
}

@media (min-width: 768px) {.faq__grid {
        -moz-columns: 2;
             columns: 2;
    }
}

.faq__item {
    border-bottom-width: 1px;
    border-color: #0000001F;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
}

.dark .faq__item {
    border-bottom-color: #FFFFFF1F;
}

.faq__button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
}

.faq__question {
    font-size: 17px;
    font-weight: 500;
    line-height: 130%;
}

.dark .faq__question {
    --tw-text-opacity: 1;
    color: rgb(204 204 204 / var(--tw-text-opacity, 1));
}

.faq__icon {
    flex-shrink: 0;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.dark .faq__icon path {
    stroke: #FFFFFF52;
}

.faq__item.is-active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-active .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer > p {
    overflow: hidden;
    padding-bottom: 1rem;
    font-size: 15px;
    line-height: 160%;
    color: rgb(0 0 0 / 0.7);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dark .faq__answer > p {
    color: #CCCCCCB3;
}

.faq__item.is-active .faq__answer > p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.faq__spacer {
    height: 80px;
}

.callout {
    overflow: hidden;
    /* Section wrapper */
}

.callout__wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1696px;
}

@media (min-width: 768px) {

    .callout__wrapper {
        height: 691px;
    }
}

.callout__content {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100%;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background-size: cover;
}

@media (min-width: 768px) {

    .callout__content {
        flex-direction: row;
    }
}

.callout__inner {
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    max-width: 325px;
}

@media (min-width: 768px) {

    .callout__inner {
        max-width: 424px;
    }
}

.callout__title {
    text-align: center;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {

    .callout__title {
        font-size: 56px;
    }
}

.callout__title--italic {
    font-style: italic;
}

.callout__list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    max-width: 362px;
}

.callout__list > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

@media (min-width: 768px) {

    .callout__list {
        margin-top: 1.75rem;
    }

    .callout__list > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
}

.callout__list-item {
    display: flex;
    gap: 5px;
    font-size: 16px;
    line-height: 140%;
    color: #000000CC;
}

@media (min-width: 768px) {

    .callout__list-item {
        font-size: 18px;
    }
}

.callout__list-icon {
    margin-top: 3px;
    display: flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(136 45 23 / var(--tw-bg-opacity, 1));
}

.callout__button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 56 92 / var(--tw-bg-opacity, 1));
    padding-left: 52px;
    padding-right: 52px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.callout__button:hover {
    background-color: rgb(255 56 92 / 0.9);
}

@media (min-width: 768px) {

    .callout__button {
        margin-top: 48px;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 18.5px;
        padding-bottom: 18.5px;
        font-size: 18px;
    }
}

.callout-animation--left {
    position: absolute;
    left: 123px;
    top: 50%;
    display: none;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {

    .callout-animation--left {
        display: block;
    }
}

.callout-animation--right {
    position: absolute;
    top: 50%;
    display: none;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {

    .callout-animation--right {
        display: block;
    }
}

.callout-animation--right {
    right: 123px;
}

.callout-path--left,
.callout-path--right {
    visibility: hidden;
}

.callout-path__item {
    position: absolute;
    aspect-ratio: 400/282;
    width: 400px;
    border-radius: 16px;
    background-color: #FFFFFF47;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.625rem;
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    will-change: transform;
}

.callout-path__card {
    aspect-ratio: 384/240;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.callout-path__card-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.callout-path__card-label {
    margin-top: 0.625rem;
    display: block;
    padding-left: 0.5rem;
    font-family: Fragment Mono, monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 125%;
    letter-spacing: 0.16em;
    color: #00000099;
}

.callout-marquee--mobile {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {

    .callout-marquee--mobile {
        display: none;
    }
}

.callout-marquee__list {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    align-items: stretch;
    padding-top: 30px;
    padding-bottom: 40px;
    animation: marquee-left 30s linear infinite;
}

.callout-marquee--mobile .callout-path__item {
    position: static;
    margin-right: 1rem;
    width: 280px;
    flex-shrink: 0;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
