@font-face {
    font-family: 'title-font';
    src: url("../fonts/PPFrama-Bold.woff2") format('woff2'),
        url("../fonts/PPFrama-Bold.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bold';
    src: url("../fonts/FinlandicaText-Bold.woff2") format('woff2'),
        url("../fonts/FinlandicaText-Bold.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'b-italics';
    src: url("../fonts/PPFrama-BoldItalic.woff2") format('woff2'),
        url("../fonts/PPFrama-BoldItalic.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'regular';
    src: url("../fonts/FinlandicaText-Regular.woff2") format('woff2'),
        url("../fonts/FinlandicaText-Regular.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'medium';
    src: url("../fonts/FinlandicaText-Medium.woff2") format('woff2'),
        url("../fonts/FinlandicaText-Medium.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}



.title-font {
    font-family: "title-font"
}

.bold {
    font-family: "bold"
}

.b-italics {
    font-family: "b-italics"
}

.medium {
    font-family: "medium"
}

.regular {
    font-family: "regular"
}


:root {
    /* COLORS */
    --plum: #211A24;
    --dblue: #5E5EFF;
    --lime: #E0FF05;
    --navy: #14181F;
    --purple: #4B32FC;
    --lpurple: #604A69;
    --grey: #929EAA;
    --dgrey: #CCC7BD;
    --offwhite: #F6EFE5;
    --beige: #F8F4ED;

    /* FONT SIZES WITH CLAMP */
    --font-250: clamp(48px, 12.6vw, 99999px);
    --font-200: clamp(48px, 10vw, 99999px);
    --font-100: clamp(48px, 5.5vw, 99999px);
    --font-96: clamp(44px, 5vw, 99999px);
    --font-88: clamp(40px, 4.59vw, 99999px);
    --font-80: clamp(40px, 4.17vw, 99999px);
    --font-72: clamp(32px, 3.75vw, 99999px);
    --font-60: clamp(32px, 3.2vw, 99999px);
    --font-56: clamp(24px, 2.9vw, 99999px);
    --font-50: clamp(26px, 2.6vw, 99999px);
    --font-48: clamp(32px, 2.5vw, 99999px);
    --font-40: clamp(24px, 2.5vw, 99999px);
    --font-42: clamp(22px, 2.25vw, 99999px);
    --font-36: clamp(20px, 1.88vw, 99999px);
    --font-32: clamp(18px, 1.66vw, 99999px);
    --font-30: clamp(18px, 1.55vw, 99999px);
    --font-28: clamp(18px, 1.52vw, 99999px);
    --font-26: clamp(18px, 1.35vw, 99999px);
    --font-25: clamp(18px, 1.3vw, 99999px);
    --font-24: clamp(18px, 1.25vw, 99999px);
    --font-22: clamp(16px, 1.15vw, 99999px);
    --font-20: clamp(16px, 1.1vw, 99999px);
    --font-18: clamp(16px, 1vw, 99999px);
    --font-16: clamp(16px, 0.83vw, 99999px);
    --font-14: clamp(14px, 0.73vw, 99999px);
    --font-12: clamp(12px, 0.63vw, 99999px);



    /* LINE HEIGHT VARIABLES (optional) */


    /* PADDING / MARGIN VARIABLES */
    --pt-40: clamp(30px, 2vw, 40px);
    --pt-60: clamp(30px, 3vw, 60px);
    --pt-80: clamp(40px, 4.5vw, 80px);
    --pt-120: clamp(60px, 6vw, 120px);
    --pt-160: clamp(60px, 8vw, 160px);

    --pb-40: clamp(30px, 2vw, 40px);
    --pb-60: clamp(30px, 3vw, 60px);
    --pb-80: clamp(40px, 4.5vw, 80px);
    --pb-120: clamp(60px, 6vw, 120px);
    --pb-160: clamp(60px, 8vw, 160px);

    --pl-40: clamp(16px, 2vw, 40px);
    --pl-60: clamp(24px, 3vw, 60px);
    --pl-80: clamp(30px, 4.5vw, 80px);
    --pl-120: clamp(48px, 6vw, 120px);

    --pr-40: clamp(16px, 2vw, 40px);
    --pr-60: clamp(24px, 3vw, 60px);
    --pr-80: clamp(30px, 4.5vw, 80px);
    --pr-120: clamp(48px, 6vw, 120px);
}



/* FONT SIZE CLASSES */
.font-250 {
    font-size: var(--font-250);
}

.font-200 {
    font-size: var(--font-200);
}

.font-100 {
    font-size: var(--font-100);
}

.font-96 {
    font-size: var(--font-96);
}

.font-88 {
    font-size: var(--font-88);
}

.font-80 {
    font-size: var(--font-80);
}

.font-72 {
    font-size: var(--font-72);
}

.font-60 {
    font-size: var(--font-60);
}

.font-56 {
    font-size: var(--font-56);
}

.font-50 {
    font-size: var(--font-50);
}

.font-48 {
    font-size: var(--font-48);
}

.font-40 {
    font-size: var(--font-40);
    line-height: 1
}

.font-36 {
    font-size: var(--font-36);
}

.font-32 {
    font-size: var(--font-32);
}

.font-30 {
    font-size: var(--font-30);
    line-height: 1.2
}

.font-28 {
    font-size: var(--font-28);
}

.font-27 {
    font-size: var(--font-27);
}

.font-26 {
    font-size: var(--font-26);
}

.font-25 {
    font-size: var(--font-25);
}

.font-24 {
    font-size: var(--font-24);
}

.font-22 {
    font-size: var(--font-22);
}

.font-20 {
    font-size: var(--font-20);
}

.font-19 {
    font-size: var(--font-19);
}

.font-18 {
    font-size: var(--font-18);
}

.font-16 {
    font-size: var(--font-16);
}

.font-14 {
    font-size: var(--font-14);
}

.font-12 {
    font-size: var(--font-12);
}

.font-10 {
    font-size: var(--font-10);
}

.font-8 {
    font-size: var(--font-8);
}

/* -------------------------
   PADDING UTILITIES
------------------------- */

/* PADDING TOP */
.pt-40 {
    padding-top: var(--pt-40);
}

.pt-60 {
    padding-top: var(--pt-60);
}

.pt-80 {
    padding-top: var(--pt-80);
}

.pt-120 {
    padding-top: var(--pt-120);
}

.pt-160 {
    padding-top: var(--pt-160);
}

/* PADDING BOTTOM */
.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: var(--pb-40);
}

.pb-60 {
    padding-bottom: var(--pb-60);
}

.pb-80 {
    padding-bottom: var(--pb-80);
}

.pb-120 {
    padding-bottom: var(--pb-120);
}

.pb-160 {
    padding-bottom: var(--pb-160);
}

/* PADDING LEFT */
.pl-40 {
    padding-left: var(--pl-40) !important;
}

.pl-60 {
    padding-left: var(--pl-60) !important;
}

.pl-80 {
    padding-left: var(--pl-80) !important;
}

.pl-120 {
    padding-left: var(--pl-120) !important;
}

/* PADDING RIGHT */
.pr-40 {
    padding-right: var(--pr-40) !important;
}

.pr-60 {
    padding-right: var(--pr-60) !important;
}

.pr-80 {
    padding-right: var(--pr-80) !important;
}

.pr-120 {
    padding-right: var(--pr-120) !important;
}

/* -------------------------
   MARGIN UTILITIES
------------------------- */

/* MARGIN TOP */
.mt-40 {
    margin-top: var(--pt-40);
}

.mt-60 {
    margin-top: var(--pt-60);
}

.mt-80 {
    margin-top: var(--pt-80);
}

.mt-120 {
    margin-top: var(--pt-120);
}

/* MARGIN BOTTOM */
.mb-40 {
    margin-bottom: var(--pb-40);
}

.mb-60 {
    margin-bottom: var(--pb-60);
}

.mb-80 {
    margin-bottom: var(--pb-80);
}

.mb-120 {
    margin-bottom: var(--pb-120);
}

/* MARGIN LEFT */
.ml-40 {
    margin-left: var(--pl-40);
}

.ml-60 {
    margin-left: var(--pl-60);
}

.ml-80 {
    margin-left: var(--pl-80);
}

.ml-120 {
    margin-left: var(--pl-120);
}

/* MARGIN RIGHT */
.mr-40 {
    margin-right: var(--pr-40);
}

.mr-60 {
    margin-right: var(--pr-60);
}

.mr-80 {
    margin-right: var(--pr-80);
}

.mr-120 {
    margin-right: var(--pr-120);
}


/* COLOR CLASSES */
.white {
    color: #fff;
}

.offwhite {
    color: var(--offwhite)
}

.plum {
    color: var(--plum);
}

.dblue {
    color: var(--dblue);
}

.lime {
    color: var(--lime);
}

.navy {
    color: var(--navy);
}

.black-color {
    color: #000
}

.purple {
    color: var(--purple);
}

.lpurple {
    color: var(--lpurple);
}

.grey {
    color: var(--grey);
}

.dgrey {
    color: var(--dgrey);
}

.beige {
    color: --var(--beige);
}

/* BACKGROUND CLASSES */
.white-bg {
    background: #fff
}

.offwhite-bg {
    background: var(--offwhite)
}

.plum-bg {
    background: var(--plum);
}

.dblue-bg {
    background: var(--dblue);
}

.lime-bg {
    background: var(--lime);
}

.navy-bg {
    background: var(--navy);
}

.black-bg {
    background: #000;
}

.purple-bg {
    background: var(--purple);
}

.lpurple-bg {
    background: var(--lpurple);
}

.grey-bg {
    background: var(--grey);
}

.dgrey-bg {
    background: var(--dgrey);
}

.beige-bg {
    background: var(--beige);
}


.letterspacing0 {
    letter-spacing: -0.01em;
}


.nomargin-top {
    margin-top: 0 !important
}

.nomargin-bottom {
    margin-bottom: 0 !important
}

.nomargin-left {
    margin-left: 0 !important
}

.nomargin-right {
    margin-right: 0 !important
}

.nopadding-top {
    padding-top: 0 !important
}

.nopadding-bottom {
    padding-bottom: 0 !important
}

.nopadding-left {
    padding-left: 0 !important
}

.nopadding-right {
    padding-right: 0 !important
}


:focus {
    outline: none !important
}

a {
    color: inherit;
    transition: all 0.5s;
}

a:hover {
    text-decoration: none !important;
    transition: all 0.5s;
}

a:focus {
    outline: none !important;
    border: none !important;
    text-decoration: none !important
}

img {
    transition: all 0.5s;
}

*:hover img {
    transition: all 0.5s;
}

.text-underline {
    text-decoration: underline !important
}

.abs-anch {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: transparent !important;
    z-index: 0
}

.borderbottom {
    border-bottom: 1px solid
}

.list-inline li {
    display: inline-block
}

.show-1024,
.show-768,
.show-600 {
    display: none !important
}

input,
select,
texarea {
    border-radius: 0 !important
}

strong,
b {
    font-weight: normal;
    font-family: bold
}

.overflow-hidden {
    overflow: hidden
}

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

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

.overlay {
    position: relative;
}

.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mobile-full-height {
    height: 100vh;
    height: calc(var(--vh) * 100);
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/*#how-does-zeroBonds-work{scroll-margin-top:130px}*/


.slide-right,
.slideright {
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-right,
.anim.in-view .slideright {
    transform: translateX(0);
    opacity: 1
}

.slide-left,
.slideleft {
    transform: translateX(100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-left,
.anim.in-view .slideleft {
    transform: translateX(0);
    opacity: 1
}

.longslide-left,
.longslideleft {
    transform: translateX(-1000px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .longslide-left,
.anim.in-view .longslideleft {
    transform: translateX(0);
    opacity: 1
}



/* ─── Waitlist Modal ──────────────────────────────────────────────
   Opened by the header / mobile-menu "Join Waitlist" CTAs.
   Markup: template-parts/waitlist-modal.php — behaviour: scripts.js
------------------------------------------------------------------ */

.waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.waitlist-modal.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.waitlist-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 26, 36, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.waitlist-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-radius: 0;
    background: linear-gradient(180deg, var(--offwhite) 0%, #FFF 32%, #DFDDF8 100%);
    padding: clamp(32px, 3.5vw, 64px) clamp(20px, 4vw, 80px) clamp(40px, 4vw, 72px);
    text-align: center;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-modal.is-open .waitlist-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.waitlist-modal__close {
    position: absolute;
    top: clamp(16px, 1.4vw, 28px);
    right: clamp(16px, 1.4vw, 28px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    z-index: 2;
}

.waitlist-modal__close:hover,
.waitlist-modal__close:focus-visible {
    background: var(--dblue);
}

.waitlist-modal__close:hover circle,
.waitlist-modal__close:focus-visible circle {
    stroke: var(--dblue);
}

.waitlist-modal__close:hover path,
.waitlist-modal__close:focus-visible path {
    stroke: #FFF;
}

.waitlist-modal__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.waitlist-modal__logo {
    margin-bottom: clamp(20px, 2vw, 36px);
}

.waitlist-modal__logo img {
    width: clamp(140px, 11vw, 200px);
    height: auto;
    margin: 0 auto;
}

.waitlist-modal__badge {
    display: inline-block;
    padding: 0.4vw 1.1vw;
    min-height: 32px;
    line-height: 32px;
    border: 1px solid var(--dblue);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: clamp(16px, 1.2vw, 24px);
}

.waitlist-modal__title {
    margin-bottom: clamp(12px, 1vw, 20px);
}

.waitlist-modal__text {
    color: var(--lpurple);
    margin-bottom: 0;
}

/* ── Form (Contact Form 7) ─────────────────────────────────────── */
.waitlist-modal__form {
    margin-top: clamp(24px, 2.4vw, 44px);
    text-align: left;
}

.waitlist-modal__form .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1vw, 20px);
}

/* Anything that is not a field wrapper runs the full width */
.waitlist-modal__form .wpcf7-form>* {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.waitlist-modal__form .wpcf7-form>.input-wrapper {
    grid-column: span 1;
}

.waitlist-modal__form .wpcf7-form>.input-wrapper--full {
    grid-column: 1 / -1;
}

.waitlist-modal__form .wpcf7-form>br {
    display: none;
}

.waitlist-modal__form .curved-cta {
    text-align: center;
    margin-top: clamp(8px, 0.8vw, 16px);
}

/* Submit fallback, in case the form does not wrap it in .curved-cta */
.waitlist-modal__form .wpcf7-submit {
    font-family: "medium";
    font-size: var(--font-16);
    color: var(--dblue);
    background: var(--beige);
    border: 1px solid var(--dblue);
    border-radius: 100px;
    padding: 0 clamp(32px, 4vw, 72px);
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.waitlist-modal__form .wpcf7-submit:hover {
    background: var(--dblue);
    color: #FFF;
}

.waitlist-modal__form .wpcf7-response-output {
    margin: 0 !important;
}

/* Select2 dropdowns are appended to <body>, keep them above the modal */
body.waitlist-modal-open .select2-container--open {
    z-index: 10010;
}

/* ── Scroll lock ───────────────────────────────────────────────── */
html.waitlist-modal-open,
body.waitlist-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}


/* ─── Multi-Check Dropdown ────────────────────────────────────────
   A CF7 [checkbox] list that behaves like a select: closed it reads
   as a field, open it shows one checkbox per row.
   Markup lives in the CF7 form tab — behaviour in scripts.js
------------------------------------------------------------------ */

.multi-check {
    position: relative;
    width: 100%;
}

/* Sizing/border/radius come from the shared .input-wrapper field rules */
.input-wrapper .multi-check__toggle {
    display: flex;
    align-items: center;
    gap: 1vw;
    text-align: left;
    cursor: pointer;
    font-family: "regular";
    padding-left:0!important;
    font-size: var(--font-16);
    color: var(--plum);
    background-image: url("../images/select-arrow.svg")!important;
    background-position: right 15px center!important;
    background-repeat: no-repeat!important;
    padding-right: 25px !important;
}

.input-wrapper .multi-check__toggle:focus-visible {
    outline: none;
    border-color: var(--dblue);
    box-shadow: 0 0 0 3px rgba(94, 94, 255, 0.15);
}

.multi-check__value {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.multi-check__value.is-empty {
    color: var(--plum);
    font-weight: 400;
}

.input-wrapper .multi-check.is-invalid .multi-check__toggle {
    border: 1px solid #E14B4B;
    box-shadow: 0 0 0 3px rgba(225, 75, 75, 0.12);
}

/* ── Panel ─────────────────────────────────────────────────────── */
.multi-check__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 5;
    max-height: 25vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px;
    border: 1px solid #A8A4A9;
    border-radius: 1vw;
    background: #FFF;
    box-shadow: 0 12px 32px rgba(33, 26, 36, 0.12);
    visibility: hidden;
    transform: translateY(-6px);
    transition: transform 0.2s ease, visibility 0s linear 0.2s;
}

.multi-check.is-open .multi-check__panel {
    visibility: visible;
    transform: translateY(0);
    transition: transform 0.2s ease, visibility 0s linear 0s;
}

/* One option per row */
.multi-check__panel .wpcf7-checkbox {
    display: block;
}

.multi-check__panel .wpcf7-list-item {
    display: block;
    margin: 0;
}

.multi-check__panel .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: "regular";
    font-size: var(--font-16);
    color: var(--plum);
    transition: background ease-in-out 0.2s;
}

.multi-check__panel .wpcf7-list-item label:hover {
    background: rgba(94, 94, 255, 0.06);
}

.multi-check__panel input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    padding: 0 !important;
    margin: 0;
    border: 1px solid #A8A4A9 !important;
    border-radius: 4px !important;
    background: #FFF;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    line-height: 1 !important;
}

.multi-check__panel input[type="checkbox"]:checked {
    background: var(--dblue);
    border-color: var(--dblue) !important;
}

.multi-check__panel input[type="checkbox"]:checked:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.multi-check__panel input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--dblue);
    outline-offset: 2px;
}

.multi-check__panel .wpcf7-list-item-label {
    line-height: 1.3;
}

/* Keep the CF7 error tip readable while the panel is closed */
.multi-check .wpcf7-not-valid-tip {
    visibility: visible;
    top: auto;
    bottom: calc(100% + 4px);
    left: 0;
}

/* ─── Waitlist Form ───────────────────────────────────────────────
   Scoped to the CF7 form rendered with html_class="waitlist-form"
------------------------------------------------------------------ */

.waitlist-form .input-wrapper {
    margin-bottom: clamp(12px, 1vw, 20px);
}

.waitlist-form .input-wrapper select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../images/select-arrow.svg");
    background-position: right 15px center;
    background-repeat: no-repeat;
    padding-right: 40px;
    cursor: pointer;
}

.waitlist-form .input-wrapper select.is-empty,
.waitlist-form .input-wrapper select option[value=""] {
    color: #757575;
}

.waitlist-form .curved-cta {
    margin-top: clamp(8px, 0.8vw, 16px);
}

.slide-down,
.slidedown {
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-down,
.anim.in-view .slidedown {
    transform: translateY(0);
    opacity: 1
}

.slide-up,
.slideup {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-up,
.anim.in-view .slideup {
    transform: translateY(0);
    opacity: 1
}

.loaded .delayed,
.anim.in-view .de-layed {
    transition-delay: 0.8s
}

.loaded .delayed1,
.anim.in-view .de-layed1 {
    transition-delay: 1.0s
}

.loaded .delayed2,
.anim.in-view .de-layed2 {
    transition-delay: 1.2s
}

.loaded .delayed3,
.anim.in-view .de-layed3 {
    transition-delay: 1.4s
}

.loaded .delayed5,
.anim.in-view .de-layed4 {
    transition-delay: 1.6s
}

.loaded .delayed6,
.anim.in-view .de-layed5 {
    transition-delay: 1.8s
}

.loaded .delayed7,
.anim.in-view .de-layed6 {
    transition-delay: 2.0s
}


.sectiontitle-96 {
    font-size: var(--font-96);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1.1
}

.sectiontitle-80 {
    font-size: var(--font-80);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}

.sectiontitle-72 {
    font-size: var(--font-72);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}

.sectiontitle-64 {
    font-size: var(--font-64);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}

.sectiontitle-56 {
    font-size: var(--font-56);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}

.sectiontitle-48 {
    font-size: var(--font-48);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}

.sectiontitle-42 {
    font-size: var(--font-42);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}

.sectiontitle-32 {
    font-size: var(--font-32);
    font-family: "title-font";
    color: var(--plum);
    letter-spacing: -0.01em;
    line-height: 1
}


.sectiontitle-96.white,
.sectiontitle-80.white,
.sectiontitle-72.white,
.sectiontitle-64.white,
.sectiontitle-56.white,
.sectiontitle-48.white,
.sectiontitle-42.white,
.sectiontitle-32.white {
    color: #fff;
}



input:focus::-webkit-input-placeholder {
    color: transparent
}

input:focus:-moz-placeholder {
    color: transparent
}

input:focus::-moz-placeholder {
    color: transparent
}

input:focus:-ms-input-placeholder {
    color: transparent
}

textarea:focus::-webkit-input-placeholder {
    color: transparent
}

textarea:focus:-moz-placeholder {
    color: transparent
}

textarea:focus::-moz-placeholder {
    color: transparent
}

textarea:focus:-ms-input-placeholder {
    color: transparent
}

input::-webkit-input-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

input:-moz-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

input::-moz-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

input:-ms-input-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

textarea::-webkit-input-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

textarea:-moz-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

textarea::-moz-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

textarea:-ms-input-placeholder {
    font-size: var(--font-16);
    color: var(--plum);
}

select {
    -webkit-appearance: none;
    position: relative;
    background-image: url("../images/select-arrow.svg") !important;
    background-position: right 15px center !important;
    background-repeat: no-repeat !important;
}



body {
    font-family: "regular" !important;
    overflow-x: hidden;
    color: var(--lpurple) !important;
    font-size: var(--font-20) !important;
    line-height: 1.3 !important;
    background: var(--offwhite) !important;
}

.wrapper {
    margin: auto;
    width: 100%
}

.big-container {
    margin: auto;
    padding-left: 4vw;
    padding-right: 4vw;
    width: 100%
}

.small-container {
    margin: auto;
    padding-left: 7vw;
    padding-right: 7vw;
    width: 100%;
}

.header {
    position: absolute;
    width: 100%;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 2vw 0;
    transition: padding 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header.stickyheader {
    z-index: 5;
    padding: 1vw 0;
    position: fixed;
}

/* Default .row — no pill yet */

.header .row {
    border-radius: 1.0625rem;
    padding: 1.3412vw 0vw;

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        width 0.6s cubic-bezier(0.645, 0.045, 0.355, 1),
        padding 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body:not(.home) .header .row {
    background: #fff;
}

/* Scrolled pill — shrinks and gets white background */
.header.stickyheader .row {
    background: #fff;
    width: 75% !important;
    /* ← adjust this to taste */
    padding: 1vw !important;
    border-radius: 1.0625rem !important;
    box-shadow: 6px 6px 40px 10px rgba(0, 0, 0, 0.05);
    margin-left: auto;
    margin-right: auto;
}

.header.stickyheader .d-flex.menu-ctas,
.header.stickyheader .main-menu ul,
.header.stickyheader .d-flex.menu-ctas {
    gap: 2vw;
}




/* ── Mega Menu ───────────────────────────────────────────────── */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    padding-top: 6vw;
    border-radius: 0 0 1.5rem 1.5rem;
    background: #fff;
    box-shadow: 6px 6px 40px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.mega-menu__inner {
    display: grid;
    gap: 4vw;
    padding: 2.5vw 0;
    grid-template-columns: 2fr 3fr
}

.mega-menu__cards.d-grid {
    gap: 1vw;
    flex-shrink: 0;
    grid-template-columns: 1fr 1fr
}

.mega-menu__cards.d-grid .mega-menu__card:last-child {
    background: #F3F3FF;
    border: 1px solid var(--blue) !important;
}

.mega-menu__cards.d-grid .mega-menu__card:last-child .mega-menu__card-headline.white {
    color: var(--plum);
}

.mega-menu__cards.d-grid .mega-menu__card:last-child .mega-menu__card-arrow svg path {
    fill: var(--dblue) !important;
}

.mega-menu__card {
    border-radius: 1.25vw;
    padding: 1.5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1vw;
    text-decoration: none;
    min-height: 10vw;
    transition: opacity 0.2s ease;
}

.mega-menu__card:hover {
    opacity: 0.85;
}

.mega-menu__card-icon svg {
    width: 2.5vw;
}

.mega-menu__card-arrow {
    align-self: flex-start;
}

.mega-menu__links {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 0.5vw 3vw;
    align-content: start;
    flex: 1;
}

.mega-menu__links--single {
    grid-template-columns: 1fr;
}

.mega-menu__link {
    display: block;
    padding: 0.6vw 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu__link:hover {
    color: var(--dblue);
}

/* ── Body overlay ────────────────────────────────────────────── */
body.mega-open::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

/* ── Active parent nav item ──────────────────────────────────── */
.menu-item.is-current>.menu-link {
    color: var(--dblue);
}

.mega-menu__link.is-current {
    color: var(--dblue);
}

.mobile-menu-parent.is-current span,
.mobile-menu-link.is-current,
.mobile-menu-subitem.is-current {
    color: var(--lime);
}


@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.down-arrow img {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-10px)
    }
}

@keyframes mover {
    0% {
        transform: translateY()
    }

    100% {
        transform: translateY(-10px)
    }
}


.moz-background-picture,
.moz-background-picture-side {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

body.loaded .rollout .moz-background-picture:before,
.roll-out.anim.in-view .moz-background-picture:before {
    height: 0;
    transition-delay: 1s
}

body.loaded .rollside .moz-background-picture-side:before,
.roll-side.anim.in-view .moz-background-picture-side:before {
    width: 0;
    transition-delay: 1s
}

.moz-background-picture:before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: height 1.2s cubic-bezier(.57, 0, .08, 1);
    z-index: 0
}

.moz-background-picture-side.black-bg:before,
.moz-background-picture.black-bg:before {
    background-color: #000
}

.moz-background-picture-side:before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 1.2s cubic-bezier(.57, 0, .08, 1);
    z-index: 0
}

.rollout,
.roll-out,
.rollside,
.roll-side {
    position: relative
}

.slide-right,
.slideright {
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-right,
.anim.in-view .slideright {
    transform: translateX(0);
    opacity: 1
}

.slide-left,
.slideleft {
    transform: translateX(100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-left,
.anim.in-view .slideleft {
    transform: translateX(0);
    opacity: 1
}

.longslide-left,
.longslideleft {
    transform: translateX(-1000px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .longslide-left,
.anim.in-view .longslideleft {
    transform: translateX(0);
    opacity: 1
}

.slide-down,
.slidedown {
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-down,
.anim.in-view .slidedown {
    transform: translateY(0);
    opacity: 1
}

.slide-up,
.slideup {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.16, 0.68, 0.43, 0.99), opacity 1.8s ease-in-out
}

.loaded .slide-up,
.anim.in-view .slideup {
    transform: translateY(0);
    opacity: 1
}

.loaded .delayed,
.anim.in-view .de-layed {
    transition-delay: 0.8s
}

.loaded .delayed1,
.anim.in-view .de-layed1 {
    transition-delay: 1.0s
}

.loaded .delayed2,
.anim.in-view .de-layed2 {
    transition-delay: 1.2s
}

.loaded .delayed3,
.anim.in-view .de-layed3 {
    transition-delay: 1.4s
}

.loaded .delayed5,
.anim.in-view .de-layed4 {
    transition-delay: 1.6s
}

.loaded .delayed6,
.anim.in-view .de-layed5 {
    transition-delay: 1.8s
}

.loaded .delayed7,
.anim.in-view .de-layed6 {
    transition-delay: 2.0s
}

[data-aos=scale] {
    transform: scale(1.3)
}

[data-aos=scale].aos-animate {
    transform: scale(1)
}



/* ── Decorative Background Washes (Desktop) ──────────────────────────── */
.main-content {
    position: relative;
}

.bg-wash {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.home .bg-wash {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home .bg-wash--fade1.is-ready,
.home .bg-wash--fade1_1.is-ready {
    opacity: 1;
}

.bg-wash--fade1 {
    height: 20%;
    background: linear-gradient(to bottom, rgba(246, 239, 229, 1) 0%, rgba(255, 255, 255, 1) 100%);
    top: -12vw;
}

.bg-wash--fade1_1 {
    height: 65%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(246, 239, 229, 1) 100%);
    top: 16%;
}

.bg-wash--fade2 {
    height: 65vw;
    background: linear-gradient(180deg, #FFF 0.01%, #F6EFE5 95.15%);
    z-index: 0;
    top: 12;
}

.pin_back {
    border-radius: 98px 98px 0 0;
    position: relative;
}

.pin_back:before {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 80vh;
    background: url(../images/background-shapes.svg) no-repeat 0% 0%;
    background-size: 100%;
    z-index: 0;
}

.bg-wash--fade3 {
    height: 100%;
    background: linear-gradient(180deg, #F6EFE5 0.01%, #FFF 95.15%);
    top: 0;
}

.bg-wash--fade4 {
    height: calc(100% + 50vw; );
    background: linear-gradient(180deg, #fff 0.01%, #F6EFE5 95.15%);
    top: -25vw;
}

.bg-wash--radial {
    height: 60vw;
    background: radial-gradient(ellipse at center, rgba(246, 239, 229, 0) 0%, rgba(94, 94, 255, 1) 100%);
    filter: blur(450px);
    top: -35vw;
    opacity: 0.45
}

.bg-wash--radial2 {
    position: absolute;
    width: clamp(1200px, 140vw, 2200px);
    aspect-ratio: 192 / 107;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            #F6EFE5 0%,
            #5E5EFF 100%);
    filter: blur(450px);
    opacity: .7;
    pointer-events: none;
    z-index: -1;
}



.bg-wash--fade5 {
    height: 100%;
    background: linear-gradient(180deg, #F6EFE5 0.01%, #FFF 23.89%, #F6EFE5 75.27%);
    top: 0vw;
}


.bg-wash--fade6 {
    height: calc(100% + 28vw);
    background: linear-gradient(to bottom, rgba(246, 239, 229, 1) 0%, rgba(255, 255, 255, 1) 32%, rgba(246, 239, 229, 1) 100%);
    top: -20vw;
}


.single-product-page .bg-wash--fade6 {
    top: -5vw;
}




.bg-wash-1 {
    top: 10vw;
}

.bg-wash-2 {
    top: 90vw;
}

.bg-wash-3 {
    top: 170vw;
}

.bg-wash-4 {
    top: 250vw;
}


#site-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

/* Header */

.logo img {
    width: 10.45vw;
}

.main-menu ul,
.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu li a {
    font-size: var(--font-16);
    color: var(--plum);
    height: 2vw;
    line-height: 2vw;
    display: block;
    padding: 0 0.62vw;
    border-radius: 0.62vw;
}

li.menu-item.has-mega.current-parent.is-active a {
    color: var(--plum);
}

li.menu-item.has-mega.is-active a {
    background: #E5E5FB;
}

.main-menu li a:hover {
    color: var(--dblue);
}

li.menu-item.current-parent a {
    font-family: "bold";
    color: var(--dblue);
}


.d-grid.menu-ctas {
    grid-template-columns: 3fr 1fr
}

.d-flex.menu-ctas,
.main-menu ul,
.d-flex.menu-ctas {
    gap: 2.65vw;
}

.d-flex.cta-flex {
    gap: 1vw;
}


/* CTAs */
.curved-cta a,
.curved-cta.bordered-cta input {
    font-family: "medium";
    height: 3.75vw;
    line-height: 3.75vw;
    padding: 0 4.02vw;
    border-radius: 3.75vw !important;
    display: inline-block;
    min-width: 15.21vw;
    border: 1px solid transparent;
    transition: all ease-in-out 0.3s;
}

.bordered-cta.curved-cta a,
.curved-cta.bordered-cta input {
    border: 1px solid !important;
}

.curved-cta.bordered-cta.box-shadow-cta a,
.curved-cta.bordered-cta input {
    box-shadow: 0 4px 0 0 currentColor;
    background: var(--beige);
}

.header .curved-cta a {
    height: 2vw;
    line-height: 2vw;
    padding: 0 1.7vw;
    min-width: inherit;
}




.curved-cta a.dblue-bg.white:hover {
    transition: all ease-in-out 0.3s;
    border-color: var(--dblue);
    background: var(--beige);
    color: var(--dblue);
}

.bordered-cta.curved-cta a:hover {
    transition: all ease-in-out 0.3s;
    border-color: transparent;
    background: var(--dblue);
    color: #fff;
}






.main-content {
    padding-top: 12vw;
    overflow: hidden;
}

.main-content:not(.home-page) {
    padding-top: 7vw;
}

.main-content.contact-page,
.main-content.faqs-page {
    overflow: visible;
}


/* Home Page */

.hero-blob {
    top: 0vw;
}

.hero-blob svg {
    width: 20.5vw;
}

.hero-cards-section {
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-cards-track {
    display: flex;
    align-items: flex-end;
    gap: 0.85vw;
    will-change: transform;
}

.hero-card {
    flex: 0 0 auto;
    height: 40vw;
    border-radius: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 3vw;
    overflow: hidden;
    cursor: grab;
    aspect-ratio: 645 / 750;
    position: relative;
}

.hero-cards-track .hero-card:nth-child(3) {
    padding-right: 0;
}

/*.hero-cards-track .hero-card:first-child,.hero-cards-track .hero-card:nth-child(5){background: var(--dblue)}
.hero-cards-track .hero-card:nth-child(2),.hero-cards-track .hero-card:nth-child(6){background: var(--dgrey);}
.hero-cards-track .hero-card:nth-child(3),.hero-cards-track .hero-card:nth-child(7){background: var(--lime);}
.hero-cards-track .hero-card:nth-child(4){background: #000;}*/

.hero-card:active {
    cursor: grabbing;
}

.hero-cards-track .hero-card:nth-child(5) .hero-card__svg {
    margin-left: -6vw;
    margin-right: -6vw;
    width: 42vw;
    margin-top: -15vw;
}


.hero-card__image {
    position: absolute;
    inset: 0;
    width: calc(100% + 6vw);
    height: calc(100% + 6vw);
    overflow: hidden;
    -webkit-mask-image: url(../images/card-mask.png);
    mask-image: url(../images/card-mask.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    will-change: transform;
    left: -5vw;
    top: -6vw;
}




.hero-cards-track .hero-card:nth-child(6) .hero-card__image {
    width: 95%;
    height: 92%;
    -webkit-mask-image: url(../images/built-mask.png);
    mask-image: url(../images/built-mask.png);
    left: -1vw;
    top: -5vw;
}

.hero-cards-track .hero-card:nth-child(6) .hero-card__image img {
    height: 100%;
}

.hero-card__image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.hero-card__svg {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card__label.sectiontitle-48 {
    margin: 0;
    color: #fff;
}

.hero-cards-track .hero-card:nth-child(3) .hero-card__label.sectiontitle-48,
.hero-cards-track .hero-card:nth-child(7) .hero-card__label.sectiontitle-48 {
    color: #000
}


.hero-cards-track .hero-card:nth-child(4) .hero-card__svg {
    margin-left: -3vw;
    margin-right: -3vw;
}

.hero-cards-track .hero-card:nth-child(3) .hero-card__svg {
    position: relative;
    top: -3vw;
    width: calc(100% + 2vw);
}

.hero-cards-track .hero-card:nth-child(7) .hero-card__svg {
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-cards-track .hero-card:nth-child(7) {
    padding: 3vw 4vw 3vw 3vw;
}

.hero-cards-track .hero-card:nth-child(7) .sectiontitle-48 {
    line-height: 1.25;
}


/* Hover - lime on each row */
#line1 rect,
#line2 rect,
#line3 rect {
    transition: fill 0.3s ease;
}

#line1:hover rect {
    fill: #e0ff05 !important;
}

#line2:hover rect {
    fill: #e0ff05 !important;
}

#line3:hover rect {
    fill: #e0ff05 !important;
}


.logo-bar-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 3vw;
}

.logo-bar-line {
    width: 14vw;
    height: 1px;
    background: #BABABA;
}

.logo-bar-label {
    white-space: nowrap;
    text-align: center;
}

.logo-bar-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    flex-wrap: nowrap;
}

.logo-slot {
    position: relative;
    width: 7vw;
    height: 7vw;
    flex: 0 0 7vw;
}

.logo-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0, 0);
    transition: transform 1s ease;
}

.logo-slot img.logo-active {
    transform: scale(1, 1);
}

.logo-slot img.logo-exit {
    transform: scale(0, 0);
    transition: transform 1s ease;
}

@media (max-width: 768px) {
    .logo-bar-slots {
        gap: 24px;
        flex-wrap: wrap;
    }

    .logo-slot {
        width: 90px;
        height: 36px;
        flex: 0 0 90px;
    }
}

.reveal .line {
    transition: width 0.3s ease-out, transform 0.3s ease-out;
}

.reveal2 .char {
    opacity: 0;
}

.reveal.sectiontitle-72 {
    line-height: var(--font-72);
}


.agency-masked-image {
    -webkit-mask-image: url("../images/agency-mask.png");
    mask-image: url("../images/agency-mask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    overflow: hidden;
    width: auto;
    right: 0;
    top: 0;
    position: absolute;
    height: 65vw;
}

section.masked-rightcontainer {
    height: 65vw;
}


.video-fullscreen {
    width: 100%;
    height: 97vh;
    object-fit: cover;
    border-radius: 1.25vw;
    overflow: hidden;
}


.vimeo-wrapper {
    height: 100vh;
}

.vimeo-wrapper iframe {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.vimeo-wrapper.vimeo-ready iframe {
    opacity: 1;
}

.vimeo-wrapper.vimeo-ready {
    background-image: none !important;
}




/* ─── Features Slider ─────────────────────────────────────── */
.features-slider-wrap {
    overflow: hidden;
}

.features-slider .slick-list {
    padding-right: 15vw;
}



.features-slider .feature-slide {
    opacity: 0.6;
    transition: opacity 0.4s ease;
    padding: 2.5vw 2.5vw 2.5vw 0;
}

.feature-card {
    background: #fff;
    border-radius: 2.95vw;
    border: 1px solid #DFC8A6;
    opacity: 0.6
}

.features-slider .slick-current.slick-active .feature-card {
    opacity: 1;
    border-color: var(--dblue);
    box-shadow: 20px 10px 50px 5px rgba(0, 0, 0, 0.10);
}

/* Peek: extend slider beyond container edge */


/* Browser dots */
.feature-card__browser-bar {
    display: flex;
    gap: 0.25vw;
    padding: 1.823vw 2vw;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #FF5F57;
}

.dot-yellow {
    background: #FEBC2E;
}

.dot-green {
    background: #28C840;
}

/* ─── Features Slider Dots — Pill Style ──────────────────── */
.features-slider .slick-dots {
    position: static;
    margin-top: 6vw;
    text-align: left;
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding-left: 12vw;
}

.features-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.features-slider .slick-dots li button {
    width: 1.31vw;
    height: 11px;
    border-radius: 10px;
    background: var(--dblue);
    opacity: 0.2;
    padding: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.features-slider .slick-dots li button:before {
    display: none;
}

.features-slider .slick-dots li.slick-active button {
    width: 2.71vw;
    opacity: 1;
}

.feature-card__image.object-cover {
    padding: 1.5vw 2vw;
    background: linear-gradient(180deg, #E7E7E7 0%, #DCE7E6 100%);
    min-height: 26vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-card__image.object-cover img {
    filter: blur(6px);
    border-radius: 1.5vw;
}

.feature-slide.slick-slide.slick-current.slick-active .feature-card__image.object-cover img {
    filter: blur(0);
}

.feature-card__body {
    padding: 2vw;
}

.avatar img {
    width: 100%;
    height: 100%;
    padding: 0.9vw;
}

.avatar {
    width: 4.5vw;
    height: 4.5vw;
    background: var(--dblue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.author-dflex {
    align-items: center;
    gap: 1vw;
    border: 1px solid var(--plum);
    display: inline-flex;
    height: 7vw;
    line-height: 7vw;
    padding: 0 1vw;
    border-radius: 14rem;
}


.workspace-section {
    aspect-ratio: 1920 / 1226;
    margin-top: var(--pt-160);
}


.workspace-section.overlay::before {
    background: linear-gradient(139deg, #000 23.45%, rgba(0, 0, 0, 0.00) 71.24%);
}


.workspace-blob-inner {
    width: 44.275vw;

    height: 26vw;
    background: url(../images/blob-vector.svg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8vw;
    background-size: 100%;
    background-repeat: no-repeat;
}

.workspace-slider-wrap,
.workspace-blob-inner .workspace-slider {
    width: 100%;
    text-align: left;
    margin-bottom: 0 !important;
}

.workspace-slide p {
    margin: 0;
}

.workspace-blob {
    position: absolute;
    bottom: 6vw;
}

.access-highlight-slider.slick-dotted.slick-slider {
    margin: 0 !important;
}

.workspace-text-col .slick-dots,
.workspace-blob .slick-dots,
.access-highlight-slider .slick-dots {
    text-align: left;
    display: flex !important;
    gap: 6px;
    bottom: 5vw;
}

.workspace-text-col .slick-dots li,
.workspace-blob .slick-dots li,
.access-highlight-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.workspace-text-col .slick-dots li button,
.workspace-blob .slick-dots li button,
.access-highlight-slider .slick-dots li button {
    width: 1.31vw;
    height: 11px;
    border-radius: 10px;
    background: #fff;
    opacity: 0.2;
    padding: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.workspace-text-col .slick-dots li button:before,
.workspace-blob .slick-dots li button:before,
.access-highlight-slider .slick-dots li button:before {
    display: none;
}

.workspace-text-col .slick-dots li.slick-active button,
.workspace-blob .slick-dots li.slick-active button,
.access-highlight-slider .slick-dots li.slick-active button {
    width: 2.71vw;
    opacity: 1;
}

.workspace-blob .slick-dots li button {
    background: #000;
}


/* Built For People — Masked Image */
.built-masked-image {
    -webkit-mask-image: url("../images/built-mask.png");
    mask-image: url("../images/built-mask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    overflow: hidden;
    width: 100%;
}

.built-masked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

ul.meet-bullets {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

ul.meet-bullets,
ul.meet-bullets li {
    margin: 0;
}

ul.meet-bullets li {
    display: flex;
    gap: 0.5vw;
    align-items: center
}


.eyebrow-label {
    height: 2vw;
    line-height: 2vw;
    border: 1px solid;
    display: table;
    padding: 0 1.359vw;
    border-radius: 2vw;
    width: max-content;
}

.meet-gracie-section .row {
    padding: 6vw 4vw;
    border-radius: 4.6vw;
}

.meet-mascot {
    position: absolute;
    bottom: -6.1vw;
    height: max-content;
}

.meet-mascot svg {
    width: 100%;
}

.meet-card {
    padding: var(--pt-60);
    border-radius: 4.6vw;
    height: 40vw;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    display: block;
}


.meet-card.overlay:before {
    border-radius: 5.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    height: 65%;
    z-index: -1;
}




.packages_carousel {
    background: url(../images/price-bubble.svg) no-repeat;
    background-size: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 3vw;
    width: 23.65vw;
    height: 15vw;
    left: -3vw;
}

.meet-card__package-slide {
    height: 14vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.meet-card__packages .slick-slide {
    padding: 0vw 3vw 0vw 6vw;
}


.meet-card__svg {
    bottom: 0;
    width: 100%;
    height: 100%;
}


.meet-card-glass-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.glass-blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(150px);
    backdrop-filter: blur(150px);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.glass-blob--1 {
    left: 24.207%;
    top: 62.681%;
    width: 29.869%;
    height: 57.017%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 277.486 240.606'%3E%3Cpath d='M196.362 1.487 C227.356 0 252.701 10.116 265.092 32.164 H265.093 C277.486 54.201 274.584 84.026 259.845 114.444 C245.107 144.859 218.54 175.847 183.639 200.193 C148.737 224.539 112.116 237.631 81.123 239.119 C50.129 240.606 24.783 230.49 12.392 208.442 C0 186.405 2.9 156.58 17.64 126.162 C32.378 95.747 58.944 64.759 93.846 40.413 C128.747 16.066 165.369 2.974 196.362 1.487 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 277.486 240.606'%3E%3Cpath d='M196.362 1.487 C227.356 0 252.701 10.116 265.092 32.164 H265.093 C277.486 54.201 274.584 84.026 259.845 114.444 C245.107 144.859 218.54 175.847 183.639 200.193 C148.737 224.539 112.116 237.631 81.123 239.119 C50.129 240.606 24.783 230.49 12.392 208.442 C0 186.405 2.9 156.58 17.64 126.162 C32.378 95.747 58.944 64.759 93.846 40.413 C128.747 16.066 165.369 2.974 196.362 1.487 Z' fill='%23000'/%3E%3C/svg%3E");
}

.glass-blob--2 {
    left: -0.4185%;
    top: 36.535%;
    width: 32.405%;
    height: 48.398%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 301.039 204.237'%3E%3Cpath d='M61.171 10.880 C90.895 0.987 129.345 0 169.464 10.273 C209.596 20.547 243.802 40.14 266.665 63.503 C289.53 86.867 301.039 113.99 295.814 139.331 C290.575 164.67 269.592 183.465 239.867 193.358 C210.144 203.252 171.694 204.237 131.562 193.964 C91.43 183.69 57.223 164.098 34.364 140.735 C11.503 117.371 0 90.248 5.239 64.907 C10.463 39.569 31.447 20.774 61.171 10.880 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 301.039 204.237'%3E%3Cpath d='M61.171 10.880 C90.895 0.987 129.345 0 169.464 10.273 C209.596 20.547 243.802 40.14 266.665 63.503 C289.53 86.867 301.039 113.99 295.814 139.331 C290.575 164.67 269.592 183.465 239.867 193.358 C210.144 203.252 171.694 204.237 131.562 193.964 C91.43 183.69 57.223 164.098 34.364 140.735 C11.503 117.371 0 90.248 5.239 64.907 C10.463 39.569 31.447 20.774 61.171 10.880 Z' fill='%23000'/%3E%3C/svg%3E");
}

.glass-blob--3 {
    left: 80.425%;
    top: 24.806%;
    width: 23.246%;
    height: 73.256%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 215.959 309.137'%3E%3Cpath d='M28.875 13.799 C48.647 0 75.407 3.227 102.709 19.645 C130.009 36.062 157.826 65.656 179.682 104.539 C201.538 143.421 213.289 184.223 214.629 218.756 C215.959 253.294 206.879 281.537 187.087 295.339 C167.316 309.137 140.555 305.91 113.253 289.492 C85.954 273.075 58.136 243.481 36.281 204.599 C14.425 165.716 2.671 124.915 1.335 90.382 C0 55.843 9.085 27.601 28.875 13.799 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 215.959 309.137'%3E%3Cpath d='M28.875 13.799 C48.647 0 75.407 3.227 102.709 19.645 C130.009 36.062 157.826 65.656 179.682 104.539 C201.538 143.421 213.289 184.223 214.629 218.756 C215.959 253.294 206.879 281.537 187.087 295.339 C167.316 309.137 140.555 305.91 113.253 289.492 C85.954 273.075 58.136 243.481 36.281 204.599 C14.425 165.716 2.671 124.915 1.335 90.382 C0 55.843 9.085 27.601 28.875 13.799 Z' fill='%23000'/%3E%3C/svg%3E");
}

.glass-blob--4 {
    left: 61.930%;
    top: 51.574%;
    width: 21.740%;
    height: 82.301%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 201.968 347.306'%3E%3Cpath d='M18.451 152.498 C36.902 63.048 88.831 0 134.406 11.692 C179.981 23.354 201.968 105.358 183.517 194.807 C165.066 284.257 113.138 347.306 67.562 335.613 C21.987 323.951 0 241.978 18.451 152.529 Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 201.968 347.306'%3E%3Cpath d='M18.451 152.498 C36.902 63.048 88.831 0 134.406 11.692 C179.981 23.354 201.968 105.358 183.517 194.807 C165.066 284.257 113.138 347.306 67.562 335.613 C21.987 323.951 0 241.978 18.451 152.529 Z' fill='%23000'/%3E%3C/svg%3E");
}



.blog-carousel .slick-list {
    padding: 0 12vw;
}

.blog-carousel .slick-slide {
    padding: 0 0.5vw;
}

.blog-slide {
    border-radius: 3.34vw;
    padding: 2vw 2vw 0;
    margin-bottom: 1.5vw;
}

.blog-card__image {
    aspect-ratio: 425 / 275;
    height: 100%;
    margin: 0 -2vw;
    border-bottom-left-radius: 3.34vw;
    border-bottom-right-radius: 3.34vw;
    overflow: hidden;
}

.blog-card__title {
    min-height: 14.5vw;
}

.blog-carousel-section .curved-cta {
    margin: -2vw auto 0;
    position: relative;
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.25);
    border-radius: 3.75vw !important;
}

.faq-item {
    padding: 1vw 0;
    border-top: 1px solid;
}

.faq-answer {
    padding: 0.5vw 5vw 0.5vw 0vw;
}

.faq-question span {
    line-height: 1.5;
}

.menu-container {
    padding-bottom: var(--pb-40)
}

.menu-container ul,
.menu-container ul li {
    padding: 0;
    margin: 0;
}

.menu-container ul li a {
    font-size: var(--font-14);
}




.footer-logo img {
    width: 9.8vw;
    margin: auto;
}


.d-flex.socialmedia a {
    width: 2vw;
    height: 2vw;
    border-radius: 100%;
    border: 1px solid !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-flex.socialmedia {
    gap: 1vw;
}


.curved-cta.fullwidth-cta a {
    width: 100%;
    text-align: center;
    height: 6.93vw;
    line-height: 6.93vw;
    font-family: "bold";
}





.object-cover.videobg,
.footer-vimeo-wrapper,
.video_container {
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: url("../images/footer-video-mask.svg");
    mask-image: url("../images/footer-video-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    will-change: transform;
    aspect-ratio: 507 / 358;
}

.video_container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-vimeo-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.running-text p:last-child {
    margin-bottom: 0;
}


/* ── Mobile Menu Overlay ─────────────────────────────── */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
    background: var(--dblue);
    display: flex;
    flex-direction: column;
}




.mobile-menu-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
}

.mobile-menu-panels {
    flex: 1;
    overflow: hidden;
}

.mobile-menu-panel {
    overflow-y: auto;
    padding-top: 20px;
}

.hamburger,
.mobile-menu-close {
    background: none;
    padding: 0;
}

.mobile-menu-overlay.is-open {
    transform: translateX(0);
}

/* ── Two panels sit side by side inside overlay ──────── */
.mobile-menu-panels {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    background: var(--dblue);
}

.mobile-menu-panels.show-sub {
    transform: translateX(-50%);
}

.mobile-menu-panel {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 32px 40px;
    overflow-y: auto;
    background: var(--dblue);
    color: #fff;
    font-family: 'medium';

}



.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}



/* ── Nav list ────────────────────────────────────────── */
.mobile-menu-list,
.mobile-menu-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.mobile-menu-list {
    gap: 2.5rem;
}

.mobile-menu-sublist li {
    padding: 0;
    margin: 0
}

.mobile-menu-item {
    border: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-parent,
.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    text-decoration: none;
    font-family: "medium";
    font-size: 16px;
    font-weight: normal !important;
}

.mobile-menu-parent svg,
.mobile-menu-link svg {
    flex-shrink: 0;
}

/* ── Sub-menu item links ──────────────────────────────── */
.mobile-menu-subitem {
    padding: 14px 0;
    display: block;
    text-decoration: none;
}

/* ── Back button ─────────────────────────────────────── */
.mobile-menu-back {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding-bottom: 20px;
}

/* ── Divider ─────────────────────────────────────────── */
.mobile-menu-divider {
    width: 100%;
    height: 1px;
    margin: 14px 0 15px 0;
    opacity: 0.3;
    background: #fff;
}

/* ── CTAs pinned to bottom ───────────────────────────── */
.mobile-menu-ctas {
    display: grid;
    gap: 12px;
    padding-top: 32px;
    margin-top: auto;
    grid-template-columns: 1fr 1fr;
    flex-shrink: 0;
    padding: 24px 32px;
}

.mobile-menu-ctas .curved-cta a {
    padding: 0 15px;
}

.mobile-menu-ctas .curved-cta:not(.box-shadow-cta):not(.header-cta) a {
    height: 50px;
    line-height: 50px;
}


.absolute-svgs svg {
    width: 100%;
    height: 100%;
}




.team-members {
    right: 6vw;
    z-index: 1;
    top: 3vw;
    width: 22vw;
    height: 22vw;
}


.project-progress {
    width: 25vw;
    left: 6vw;
    right: 0;
    margin: auto;
    top: 25vw;
    z-index: 1;
}

.time-spent {
    width: 30vw;
    top: 35vw;
    z-index: 1;
    left: -10vw;
}

.task-progress {
    width: 25vw;
    bottom: -14vw;
    z-index: 1;
    right: 2vw;
}

section.section-video {
    margin-top: 6vw;
}


/* ── Agency Work — Custom Cursor ─────────────────────── */
.agency-work.cursor-active {
    cursor: none;
}

#agency-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-9px, -5px);
    /* hotspot offset — tip of arrow */
    transition: opacity 0.2s ease;
    will-change: transform;
}

#agency-cursor.is-visible {
    opacity: 1;
}



/* ── Team Member card — squiggly draw ───────────── */
.squiggly-graph path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
}



/* ─── Icon 1: Squares — staggered pop ─────────────────────── */


.meet-gracie-section {
    margin: 15vw 0 var(--pb-160);
    position: relative;
}

.svg-icon svg {
    overflow: visible !important
}

.meet-bullets li:hover #square1,
.meet-bullets li:hover #square2,
.meet-bullets li:hover #square3,
.meet-bullets li:hover #square4 {
    animation: bulletSquarePop 0.5s ease-out 2;
    transform-box: fill-box;
    transform-origin: center;
}

.meet-bullets li:hover #square1 {
    animation-delay: 0s;
}

.meet-bullets li:hover #square2 {
    animation-delay: 0.08s;
}

.meet-bullets li:hover #square3 {
    animation-delay: 0.16s;
}

.meet-bullets li:hover #square4 {
    animation-delay: 0.24s;
}

@keyframes bulletSquarePop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

/* ─── Icon 2: Lightning — quick jolt/flicker ──────────────── */
.meet-bullets li:hover #lightning {
    animation: bulletLightningJolt 0.35s ease-out 2;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes bulletLightningJolt {
    0% {
        transform: scale(1) skewX(0deg);
    }

    25% {
        transform: scale(1.1) skewX(-8deg);
    }

    50% {
        transform: scale(0.95) skewX(6deg);
    }

    75% {
        transform: scale(1.08) skewX(-3deg);
    }

    100% {
        transform: scale(1) skewX(0deg);
    }
}

/* ─── Icon 3: Pages/Book — page lift from spine ───────────── */
.meet-bullets li:hover #pages {
    animation: bulletPageFlip 0.5s ease-out 2;
    transform-box: fill-box;
    transform-origin: right center;
}

@keyframes bulletPageFlip {
    0% {
        transform: rotate(0deg);
    }

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

    100% {
        transform: rotate(0deg);
    }
}

/* ─── Icon 4: Rocket — launch thrust ──────────────────────── */
.meet-bullets li:hover #rocket-top {
    animation: bulletRocketLaunch 0.5s ease-out 2;
    transform-box: fill-box;
    transform-origin: center;
}

.meet-bullets li:hover #tail {
    animation: bulletRocketTail 0.5s ease-out 2;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes bulletRocketLaunch {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(3px, -4px);
    }

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

@keyframes bulletRocketTail {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-2px, 3px);
        opacity: 0.6;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}



.tools-svg-wrap svg,
.stats-svg-wrap svg {
    width: 100%;
    height: 100%;
}


.tools-svg-wrap.tools-svg-wrap3 {
    aspect-ratio: 900 / 525;
    position: relative;
    top: 4.5vw;
}

.tools-svg-wrap.tools-svg-wrap2 {
    width: 29vw;
    right: -7vw;
    top: -2vw;
    z-index: 1;
}

.tools-svg-wrap.tools-svg-wrap1 {
    width: 29.3vw;
    top: -4vw;
    left: -2vw;
}


.stats-svg-wrap {
    width: 100%;
}




.po-hero-screenshot {
    will-change: transform;
}

.scroll-image {
    overflow: clip;
    height: 61.375rem;
    ;
    /* or whatever height you want the visible window to be */
}

.po-hero-screenshot {
    position: relative;
}

.scroll-image.overlay:before {
    background: linear-gradient(180deg, rgba(255, 254, 254, 0.00) 9.84%, #FFFEFE 71.65%);
    height: 500px;
    top: auto;
    bottom: 0;
    z-index: 1
}


.po-connect-section .row {
    border-radius: 5.5625rem
}

.po-connect-image {
    display: flex;
    margin-right: -15px;
    border-radius: 5.5625rem 0rem 5.5625rem 0rem;
    height: 100%;
    padding-top: 8vw;
}

.po-connect-image img {
    border-radius: 5.5625rem 0rem 5.5625rem 0rem;
}



ul.connect-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85vw;
}

ul.connect-bullets li {
    border-radius: 0.85vw;
    background: rgba(255, 255, 255, 0.20);
    padding: 1.25vw;
    margin: 0;
    width: max-content;
}

.content-padding {
    padding: 8vw 8vw 4vw 3vw;
}


.po-statement-graphic svg {
    width: 100%;
}

.curved-content {
    padding: 3vw 6vw 3vw 6vw;
    border-radius: 4.6vw;
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.25);
}

.footer {
    position: relative;
}



.footer-vimeo-wrapper iframe {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    transform: scale(1.35);
}

.footer-vimeo-wrapper.vimeo-ready iframe {
    opacity: 1;
}

.footer-vimeo-wrapper.vimeo-ready {
    background-image: none !important;
}


.product-hero-image {
    width: 65vw;
    margin: auto;
    position: relative;
    top: -7vw;
    border-radius: 3vw;
    border: 1.1vw solid rgba(255, 255, 255, 0.24);
    box-shadow: 20px 30px 30px 0 rgba(0, 0, 0, 0.06);
}


.product-hero-image img {
    border-radius: 2vw;
}

.product-hero-card {
    border-radius: 4.59vw;
    margin-top: 7vw
}

.product-hero-card .sectiontitle-64 {
    margin-top: -3vw;
}

.product-hero-card {
    padding: 0 10vw 4vw 10vw;
}

.product-hero-statement {
    width: 48vw;
    margin: auto;
}

.feature-block-row.d-grid {
    grid-template-columns: 1fr 1fr
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1vw 8vw 1vw 8vw;
    border-radius: 5vw;
}

.content-container ul,
.content-container ul li {
    padding: 0;
    margin: 0;
}

.content-container ul {
    margin-left: 20px;
}


.feature-block-image img {
    border-radius: 5vw;
}

.feature-block-image,
.image__container {
    aspect-ratio: 35 / 37;
    border-radius: 5vw;
    height: 100%
}

.feature-block-media {
    height: 100%;
    border-radius: 5vw;
}

.feature-block-row.row {
    margin: 0;
}

.feature-block-row .col-md-6 {
    padding: 0;
}

.feature-block-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.glass-blurred {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.bottom-blobs {
    bottom: 0;
    z-index: -1;
}

.product-hero-card {
    z-index: 1;
}

.bottom-blobs {
    bottom: 0px;
    z-index: -1;
    width: 100%;
    padding: 0 2vw;
    left: 2vw;
    right: 0;
}

.bottom-blobs img {
    width: 100%;
}

.feature-block-media.dblue-bg .bottom-blobs2.d-none {
    display: block !important;
}

.time-blobs {
    right: 0;
    height: 100%;
    top: 0;
}

.time-blobs img {
    height: 100%;
}









.split-feature-section .col-md-5.col-sm-12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.split-feature-section {
    margin-bottom: 11vw
}

.fullwidth-feature-section {
    margin-top: 4.5vw;
}

.scroll-image img {
    border-radius: 24px;
}

.pricing-tiers-grid .col-md-3 .pricing-tier-card {
    padding: var(--pb-80) var(--pb-40) var(--pb-160);
    border-radius: 2.9vw;
    height: 100%;
    position: relative;
}


.pricing-tiers-grid .col-md-3:nth-child(odd) .pricing-tier-card {
    border: 1px solid var(--dblue);
    background: #FFF;
}

.pricing-tiers-grid .col-md-3:nth-child(even) .pricing-tier-card {
    border: 1px solid var(--dblue);
    background: #F5F5FF;
}

.pricing-tier-card ul {
    padding: 0;
    margin: 0;
}

.pricing-tier-card ul li {
    padding: 0.35vw 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.tier-card__cta.curved-cta,
.tier-card__cta.curved-cta a {
    width: 100%;
    text-align: center;
}

.tier-card__cta.curved-cta {
    position: absolute;
    bottom: 1.5vw;
    left: 0;
    padding: 0 var(--pb-40)
}

.pricing-tiers-section .hero-blob {
    top: 3vw;
    display: flex;
    justify-content: center;
    left: 9vw;
    right: 0;
}

.pricing-banner-section .bg-wash--radial {
    top: 0;
}

.about-page .masked-rightcontainer {
    height: 74vw;
}

.card-social {
    top: 12vw;
    z-index: 1;
    left: 8vw;
    width: 30vw;
}

.card-hours {
    bottom: -6vw;
    z-index: 1;
    right: 3vw;
    width: 21vw;
}

.card-profile {
    bottom: 0vw;
    z-index: 1;
    left: -6vw;
    width: 23.7vw;
}

.mission-cards-section {
    padding-top: 9vw;
}

.mission-cards-section .col-md-6 {
    border-radius: 2vw;
    aspect-ratio: 174 / 109;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mission-cards-section .col-md-6 .mission-card {
    padding: 1vw 7vw;
}

.platform-section .hide-1024 {
    height: 100vh;
    position: relative
}

.platform-cards-track {
    will-change: transform;
}

.platform-cards-columns {
    gap: 1.5vw;
    position: relative;
}

.platform-cards-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.platform-cards-col1 {
    height: 52vw;
    /* fits 2 visible cards */
}

.platform-cards-col2 {
    height: 77vw;
    /* fits 3 visible cards */
    margin-top: -12vw;
}

.platform-cards-track {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.platform-feature-card {
    border-radius: 1.5vw;
    padding: 2vw;
    flex: 0 0 auto;
    aspect-ratio: 85 / 82;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-section .hide-1024:after {
    content: "";
    position: absolute;
    bottom: -10vw;
    width: 60vw;
    height: 27.5vw;
    background: linear-gradient(to bottom, rgba(233, 226, 232, 0) 0%, rgba(233, 226, 232, 1) 100%);
    right: 0vw;
}

.about-page .bg-wash--radial2 {
    top: 20vw;
}

.about-quote-section {
    margin-bottom: 10vw;
}


.access-highlight-wrap {
    padding: 6vw;
    min-height: 42vw;
}

.access-card-social {
    top: 3vw;
    right: 4vw;
}

.access-card-hours {
    bottom: 3vw;
    left: 4vw;
}

.security-page .bg-wash--radial {
    top: 3vw;
}


.inner-hero-blob {
    top: -5vw;
    right: 1vw;
    z-index: -1;
}

.security-page .inner-hero-blob {
    top: -3vw;
    right: auto;
    left: 2vw;
    width: 20vw;
}

.access-blob-svg {
    width: 65vw;
    height: 42vw;
    right: -10vw;
    top: 0
}

.access-control-section {
    height: 58vw;
    /* height: 100%; */
}

.access-card svg {
    width: 100%;
    height: 100%;
}


.security-page .access-card.access-card-social {
    width: 23.65vw;
    right: inherit;
    left: 14vw;
    top: 0vw;
}

.security-page .access-card.access-card-hours {
    top: auto;
    bottom: -7vw;
    right: 0;
    left: auto;
    width: 20vw;
}


.absolute-slider-container {
    bottom: 9vw;
    width: 25vw;
    left: 17vw;
}

.access-highlight-slider .slick-dots {
    position: relative !important;
    bottom: 0;
    margin-top: 2vw;
}


.faq-general-section {
    border-top: 1px solid #CCC7BD;
}

.faq-featured-blob {
    padding: 6.5vw 6.5vw;
    border-radius: 4.6vw;
}

.faq-featured-pills {
    width: 49vw;
    margin: 0vw auto 2vw;
}

.faq-featured-repeater ul {
    margin: 0;
    padding: 0;
}

.faq-featured-repeater ul li {
    list-style: none;
    border-radius: 0.85vw;
    background: #7E7EFF;
    display: flex;
    padding: 1.3vw 1.7vw;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin: 1vw auto;
}


.faqs-page .bg-wash--radial,
.contact-page .bg-wash--radial {
    top: 0vw;
}


.contact-cards-row.d-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1vw;
}

.contact-cards-row .contact-card {
    aspect-ratio: 58 / 89;
    border-radius: 2.9vw;
    padding: 3vw 2vw;
    color: #fff;
}

.contact-cards-slider .slick-slide {
    padding: 0 0.37vw;
}

.contact-card[style="background-color: #e0ff05"] .contact-card__label.sectiontitle-42.white {
    color: var(--plum);
}


.contact-form-wrap {
    width: 48vw;
    margin: auto;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper .multi-check__toggle {
    width: 100%;
    padding: 0 1vw;
    border-radius: 1vw !important;
    border: 1px solid #A8A4A9;
    background: #FFF;
    height: 3.5vw;
    line-height: 3.5vw;
    font-size: var(--font-16);
    color: var(--plum);

}

.input-wrapper textarea {
    width: 100%;
    padding: 1vw;
    border-radius: 1vw !important;
    border: 1px solid #A8A4A9;
    background: #FFF;
    height: 6vw;
    line-height: 1;
    font-size: var(--font-16);
    color: var(--plum);

}

.curved-cta.bordered-cta input {
    color: var(--dblue) !important;
    background: var(--beige) !important;
    font-size: var(--font-16);
    text-transform: capitalize;
    font-weight: normal !important;
    cursor: pointer;
    padding: 0 6.5vw;
}

.input-wrapper .select2-container {
    width: 100% !important;
    z-index: 1052;
}

.input-wrapper .select2-container .select2-selection--single {
    height: 3.5vw;
    border-radius: 1vw !important;
    border: 1px solid #A8A4A9;
    background: #FFF;
}

.input-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 1vw;
    line-height: 3.5vw;
    font-size: var(--font-16);
    color: var(--plum);
}

.input-wrapper .select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--plum);
}

.input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 0;
    width: 3.5vw;
}

.input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.input-wrapper .select2-container--default .select2-selection--single {
    background-image: url("../images/select-arrow.svg") !important;
    background-position: right 15px center !important;
    background-repeat: no-repeat !important;
}

.input-wrapper .select2-dropdown {
    border-radius: 1vw;
    border: 1px solid #A8A4A9;
}

.input-wrapper .select2-results__option {
    font-size: var(--font-16);
    color: var(--plum);
    padding: 0.5vw 1vw;
}

.input-wrapper .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--dblue);
}


.reason-select2-dropdown {
    border: 1px solid #A8A4A9 !important;
    border-bottom-left-radius: 1vw !important;
    border-bottom-right-radius: 1vw !important;
    top: -3vw;
}

.reason-select2-dropdown .select2-results__option {
    font-size: var(--font-14);
    color: var(--plum);
    padding: 0.6vw 1vw;
    border-bottom: 1px solid #E5E1E6;
    margin: 0 !important;
}

.reason-select2-dropdown .select2-results__option:last-child {
    border-bottom: none;
    border-bottom-left-radius: 1vw !important;
    border-bottom-right-radius: 1vw !important;
}

.reason-select2-dropdown .select2-results__option--highlighted[aria-selected] {
    background: var(--dblue) !important;
    color: #FFF;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 300px !important;
    padding-top: 3vw;
}

/* ─── CF7 Form Validation States ──────────────────────────── */

/* Field error state */
.wpcf7-form-control.wpcf7-not-valid {
    border: 1px solid #E14B4B !important;
    box-shadow: 0 0 0 3px rgba(225, 75, 75, 0.12);
}

/* Shake animation on invalid submit */
/* Shake animation on invalid submit */
@keyframes cf7-shake {

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

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }
}

.wpcf7-form-control.cf7-shake-active {
    animation: cf7-shake 0.4s ease-in-out;
}

/* Error tip — tooltip style, anchored, no layout shift */
.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    left: 0.5vw;
    margin-top: 0.3vw;
    background: #E14B4B;
    color: #fff;
    padding: 0.3vw 0.8vw;
    border-radius: 0.5vw;
    font-size: var(--font-12);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3vw;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wpcf7-not-valid-tip.cf7-tip-visible {
    opacity: 1;
    transform: translateY(0);
}

.wpcf7-not-valid-tip:before {
    content: "";
    width: 12px;
    height: 12px;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2 1 21h22L12 2zm0 15h-1v-1h1v1zm0-3h-1V9h1v5z'/%3E%3C/svg%3E");
    flex-shrink: 0;
}

/* Response output — restyled as pill, matches curved-cta language */
.wpcf7-response-output {
    border-radius: 3.75vw !important;
    padding: 1vw 2vw !important;
    display: flex;
    align-items: center;
    gap: 0.6vw;
    font-family: "medium";
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wpcf7-response-output.cf7-response-visible {
    opacity: 1;
    transform: translateY(0);
}

form.invalid .wpcf7-response-output,
form.failed .wpcf7-response-output,
form.spam .wpcf7-response-output {
    border-color: #E14B4B !important;
    background: rgba(225, 75, 75, 0.08);
    color: #E14B4B;
}

form.sent .wpcf7-response-output {
    border-color: var(--lime) !important;
    background: rgba(224, 255, 5, 0.15);
    color: var(--plum);
}

/* Icon before response text */
.wpcf7-response-output:before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: no-repeat center / contain;
}

form.invalid .wpcf7-response-output:before,
form.failed .wpcf7-response-output:before,
form.spam .wpcf7-response-output:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E14B4B'%3E%3Cpath d='M12 2 1 21h22L12 2zm0 15h-1v-1h1v1zm0-3h-1V9h1v5z'/%3E%3C/svg%3E");
}

form.sent .wpcf7-response-output:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23211A24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

@media (max-width:768px) {
    .wpcf7-not-valid-tip {
        left: 10px;
        margin-top: 6px;
        padding: 6px 12px;
        border-radius: 8px;
    }

    .wpcf7-response-output {
        border-radius: 20px !important;
        padding: 15px 20px !important;
    }
}

.solutionsoverview-page .hero-card {
    height: 32vw;
    aspect-ratio: 554 / 613;
    justify-content: flex-end;
    gap: 2vw;
}


.solutionsoverview-page .hero-cards-track .hero-card:first-child,
.hero-cards-track .hero-card:nth-child(5),
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:first-child .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(5) .hero-card {
    background: var(--lime)
}

.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(2) .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(4) .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(6) .hero-card {
    background: var(--dblue);
}



.solutionsoverview-page .hero-cards-track .hero-card:nth-child(2),
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(6),
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(4),
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(2) .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(6) .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(4) .hero-card {
    background: var(--dblue);
}



.solutionsoverview-page .hero-cards-track .hero-card:nth-child(3),
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(7),
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(3) .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(7) .hero-card {
    background: var(--plum);
}


.solutionsoverview-page .hero-card__label.sectiontitle-48 {
    padding-right: 1vw;
}





.solutionsoverview-page .hero-cards-track .hero-card:first-child .hero-card__label.sectiontitle-48,
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(5) .hero-card__label.sectiontitle-48,
.solutionsoverview-page .hero-cards-track .hero-card:first-child .running-text,
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(5) .running-text,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:first-child .hero-card .hero-card__label.sectiontitle-48,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(5) .hero-card .hero-card__label.sectiontitle-48,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:first-child .running-text,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(5) .running-text {
    color: var(--plum)
}

.solutionsoverview-page .hero-cards-track .hero-card .running-text,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide .running-text {
    color: #fff;
}

.solutionsoverview-page .hero-cards-track .hero-card:nth-child(3) .hero-card__label.sectiontitle-48,
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(7) .hero-card__label.sectiontitle-48,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(3) .hero-card__label.sectiontitle-48,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(7) .hero-card__label.sectiontitle-48 {
    color: #fff;
}



.solutionsoverview-page .hero-cards-track .hero-card:first-child .solution-blobs svg path,
.hero-cards-track .hero-card:nth-child(5) .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:first-child .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(5) .solution-blobs svg path {
    fill: #D2EE08 !important
}









.solutionsoverview-page .hero-cards-track .hero-card:nth-child(2) .solution-blobs svg path,
.hero-cards-track .hero-card:nth-child(6) .solution-blobs svg path,
.hero-cards-track .hero-card:nth-child(4) .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(2) .hero-card .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(6) .hero-card .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(4) .hero-card .solution-blobs svg path {
    fill: #6767FF !important;
}










.solutionsoverview-page .hero-cards-track .hero-card:nth-child(3) .solution-blobs svg path,
.solutionsoverview-page .hero-cards-track .hero-card:nth-child(7) .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(3) .hero-card .solution-blobs svg path,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide:nth-child(7) .hero-card .solution-blobs svg path {
    fill: #2E2432 !important;
}



.solutionsoverview-page .hero-cards-track .hero-card,
.solutionsoverview-page .herocards-carousel .slick-track .slick-slide .hero-card {
    z-index: 1;
}

.solution-blobs {
    z-index: -1;
    right: 0;
    bottom: 0;
}

.resources-hero-image {
    height: 100%;
    aspect-ratio: 96 / 64;
}

.resources-stat-svg svg {
    width: 100%;
    height: 100%;
}

.resources-stat-svg-1 {
    width: 11vw;
    top: 15vw;
    left: 12vw;
}

.resources-stat-svg-2 {
    width: 16.5vw;
    top: 30vw;
    left: 6vw;
}

.resources-stat-svg-3 {
    width: 16.5vw;
    top: 17vw;
    right: 3vw;
}


.resources-stat-svg-4 {
    width: 11vw;
    bottom: 20vw;
    right: 18vw;
}

.glass-blurred2 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2.1vw;
    overflow: hidden;
}


.resources-hero-section #blue-ring,
.resources-hero-section #lime-ring {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}


.stories-avatar-swiper {
    overflow: visible;
}

.stories-avatar-slide {
    width: 15vw !important;
    aspect-ratio: 1 / 1;
}

/*<!--@media (min-width: 576px) {
  .stories-avatar-slide { width: 84px !important; }
}

@media (min-width: 768px) {
  .stories-avatar-slide { width: 112px !important; }
}

@media (min-width: 992px) {
  .stories-avatar-slide { width: 145px !important; }
}

@media (min-width: 1200px) {
  .stories-avatar-slide { width: 175px !important; }
}

@media (min-width: 1400px) {
  .stories-avatar-slide { width: 204px !important; }
}-->*/

@media (min-width: 1920px) {
    .stories-avatar-slide {
        width: 15vw !important;
    }
}

.stories-avatar-out-of-range {
    opacity: 0 !important;
    pointer-events: none !important;
}

.stories-avatar-slide .stories-avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--offwhite);
    padding: 1vw;
    border: 10px solid #fff !important;
}

.stories-avatar-slide .stories-avatar:hover {
    border-color: var(--lime);
}


.main-content.single-post-page {
    padding-top: 0 !important;
}

.single-post-hero-section {
    height: 100vh;
    overflow: hidden;
}

.single-post-hero-image {
    height: 100%;
}

.blog-container.position-absolute {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    top: 0;
    bottom: 5vw;
    left: 0;
    right: 0;
}

.single-post-hero-section.overlay:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.70) 100%);
    top: inherit;
    height: 50%;
    bottom: 0;
}


.single-post-block ul {
    margin: 0 0 2vw 1vw;
    padding: 0;
    list-style: none;
}

.single-post-block ul li {
    margin: 0 0 0.5vw;
    padding: 0;
    list-style: none;
    text-indent: -1vw;
}

.single-post-block ul li:before {
    content: "";
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--dblue);
    display: inline-block;
    margin-right: 10px;
}



ul.category-listing,
ul.category-listing li {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.category-listing {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}


ul.category-listing li a {
    padding: 0.8vw 1vw;
    display: inline-flex;
    border: 1px solid transparent !important;
    border-radius: 8px;
    width: 100%;
    position: relative;
}

ul.category-listing li a:after {
    content: "";
    background: url(../images/category-arrow.svg) no-repeat;
    background-size: 100%;
    width: 1.6rem;
    height: 0.8rem;
    visibility: hidden;
    transition: all 0.3s;
    transform: translate(-200%);
    position: absolute;
    right: 1vw;
    top: 1.25vw;
}

ul.category-listing li:hover a:after,
ul.category-listing li a.is-active:after {
    visibility: visible;
    transition: all 0.3s;
    transform: translate(0%);
}

ul.category-listing li a.is-active,
ul.category-listing li:hover a {
    border-color: var(--dblue) !important;
    background: #FFF;
}


nav#categoryArchivePagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.page-numbers {
    width: 2vw;
    height: 2vw;
    display: inline-block;
    background: #fff;
    color: var(--dblue);
    font-size: var(--font-18);
    border-radius: 50%;
    line-height: 2vw;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--dblue);
    color: #fff;
}


.row.help-centre-grid {
    margin: 0;
}

.row.help-centre-grid .col-md-6 {
    padding: 0;
}

.help-centre-tile {
    text-align: center;
    padding: 1vw 5vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4.6vw;
    aspect-ratio: 174 / 109;
}


.help-centre-tile__desc {
    width: 65%;
}

.help-centre-grid .col-md-6:nth-child(4n+1) .help-centre-tile,
.help-centre-grid .col-md-6:nth-child(4n+4) .help-centre-tile {
    background: var(--dblue);
}

.help-centre-grid .col-md-6:nth-child(4n+2) .help-centre-tile {
    background: var(--lime);
}

.help-centre-grid .col-md-6:nth-child(4n+3) .help-centre-tile {
    background: #fff;
}

.help-centre-grid .col-md-6:last-child .help-centre-tile {
    background: var(--dgrey);
}


.help-centre-grid .col-md-6:nth-child(4n+1) .help-centre-tile,
.help-centre-grid .col-md-6:nth-child(4n+4) .help-centre-tile,
.help-centre-grid .col-md-6:nth-child(4n+1) .help-centre-tile .sectiontitle-64,
.help-centre-grid .col-md-6:nth-child(4n+4) .help-centre-tile .sectiontitle-64 {
    color: #fff;
}


.help-centre-grid .col-md-6:nth-child(4n+1) .help-centre-tile a.dblue-bg.white,
.help-centre-grid .col-md-6:nth-child(4n+4) .help-centre-tile a.dblue-bg.white {
    background: #fff;
    color: var(--dblue);
}

.help-centre-grid .col-md-6:last-child .help-centre-tile a.dblue-bg.white {
    background: var(--dblue);
    ;
    color: #fff
}

.help-centre-grid .col-md-6:last-child .help-centre-tile .sectiontitle-64 {
    color: var(--plum)
}

.help-centre-grid .col-md-6:last-child .help-centre-tile .help-centre-tile__desc {
    color: var(--lpurple);
}






.help-centre-search-form {
    position: relative;
    width: 100%;
}

.help-centre-search-input {
    width: 100%;
    height: 6vw;
    padding: 0 2vw 0 6vw;
    border: none;
    border-radius: 6vw !important;
    background-color: var(--dblue);
    color: #fff;
    z-index: 2;
    position: relative;
}

input.help-centre-search-input::-webkit-input-placeholder {
    color: #fff;
    font-size: var(--font-20);
    font-family: "medium"
}

input.help-centre-search-input:focus::-webkit-input-placeholder {
    color: transparent;
}

.help-centre-search-form.is-panel-open .help-centre-search-input {
    border-radius: 6vw 6vw 0 0;
}

.help-centre-search-panel {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-height: 25vw;
    border-radius: 0 0 3vw 3vw;
    background: #fff;
    text-align: left;
    padding: 5vw 3vw 4vw 1vw;
    z-index: 1;
}

.help-centre-search-panel-inner {
    max-height: 25vw;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
}


.help-centre-search-panel-inner::-webkit-scrollbar-track {
    background: transparent;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.help-centre-search-panel-inner::-webkit-scrollbar {
    width: 6px;
    background-color: #DDE2EE;
}

.help-centre-search-panel-inner::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #D62929;
}

.help-centre-search-result {
    display: block;
    padding: 16px 32px;
    transition: all ease-in-out 0.3s;
    border-radius: 1vw;
}

.help-centre-search-result:hover {
    background: #F3F6FF;
    transition: all ease-in-out 0.3s;
}

.help-centre-search-form:before {
    content: "";
    background: url("../images/search.svg") no-repeat;
    position: absolute;
    left: 2vw;
    width: 2.35vw;
    height: 2.35vw;
    background-size: 100%;
    z-index: 3
}

.help-centre-search-result__title {
    margin: 0 0 4px;
}

.help-centre-search-result__excerpt {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-container {
    background: #EAE3D5;
    margin-top: -11.5vw;
    padding: 12vw 0 4vw;
}

a.help-category-pill.bold {
    display: block;
    padding: 1.05vw;
    border-radius: 0.42vw;
    margin-bottom: 1.31vw;
    border: 1px solid;
}


.category-archive-filter-select {
    width: 100%;
    height: 60px;
    border-radius: 8px !important;
    padding: 0 15px;
    color: var(--dblue);
    border-color: var(--dblue);
    background-image: url("../images/blue-select.svg") !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.single-post .category-archive-filter-select {
    padding: 0 55px 0 15px;
}

.wpcf7-spinner {
    position: absolute !important;
}





/* ── Fade-in sequence after heading reveal ───────────────────── */
.fade-seq-1,
.fade-seq-2 {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.fade-seq-1 {
    transform: translateY(15px);
}

.fade-seq-2 {
    transform: translateY(25px);
}

.fade-seq-1.is-visible,
.fade-seq-2.is-visible {
    opacity: 1;
    transform: translateY(0);
}




/*=======================MEDIA QUERIES=======================*/



@media (max-width:1680px) {

    .hero-card,
    .solutionsoverview-page .hero-card {
        height: 45vw;
    }


    .about-page .masked-rightcontainer .pr-80 {
        padding-right: 0 !important;
    }

    .features-slider .slick-current.slick-active .feature-card {
        box-shadow: 20px 10px 25px 5px rgba(0, 0, 0, 0.10);
    }

}


@media (max-width:1600px) {

    .feature-card__browser-bar {
        display: flex;
        gap: 8px;
        padding: 25px 35px;
    }

    .header .curved-cta a {
        height: 40px;
        line-height: 40px;
        padding: 0 15px;
    }

    .curved-cta a {
        height: 67px;
        line-height: 67px;
        padding: 0 15px;
        border-radius: 70px !important;
        display: inline-block;
        text-align: center;
    }

    .header.stickyheader .row {
        width: 95% !important;
    }


    .feature-card__body {
        padding: 45px;
        min-height: 255px;
    }

    .feature-card__image.object-cover {
        padding: 45px;
        min-height: 425px;
    }

    .small-container {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .svg-tools-wrapper {
        right: -2.5vw;
        position: relative;
    }

    ul.meet-bullets li {
        gap: 15px;
    }

    span.svg-icon svg {
        width: 33px;
        height: 33px;
    }

    .mega-menu__links {
        grid-template-columns: 1fr 2fr;
        gap: 20px 25px;
    }

    .mega-menu__links--single {
        grid-template-columns: 1fr;
    }


    .single-post-block ul li {
        text-indent: -19px;
    }

    .single-post-block ul {
        margin-left: 19px;
    }

    .contact-card__label.sectiontitle-42 {
        font-size: 28px;
    }

    .mission-card .sectiontitle-72 {
        font-size: 56px;
    }

    .main-menu li a {
        height: 35px;
        line-height: 35px;
        padding: 0 8px;
        border-radius: 8px;
    }



}



@media (max-width:1480px) {}

@media (max-width:1366px) {}

@media (max-width:1280px) {


    .features-slider .slick-dots {
        margin-top: 32px;
        gap: 6px;
    }


    .features-slider .slick-dots li button {
        width: 25px;
        height: 11px;
        border-radius: 10px;
    }

    .features-slider .slick-dots li.slick-active button {
        width: 52px;
    }

    .logo img {
        width: 100px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper .multi-check__toggle {
        padding: 0 15px;
        border-radius: 10px !important;
        border: 1px solid #A8A4A9;
        background: #FFF;
        height: 65px;
        line-height: 65px;
    }

    .input-wrapper textarea {
        padding: 15px;
        border-radius: 10px !important;
        height: 130px;
    }

}

@media only screen and (max-width: 1280px) and (min-width: 768px) {

    ul.connect-bullets li {
        font-size: 12px;
    }



}

@media (max-width:1024px) {
    .show-1024 {
        display: block !important
    }

    .hide-1024 {
        display: none !important
    }
    
.input-wrapper .multi-check__toggle{
    padding-left:5px!important;
}    
.fade-seq-1, .fade-seq-2{
    opacity:1!important;
}

    .header.stickyheader,
    body:not(.home) .header {
        background: #fff;
        width: 100% !important;
        padding: 15px 0 !important;
        border-bottom-left-radius: 13px;
        border-bottom-right-radius: 13px;
        box-shadow: 6px 6px 40px 10px rgba(0, 0, 0, 0.05);
    }

    .header.stickyheader .row,
    body:not(.home) .header .row {
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none;
        width: auto !important;
        margin: 0 -15px !important;
        background: none;
    }

    .workspace-section .running-text br {
        display: none;
    }

.slick-dots li button:before {
    font-size: 30px!important;
}
    .curved-cta a {
        height: 50px;
        line-height: 50px;
        border-radius: 50px !important;
        padding: 0 15px;
        width: 100%;
    }



    .small-container,
    .big-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header .curved-cta a {
        height: 35px;
        line-height: 35px;
        padding: 0 15px;
        font-size: 12px;
        width: auto;
    }


    .hero-card.invoicesexpenses .hero-card__svg {
        margin: 0 -20px;
    }

    .hero-card.timelines .hero-card__svg {
        width: calc(100% + 80px);
        margin-top: -65px;
        margin-left: -42px;
    }

    .herocards-carousel .slick-slide[data-slick-index="6"] .hero-card .hero-card__svg {
        width: 50px;
    }

    .herocards-carousel .slick-slide[data-slick-index="6"] .hero-card__label.sectiontitle-48 {
        line-height: 1.15
    }

    .hero-card,
    .solutionsoverview-page .hero-card {
        height: inherit;
        border-radius: 42px;
        padding: 35px 20px;
    }

    .card-carousel .slick-slide {
        padding-right: 10px;
    }

    .card-carousel .slick-list {
        padding-right: 120px;
    }

    .main-content {
        padding-top: 120px;
    }

    .hero-blob {
        top: -25px;
    }

    .hero-blob svg {
        width: 280px;
    }

    .d-flex.menu-ctas .d-flex.cta-flex {
        flex-direction: row-reverse;
    }

    .header {
        padding: 15px 0 !important;
    }


    .hero-card__label.sectiontitle-48 {
        margin: 25px 0 0;
        font-size: 24px;
    }

    .hero-card[style="background-color: #d8ff00 "] h3.hero-card__label.sectiontitle-48 {
        color: #000;
    }




    .logo-bar-label {
        white-space: normal;
        display: block;
        line-height: 1.5;
    }

    .logo-bar-label-row {
        display: block;
        margin-bottom: 20px;
    }


    .hero-card__image {
        width: calc(90% + 35px);
        height: calc(95% + 40px);
        left: -35px;
        top: -45px;
    }


    .eyebrow-label {
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        border-radius: 40px;
    }


    .meet-gracie-section .row {
        padding: 25px 15px;
        border-radius: 32px;
        margin: 0;
    }

    ul.meet-bullets li {
        gap: 15px;
        padding-bottom: 12px;
    }

    span.svg-icon {
        width: 40px;
    }

    span.bullet__text {
        width: 80%;
    }

    .meet-mascot svg {
        width: 95%;
    }

    .meet-mascot {
        position: relative;
        bottom: -25px;
    }

    .meet-card.overlay:before {
        border-radius: 32px;
    }

    .meet-card {
        height: 50vw;
    }

    .packages_carousel {
        width: 35vw;
        height: 22vw;
    }

    .meet-card__package-slide {
        height: 23vw;
    }

    .meet-card__packages .slick-slide {
        padding: 0px 35px 0px 65px;
    }

    .package-label {
        display: block;
        margin-bottom: 10px;
    }

    .faq-item {
        padding: 20px 0;
    }

    .footer-logo img {
        width: 90px;
    }

    .time-spent {

        top: 53vw;
        left: 0vw;
    }

    .main-content:not(.home-page) {
        padding-top: 60px;
    }

    .scroll-image {
        overflow: clip;
        height: inherit;
    }

    ul.connect-bullets {
        gap: 10px;
    }

    footer .col-md-7 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-section .curved-cta a {
        width: auto;
        padding: 0 50px;
    }

    .section-video .big-container {
        padding: 0;
    }

    .video-fullscreen,
    section.agency-work {
        height: inherit;
        border-radius: 0;
    }

    .product-hero-card {
        border-radius: 0;
        margin: 23vw -15px 0;
    }

    .product-hero-image {
        width: 100%;
        top: -22vw;
        border-radius: 27px;
        border: 10px solid rgba(255, 255, 255, 0.24);
        height: 52vw;
    }

    .product-hero-image img {
        border-radius: 12px;
    }

    .product-hero-card .sectiontitle-64 {
        margin-top: -12vw;
    }

    .product-hero-statement {
        width: 100%;
    }

    .product-hero-card {
        padding: 0 15px 35px 15px;
    }


    .main-content.solutionsoverview-page .po-hero-screenshot {
        padding: 0 15px;
    }

    .solutionsoverview-page .herocards-carousel .slick-track .slick-slide .hero-card__label.sectiontitle-48 {
        padding-right: 35px;
    }

    .herocards-carousel .slick-track .slick-slide .solution-blobs {
        width: 67%;
    }


    .pricing-page .bg-wash--fade5 {
        display: none;
    }

    .pricing-tiers-section .hero-blob {
        top: 62px;
    }


    .pricing-page .scroll-image.overlay:before {
        height: 200px;
        background: linear-gradient(to bottom, rgba(255, 254, 254, 0) 0%, rgba(255, 254, 254, 0.9) 62%, rgba(247, 242, 233, 1) 100%);
    }

    .pricing-tier-card ul li {
        padding: 3px 0;
        gap: 7px;
    }

    .stories-avatar-slide {
        width: 25vw !important;
    }

    .single-post-hero-section {
        aspect-ratio: 16 / 12;
        height: inherit;
    }

    .search-container {
        margin-top: -90px;
        padding: 120px 0 50px;
    }

    .platform-feature-card {
        border-radius: 32px;
        padding: 25px;
        display: flex !important;
        aspect-ratio: 17 / 20;
    }

    .platform-cards-slick .slick-list {
        padding-right: 70px;
    }

    .platform-cards-slick .slick-slide {
        padding-right: 15px;
    }

    .contact-form-wrap {
        width: 100%;
    }

    .contact-cards-section .big-container {
        padding-right: 0;

    }

    .contact-cards-slider .slick-slide {
        padding-right: 0;
        padding-left: 15px;
    }

    .contact-cards-slider .slick-list {
        padding-right: 120px;
    }

    .contact-cards-row .contact-card {
        border-radius: 50px;
        padding: 50px 25px;
        aspect-ratio: 29 / 36;
    }


    .curved-cta.bordered-cta input {
        height: 72px;
        line-height: 72px;
        padding: 0 15px;
        border-radius: 72px !important;
        min-width: inherit;
        border: 1px solid transparent;
        transition: all ease-in-out 0.3s;
        font-size: 20px;
        width: 100%;
    }


    .wpcf7-spinner {
        right: 0;
        bottom: 40px;
    }


    .absolute-slider-container {

        width: 45vw;

    }

    .security-page .access-card.access-card-social {
        left: 10vw;
        top: -3vw;
    }

    .security-page .access-card.access-card-hours {
        bottom: -12vw;
    }

    .faq-featured-blob {
        padding: 55px 15px;
        border-radius: 40px;
    }

    .faq-featured-repeater ul li {
        border-radius: 8px;
        padding: 10px 15px;
        margin: 15px auto;
    }

    .faq-featured-pills {
        width: 100%;
        margin: 0vw auto 35px;
    }

    .faq-integrations-section.po-statement-section.pt-160,
    .faq-pricing-section.built-for-section.pt-160 {
        padding-top: 0;
    }


    .d-flex.socialmedia a {
        width: 30px;
        height: 30px;
    }

}



@media (max-width:992px) {}




@media (max-width:768px) {
    .show-768 {
        display: block !important
    }

    .hide-768,
    .quote-container .sectiontitle-80 br,
    .running-text br,
    .sectiontitle-48 br,
    .bg-wash--fade4,
    .bg-wash--fade3,
    .bg-wash--fade2,
    .bg-wash--fade1,
    .product-hero-card .sectiontitle-64 br {
        display: none !important
    }

    .pr-120,
    .pr-80,
    .pr-60,
    .pr-40 {
        padding-right: 0px !important;
    }

    .pl-120,
    .pl-80,
    .pl-60,
    .pl-40 {
        padding-left: 0px !important;
    }

    .home .bg-wash--fade1.is-ready,
    .home .bg-wash--fade1_1.is-ready {
        opacity: 0;
    }
    .input-wrapper .multi-check__toggle {
        padding-left: 8px !important;
    }
    .logo-bar-section.pb-160 {
        padding-bottom: 0;
    }

    .footer .title-font br {
        display: none;
    }

    .d-table.mx-auto.curved-cta:not(.box-shadow-cta):not(.header-cta) {
        width: 100%;
    }

    .curved-cta:not(.box-shadow-cta):not(.header-cta) a {
        height: 65px;
        line-height: 65px;
        width: 100%;
        text-align: center;
    }

    .blog-carousel-section .curved-cta {
        margin: 35px auto 0;
        border-radius: 50px !important;
        width: 100%;
        box-shadow: none;
        padding-right: 15px;

    }

    .blog-carousel-section .curved-cta a {
        width: 100%;
        text-align: center;

    }

    .platform-section.pt-160 {
        padding-top: 30px;
    }




    .agency-work .big-container.nopadding-right {
        padding-right: 15px !important;
        padding-top: 50px;
    }

    section.agency-work.position-relative.pb-160 {
        padding-bottom: 12px;
    }


    .feature-card__browser-bar {
        gap: 5px;
        padding: 20px 35px;
    }

    .feature-card {
        border-radius: 32px;
    }

    .feature-card__image.object-cover {
        padding: 25px 15px;
        min-height: inherit;
    }

    .feature-card__body {
        padding: 25px;
        min-height: inherit;
    }

    .author-dflex {
        gap: 10px;
        height: 98px;
        line-height: 98px;
        padding: 0 15px;
        width: 100%;
        justify-content: space-between;
    }

    .avatar {
        width: 70px;
        height: 70px;
    }

    .avatar img {
        padding: 15px;
    }

    .author-dflex .medium {
        width: 70%;
        display: block;
        line-height: 20px;
    }

    .quote-icon svg {
        width: 135px;
    }

    .built-for-section .big-container.nopadding-left {
        padding-left: 15px !important;
        margin-top: 130px;
    }

    .workspace-blob .slick-dots li button,
    .access-highlight-slider .slick-dots li button {
        width: 17px;
        height: 7px;
        border-radius: 5px;
    }

    .workspace-section.h-100 {
        aspect-ratio: 80 / 127;
        margin-top: 48px;
        overflow: visible;
        min-height: 635px
    }

    body:not(.home) .workspace-section {
        margin-top: 80px;
    }

    body:not(.home) .po-toolhopping-section {
        margin-top: 80px;
    }



    .solutionsoverview-page .po-pillars-section.workspace-section {
        margin-top: 40px;
    }


    .workspace-blob-inner {
        width: 103vw;
        background: url("../images/rwd-blob-vector2.svg");
        padding: 0 70px;
        background-size: 100%;
        height: 100vw;
        background-repeat: no-repeat;
    }



    .workspace-blob {
        position: absolute;
        bottom: -18vw;
        left: -20px;
    }


    .workspace-blob .slick-dots li.slick-active button {
        width: 35px;
        opacity: 1;
    }

    .workspace-blob .slick-dots {
        bottom: 140px;
        left: 75px;
    }


    .built-for-section .big-container.nopadding-left {
        margin-top: 90px;
    }


    .packages_carousel {
        width: 450px;
        height: 260px;
        left: -35px;
        bottom: 35px;
    }

    .meet-card__package-slide {
        height: 300px;
    }


    .meet-card__packages .slick-slide {
        padding: 0px 35px 0px 65px;
    }

    .meet-card {
        padding: 25px;
        border-radius: 32px;
        aspect-ratio: 370/500;
        height: inherit;
        margin-bottom: 25px;
    }

    .blog-carousel .slick-list {
        padding: 0 12vw 0 0;
    }

    .blog-carousel-section {
        padding-left: 15px;
        padding-top: 0;
    }

    .blog-card__image {
        margin: 0 -25px;
        border-bottom-left-radius: 42px;
        border-bottom-right-radius: 42px;
    }

    .blog-slide {
        border-radius: 42px;
        padding: 25px 25px 0;
    }

    .blog-card__excerpt {
        line-height: 1.5;
    }

    .blog-carousel .slick-slide {
        padding: 0 10px 0 0px;
    }

    .tools-section.pt-160.pb-160 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .object-cover.videobg {
        aspect-ratio: 370 / 230;
    }

    .section-video.pb-120 {
        margin-top: 0vw;
        padding-bottom: 0px;
    }

    .stats-section .row {
        flex-direction: column-reverse;
    }

    .stats-section .row .col-md-6.col-sm-12 {
        margin-top: 20px;
    }

    .svg-tools-wrapper {
        position: relative;
        width: 100%;
        margin: 160px auto 0;
    }

    .stats-section .svg-tools-wrapper {
        margin: 40px auto 80px;
    }

    .tools-svg-wrap {
        width: 100%;
    }


    .bg-wash--radial {
        height: 50%;
        top: -50%;
        background: radial-gradient(943.11% 111.47% at 50% 50%, rgba(246, 239, 229, 0.80) 0%, rgba(94, 94, 255, 0.80) 100%);
        filter: blur(144.140625px);
    }

    .logo-bar {
        width: 150px;
        height: 150px;
        display: flex;
    }

    .features-section .big-container.nopadding-right,
    .split-feature-section .big-container.nopadding-right {
        padding-right: 15px !important;
    }

    .features-slider .slick-current.slick-active .feature-card {
        box-shadow: none;
    }

    .bg-wash.bg-wash--radial {
        opacity: 1;
    }



    .curved-cta a {
        width: 100%;
        text-align: center;
    }

    .meet-gracie-section .row {
        padding: 25px 0px;
    }



    .meet-gracie-section {
        margin: 15vw 0 0;
    }

    .svg-tools-wrapper {
        margin: 60px auto 0;
    }

    .svg-tools-wrapper {
        right: 0;
    }

    .blog-card__title {
        min-height: 130px;
    }

    ul.connect-bullets li {
        border-radius: 16px;
        padding: 16px;
        width: 100%;
    }

    .po-connect-section.pt-160 {
        padding: 0px 15px !important;
    }

    .po-connect-section .row {
        border-radius: 32px;
    }

    .po-statement-section .text-center {
        text-align: left !important;
    }

    .po-toolhopping-section.built-for-section .row {
        gap: 55px;
        flex-direction: column-reverse;
    }

    .built-masked-image {
        width: calc(100% + 30px);
        margin: 0 -15px;
    }

    .po-cta-banner.pt-160.pb-160 {
        padding-top: 20px;
        padding-bottom: 80px;
    }

    .scroll-image.overlay:before {
        height: 250px;
    }

    .content-padding {
        padding: 45px 0;
    }

    .running-text.font-24 {
        font-size: 16px;
    }

    .features-slider .slick-dots {
        text-align: center;
        padding-left: 0;
        justify-content: center;
    }

    .bg-wash--radial {
        background: radial-gradient(943.11% 111.47% at 50% 50%, rgba(246, 239, 229, 0.80) 0%, rgba(94, 94, 255, 0.80) 100%);
        filter: blur(144.140625px);
    }

    .features-slider .slick-list {
        padding-right: 0;
    }

    .feature-block-row .col-md-6 {
        padding: 0;

    }

    .content-container {
        padding: 45px 15px;
        border-radius: 40px;
        min-height: 460px;
    }



    .feature-block-image,
    .image__container {
        border-radius: 40px;
        aspect-ratio: inherit;
        height: 460px;
    }

    .feature-block-media {
        border-radius: 40px;
    }

    .feature-block-svg {
        padding: 0 40px;
    }

    .fullwidth-feature-section .row {
        flex-direction: column-reverse;
        gap: 55px;
    }

    .time-blobs {
        top: inherit;
        bottom: -110px;
    }

    .single-product-page .agency-masked-image {
        -webkit-mask-image: url(../images/rwd-agency-mask.png);
        mask-image: url(../images/rwd-agency-mask.png);
        position: static;
        height: 100vw;
        margin-top: 35px;
    }

    .single-product-page .masked-rightcontainer {
        height: auto;
    }

    .team-members {
        right: 15vw;
        top: 5vw;
    }

    .task-progress {
        bottom: 0vw;
        right: 25px;
    }

    .curved-content .sectiontitle-56 br {
        display: none;
    }

    .curved-content .sectiontitle-56 {
        font-size: 40px;
    }

    .curved-content {
        padding: 55px 15px 30px 15px;
        border-radius: 32px;
        box-shadow: none;
    }

    .product-hero-section.pb-120 {
        padding-bottom: 0;
    }

    .running-text.font-16 {
        line-height: 1.2;
    }

    .po-statement-section {
        margin-top: 80px;
    }

    .pricing-tiers-section .hero-blob svg {
        width: 220px;
    }

    .pricing-tiers-section.pt-160 {
        padding-top: 130px;
    }

    .pricing-page .bg-wash--fade5 {
        top: -50vw;
    }

    .row.pricing-tiers-grid .col-md-3 {
        padding: 7px;
    }

    .row.pricing-tiers-grid {
        margin: 0 -7px;
    }

    .resources-page .blog-slide {
        margin-bottom: 20px;
    }

    .resources-stat-svg-1 {
        width: 65px;
        top: 25px;
    }

    .resources-page .blog-card__title.sectiontitle-42.pb-40 {
        padding-bottom: 10px;
        min-height: inherit;
    }

    .blog-slide .eyebrow-label {
        height: 30px;
        line-height: 30px;
        padding: 0 15px;
        border-radius: 30px;
        font-size: 12px;
    }


    .stories-avatar-slide .stories-avatar {
        padding: 5px;
        border: 5px solid #fff !important;
    }

    .customer-stories-section.pb-160.pt-160 {
        padding-bottom: 0;
        padding-top: 0;
    }

    .resources-page .meet-card {
        margin-bottom: 0;
    }

    .category-archive-hero-section.pb-120 {
        padding-bottom: 40px;
    }

    .help-centre-tile .curved-cta {
        width: 100%;
    }

    .help-centre-tile {
        text-align: center;
        padding: 60px 25px;
        border-radius: 40px;
    }

    .help-centre-search-result {
        padding: 10px 5px;
    }

    .help-centre-search-input {
        height: 65px;
        padding: 0 15px 0 50px;
        border-radius: 65px !important;
    }

    .help-centre-search-form:before {
        left: 20px;
        width: 16px;
        height: 16px;
    }

    .help-centre-tile__desc {
        width: 100%;
    }


    .help-centre-search-panel-inner,
    .help-centre-search-panel {
        max-height: 400px;
    }

    .help-centre-search-panel {
        border-radius: 0 0 32px 32px;
        padding: 45px 15px;
    }


    .single-post-help-search-section.pt-120.pb-120 {
        padding-top: 120px;
        padding-bottom: 40px;
    }


    .tier-card__cta.curved-cta {
        position: static;
        padding: 0;
    }

    .pricing-tiers-grid .col-md-3 .pricing-tier-card {
        border-radius: 40px;
    }

    .about-page .masked-rightcontainer {
        height: inherit;
    }

    .mission-cards-section .col-md-6 .mission-card {
        padding: 15px 25px;
    }

    .mission-cards-section .col-md-6 {
        border-radius: 40px;
        aspect-ratio: 1 / 1;
    }


    .about-page .agency-masked-image {
        -webkit-mask-image: url(../images/rwd-agency-mask.png);
        mask-image: url(../images/rwd-agency-mask.png);
        position: static;
        height: 100%;
    }

    .why-exists-section .row {
        flex-direction: column-reverse;
    }

    .card-social {
        top: 25vw;
        left: 0;
        width: 220px;
    }

    .card-profile {
        bottom: 30px;
        left: 0;
        width: 140px;
    }

    .card-hours {
        bottom: 50px;
        z-index: 1;
        right: 25px;
        width: 100px;
    }

    .why-exists-section .big-container.nopadding-right {
        padding-right: 15px !important;
    }

    .about_cta__container {
        padding-bottom: 80px;
    }

    .access-blob-svg.position-absolute {
        width: calc(100% + 40vw);
        height: 87vw;
        right: 0;
        top: 0;
        position: relative !important;
        left: -20vw;
    }

    .access-control-section.pt-160.pb-160 {
        height: inherit;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .absolute-slider-container {
        width: 100%;
        padding: 0 15px;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: max-content;
    }

    .access-highlight-wrap.h-100 {
        padding: 0;
        height: 89vw !important;
    }

    .security-page .inner-hero-blob {
        top: -40px;
        left: 30px;
        width: 210px;
    }

    .faq-featured-section.pb-160 {
        padding-bottom: 0;
    }

    .faq-pricing-section.built-for-section.pb-160 {
        padding-bottom: 20px;
    }

    .productoverview-page .po-statement-section.pt-160 {
        padding-top: 0px;
    }


}


@media (max-width:600px) {

    .show-600 {
        display: block !important
    }

    .hide-600,
    .sectiontitle-96 br,
    .sectiontitle-72 br {
        display: none !important
    }
    .input-wrapper input, .input-wrapper select, .input-wrapper .multi-check__toggle {
        padding: 0 10px!important;
    }
.hero-card__svg {
    height: 100%;
}
    .hero-card__image {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
.slick-slide img {
    height: 265px;
    object-fit: contain;
}
.free_early{
    width:305px;
    margin:auto;
}
.input-wrapper input, .input-wrapper select, .input-wrapper .multi-check__toggle{
    font-size:14px!important;
}
input::-webkit-input-placeholder {
    font-size: 14px;
}

input:-moz-placeholder {
    font-size: 14px;
}

input::-moz-placeholder {
    font-size: 14px;
}

input:-ms-input-placeholder {
    font-size: 14px;
}

textarea::-webkit-input-placeholder {
    font-size: 14px;
}

textarea:-moz-placeholder {
    font-size: 14px;
}

textarea::-moz-placeholder {
    font-size: 14px;
}

textarea:-ms-input-placeholder {
    font-size: 14px;
}
    .sectiontitle-96 {
        font-size: 40px;
    }

    .hero-blob {
        top: 15px;
    }

    .hero-blob svg {
        width: 285px;
    }

    .home .main-content {
        padding-top: 80px;
    }

    .col-md-10.col-sm-8.col-8.main-menu {
        padding-left: 0;
    }

    .card-carousel .slick-list {
        padding-right: 45px;
    }

    .logo-bar img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
    }

    .logo-bar {
        width: 130px;
        height: 90px;
    }

    .workspace-blob {
        bottom: -125px;
        left: -10px;
    }

    .workspace-blob-inner {
        padding: 0 40px 0 55px;
    }

    .workspace-blob .slick-dots {
        bottom: 70px;
        left: 55px;
    }

    .built-for-section .big-container.nopadding-left {
        margin-top: 60px;
    }

    .home .built-for-section .big-container.nopadding-left {
        margin-top: 110px;
    }

    .packages_carousel {
        width: 330px;
        height: 195px;
    }

    .meet-card__package-slide {
        height: 215px;
    }

    .meet-card__packages .slick-slide {
        padding: 0px 35px 0px 55px;
    }




    /*	.workspace-slide .sectiontitle-48,.po-pillar-slide .sectiontitle-48 {
    font-size: 24px;
}*/
    .faq-item {
        padding: 16px 0;
    }

    .productoverview-page .bg-wash--fade5 {
        top: -30vw;
    }

    .scroll-image.overlay:before {
        height: 140px;
    }

    .hero-card,
    .solutionsoverview-page .hero-card {
        aspect-ratio: auto;
        height: 370px;
    }

    .hero-section.pb-80 {
        padding-bottom: 20px;
    }

    .scroll-image {
        margin-bottom: 30px;
    }

    .po-statement-graphic {
        width: 100%;
    }

    .bg-wash--fade5 {
        top: -15vw;
    }

    .pricing-page .bg-wash--fade5 {
        top: -200vw;
    }

    .pricing-tiers-section.pt-160 {
        padding-top: 60px;
    }

    .pricing-tiers-section .hero-blob {
        top: 10px;
    }


    .category-archive-hero-section .sectiontitle-96 {
        font-size: 32px;
    }

    .single-post-hero-section {
        aspect-ratio: 16 / 23;
    }

    .sectiontitle-32 {
        font-size: 21px;
        line-height: 1.2;
    }

    .help-category-group .sectiontitle-32 {
        padding-bottom: 10px !important;
    }

    a.help-category-pill.bold {
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .faq-question span.medium.font-18 {
        padding-right: 35px;
    }

    .security-page .access-card.access-card-social {
        left: 0;
        top: 10px;
        width: 120px;
    }

    .security-page .access-card.access-card-hours {
        bottom: 0;
        width: 110px;
    }


.input-wrapper .multi-check__toggle{
        padding-left: 12px!important;
        font-size: 14px !important;
        padding-right: 25px !important;  
}


}



@media (max-width:480px) {}

@media (max-width:375px) {}

@media (max-width:320px) {
    .sectiontitle-96 {
        font-size: 32px;
    }

    .header .curved-cta a {
        padding: 0 10px;
        font-size: 10px;
        border-radius: 20px !important;
        height: 30px;
        line-height: 30px;
    }

    .font-20,
    .font-24 {
        font-size: 16px;
    }

    .sectiontitle-72 br {
        display: none;
    }

    .category-archive-hero-section .sectiontitle-96 {
        font-size: 30px;
    }



}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .waitlist-modal {
        padding: 20px 15px;
    }

    .waitlist-modal__dialog {
        max-height: 88vh;
        padding: 40px 24px 40px;
    }

    .waitlist-modal__badge {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .waitlist-modal {
        padding: 12px;
    }

    .waitlist-modal__dialog {
        max-height: calc(100dvh - 24px);
        border-radius: 20px;
        padding: 56px 16px 32px;
    }

    .waitlist-modal__close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .waitlist-modal__logo img {
        width: 120px;
    }

    .waitlist-modal__form .wpcf7-form {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .waitlist-modal__form .wpcf7-form>.input-wrapper {
        grid-column: 1 / -1;
    }

    .waitlist-modal__form .wpcf7-submit {
        width: 100%;
        height: 64px;
        line-height: 64px;
        font-size: 18px;
    }
}

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

    .waitlist-modal,
    .waitlist-modal__dialog {
        transition-duration: 0.01ms;
    }

    .waitlist-modal__dialog {
        transform: none;
    }
}

@media (max-width: 768px) {
    .multi-check__panel {
        border-radius: 10px;
        max-height: 220px;
    }

    .waitlist-form .input-wrapper {
        margin-bottom: 12px;
    }
}

/* ─── Stats Slides — vertical pinned sequence ─────────────────────
   Desktop counterpart of .hero-cards-section, rotated to the Y axis.
   The is-slides class is added by scripts.js only above 1024px, so
   tablet/mobile keep the normal stacked flow.
------------------------------------------------------------------ */

.stats-slides {
    position: relative;
}

@media (min-width: 1025px) {

    .stats-slides.is-slides {
        height: 100vh;
        overflow: hidden;
    }

    .stats-slides.is-slides .stats-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        will-change: transform, opacity;
    }

    .stats-slides.is-slides .stats-slide>.inner_stats {
        width: 100%;
    }

}


/* ── Stats Slides — mobile carousel (<=1024, same breakpoint as the
   hero cards slider). One .inner_stats per slide, full width so the
   SVG, headline and copy are never cropped. ───────────────────────── */
@media (max-width: 1024px) {

    .stats-slides.is-carousel .slick-slide {
        height: auto;
    }

    .stats-slides.is-carousel .slick-slide>div,
    .stats-slides.is-carousel .stats-slide {
        height: 100%;
    }

    /* Bootstrap row gutters would push the slide past the track width */
    .stats-slides.is-carousel .inner_stats {
        margin-left: 0;
        margin-right: 0;
    }

}