:root {
    --teal: #2f6c73;
}

.preview-info-anchor {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    position: relative;
    z-index: var(--party-host-preview-info-z-index, auto);
}

.preview-info-anchor--right .preview-info-panel,
.preview-info-panel--right {
    left: auto;
    right: 0;
}

.preview-info-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(23, 49, 58, 0.3);
    display: inline-flex;
    font-size: 15px;
    height: auto;
    justify-content: center;
    padding: 0;
    width: auto;
}

.preview-info-toggle i {
    color: rgba(23, 49, 58, 0.3);
    transition: color 0.18s ease;
}

.preview-info-toggle:hover,
.preview-info-toggle:focus {
    color: rgba(23, 49, 58, 0.34);
}

.preview-info-toggle:hover i,
.preview-info-toggle:focus i {
    color: rgba(23, 49, 58, 0.34);
}

.preview-info-toggle[aria-expanded='true'] {
    color: rgba(23, 49, 58, 0.24);
}

.preview-info-toggle[aria-expanded='true'] i {
    color: rgba(23, 49, 58, 0.24);
}

.preview-info-panel {
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(23, 49, 58, 0.14);
    color: var(--muted, #6c7a7e);
    font-size: 13px;
    left: 0;
    line-height: 1.55;
    max-width: min(360px, calc(100vw - 32px));
    padding: 12px 14px;
    position: absolute;
    top: calc(100% + 10px);
    width: 320px;
    z-index: 40;
}

.preview-info-panel p {
    margin: 0;
}

.section-eyebrow {
    color: var(--party-host-eyebrow-color, var(--ink, #17313a));
    display: inline-block;
    font-size: var(--party-host-eyebrow-size, 10px);
    font-weight: 800;
    letter-spacing: var(--party-host-eyebrow-spacing, 0.12em);
    margin-bottom: var(--party-host-eyebrow-margin-bottom, 8px);
    text-transform: uppercase;
}

.design-preview-panel {
    background: var(--preview-surface);
    border-left: 1px solid rgba(23, 49, 58, 0.08);
    border-radius: 0;
    bottom: 0;
    box-shadow: -18px 0 40px rgba(23, 49, 58, 0.1);
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: var(--preview-panel-width);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 14px 20px 18px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: opacity 0.22s ease, transform 0.22s ease;
    visibility: hidden;
    width: var(--preview-panel-width);
    z-index: 950;
}

.design-workbench.is-preview-open .design-preview-panel {
    background: #ece9e1;
    border-left: 0;
    bottom: auto;
    display: flex;
    flex-direction: column;
    grid-area: right;
    height: calc(100vh - 60px);
    left: auto;
    max-width: none;
    opacity: 1;
    overflow-y: auto;
    padding: 18px 18px 0;
    pointer-events: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    visibility: visible;
    width: auto;
}

.design-preview-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
}

.design-preview-panel.is-expanded {
    max-width: 100vw;
    width: 100vw;
}

.design-preview-panel.is-expanded .preview-stage__frame iframe {
    max-width: 100%;
}

.design-preview-panel__bar {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 8px;
}

.design-workbench.is-preview-open .design-preview-panel__bar {
    background: transparent;
    margin: 0 0 12px;
    padding: 0;
    position: static;
}

.design-preview-panel__titleblock {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 2px;
    min-width: 0;
}

.design-preview-panel__titleblock .section-eyebrow {
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}

.design-preview-panel__titleblock h2 {
    color: var(--muted);
    font-family: var(--party-host-title-font, serif);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.design-preview-mode-note {
    align-items: center;
    background: rgba(23, 49, 58, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(23, 49, 58, 0.24);
    color: #ffffff;
    cursor: help;
    display: none;
    font-size: 11px;
    font-weight: 700;
    gap: 7px;
    line-height: 1.2;
    max-width: 180px;
    overflow: hidden;
    padding: 6px 10px;
    position: absolute;
    right: 14px;
    top: 14px;
    transition: max-width 0.22s ease, padding 0.22s ease, gap 0.22s ease;
    z-index: 2;
}

.design-preview-mode-note.is-visible {
    display: inline-flex;
}

.design-preview-mode-note.is-collapsed {
    align-items: center;
    gap: 0;
    justify-content: center;
    max-width: 24px;
    min-width: 24px;
    padding-left: 9px;
    padding-right: 9px;
}

.design-preview-mode-note__text {
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.16s ease;
    white-space: nowrap;
}

.design-preview-mode-note.is-collapsed .design-preview-mode-note__text {
    margin: 0;
    opacity: 0;
    width: 0;
}

.design-preview-mode-note i {
    color: #f7b267;
    display: block;
    flex: 0 0 auto;
    font-size: 12px;
}

.design-preview-mode-note .fa {
    color: #f7b267;
}

.design-preview-panel__top-controls {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.design-preview-panel__window-actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.design-preview-control,
.design-preview-close {
    background: transparent;
    border: 0;
    color: #7a888d;
    line-height: 1;
    padding: 0;
}

.design-preview-control {
    align-items: center;
    display: inline-flex;
    font-size: 16px;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.design-preview-control .fa {
    color: #7a888d;
}

.design-preview-close {
    font-size: 24px;
}

.design-preview-control .preview-expand-icon {
    display: inline-block;
}

.design-preview-control .preview-collapse-icon {
    display: none;
}

.design-preview-panel.is-expanded .design-preview-control .preview-expand-icon {
    display: none;
}

.design-preview-panel.is-expanded .design-preview-control .preview-collapse-icon {
    display: inline-block;
}

.design-preview-panel.design-preview-panel--inline {
    background: #ece9e1;
    border-left: 1px solid rgba(23, 49, 58, 0.08);
    bottom: auto;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: none;
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 18px 18px 0;
    pointer-events: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    visibility: visible;
    width: auto;
}

.design-preview-panel.design-preview-panel--inline .design-preview-footer-bar {
    margin-bottom: 0;
}

.design-preview-panel.design-preview-panel--inline .design-preview-stage {
    flex: 1 1 auto;
    min-height: 0;
}

.design-preview-panel.design-preview-panel--inline .design-preview-stage.is-desktop-overview {
    flex: 0 0 auto;
    overflow: visible;
}

.design-preview-panel.design-preview-panel--inline .preview-stage__frame {
    min-height: 0;
}

.design-preview-panel.design-preview-panel--inline .preview-stage__frame iframe {
    background: #ece9e1;
    border-radius: 24px;
}

.design-preview-panel.design-preview-panel--inline.design-preview-panel--mobile .preview-stage__frame iframe {
    max-width: 420px;
}

.design-preview-stage__toolbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 6px;
}

.design-preview-stage__toolbar--header {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.design-preview-panel__top-controls .design-preview-stage__toolbar {
    margin-bottom: 0;
}

.preview-modes {
    background: rgba(23, 49, 58, 0.07);
    border-radius: 999px;
    display: inline-flex;
    gap: 4px;
    padding: 3px;
}

.preview-mode {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
    min-width: 34px;
    padding: 7px 12px;
}

.preview-mode i {
    color: currentColor;
    display: block;
}

.preview-mode span {
    line-height: 1;
}

.preview-mode.is-active {
    background: var(--preview-surface);
    box-shadow: var(--preview-shadow-soft);
    color: var(--ink);
}

.design-preview-stage {
    background: #ece9e1;
    border-radius: 28px;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    margin: 0;
    min-height: 0;
    overflow: visible;
    padding: 5px;
    position: relative;
}

.design-workbench.is-preview-open .design-preview-stage {
    flex: 0 0 auto;
    min-height: 0;
}

.design-preview-stage.is-desktop-overview {
    margin-left: -14px;
    margin-right: -14px;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

.preview-stage__frame {
    align-items: flex-start;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 0;
    overflow: visible;
    transition: all 0.18s ease;
}

.design-preview-stage.is-desktop-overview .preview-stage__frame {
    align-self: center;
    background: #ece9e1;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(23, 49, 58, 0.08);
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 40px);
}

.preview-stage__frame iframe {
    background: #ece9e1;
    border: 0;
    border-radius: 24px;
    display: block;
    height: auto;
    overflow: hidden;
    transform-origin: top center;
    width: 100%;
}

.design-preview-stage.is-desktop-overview .preview-stage__frame iframe {
    flex: 0 0 auto;
    height: auto;
    max-width: none;
    min-width: 1080px;
}

.design-preview-stage.mode-mobile .preview-stage__frame iframe {
    height: auto;
    max-width: 420px;
}

.design-preview-stage.mode-print .preview-stage__frame iframe {
    border-radius: 10px;
    height: auto;
    max-width: 900px;
}

.design-preview-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.design-preview-footer-bar {
    background: #ece9e1;
    border-top: 1px solid rgba(23, 49, 58, 0.08);
    flex: 0 0 auto;
    margin: 12px -20px -18px;
    padding: 14px 20px 18px;
    position: relative;
}

.design-workbench.is-preview-open .design-preview-footer-bar {
    background: rgba(236, 233, 225, 0.96);
    bottom: 0;
    margin: 12px -18px 0;
    padding: 12px 18px 14px;
    position: sticky;
    z-index: 4;
}

.design-preview-actions--footer {
    justify-content: center;
    width: 100%;
}

.btn-preview-cta,
.btn-preview-secondary {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    letter-spacing: 0.02em;
    padding: 10px 16px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
    white-space: nowrap;
}

.btn-preview-cta {
    background: var(--accent);
    box-shadow: 0 16px 28px rgba(23, 49, 58, 0.16);
    color: #fff;
    flex: 0 0 auto;
}

.btn-preview-cta i {
    color: #fff;
    font-size: 12px;
}

.btn-preview-cta .fa {
    color: #fff;
}

.btn-preview-cta--top {
    display: none;
    min-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
}

.btn-preview-cta--footer {
    align-items: center;
    font-size: 15px;
    min-height: 50px;
    min-width: 240px;
    padding-left: 24px;
    padding-right: 24px;
}

.btn-preview-cta--footer:not(.is-disabled) {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 20px 34px rgba(23, 49, 58, 0.18);
}

.design-preview-panel.is-expanded .design-preview-footer-bar {
    display: none;
}

.design-workbench.is-preview-open .design-preview-control {
    display: inline-flex;
}

.design-workbench.is-preview-open .btn-preview-cta--top {
    display: none !important;
}

.design-preview-panel.is-expanded .btn-preview-cta--top,
.design-workbench.is-preview-open.is-preview-expanded .btn-preview-cta--top {
    align-items: center;
    display: inline-flex !important;
}

.design-workbench.is-preview-open .design-preview-close {
    display: none;
}

.design-preview-panel.is-expanded .design-preview-panel__bar {
    gap: 18px;
}

.design-preview-panel.is-expanded .design-preview-panel__titleblock {
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.design-preview-panel.is-expanded .design-preview-panel__titleblock h2 {
    font-size: 18px;
    max-width: 28vw;
}

.design-modal-backdrop {
    background: rgba(18, 35, 41, 0.42);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity 0.18s ease;
    z-index: 999;
}

.design-modal-backdrop.is-open {
    opacity: 1;
}

.design-learn-more-modal {
    background: radial-gradient(circle at top right, rgba(47, 108, 115, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
    border: 1px solid rgba(23, 49, 58, 0.08);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(23, 49, 58, 0.22);
    left: 50%;
    max-height: calc(100vh - 32px);
    max-width: 760px;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 36px 34px 30px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -46%);
    transition: opacity 0.18s ease, transform 0.18s ease;
    -webkit-overflow-scrolling: touch;
    width: calc(100% - 32px);
    z-index: 1000;
}

.design-learn-more-modal.is-open {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.design-learn-more-modal__close {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.14);
    border-radius: 12px;
    color: var(--ink);
    display: inline-flex;
    font-size: 22px;
    height: 40px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 16px;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    width: 40px;
}

.design-learn-more-modal__close:hover,
.design-learn-more-modal__close:focus {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.24);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
}

.design-learn-more-modal__close:focus-visible {
    outline: none;
}

.design-learn-more-modal__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.design-learn-more-modal__journey {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 8px 0 16px;
}

.design-learn-more-step {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 244, 237, 0.9) 100%);
    border: 1px solid rgba(23, 49, 58, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(23, 49, 58, 0.08);
    display: flex;
    gap: 10px;
    min-height: 68px;
    padding: 12px 14px;
}

.design-learn-more-step__number {
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(23, 49, 58, 0.14);
    color: #fff;
    display: inline-flex;
    flex: 0 0 28px;
    font-size: 12px;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    line-height: 1;
    width: 28px;
}

.design-learn-more-step__label {
    color: var(--ink);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.design-learn-more-modal h2 {
    font-family: var(--party-host-title-font, serif);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.04;
    margin: 0 0 10px;
}

.design-learn-more-modal__intro {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 75ch;
}

.design-learn-more-modal .design-benefit-inline {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 49, 58, 0.08);
    border-radius: 22px;
    min-height: 130px;
    padding: 18px;
}

.design-learn-more-modal .design-benefit-inline strong {
    align-items: center;
    display: flex;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 8px;
}

.design-learn-more-modal .design-benefit-inline strong i {
    align-items: center;
    background: rgba(47, 108, 115, 0.12);
    border-radius: 12px;
    color: var(--teal);
    display: inline-flex;
    flex: 0 0 32px;
    font-size: 15px;
    height: 32px;
    justify-content: center;
    line-height: 1;
    width: 32px;
}

.design-learn-more-modal .design-benefit-inline strong span {
    display: block;
}

body.design-modal-open {
    overflow: hidden;
}

body.design-preview-open {
    overflow: hidden;
}

body.design-preview-open header.wrapper .row.no-margin .col-xs-6,
body.design-preview-open header.wrapper .row.no-margin .menu-icon-wrapper {
    transition: transform 0.22s ease;
}

body.design-preview-open header.wrapper .row.no-margin .col-xs-6 {
    transform: translateX(-84px);
}

body.design-preview-open header.wrapper .row.no-margin .menu-icon-wrapper {
    transform: translateX(-28px);
}

body.design-preview-expanded header.wrapper .row.no-margin .col-xs-6,
body.design-preview-expanded header.wrapper .row.no-margin .menu-icon-wrapper {
    transform: none;
}

.btn-preview-cta:hover,
.btn-preview-secondary:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-preview-cta:not(.is-disabled):hover,
.btn-preview-cta:not(.is-disabled):focus {
    color: #fff;
    filter: brightness(0.94);
}

.btn-preview-cta.is-disabled,
.btn-preview-secondary.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.design-preview-points {
    display: grid;
    gap: 10px;
}

.design-preview-points div {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
}

.design-preview-points div:before {
    color: var(--accent);
    content: '\2022';
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .design-preview-panel {
        max-width: var(--preview-panel-width);
        width: var(--preview-panel-width);
    }
}

@media (max-width: 991px) {
    .design-preview-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .design-preview-panel__bar {
        align-items: center;
        flex-direction: row;
    }

    .design-preview-panel__top-controls {
        flex: 0 0 auto;
        justify-content: flex-end;
        width: auto;
    }

    .design-preview-stage__toolbar--header {
        justify-content: flex-start;
    }

    .design-workbench.is-preview-open .design-preview-panel {
        height: calc(100vh - 60px);
        min-height: 0;
    }

    .design-preview-panel {
        left: 0;
        max-width: none;
        width: auto;
    }

    .design-preview-control {
        display: none;
    }

    .design-preview-panel__window-actions {
        display: none;
    }

    .design-preview-footer-bar {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .btn-preview-cta--footer {
        min-width: 0;
    }

    .design-preview-panel__bar {
        padding-left: 4px;
        padding-right: 4px;
    }

    body.design-preview-open header.wrapper .row.no-margin .col-xs-6,
    body.design-preview-open header.wrapper .row.no-margin .menu-icon-wrapper {
        transform: none;
    }

    .design-learn-more-modal__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .design-preview-panel {
        border-radius: 0;
        height: 100dvh;
        max-width: 100vw;
        padding: 10px 10px 14px;
        width: 100vw;
    }

    .design-workbench.is-preview-open .design-preview-panel {
        border-radius: 0;
        height: calc(100dvh - 56px);
    }

    .design-preview-panel__bar {
        gap: 8px;
        margin-bottom: 10px;
    }

    .design-preview-panel__titleblock .section-eyebrow {
        font-size: 9px;
    }

    .design-preview-panel__titleblock h2 {
        font-size: 16px;
    }

    .design-preview-panel__top-controls {
        gap: 8px;
    }

    .preview-modes {
        gap: 3px;
        padding: 2px;
    }

    .preview-mode {
        font-size: 12px;
        gap: 6px;
        min-width: 30px;
        padding: 6px 10px;
    }

    .design-preview-mode-note {
        font-size: 10px;
        padding: 5px 9px;
        right: 10px;
        top: 10px;
    }

    .design-preview-stage {
        border-radius: 20px;
        min-height: 0;
        overflow: visible;
        padding: 8px;
    }

    .preview-stage__frame {
        min-height: 0;
    }

    .preview-stage__frame iframe {
        height: auto;
        min-height: 0;
    }

    .design-preview-stage.is-desktop-overview .preview-stage__frame {
        overflow-x: hidden;
        overflow-y: hidden;
        width: 100%;
    }

    .design-preview-footer-bar {
        margin: 10px -10px -14px;
        padding: 12px 10px 14px;
    }

    .design-learn-more-modal {
        border-radius: 24px;
        left: 16px;
        max-height: calc(100dvh - 32px);
        padding: 24px 18px 18px;
        right: 16px;
        top: 16px;
        transform: none;
        width: auto;
    }

    .design-learn-more-modal.is-open {
        transform: none;
    }

    .design-learn-more-modal h2 {
        font-size: 28px;
        padding-right: 24px;
    }

    .design-learn-more-modal__journey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .design-learn-more-step {
        min-height: 0;
        padding: 12px;
    }

    .design-learn-more-modal__close {
        right: 14px;
        top: 12px;
    }

    .design-learn-more-modal .design-benefit-inline {
        min-height: 0;
    }
}

.party-host-flow-shell,
.party-host-flow-content,
.party-host-flow-flow {
    font-family: var(--party-host-body-font, sans-serif);
    height: 100vh;
    min-height: 100vh;
}

.party-host-flow-flow {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.party-host-flow-topbar-shell {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(23, 49, 58, 0.08);
    position: sticky;
    top: 0;
    z-index: 1500;
}

.party-host-flow-topbar {
    --party-host-flow-topbar-inline-padding: 16px;
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    min-height: 78px;
    padding: 10px 16px;
}

.party-host-flow-exit {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.14);
    border-radius: 14px;
    color: var(--ink);
    display: inline-flex;
    flex: 0 0 44px;
    font-size: 24px;
    font-weight: 600;
    grid-column: 1;
    justify-content: center;
    justify-self: start;
    min-height: 44px;
    min-width: 44px;
    padding: 0;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    width: 44px;
}

.party-host-flow-exit:hover,
.party-host-flow-exit:focus {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.24);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
    color: var(--ink);
    text-decoration: none;
}

.party-host-flow-exit:focus-visible {
    outline: none;
}

.party-host-flow-step--icon:hover,
.party-host-flow-step--icon:focus {
    color: var(--ink);
    text-decoration: none;
}

.party-host-flow-steps {
    align-items: center;
    display: flex;
    gap: 18px;
    grid-column: 2;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    scrollbar-width: none;
}

.party-host-flow-steps::-webkit-scrollbar {
    display: none;
}

.party-host-flow-step {
    border-bottom: 3px solid transparent;
    color: var(--ink);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 600;
    min-height: 44px;
    opacity: 0.72;
    padding: 10px 2px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.party-host-flow-step.is-current {
    border-bottom-color: var(--teal);
    opacity: 1;
}

.party-host-flow-step:not(.is-current):not(.is-disabled):hover,
.party-host-flow-step:not(.is-current):not(.is-disabled):focus {
    color: var(--ink);
    opacity: 1;
}

.party-host-flow-step.is-disabled {
    cursor: not-allowed;
    opacity: 0.34;
}

.party-host-flow-step-menu {
    flex: 0 0 auto;
    position: relative;
}

.party-host-flow-step--icon {
    justify-content: center;
    min-width: 40px;
    padding-left: 8px;
    padding-right: 8px;
}

.party-host-flow-step--icon i {
    font-size: 16px;
}

.party-host-flow-step--home i {
    font-size: 20px;
}

.party-host-flow-step--more {
    appearance: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: inherit;
}

.party-host-flow-step--more:disabled {
    pointer-events: none;
}

.party-host-flow-step-menu__panel {
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.1);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(23, 49, 58, 0.14);
    min-width: 180px;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 40;
}

.party-host-flow-step-menu__group + .party-host-flow-step-menu__group {
    margin-top: 4px;
}

.party-host-flow-step-menu__item {
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--ink);
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
}

.party-host-flow-step-menu__item:hover,
.party-host-flow-step-menu__item:focus {
    background: rgba(47, 108, 115, 0.08);
    color: var(--ink);
    text-decoration: none;
}

.party-host-flow-step-menu__item.is-disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.party-host-flow-step-menu__button {
    cursor: pointer;
    font: inherit;
}

.party-host-flow-step-menu__submenu-toggle {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.party-host-flow-step-menu__submenu-toggle i {
    color: #94a3b8;
    font-size: 12px;
    margin-left: 12px;
    transition: transform 0.16s ease;
}

.party-host-flow-step-menu__submenu-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

.party-host-flow-step-menu__submenu {
    border-left: 1px solid rgba(23, 49, 58, 0.12);
    margin: 4px 0 2px 14px;
    padding: 2px 0 2px 8px;
}

.party-host-flow-step-menu__submenu .party-host-flow-step-menu__item {
    color: #5f6b71;
    font-size: 13px;
    font-weight: 500;
    padding-left: 14px;
}

.party-host-flow-step-menu__submenu .party-host-flow-step-menu__item:hover,
.party-host-flow-step-menu__submenu .party-host-flow-step-menu__item:focus {
    color: var(--ink);
}

.party-host-account-modal-backdrop {
    align-items: center;
    background: rgba(24, 29, 42, 0.46);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 1600;
}

.party-host-account-modal-backdrop.is-open {
    display: flex;
}

.party-host-account-modal {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(24, 29, 42, 0.28);
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    width: min(520px, 100%);
}

.party-host-account-modal button,
.party-host-account-modal input,
.party-host-account-modal select,
.party-host-account-modal textarea,
.party-host-account-modal h1,
.party-host-account-modal h2,
.party-host-account-modal h3,
.party-host-account-modal h4,
.party-host-account-modal h5,
.party-host-account-modal h6,
.party-host-account-modal p,
.party-host-account-modal span {
    font-family: 'Roboto', sans-serif;
}

.party-host-account-modal__header {
    align-items: flex-start;
    border-bottom: 1px solid rgba(23, 49, 58, 0.08);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 20px 22px;
}

.party-host-account-modal__header h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 0;
}

.party-host-account-modal__header p {
    color: #6c7a7e;
    font-size: 14px;
    line-height: 1.45;
    margin: 5px 0 0;
}

.party-host-account-close-button {
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.1);
    border-radius: 999px;
    color: #17313a;
    font-size: 18px;
    height: 36px;
    width: 36px;
}

.party-host-account-close-button:hover,
.party-host-account-close-button:focus-visible {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.18);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
    outline: none;
}

.party-host-account-modal__status {
    color: #9d2832;
    font-size: 13px;
    font-weight: 700;
    padding: 16px 22px 0;
}

.party-host-account-modal__body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.party-host-account-field-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.party-host-account-field {
    display: grid;
    gap: 7px;
}

.party-host-account-field span {
    color: #6c7a7e;
    font-size: 13px;
    font-weight: 700;
}

.party-host-account-field input {
    border: 1px solid rgba(23, 49, 58, 0.12);
    border-radius: 14px;
    box-shadow: none;
    outline: none;
    padding: 12px 13px;
    width: 100%;
}

.party-host-account-field input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
}

.party-host-account-field__error {
    color: #9d2832;
    font-size: 12px;
    font-weight: 700;
}

.party-host-account-modal__footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 16px 22px 22px;
}

.party-host-account-primary-button,
.party-host-account-secondary-button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
}

.party-host-account-primary-button {
    background: linear-gradient(135deg, var(--teal) 0%, #234f56 100%);
    border: 0;
    box-shadow: 0 14px 28px rgba(35, 79, 86, 0.18);
    color: #fff;
}

.party-host-account-primary-button:hover,
.party-host-account-primary-button:focus-visible {
    background: linear-gradient(135deg, #275c63 0%, #1d454b 100%);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12), 0 16px 30px rgba(29, 69, 75, 0.2);
    outline: none;
}

.party-host-account-primary-button:disabled {
    cursor: wait;
}

.party-host-account-primary-button.is-loading {
    pointer-events: none;
    position: relative;
}

.party-host-account-primary-button.is-loading::after {
    animation: party-host-button-spin 0.7s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    border-top-color: #ffffff;
    content: '';
    display: block;
    height: 16px;
    margin-left: 4px;
    width: 16px;
}

.party-host-account-secondary-button {
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.12);
    color: #17313a;
}

.party-host-account-secondary-button:hover,
.party-host-account-secondary-button:focus-visible {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.18);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
    outline: none;
}

.party-host-flow-notice {
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 20px 0;
    padding: 16px 18px;
}

.party-host-flow-notice--success {
    background: rgba(56, 160, 105, 0.08);
    border: 1px solid rgba(56, 160, 105, 0.18);
    color: #1f5a3e;
}

.party-host-flow-notice--success strong {
    display: block;
    margin-bottom: 4px;
}

.party-host-flow-notice--error {
    background: rgba(194, 77, 77, 0.08);
    border: 1px solid rgba(194, 77, 77, 0.18);
    color: #8e2b2b;
}

.party-host-flow-notice--floating {
    box-shadow: 0 18px 40px rgba(23, 49, 58, 0.16);
    left: 50%;
    margin: 0;
    max-width: min(480px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 96px;
    transform: translate(-50%, -12px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: max-content;
    z-index: 1700;
}

.party-host-flow-notice--floating.party-host-flow-notice--success {
    background: rgba(23, 49, 58, 0.96);
    border-color: rgba(23, 49, 58, 0.96);
    color: #ffffff;
    font-weight: 700;
}

.party-host-flow-notice--floating.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@keyframes party-host-button-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 760px) {
    .party-host-account-field-grid {
        grid-template-columns: 1fr;
    }

    .party-host-account-modal__footer {
        flex-direction: column-reverse;
    }

    .party-host-account-primary-button,
    .party-host-account-secondary-button {
        width: 100%;
    }

    .party-host-flow-notice--floating {
        top: 88px;
        width: calc(100vw - 28px);
    }
}

.party-host-flow-top-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    grid-column: 3;
    justify-content: flex-end;
    justify-self: end;
    min-width: 0;
}

.party-host-flow-continue-label--mobile {
    display: none;
}

.party-host-flow-workbench {
    display: grid;
    flex: 1 1 auto;
    gap: 0;
    grid-template-columns: minmax(340px, 0.9fr) minmax(400px, 1.1fr);
    min-height: 0;
    overflow: hidden;
}

.party-host-flow-workbench.is-preview-expanded {
    grid-template-columns: 1fr;
}

.party-host-flow-workbench.is-preview-expanded .party-host-flow-editor-panel {
    display: none;
}

.party-host-flow-editor-panel {
    background: #fff;
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px 24px 36px;
    position: relative;
}

.party-host-flow-editor-stack {
    margin: 0 auto;
    max-width: 760px;
}

.party-host-flow-mobile-preview-trigger {
    align-items: center;
    background: #f7f6f1;
    border: 1px solid rgba(23, 49, 58, 0.12);
    border-radius: 16px;
    color: var(--ink);
    display: none;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    margin: 0;
    min-height: 48px;
    padding: 0 18px;
    white-space: nowrap;
    width: auto;
}

.party-host-flow-mobile-preview-trigger:hover,
.party-host-flow-mobile-preview-trigger:focus {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.18);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
    color: var(--ink);
}

.party-host-flow-preview-panel .preview-info-anchor .section-eyebrow,
.party-host-flow-mobile-preview-header__titlewrap .party-host-flow-mobile-preview-header__title {
    margin-bottom: 0;
}

.party-host-flow-mobile-preview-header__back {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ink);
    display: inline-flex;
    font-family: var(--party-host-body-font, sans-serif);
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    padding: 0;
}

.party-host-flow-mobile-preview-header__title {
    color: var(--ink);
    font-family: var(--party-host-body-font, sans-serif);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.party-host-flow-mobile-preview-header__titlewrap {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.party-host-flow-preview-panel__bar,
.party-host-flow-mobile-preview-header,
.party-host-flow-preview-panel .design-preview-panel__titleblock {
    position: relative;
    z-index: 12;
}

.party-host-flow-mobile-preview-header {
    display: none;
}

.party-host-flow-mobile-preview-header,
.party-host-flow-preview-panel__bar {
    will-change: transform, opacity;
}

.party-host-flow-primary-cta {
    align-items: center;
    background: linear-gradient(135deg, var(--teal) 0%, #234f56 100%);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(35, 79, 86, 0.22);
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 46px;
    min-width: 128px;
    padding: 0 20px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    white-space: nowrap;
}

.party-host-flow-primary-cta--top {
    grid-column: 3;
    justify-self: end;
    width: auto;
}

.party-host-flow-primary-cta--muted {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 49, 58, 0.12);
    box-shadow: none;
    color: var(--ink);
}

.party-host-flow-primary-cta i {
    color: #fff;
}

.party-host-flow-primary-cta--muted i {
    color: currentColor;
}

.party-host-flow-primary-cta:hover,
.party-host-flow-primary-cta:focus {
    background: linear-gradient(135deg, #275c63 0%, #1d454b 100%);
    box-shadow: 0 16px 32px rgba(29, 69, 75, 0.24);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.party-host-flow-primary-cta--muted:hover,
.party-host-flow-primary-cta--muted:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(23, 49, 58, 0.16);
    box-shadow: 0 10px 20px rgba(23, 49, 58, 0.08);
    color: var(--ink);
}

.party-host-flow-primary-cta--muted:focus-visible {
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12), 0 10px 20px rgba(23, 49, 58, 0.08);
}

.party-host-flow-primary-cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.14), 0 16px 32px rgba(29, 69, 75, 0.24);
}

.party-host-flow-primary-cta.is-disabled,
.party-host-flow-primary-cta[disabled],
.party-host-flow-primary-cta[disabled]:hover,
.party-host-flow-primary-cta[disabled]:focus {
    background: #9aa7ab;
    box-shadow: none;
    color: #fff;
    cursor: not-allowed;
    opacity: 1;
    transform: none;
}

.party-host-flow-modal-backdrop {
    background: rgba(16, 26, 34, 0.46);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity 0.18s ease;
    z-index: 1200;
}

.party-host-flow-modal-backdrop.is-open {
    opacity: 1;
}

.party-host-flow-exit-modal {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(23, 49, 58, 0.22);
    font-family: var(--party-host-body-font, sans-serif);
    left: 50%;
    max-width: 460px;
    opacity: 0;
    padding: 28px 24px 24px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -46%);
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: calc(100% - 32px);
    z-index: 1210;
}

.party-host-flow-exit-modal.is-open {
    opacity: 1;
    transform: translate(-50%, -50%);
}

#gist-app,
#gist-app .gist-messenger-iframe,
.gist-messenger-iframe,
.cf-chat-iframe,
.convertfox-chat {
    z-index: 1180 !important;
}

body.invite-guests-has-overlay #gist-app,
body.invite-guests-has-overlay .gist-messenger-iframe,
body.invite-guests-has-overlay .cf-chat-iframe,
body.invite-guests-has-overlay .convertfox-chat,
body.invite-guests-has-overlay [id^="gist-"],
body.message-guests-has-overlay #gist-app,
body.message-guests-has-overlay .gist-messenger-iframe,
body.message-guests-has-overlay .cf-chat-iframe,
body.message-guests-has-overlay .convertfox-chat,
body.message-guests-has-overlay [id^="gist-"] {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.party-host-flow-exit-modal__close {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.14);
    border-radius: 12px;
    color: var(--ink);
    display: inline-flex;
    font-family: var(--party-host-body-font, sans-serif) !important;
    font-size: 22px;
    height: 40px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 12px;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    width: 40px;
}

.party-host-flow-exit-modal__close:hover,
.party-host-flow-exit-modal__close:focus {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.24);
    box-shadow: 0 0 0 4px rgba(47, 108, 115, 0.12);
    color: var(--ink);
}

.party-host-flow-exit-modal__close:focus-visible {
    outline: none;
}

.party-host-flow-exit-modal h2 {
    color: var(--ink, #17313a) !important;
    font-family: var(--party-host-body-font, sans-serif) !important;
    font-size: 32px;
    line-height: 1.04;
    margin: 0 0 10px;
}

.party-host-flow-exit-modal p {
    color: var(--muted);
    font-family: var(--party-host-body-font, sans-serif) !important;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.party-host-flow-exit-modal__actions {
    display: flex;
    gap: 12px;
}

.party-host-flow-exit-modal__save,
.party-host-flow-exit-modal__cancel {
    align-items: center;
    appearance: none;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--party-host-body-font, sans-serif) !important;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    min-height: 46px;
    -webkit-appearance: none;
    padding: 0 18px;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.party-host-flow-exit-modal a,
.party-host-flow-exit-modal button,
.party-host-flow-exit-modal p,
.party-host-flow-exit-modal h2 {
    font-family: var(--party-host-body-font, sans-serif) !important;
}

.party-host-flow-exit-modal__save {
    background: linear-gradient(135deg, var(--teal) 0%, #234f56 100%);
    box-shadow: 0 14px 28px rgba(35, 79, 86, 0.18);
    color: #fff;
    flex: 1 1 auto;
}

.party-host-flow-exit-modal__save:hover,
.party-host-flow-exit-modal__save:focus {
    background: linear-gradient(135deg, #275c63 0%, #1d454b 100%);
    box-shadow: 0 14px 30px rgba(29, 69, 75, 0.2);
    color: #fff;
    text-decoration: none;
}

.party-host-flow-exit-modal__save:disabled {
    cursor: wait;
}

.party-host-flow-exit-modal__save.is-loading {
    color: transparent;
    pointer-events: none;
    position: relative;
}

.party-host-flow-exit-modal__save.is-loading::after {
    animation: party-host-button-spin 0.7s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    border-top-color: #ffffff;
    content: '';
    display: block;
    height: 16px;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.party-host-flow-exit-modal__cancel {
    background: #fff;
    border: 1px solid rgba(23, 49, 58, 0.14);
    color: var(--ink);
    flex: 1 1 auto;
}

.party-host-flow-exit-modal__cancel:disabled {
    cursor: wait;
    opacity: 0.68;
}

.party-host-flow-exit-modal__cancel:hover,
.party-host-flow-exit-modal__cancel:focus {
    background: rgba(47, 108, 115, 0.08);
    border-color: rgba(47, 108, 115, 0.22);
    box-shadow: 0 10px 20px rgba(23, 49, 58, 0.08), 0 0 0 4px rgba(47, 108, 115, 0.1);
    color: var(--ink);
}

body.party-host-flow-modal-open {
    overflow: hidden;
}

@media (max-width: 1320px) {
    .party-host-flow-workbench {
        grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    }

    .party-host-flow-topbar {
        gap: 12px;
        grid-template-columns: minmax(172px, 1fr) auto minmax(172px, 1fr);
    }

    .party-host-flow-steps {
        gap: 14px;
    }
}

@media (max-width: 1200px) {
    .party-host-flow-workbench {
        min-height: 0;
    }
}

@media (max-width: 991px) {
    .party-host-flow-topbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 72px;
        position: static;
        row-gap: 12px;
    }

    .party-host-flow-exit {
        grid-column: 1;
        justify-self: start;
    }

    .party-host-flow-steps {
        flex-wrap: wrap;
        gap: 8px 12px;
        grid-column: 2;
        justify-content: center;
        justify-self: stretch;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
        width: 100%;
    }

    .party-host-flow-topbar.party-host-flow-topbar--steps-stacked {
        grid-template-areas:
            'exit spacer cta'
            'steps steps steps';
    }

    .party-host-flow-topbar.party-host-flow-topbar--steps-stacked .party-host-flow-exit {
        grid-area: exit;
    }

    .party-host-flow-topbar.party-host-flow-topbar--steps-stacked .party-host-flow-top-actions {
        grid-area: cta;
    }

    .party-host-flow-topbar.party-host-flow-topbar--steps-stacked .party-host-flow-steps {
        grid-area: steps;
        grid-column: 1 / -1;
        justify-content: center;
        justify-self: stretch;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .party-host-flow-top-actions {
        grid-column: 3;
        gap: 8px;
        justify-content: flex-end;
        justify-self: end;
        max-width: 100%;
        width: auto;
    }

    .party-host-flow-continue-label--desktop {
        display: none;
    }

    .party-host-flow-continue-label--mobile {
        display: inline;
    }

    .party-host-flow-mobile-preview-trigger {
        display: inline-flex;
    }
}

@media (max-width: 900px) {
    .party-host-flow-preview-panel__top-controls {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .party-host-flow-topbar,
    .party-host-flow-editor-panel,
    .party-host-flow-preview-panel {
        padding-left: 14px;
        padding-right: 14px;
    }

    .party-host-flow-notice {
        margin-left: 14px;
        margin-right: 14px;
    }

    .party-host-flow-topbar {
        --party-host-flow-topbar-inline-padding: 14px;
        column-gap: 12px;
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .party-host-flow-exit {
        min-width: 44px;
        width: 44px;
    }

    .party-host-flow-primary-cta--top {
        min-width: 140px;
    }

    .party-host-flow-top-actions {
        gap: 8px;
    }

    .party-host-flow-steps {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        justify-content: center;
        overflow: visible;
        width: 100%;
    }

    .party-host-flow-step {
        align-items: center;
        justify-content: center;
        min-height: 0;
        padding: 8px 0 10px;
        text-align: center;
        white-space: nowrap;
    }

    .party-host-flow-exit-modal__actions {
        flex-direction: column;
    }
}