    :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;
    }

    .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;
        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);
        font-size: 1.7rem;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 12px 28px rgba(44, 27, 58, .10), inset 0 1px 0 rgba(255, 255, 255, .75);
    }

    .mobile-nav {
        position: fixed;
        inset: 16px;
        padding: 76px 18px 18px;
        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: 28px;
        box-shadow: 0 24px 70px rgba(44, 27, 58, .22);
        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: 18px;
    }

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

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

    .mobile-nav-section {
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .78);
        border: 1px solid rgba(233, 225, 242, 1);
        box-shadow: 0 10px 28px rgba(44, 27, 58, .06);
    }

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

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

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

    .mobile-nav a,
    .mobile-nav summary {
        display: block;
        padding: 12px 14px;
        border-radius: 14px;
        color: var(--ink);
        font-size: .96rem;
        font-weight: 800;
        letter-spacing: .01em;
        background: rgba(255, 255, 255, .74);
        border: 1px solid rgba(233, 225, 242, .96);
        list-style: none;
        cursor: pointer;
    }

    .mobile-nav a:hover,
    .mobile-nav summary:hover {
        color: var(--plum);
        border-color: rgba(91, 42, 134, .18);
        box-shadow: 0 10px 24px rgba(44, 27, 58, .06);
    }

    .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: 0 12px 26px rgba(44, 27, 58, .08);
    }

    .mobile-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(233, 225, 242, 1);
        border-radius: 12px;
        background: rgba(255, 255, 255, .82);
        color: var(--plum);
        font-size: 1.8rem;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 10px 24px rgba(44, 27, 58, .08), inset 0 1px 0 rgba(255, 255, 255, .80);
    }

    .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-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-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;
    }

    .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-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-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: 44px;
        padding: 10px 14px;
        border-radius: 14px;
        color: var(--ink);
        font-weight: 800;
        font-size: .9rem;
        letter-spacing: .02em;
        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, .72);
        border-color: rgba(233, 225, 242, 1);
        box-shadow: 0 12px 28px rgba(44, 27, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .74);
    }

    .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: 18px;
        border-radius: 26px;
        background: rgba(255, 255, 255, .92);
        border: 1px solid rgba(233, 225, 242, .98);
        box-shadow: 0 24px 70px rgba(44, 27, 58, .14);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        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: grid;
        grid-template-columns: minmax(220px, .85fr) minmax(0, 2.15fr);
        gap: 18px;
        max-height: inherit;
        min-height: 0;
        width: 100%;
    }

    .nav-panel-lead,
    .nav-panel-body {
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .76);
        border: 1px solid rgba(233, 225, 242, 1);
        box-shadow: 0 10px 24px rgba(44, 27, 58, .06);
        min-height: 0;
    }

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

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

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

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

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

    .nav-panel-links a {
        display: block;
        padding: 11px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .82);
        border: 1px solid rgba(233, 225, 242, 1);
        color: var(--ink);
        font-size: .92rem;
        font-weight: 700;
    }

    .nav-panel-links .nav-link-button,
    .mega-links .nav-link-button {
        display: block;
        width: 100%;
        padding: 11px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .82);
        border: 1px solid rgba(233, 225, 242, 1);
        color: var(--ink);
        font-size: .92rem;
        font-weight: 700;
        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: 8px;
    }

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

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

    body.page-home .hero-shell {
        margin-top: -36px;
        padding: 12px 0 22px;
    }

    .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 {
        color: #fff;
        background: linear-gradient(180deg, rgba(31, 157, 106, 1) 0%, rgba(19, 122, 82, 1) 100%);
        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: 24px 0 56px;
    }

    .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;
        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;
    }

    .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: auto;
        right: 20px;
        bottom: 20px;
        gap: 4px;
        padding: 3px 7px;
        font-size: 11px;
        line-height: 1;
    }

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

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

    .profileFavBtn {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .20);
        border: 1px solid rgba(255, 255, 255, .38);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 24px rgba(36, 22, 47, .12);
    }

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

    .profileFavBtn.is-on {
        background: linear-gradient(180deg, rgba(255, 255, 255, .34) 0%, rgba(255, 255, 255, .20) 100%);
        border-color: rgba(255, 255, 255, .52);
    }

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

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

    .profileBottom .agent-name {
        margin: 12px 0 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 {
        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;
        gap: 12px;
        margin-top: 20px;
    }

    .profileActions .btn {
        flex: 1;
    }

.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-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);
}

.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-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;
}

    .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: 24px;
    }

    .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: 24px;
    }

    .section.section-plain.content-flow > .breadcrumb {
        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: 18px;
        padding: 12px 0 2px;
        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: 0 12px 28px rgba(44, 27, 58, .06), inset 0 1px 0 rgba(255, 255, 255, .84);
        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;
        background: linear-gradient(180deg, rgba(31, 157, 106, 1) 0%, rgba(19, 122, 82, 1) 100%);
        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-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;
        }

        .hero-callout.glass {
            background: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        #specialisten.section.glass {
            margin-bottom: 0;
            padding: 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);
        }

        .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;
        }
    }

    @media (max-width: 980px) {
        .mega-shell {
            grid-template-columns: 1fr;
        }

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

    @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: 42px;
            height: 42px;
            border-radius: 12px;
            font-size: 1.45rem;
            flex: 0 0 42px;
        }
    }

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

body.page-home .show-desktop-only {
    display: block;
    margin-top: 0;
}

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

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