@font-face {
    font-family: DM Sans;
    src: url("DMSans-VariableFont_opsz,wght.woff2")format("woff2"), url("DMSans-VariableFont_opsz,wght.ttf")format("truetype");
    font-weight: 100 900;
    font-display: swap
}

@font-face {
    font-family: Epilogue;
    src: url("Epilogue-VariableFont_wght.woff2")format("woff2"), url("Epilogue-VariableFont_wght.ttf")format("truetype");
    font-weight: 100 900;
    font-display: swap
}

:root {
    --bg-primary: #1e302c;
    --bg-secondary: #162521;
    --bg-tertiary: #0f1a18;
    --surface-1: #293c37;
    --surface-2: #344a44;
    --surface-3: #89a9a8;
    --surface-4: #d1a4a9;
    --text-primary: #ece7e2;
    --text-secondary: #b9c8c3;
    --text-muted: #89a9a8;
    --accent-primary: #9dd8c5;
    --accent-hover: #a7dac9;
    --accent-soft: #6fae9b;
    --border-subtle: #344a44;
    --border-default: #557069;
    --border-strong: #9dd8c5;
    --color-green: var(--accent-primary);
    --color-lightblue: var(--surface-3);
    --color-darkblue: var(--bg-tertiary);
    --color-lightgreen: var(--accent-hover);
    --color-orange: var(--surface-4);
    --color-maroon: var(--surface-2);
    --color-pink: var(--surface-4);
    --bg-color: var(--bg-primary);
    --color-white: var(--text-primary);
    --color-black: var(--bg-tertiary);
    --color-dark: var(--bg-secondary);
    --color-black-soft: var(--surface-1);
    --color-black-deep: var(--bg-tertiary)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

::selection {
    background-color: var(--accent-primary);
    color: var(--color-black)
}

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

    *,
    :before,
    :after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important
    }
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    -webkit-user-select: none;
    user-select: none
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: url("cursor-default.svg") 3 0, auto;
    font-family: Epilogue, sans-serif;
    overflow-x: hidden
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    overflow-x: clip
}

html::-webkit-scrollbar {
    display: none
}

body::-webkit-scrollbar {
    display: none
}

.main-header {
    width: 100%
}

.logo-work-container {
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 85px;
    display: flex;
    position: relative
}

.nav-bar__work-blob-svg {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.logo-work-text {
    z-index: 2;
    color: inherit;
    letter-spacing: -.5px;
    margin-left: 60px;
    font-family: Epilogue, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    transition: color .5s cubic-bezier(.4, 0, .2, 1);
    position: relative
}

.navbar {
    z-index: 1000;
    background: 0 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    transition: color .5s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    position: fixed;
    top: 0;
    left: 0
}

.navbar.on-dark,
.navbar.on-light {
    color: var(--text-primary)
}

.nav-bar__whatsapp-svg path {
    fill: currentColor;
    transition: fill .2s cubic-bezier(.4, 0, .2, 1)
}

.nav-bar__whatsapp-svg {
    width: 32px;
    height: auto;
    color: inherit;
    display: block
}

.main-header {
    width: 100%;
    position: relative
}

.nav-overlay {
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #00000059;
    position: fixed;
    inset: 0
}

.nav-hover-trigger {
    position: relative
}

.nav-popout {
    background: var(--surface-1);
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    border-radius: 16px;
    position: absolute;
    overflow: hidden
}

.nav-popout-inner {
    flex-direction: column;
    display: flex
}

.nav-hover-trigger:hover .nav-popout {
    pointer-events: auto
}

.nav-popout h4,
.nav-popout p,
.nav-popout a {
    margin: 0;
    font-family: Epilogue, sans-serif
}

.nav-left .nav-popout {
    width: 320px;
    height: 500px;
    top: 8px;
    left: -8px
}

.nav-left .nav-popout-inner {
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 100px 24px 24px
}

.nav-left .logo-work-container {
    z-index: 105;
    position: relative
}

.nav-left:hover .logo-work-text {
    color: var(--text-primary) !important
}

.nav-work-item {
    color: inherit;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    display: flex
}

.nav-work-item__img-wrap {
    border-radius: 12px;
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    overflow: hidden
}

.nav-work-item__img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.nav-work-item__img--contain {
    object-fit: contain
}

.nav-work-item__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 2px;
    display: flex
}

.nav-work-badge {
    background-color: var(--accent-primary);
    width: fit-content;
    color: var(--bg-tertiary);
    border-radius: 20px 20px 20px 1px;
    padding: 4px 12px;
    font-size: 1.05rem;
    font-weight: 500
}

.badge-maroon,
.badge-pink,
.badge-purple {
    background-color: var(--accent-primary);
    color: var(--bg-tertiary)
}

.nav-work-title {
    letter-spacing: -.5px;
    margin-top: 50px;
    font-size: 1.3rem;
    font-weight: 650;
    line-height: 1.1
}

.nav-work-btn {
    text-align: center;
    background-color: var(--accent-primary);
    color: var(--bg-tertiary);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    border-radius: 12px;
    margin-top: 10rem;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    display: block
}

.nav-right .nav-popout {
    top: 8px;
    right: -8px
}

.nav-right .nav-popout-inner {
    text-align: center;
    align-items: center;
    gap: 20px;
    width: 320px;
    padding: 100px 24px 24px
}

.nav-right .logo-whatsapp {
    z-index: 105;
    position: relative
}

.nav-wa-qr {
    object-fit: cover;
    border-radius: 0;
    width: 200px;
    height: 200px;
    position: relative;
    top: -60px
}

.nav-wa-title {
    letter-spacing: -.5px;
    text-transform: lowercase;
    margin-top: -40px;
    font-size: 1.4rem;
    font-weight: 800
}

.nav-wa-desc {
    opacity: 1;
    margin-bottom: 28px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35
}

.nav-wa-link {
    color: inherit;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    flex-direction: column;
    align-items: center;
    padding-bottom: 18px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    position: relative
}

.nav-wa-link-text {
    z-index: 2
}

.nav-wa-link-svg {
    width: 100%;
    height: 14px;
    position: absolute;
    bottom: 0;
    left: 0
}

.nav-wa-link-svg path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200px;
    transition: stroke-dashoffset .5s ease-out
}

.nav-hover-trigger:hover .nav-wa-link-svg path {
    stroke-dashoffset: 0;
    transition-delay: .15s
}

.ca-button {
    z-index: 105;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    background: 0 0;
    border: none;
    outline: none;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    transition: transform .2s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    position: relative
}

.ca-button:active {
    transform: scale(.96)
}

.ca-button-img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: none
}

.ca-button-img.active {
    display: block
}

.content-section {
    text-align: center;
    padding: 80px 20px 0
}

.title-container {
    margin-bottom: 80px;
    display: inline-block;
    position: relative
}

.main-title {
    letter-spacing: -4px;
    color: var(--text-primary);
    cursor: url("cursor-text.svg") 12 12, auto;
    font-family: Epilogue, sans-serif;
    font-size: 6rem;
    font-weight: 800
}

.italic-text {
    margin-left: -5px;
    font-family: Times New Roman, serif;
    font-style: italic;
    font-weight: 400
}

.title-underline-svg {
    width: 160px;
    height: auto;
    color: var(--text-primary);
    position: absolute;
    bottom: -15px;
    right: 0
}

.title-underline-svg path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200px
}

.motion-card-section {
    text-align: center;
    z-index: 1;
    width: 100%;
    padding: 120px 60px 50px;
    position: relative;
    overflow: hidden
}

.motion-card__heading {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative
}

.motion-card__title {
    letter-spacing: -5px;
    color: var(--text-primary);
    cursor: url("cursor-text.svg") 12 12, auto;
    margin-bottom: 0;
    font-family: Epilogue, sans-serif;
    font-size: 7rem;
    font-weight: 750;
    line-height: .9
}

.motion-card__subtitle {
    letter-spacing: -2px;
    color: var(--text-primary);
    font-family: Times New Roman, Georgia, serif;
    font-size: 7.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.15;
    display: inline-block;
    position: relative;
    top: -30px
}

.motion-card__sticker {
    pointer-events: none;
    display: inline-block;
    position: absolute
}

.motion-card__sticker--top {
    width: 150px;
    height: 80px;
    top: -15px;
    right: -25px;
    rotate: -10deg
}

.motion-card__underline-svg {
    max-width: 720px;
    color: var(--accent-primary);
    height: auto;
    margin: -45px auto 0;
    display: block
}

.motion-card__cards-area {
    width: 100%;
    max-width: 1100px;
    height: 550px;
    margin: 40px auto 80px;
    position: relative
}

.motion-card__cards {
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative
}

.motion-card__card {
    border: 1px solid var(--border-subtle);
    border-radius: .375rem;
    flex-shrink: 0;
    width: 17vw;
    height: 22vw;
    position: relative;
    overflow: clip;
    box-shadow: 0 12px 40px #0f1a1838, 0 0 24px #9dd8c52e
}

.motion-card__card-image {
    background-color: var(--surface-2);
    border-radius: .375rem;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.motion-card__card-image .cover-image {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.motion-card__card--1 {
    z-index: 1;
    margin-right: -2vw;
    transform: rotate(-6deg)
}

.motion-card__card--2 {
    z-index: 2;
    margin-right: -2vw;
    bottom: -3rem;
    left: -2rem;
    transform: rotate(6deg)
}

.motion-card__card--3 {
    z-index: 3;
    margin-right: -2vw;
    left: -3rem;
    transform: rotate(-6deg)
}

.motion-card__card--4 {
    z-index: 4;
    margin-right: -2vw;
    bottom: -2rem;
    left: -3.5rem;
    transform: rotate(4deg)
}

.motion-card__floating-labels {
    z-index: 10;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.motion-card__floating-labels .motion-card__floating-label {
    pointer-events: auto
}

.motion-card__floating-label {
    z-index: 10;
    white-space: nowrap;
    border-radius: 9999px 9999px 9999px 0;
    padding: .1vw .5vw;
    position: absolute;
    transform: translate(-50%, -50%)
}

.motion-card__floating-text {
    pointer-events: none;
    color: var(--text-primary);
    margin: 0;
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    font-weight: 450
}

.motion-card__floating-label--pink {
    background-color: var(--surface-1);
    top: 31%;
    left: 30%
}

.motion-card__floating-label--orange {
    background-color: var(--surface-2);
    top: 69%;
    left: 48%
}

.motion-card__floating-label--red {
    background-color: var(--surface-2);
    top: 46%;
    left: 89%
}

.motion-card__footer-text {
    text-align: center;
    max-width: 550px;
    margin: 0 auto
}

.motion-card__description {
    color: var(--text-secondary);
    letter-spacing: -.2px;
    cursor: url("cursor-text.svg") 12 12, auto;
    font-family: DM Sans, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7
}

@media (min-width:769px) {
    .motion-card__heading {
        max-width: none
    }

    .motion-card__title,
    .motion-card__subtitle {
        white-space: nowrap
    }

    .motion-card__title {
        font-size: clamp(3rem, 6.2vw, 7rem)
    }

    .motion-card__subtitle {
        font-size: clamp(3.2rem, 6.6vw, 7.5rem)
    }
}

.showreel-section {
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 45px 40px 120px;
    display: flex;
    position: relative;
    overflow: hidden
}

.showreel__content {
    text-align: center;
    width: 100%;
    max-width: 1200px
}

.showreel__title {
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: .5rem;
    font-family: Epilogue, sans-serif;
    font-size: 4rem;
    font-weight: 800
}

.showreel__subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-family: DM Sans, sans-serif;
    font-size: 1.15rem;
    font-weight: 400
}

.chart-wrapper {
    background-color: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    width: 100%;
    padding-bottom: 125%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px #0000004d
}

@media (min-width:1400px) {
    .chart-wrapper {
        padding-bottom: 65%
    }
}

.chart-iframe {
    border: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

@media (max-width:768px) {
    .showreel-section {
        padding: 80px 20px
    }

    .showreel__title {
        font-size: 2.5rem
    }
}

.Double-marquee {
    background-color: var(--bg-color);
    align-items: center;
    min-height: 340px;
    padding: 40px 0;
    display: flex
}

.marquee-row {
    width: 100%;
    position: relative;
    overflow: hidden
}

.marquee-row:before,
.marquee-row:after {
    content: "";
    z-index: 2;
    pointer-events: none;
    width: 100px;
    position: absolute;
    top: 0;
    bottom: 0
}

.marquee-row:before {
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
    left: 0
}

.marquee-row:after {
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
    right: 0
}

.marquee-track {
    flex-direction: row;
    gap: 20px;
    width: max-content;
    animation: 30s linear infinite marqueeLeft;
    display: flex
}

@keyframes marqueeLeft {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

.marquee-item {
    border-radius: 10px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 240px;
    display: flex
}

.marquee-logo {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative
}

.marquee-logo__before {
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.cover-image {
    object-fit: contain;
    width: 100%;
    height: 100%
}

.main-footer {
    background-color: var(--bg-color);
    padding: 10px
}

.footer-inner {
    background-color: var(--color-darkblue);
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-between;
    min-height: 95vh;
    padding: 80px 40px 40px;
    display: flex;
    position: relative;
    overflow: hidden
}

.footer-top {
    z-index: 5;
    justify-content: space-between;
    gap: 40px;
    display: flex;
    position: relative
}

.footer-column {
    color: var(--text-primary);
    flex-direction: column;
    flex: 1;
    gap: 15px;
    display: flex
}

.footer-badge {
    background: color-mix(in srgb, var(--accent-primary) 16%, transparent);
    color: var(--accent-primary);
    border: 1px solid color-mix(in srgb, var(--accent-primary) 32%, transparent);
    text-transform: lowercase;
    cursor: url("cursor-text.svg") 12 12, auto;
    border-radius: 20px 20px 20px 1px;
    align-items: center;
    width: fit-content;
    padding: 6px 14px;
    font-family: Epilogue, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 450;
    display: inline-block
}

.footer-column h3 {
    letter-spacing: -1px;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    font-family: Epilogue, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1
}

.footer-column h3 a {
    color: inherit;
    text-decoration: none
}

.footer-column address {
    cursor: url("cursor-text.svg") 12 12, auto;
    font-family: Epilogue, Arial, sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 1000;
    line-height: 1.2
}

.footer-map-link {
    color: var(--text-primary);
    flex-direction: column;
    width: fit-content;
    margin-top: 10px;
    padding-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    position: relative
}

.footer-map-link span {
    cursor: url("cursor-pointer.svg") 3 0, pointer
}

.draw-btn__svg {
    width: 40%;
    height: auto;
    margin-top: 2px
}

.footer-email {
    color: var(--text-primary);
    letter-spacing: -.5px;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    width: fit-content;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    display: inline-block
}

.footer-whatsapp {
    color: var(--text-primary);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    width: fit-content;
    margin-top: -10px;
    font-size: 2.2rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block
}

.footer-note {
    opacity: .8;
    cursor: url("cursor-text.svg") 12 12, auto;
    font-size: 1rem;
    line-height: 1.4
}

.footer-socials {
    gap: 25px;
    margin-top: 1px;
    display: flex
}

.footer-socials a,
.footer-socials button {
    color: var(--color-white);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex
}

.footer-socials button {
    background: 0 0;
    border: none;
    padding: 0
}

.footer-socials a svg,
.footer-socials a img,
.footer-socials button img {
    object-fit: contain;
    width: 100%;
    height: 100%
}

.footer-socials [aria-label=Community] {
    width: 50px
}

.footer-socials [aria-label=Community] img {
    object-fit: contain
}

.footer-bottom {
    width: 100%;
    margin-top: 50px;
    position: relative
}

.footer-big-text {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
    overflow: hidden
}

.footer-logo__img {
    opacity: .12;
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

.footer-bottom-row {
    pointer-events: none;
    z-index: 10;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0
}

.footer-url {
    display: none
}

.footer-credits-wrapper {
    pointer-events: auto;
    z-index: 100;
    margin-bottom: -25px;
    margin-right: -25px;
    position: relative
}

.footer-credits-wrapper:before {
    content: "";
    pointer-events: auto;
    height: calc(100% + 25px);
    position: absolute;
    bottom: 0;
    left: -10px;
    right: -10px
}

.footer-credits {
    background: var(--surface-2);
    color: var(--text-primary);
    pointer-events: auto;
    letter-spacing: .5px;
    z-index: 2;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    border-radius: 20px 20px 20px 1px;
    padding: 3px 12px;
    font-family: Epilogue;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    position: relative
}

.credits-box {
    background: var(--surface-1);
    opacity: 0;
    visibility: hidden;
    transform-origin: 100% 100%;
    border: 3px solid var(--border-default);
    pointer-events: auto;
    z-index: 1;
    box-sizing: border-box;
    border-radius: 12px;
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    overflow: hidden
}

.credits-content {
    white-space: nowrap;
    gap: 38px;
    width: max-content;
    height: max-content;
    padding: 34px 26px;
    display: flex
}

.credits-item {
    flex-direction: column;
    gap: 4px;
    display: flex
}

.overflow-wrapper {
    overflow: visible
}

.credits-label,
.credits-name {
    display: inline-block
}

.credits-label {
    color: var(--text-primary);
    font-family: Epilogue, sans-serif;
    font-size: 1.3rem;
    font-weight: 950
}

.credits-name {
    color: var(--text-primary);
    opacity: .9;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    font-family: Epilogue, sans-serif;
    font-size: 1.1rem;
    font-weight: 450;
    text-decoration: none;
    display: inline-block
}

.footer-stickers {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.footer-sticker {
    pointer-events: auto;
    width: 100px;
    height: auto;
    position: absolute
}

.footer-sticker img {
    width: 100%;
    height: auto;
    display: block
}

.sticker-boom {
    width: 140px;
    bottom: 15%;
    left: 3%;
    transform: rotate(-12deg)
}

.sticker-smiley {
    width: 130px;
    bottom: 48%;
    left: 17%;
    transform: rotate(15deg)
}

.sticker-heart {
    width: 130px;
    bottom: 12%;
    left: 31%;
    transform: rotate(-8deg)
}

.footer-sticker.sticker-hands {
    width: 130px;
    bottom: 44%;
    left: 45%;
    transform: rotate(10deg)
}

.footer-sticker.sticker-100 {
    width: 135px;
    bottom: 15%;
    left: 59%;
    transform: rotate(-15deg)
}

.footer-sticker.sticker-camera {
    width: 130px;
    bottom: 48%;
    left: 73%;
    transform: rotate(8deg)
}

.sticker-dicktime {
    width: 140px;
    bottom: 18%;
    left: 87%;
    transform: rotate(-10deg)
}

.vimeo-hero {
    background-color: var(--color-black-soft);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    border-radius: 24px;
    width: calc(100% - 24px);
    height: calc(100svh - 24px);
    margin: 12px auto;
    position: relative;
    overflow: hidden
}

.vimeo-hero__iframe {
    pointer-events: none;
    object-position: center center;
    border: none;
    width: 100vw;
    min-width: 177.78vh;
    height: 56.25vw;
    min-height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.vimeo-hero__placeholder {
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: opacity .6s;
    position: absolute;
    inset: 0
}

.vimeo-hero__placeholder--hidden {
    opacity: 0;
    pointer-events: none
}

.vimeo-hero__fade {
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(#0000 30%, #0003 60%, #000000b3 100%);
    position: absolute;
    inset: 0
}

.home-header__title {
    z-index: 3;
    pointer-events: none;
    padding: 0 44px;
    position: absolute;
    bottom: 72px;
    left: 0;
    right: 0
}

.vimeo-hero__title {
    letter-spacing: -3px;
    color: var(--text-primary);
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
    cursor: url("cursor-text.svg") 2 0, text;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 .16em;
    font-family: Epilogue, sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    display: flex
}

.vimeo-hero__title * {
    cursor: url("cursor-text.svg") 2 0, text
}

.vimeo-hero__word {
    display: inline-block;
    position: static
}

.vimeo-hero__word.is--relative {
    position: relative
}

.vimeo-hero__title em {
    letter-spacing: -1px;
    font-family: Times New Roman, Georgia, serif;
    font-style: italic;
    font-weight: 400
}

.home-header__smiley {
    pointer-events: none;
    z-index: 10;
    width: 1em;
    height: 1em;
    position: absolute;
    top: -.35em;
    left: .4em;
    rotate: -30deg
}

.home-header__smiley-svg {
    width: 100%;
    height: 100%
}

.home-header__star {
    pointer-events: none;
    width: .8em;
    height: .8em;
    position: absolute;
    top: 10%;
    right: -.6em;
    transform: translateY(-50%)rotate(10deg)
}

.home-header__star-inner {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative
}

.home-header__star-svg {
    width: 100%;
    height: 100%
}

.home-header__title-line-svg {
    width: 120%;
    height: 104%;
    color: var(--text-primary);
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: visible;
    transform: translate(-50%, -50%)
}

.home-header__title-line-path {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400px;
    animation: 1.4s cubic-bezier(.4, 0, .2, 1) .3s forwards draw-oval-underline
}

@keyframes draw-oval-underline {
    to {
        stroke-dashoffset: 0
    }
}

.vimeo-hero__controls {
    z-index: 4;
    align-items: center;
    gap: 6px;
    display: flex;
    position: absolute;
    bottom: 28px;
    left: 44px
}

.vimeo-hero__btn {
    border: 1.5px solid var(--border-default);
    background: color-mix(in srgb, var(--bg-tertiary) 72%, transparent);
    width: 36px;
    height: 36px;
    color: var(--text-primary);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    transition: background .25s, border-color .25s, transform .2s;
    display: flex
}

.vimeo-hero__btn:hover {
    background: color-mix(in srgb, var(--accent-primary) 22%, var(--bg-tertiary));
    border-color: var(--accent-primary);
    transform: scale(1.08)
}

.vimeo-hero__btn svg {
    width: 16px;
    height: 16px
}

.vimeo-mute-bubble {
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform-origin: 0;
    position: fixed;
    top: 0;
    left: 0;
    transform: scale(0)rotate(-30deg)
}

.vimeo-mute-bubble__blob {
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    display: flex;
    position: relative
}

.vimeo-mute-bubble__blob-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.vimeo-mute-bubble__icon {
    z-index: 1;
    width: 56px;
    height: 56px;
    color: var(--bg-tertiary);
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative
}

.vimeo-mute-bubble__icon svg {
    width: 100%;
    height: 100%
}

.vimeo-mute-bubble.is--muted .vimeo-mute-bubble__unmute,
.vimeo-mute-bubble.is--unmuted .vimeo-mute-bubble__mute {
    display: none
}

.vimeo-hero__loading {
    z-index: 5;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0
}

.vimeo-hero__spinner {
    opacity: .7;
    width: 48px;
    height: 48px
}

.home-header__touch-play,
.home-header__blob-svg,
.home-header__mute-icons {
    display: none
}

.cursor-bubble {
    pointer-events: none;
    background-color: var(--accent-primary);
    color: var(--text-primary);
    opacity: 0;
    transform-origin: 0;
    z-index: 10000;
    white-space: nowrap;
    will-change: transform, opacity;
    border-radius: 50px 50px 50px 0;
    padding: 5px 7px 3px;
    font-family: Epilogue, sans-serif;
    font-size: 18px;
    position: fixed;
    top: 0;
    left: 0;
    transform: scale(0)
}

.transition-scribble-clip {
    z-index: 9999;
    pointer-events: none;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
    overflow: hidden
}

.transition-scribble {
    pointer-events: none;
    width: 200vw;
    height: 200vh;
    color: var(--color-darkblue);
    position: absolute;
    top: -50vh;
    left: -50vw
}

body.is-transitioning {
    pointer-events: none !important
}

body.is-transitioning .cursor-bubble {
    opacity: 0 !important;
    display: none !important;
    transform: scale(0) !important
}

@media (min-width:769px) and (max-width:1023px) {
    .motion-card__title {
        letter-spacing: -3px;
        font-size: clamp(3rem, 6vw, 7rem)
    }

    .motion-card__subtitle {
        font-size: clamp(3.5rem, 6.5vw, 7.5rem)
    }

    .motion-card__cards-area {
        height: 420px
    }

    .motion-card__card {
        width: 22vw;
        height: 28vw
    }

    .cards-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        height: auto !important;
        margin: 60px auto !important;
        display: flex !important
    }

    .card {
        width: min(480px, 90%) !important;
        height: auto !important;
        min-height: 340px !important;
        position: relative !important;
        top: auto !important;
        left: auto !important
    }
}

@media (min-width:1024px) and (max-width:1200px) {
    .motion-card__title {
        letter-spacing: -3px;
        font-size: clamp(3rem, 6vw, 7rem)
    }

    .motion-card__subtitle {
        font-size: clamp(3.5rem, 6.5vw, 7.5rem)
    }

    .motion-card__cards-area {
        height: 420px
    }

    .motion-card__card {
        width: 22vw;
        height: 28vw
    }
}

@media (max-width:900px) {
    .footer-top {
        flex-direction: column;
        gap: 60px
    }

    .footer-column h3,
    .footer-column address,
    .footer-email {
        font-size: 1.5rem
    }
}

@media (max-width:768px) {
    body {
        overflow-x: hidden
    }

    * {
        cursor: auto !important
    }

    .navbar {
        padding: 12px 16px
    }

    .nav-right {
        align-items: center;
        gap: 8px;
        display: flex
    }

    .logo-work-container {
        flex-shrink: 0;
        width: 44px;
        min-width: 44px;
        height: 44px;
        position: relative
    }

    .nav-bar__work-blob-svg {
        opacity: 1 !important;
        visibility: visible !important
    }

    .logo-work-text {
        margin-left: 48px;
        font-size: 1.3rem
    }

    .ca-button:not(.ca-button--mobile) {
        display: none !important
    }

    .ca-button--mobile {
        width: 130px;
        display: flex
    }

    .cursor-bubble,
    .nav-popout {
        display: none !important
    }

    .vimeo-hero {
        border-radius: 16px;
        width: calc(100% - 12px);
        height: calc(100svh - 12px);
        margin: 6px auto
    }

    .vimeo-hero__iframe {
        width: 100%;
        height: 100%;
        min-width: unset;
        min-height: unset;
        object-fit: cover;
        object-position: center center
    }

    .home-header__title {
        padding: 0 18px;
        bottom: 72px
    }

    .vimeo-hero__title {
        letter-spacing: -1px;
        gap: 0 .1em;
        font-size: clamp(1.8rem, 7vw, 3rem)
    }

    .vimeo-hero__controls {
        gap: 4px;
        bottom: 18px;
        left: 18px
    }

    .vimeo-hero__btn {
        width: 32px;
        height: 32px;
        position: relative
    }

    .vimeo-hero__btn:after {
        content: "";
        width: 44px;
        height: 44px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .vimeo-mute-bubble {
        display: none !important
    }

    .content-section {
        padding: 60px 0 0;
        overflow: visible
    }

    .service-cards-wrapper.content-section {
        padding: 40px 0 0 !important
    }

    .main-title {
        letter-spacing: -2px;
        font-size: clamp(2rem, 8vw, 3rem)
    }

    .title-underline-svg {
        width: 90px;
        bottom: -8px
    }

    .title-container {
        margin-bottom: 40px;
        padding: 0 20px
    }

    .motion-card-section {
        padding: 60px 20px
    }

    .motion-card__heading {
        margin-bottom: 40px
    }

    .motion-card__title {
        letter-spacing: -2px;
        font-size: clamp(2.2rem, 9vw, 4rem);
        line-height: .95
    }

    .motion-card__subtitle {
        letter-spacing: -1px;
        font-size: clamp(2.5rem, 10vw, 4.5rem);
        top: -15px
    }

    .motion-card__sticker--top {
        width: 90px;
        top: -10px;
        right: -10px
    }

    .motion-card__underline-svg {
        margin-top: -25px
    }

    .motion-card__cards-area {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 20px 0 40px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory !important;
        height: auto !important;
        overflow: scroll visible !important
    }

    .motion-card__cards-area::-webkit-scrollbar {
        display: none
    }

    .motion-card__cards {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 14px !important;
        width: max-content !important;
        padding: 20px 20vw 20px 20px !important;
        display: flex !important
    }

    .motion-card__card {
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
        width: 75vw !important;
        max-width: 300px !important;
        height: 90vw !important;
        max-height: 360px !important;
        margin: 0 !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important
    }

    .motion-card__card--1 {
        transform: rotate(-2.5deg) !important
    }

    .motion-card__card--2 {
        transform: rotate(2deg) !important
    }

    .motion-card__card--3 {
        transform: rotate(-2deg) !important
    }

    .motion-card__card--4 {
        transform: rotate(2.5deg) !important
    }

    .motion-card__floating-labels,
    .motion-card__blob {
        display: none !important
    }

    .motion-card__description {
        font-size: 1rem;
        line-height: 1.6
    }

    .service-cards-wrapper {
        padding: 60px 20px 40px !important;
        overflow: visible !important
    }

    .cards-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        overflow: visible !important
    }

    .card {
        width: 100% !important;
        height: auto !important;
        min-height: 360px !important;
        margin: 0 !important;
        position: relative !important;
        top: auto !important;
        left: auto !important
    }

    .card-green {
        transform: rotate(-1.5deg) !important
    }

    .card-darkblue {
        transform: rotate(1deg) !important
    }

    .card-orange {
        transform: rotate(-1deg) !important
    }

    .card-maroon {
        transform: rotate(1.5deg) !important
    }

    .card-pink {
        transform: rotate(-1deg) !important
    }

    .card-sticker {
        top: -15px !important
    }

    .card-title {
        font-size: 1.8rem
    }

    .card-list li {
        font-size: 1rem
    }

    .showreel-section {
        min-height: 60vh;
        padding: 0 20px
    }

    .showreel__title {
        letter-spacing: -1px;
        font-size: clamp(1.8rem, 9vw, 2.8rem)
    }

    .showreel__subtitle {
        letter-spacing: 1px;
        font-size: .95rem
    }

    .Double-marquee {
        min-height: unset;
        padding: 32px 0
    }

    .marquee-track {
        gap: 12px;
        animation-duration: 20s
    }

    .marquee-item {
        width: 140px;
        height: 140px
    }

    .main-footer {
        padding: 6px
    }

    .footer-inner {
        min-height: unset;
        border-radius: 14px;
        padding: 48px 20px 28px
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 32px
    }

    .footer-column {
        text-align: center;
        align-items: center
    }

    .footer-socials {
        justify-content: center
    }

    .footer-column h3 {
        letter-spacing: -.5px;
        font-size: 1.3rem
    }

    .footer-column address {
        font-size: 1.15rem
    }

    .footer-email {
        font-size: 1.2rem
    }

    .footer-whatsapp {
        margin-top: -4px;
        font-size: 1.05rem
    }

    .footer-map-link {
        font-size: .9rem
    }

    .sticker-boom {
        width: 80px;
        bottom: 12%;
        left: 2%
    }

    .sticker-smiley {
        width: 80px;
        bottom: 5%;
        left: 28%
    }

    .sticker-heart {
        width: 75px;
        bottom: 20%;
        left: 50%
    }

    .footer-sticker.sticker-hands {
        width: 80px;
        bottom: 3%;
        left: 62%
    }

    .footer-sticker.sticker-100 {
        width: 70px;
        bottom: 22%;
        left: 74%
    }

    .footer-sticker.sticker-camera {
        width: 75px;
        bottom: 10%;
        left: auto;
        right: 2%
    }

    .sticker-dicktime {
        display: none
    }

    .footer-bottom {
        margin-top: 40px
    }

    .footer-credits-wrapper {
        margin-bottom: -14px;
        margin-right: -14px
    }

    .footer-credits {
        font-size: .75rem
    }

    .credits-content {
        gap: 24px;
        padding: 24px 18px
    }

    .credits-label {
        font-size: .85rem
    }

    .credits-name {
        font-size: .9rem
    }
}

@media (max-width:1023px) {
    .horizontal-words-section {
        padding: 56px 20px 48px;
        height: auto !important;
        min-height: unset !important;
        overflow: visible !important
    }

    .horizontal-words__relative {
        white-space: normal !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        display: block !important;
        position: static !important;
        transform: none !important
    }

    .horizontal-words__h2 {
        display: none !important
    }

    .horizontal-words__h2-mobile {
        text-transform: lowercase;
        text-align: center;
        margin: 0;
        font-weight: 1000;
        letter-spacing: -2px !important;
        font-size: clamp(2.4rem, 11vw, 4.5rem) !important;
        line-height: 1.05 !important;
        display: block !important
    }

    .horizontal-words__arrow-svg,
    .horizontal-words__arrow-end-svg,
    .horizontal-words__sticker-watch,
    .horizontal-words__sticker-cursor,
    .horizontal-words__sticker-phone {
        display: none !important
    }

    .horizontal-words__sticker-svg {
        width: auto !important;
        position: static !important
    }

    .horizontal-words__bottom-text {
        text-align: left !important;
        width: 100% !important;
        padding: 28px 0 0 !important;
        position: static !important;
        transform: none !important
    }

    .horizontal-words__bottom-text-l {
        max-width: 100% !important;
        font-size: .95rem !important;
        line-height: 1.6 !important
    }
}

@media (max-width:480px) {
    .navbar {
        padding: 10px 14px
    }

    .ca-button {
        width: 110px;
        font-size: .8rem
    }

    .vimeo-hero {
        border-radius: 12px
    }

    .home-header__title {
        padding: 0 14px;
        bottom: 64px
    }

    .vimeo-hero__title {
        font-size: clamp(1.6rem, 7.5vw, 2.4rem)
    }

    .vimeo-hero__controls {
        bottom: 14px;
        left: 14px
    }

    .horizontal-words-section {
        padding: 48px 16px 40px
    }

    .horizontal-words__h2-mobile {
        font-size: clamp(2rem, 12vw, 3.5rem) !important
    }

    .motion-card-section {
        padding: 48px 16px
    }

    .motion-card__title {
        font-size: clamp(1.9rem, 10vw, 3rem)
    }

    .motion-card__subtitle {
        font-size: clamp(2.2rem, 11vw, 3.5rem)
    }

    .motion-card__card {
        width: 70vw !important;
        max-width: 260px !important;
        height: 85vw !important;
        max-height: 320px !important
    }

    .showreel__title {
        font-size: clamp(1.6rem, 10vw, 2.4rem)
    }

    .footer-inner {
        padding: 40px 16px 24px
    }

    .footer-column h3 {
        font-size: 1.15rem
    }

    .footer-email {
        font-size: 1.05rem
    }

    .sticker-smiley,
    .sticker-hands,
    .sticker-100 {
        display: none
    }

    .sticker-boom {
        width: 70px
    }

    .sticker-heart {
        width: 65px;
        left: 45%
    }

    .sticker-camera {
        width: 65px
    }
}

@media (min-width:769px) {

    .hamburger-btn,
    .mobile-drawer,
    .mobile-drawer-overlay,
    .ca-button--mobile {
        display: none !important
    }
}

@media (max-width:768px) {
    .hamburger-btn {
        cursor: pointer;
        z-index: 1100;
        background: 0 0;
        border: none;
        border-radius: 8px;
        flex-direction: column;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 6px;
        display: flex;
        position: relative
    }

    .hamburger-btn span {
        background-color: var(--text-primary);
        transform-origin: 50%;
        border-radius: 2px;
        width: 22px;
        height: 2px;
        transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s, width .3s;
        display: block
    }

    .hamburger-btn.is-open span:first-child {
        transform: translateY(7px)rotate(45deg)
    }

    .hamburger-btn.is-open span:nth-child(2) {
        opacity: 0;
        width: 0
    }

    .hamburger-btn.is-open span:nth-child(3) {
        transform: translateY(-7px)rotate(-45deg)
    }

    .mobile-drawer-overlay {
        -webkit-backdrop-filter: blur(4px);
        z-index: 1050;
        opacity: 0;
        pointer-events: none;
        background: #0000008c;
        transition: opacity .35s;
        display: block;
        position: fixed;
        inset: 0
    }

    .mobile-drawer-overlay.is-open {
        opacity: 1;
        pointer-events: auto
    }

    .mobile-drawer {
        background-color: var(--bg-secondary);
        z-index: 1099;
        overscroll-behavior: contain;
        will-change: transform;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        width: 100%;
        height: 100dvh;
        padding: 72px 28px 40px;
        transition: transform .38s cubic-bezier(.4, 0, .2, 1);
        display: flex;
        position: fixed;
        inset: 0;
        overflow-y: auto;
        transform: translateY(-100%)
    }

    .mobile-drawer.is-open {
        transform: translateY(0)
    }

    .mobile-drawer__close {
        width: 48px;
        height: 48px;
        color: var(--text-primary);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        background: 0 0;
        border: none;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        line-height: 1;
        display: flex;
        position: absolute;
        top: 20px;
        right: 24px
    }

    .mobile-drawer__close:active {
        opacity: .6
    }

    .mobile-drawer__links {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        display: flex
    }

    .mobile-drawer__link {
        text-align: center;
        min-height: 44px;
        color: var(--text-primary);
        letter-spacing: -.3px;
        -webkit-tap-highlight-color: transparent;
        justify-content: center;
        align-items: center;
        font-family: Epilogue, sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        text-decoration: none;
        transition: color .2s, transform .2s;
        display: flex
    }

    .mobile-drawer__link:active {
        color: var(--text-secondary);
        transform: scale(.97)
    }

    .mobile-drawer__ca {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        display: flex
    }

    .mobile-drawer__ca-image-btn {
        width: 220px
    }

    .mobile-drawer__ca-btn {
        background: var(--surface-3);
        border: 1px solid var(--border-default);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        border-radius: 10px;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 12px 14px;
        transition: background .2s;
        display: flex
    }

    .mobile-drawer__ca-btn:active {
        background: var(--surface-4)
    }

    .mobile-drawer__ca-address {
        color: var(--text-secondary);
        letter-spacing: .3px;
        text-align: left;
        word-break: break-all;
        flex: 1;
        font-family: DM Sans, sans-serif;
        font-size: .7rem;
        font-weight: 500;
        line-height: 1.5
    }

    .mobile-drawer__ca-copy {
        color: var(--text-primary);
        background: var(--surface-4);
        white-space: nowrap;
        border-radius: 6px;
        flex-shrink: 0;
        padding: 5px 10px;
        font-family: Epilogue, sans-serif;
        font-size: .75rem;
        font-weight: 700;
        transition: background .15s
    }

    .mobile-drawer__ca-copy.copied {
        background: var(--accent-hover);
        color: var(--text-primary)
    }

    body.drawer-open {
        touch-action: none;
        overflow: hidden !important
    }
}

.community-posts-section {
    background-color: var(--bg-color);
    z-index: 10;
    padding: 40px 5vw 100px;
    position: relative
}

.community-posts__grid {
    column-count: 3;
    column-gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: block
}

.community-posts__item {
    break-inside: avoid;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    display: inline-block
}

.community-posts__item blockquote {
    text-align: left;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: inline-block
}

.community-posts__main-wrapper {
    justify-content: center;
    width: 100%;
    margin-bottom: 3rem;
    display: flex
}

.community-posts__item--main {
    justify-content: center;
    width: 100%;
    max-width: 550px;
    display: flex
}

.community-posts__pair {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex
}

.community-posts__item--pair {
    flex: 0 550px;
    justify-content: center;
    min-width: 300px;
    max-width: 550px;
    margin-bottom: 0;
    display: flex
}

.community-posts__item--pair blockquote {
    width: 100% !important;
    max-width: 550px !important;
    margin: 0 !important
}

@media (max-width:1200px) {
    .community-posts__pair {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem
    }

    .community-posts__item--pair {
        flex: auto;
        width: 100%
    }
}

@media (max-width:768px) {
    .community-posts__pair {
        margin-bottom: 2rem
    }
}

@media (max-width:1024px) {
    .community-posts__grid {
        column-count: 2;
        column-gap: 1.5rem
    }
}

@media (max-width:768px) {
    .community-posts-section {
        width: 100%;
        padding: 60px 1rem
    }

    .community-posts__grid {
        column-count: 1;
        column-gap: 0;
        width: 100%
    }

    .community-posts__item {
        width: 100%;
        margin-bottom: 1.5rem;
        overflow: visible
    }

    .community-posts__item blockquote,
    .community-posts__item iframe {
        width: 100% !important;
        min-width: 250px !important;
        max-width: 100% !important;
        margin: 0 auto !important
    }
}

.community-videos-section {
    width: 100%;
    margin-top: 5rem
}

.community-videos__grid {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex
}

.community-videos__row {
    justify-content: center;
    gap: 2rem;
    width: 100%;
    display: flex
}

.community-videos__item {
    box-sizing: border-box;
    flex: 0 30%;
    justify-content: center;
    min-width: 300px;
    max-width: 550px;
    display: flex
}

.community-videos__item blockquote {
    width: 100% !important;
    max-width: 550px !important;
    margin: 0 !important
}

@media (max-width:1024px) {
    .community-videos__row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem
    }

    .community-videos__item {
        flex: auto;
        width: 100%;
        max-width: 550px
    }
}

.community-link-card-wrapper {
    justify-content: center;
    width: 100%;
    margin-bottom: 4rem;
    display: flex
}

.community-link-card {
    border: 1px solid var(--border-default);
    background-color: var(--surface-1);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    transition: transform .25s, box-shadow .25s;
    display: block;
    overflow: hidden;
    box-shadow: 0 10px 30px #00000040
}

.community-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px #00000052
}

.community-link-card__img {
    width: 100%;
    height: auto;
    display: block
}

@media (max-width:768px) {
    .community-link-card-wrapper {
        margin-bottom: 2.5rem
    }
}

.community-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid
}

@media (max-width:1024px) {
    .community-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

.td-metric-small-card {
    background-color: var(--surface-1);
    border: 3px solid var(--border-strong);
    box-shadow: 5px 5px 0px var(--border-strong);
    border-radius: 16px;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: transform .2s, box-shadow .2s;
    display: flex
}

.td-metric-small-card:hover {
    box-shadow: 9px 9px 0px var(--border-strong);
    transform: translate(-4px, -4px)
}

.td-metric-icon {
    background-color: var(--bg-tertiary);
    border: 3px solid var(--border-strong);
    width: 72px;
    height: 72px;
    color: var(--accent-primary);
    box-shadow: 3px 3px 0px var(--border-strong);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex
}

.td-metric-icon svg {
    width: 32px;
    height: 32px
}

.td-metric-content {
    flex-grow: 1
}

.td-metric-label {
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-primary);
    margin-bottom: .5rem;
    font-family: DM Sans, sans-serif;
    font-size: .95rem;
    font-weight: 700
}

.td-metric-primary {
    letter-spacing: -2px;
    color: var(--accent-primary);
    word-break: break-word;
    margin-bottom: .25rem;
    font-family: Epilogue, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1
}

.td-btn {
    border: 3px solid var(--border-strong);
    background-color: var(--accent-primary);
    color: var(--bg-tertiary);
    box-shadow: 4px 4px 0px var(--border-strong);
    cursor: pointer;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.75rem;
    font-family: Epilogue, sans-serif;
    font-size: 1.05rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background-color .2s;
    display: inline-flex
}

.td-btn:hover {
    box-shadow: 7px 7px 0px var(--border-strong);
    background-color: var(--accent-hover);
    transform: translate(-3px, -3px)
}

.td-btn-small {
    padding: .5rem 1rem;
    font-size: .9rem
}

@media (max-width:768px) {
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem
    }

    .td-metric-small-card {
        padding: 1.5rem
    }
}

.machine-section {
    background-color: var(--bg-color);
    z-index: 10;
    padding: 40px 5vw 100px;
    position: relative
}

.machine__intro {
    color: var(--text-secondary);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-family: DM Sans, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6
}

.machine__flows {
    text-align: left;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    display: grid
}

.machine__flow {
    border-left: 3px solid var(--border-subtle);
    flex-direction: column;
    gap: .6rem;
    padding-left: 1.25rem;
    display: flex
}

.machine__flow-steps {
    letter-spacing: -.5px;
    color: var(--text-primary);
    font-family: Epilogue, sans-serif;
    font-size: 1.05rem;
    font-weight: 800
}

.machine__flow-arrow {
    color: var(--accent-primary);
    margin: 0 .15rem
}

.machine__flow-note {
    color: var(--text-muted);
    font-family: DM Sans, sans-serif;
    font-size: .9rem;
    line-height: 1.6
}

.machine__card {
    background-color: var(--surface-1);
    border: 3px solid var(--border-strong);
    max-width: 1400px;
    box-shadow: 5px 5px 0px var(--border-strong);
    text-align: left;
    border-radius: 16px;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 3rem;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    display: grid
}

.machine__divider {
    background-color: var(--border-subtle);
    border-radius: 2px;
    width: 3px
}

.machine__column-title {
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--accent-primary);
    margin-bottom: 2.5rem;
    font-family: DM Sans, sans-serif;
    font-size: .95rem;
    font-weight: 700
}

.machine__badge {
    border: 2px solid var(--border-default);
    background-color: var(--bg-tertiary);
    letter-spacing: .5px;
    color: var(--accent-primary);
    vertical-align: middle;
    border-radius: 9999px;
    margin-left: .6rem;
    padding: .2rem .6rem;
    font-size: .7rem;
    display: inline-block
}

.machine__stats {
    flex-direction: column;
    gap: 2.25rem;
    display: flex
}

.machine__stat-detail {
    color: var(--text-secondary);
    margin-bottom: .4rem;
    font-family: DM Sans, sans-serif;
    font-size: .9rem;
    font-weight: 600
}

.machine__stat-value {
    letter-spacing: -2px;
    color: var(--accent-primary);
    word-break: break-word;
    margin-bottom: .5rem;
    font-family: Epilogue, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1
}

.machine__stat-label {
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    font-family: DM Sans, sans-serif;
    font-size: .85rem;
    font-weight: 700
}

.machine__source {
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
    font-family: DM Sans, sans-serif;
    font-size: .8rem;
    font-weight: 700
}

.machine__source a {
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-default);
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    text-decoration: none;
    transition: color .2s, border-color .2s
}

.machine__source a:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary)
}

@media (max-width:1024px) {
    .machine__card {
        gap: 2.5rem;
        padding: 3rem 2.5rem
    }

    .machine__stat-value {
        font-size: 2.1rem
    }
}

@media (max-width:768px) {
    .machine-section {
        padding: 60px 1rem
    }

    .machine__card {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.5rem
    }

    .machine__divider {
        width: auto;
        height: 3px
    }

    .machine__column-title {
        margin-bottom: 1.75rem
    }

    .machine__stats {
        gap: 1.75rem
    }

    .machine__intro {
        margin-bottom: 2rem;
        font-size: 1rem
    }

    .machine__flows {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 2.5rem
    }

    .machine__flow {
        border-left: none;
        border-top: 3px solid var(--border-subtle);
        align-items: center;
        padding-top: 1.25rem;
        padding-left: 0
    }

    .machine__stat-value {
        font-size: 1.9rem
    }
}

.receipt-section {
    background-color: var(--bg-color);
    z-index: 10;
    padding: 40px 5vw 100px;
    position: relative
}

.receipt__intro {
    color: var(--text-secondary);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-family: DM Sans, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6
}

.receipt__form {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
    display: flex
}

.receipt__input {
    width: 100%;
    color: var(--text-primary);
    background-color: var(--surface-1);
    border: 2px solid var(--border-default);
    border-radius: 12px;
    outline: none;
    padding: .9rem 1.1rem;
    font-family: DM Sans, sans-serif;
    font-size: .95rem;
    transition: border-color .2s
}

.receipt__input::placeholder {
    color: var(--text-muted)
}

.receipt__input:focus {
    border-color: var(--border-strong)
}

.receipt__actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    display: flex
}

.receipt__button {
    border: 2px solid var(--border-default);
    background-color: var(--surface-1);
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 12px;
    padding: .75rem 1.5rem;
    font-family: DM Sans, sans-serif;
    font-size: .9rem;
    font-weight: 600;
    transition: border-color .2s, color .2s
}

.receipt__button:hover:not(:disabled) {
    border-color: var(--border-strong);
    color: var(--accent-primary)
}

.receipt__button--primary {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-tertiary)
}

.receipt__button--primary:hover:not(:disabled) {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-tertiary)
}

.receipt__button:disabled {
    opacity: .45;
    cursor: not-allowed
}

.receipt__disclaimer {
    color: var(--text-muted);
    letter-spacing: .04em;
    font-family: DM Sans, sans-serif;
    font-size: .8rem
}

.receipt__error {
    text-align: center;
    max-width: 620px;
    color: var(--text-primary);
    background-color: var(--surface-1);
    border: 2px solid var(--border-default);
    border-radius: 12px;
    margin: 1.5rem auto 0;
    padding: .9rem 1.1rem;
    font-family: DM Sans, sans-serif;
    font-size: .9rem
}

.receipt__overlay {
    z-index: 200;
    padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    display: flex;
    position: fixed;
    inset: 0;
    overflow-y: auto
}

.receipt__stage {
    flex: none;
    width: min(880px, 100%, 101.308vh)
}

.receipt__close {
    top: max(1rem, env(safe-area-inset-top));
    width: 2.5rem;
    height: 2.5rem;
    color: var(--text-primary);
    background-color: var(--surface-1);
    border: 2px solid var(--border-default);
    cursor: pointer;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1;
    transition: border-color .2s, color .2s;
    display: flex;
    position: absolute;
    right: 1rem
}

.receipt__close:hover {
    border-color: var(--border-strong);
    color: var(--accent-primary)
}

.receipt__overlay-controls {
    flex-direction: column;
    flex: none;
    gap: .85rem;
    width: min(420px, 100%);
    display: flex
}

.receipt__hint {
    letter-spacing: .04em;
    color: var(--text-muted);
    text-align: center;
    font-family: DM Sans, sans-serif;
    font-size: .85rem
}

.receipt__templates {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
    display: grid
}

.receipt__template {
    background-color: var(--surface-1);
    border: 2px solid var(--border-default);
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    padding: 0;
    transition: border-color .2s;
    display: block;
    position: relative;
    overflow: hidden
}

.receipt__template:hover {
    border-color: var(--accent-soft)
}

.receipt__template:focus-visible {
    outline: 2px solid var(--accent-hover);
    outline-offset: 2px
}

.receipt__template[aria-pressed=true] {
    border-color: var(--accent-primary)
}

.receipt__template-thumb {
    aspect-ratio: 1200/630;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block
}

.receipt__template-check {
    background-color: var(--accent-primary);
    width: 1.15rem;
    height: 1.15rem;
    color: var(--bg-tertiary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1;
    display: none;
    position: absolute;
    top: .4rem;
    right: .4rem
}

.receipt__template[aria-pressed=true] .receipt__template-check {
    display: flex
}

.sharecard {
    aspect-ratio: 4/3;
    width: 100%;
    color: var(--text-primary);
    text-align: left;
    background-color: #0b1a17;
    font-family: DM Sans, sans-serif;
    position: relative;
    overflow: hidden;
    container-type: inline-size
}

.sharecard--preview {
    border: 3px solid var(--accent-primary);
    border-radius: 16px
}

.sharecard__art {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.sharecard__scrim {
    position: absolute;
    inset: 0
}

.sharecard--scrim-minimal .sharecard__scrim {
    background: linear-gradient(160deg, #040c0ac7 0%, #040c0a80 30%, #040c0a24 54%, #040c0a00 72%)
}

.sharecard--scrim-soft .sharecard__scrim {
    background: linear-gradient(160deg, #040c0ae0 0%, #040c0aa8 30%, #040c0a42 56%, #040c0a00 76%)
}

.sharecard--scrim-strong .sharecard__scrim {
    background: linear-gradient(160deg, #030a08f0 0%, #030a08d1 28%, #030a0885 52%, #030a0829 72%, #030a0800 86%)
}

.sharecard__body {
    flex-direction: column;
    padding: 5cqw;
    display: flex;
    position: absolute;
    inset: 0
}

.sharecard__brand {
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: .78;
    text-shadow: 0 .15cqw .9cqw #0009;
    font-family: Epilogue, sans-serif;
    font-size: 1.33cqw;
    font-weight: 600
}

.sharecard__headline {
    flex-direction: column;
    flex: auto;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5cqw;
    min-width: 0;
    max-width: 46cqw;
    margin-top: 2.33cqw;
    display: flex
}

.sharecard__label {
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-shadow: 0 .15cqw .9cqw #000000bf;
    font-family: Epilogue, sans-serif;
    font-size: 1.6cqw;
    font-weight: 600
}

.sharecard__amount {
    white-space: nowrap;
    font-family: Epilogue, sans-serif;
    font-size: calc(7.6cqw * var(--headline-scale, 1));
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
    text-shadow: 0 .25cqw 1.6cqw #000c;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 1cqw;
    font-weight: 700;
    line-height: .98;
    display: flex
}

.sharecard__figure {
    white-space: nowrap
}

.sharecard__ticker {
    letter-spacing: -.02em;
    white-space: nowrap;
    color: var(--accent-primary);
    text-shadow: none;
    font-family: Epilogue, sans-serif;
    font-size: .44em;
    font-weight: 680
}

.sharecard__rule {
    display: none
}

.sharecard__usd {
    text-shadow: 0 .2cqw 1cqw #000000bf;
    flex-direction: column;
    align-items: flex-start;
    gap: .5cqw;
    margin-top: 2.16cqw;
    display: flex
}

.sharecard__usd-figure {
    letter-spacing: -.025em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    color: var(--accent-primary);
    font-family: Epilogue, sans-serif;
    font-size: 3.1cqw;
    font-weight: 680;
    line-height: 1
}

.sharecard__usd-caption {
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: .88;
    font-size: 1.25cqw;
    font-weight: 570
}

.sharecard__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .83cqw;
    max-width: 62cqw;
    display: flex
}

.sharecard__meta {
    letter-spacing: .01em;
    color: var(--text-primary);
    text-shadow: 0 .2cqw 1cqw #000000bf;
    font-size: 1.17cqw;
    font-weight: 550;
    line-height: 1.35
}

.sharecard__count {
    font-variant-numeric: tabular-nums;
    color: var(--accent-primary);
    font-weight: 620
}

.sharecard__dates {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums
}

.sharecard__handles {
    letter-spacing: .01em;
    color: var(--text-primary);
    opacity: .86;
    text-shadow: 0 .2cqw 1cqw #000000bf;
    font-size: 1.17cqw;
    font-weight: 550;
    line-height: 1.35
}

@media (max-width:768px) {
    .receipt-section {
        padding: 30px 5vw 70px
    }

    .sharecard {
        aspect-ratio: 4/5;
        text-align: center
    }

    .receipt__stage {
        width: min(92vw, 70.4vh)
    }

    .sharecard--scrim-minimal .sharecard__scrim {
        background: linear-gradient(#040c0ad1 0%, #040c0ab8 26%, #040c0a80 42%, #040c0a3d 50%, #040c0a00 58%), linear-gradient(#040c0a00 68%, #040c0a73 84%, #040c0ad1 100%)
    }

    .sharecard--scrim-soft .sharecard__scrim {
        background: linear-gradient(#040c0ae6 0%, #040c0acc 26%, #040c0a94 42%, #040c0a47 50%, #040c0a00 58%), linear-gradient(#040c0a00 66%, #040c0a8c 83%, #040c0ae0 100%)
    }

    .sharecard--scrim-strong .sharecard__scrim {
        background: linear-gradient(#030a08f2 0%, #030a08e0 26%, #030a08ad 42%, #030a0857 52%, #030a0800 62%), linear-gradient(#030a0800 64%, #030a089e 82%, #030a08eb 100%)
    }

    .sharecard__body {
        text-align: center;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 6cqw 7cqw 8cqw
    }

    .sharecard__brand {
        letter-spacing: .16em;
        opacity: .62;
        margin-bottom: 0;
        font-size: 2.25cqw
    }

    .sharecard__headline {
        flex: none;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        max-width: 100%;
        margin-top: 6cqw
    }

    .sharecard__label {
        letter-spacing: .15em;
        opacity: .8;
        margin-bottom: 2.8cqw;
        font-size: 3cqw
    }

    .sharecard__amount {
        white-space: normal;
        font-size: calc(19cqw * var(--headline-scale-mobile, 1));
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1.6cqw;
        line-height: .88;
        display: flex
    }

    .sharecard__ticker {
        font-size: .27em
    }

    .sharecard__rule {
        background-color: var(--text-primary);
        opacity: .22;
        flex-shrink: 0;
        width: 26cqw;
        height: max(1px, .12cqw);
        margin: 5cqw 0 4.2cqw;
        display: block
    }

    .sharecard__usd {
        align-items: center;
        gap: 1.4cqw
    }

    .sharecard__usd-figure {
        font-size: 7.2cqw;
        line-height: 1
    }

    .sharecard__usd-caption {
        letter-spacing: .13em;
        opacity: .85;
        font-size: 2.45cqw
    }

    .sharecard__footer {
        align-items: center;
        gap: 3.4cqw;
        max-width: 100%;
        margin-top: auto
    }

    .sharecard__meta {
        letter-spacing: .06em;
        text-wrap: balance;
        font-size: 2.45cqw;
        line-height: 1.5
    }

    .sharecard__handles {
        letter-spacing: .06em;
        opacity: .7;
        padding-top: 3.4cqw;
        font-size: 2.35cqw
    }

    .receipt__overlay {
        gap: 1.1rem
    }

    .receipt__templates {
        gap: .4rem
    }
}

.faq-section {
    z-index: 1;
    width: 100%;
    padding: 50px 60px 120px;
    position: relative
}

.faq__heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative
}

.faq__title {
    letter-spacing: -3px;
    color: var(--text-primary);
    cursor: url("cursor-text.svg") 12 12, auto;
    font-family: Epilogue, sans-serif;
    font-size: 5.2rem;
    font-weight: 750;
    line-height: 1
}

.faq__accordion {
    max-width: 760px;
    margin: 0 auto
}

.faq__layout {
    display: block
}

.faq__col--media {
    display: none
}

.faq__media {
    border-radius: 32px;
    width: 100%;
    position: relative;
    overflow: hidden
}

.faq__media-image {
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block
}

.faq__timestamp {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
    font-family: DM Sans, sans-serif;
    font-size: .875rem
}

.faq__item {
    margin-bottom: 14px
}

.faq__header {
    margin: 0;
    display: flex
}

.faq__trigger {
    text-align: left;
    cursor: url("cursor-pointer.svg") 3 0, pointer;
    background: 0 0;
    border: none;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0;
    display: flex
}

.faq__question {
    background-color: var(--surface-1);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 18px;
    align-items: center;
    padding: 14px 20px;
    transition: background-color .25s, border-color .25s, color .25s;
    display: flex;
    position: relative
}

.faq__trigger:hover .faq__question {
    background-color: var(--surface-2);
    border-color: var(--border-default)
}

.faq__question--open,
.faq__trigger:hover .faq__question--open {
    border-color: var(--border-strong);
    color: var(--accent-primary);
    background-color: #9dd8c526
}

.faq__question-text {
    font-family: DM Sans, sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.35
}

.faq__icon {
    pointer-events: none;
    font-size: 1.5rem;
    position: absolute;
    bottom: 34px
}

.faq__icon--left {
    left: 0;
    transform: rotate(-4deg)
}

.faq__icon--right {
    right: 0;
    transform: rotate(7deg)
}

.faq__indicator {
    color: var(--text-muted);
    flex-shrink: 0;
    align-items: center;
    transition: color .25s;
    display: flex
}

.faq__indicator--open {
    color: var(--accent-primary)
}

.faq__content {
    overflow: hidden
}

.faq__answer-wrap {
    margin-top: 10px;
    margin-left: 64px
}

.faq__answer {
    background-color: var(--accent-primary);
    max-width: 420px;
    color: var(--color-black);
    border-radius: 20px;
    padding: 14px 20px;
    font-family: DM Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45
}

@media (min-width:769px) {
    .faq-section {
        padding: 80px 60px 160px
    }

    .faq__heading {
        max-width: none;
        margin-bottom: 72px
    }

    .faq__title {
        white-space: nowrap;
        font-size: clamp(2.6rem, 4.4vw, 5.2rem)
    }

    .faq__accordion {
        max-width: 1040px
    }

    .faq__timestamp {
        margin-bottom: 40px;
        font-size: 1rem
    }

    .faq__item {
        margin-bottom: 22px
    }

    .faq__trigger {
        gap: 22px
    }

    .faq__question {
        border-radius: 26px;
        padding: 22px 34px
    }

    .faq__question-text {
        font-size: 1.375rem;
        line-height: 1.3
    }

    .faq__icon {
        font-size: 2.25rem;
        bottom: 52px
    }

    .faq__indicator svg {
        width: 26px;
        height: 26px
    }

    .faq__answer-wrap {
        margin-top: 16px;
        margin-left: 96px
    }

    .faq__answer {
        border-radius: 28px;
        max-width: 560px;
        padding: 22px 32px;
        font-size: 1.1875rem;
        line-height: 1.55
    }
}

@media (max-width:768px) {
    .faq-section {
        padding: 30px 24px 80px
    }

    .faq__heading {
        margin-bottom: 40px
    }

    .faq__title {
        letter-spacing: -1.5px;
        font-size: 2.9rem
    }

    .faq__question-text {
        font-size: .9375rem
    }

    .faq__answer-wrap {
        margin-left: 24px
    }

    .faq__answer {
        max-width: none;
        font-size: .9375rem
    }
}

@media (max-width:480px) {
    .faq__title {
        font-size: 2.3rem
    }

    .faq__trigger {
        gap: 10px
    }

    .faq__question {
        padding: 12px 16px
    }
}

@media (min-width:1024px) {
    .faq__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
        align-items: center;
        gap: 72px;
        max-width: 1360px;
        margin: 0 auto;
        display: grid
    }

    .faq__col--media {
        display: block
    }

    .faq__accordion {
        max-width: none;
        margin: 0
    }

    .faq__answer {
        max-width: 100%
    }
}

.coming-soon-toast {
    z-index: 3000;
    background-color: var(--surface-2);
    color: var(--text-primary);
    border: 2px solid var(--border-strong);
    box-shadow: 4px 4px 0 var(--border-strong);
    font-family: var(--font-heading, inherit);
    letter-spacing: .02em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    border-radius: 999px;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.5rem;
    font-size: 1rem;
    font-weight: 750;
    transition: opacity .28s, transform .28s cubic-bezier(.34, 1.56, .64, 1);
    display: flex;
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translate(-50%, 1.25rem)scale(.92)
}

.coming-soon-toast.is-visible {
    opacity: 1;
    transform: translate(-50%)scale(1)
}

.coming-soon-toast__icon {
    font-size: 1.15rem;
    line-height: 1
}

@media (max-width:768px) {
    .coming-soon-toast {
        max-width: calc(100vw - 2rem);
        padding: .8rem 1.25rem;
        font-size: .9rem;
        bottom: 1.5rem
    }
}

@media (prefers-reduced-motion:reduce) {
    .coming-soon-toast {
        transition: opacity .2s;
        transform: translate(-50%)
    }

    .coming-soon-toast.is-visible {
        transform: translate(-50%)
    }
}