html,
        body,
        div,
        span,
        applet,
        object,
        iframe,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        blockquote,
        pre,
        a,
        abbr,
        acronym,
        address,
        big,
        cite,
        code,
        del,
        dfn,
        em,
        img,
        ins,
        kbd,
        q,
        s,
        samp,
        small,
        strike,
        strong,
        sub,
        sup,
        tt,
        var,
        b,
        u,
        i,
        center,
        dl,
        dt,
        dd,
        ol,
        ul,
        li,
        fieldset,
        form,
        label,
        legend,
        table,
        caption,
        tbody,
        tfoot,
        thead,
        tr,
        th,
        td,
        article,
        aside,
        canvas,
        details,
        embed,
        figure,
        figcaption,
        footer,
        header,
        hgroup,
        menu,
        nav,
        output,
        ruby,
        section,
        summary,
        time,
        mark,
        audio,
        video {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
        }

        article,
        aside,
        details,
        figcaption,
        figure,
        footer,
        header,
        hgroup,
        menu,
        nav,
        section {
            display: block;
        }

        body {
            line-height: 1;
        }

        ol,
        ul {
            list-style: none;
        }

        blockquote,
        q {
            quotes: none;
        }

        blockquote::before,
        blockquote::after,
        q::before,
        q::after {
            content: '';
            content: none;
        }

        table {
            border-collapse: collapse;
            border-spacing: 0;
        }

        body {
            -webkit-text-size-adjust: none
        }

        /* â”€â”€ FOOTER LINK â”€â”€ */
        .creo-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .creo-link:hover {
            color: #475AFF;
            text-shadow: 0 0 15px rgba(71, 90, 255, 0.8), 0 0 30px rgba(71, 90, 255, 0.5);
        }

        mark {
            background-color: transparent;
            color: inherit
        }

        input::-moz-focus-inner {
            border: 0;
            padding: 0
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            -moz-appearance: none;
            -webkit-appearance: none;
            -ms-appearance: none;
            appearance: none
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            line-height: 1.0;
            min-height: var(--viewport-height);
            min-width: 320px;
            overflow-x: hidden;
            word-wrap: break-word;
            background-color: #0F0F0F;
        }

        body::before {
            content: '';
            display: block;
            background-attachment: scroll;
            height: var(--background-height);
            left: 0;
            pointer-events: none;
            position: absolute;
            top: 0;
            transform: scale(1);
            width: 100%;
            z-index: 0;
            background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220.03125%200%200%200%200%200%200.03125%200%200%200%200%200%200.03125%200%200%200%200%200%200.44921875%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(45deg, rgba(18, 18, 18, 0.961) 11%, rgba(36, 36, 36, 0.651) 100%);
            background-size: 512px, cover;
            background-position: center, 0% 0%;
            background-repeat: repeat, repeat;
        }

        body::after {
            background-color: #0F0F0F;
            content: '';
            display: block;
            pointer-events: none;
            position: absolute;
            transform: scale(1);
            z-index: 1;
            height: 100%;
            left: 0;
            opacity: 0;
            top: 0;
            transition: opacity 1s ease-in-out 0s, visibility 1s 0s;
            visibility: hidden;
            width: 100%;
        }

        body.is-loading::after {
            opacity: 1;
            visibility: visible;
        }

        body.is-loading {
            pointer-events: none;
        }

        :root {
            --background-height: 100vh;
            --viewport-height: 100vh;
            --grad: linear-gradient(45deg, #FFD4F6 0%, #D4D8FF 47%);
            --padding-horizontal: 5rem;
            --padding-vertical: 9rem;
        }

        html {
            font-size: 15pt;
            scroll-behavior: smooth;
        }

        u {
            text-decoration: underline;
        }

        strong {
            color: inherit;
            font-weight: bolder;
        }

        em {
            font-style: italic;
        }

        sub {
            font-size: smaller;
            vertical-align: sub;
        }

        sup {
            font-size: smaller;
            vertical-align: super;
        }

        a {
            color: inherit;
            text-decoration: underline;
            transition: color 0.25s ease;
        }

        /* â”€â”€ LAYOUT â”€â”€ */
        .site-wrapper {
            -webkit-overflow-scrolling: touch;
            align-items: center;
            display: flex;
            flex-direction: column;
            min-height: var(--viewport-height);
            overflow: hidden;
            position: relative;
            z-index: 2;
        }

        .site-main {
            align-items: center;
            display: flex;
            flex-direction: column;
            flex-grow: 0;
            justify-content: flex-start;
            max-width: 100%;
            position: relative;
            width: 100%;
            z-index: 1;
            transition: opacity 1s ease-in-out 0s;
        }

        body.is-loading .site-main {
            opacity: 0;
        }

        /* â”€â”€ SECTIONS â”€â”€ */
        .content-section {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20path%20%7B%20fill%3A%20none%3B%20stroke%3A%20rgba(255,255,255,0.039)%3B%20stroke-width%3A%201.01px%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20vector-effect%3D%22non-scaling-stroke%22%20d%3D%22M416%2C192L256%2C320L96%2C192L256%2C64L416%2C192z%20M96-64L256%2C64L416-64%20M416%2C576V448L256%2C576%20M256%2C576L96%2C448v128%20M512%2C191L512%2C191L352%2C320l160%2C128.3L672%2C320L352%2C64l320-256%20M512%2C191L672%2C64L352-192%20M160-192L-160%2C64l320%2C256L0%2C448.3%20M0%2C448.3%20L-160%2C320L160%2C64l-320-256%20M416%2C448L256%2C320L96%2C448%20M96-64v76.8%20M416-64v76.8%20M352%2C64v76.8%20M160%2C64v76.8%20M96%2C192v76.8%20M416%2C192%20l-0.5%2C76.8%20M352%2C320v76.8%20M160%2C320v76.8%20M160%2C115.2l15.8%2C13%20M352%2C115.2l-16.2%2C13%20M352%2C371.2l-16.2%2C13%20M160%2C371.2l16.2%2C13%20M671.5%2C575.4l-160-128l-160%2C128%20M159.5%2C575.4l-160-128l-160%2C128%22%20%2F%3E%3C%2Fsvg%3E'), radial-gradient(80% 129% at 50% 11%, #2E2E2E 25%, #191919 100%);
            background-size: 768px, cover;
            background-position: center, 0% 0%;
            background-repeat: repeat, repeat;
            border-color: #292929;
            border-style: solid;
            border-width: 1px;
        }

        .content-section.content-section--hero {
            min-height: 26rem;
            background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20path%20%7B%20fill%3A%20none%3B%20stroke%3A%20rgba(255,255,255,0.039)%3B%20stroke-width%3A%201.01px%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20vector-effect%3D%22non-scaling-stroke%22%20d%3D%22M416%2C192L256%2C320L96%2C192L256%2C64L416%2C192z%20M96-64L256%2C64L416-64%20M416%2C576V448L256%2C576%20M256%2C576L96%2C448v128%20M512%2C191L512%2C191L352%2C320l160%2C128.3L672%2C320L352%2C64l320-256%20M512%2C191L672%2C64L352-192%20M160-192L-160%2C64l320%2C256L0%2C448.3%20M0%2C448.3%20L-160%2C320L160%2C64l-320-256%20M416%2C448L256%2C320L96%2C448%20M96-64v76.8%20M416-64v76.8%20M352%2C64v76.8%20M160%2C64v76.8%20M96%2C192v76.8%20M416%2C192%20l-0.5%2C76.8%20M352%2C320v76.8%20M160%2C320v76.8%20M160%2C115.2l15.8%2C13%20M352%2C115.2l-16.2%2C13%20M352%2C371.2l-16.2%2C13%20M160%2C371.2l16.2%2C13%20M671.5%2C575.4l-160-128l-160%2C128%20M159.5%2C575.4l-160-128l-160%2C128%22%20%2F%3E%3C%2Fsvg%3E'), radial-gradient(71% 106% at 75% 26%, #2E2E2E 25%, #191919 100%);
        }

        .section {
            position: relative;
        }

        .section > .section__wrap {
            vertical-align: top;
            position: relative;
            max-width: 100%;
            border-radius: inherit;
        }

        .section > .section__wrap > .section__inner {
            vertical-align: top;
            position: relative;
            max-width: 100%;
            border-radius: inherit;
            text-align: var(--alignment);
        }

        .section.section--full:first-child > .section__wrap {
            border-top-left-radius: inherit;
            border-top-right-radius: inherit;
        }

        .section.section--full:last-child > .section__wrap {
            border-bottom-left-radius: inherit;
            border-bottom-right-radius: inherit;
        }

        .section.section--full:first-child > .section__wrap > .section__inner {
            border-top-left-radius: inherit;
            border-top-right-radius: inherit;
        }

        .section.section--full:last-child > .section__wrap > .section__inner {
            border-bottom-left-radius: inherit;
            border-bottom-right-radius: inherit;
        }

        .section.section--standard {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20path%20%7B%20fill%3A%20none%3B%20stroke%3A%20rgba(255,255,255,0.039)%3B%20stroke-width%3A%201.01px%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20vector-effect%3D%22non-scaling-stroke%22%20d%3D%22M416%2C192L256%2C320L96%2C192L256%2C64L416%2C192z%20M96-64L256%2C64L416-64%20M416%2C576V448L256%2C576%20M256%2C576L96%2C448v128%20M512%2C191L512%2C191L352%2C320l160%2C128.3L672%2C320L352%2C64l320-256%20M512%2C191L672%2C64L352-192%20M160-192L-160%2C64l320%2C256L0%2C448.3%20M0%2C448.3%20L-160%2C320L160%2C64l-320-256%20M416%2C448L256%2C320L96%2C448%20M96-64v76.8%20M416-64v76.8%20M352%2C64v76.8%20M160%2C64v76.8%20M96%2C192v76.8%20M416%2C192%20l-0.5%2C76.8%20M352%2C320v76.8%20M160%2C320v76.8%20M160%2C115.2l15.8%2C13%20M352%2C115.2l-16.2%2C13%20M352%2C371.2l-16.2%2C13%20M160%2C371.2l16.2%2C13%20M671.5%2C575.4l-160-128l-160%2C128%20M159.5%2C575.4l-160-128l-160%2C128%22%20%2F%3E%3C%2Fsvg%3E'), radial-gradient(80% 129% at 50% 11%, #2E2E2E 25%, #191919 100%);
            background-size: 768px, cover;
            background-position: center, 0% 0%;
            background-repeat: repeat, repeat;
            border-color: #292929;
            border-style: solid;
            border-width: 1px;
        }

        .section.section--standard:not(:first-child) {
            margin-top: 9rem !important;
        }

        .section.section--standard:not(:last-child) {
            margin-bottom: 9rem !important;
        }

        .section.section--standard > .section__wrap > .section__inner {
            --gutters: calc(var(--padding-horizontal) * 2);
            --spacing: 2.5rem;
            padding: var(--padding-vertical) var(--padding-horizontal);
        }

        .section.section--standard > .section__wrap {
            max-width: 100%;
            width: 100%;
        }

        .section.section--standard.section--stack > .section__wrap > .section__inner > * {
            margin-bottom: var(--spacing);
            margin-top: var(--spacing);
        }

        .section.section--standard.section--stack > .section__wrap > .section__inner > *:first-child {
            margin-top: 0 !important;
        }

        .section.section--standard.section--stack > .section__wrap > .section__inner > *:last-child {
            margin-bottom: 0 !important;
        }

        .section.section--standard.section--full.section--screen {
            border-radius: 0 !important;
            max-width: 100%;
            position: relative;
            width: 100%;
            left: auto;
            margin-left: auto;
            right: auto;
        }

        .section-inner {
            max-width: 68rem;
            width: 100%;
            padding: 6rem 5rem;
        }

        .section-inner>*+* {
            margin-top: 1.75rem;
        }

        /* â”€â”€ TYPOGRAPHY â”€â”€ */
        .grad-text {
            background-image: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-title {
            font-family: Inter;
            font-size: 4.25em;
            font-weight: 300;
            line-height: 1.125;
            letter-spacing: -0.125rem;
            -webkit-text-stroke: 0.01em rgba(255, 240, 252, 0.702);
            width: 100%;
            text-align: center;
        }

        .page-desc {
            font-family: Inter;
            font-size: 1.375em;
            font-weight: 300;
            line-height: 2;
            color: #B8BAD1;
            text-align: center;
        }

        .back-link {
            font-family: Inter;
            font-size: 0.9em;
            font-weight: 300;
            color: rgba(184, 186, 209, 0.55);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.25s ease;
            margin-top: 0.35rem;
            margin-bottom: 0.35rem;
        }

        .back-link:hover {
            color: #D4D8FF;
            text-decoration: none;
        }

        .back-link::before {
            content: '\2190 ';
        }

        /* â”€â”€ FORM CARD â”€â”€ */
        .form-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 1rem;
            padding: 3rem;
            text-align: left;
            width: 100%;
        }

        .required-note {
            font-family: Inter;
            font-size: 0.8rem;
            color: rgba(184, 186, 209, 0.45);
            font-weight: 300;
            display: block;
            margin-bottom: 2.5rem;
        }

        .required-note span {
            color: #FFD4F6;
        }

        /* â”€â”€ FORM SECTIONS â”€â”€ */
        .form-section {
            margin-bottom: 3rem;
        }

        .form-section:last-of-type {
            margin-bottom: 0;
        }

        .form-section-title {
            font-family: Inter;
            font-size: 1.4rem;
            font-weight: 400;
            background-image: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .form-section-divider {
            border: none;
            border-top: 1px solid rgba(212, 216, 255, 0.10);
            margin-bottom: 2rem;
        }

        /* â”€â”€ FIELDS â”€â”€ */
        .field-group {
            margin-bottom: 1.5rem;
        }

        .field-group:last-child {
            margin-bottom: 0;
        }

        .field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        label {
            display: block;
            font-family: Inter;
            font-size: 0.875rem;
            font-weight: 400;
            color: #D4D8FF;
            margin-bottom: 0.5rem;
        }

        label .req {
            color: #FFD4F6;
            margin-left: 0.2rem;
        }

        label .opt {
            color: rgba(184, 186, 209, 0.4);
            font-weight: 300;
            font-size: 0.8rem;
            margin-left: 0.3rem;
        }
        input[type="text"],
        input[type="email"],
        input[type="url"],
        textarea,
        select {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 0.6rem;
            padding: 0.85rem 1rem;
            font-family: Inter;
            font-size: 0.875rem;
            font-weight: 300;
            color: #B8BAD1;
            outline: none;
            transition: border-color 0.25s ease, background 0.25s ease;
            -webkit-appearance: none;
            appearance: none;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="url"]:focus,
        textarea:focus,
        select:focus {
            border-color: rgba(212, 216, 255, 0.35);
            background: rgba(212, 216, 255, 0.035);
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(184, 186, 209, 0.25);
        }

        textarea {
            resize: vertical;
            line-height: 1.65;
        }

        textarea.small {
            min-height: 80px;
            max-height: 160px;
        }

        textarea.medium {
            min-height: 130px;
            max-height: 260px;
        }

        .field-hint {
            font-family: Inter;
            font-size: 0.75rem;
            color: rgba(184, 186, 209, 0.35);
            font-weight: 300;
            margin-top: 0.4rem;
        }

        /* â”€â”€ PLAN CARDS â”€â”€ */
        .plan-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
            gap: 1rem;
            width: 75%;
            margin-left: auto;
            margin-right: auto;
        }

        .plan-option {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 0.75rem;
            background: rgba(255, 255, 255, 0.02);
            transition: border-color 0.25s ease, background 0.25s ease;
        }

        .plan-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding: 1.5rem 1rem 1rem;
            border: none;
            border-radius: 0;
            background: transparent;
        }

        .plan-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .plan-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            cursor: pointer;
            text-align: center;
            gap: 0.35rem;
            /* override global label styles */
            color: #B8BAD1;
            font-size: 1rem;
            margin-bottom: 0;
            flex: 1 1 auto;
        }

        .plan-option:hover {
            border-color: rgba(212, 216, 255, 0.25);
            background: rgba(212, 216, 255, 0.03);
        }

        .plan-option:has(input[type="radio"]:checked) {
            border-color: rgba(212, 216, 255, 0.5);
            background: rgba(212, 216, 255, 0.06);
        }

        /* ── BILLING GRID: card-style highlight for label-only structure ── */
        .billing-grid .plan-label {
            padding: 1.5rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 0.75rem;
            background: rgba(255, 255, 255, 0.02);
            transition: border-color 0.25s ease, background 0.25s ease;
            cursor: pointer;
            width: 100%;
        }

        .billing-grid .plan-label:hover {
            border-color: rgba(212, 216, 255, 0.25);
            background: rgba(212, 216, 255, 0.03);
        }

        .billing-grid .plan-option input[type="radio"]:checked + .plan-label {
            border-color: rgba(212, 216, 255, 0.5);
            background: rgba(212, 216, 255, 0.06);
        }

        .billing-grid .billing-price {
            font-size: 0.76rem;
            white-space: nowrap;
        }

        .plan-name {
            font-family: Inter;
            font-size: 1.15rem;
            font-weight: 400;
            background-image: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .plan-price {
            font-family: Inter;
            font-size: 0.72rem;
            font-weight: 300;
            color: rgba(184, 186, 209, 0.5);
            line-height: 1.5;
        }

        /* â”€â”€ SUBMIT â”€â”€ */
        .submit-wrap {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            height: 4.5rem;
            padding: 0 2.25rem;
            font-family: Inter;
            font-size: 1em;
            font-weight: 300;
            border-radius: 2.5rem;
            border: 1px solid #B973FF;
            background-color: #475AFF;
            background-image: linear-gradient(45deg, #FF38D3 0%, rgba(71, 90, 255, 0.008) 100%);
            background-size: cover;
            color: #FFE6F9;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.25s ease, background-color 0.25s ease;
            white-space: nowrap;
        }

        .btn-submit:hover {
            background-color: #3391FF;
            transform: scale(1.0425);
        }

        .btn-submit svg {
            width: 1.4em;
            height: 1.4em;
            fill: #FFE6F9;
            flex-shrink: 0;
        }

        /* â”€â”€ CUSTOM MODAL â”€â”€ */
        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: #1A1A1A;
            border: 1px solid rgba(212, 216, 255, 0.18);
            border-radius: 1rem;
            padding: 3rem;
            max-width: 28rem;
            width: 90%;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-title {
            font-family: Inter;
            font-size: 1.7rem;
            font-weight: 400;
            background-image: var(--grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .modal-body {
            font-family: Inter;
            font-size: 0.9rem;
            font-weight: 300;
            color: #B8BAD1;
            line-height: 1.8;
            margin-bottom: 1.75rem;
        }

        .modal-body a {
            color: #D4D8FF;
        }

        .modal-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 2rem;
            font-family: Inter;
            font-size: 0.875rem;
            font-weight: 300;
            border-radius: 2rem;
            border: 1px solid rgba(212, 216, 255, 0.2);
            background: rgba(212, 216, 255, 0.05);
            color: #D4D8FF;
            cursor: pointer;
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        .modal-close:hover {
            background: rgba(212, 216, 255, 0.1);
            border-color: rgba(212, 216, 255, 0.35);
        }

        .text-block.text-block--footer-tagline {
            text-align: center;
            color: #B8BAD1;
            font-family: Inter;
            text-indent: 0.125rem;
            font-size: 1.5em;
            line-height: 1.75;
            font-weight: 300;
        }

        .text-block.text-block--footer-tagline mark {
            color: #FFFFFF;
            background-color: transparent;
        }

        .text-block.text-block--footer-tagline a {
            text-decoration: none;
        }

        .text-block.text-block--footer-tagline a:hover {
            text-decoration: underline;
        }

        .text-block.text-block--footer-tagline span.p:nth-child(n + 2) {
            margin-top: 1rem;
        }

        .text-block.text-block--footer-copy {
            text-align: center;
            color: #B8BAD1;
            font-family: Inter;
            text-indent: 0.125rem;
            font-size: 1em;
            line-height: 1.75;
            font-weight: 300;
        }

        .text-block.text-block--footer-copy a {
            color: #B8BAD1;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .text-block.text-block--footer-copy a:hover {
            color: #475AFF;
            text-shadow: 0 0 15px rgba(71, 90, 255, 0.8), 0 0 30px rgba(71, 90, 255, 0.5);
        }

        .text-block.text-block--footer-copy span.p:nth-child(n + 2) {
            margin-top: 1rem;
        }

        .icon-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: var(--flex-alignment, center);
            letter-spacing: 0;
            padding: 0;
        }

        .icon-group>li {
            position: relative;
            z-index: 1;
        }

        .icon-group>li>a {
            align-items: center;
            display: flex;
            justify-content: center;
        }

        .icon-group>li>a>svg {
            display: block;
            pointer-events: none;
            position: relative;
        }

        .icon-group>li>a+svg {
            display: block;
            height: 100%;
            left: 0;
            pointer-events: none;
            position: absolute;
            top: 0;
        }

        .icon-group>li>a>.label {
            display: none;
        }

        .icon-group.icon-group--pill {
            font-size: 1.5em;
            gap: 1.5rem;
        }

        /* Center the icon row with the text: inline-flex + parent text-align (block flex ul stretches full width) */
        #footer .section__inner {
            text-align: center;
        }

        #footer-icons {
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            list-style: none;
            padding: 0;
            vertical-align: top;
        }

        #footer-icons.icon-group.icon-group--pill:not(:first-child) {
            margin-top: 0 !important;
        }

        .icon-group.icon-group--pill:not(:first-child) {
            margin-top: 1rem !important;
        }

        .icon-group.icon-group--pill:not(:last-child) {
            margin-bottom: 1rem !important;
        }

        .icon-group.icon-group--pill>li>a {
            border-radius: 2.5rem;
            height: 2em;
            width: 2em;
            background-color: transparent;
            border-color: #B338FF;
            border-style: solid;
            border-width: 2px;
            transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
        }

        .icon-group.icon-group--pill>li>a>svg {
            height: 60%;
            width: 60%;
            fill: #FFE6F9;
            transition: fill 0.25s ease;
        }

        .icon-group.icon-group--pill>li>a:hover {
            background-color: rgba(255, 255, 255, 0.059) !important;
            transform: scale(1.13);
        }

        .icon-group.icon-group--pill>li>a+svg {
            transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
        }

        .icon-group.icon-group--pill>li>a:hover+svg {
            transform: scale(1.13);
        }

        /* â”€â”€ SITE LOGO â”€â”€ */
        /* Single global rule. Applied via .site-logo class on every page. No per-page overrides. */
        .site-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            margin: 0 auto 2.25rem;
        }
        .site-logo__icon {
            height: 40px;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .site-logo__nameplate {
            height: auto;
            width: auto;
            display: block;
            /* nameplate is 953x102 -- lock height to match icon */
            max-height: 18px;
        }
        @media (max-width: 736px) {
            .site-logo { margin-bottom: 1.75rem; }
            .site-logo__nameplate { max-height: 14px; }

            .site-logo {
                max-width: calc(100vw - 5rem);
                padding-left: 1.6rem;
                justify-content: center;
            }

            .site-logo__icon {
                height: 30px !important;
                right: calc(100% - 0.35rem) !important;
            }

            .site-logo__nameplate {
                height: auto !important;
                max-height: 22px !important;
                max-width: 100%;
            }

            .billing-grid{
                grid-template-columns:1fr !important;
                width:100% !important;
                gap:0.85rem;
            }
            .billing-grid .plan-label{
                align-items:flex-start;
                text-align:left;
                padding:1.25rem 1rem;
            }
            .billing-grid .plan-name{
                font-size:1.05rem;
            }
            .billing-grid .billing-price{
                font-size:0.9rem;
                line-height:1.7;
            }
        }

        /* â”€â”€ ANIMATIONS â”€â”€ */
        .reveal-up {
            opacity: 0;
            transform: translateY(1.5rem);
            transition: opacity 2.7s cubic-bezier(0.16, 1, 0.3, 1), transform 2.7s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .reveal-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-up.is-hidden {
            opacity: 0;
            transform: translateY(1.5rem);
        }

        .reveal-delay-1 {
            transition-delay: 0s;
        }

        .reveal-delay-2 {
            transition-delay: 0s;
        }

        .reveal-delay-3 {
            transition-delay: 0s;
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal-up {
                transition: none !important;
                transform: none !important;
                opacity: 1 !important;
            }
        }

        /* â”€â”€ LOADER â”€â”€ */
        body #loader {
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            content: '';
            display: block;
            height: 3rem;
            left: calc(50% - 1.5rem);
            opacity: 0;
            pointer-events: none;
            position: absolute;
            top: calc(50% - 1.5rem);
            transition: opacity 1s ease, visibility 1s;
            visibility: hidden;
            width: 3rem;
            z-index: 100000;
        }

        body.with-loader #loader {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUgeyBmaWxsOiB0cmFuc3BhcmVudDsgc3Ryb2tlOiAjRkZGRkZGMUE7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgNDggNDgiIHRvPSIzNjAgNDggNDgiIGR1cj0iMXMiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48L2c+PC9zdmc+');
            opacity: 1;
            visibility: visible;
        }

        body.is-playing.with-loader #loader {
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
            visibility: hidden;
        }

        /* â”€â”€ RESPONSIVE â”€â”€ */
        @media (max-width: 1680px) {
            html {
                font-size: 11pt;
            }
        }

        @media (max-width: 1280px) {
            html {
                font-size: 11pt;
            }
        }

        @media (max-width: 980px) {
            html {
                font-size: 9pt;
            }
        }

        @media (max-width: 736px) {
            html {
                font-size: 11pt;
            }

            .section-inner {
                padding: 4rem 1.5rem;
            }

            .form-card {
                padding: 2rem 1.25rem;
            }

            .page-title {
                font-size: 3.125em;
                letter-spacing: -0.109375rem;
            }

            .page-desc {
                font-size: 1.25em;
            }

            .field-row {
                grid-template-columns: 1fr;
            }

            .plan-grid {
                grid-template-columns: 1fr 1fr;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .plan-grid {
                grid-template-columns: 1fr 1fr;
                width: 100%;
            }
        }

        @media (max-width: 360px) {
            .section-inner {
                padding: 3rem 1.125rem;
            }

            .page-title {
                font-size: 2.5em;
            }

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

        /* â”€â”€ PLAN FEATURES DRAWER â”€â”€ */
        .plan-features-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            margin-top: 1rem;
            padding: 0.3rem 0.75rem;
            font-family: Inter;
            font-size: 0.72rem;
            font-weight: 300;
            color: rgba(212, 216, 255, 0.7);
            background: rgba(212, 216, 255, 0.06);
            border: 1px solid rgba(212, 216, 255, 0.15);
            border-radius: 2rem;
            cursor: pointer;
            transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
            white-space: nowrap;
            pointer-events: all;
            align-self: center;
        }

        .plan-features-toggle:hover {
            color: #D4D8FF;
            background: rgba(212, 216, 255, 0.10);
            border-color: rgba(212, 216, 255, 0.3);
        }

        .plan-features-toggle.open {
            color: #D4D8FF;
            background: rgba(212, 216, 255, 0.10);
        }

        .plan-features-toggle svg {
            width: 1em;
            height: 1em;
            transition: transform 0.3s ease;
            fill: currentColor;
            flex-shrink: 0;
        }

        .plan-features-toggle.open svg {
            transform: rotate(180deg);
        }

        .plan-features-drawer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s ease;
            padding: 0 1rem;
            width: 100%;
        }

        .plan-features-drawer.open {
            max-height: 1200px;
            padding: 0.9rem 1rem 0.25rem;
            overflow: visible;
        }

        /* Tooltips inside open drawers must escape the drawer */
        .plan-features-drawer.open .tip {
            position: relative;
        }
        .plan-features-drawer.open .tip__bubble {
            z-index: 100001;
        }

        .plan-features-drawer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .plan-features-drawer ul li {
            font-family: Inter;
            font-size: 0.8rem;
            font-weight: 300;
            color: #B8BAD1;
            padding: 0.22rem 0 0.22rem 1.2rem;
            position: relative;
            line-height: 1.5;
            text-align: left;
        }

        .plan-features-drawer ul li::before {
            content: '\2022';
            position: absolute;
            left: 0.3rem;
            color: rgba(212, 216, 255, 0.45);
        }

        .plan-features-drawer ul li strong {
            color: #FFD4F6;
            font-weight: 400;
        }

        .plan-features-drawer .plan-feature-group {
            margin-bottom: 0.85rem;
        }

        .plan-features-drawer .plan-feature-group:last-of-type {
            margin-bottom: 0;
        }

        .plan-features-drawer .plan-feature-group__title {
            font-size: 0.68rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: #D4D8FF;
            margin-bottom: 0.35rem;
            font-weight: 500;
            font-family: Inter;
        }

        /* FIX: Error banner  -  enforce Inter font to match the rest of the site */
        .error-banner {
            font-family: Inter;
            font-weight: 400 !important;
            font-size: 0.875rem !important;
            line-height: 1.6 !important;
        }
        /* TOOLTIPS */
        .tip{position:relative;display:inline;cursor:default;border-bottom:1px dotted rgba(184,186,209,0.5)}
        .tip__bubble{display:none;position:absolute;bottom:calc(100% + 6px);left:50%;transform:translateX(-50%);background:#1A1A1A;border:1px solid rgba(255,255,255,0.07);border-radius:0.6rem;padding:0.5rem 0.7rem;font-size:0.72rem;font-weight:300;font-family:Inter;color:#B8BAD1;white-space:normal;width:200px;line-height:1.5;z-index:100001;pointer-events:none;box-shadow:0 8px 24px rgba(0,0,0,0.35),0 0 0 1px rgba(255,255,255,0.04)}
        .tip:hover .tip__bubble,.tip:focus-within .tip__bubble{display:block}
/* Structured footer */
#footer {
    margin-top: 0 !important;
}

/* Footer micro-tune override */
#footer .section__inner.footer-structured {
    padding: 1.05rem 0 0.58rem !important;
}

#footer .footer-structured__brand {
    padding: 0.58rem 0.72rem !important;
}

#footer .footer-brand__logo {
    height: 43px !important;
}

#footer .footer-brand__nameplate {
    max-height: 31px !important;
}

#footer .footer-brand-copy--headline {
    font-size: 0.9rem !important;
}

#footer .footer-structured__bottom {
    grid-template-columns: 1fr auto 1fr !important;
    grid-template-areas: "copy tagline right" !important;
    padding-top: 0.35rem !important;
    row-gap: 0 !important;
    position: relative;
}

#footer .footer-social-row {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1.35rem;
    gap: 0.7rem;
}

#footer .footer-social-icon {
    width: 2.82rem;
    height: 2.82rem;
}
/* Footer Local Block START */
#add-ons {
    scroll-margin-top: calc(var(--sticky-banner-height, 0px) + 5rem);
}

#footer.section.section--standard.section--stack.section--full.section--screen {
    margin-top: 0 !important;
    min-height: auto !important;
    height: auto !important;
}

#footer {
    margin-top: 0 !important;
}

#footer .section__wrap {
    width: 100%;
    min-height: auto !important;
    padding-top: 0 !important;
}

#footer .section__inner.footer-structured {
    width: min(100%, 74rem);
    margin: 0 auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    text-align: left !important;
    min-height: auto;
}

#footer .footer-structured__brand {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 25rem;
    min-width: 0;
    padding: 0.9rem 1rem 0.82rem;
    gap: 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.025);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

#footer .footer-brand {
    display: grid;
    justify-items: center;
    gap: 0.22rem;
    text-decoration: none;
}

#footer .footer-brand__logo {
    width: auto;
    height: 46px;
    display: block;
}

#footer .footer-brand__nameplate {
    width: auto;
    max-width: min(100%, 14.8rem);
    height: auto;
    max-height: 33px;
    display: block;
}

#footer .footer-brand-copy {
    width: 100%;
    margin: 0;
    max-width: 15.6rem;
    font-family: Inter, sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(184, 186, 209, 0.84);
}

#footer .footer-brand-copy--headline {
    max-width: 15.7rem;
    margin-top: 0.28rem;
    margin-bottom: 0.22rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.26;
    text-align: center;
    color: #FCFDFF;
}

#footer .footer-brand-copy:not(.footer-brand-copy--headline) {
    text-align: left;
}

#footer .footer-contact-list {
    width: 100%;
    max-width: 18.8rem;
    display: grid;
    gap: 0.58rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer .footer-contact-list > li {
    margin: 0;
    min-width: 0;
}

#footer .footer-contact-list > li > .footer-contact-link {
    display: grid;
    grid-template-columns: 2.34rem minmax(0, 1fr);
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: #B8BAD1;
    text-decoration: none;
    transition: none !important;
    animation: none !important;
}

#footer .footer-contact-link__icon {
    width: 2.34rem;
    height: 2.34rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1.35px solid rgba(179, 56, 255, 0.68);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: none;
    color: #FFE6F9;
    flex-shrink: 0;
    transition: none !important;
    animation: none !important;
}

#footer .footer-contact-link__icon svg {
    width: 58%;
    height: 58%;
    fill: currentColor;
}

#footer .footer-contact-link__text {
    min-width: 0;
    min-height: 2.34rem;
    display: inline-flex;
    align-items: center;
    overflow-wrap: anywhere;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.28;
    color: rgba(184, 186, 209, 0.92);
    transition: none !important;
    animation: none !important;
}

#footer .footer-contact-link:hover .footer-contact-link__icon {
    color: #FFE6F9;
    border-color: rgba(179, 56, 255, 0.68);
    background: rgba(255, 255, 255, 0.025);
}

#footer .footer-contact-link:hover .footer-contact-link__text {
    color: rgba(184, 186, 209, 0.92);
}

#footer .footer-structured__nav {
    grid-column: auto;
    align-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    min-width: 0;
    padding-top: 0;
}

#footer .footer-nav-group {
    min-width: 0;
}

#footer .footer-nav-group__title {
    margin: 0 0 0.58rem;
    font-family: Inter, sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #D4D8FF;
}

#footer .footer-nav-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer .footer-nav-group li + li {
    margin-top: 0.42rem;
}

#footer .footer-nav-group a {
    display: inline-block;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.33;
    color: #B8BAD1;
    text-decoration: none;
}

#footer .footer-nav-group a:hover {
    color: #EDF1FF;
}

#footer .footer-structured__bottom {
    grid-column: auto;
    margin-top: 0;
    padding-top: 0.72rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.45rem;
}

#footer .footer-meta {
    margin: 0;
    font-family: Inter, sans-serif;
    line-height: 1.42;
}

#footer .footer-meta--muted {
    color: rgba(184, 186, 209, 0.5);
    font-size: 0.74rem;
    font-weight: 300;
}

#footer .footer-meta--tagline {
    justify-self: start;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    color: #F8F9FF;
    font-size: 0.92rem;
    font-weight: 400;
    text-align: left;
}

#footer .footer-meta--right {
    text-align: left;
}

#footer .footer-social-row {
    position: static !important;
    left: auto;
    top: auto;
    transform: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.56rem;
    justify-self: center;
}

#footer .footer-social-icon {
    width: 2.54rem !important;
    height: 2.54rem !important;
}

@media (min-width: 560px) {
    #footer .footer-structured__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem 1rem;
    }
}

@media (min-width: 820px) {
    #footer .footer-structured__nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.78rem 1.08rem;
    }
}

@media (min-width: 1280px) {
    #footer .section__inner.footer-structured {
        grid-template-columns: minmax(21rem, 1.05fr) minmax(0, 1.95fr);
        gap: 1.2rem 1.85rem;
        min-height: 40svh;
        align-content: start;
        padding-top: 1.2rem;
    }

    #footer .footer-structured__brand {
        max-width: none;
        gap: 0.68rem;
        padding: 0.96rem 1.2rem 0.88rem;
    }

    #footer .footer-brand__logo {
        height: 62px;
    }

    #footer .footer-brand__nameplate {
        max-width: min(100%, 21rem);
        max-height: 46px;
    }

    #footer .footer-brand-copy--headline {
        margin-top: 0.34rem;
        margin-bottom: 0.26rem;
    }

    #footer .footer-structured__nav {
        padding-top: 0.2rem;
    }

    #footer .footer-structured__bottom {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            ". icons ."
            "copy tagline right" !important;
        align-items: center;
        gap: 1rem 1rem;
    }

    #footer .footer-structured__bottom > .footer-meta--muted:not(.footer-meta--right) {
        grid-area: copy;
    }

    #footer .footer-social-row {
        grid-area: icons;
        margin-bottom: 0.7rem;
    }

    #footer .footer-meta--tagline {
        grid-area: tagline;
        justify-self: center;
        text-align: center;
    }

    #footer .footer-meta--right {
        grid-area: right;
        text-align: right;
    }
}

@media (max-width: 560px) {
    #footer {
        margin-top: 0 !important;
    }

    #footer .section__inner.footer-structured {
        width: 100%;
        padding-top: 1rem;
        gap: 0.85rem;
    }

    #footer .footer-structured__brand {
        max-width: none;
        padding: 0.84rem 0.88rem 0.76rem;
        gap: 0.62rem;
    }

    #footer .footer-brand__logo {
        height: 42px;
    }

    #footer .footer-brand__nameplate {
        max-width: min(100%, 13.4rem);
        max-height: 31px;
    }

    #footer .footer-brand-copy {
        max-width: 14.8rem;
        font-size: 0.86rem;
    }

    #footer .footer-brand-copy--headline {
        max-width: 14rem;
        margin-top: 0.24rem;
        margin-bottom: 0.18rem;
        font-size: 1rem;
    }

    #footer .footer-contact-link__text,
    #footer .footer-nav-group a {
        font-size: 0.86rem;
    }

    #footer .footer-contact-list > li > .footer-contact-link {
        grid-template-columns: 2.24rem minmax(0, 1fr);
        gap: 0.42rem;
    }

    #footer .footer-contact-link__icon {
        width: 2.24rem;
        height: 2.24rem;
    }

    #footer .footer-contact-link__text {
        min-height: 2.24rem;
    }

    #footer .footer-social-icon {
        width: 2.28rem !important;
        height: 2.28rem !important;
    }
}
/* Footer Local Block END */

/* Footer Global Simplify Override */
#footer .section__inner.footer-structured {
    display: grid;
    grid-template-columns: minmax(16rem, 1.2fr) repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.6rem;
    align-items: start;
    width: min(92vw, 72rem);
    padding: 1.8rem 0 1.1rem;
}

#footer .footer-structured__nav {
    display: contents;
}

#footer .footer-structured__brand {
    padding: 0.95rem 1rem;
}

#footer .footer-contact-link:hover .footer-contact-link__icon {
    transform: none !important;
}

#footer .footer-structured__bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.8rem;
    padding-top: 0.9rem;
    margin-top: 0.2rem;
}

@media (max-width: 980px) {
    #footer .section__inner.footer-structured {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: min(94vw, 36rem);
    }

    #footer .footer-structured__nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
    }

    #footer .footer-structured__bottom {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    #footer .footer-meta,
    #footer .footer-meta--right,
    #footer .footer-meta--tagline {
        text-align: left;
    }
}

/* Footer Icons + Compact Lock */
#footer .section__inner.footer-structured { padding: 2.6rem 0 1.15rem !important; }
#footer .footer-structured__brand { padding: 0.56rem 0.6rem 0.72rem !important; gap: 0.48rem !important; display: flex !important; flex-direction: column !important; align-items: center !important; align-self: stretch !important; justify-self: start !important; width: min(100%, 17rem) !important; max-width: 17rem !important; }
#footer .footer-brand__logo { height: 42px !important; width: auto !important; max-width: none !important; object-fit: contain !important; }
#footer .footer-brand__nameplate { width: min(100%, 15.2rem) !important; height: auto !important; max-width: 15.2rem !important; max-height: none !important; object-fit: contain !important; }
#footer .footer-brand-copy--headline { font-size: 0.96rem !important; line-height: 1.3 !important; }
#footer .footer-structured__bottom { display: grid !important; grid-template-columns: 1fr auto 1fr !important; grid-template-areas: "copy tagline right" !important; row-gap: 0 !important; column-gap: 0.9rem !important; padding-top: 0 !important; margin-top: 0 !important; }
#footer .footer-structured__bottom > .footer-meta--muted:not(.footer-meta--right) { grid-area: copy; }
#footer .footer-meta--tagline { grid-area: tagline; text-align: center !important; }
#footer .footer-meta--right { grid-area: right; justify-self: end !important; text-align: right !important; }
#footer .footer-social-row { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; margin: 0; text-align: center; }
#footer .footer-structured__brand .footer-social-row { width: 100%; margin-top: auto !important; padding-top: 0.85rem !important; justify-content: center !important; }
#footer .footer-social-icon { width: 2.42rem; height: 2.42rem; flex: 0 0 2.42rem; aspect-ratio: 1 / 1; box-sizing: border-box; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid #B338FF; color: #FFE6F9; background: transparent; text-decoration: none; padding: 0; }
#footer .footer-social-icon svg { width: 58%; height: 58%; fill: currentColor; }
#footer .footer-social-icon:hover { background: rgba(255, 255, 255, 0.065); }
@media (max-width: 980px) { #footer .footer-structured__bottom { grid-template-columns: 1fr auto 1fr !important; grid-template-areas: "copy tagline right" !important; } }

/* Footer Final Lock */
#footer .section__inner.footer-structured {
    grid-template-columns: max-content minmax(0, 1fr) !important;
    gap: 0.2rem 1.55rem !important;
    min-height: auto !important;
    align-items: stretch !important;
}

#footer .footer-structured__brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: stretch !important;
    height: auto !important;
}

#footer .footer-structured__main {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: contents !important;
    min-width: 0 !important;
    margin: 0 !important;
}

#footer .footer-structured__nav {
    display: grid !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.2rem 0.95rem !important;
    padding-top: 0 !important;
    align-self: start !important;
    margin-top: 0.875rem !important;
}

#footer .footer-nav-group:nth-child(1) { grid-column: auto !important; }
#footer .footer-nav-group:nth-child(2) { grid-column: auto !important; }
#footer .footer-nav-group:nth-child(3) { grid-column: auto !important; }

#footer .footer-structured__bottom {
    grid-column: 2 !important;
    grid-row: 1 !important;
    grid-template-columns: 1fr auto 1fr !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    padding-top: 0.45rem !important;
    align-self: end !important;
}

#footer .footer-meta--right {
    justify-self: end !important;
    text-align: right !important;
}

@media (max-width: 980px) {
    #footer .section__inner.footer-structured {
        grid-template-columns: 1fr !important;
        gap: 1rem 1rem !important;
        align-items: start !important;
    }

    #footer .footer-structured__brand {
        grid-column: 1 !important;
        grid-row: 1 !important;
        align-self: start !important;
    }

    #footer .footer-structured__main {
        display: grid !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
        gap: 0.9rem !important;
        min-height: 0 !important;
    }

    #footer .footer-structured__nav {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 0 !important;
    }

    #footer .footer-nav-group:nth-child(1),
    #footer .footer-nav-group:nth-child(2),
    #footer .footer-nav-group:nth-child(3) {
        grid-column: auto !important;
    }

    #footer .footer-structured__bottom {
        grid-column: auto !important;
        grid-template-columns: 1fr auto 1fr !important;
        margin-bottom: 0 !important;
        padding-top: 0.7rem !important;
    }

    #footer .footer-meta { font-size: 0.72rem !important; }
    #footer .footer-meta--tagline { font-size: 0.92rem !important; text-align: center !important; }
    #footer .footer-meta--right { justify-self: end !important; text-align: right !important; }
}

@media (max-width: 736px) {
    #footer .section__inner.footer-structured {
        padding-top: 2rem;
        gap: 1.75rem;
    }

    .footer-brand__logo {
        height: 38px;
    }

    .footer-brand__nameplate {
        max-height: 17px;
    }

    .footer-structured__lead {
        max-width: none;
        font-size: 0.92rem;
    }

    .footer-structured__nav {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .footer-structured__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 736px) {
    .content-section.content-section--hero .section-inner {
        padding: 3.4rem 1.35rem 2.55rem !important;
    }

    .page-title {
        font-size: clamp(2.15rem, 10.3vw, 2.9rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.08rem !important;
    }

    .page-desc {
        max-width: 21rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
    }

    #btn-gs-scroll {
        width: min(100%, 15.5rem) !important;
        max-width: none !important;
    }

    .content-section.reveal-up.reveal-delay-2 {
        padding: 3.5rem 1.25rem !important;
    }

    .form-card {
        padding: 1.4rem !important;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal {
        width: min(calc(100% - 1.5rem), 24rem) !important;
        padding: 1.4rem 1.05rem !important;
    }

    .modal-title {
        font-size: 1.4rem !important;
    }

    .modal-body {
        font-size: 0.84rem !important;
        line-height: 1.65 !important;
    }

    .modal-close {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #footer .footer-structured__main {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
    }

    #footer .footer-structured__nav {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    #footer .footer-structured__bottom {
        grid-column: 1 !important;
        grid-row: 2 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas: none !important;
        gap: 0.45rem !important;
        margin-bottom: 0 !important;
        padding-top: 0.9rem !important;
        align-self: start !important;
    }

    #footer .footer-structured__bottom > .footer-meta--muted:not(.footer-meta--right),
    #footer .footer-meta--tagline,
    #footer .footer-meta--right {
        grid-area: auto !important;
        justify-self: start !important;
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    #footer .footer-structured__main {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
    }

    #footer .footer-structured__nav {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    #footer .footer-structured__bottom {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
}

/* Mobile footer: Explore | Start Here on one row, Our Work full-width below */
@media (max-width: 980px) {
    #footer .footer-structured__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.9rem 1.2rem !important;
        align-items: start !important;
    }
    #footer .footer-nav-group:nth-child(1) { grid-column: 1 !important; }
    #footer .footer-nav-group:nth-child(2) { grid-column: 2 !important; }
    #footer .footer-nav-group:nth-child(3) { grid-column: 1 / -1 !important; }
    #footer .footer-structured__bottom {
        grid-template-columns: 1fr !important;
        grid-template-areas: none !important;
        gap: 0.35rem !important;
    }
    #footer .footer-structured__bottom > .footer-meta--muted:not(.footer-meta--right),
    #footer .footer-meta--tagline,
    #footer .footer-meta--right {
        grid-area: auto !important;
        justify-self: start !important;
        text-align: left !important;
    }
}


