    :root {
        color-scheme: light;
        --cream: #FBF7F2;
        --cream-2: #F2E8DC;
        --ink: #24162F;
        --ink-2: #2C1B3A;
        --muted: #6B5F75;
        --plum: #5B2A86;
        --plum-2: #6D35A3;
        --gold: #D9A441;
        --gold-2: #F1D07A;
        --green: #1F9D6A;
        --green-2: #137A52;
        --line: #E9E1F2;
        --danger: #B42318;
        --shadow-soft: 0 10px 30px rgba(44, 27, 58, 0.10);
        --shadow-card: 0 18px 55px rgba(44, 27, 58, 0.14);
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        min-height: 100%;
    }

    body {
        margin: 0;
        font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--ink);
        background-color: #FCF7F1;
        background-image:
            radial-gradient(1200px 620px at 10% 8%, rgba(91, 42, 134, .14), rgba(91, 42, 134, 0) 58%),
            radial-gradient(980px 520px at 88% 10%, rgba(217, 164, 65, .18), rgba(217, 164, 65, 0) 54%),
            radial-gradient(1100px 560px at 82% 80%, rgba(91, 42, 134, .09), rgba(91, 42, 134, 0) 60%),
            radial-gradient(820px 420px at 18% 88%, rgba(217, 164, 65, .13), rgba(217, 164, 65, 0) 54%),
            linear-gradient(180deg, #FFFDFB 0%, #FCF7F1 42%, #F2E8DC 100%);
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    body.is-menu-locked {
        overflow: hidden;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
        mix-blend-mode: multiply;
        opacity: .08;
        pointer-events: none;
        z-index: -1;
    }

    a {
        color: var(--plum);
        text-decoration: none;
    }

    a:hover {
        color: var(--plum-2);
    }

    img {
        max-width: 100%;
        display: block;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .wrap {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        overflow: visible;
    }

    .glass {
        background: rgba(255, 255, 255, .82);
        border: 1px solid rgba(233, 225, 242, .92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: var(--shadow-card);
        overflow: visible;
    }

    .g-border {
        position: relative;
        border-radius: 26px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(91, 42, 134, .45), rgba(217, 164, 65, .38), rgba(91, 42, 134, .22));
        box-shadow: 0 18px 55px rgba(44, 27, 58, .10);
    }

    .g-border > .inner {
        border-radius: 25px;
        background: rgba(255, 255, 255, .86);
        border: 1px solid rgba(255, 255, 255, .62);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .60);
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 40;
        padding: 18px 0 10px;
    }

    .site-header .bar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 18px 24px;
        border-radius: 24px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .brand img {
        display: block;
        width: min(220px, 42vw);
        height: auto;
        max-height: 54px;
        object-fit: contain;
    }

    .mobile-header-back,
    .mobile-header-title {
        display: none;
    }

    .site-nav {
        display: none;
        align-items: center;
        justify-content: flex-end;
        flex: 0 1 auto;
        min-width: auto;
    }

    .nav-primary {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: nowrap;
        width: auto;
        max-width: 100%;
    }

    .site-nav-item {
        position: relative;
    }

    .site-nav-item.has-panel {
        position: static;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        font-size: 1.9rem;
        line-height: 1;
        border: 1px solid rgba(233, 225, 242, 1);
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 100%);
        color: var(--plum);
        cursor: pointer;
        box-shadow: 0 12px 28px rgba(44, 27, 58, .10), inset 0 1px 0 rgba(255, 255, 255, .75);
    }

    .nav-icon {
        width: 20px;
        height: 20px;
        display: block;
    }

    .mobile-nav {
        position: fixed;
        inset: 12px;
        padding: 60px 14px 14px;
        background:
            radial-gradient(520px 260px at 10% 0%, rgba(91, 42, 134, .12), rgba(91, 42, 134, 0) 65%),
            radial-gradient(420px 220px at 100% 10%, rgba(217, 164, 65, .14), rgba(217, 164, 65, 0) 68%),
            linear-gradient(180deg, rgba(255, 253, 251, .99) 0%, rgba(252, 247, 241, .98) 48%, rgba(242, 232, 220, .98) 100%);
        border: 1px solid rgba(233, 225, 242, .96);
        border-radius: 14px;
        box-shadow: 0 16px 42px rgba(44, 27, 58, .16);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transform: translateY(-18px) scale(.985);
        opacity: 0;
        visibility: hidden;
        transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
        z-index: 60;
        overflow-y: auto;
        color: var(--ink);
    }

    .mobile-nav.is-open {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-grid {
        display: grid;
        gap: 12px;
    }

    @media (min-width: 981px) {
        .site-nav {
            display: flex;
        }

        .menu-toggle,
        .mobile-backdrop,
        .mobile-nav {
            display: none !important;
        }
    }

    .mobile-nav-section {
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .mobile-nav-kicker {
        margin: 0 0 6px;
        color: var(--ink);
        font-size: .71rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(233, 225, 242, .92);
    }

    .mobile-link-grid {
        display: grid;
        gap: 2px;
    }

    .mobile-link-grid-scroll {
        max-height: 290px;
        overflow: auto;
        padding-right: 4px;
    }

    .mobile-link-grid.cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-nav a,
    .mobile-nav summary {
        display: block;
        padding: 8px 2px;
        border-radius: 0;
        color: var(--ink);
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: .01em;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(233, 225, 242, .92);
        list-style: none;
        cursor: pointer;
    }

    .mobile-nav a:hover,
    .mobile-nav summary:hover {
        color: var(--plum);
        border-color: rgba(91, 42, 134, .24);
        box-shadow: none;
    }

    .mobile-nav details {
        border-top: 1px solid rgba(233, 225, 242, 1);
        padding-top: 10px;
        margin-top: 10px;
    }

    .mobile-nav details:first-of-type {
        border-top: 0;
        padding-top: 0;
        margin-top: 0;
    }

    .mobile-nav details > div {
        margin-top: 10px;
        display: grid;
        gap: 10px;
    }

    .mobile-nav details > div a {
        font-size: .9rem;
        font-weight: 700;
    }

    .mobile-nav-subtree {
        margin-left: 10px;
        padding-left: 10px;
        border-left: 2px solid rgba(233, 225, 242, .9);
    }

    .mobile-nav a[aria-current="page"],
    .mobile-nav summary.is-active {
        color: var(--plum);
        border-color: rgba(91, 42, 134, .24);
        box-shadow: none;
    }

    .mobile-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(233, 225, 242, 1);
        border-radius: 8px;
        background: rgba(255, 255, 255, .82);
        color: var(--plum);
        cursor: pointer;
        box-shadow: 0 10px 24px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .80);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(36, 22, 47, .42);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
        z-index: 55;
    }

    .mobile-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .signup-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(36, 22, 47, .46);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
        z-index: 80;
    }

    .signup-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    .signup-modal {
        position: fixed;
        inset: 50% auto auto 50%;
        width: min(620px, calc(100vw - 28px));
        transform: translate(-50%, -48%) scale(.98);
        opacity: 0;
        visibility: hidden;
        z-index: 81;
        transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
        border-radius: 28px;
        padding: 16px 28px 28px;
        background:
            radial-gradient(520px 240px at 12% 0%, rgba(91, 42, 134, .10), rgba(91, 42, 134, 0) 62%),
            radial-gradient(440px 220px at 100% 10%, rgba(217, 164, 65, .12), rgba(217, 164, 65, 0) 68%),
            linear-gradient(180deg, rgba(255, 253, 251, .97) 0%, rgba(252, 247, 241, .96) 52%, rgba(242, 232, 220, .96) 100%);
    }

    .signup-modal.is-open {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .signup-modal-title {
        margin: 0;
        color: var(--ink);
        font-size: 1.9rem;
        line-height: 1.08;
        letter-spacing: -.02em;
    }

    .signup-modal-copy {
        margin: 14px 0 0;
        color: var(--muted);
        font-size: 1rem;
        line-height: 1.7;
    }

    .signup-benefits {
        margin: 18px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .signup-benefits li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--ink-2);
        font-size: .98rem;
        line-height: 1.45;
    }

    .signup-benefits li::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(217, 164, 65, .96) 0%, rgba(181, 119, 24, .96) 100%);
        box-shadow: 0 0 0 4px rgba(217, 164, 65, .14);
        flex: 0 0 auto;
    }

    .signup-form {
        display: grid;
        gap: 16px;
        margin-top: 22px;
    }

    .signup-field {
        display: grid;
        gap: 10px;
    }

    .signup-label {
        color: var(--ink);
        font-size: .9rem;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
    }

    .signup-input {
        width: 100%;
        min-height: 60px;
        padding: 16px 18px;
        border-radius: 18px;
        border: 1px solid rgba(233, 225, 242, .96);
        background: rgba(255, 255, 255, .88);
        color: var(--ink);
        font: inherit;
        font-size: 1.05rem;
        line-height: 1.35;
        box-shadow: 0 10px 28px rgba(44, 27, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .82);
        transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
    }

    .signup-input::placeholder {
        color: rgba(107, 95, 117, .82);
    }

    .signup-input:focus {
        outline: none;
        border-color: rgba(91, 42, 134, .42);
        background: rgba(255, 255, 255, .96);
        box-shadow:
            0 16px 34px rgba(44, 27, 58, .08),
            0 0 0 4px rgba(91, 42, 134, .10),
            inset 0 1px 0 rgba(255, 255, 255, .88);
    }

    .signup-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .72);
        border: 1px solid rgba(233, 225, 242, .92);
        color: var(--muted);
        font-size: .75rem;
        line-height: 1.45;
    }

    .signup-checkbox input {
        margin-top: 2px;
        width: 18px;
        height: 18px;
        accent-color: var(--plum);
        flex: 0 0 auto;
    }

    .signup-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .signup-actions > * {
        flex: 0 1 45%;
    }

    .call-option-grid {
        display: grid;
        gap: 14px;
        margin-top: 22px;
    }

    .call-option-card {
        position: relative;
        display: grid;
        gap: 12px;
        justify-items: center;
        text-align: center;
        padding: 42px 18px 24px;
        border-radius: 20px;
        border: 1px solid rgba(233, 225, 242, .94);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(249, 244, 238, .9) 100%);
        box-shadow:
            0 18px 36px rgba(44, 27, 58, .08),
            inset 0 1px 0 rgba(255, 255, 255, .78);
    }

    .call-option-card-clickable {
        cursor: pointer;
        transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }

    .call-option-card-clickable:hover {
        transform: translateY(-2px);
        border-color: rgba(181, 119, 24, .28);
        box-shadow:
            0 24px 40px rgba(44, 27, 58, .11),
            inset 0 1px 0 rgba(255, 255, 255, .82);
    }

    .call-option-card-desktop-static {
        cursor: default;
    }

    .call-option-card-desktop-static:hover {
        transform: none;
        border-color: rgba(233, 225, 242, .94);
        box-shadow:
            0 18px 36px rgba(44, 27, 58, .08),
            inset 0 1px 0 rgba(255, 255, 255, .78);
    }

    .call-option-number {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 154px;
        min-height: 44px;
        padding: 10px 18px;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(52, 36, 70, .96) 0%, rgba(34, 23, 47, .98) 100%);
        color: rgba(255, 248, 240, .98);
        font-size: 1rem;
        font-weight: 900;
        line-height: 1;
        letter-spacing: .04em;
        box-shadow: 0 16px 28px rgba(25, 16, 34, .26);
    }

    .call-option-mode {
        color: var(--ink);
        font-size: 1.28rem;
        font-weight: 900;
        line-height: 1.12;
    }

    .call-option-detail,
    .call-option-balance,
    .call-phone-hint,
    .call-phone-error {
        margin: 0;
    }

    .call-option-detail {
        min-height: 42px;
        color: var(--muted);
        font-size: .98rem;
        line-height: 1.5;
    }

    .call-option-balance {
        margin-top: -4px;
        font-size: .88rem;
        line-height: 1.45;
        color: var(--plum);
        text-align: center;
    }

    .call-option-desktop-hint {
        margin: 0;
        color: var(--muted);
        font-size: .9rem;
        line-height: 1.45;
    }

    .call-option-mobile-button {
        display: none;
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .call-option-mobile-copy {
        display: grid;
        gap: 4px;
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
    }

    .call-option-mobile-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .call-option-mobile-title {
        font-size: 1.04rem;
        font-weight: 900;
        line-height: 1.15;
    }

    .call-option-mobile-button-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-radius: 999px;
        background: #1f9d6a;
        color: #fff;
        box-shadow: 0 8px 18px rgba(31, 157, 106, 0.28);
    }

    .call-option-mobile-button-icon svg {
        width: 18px;
        height: 18px;
        display: block;
    }

    .call-option-button-balance {
        display: grid;
        gap: 8px;
        width: 100%;
        text-align: left;
        font-size: .76rem;
        line-height: 1.2;
        color: currentColor;
        padding: 12px 14px;
        border: 1px solid rgba(36, 22, 47, .18);
        border-radius: 14px;
        background: rgba(255, 255, 255, .5);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
    }

    .call-option-button-balance-title {
        display: block;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(36, 22, 47, .18);
        font-size: .82rem;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .call-option-button-stat {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .call-option-button-stat strong {
        font-size: .7rem;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: .04em;
        text-transform: uppercase;
        opacity: .76;
    }

    .call-option-button-stat span {
        font-size: .9rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .call-option-balance {
        display: grid;
        gap: 8px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(126, 86, 186, .08);
        border: 1px solid rgba(126, 86, 186, .14);
    }

    .call-option-balance-row {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 14px;
        text-align: left;
    }

    .call-option-balance-row strong {
        font-size: .74rem;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: .04em;
        text-transform: uppercase;
        opacity: .78;
    }

    .call-option-balance-row span {
        font-size: .92rem;
        font-weight: 800;
        line-height: 1.2;
        color: var(--ink);
    }

    .call-phone-capture {
        display: grid;
        gap: 12px;
        margin-top: 22px;
        padding: 18px 18px 20px;
        border-radius: 20px;
        border: 1px solid rgba(233, 225, 242, .94);
        background: rgba(255, 255, 255, .82);
        box-shadow: 0 18px 36px rgba(44, 27, 58, .06);
    }

    #call-modal.call-modal-desktop .call-phone-capture {
        display: none !important;
    }

    #call-modal.call-modal-desktop .call-option-mobile-button {
        display: none !important;
    }

    #call-modal.call-modal-mobile .call-option-number,
    #call-modal.call-modal-mobile .call-option-mode,
    #call-modal.call-modal-mobile .call-option-detail,
    #call-modal.call-modal-mobile .call-option-balance,
    #call-modal.call-modal-mobile .call-option-desktop-hint {
        display: none !important;
    }

    #call-modal.call-modal-mobile .call-option-mobile-button {
        display: inline-flex !important;
        width: 100%;
    }

    #call-modal.call-modal-mobile #call-credits.call-option-mobile-button {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch !important;
    }

    .call-phone-label {
        color: var(--ink);
        font-size: .86rem;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .call-phone-input {
        width: 100%;
        min-height: 58px;
        padding: 15px 17px;
        border-radius: 18px;
        border: 1px solid rgba(233, 225, 242, .96);
        background: rgba(255, 255, 255, .94);
        color: var(--ink);
        font: inherit;
        font-size: 1.05rem;
        line-height: 1.3;
        box-shadow: 0 10px 28px rgba(44, 27, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .84);
        transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
    }

    .call-phone-input:focus {
        outline: none;
        border-color: rgba(91, 42, 134, .42);
        background: rgba(255, 255, 255, .98);
        box-shadow:
            0 16px 34px rgba(44, 27, 58, .08),
            0 0 0 4px rgba(91, 42, 134, .10),
            inset 0 1px 0 rgba(255, 255, 255, .9);
    }

    .call-phone-hint {
        color: var(--muted);
        font-size: .88rem;
        line-height: 1.45;
    }

    .call-phone-error {
        color: var(--danger);
        font-size: .9rem;
        line-height: 1.4;
    }

    .signup-feedback {
        min-height: 20px;
        font-size: .92rem;
        line-height: 1.4;
        color: var(--muted);
    }

    .signup-feedback.is-success {
        color: var(--green-2);
    }

    .signup-feedback.is-error {
        color: var(--danger);
    }

    .signup-modal-video {
        width: min(430px, calc(100vw - 28px));
        padding-top: 24px;
        position: fixed;
    }

    #call-modal {
        width: min(460px, calc(100vw - 28px));
    }

    .signup-modal-video .signup-modal-title {
        font-size: 1.28rem;
        line-height: 1.1;
        margin-bottom: 8px;
        padding-right: 48px;
    }

    .video-close-button {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .86);
        color: var(--ink);
        font-size: 1.5rem;
        line-height: 1;
        box-shadow: 0 10px 24px rgba(44, 27, 58, .08);
        cursor: pointer;
    }

    .call-chat-frame-shell {
        margin: 0;
        width: 100%;
        height: 100%;
    }

    .call-chat-frame {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 100%;
        border: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, .96);
    }

    #call-modal.call-modal-iframe-mode {
        width: min(1100px, calc(100vw - 16px));
        height: min(88vh, 960px);
        padding: 0;
        overflow: hidden;
    }

    #call-modal.call-modal-iframe-mode .video-close-button {
        z-index: 2;
    }

    .video-stage-shell {
        position: relative;
        gap: 12px;
        aspect-ratio: 9 / 16;
        min-height: 0;
        max-height: 72vh;
        overflow: hidden;
        border-radius: 16px;
        background: #0b1020;
    }

    .video-stage-frame {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        object-fit: cover;
        border-radius: 16px;
        background: #0b1020;
    }

    .video-stage-poster {
        display: block;
        z-index: 100;
        transition: z-index .18s ease;
    }

    .video-balance-chip {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 130;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(11, 16, 32, .78);
        color: rgba(255, 255, 255, .92);
        font-size: .78rem;
        font-weight: 700;
        line-height: 1;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .video-toast {
        position: absolute;
        left: 50%;
        bottom: 14px;
        transform: translateX(-50%);
        z-index: 140;
        max-width: calc(100% - 28px);
        padding: 10px 14px;
        border-radius: 14px;
        background: rgba(11, 16, 32, .86);
        color: rgba(255, 255, 255, .94);
        font-size: .82rem;
        line-height: 1.35;
        text-align: center;
        box-shadow: 0 16px 28px rgba(0, 0, 0, .24);
        opacity: 0;
        transition: opacity .18s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .video-toast.is-visible {
        opacity: 1;
    }

    #mediums-video-preview,
    #mediums-video-subscriber {
        width: 100%;
        height: 100%;
    }

    #mediums-video-publisher video,
    #mediums-video-publisher .OT_video-element,
    #mediums-video-subscriber video,
    #mediums-video-subscriber .OT_video-element {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    #mediums-video-publisher {
        position: absolute;
        right: 14px;
        bottom: 54px;
        width: 34%;
        min-width: 112px;
        max-width: 146px;
        aspect-ratio: 9 / 16;
        height: auto;
        z-index: 0;
        border: 2px solid rgba(255, 255, 255, .78);
        box-shadow: 0 16px 28px rgba(0, 0, 0, .26);
        background: #0b1020;
    }

    #mediums-video-subscriber {
        z-index: 50;
    }

    #mediums-video-subscriber.is-video-front {
        z-index: 100;
    }

    #mediums-video-subscriber.is-video-behind {
        z-index: 50;
    }

    #mediums-video-poster.is-under-video {
        z-index: 50;
    }

    #mediums-video-publisher.is-video-idle {
        z-index: 0;
        opacity: .12;
    }

    #mediums-video-publisher.is-video-live {
        z-index: 120;
        opacity: 1;
    }

    .signup-modal-video .signup-actions {
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .signup-modal-video .signup-actions > * {
        flex: 0 0 auto;
    }

    .signup-modal-video #mediums-video-start {
        flex: 1 1 auto;
    }

    .video-control-button {
        width: 62px;
        height: 58px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        border-radius: 14px;
        border: 1px solid rgba(233, 225, 242, .96);
        background: rgba(255, 255, 255, .82);
        color: var(--ink);
        box-shadow: 0 10px 24px rgba(44, 27, 58, .06);
        cursor: pointer;
        padding: 8px 6px 6px;
        line-height: 1;
    }

    .video-control-icon {
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: top;
        line-height: 0;
        margin-bottom: 4px;
    }

    .video-control-icon svg {
        width: 20px;
        height: 20px;
        display: block;
    }

    .video-control-label {
        display: inline-block;
        font-size: .62rem;
        font-weight: 800;
        line-height: 1;
    }

    .video-control-button.is-active {
        background: rgba(91, 42, 134, .10);
        border-color: rgba(91, 42, 134, .30);
    }

    .video-control-button.is-muted {
        color: rgba(31, 24, 42, .46);
    }

    .video-control-button:disabled {
        opacity: .45;
        cursor: default;
    }

    @media (max-width: 980px) {
        .signup-modal {
            width: min(100vw - 20px, 100%);
            padding: 12px 18px 22px;
            border-radius: 24px;
        }

        .signup-modal-video {
            width: min(100vw - 20px, 100%);
            padding-top: 18px;
        }

        .signup-modal-video .signup-actions {
            gap: 8px;
        }

        #mediums-video-publisher {
            right: 12px;
            bottom: 52px;
            width: 32%;
            min-width: 96px;
            max-width: 122px;
        }

        .video-control-button {
            width: 58px;
            height: 54px;
            padding-top: 7px;
        }

        .signup-modal-title {
            font-size: 1.6rem;
        }

        .signup-actions > * {
            flex: 0 1 45%;
        }

        .call-option-grid {
            gap: 12px;
        }

        #call-modal.call-modal-mobile .call-option-card,
        #call-modal.call-modal-mobile .call-option-card-clickable {
            gap: 8px;
            padding: 0;
            border: none;
            background: transparent;
            box-shadow: none;
            text-align: left;
            justify-items: stretch;
            min-height: 0;
        }

        #call-modal.call-modal-mobile .call-option-number,
        #call-modal.call-modal-mobile .call-option-mode,
        #call-modal.call-modal-mobile .call-option-detail,
        #call-modal.call-modal-mobile .call-option-balance,
        #call-modal.call-modal-mobile .call-option-desktop-hint {
            display: none;
        }

        #call-modal.call-modal-mobile .call-option-desktop-hint {
            display: none;
        }

        #call-modal.call-modal-mobile .call-option-mobile-button {
            display: inline-flex;
            width: 100%;
        }

        #call-modal.call-modal-mobile #call-credits.call-option-mobile-button {
            display: grid !important;
            grid-template-columns: minmax(0, 1fr);
            justify-content: stretch !important;
            gap: 12px;
            min-height: 132px;
            padding: 16px 18px;
            justify-items: stretch;
        }

    #call-modal.call-modal-mobile #call-credits .call-option-mobile-button-icon {
        justify-self: end;
    }

        #call-modal.call-modal-mobile .call-phone-capture {
            padding: 16px 16px 18px;
        }
    }

    @media (min-width: 981px) {
        #call-modal {
            width: min(760px, calc(100vw - 48px));
            padding: 22px 30px 30px;
        }

        #call-modal .signup-modal-title {
            font-size: 2.15rem;
            padding-right: 54px;
        }

        #call-modal .signup-modal-copy {
            font-size: 1.05rem;
            max-width: 560px;
        }

        .call-chat-frame {
            min-height: 100%;
        }

        .call-option-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .call-option-card {
            align-content: start;
            min-height: 214px;
            padding: 48px 24px 26px;
        }

        .call-option-detail {
            min-height: 52px;
        }

        .call-option-number {
            min-width: 168px;
            min-height: 48px;
        }

        .call-option-mode {
            font-size: 1.42rem;
        }

        .call-phone-capture {
            max-width: 520px;
            padding: 22px 22px 24px;
        }
    }

    .nav-link,
    .nav-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 9px;
        color: var(--ink);
        font-weight: 600;
        font-size: .82rem;
        letter-spacing: .01em;
        background: transparent;
        border: 1px solid transparent;
        cursor: pointer;
        transition: color .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    }

    .nav-link:hover,
    .nav-button:hover,
    .nav-link.is-accent {
        color: var(--plum);
        background: rgba(255, 255, 255, .48);
        border-color: rgba(233, 225, 242, .9);
        box-shadow: none;
    }

    .nav-button::after {
        content: "▾";
        font-size: .72rem;
        line-height: 1;
        color: var(--muted);
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 14px);
        left: auto;
        right: 0;
        width: min(980px, calc(100vw - 48px));
        padding: 12px 14px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(233, 225, 242, .96);
        box-shadow: 0 16px 40px rgba(44, 27, 58, .10);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        display: none;
        z-index: 45;
        max-height: calc(100vh - 118px);
        overflow: auto;
        overscroll-behavior: contain;
    }

    .nav-panel.is-open {
        display: block;
    }

    .nav-panel-shell {
        display: block;
        max-height: inherit;
        min-height: 0;
        width: 100%;
    }

    .nav-panel-lead,
    .nav-panel-body {
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        min-height: 0;
    }

    .nav-panel-body {
        overflow: visible;
    }

    .nav-panel-kicker {
        margin: 0 0 12px;
        color: var(--muted);
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .nav-panel-title {
        margin: 0 0 16px;
        font-size: 1.06rem;
        line-height: 1.02;
        color: var(--ink);
    }

    .nav-panel-links {
        display: grid;
        gap: 2px;
    }

    .nav-panel-links.tight {
        margin-top: 0;
    }

    .nav-panel-links a {
        display: block;
        padding: 7px 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(233, 225, 242, .88);
        color: var(--ink);
        font-size: .79rem;
        font-weight: 500;
    }

    .nav-panel-links .nav-link-button,
    .mega-links .nav-link-button {
        display: block;
        width: 100%;
        padding: 7px 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(233, 225, 242, .88);
        color: var(--ink);
        font-size: .79rem;
        font-weight: 500;
        text-align: left;
    }

    .nav-panel-links a:hover,
    .nav-panel-links .nav-link-button:hover,
    .mega-links a:hover,
    .mega-links .nav-link-button:hover,
    .mega-group-title:hover {
        color: var(--plum);
        border-color: rgba(91, 42, 134, .18);
    }

    .mega-shell {
        display: grid;
        grid-template-columns: minmax(210px, 1.05fr) minmax(240px, 1.15fr) minmax(280px, 1.35fr);
        gap: 14px;
        align-items: start;
    }

    .mega-pane {
        min-height: 420px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .84);
        border: 1px solid rgba(233, 225, 242, 1);
    }

    .mega-pane-kicker {
        margin: 0 0 10px;
        color: var(--muted);
        font-size: .74rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .mega-pane-list {
        display: grid;
        gap: 8px;
    }

    .mega-pane-item {
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid rgba(233, 225, 242, .96);
        background: rgba(255, 255, 255, .82);
        color: var(--ink);
        text-align: left;
        cursor: pointer;
        transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }

    .mega-pane-item strong,
    .mega-pane-item span {
        display: block;
    }

    .mega-pane-item strong {
        font-size: .92rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .mega-pane-item span {
        margin-top: 4px;
        color: var(--muted);
        font-size: .77rem;
        font-weight: 700;
        line-height: 1.35;
    }

    .mega-pane-item.is-active,
    .mega-pane-item:hover {
        border-color: rgba(91, 42, 134, .24);
        box-shadow: 0 12px 28px rgba(44, 27, 58, .08);
        transform: translateY(-1px);
    }

    .mega-pane-item.is-active strong,
    .mega-pane-item:hover strong {
        color: var(--plum);
    }

    .mega-pane-panel {
        display: none;
    }

    .mega-pane-panel.is-active {
        display: block;
    }

    .mega-pane-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(233, 225, 242, .78);
    }

    .mega-pane-head strong {
        color: var(--ink);
        font-size: .92rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .mega-pane-head a {
        color: var(--plum);
        font-size: .76rem;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mega-pane-links {
        display: grid;
        gap: 6px;
    }

    .mega-pane-links a {
        display: block;
        padding: 8px 0;
        color: var(--muted);
        font-size: .86rem;
        font-weight: 700;
        border-bottom: 1px solid rgba(233, 225, 242, .65);
    }

    .mega-pane-links a:last-child {
        border-bottom: 0;
    }

    .mega-pane-head a:hover,
    .mega-pane-links a:hover,
    .mega-pane-links a.is-active {
        color: var(--plum);
    }

    .mega-grid,
    .mega-group,
    .mega-subgroups,
    .mega-subgroup,
    .mega-group-title,
    .mega-subtitle,
    .mega-sub-links,
    .mega-sub-links-root {
        all: unset;
    }

    .mega-actions {
        margin-top: 8px;
    }

    .mega-actions-root {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(233, 225, 242, .78);
    }

    .mega-actions a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--plum);
        font-size: .82rem;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
    }

    .mega-actions a:hover {
        color: var(--ink);
    }

    .mega-links {
        display: grid;
        gap: 2px;
    }

    .mega-links-scroll {
        max-height: 300px;
        overflow: auto;
        padding-right: 6px;
    }

    .mega-links a {
        display: block;
        padding: 7px 0;
        color: var(--muted);
        font-size: .79rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(233, 225, 242, .7);
    }

    .mega-group-title {
        display: block;
        margin-bottom: 6px;
        color: var(--ink);
        font-size: .7rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(233, 225, 242, .92);
    }

    .mega-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
        align-items: start;
    }

    .mega-links a:last-child {
        border-bottom: 0;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(290px, .9fr);
        gap: 22px;
        padding: 30px;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(241, 208, 122, .32) 0%, rgba(255, 255, 255, .76) 95%);
        color: #5c3600;
        border: 1px solid rgba(217, 164, 65, .35);
        font-size: .82rem;
        font-weight: 800;
        letter-spacing: .02em;
    }

    .hero-title {
        margin: 18px 0 14px;
        font-size: clamp(2.2rem, 5vw, 4rem);
        line-height: .96;
        letter-spacing: -.04em;
        color: var(--ink);
    }

    .hero-subtitle {
        margin: 0;
        max-width: 48rem;
        font-size: 1.06rem;
        line-height: 1.72;
        color: var(--muted);
    }

    .hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 22px;
    }

    .metric {
        min-width: 152px;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .84);
        border: 1px solid rgba(233, 225, 242, 1);
        box-shadow: var(--shadow-soft);
    }

    .metric-label {
        font-size: .78rem;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--muted);
        font-weight: 700;
    }

    .metric-value {
        margin-top: 8px;
        font-size: 1.5rem;
        line-height: 1;
        color: var(--ink);
        font-weight: 800;
    }

    .hero-side {
        position: relative;
        overflow: hidden;
        padding: 22px;
    }

    .hero-side::before {
        content: "";
        position: absolute;
        inset: -10% -20% auto auto;
        width: 260px;
        height: 260px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(217, 164, 65, .25) 0%, rgba(217, 164, 65, 0) 65%);
        pointer-events: none;
    }

    .hero-side h2,
    .hero-side h3 {
        margin: 0 0 10px;
        color: var(--ink);
        line-height: 1.1;
    }

    .hero-side p {
        margin: 0;
        color: var(--muted);
        line-height: 1.68;
    }

    .hero-side-stack {
        display: grid;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .hero-image-card {
        overflow: hidden;
        padding: 0;
    }

    .hero-image-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .mini-card {
        padding: 16px;
        border-radius: 18px;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .84);
        box-shadow: var(--shadow-soft);
    }

    .mini-card strong {
        display: block;
        margin-bottom: 6px;
        color: var(--ink);
    }

    .btn-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 18px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 12px 18px;
        border-radius: 16px;
        border: 0;
        font-weight: 750;
        font-size: .97rem;
        letter-spacing: .01em;
        cursor: pointer;
        text-decoration: none;
        transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
    }

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
        color: #fff;
    }

    .btn-primary {
        color: #fff;
        text-decoration: none;
        text-decoration-color: transparent;
        background: linear-gradient(rgba(31, 157, 106, 1), rgb(53, 177, 127) 38.66%, rgba(19, 122, 82, 1));
        box-shadow: 0 14px 34px rgba(31, 157, 106, .22), inset 0 1px 0 rgba(255, 255, 255, .40);
    }

    .btn-secondary {
        color: var(--ink);
        background: linear-gradient(180deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .78) 100%);
        border: 1px solid rgba(233, 225, 242, 1);
        box-shadow: 0 12px 28px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .75);
    }

    .main-shell {
        padding: 2px 0 56px;
    }

    .cookie-banner {
        padding: 14px 0;
        border-bottom: 1px solid rgba(233, 225, 242, .9);
        background: rgba(36, 22, 47, .94);
        color: #fff;
    }

    .cookie-banner-panel {
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        background: rgba(255, 255, 255, .08);
        border-color: rgba(255, 255, 255, .12);
        color: #fff;
    }

    .cookie-banner-copy {
        display: grid;
        gap: 6px;
        max-width: 900px;
    }

    .cookie-banner-title {
        font-size: 15px;
    }

    .cookie-banner-text {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, .82);
    }

    .cookie-banner-link {
        color: #F1D07A;
    }

    .cookie-banner-accept {
        white-space: nowrap;
    }

    .section {
        margin-bottom: 22px;
        padding: 24px;
        border-radius: 24px;
    }

    .section-title {
        margin: 0 0 10px;
        font-size: 1.45rem;
        line-height: 1.08;
        color: var(--ink);
    }

    .section-intro {
        margin: 0 0 18px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 56rem;
    }

.badge-list,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-list.has-top-gap {
    margin-top: 18px;
}

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        border-radius: 999px;
        font-size: .82rem;
        font-weight: 700;
        color: var(--ink);
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .82);
        box-shadow: 0 10px 28px rgba(44, 27, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .85);
    }

    .chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: .84rem;
        font-weight: 700;
        line-height: 1;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .84);
        color: var(--ink);
        box-shadow: 0 10px 28px rgba(44, 27, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .86);
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
    }

    .chip:hover {
        transform: translateY(-1px);
        color: var(--plum);
        border-color: rgba(91, 42, 134, .24);
        box-shadow: 0 12px 30px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .88);
    }

    .chip-active {
        background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(250, 244, 255, .92) 100%);
        border-color: rgba(91, 42, 134, .18);
    }

    .focus-ring:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 4px rgba(91, 42, 134, .14), 0 12px 30px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .88);
    }

    .badge-gold {
        color: #5c3600;
        border-color: rgba(217, 164, 65, .45);
        background: linear-gradient(180deg, rgba(241, 208, 122, .34) 0%, rgba(255, 255, 255, .76) 95%);
    }

    .badge-green {
        color: #0F5132;
        border-color: rgba(31, 157, 106, .35);
        background: linear-gradient(180deg, rgba(31, 157, 106, .18) 0%, rgba(255, 255, 255, .76) 95%);
    }

    .badge-free {
        color: #0F5132;
        border-color: rgba(31, 157, 106, .35);
        background: linear-gradient(180deg, rgba(31, 157, 106, .18) 0%, rgba(255, 255, 255, .76) 95%);
    }

    .badge-busy {
        color: #7A0E2C;
        border-color: rgba(225, 29, 72, .30);
        background: linear-gradient(180deg, rgba(225, 29, 72, .16) 0%, rgba(255, 255, 255, .76) 95%);
    }

    .dot-free {
        background: var(--green);
        box-shadow: 0 0 0 3px rgba(31, 157, 106, .14);
    }

    .dot-busy {
        background: #E11D48;
        box-shadow: 0 0 0 3px rgba(225, 29, 72, .14);
    }

    .grid-two {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 18px;
    }

    .grid-three {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .page-list,
    .link-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 16px;
    }

    .card-link,
    .agent-card,
    .info-card {
        display: block;
        padding: 18px;
        border-radius: 20px;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .82);
        box-shadow: var(--shadow-soft);
    }

    .card-link:hover,
    .agent-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 42px rgba(44, 27, 58, .12);
    }

    .card-title {
        margin: 0 0 8px;
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--ink);
    }

    .card-copy {
        margin: 0;
        color: var(--muted);
        line-height: 1.66;
    }

    .card-route {
        margin-top: 12px;
        font-size: .84rem;
        color: var(--plum);
        font-weight: 700;
        word-break: break-word;
    }

    .agent-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .agent-card,
    .profileCard {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 0;
        border-radius: 28px;
        background: rgba(255, 255, 255, .84);
        border: 1px solid rgba(233, 225, 242, .92);
        box-shadow: 0 18px 55px rgba(44, 27, 58, .10), inset 0 1px 0 rgba(255, 255, 255, .76);
        transition: transform .12s ease, box-shadow .12s ease;
    }

    .agent-card:hover,
    .profileCard:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 42px rgba(44, 27, 58, .12);
    }

    .profileHero {
        position: relative;
        min-height: 260px;
        background-size: cover;
        background-position: center;
    }

    .profileHero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(36, 22, 47, .02) 0%, rgba(36, 22, 47, .10) 38%, rgba(36, 22, 47, .58) 100%),
            radial-gradient(380px 180px at 18% 12%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 70%);
        pointer-events: none;
    }

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

    .profileTopRow {
        position: absolute;
        top: 16px;
        left: 16px;
        right: 16px;
        z-index: 2;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
    }

    .profileAvatarWrap {
        position: relative;
        display: inline-flex;
        align-items: flex-start;
    }

    .profileAvatar {
        width: 72px;
        height: 72px;
        border-radius: 999px;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, .82);
        box-shadow: 0 12px 26px rgba(36, 22, 47, .20);
    }

    .profileAvatar.state-online {
        border-color: rgba(31, 157, 106, .95);
        box-shadow: 0 12px 26px rgba(36, 22, 47, .20), 0 0 0 3px rgba(31, 157, 106, .18);
    }

    .profileAvatar.state-busy {
        border-color: rgba(225, 29, 72, .95);
        box-shadow: 0 12px 26px rgba(36, 22, 47, .20), 0 0 0 3px rgba(225, 29, 72, .16);
    }

    .profileAvatar.state-away {
        border-color: rgba(59, 130, 246, .95);
        box-shadow: 0 12px 26px rgba(36, 22, 47, .20), 0 0 0 3px rgba(59, 130, 246, .15);
    }

    .home-card-avatar {
        border-width: 4px;
    }

    .profileStatusChip {
        position: absolute;
        top: 5px;
        left: 49px;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 6px;
        padding: 5px 10px;
        border-radius: 999px;
        font-size: .875rem;
        font-weight: 500;
        letter-spacing: .01em;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 10px 24px rgba(36, 22, 47, .12);
    }

    .profileStatusChipInline {
        display: inline-flex;
        flex-wrap: nowrap;
        font-size: 12px;
        padding: 2px 4px;
        border-radius: 999px;
        font-weight: 500;
        min-width: max-content;
        white-space: nowrap;
    }

    .profileStatusChipInline .js-status {
        white-space: nowrap;
    }

    .home-card-status {
        top: auto;
        left: 20px;
        right: auto;
        bottom: 104px;
        gap: 4px;
        padding: 4px 8px;
        font-size: 11px;
        line-height: 1;
    }

    .home-card-status .dot {
        width: 6px;
        height: 6px;
    }

    .profileStatusChip .dot {
        width: 7px;
        height: 7px;
    }

    .profileFavBtn {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .20);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 12px 24px rgba(36, 22, 47, .16);
        color: #fff;
        cursor: pointer;
        transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, color .18s ease;
    }

    .profileFavBtn svg {
        width: 24px;
        height: 24px;
    }

    .profileFavBtn.is-on {
        background: rgba(255, 255, 255, .14);
        border-color: rgba(255, 255, 255, .20);
        box-shadow: 0 12px 24px rgba(36, 22, 47, .16);
    }

    .profileFavBtn.is-off {
        background: rgba(255, 255, 255, .14);
    }

    .profileQuickActions {
        position: absolute;
        right: 18px;
        bottom: 54px;
        z-index: 3;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
    }

    .profileActionStack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 50px;
    }

    .profileActionStack-fav {
        margin-left: auto;
    }

    .profileQuickAction {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .20);
        color: #fff;
        box-shadow: 0 12px 24px rgba(36, 22, 47, .16);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        cursor: pointer;
        transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, color .18s ease;
    }

    .profileQuickAction svg {
        width: 24px;
        height: 24px;
        display: block;
    }

    .profileActionLabel {
        width: 100%;
        font-size: 10px;
        line-height: 1;
        text-align: center;
        letter-spacing: .01em;
        text-transform: none;
        font-weight: 500;
        color: rgba(255, 255, 255, .64);
        text-shadow: 0 2px 8px rgba(36, 22, 47, .45);
    }

    .profileActionPrice {
        margin-top: 2px;
        font-size: 9px;
        color: rgba(255, 255, 255, .82);
    }

    .profileFavBtn:hover,
    .profileFavBtn:focus-visible,
    .profileQuickAction:hover,
    .profileQuickAction:focus-visible {
        background: linear-gradient(180deg, rgba(52, 194, 122, .82) 0%, rgba(31, 157, 106, .92) 100%);
        border-color: rgba(176, 247, 214, .68);
        box-shadow: 0 18px 30px rgba(31, 157, 106, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
        transform: translateY(-1px);
        color: #fff;
    }

    .profileBottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 20px;
        color: #fff;
    }

    .profileBottom .agent-name {
        margin: 0;
        font-size: 1.5rem;
        line-height: 1.2;
        color: #fff;
        font-weight: 600;
    }

    .profileHeadline {
        margin-top: 4px;
        font-size: .875rem;
        line-height: 1.35;
        color: rgba(255, 255, 255, .80);
        font-weight: 500;
    }

    .profileMeta {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .profileRoleLine {
        margin-top: 8px;
        font-size: .775rem;
        line-height: 1.35;
        color: rgba(255, 255, 255, .80);
        font-weight: 500;
    }

    .profileCardMetaChip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .20);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .1px;
        color: #fff;
    }

    .profileBody {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        padding: 18px 20px 20px;
    }

    .home-card-headline {
        margin-top: 0;
        font-size: .92rem;
        line-height: 1.45;
        color: var(--ink);
        font-weight: 600;
    }

    .profileSummary {
        margin: 0;
        font-size: .875rem;
        line-height: 1.625;
        color: var(--muted);
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .profileTags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
    }

    .profileTag {
        display: inline-flex;
        align-items: center;
        padding: 4px 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .82);
        border: 1px solid rgba(233, 225, 242, .75);
        box-shadow: 0 8px 20px rgba(44, 27, 58, .04), inset 0 1px 0 rgba(255, 255, 255, .84);
        font-size: 9px;
        font-weight: 650;
        color: var(--ink);
    }

    .profileActions {
        display: flex;
        align-items: stretch;
        margin-top: auto;
        padding-top: 20px;
    }

    .profileActions .btn {
        width: 100%;
    }

    .profileActions a.btn,
    .profileActions a.btn:visited,
    .profileActions a.btn:hover,
    .profileActions a.btn:focus-visible {
        color: #fff;
        text-decoration: none;
        text-decoration-color: transparent;
    }

    .profileConsultButton {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .profileConsultButtonIcon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .profileConsultButtonIcon svg {
        width: 18px;
        height: 18px;
    }

    @media (min-width: 861px) {
        .profileCard .profileConsultButton {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .profileCard:hover .profileConsultButton,
        .profileCard:focus-within .profileConsultButton {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
    }

    .signup-actions-tight {
        margin-top: 4px;
    }

    .page-title-tight {
        margin-top: 8px;
    }

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    justify-content: stretch;
    overflow: visible;
}

.article-shell.article-shell-wide-sidebar {
    grid-template-columns: minmax(0, .72fr) minmax(300px, .28fr);
    overflow: visible;
}

.article-shell.article-shell-single {
    grid-template-columns: minmax(0, 1fr);
}

.hero-grid.hero-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

    .summary-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 18px;
    }

    .summary-card {
        padding: 16px 18px;
        border-radius: 18px;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .84);
        box-shadow: var(--shadow-soft);
    }

    .summary-card strong {
        display: block;
        margin-bottom: 8px;
        font-size: .82rem;
        line-height: 1.2;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .summary-card p {
        margin: 0;
        color: var(--ink);
        line-height: 1.62;
        font-weight: 600;
    }

    .article-card,
    .sidebar-card {
        padding: 24px;
        border-radius: 24px;
    }

    .article-card article {
        font-size: 1.03rem;
        line-height: 1.82;
        color: var(--ink-2);
    }

    .article-card article > :first-child {
        margin-top: 0;
    }

    .lead-card {
        margin-bottom: 22px;
        padding: 18px 20px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(91, 42, 134, .08) 0%, rgba(255, 255, 255, .82) 100%);
        border: 1px solid rgba(233, 225, 242, 1);
        box-shadow: var(--shadow-soft);
    }

    .lead-card strong {
        display: block;
        margin-bottom: 8px;
        font-size: .82rem;
        line-height: 1.2;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--plum);
    }

    .lead-card p {
        margin: 0;
        color: var(--ink);
        font-size: 1rem;
        line-height: 1.75;
    }

    .article-card article h1,
    .article-card article h2,
    .article-card article h3 {
        color: var(--ink);
        line-height: 1.08;
        letter-spacing: -.02em;
    }

    .article-card article h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin: 0 0 18px;
    }

    .article-card article h2 {
        font-size: 1.55rem;
        margin: 34px 0 14px;
    }

    .article-card article h3 {
        font-size: 1.18rem;
        margin: 24px 0 10px;
    }

.article-card article p,
.article-card article ul,
.article-card article ol,
.article-card article blockquote {
    margin: 0 0 16px;
    }

    .article-card article ul,
    .article-card article ol {
        padding-left: 22px;
    }

    .article-card article li + li {
        margin-top: 8px;
    }

    .article-card article a {
        color: var(--plum);
        text-decoration: underline;
        text-decoration-color: rgba(91, 42, 134, .25);
        text-underline-offset: 3px;
    }

    .article-card article strong {
        color: var(--ink);
    }

    .article-card article blockquote {
        padding: 18px 20px;
        border-left: 4px solid var(--gold);
        background: rgba(241, 208, 122, .16);
        border-radius: 0 18px 18px 0;
    }

.article-card article pre {
    overflow-x: auto;
    background: #24162F;
    color: #F7F3FC;
        padding: 16px;
        border-radius: 18px;
    }

    .article-card article code {
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

.breadcrumb {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: .88rem;
    color: var(--muted);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0 !important;
    list-style: none !important;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.breadcrumb li + li::before {
    content: "›";
    color: var(--muted);
    font-size: 1.05em;
    opacity: .72;
}

.breadcrumb [aria-current="page"] {
    color: var(--ink);
    font-weight: 600;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    color: var(--plum);
    text-decoration: underline;
}

.breadcrumb li > span[itemprop="name"] {
    display: inline-block;
}

.breadcrumb {
    margin-top: 18px;
    margin-bottom: 18px;
}

.breadcrumb.breadcrumb-offset {
    margin-left: 0;
}

.hub-section + .hub-section {
    margin-top: 28px;
}

.hub-link-list {
    margin: 12px 0 0;
    padding-left: 20px;
}

.hub-link-list li + li {
    margin-top: 8px;
}

.hub-cta {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 24px;
}

body.page-content .hero-shell {
    margin-top: 27px;
    margin-bottom: 27px;
}

body.page-content .main-shell {
    padding-top: 0;
}

@media (min-width: 861px) {
    body.page-content .hero-shell {
        margin-top: 17px;
        margin-bottom: 25px;
    }

    body.page-content-rich-sidebar-template .hero-shell {
        margin-top: 17px;
    }

    body.page-content-rich-sidebar-template .hero-callout.glass {
        margin-top: 21px;
    }

    body.page-content-rich-sidebar-template .cluster-sidebar-rail {
        gap: 26px;
        align-content: start;
    }

    body.page-content-rich-sidebar-template .cluster-sidebar-card {
        height: auto;
        align-self: start;
    }

    body.page-content-rich-sidebar-template .sidebar-stack.keyword-sidebar-stack {
        align-content: start;
    }
}

    .hero-callout {
        margin-bottom: 0;
        padding: 22px 24px;
        border-radius: 24px;
    }

    .hero-callout-copy {
        margin: 0;
        color: var(--ink);
        font-size: clamp(1rem, 2vw, 1.14rem);
        line-height: 1.65;
        text-align: center;
        font-weight: 700;
    }

    .hero-callout-copy strong {
        color: inherit;
    }

    .page-flow {
        display: grid;
        gap: 27px;
    }

    .page-flow > .section,
    .page-flow > .hero-callout,
    .page-flow > .landing-proof,
    .page-flow > .g-border,
    .page-flow > .glass {
        margin-bottom: 0;
    }

    .section.section-plain.content-flow {
        display: grid;
        gap: 27px;
    }

    body.page-content .page-flow > .live-rail-wrap {
        margin-top: 0;
        padding-top: 0;
    }

    body.page-content .section.section-plain.content-flow > .breadcrumb {
        margin-top: 0;
        margin-bottom: 0;
    }

    body.page-content .section.section-plain.content-flow > .article-shell {
        margin-top: 0;
    }

    @media (min-width: 861px) {
        body.page-content-rich-sidebar-template .section.section-plain.content-flow > .breadcrumb {
            margin-top: 0;
            margin-bottom: 0;
        }
    }

    .landing-proof {
        margin: -4px 0 20px;
        padding: 12px 16px;
        border-radius: 18px;
    }

    .landing-proof-label {
        font-size: .78rem;
        font-weight: 700;
        color: var(--muted);
    }

    .landing-proof-value {
        font-size: .94rem;
        line-height: 1.2;
        font-weight: 800;
        color: var(--plum);
    }

    .landing-proof-copy {
        font-size: .9rem;
        color: var(--ink);
    }

    .landing-proof-copy-small {
        font-size: .62rem;
        color: var(--muted);
    }

    .landing-proof-line {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3px 2px;
        text-align: center;
        line-height: 1.45;
    }

    .landing-proof-item {
        display: inline-flex;
        align-items: baseline;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-strip-title {
        margin: 0 0 14px;
        font-size: 1.05rem;
        line-height: 1.2;
        color: var(--ink);
    }

    .home-featured-grid {
        display: block;
    }

    .callout-number {
        display: inline-flex;
        align-items: center;
        margin: 0 4px;
        vertical-align: middle;
    }

    .live-rail-wrap {
        position: relative;
        margin-top: 27px;
        padding: 0px 0 0px;
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }

    .live-rail-track {
        display: flex;
        width: max-content;
        gap: 14px;
        animation: liveRailScroll 34s linear infinite;
        will-change: transform;
    }

    .live-rail-wrap:hover .live-rail-track {
        animation-play-state: paused;
    }

    .live-rail-group {
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 0 0 auto;
    }

    .live-rail-card {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        padding: 10px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .82);
        border: 1px solid rgba(233, 225, 242, .92);
        box-shadow: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex: 0 0 auto;
    }

    .live-rail-avatar {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, .84);
        box-shadow: 0 10px 24px rgba(36, 22, 47, .14);
        flex: 0 0 auto;
    }

    .live-rail-avatar.state-online {
        border-color: rgba(31, 157, 106, .95);
        box-shadow: 0 10px 24px rgba(36, 22, 47, .14), 0 0 0 3px rgba(31, 157, 106, .14);
    }

    .live-rail-avatar.state-busy {
        border-color: rgba(225, 29, 72, .95);
        box-shadow: 0 10px 24px rgba(36, 22, 47, .14), 0 0 0 3px rgba(225, 29, 72, .12);
    }

    .live-rail-avatar.state-away {
        border-color: rgba(59, 130, 246, .95);
        box-shadow: 0 10px 24px rgba(36, 22, 47, .14), 0 0 0 3px rgba(59, 130, 246, .12);
    }

    .live-rail-meta {
        display: grid;
        gap: 3px;
        min-width: 0;
        text-align: left;
    }

    .live-rail-meta strong {
        display: block;
        color: var(--ink);
        font-size: .9rem;
        line-height: 1.1;
        font-weight: 800;
        white-space: nowrap;
    }

    .live-rail-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--muted);
        font-size: .77rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .live-rail-call {
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        text-decoration-color: transparent;
        background: linear-gradient(rgba(31, 157, 106, 1), rgb(53, 177, 127) 38.66%, rgba(19, 122, 82, 1));
        box-shadow: 0 12px 24px rgba(31, 157, 106, .22), inset 0 1px 0 rgba(255, 255, 255, .34);
        flex: 0 0 auto;
        appearance: none;
        -webkit-appearance: none;
    }

    .live-rail-call svg {
        width: 15px;
        height: 15px;
    }

    .live-rail-call:hover {
        color: #fff;
        transform: translateY(-1px);
    }

    .home-agent-banner {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr) auto;
        gap: 18px;
        align-items: center;
        padding: 18px 20px;
        border-radius: 24px;
    }

    .home-agent-banner-image {
        width: 110px;
        height: 110px;
        border-radius: 22px;
        object-fit: cover;
        box-shadow: 0 14px 34px rgba(44, 27, 58, .16);
    }

    .home-agent-banner-copy {
        display: grid;
        gap: 6px;
        min-width: 0;
    }

    .home-agent-banner-copy strong {
        font-size: 1.2rem;
        line-height: 1.15;
        color: var(--ink);
    }

    .home-agent-banner-copy span {
        color: var(--muted);
        line-height: 1.45;
    }

    .home-agent-banner-actions {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    @keyframes liveRailScroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-50% - 7px));
        }
    }

    .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        display: inline-block;
    }

    .dot-gold {
        background: var(--gold);
        box-shadow: 0 0 0 4px rgba(217, 164, 65, .16);
    }

    .dot-free {
        background: var(--green);
        box-shadow: 0 0 0 4px rgba(31, 157, 106, .14);
    }

    .badge-free {
        color: #0F5132;
        border-color: rgba(31, 157, 106, .35);
        background: linear-gradient(180deg, rgba(31, 157, 106, .18) 0%, rgba(255, 255, 255, .76) 95%);
    }

    .agent-toolbar {
        display: grid;
        gap: 16px;
        margin-bottom: 22px;
    }

    .filter-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .82);
        color: var(--ink);
        font-size: .88rem;
        font-weight: 800;
        letter-spacing: .02em;
        box-shadow: 0 12px 28px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .76);
        cursor: pointer;
        transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
    }

    .filter-pill:hover {
        color: var(--plum);
        background: linear-gradient(180deg, rgba(91, 42, 134, .08) 0%, rgba(255, 255, 255, .88) 100%);
        border-color: rgba(91, 42, 134, .16);
        box-shadow: 0 14px 30px rgba(44, 27, 58, .10), inset 0 1px 0 rgba(255, 255, 255, .82);
    }

    @media (prefers-reduced-motion: reduce) {
        .live-rail-track {
            animation: none;
        }
    }

    .search-shell {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 58px;
        padding: 12px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .88);
        border: 1px solid rgba(233, 225, 242, 1);
        box-shadow: 0 12px 28px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .78);
    }

    .search-shell::before {
        content: "⌕";
        flex: 0 0 auto;
        color: var(--muted);
        font-size: 1.15rem;
        font-weight: 800;
        line-height: 1;
    }

    .search-input {
        width: 100%;
        padding: 0;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--ink);
        font: inherit;
        font-size: 1rem;
        font-weight: 600;
    }

    .search-input::placeholder {
        color: var(--muted);
        opacity: 1;
    }

    .breadcrumb a {
        color: var(--muted);
        font-weight: 700;
    }

.sidebar-stack {
    display: grid;
    gap: 18px;
}

.section.section-plain {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.sidebar-card.sidebar-card-spaced {
    margin-top: 24px;
}

.hero-media-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(44, 27, 58, .14);
}

.sidebar-agent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sidebar-agent-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 10px 24px rgba(44, 27, 58, .10);
}

.faq-item.faq-item-divided {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(233, 225, 242, 1);
}

    .sidebar-card h3 {
        margin: 0 0 10px;
        font-size: 1.08rem;
        color: var(--ink);
    }

    .sidebar-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

    .sidebar-list {
        list-style: none;
        margin: 14px 0 0;
        padding: 0;
        display: grid;
        gap: 10px;
    }

    .sidebar-list li {
        padding: 12px 14px;
        border-radius: 16px;
        border: 1px solid rgba(233, 225, 242, 1);
        background: rgba(255, 255, 255, .72);
    }

    .sidebar-list strong {
        display: block;
        margin-bottom: 4px;
        color: var(--ink);
        font-size: .95rem;
    }

    .sidebar-list span {
        color: var(--muted);
        line-height: 1.55;
        font-size: .9rem;
    }

    .cta-panel {
        position: relative;
        overflow: hidden;
        color: #fff;
        background: linear-gradient(135deg, rgba(91, 42, 134, 1) 0%, rgba(56, 21, 89, 1) 55%, rgba(31, 157, 106, .92) 120%);
        box-shadow: 0 24px 60px rgba(91, 42, 134, .24);
    }

    .cta-panel::before {
        content: "";
        position: absolute;
        inset: auto -10% -40% auto;
        width: 280px;
        height: 280px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(241, 208, 122, .35) 0%, rgba(241, 208, 122, 0) 70%);
    }

    .cta-panel h3,
    .cta-panel p {
        position: relative;
        z-index: 1;
    }

    .cta-panel h3 {
        margin: 0 0 10px;
        font-size: 1.45rem;
    }

    .cta-panel p {
        margin: 0 0 16px;
        color: rgba(255, 255, 255, .85);
        line-height: 1.72;
    }

    .site-footer {
        padding: 12px 0 42px;
    }

    .footer-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
        gap: 18px;
        padding: 24px;
        border-radius: 24px;
    }

    .footer-shell h3 {
        margin: 0 0 10px;
        color: var(--ink);
        font-size: 1.08rem;
    }

    .footer-shell p,
    .footer-shell li,
    .footer-shell a {
        color: var(--muted);
        line-height: 1.68;
    }

    .footer-meta-title {
        margin: 0;
    }

    .footer-meta-copy {
        margin: 10px 0 0;
        color: var(--muted);
        max-width: 48ch;
    }

    .footer-links {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 18px;
    }

    .divider {
        height: 1px;
        margin: 18px 0 0;
        background: linear-gradient(90deg, rgba(233, 225, 242, 0) 0%, rgba(233, 225, 242, 1) 18%, rgba(233, 225, 242, 1) 82%, rgba(233, 225, 242, 0) 100%);
    }

    .empty-state {
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .74);
        border: 1px dashed rgba(107, 95, 117, .35);
        color: var(--muted);
    }

    @media (max-width: 1100px) {
        .hero-grid,
        .footer-shell,
        .grid-three,
        .summary-grid,
        .agent-grid {
            grid-template-columns: 1fr 1fr;
        }

        .article-shell {
            grid-template-columns: 1fr;
        }

        .article-shell.article-shell-wide-sidebar {
            grid-template-columns: 1fr;
        }

        .nav-panel-shell {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 860px) {
        body {
            background-image: none;
            background-color: #FCF7F1;
        }

        body::before {
            display: block;
            position: fixed;
            inset: 0;
            background-image:
                radial-gradient(108vw 66vw at 8% 4%, rgba(91, 42, 134, .26), rgba(91, 42, 134, 0) 64%),
                radial-gradient(104vw 58vw at 94% 8%, rgba(217, 164, 65, .24), rgba(217, 164, 65, 0) 60%),
                radial-gradient(112vw 64vw at 84% 86%, rgba(91, 42, 134, .16), rgba(91, 42, 134, 0) 66%),
                radial-gradient(92vw 54vw at 18% 92%, rgba(217, 164, 65, .18), rgba(217, 164, 65, 0) 62%),
                linear-gradient(180deg, #FFFDFB 0%, #FCF7F1 46%, #F2E8DC 100%);
            background-repeat: no-repeat;
            background-size: cover;
            mix-blend-mode: normal;
            opacity: 1;
            pointer-events: none;
            z-index: 0;
        }

        body > * {
            position: relative;
            z-index: 1;
        }

        body.page-content-rich-sidebar-template .hero-callout.glass {
            background: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        #specialisten.section.glass {
            margin-bottom: 0;
            padding: 52px 0 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        #specialisten .profileCard,
        #specialisten .agent-card {
            background: rgba(255, 255, 255, .30);
        }

        #specialisten .agent-toolbar {
            display: none;
        }

        .home-featured-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .live-rail-wrap {
            margin-top: 20px;
            padding-top: 6px;
        }

        .home-agent-banner {
            grid-template-columns: 1fr;
            justify-items: center;
            text-align: center;
        }

        .home-agent-banner-actions {
            justify-content: center;
        }

        .hero-grid,
        .article-shell,
        .footer-shell,
        .grid-two,
        .grid-three,
        .summary-grid,
        .agent-grid {
            grid-template-columns: 1fr;
        }

    .brand img {
        width: min(140px, calc(100vw - 104px));
        height: auto;
        max-height: 34px;
        }
    }

    .mobile-app-toolbar {
        display: none;
    }

    @media (max-width: 980px) {
        body {
            padding-bottom: 88px;
        }

        .site-header {
            padding: 0;
            top: 0;
        }

        .site-header .wrap {
            width: 100%;
        }

        .site-header .bar {
            display: grid;
            grid-template-columns: 48px 1fr 48px;
            align-items: center;
        }

        .site-header .g-border,
        .site-header .g-border > .inner,
        .site-header .bar {
            border-radius: 0;
        }

        .site-header .g-border {
            padding: 0;
            box-shadow: 0 8px 24px rgba(44, 27, 58, .12);
        }

        .site-header .g-border > .inner {
            border-left: 0;
            border-right: 0;
        }

        .site-header .bar {
            min-height: 64px;
            padding: 12px 16px;
        }

        .site-header .brand {
            display: none;
        }

        .mobile-header-back {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border: 1px solid rgba(233, 225, 242, 1);
            border-radius: 14px;
            background: linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 100%);
            color: var(--plum);
            box-shadow: 0 12px 28px rgba(44, 27, 58, .10), inset 0 1px 0 rgba(255, 255, 255, .75);
            cursor: pointer;
        }

        .mobile-header-back[hidden] {
            visibility: hidden;
            display: inline-flex;
        }

        .mobile-header-back .lucide,
        .mobile-header-back i[data-lucide] {
            width: 20px;
            height: 20px;
            display: block;
        }

        .mobile-header-title {
            display: block;
            text-align: center;
            color: var(--plum);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: .01em;
            line-height: 1;
        }

        .site-header .menu-toggle {
            justify-self: end;
        }

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

        .mega-pane {
            min-height: 0;
        }

        .mobile-app-toolbar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 41;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            align-items: stretch;
            background: rgba(255, 255, 255, .96);
            border-top: 1px solid rgba(233, 225, 242, .96);
            box-shadow: 0 -10px 30px rgba(44, 27, 58, .10);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .mobile-app-toolbar__item {
            min-width: 0;
            min-height: 64px;
            display: grid;
            place-items: center;
            gap: 4px;
            padding: 8px 6px 10px;
            color: var(--plum);
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            text-align: center;
            border-right: 1px solid rgba(233, 225, 242, .82);
            background: transparent;
        }

        .mobile-app-toolbar__item:last-child {
            border-right: 0;
        }

        .mobile-app-toolbar__item i,
        .mobile-app-toolbar__item .lucide {
            width: 20px;
            height: 20px;
            display: block;
        }

        .mobile-app-toolbar__item:hover,
        .mobile-app-toolbar__item:focus-visible {
            background: rgba(91, 42, 134, .06);
            color: var(--plum);
        }
    }

    @media (max-width: 640px) {
        .wrap {
            width: min(100% - 20px, 1180px);
        }

        .hero-grid,
        .section,
        .article-card,
        .sidebar-card,
        .footer-shell {
            padding: 0;
            margin-top: 0;
        }

        .article-shell .article-card,
        .article-shell .sidebar-card {
            padding: 20px;
        }

        .g-border .hero-grid,
        .footer-shell {
            padding: 20px;
        }

        .site-header .bar {
            gap: 12px;
            padding: 14px 16px;
        }

        .mobile-link-grid.cols-2,
        .mega-grid {
            grid-template-columns: 1fr;
        }

        .hero-title {
            font-size: 2rem;
        }

        .btn-row {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }

        .filter-pills {
            display: grid;
            grid-template-columns: 1fr;
        }

        .footer-links {
            grid-template-columns: 1fr;
        }

        .profileActions {
            flex-direction: column;
        }

        .home-card-headline {
            display: none;
        }

        .profileStatusChip {
            font-size: .875rem;
            padding: 5px 9px;
        }
    }

    @media (max-width: 340px) {
        .site-header .bar {
            padding: 12px 14px;
            gap: 10px;
        }

        .brand img {
            width: min(126px, calc(100vw - 96px));
            height: auto;
            max-height: 29px;
        }

        .menu-toggle {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            font-size: 1.8rem;
            flex: 0 0 46px;
        }
    }

.show-mobile-only {
    display: none;
}

@media (max-width: 860px) {
    .show-mobile-only {
        display: block;
    }

    .show-desktop-only {
        display: none;
    }
}

a[href],
button,
input[type='button'],
input[type='submit'],
input[type='reset'] {
    cursor: pointer !important;
}
    .profile-breadcrumb {
        margin-top: 0;
        margin-bottom: 27px;
    }

    .profile-breadcrumb-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
        color: #6b5a7a;
        font-size: 14px;
    }

    .profile-breadcrumb-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .profile-breadcrumb-item:not(:last-child)::after {
        content: "›";
        color: rgba(75, 46, 109, 0.45);
    }

    .profile-breadcrumb-item a {
        color: inherit;
        text-decoration: none;
    }

    .page-profile .main-shell {
        margin-top: 13px;
    }

    .page-profile .breadcrumb {
        margin-top: 0;
        margin-bottom: 27px;
    }

    .page-profile .profile-hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 10px;
        align-items: stretch;
        padding: 0;
        border-radius: 28px;
    }

    .page-profile .profile-image-box {
        height: auto;
    }

    .page-profile .profile-content {
        align-self: start;
    }

    .page-profile .profile-image-frame {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background: #fff;
        padding: 6px;
        border: 1px solid #e5dff0;
        box-shadow: 0 18px 40px rgba(45,31,61,0.12);
        height: 100%;
        display: flex;
    }

    .page-profile .profile-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 14px;
        aspect-ratio: 3/4;
    }

    .page-profile .profile-image-glow {
        position: absolute;
        inset: 10px;
        border-radius: 16px;
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
        pointer-events: none;
    }

    .page-profile .profile-status-shell {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #6b5a7a;
        font-size: 13px;
        padding: 6px 12px;
        border-radius: 14px;
        border: 1px solid rgba(47,163,107,0.35);
        background: rgba(47,163,107,0.08);
    }

    .page-profile .profile-status-dot {
        width: 10px;
        height: 10px;
        background: #2FA36B;
        border-radius: 50%;
        display: inline-block;
    }

    .page-profile .profile-title {
        font-size: 44px;
        margin: 10px 0 0;
        font-weight: 500;
        color: #4b2e6d;
    }

    .page-profile .profile-role-line {
        font-size: 18px;
        color: #6b5a7a;
        margin-top: 4px;
    }

    .page-profile .profile-rating-row {
        margin-top: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .page-profile .profile-rating-stars {
        color: #e0b84c;
        font-size: 18px;
    }

    .page-profile .profile-rating-copy {
        color: #6b5a7a;
        font-size: 14px;
    }

    .page-profile .profile-rating-copy b {
        color: #4b2e6d;
    }

    .page-profile .profile-chip-row {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .page-profile .profile-chip {
        background: rgba(243,240,247,0.68);
        border: 1px solid rgba(229,223,240,0.82);
        padding: 6px 14px;
        border-radius: 18px;
        font-size: 13px;
        box-shadow: 0 4px 10px rgba(45,31,61,0.06);
        backdrop-filter: blur(6px);
    }

    .page-profile .profile-hero-summary {
        margin-top: 27px;
        color: #6b5a7a;
        max-width: 520px;
        line-height: 1.7;
        font-size: 15px;
        max-height: 172px;
        overflow: auto;
        padding-right: 8px;
    }

    .page-profile .profile-hero-actions {
        margin-top: 27px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .page-profile .profile-call-button,
    .page-profile .profile-chat-button,
    .page-profile .sticky-button {
        background: linear-gradient(180deg,#34c27a,#1f9d6a);
        color: #fff;
        padding: 18px 30px;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 25px 60px rgba(47,163,107,0.45), inset 0 2px 6px rgba(255,255,255,0.25);
        font-size: 16px;
        border: none;
        cursor: pointer;
    }

    .page-profile .profile-chat-button,
    .page-profile .sticky-button-chat {
        background: linear-gradient(180deg,#6f4bc2,#4b2e6d);
        box-shadow: 0 25px 60px rgba(75,46,109,0.34), inset 0 2px 6px rgba(255,255,255,0.18);
    }

    .page-profile .profile-call-label {
        margin-top: 27px;
        font-size: 13px;
        color: #6b5a7a;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .page-profile .profile-call-check {
        color: #2FA36B;
        font-weight: 700;
    }

    .page-profile .credits-redirect-shell {
        margin-top: 27px;
    }

    .page-profile .credits-redirect-card {
        background: linear-gradient(180deg,#fff8ef,#f7eedf);
        border: 1px solid rgba(203,168,115,0.35);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(45,31,61,0.08);
    }

    .page-profile .credits-redirect-kicker {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: #9a6d2f;
        font-weight: 700;
    }

    .page-profile .credits-redirect-title {
        margin: 8px 0 10px;
        font-size: 24px;
        color: #4b2e6d;
    }

    .page-profile .credits-redirect-copy {
        margin: 0;
        color: #6b5a7a;
        line-height: 1.6;
    }

    .page-profile .credits-redirect-number {
        margin-top: 14px;
        font-size: 28px;
        font-weight: 700;
        color: #24162f;
    }

    .page-profile .credits-redirect-button {
        margin-top: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 24px;
        border-radius: 999px;
        background: #fbf8dd;
        color: #24162f;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 12px 28px rgba(36,22,47,0.1);
    }

    .page-profile .profile-shell,
    .page-profile .profile-shell-offset {
        max-width: 1200px;
        margin: 27px auto 0;
        padding: 0 20px 0 0;
    }

    .page-profile .profile-shell-offset {
        margin-top: 0;
        padding-top: 9px;
    }

    .page-profile .features-panel {
        background: linear-gradient(180deg,rgba(250,247,252,0.44),rgba(243,237,249,0.44));
        border: 1px solid rgba(210,200,230,0.48);
        backdrop-filter: blur(8px);
        border-radius: 24px;
        padding: 28px;
        box-shadow: 0 24px 60px rgba(45,31,61,0.12), 0 8px 20px rgba(45,31,61,0.06);
    }

    .page-profile .features-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-profile .feature-card {
        background: linear-gradient(180deg,#f6f0fb,#efe7f7);
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        text-align: center;
        flex: 0 1 calc((100% - 60px) / 4);
        max-width: calc((100% - 60px) / 4);
        border-radius: 20px;
    }

    .page-profile .feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        flex: 0 0 52px;
        background: linear-gradient(180deg,#f5ecfb,#efe6f7);
        border: 1px solid #e2d8ef;
        box-shadow: 0 6px 14px rgba(45,31,61,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border-radius: 100px;
    }

    .page-profile .feature-copy {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .page-profile .feature-title {
        font-weight: 600;
        color: #4b2e6d;
        font-size: 16px;
    }

    .page-profile .feature-description {
        font-size: 13px;
        color: #7b6a8a;
        line-height: 1.5;
    }

    .page-profile .profile-story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        align-items: start;
    }

    .page-profile .story-copy {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(45,31,61,0.08);
        border: 1px solid rgba(229,223,240,0.8);
        padding: 28px;
    }

    .page-profile .section-heading {
        font-size: 28px;
        color: #4b2e6d;
        margin: 0 0 12px;
        font-weight: 600;
    }

    .page-profile .section-heading-centered {
        text-align: center;
        margin-bottom: 24px;
    }

    .page-profile .story-rich-text,
    .page-profile .help-card-copy,
    .page-profile .review-body {
        color: #6b5a7a;
        line-height: 1.7;
    }

    .page-profile .story-paragraph-extra {
        margin-top: 10px;
    }

    .page-profile .story-copy-collapse {
        --story-collapsed-height: 430px;
        position: relative;
        max-height: var(--story-collapsed-height);
        overflow: hidden;
    }

    .page-profile .story-copy-collapse.is-expanded {
        max-height: min(78vh, 960px);
        overflow: auto;
        padding-right: 10px;
    }

    .page-profile .story-copy-content {
        position: relative;
        z-index: 1;
    }

    .page-profile .story-copy-fade {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: rgba(188,170,214,0.82);
        box-shadow: 0 -18px 24px rgba(45,31,61,0.14), 0 -4px 10px rgba(45,31,61,0.08);
        pointer-events: none;
        z-index: 2;
    }

    .page-profile .story-copy-collapse.is-expanded .story-copy-fade {
        display: none;
    }

    .page-profile .story-copy-actions {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: -14px;
        padding-top: 22px;
    }

    .page-profile .story-copy-actions::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0;
    }

    .page-profile .story-copy-toggle {
        position: relative;
        z-index: 1;
        appearance: none;
        border: 1px solid rgba(188,170,214,0.9);
        background: rgba(255,255,255,0.96);
        color: #4b2e6d;
        border-radius: 999px;
        padding: 11px 18px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 12px 24px rgba(75,46,109,0.10);
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .page-profile .story-copy-toggle:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(75,46,109,0.14);
        background: rgba(255,255,255,1);
    }

    .page-profile .story-rich-text .rich-text-paragraph {
        margin: 0 0 14px;
    }

    .page-profile .story-rich-text .rich-text-paragraph:last-child {
        margin-bottom: 0;
    }

    .page-profile .story-rich-text strong {
        color: #4b2e6d;
        font-weight: 700;
    }

    .page-profile .story-rich-text em {
        color: #6a5283;
        font-style: italic;
    }

    .page-profile .story-quote-shell,
    .page-profile .story-side-shell {
        display: flex;
        align-items: center;
    }

    .page-profile .story-side-shell {
        align-items: stretch;
    }

    .page-profile .story-quote-card {
        background: linear-gradient(180deg, rgba(246,240,251,0.48), rgba(241,233,248,0.48));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(200,180,230,0.34);
        border-radius: 22px;
        padding: 26px;
        width: 100%;
        box-shadow: 0 16px 40px rgba(45,31,61,0.08);
    }

    .page-profile .story-quote-mark {
        font-size: 28px;
        color: #e0b84c;
    }

    .page-profile .story-quote-copy {
        color: #5f4d6f;
        font-size: 16px;
        line-height: 1.7;
        margin-top: 6px;
    }

    .page-profile .story-quote-author {
        margin-top: 14px;
        color: #7a5c90;
        font-size: 14px;
        font-style: italic;
        text-align: right;
    }

    .page-profile .image-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 5;
        background: #f4edf9;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        overflow: hidden;
    }

    .page-profile .side-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-profile .fade-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(246,240,251,0) 45%, rgba(246,240,251,0.12) 65%, rgba(246,240,251,0.25) 80%, rgba(246,240,251,0.45) 100%);
        pointer-events: none;
    }

    .page-profile .profile-side-card {
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(45,31,61,0.12);
        width: 100%;
    }

    .page-profile .profile-help-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-profile .profile-help-card {
        flex: 0 1 calc((100% - 60px) / 4);
        max-width: calc((100% - 60px) / 4);
        background: linear-gradient(180deg,rgba(246,240,251,0.52),rgba(241,233,248,0.52));
        border-radius: 20px;
        padding: 22px;
        text-align: center;
        border: 1px solid rgba(200,180,230,0.34);
        box-shadow: 0 8px 18px rgba(120,80,180,0.10), 0 2px 6px rgba(45,31,61,0.06);
        backdrop-filter: blur(8px);
    }

    .page-profile .help-card-icon {
        font-size: 28px;
        margin-bottom: 10px;
        color: #9a74c4;
        filter: drop-shadow(0 2px 4px rgba(120,80,180,0.15));
    }

    .page-profile .help-card-title {
        font-weight: 600;
        color: #4b2e6d;
    }

    .page-profile .help-card-copy {
        font-size: 13px;
        color: #7b6a8a;
        margin-top: 6px;
    }

    .page-profile .keyword-link {
        color: inherit;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        line-height: 1.35;
        flex-wrap: wrap;
    }

    .page-profile .keyword-link:hover {
        color: #4b2e6d;
        opacity: 0.92;
    }

    .page-profile .keyword-link-static {
        cursor: default;
    }

    .page-profile .keyword-link-static:hover {
        color: inherit;
        opacity: 1;
    }

    .page-profile .keyword-link-emoji {
        display: inline-block;
        font-size: 12px;
        line-height: 1;
        transform: translateY(-1px);
    }

    .page-profile .profile-reviews-shell {
        margin-top: 27px;
    }

    .page-profile .reviews-wrapper {
        display: block;
    }

    .page-profile .reviews-scroll-shell {
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
    }

    .page-profile .reviews-scroll-track {
        display: flex;
        gap: 18px;
        align-items: stretch;
        width: max-content;
        min-width: 100%;
    }

    .page-profile .reviews-scroll-track .review-card-shell {
        width: min(360px, calc(100vw - 64px));
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .page-profile .review-card-shell {
        padding: 22px;
    }

    .page-profile .review-stars {
        color: #e0b84c;
        margin-bottom: 10px;
    }

    .page-profile .review-meta {
        margin-top: 12px;
        color: #4b2e6d;
        font-weight: 600;
        font-size: 14px;
    }

    .page-profile .review-empty-title {
        color: #4b2e6d;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .page-profile .review-empty-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        background: #fbf8dd;
        color: #24162f;
        text-decoration: none;
        font-weight: 600;
    }

    .page-profile .review-form-shell {
        margin-top: 27px;
    }

    .page-profile .review-form-card {
        background: linear-gradient(180deg, rgba(250,247,252,0.92), rgba(244,238,249,0.92));
        border: 1px solid rgba(210,200,230,0.58);
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(45,31,61,0.08);
        padding: 26px;
    }

    .page-profile .review-form-title {
        color: #4b2e6d;
        font-size: 24px;
        font-weight: 600;
    }

    .page-profile .review-form-copy {
        color: #6b5a7a;
        line-height: 1.7;
        margin: 10px 0 0;
    }

    .page-profile .testimonial-alert {
        border-radius: 16px;
        padding: 14px 16px;
        margin-top: 27px;
        font-size: 14px;
    }

    .page-profile .testimonial-alert-success {
        background: rgba(47,163,107,0.12);
        border: 1px solid rgba(47,163,107,0.26);
        color: #226e49;
    }

    .page-profile .testimonial-alert-error {
        background: rgba(181,71,71,0.10);
        border: 1px solid rgba(181,71,71,0.24);
        color: #8b3b3b;
    }

    .page-profile .testimonial-inline-form {
        display: grid;
        gap: 18px;
        margin-top: 27px;
    }

    .page-profile .testimonial-field {
        display: grid;
        gap: 8px;
    }

    .page-profile .testimonial-field span {
        color: #4b2e6d;
        font-weight: 600;
    }

    .page-profile .testimonial-field input,
    .page-profile .testimonial-field select,
    .page-profile .testimonial-field textarea {
        width: 100%;
        box-sizing: border-box;
        border-radius: 16px;
        border: 1px solid #ddd0ec;
        background: rgba(255,255,255,0.92);
        padding: 14px 16px;
        font: inherit;
        color: #2d1f3d;
    }

    .page-profile .testimonial-field textarea {
        resize: vertical;
        min-height: 180px;
    }

    .page-profile .testimonial-actions {
        display: flex;
        justify-content: flex-start;
    }

    .page-profile .review-honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    body.page-profile {
        padding-bottom: 140px;
    }

    .page-profile .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        transform: translateY(120%);
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .page-profile .sticky-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .page-profile .sticky-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 20px;
        background: linear-gradient(90deg,#2b0f3a,#4a256b);
        color: #fff;
        margin: 0 auto;
        max-width: 1200px;
        pointer-events: auto;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
    }

    .page-profile .sticky-checks {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
    }

    .page-profile .sticky-check-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
    }

    .page-profile .sticky-check-mark {
        color: #c5f2dc;
    }

    .page-profile .sticky-title {
        font-weight: 700;
        font-size: 20px;
    }

    .page-profile .sticky-subtitle {
        margin-top: 4px;
        color: rgba(255,255,255,0.82);
    }

    @media (max-width: 980px) {
        .page-profile .profile-hero-inner,
        .page-profile .profile-story-grid,
        .page-profile .profile-help-grid {
            grid-template-columns: 1fr;
        }

        .page-profile .feature-card {
            flex: 1 1 100%;
            max-width: 100%;
        }

        .page-profile .sticky-inner {
            flex-direction: column;
            align-items: stretch;
        }

        .page-profile .reviews-scroll-track .review-card-shell {
            width: min(320px, calc(100vw - 40px));
        }

        .page-profile .review-form-card {
            padding: 20px;
        }

        .page-profile .story-copy-collapse {
            --story-collapsed-height: 320px;
        }

        .page-profile .story-copy-collapse.is-expanded {
            max-height: min(68vh, 720px);
        }
    }

    @media (max-width: 600px) {
        body.page-profile {
            padding-bottom: 180px;
        }
    }

    @media (max-width: 980px) {
        body.page-profile {
            background:
                radial-gradient(circle at top, rgba(255,255,255,0.92) 0%, rgba(248,242,235,0.94) 36%, rgba(242,233,248,0.98) 100%);
            overflow-x: hidden;
        }

        .page-profile .main-shell {
            margin-top: 0;
            padding-bottom: 180px;
        }

        .page-profile .main-shell > .wrap {
            width: 100%;
            max-width: none;
        }

        .page-profile .profile-mobile-page {
            display: block;
            gap: 18px;
            padding: 0 0 10px;
            overflow-x: hidden;
        }

        .page-profile .profile-mobile-hero-shell,
        .page-profile .profile-mobile-block,
        .page-profile .profile-mobile-actions-grid,
        .page-profile .profile-mobile-usp-grid {
            margin: 0;
        }

        .page-profile .profile-mobile-favorite,
        .page-profile .profile-mobile-chat-orb {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid rgba(233,225,242,0.9);
            background: rgba(255,255,255,0.74);
            box-shadow: 0 12px 28px rgba(44,27,58,0.10);
            color: var(--plum);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .page-profile .profile-mobile-favorite svg,
        .page-profile .profile-mobile-chat-orb .lucide,
        .page-profile .profile-mobile-chat-orb i[data-lucide] {
            width: 21px;
            height: 21px;
            display: block;
        }

        .page-profile .profile-mobile-hero-card {
            position: relative;
            height: 324px;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 24px 60px rgba(44,27,58,0.18);
            background: #e7ded4;
            transform: translateZ(0);
            margin-left: 0;
            margin-right: 0;
        }

        .page-profile .profile-mobile-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            transform: scale(1.02);
        }

        .page-profile .profile-mobile-hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(33,18,43,0.04) 0%, rgba(33,18,43,0.18) 30%, rgba(33,18,43,0.76) 100%),
                radial-gradient(circle at 22% 14%, rgba(255,255,255,0.12), transparent 34%);
            pointer-events: none;
        }

        .page-profile .profile-mobile-status {
            position: absolute;
            top: 18px;
            left: 18px;
            z-index: 2;
            color: #f6fffb;
            background: rgba(25,84,58,0.46);
            border-color: rgba(154,241,199,0.28);
            box-shadow: 0 14px 30px rgba(16,22,26,0.22);
        }

        .page-profile .profile-mobile-status .profile-status-dot {
            background: #60d394;
            box-shadow: 0 0 0 4px rgba(96,211,148,0.18);
        }

        .page-profile .profile-mobile-favorite {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 2;
            color: #fff;
            background: rgba(255,255,255,0.16);
            border-color: rgba(255,255,255,0.24);
            box-shadow: 0 12px 24px rgba(16,10,22,0.18);
        }

        .page-profile .profile-mobile-hero-content {
            position: absolute;
            inset: auto 0 0 0;
            z-index: 2;
            padding: 22px 20px 40px;
            display: grid;
            gap: 14px;
        }

        .page-profile .profile-mobile-name-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 44px;
            gap: 12px;
            align-items: end;
        }

        .page-profile .profile-mobile-name {
            margin: 0;
            font-size: 2.45rem;
            line-height: 0.98;
            color: #fff;
            text-shadow: 0 8px 26px rgba(18,10,26,0.38);
        }

        .page-profile .profile-mobile-role-line,
        .page-profile .profile-mobile-rating-copy {
            color: rgba(255,255,255,0.88);
            text-shadow: 0 4px 18px rgba(18,10,26,0.30);
        }

        .page-profile .profile-mobile-role-line {
            margin-top: 6px;
            font-size: .98rem;
            line-height: 1.35;
        }

        .page-profile .profile-mobile-rating-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .page-profile .profile-mobile-stars {
            font-size: 1rem;
            letter-spacing: .08em;
            color: #f1d07a;
        }

        .page-profile .profile-mobile-rating-copy {
            font-size: .96rem;
            font-weight: 600;
        }

        .page-profile .profile-mobile-tag-row {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 4px;
            scrollbar-width: none;
        }

        .page-profile .profile-mobile-tag-row::-webkit-scrollbar,
        .page-profile .profile-mobile-expertise-rail::-webkit-scrollbar,
        .page-profile .profile-mobile-reviews-track::-webkit-scrollbar {
            display: none;
        }

        .page-profile .profile-mobile-tag-row .profile-chip {
            white-space: nowrap;
            background: rgba(255,255,255,0.18);
            color: #fff;
            border-color: rgba(255,255,255,0.18);
            box-shadow: 0 10px 24px rgba(16,10,22,0.16);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .page-profile .profile-mobile-actions-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            padding: 0 16px;
            margin-top: -32px;
        }

        .page-profile .profile-mobile-action-card {
            display: grid;
            grid-template-columns: 44px 1fr;
            gap: 12px;
            align-items: center;
            min-width: 0;
            min-height: 58px;
            padding: 10px 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.48);
            border: 1px solid rgba(233,225,242,0.9);
            box-shadow: 0 18px 34px rgba(44,27,58,0.08);
            color: var(--ink);
            text-decoration: none;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .page-profile .profile-mobile-action-card:active {
            transform: scale(0.985);
        }

        .page-profile .profile-mobile-action-icon {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,240,232,0.92));
            color: var(--plum);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), 0 8px 18px rgba(44,27,58,0.08);
        }

        .page-profile .profile-mobile-action-icon .lucide,
        .page-profile .profile-mobile-action-icon i[data-lucide] {
            width: 22px;
            height: 22px;
        }

        .page-profile .profile-mobile-action-copy {
            display: block;
            min-width: 0;
        }

        .page-profile .profile-mobile-action-copy strong {
            display: block;
            font-size: .95rem;
            line-height: 1.1;
            color: var(--ink);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .page-profile .profile-mobile-usp-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            padding: 0 16px;
            margin-top: 10px;
        }

        .page-profile .profile-mobile-about-card,
        .page-profile .profile-mobile-stats-card,
        .page-profile .profile-mobile-expertise-card,
        .page-profile .profile-mobile-review-card,
        .page-profile .profile-mobile-sfeer-card,
        .page-profile .profile-mobile-form-shell,
        .page-profile .profile-mobile-credits-card {
            border-radius: 28px;
            box-shadow: 0 20px 40px rgba(44,27,58,0.10);
        }

        .page-profile .profile-mobile-usp-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex: 0 0 auto;
            color: var(--plum);
            font-size: .86rem;
            font-weight: 700;
            line-height: 1.2;
            white-space: nowrap;
        }

        .page-profile .profile-mobile-usp-item-icon {
            flex: 0 0 auto;
            font-size: 1rem;
        }

        .page-profile .profile-mobile-usp-item-label {
            min-width: 0;
        }

        .page-profile .profile-mobile-about-card {
            margin-top: 18px;
            padding: 22px 20px;
            background: transparent;
            border: 0;
            box-shadow: none;
        }

        .page-profile .profile-mobile-about-collapse {
            --story-collapsed-height: 11.5em;
            max-height: var(--story-collapsed-height);
        }

        .page-profile .profile-mobile-about-collapse.is-expanded {
            max-height: none;
        }

        .page-profile .profile-mobile-stats-card {
            display: grid;
            grid-template-columns: 1fr 1px 1fr 1px 1fr;
            align-items: center;
            margin-bottom: 16px;
            padding: 14px 10px;
            background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,242,235,0.92));
            border: 1px solid rgba(233,225,242,0.92);
        }

        .page-profile .profile-mobile-stat {
            display: grid;
            gap: 4px;
            justify-items: center;
            text-align: center;
            padding: 8px 6px;
        }

        .page-profile .profile-mobile-stat strong {
            font-size: 1.55rem;
            color: #b28334;
            line-height: 1;
        }

        .page-profile .profile-mobile-stat span {
            font-size: .82rem;
            color: var(--muted);
        }

        .page-profile .profile-mobile-stat-separator {
            width: 1px;
            height: 44px;
            background: linear-gradient(180deg, rgba(178,131,52,0), rgba(178,131,52,0.26), rgba(178,131,52,0));
        }

        .page-profile .profile-mobile-section-head {
            margin-bottom: 18px;
        }

        .page-profile .profile-mobile-content-wrap {
            padding: 22px 20px;
        }

        .page-profile .profile-mobile-content-wrap-stats {
            padding-bottom: 8px;
        }

        .page-profile .profile-mobile-content-wrap-expertise {
            padding-top: 8px;
        }

        .page-profile .profile-mobile-expertise-rail,
        .page-profile .profile-mobile-reviews-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(260px, 84%);
            gap: 14px;
            overflow-x: auto;
            padding-bottom: 4px;
            overscroll-behavior-x: contain;
            scroll-snap-type: x proximity;
        }

        .page-profile .profile-mobile-expertise-card,
        .page-profile .profile-mobile-review-card {
            scroll-snap-align: start;
        }

        .page-profile .profile-mobile-expertise-card {
            width: 80vw;
            max-width: 320px;
            min-height: 100%;
            padding: 18px 16px;
        }

        .page-profile .profile-mobile-review-card {
            padding: 18px;
        }

        .page-profile .profile-mobile-sfeer-card .image-wrap {
            min-height: 208px;
            border-radius: 28px;
            overflow: hidden;
        }

        .page-profile .profile-mobile-sfeer-card .side-image {
            width: 100%;
            height: 208px;
            object-fit: cover;
            transition: transform 4.8s ease;
        }

        .page-profile .profile-mobile-sfeer-card:hover .side-image,
        .page-profile .profile-mobile-sfeer-card:focus-within .side-image {
            transform: scale(1.04);
        }

        .page-profile .profile-mobile-form-shell {
            background: rgba(255,255,255,0.84);
            border: 1px solid rgba(233,225,242,0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            overflow: hidden;
        }

        .page-profile .profile-mobile-form-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 20px;
            background: transparent;
            border: 0;
            color: var(--plum);
            font-size: 1rem;
            font-weight: 700;
        }

        .page-profile .profile-mobile-form-toggle-icon .lucide,
        .page-profile .profile-mobile-form-toggle-icon i[data-lucide] {
            width: 20px;
            height: 20px;
            transition: transform .2s ease;
        }

        .page-profile .profile-mobile-form-shell.is-open .profile-mobile-form-toggle-icon .lucide,
        .page-profile .profile-mobile-form-shell.is-open .profile-mobile-form-toggle-icon i[data-lucide] {
            transform: rotate(180deg);
        }

        .page-profile .profile-mobile-form-panel {
            border-radius: 0 0 28px 28px;
            box-shadow: none;
            border: 0;
            border-top: 1px solid rgba(233,225,242,0.82);
        }

        .page-profile .profile-mobile-sticky-bar {
            position: fixed;
            left: 12px;
            right: 12px;
            bottom: 76px;
            z-index: 44;
            pointer-events: none;
        }

        .page-profile .profile-mobile-sticky-button {
            pointer-events: auto;
            display: grid;
            justify-items: center;
            gap: 3px;
            min-height: 62px;
            padding: 14px 18px;
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(204,95,121,0.98), rgba(184,79,108,0.98));
            color: #fff;
            text-decoration: none;
            box-shadow: 0 16px 34px rgba(184,79,108,0.32), inset 0 1px 0 rgba(255,255,255,0.24);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .page-profile .profile-mobile-sticky-title {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: .04em;
        }

        .page-profile .profile-mobile-sticky-subtitle {
            font-size: .88rem;
            opacity: .92;
        }
    }

.cookie-banner {
    padding: 14px 0;
    border-bottom: 1px solid rgba(233, 225, 242, .9);
    background: rgba(36, 22, 47, .94);
    color: #fff;
}

.cookie-banner-shell {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}

.cookie-banner-copy {
    display: grid;
    gap: 6px;
    max-width: 900px;
}

.cookie-banner-title {
    font-size: 15px;
}

.cookie-banner-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.cookie-banner-text a {
    color: #f1d07a;
}

.cookie-banner-action {
    white-space: nowrap;
}

.call-phone-actions {
    margin-top: 4px;
}

@media (max-width: 820px) {
    .cookie-banner-shell {
        display: grid;
    }
}
