/* Site chrome shared by every page through base.html: the marketing nav, the
   mobile menu, the footer, the auth dialog and the credit-pack dialog.

   Loaded in the slot the compiled Tailwind stylesheet used to occupy — after
   main.css / app-shell.css / voice-avatars.css / flags.css, before any
   page-level <style> — so the cascade order these rules rely on is unchanged.

   Two conventions worth knowing before editing:

   1. Borders are written as `border-width` + `border-color`, never the
      `border` shorthand. Tailwind's preflight was disabled in this project,
      so its `border-*` utilities only ever set a width; the accompanying
      `border-style: solid` comes from the scoped mini-preflight in
      app-shell.css, which applies to `body.has-app-sidebar` and
      `body.studio-body` only. Borders therefore render on the app pages and
      not on the marketing pages. Using the shorthand here would silently draw
      new borders across the marketing site.

   2. State lives in `wz-is-*` classes, declared at the end of the file so
      they win over the component rules by source order — the same way
      Tailwind's `.hidden` used to. */

/* ---------- shared ---------- */

.wz-body {
    background-color: rgb(255 255 255);
    color: rgb(24 24 27);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wz-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.wz-brand-logo {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: .25rem;
}

.wz-brand-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.025em;
}

/* ---------- top nav ---------- */

.wz-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: hsla(0, 0%, 100%, .8);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    max-width: 1140px;
    margin: 0 auto;
}

.wz-nav-inner {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 64px;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .wz-nav-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.wz-nav-links {
    margin-left: 2rem;
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 14px;
    color: rgb(82 82 91);
}

@media (min-width: 768px) {
    .wz-nav-links { display: flex; }
}

.wz-nav-link:hover { color: rgb(24 24 27); }

.wz-nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wz-nav-signin {
    display: none;
    padding: .5rem .75rem;
    font-size: 14px;
    font-weight: 500;
    color: rgb(82 82 91);
}

.wz-nav-signin:hover { color: rgb(24 24 27); }

@media (min-width: 640px) {
    .wz-nav-signin { display: block; }
}

.wz-nav-signup {
    display: none;
    height: 36px;
    align-items: center;
    border-radius: 9999px;
    background-color: rgb(24 24 27);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255 255 255);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-nav-signup:hover { background-color: rgb(0 0 0); }

@media (min-width: 640px) {
    .wz-nav-signup { display: inline-flex; }
}

.wz-nav-burger {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-nav-burger:hover { background-color: rgb(244 244 245); }

@media (min-width: 768px) {
    .wz-nav-burger { display: none; }
}

/* Revealed by script once the session is known. */
.wz-nav-profile {
    position: relative;
    display: none;
}

.wz-nav-profile.wz-is-shown { display: block; }

.wz-nav-avatar {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgb(24 24 27);
    font-size: 13px;
    font-weight: 600;
    color: rgb(255 255 255);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-nav-avatar:hover { background-color: rgb(0 0 0); }

.wz-nav-avatar:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* ---------- account dropdown ---------- */

.wz-profile-menu {
    position: absolute;
    right: 0;
    z-index: 50;
    margin-top: .5rem;
    display: none;
    width: 14rem;
    border-radius: 1rem;
    border-width: 1px;
    border-color: rgb(244 244 245);
    background-color: rgb(255 255 255);
    padding-top: .25rem;
    padding-bottom: .25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.wz-profile-menu.wz-is-open { display: block; }

.wz-profile-head {
    border-bottom-width: 1px;
    border-color: rgb(244 244 245);
    padding: .625rem 1rem;
}

.wz-profile-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
}

.wz-profile-email {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    color: rgb(113 113 122);
}

.wz-profile-meta {
    margin-top: .375rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.wz-profile-plan {
    border-radius: 9999px;
    background-color: rgb(244 244 245);
    padding: .125rem .5rem;
    font-size: 11px;
    text-transform: capitalize;
    color: rgb(82 82 91);
}

.wz-profile-credits {
    font-size: 11px;
    color: rgb(113 113 122);
}

.wz-profile-item {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .625rem 1rem;
    font-size: 13px;
    color: rgb(63 63 70);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-profile-item:hover { background-color: rgb(250 250 250); }

.wz-profile-foot {
    margin-top: .25rem;
    border-top-width: 1px;
    border-color: rgb(244 244 245);
}

.wz-profile-item--signout { color: rgb(113 113 122); }

.wz-profile-item--signout:hover { color: rgb(24 24 27); }

/* ---------- mobile menu ---------- */

.wz-mobilemenu {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    background-color: rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.wz-mobilemenu.wz-is-open { display: block; }

.wz-mobilemenu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    border-bottom-width: 1px;
    border-color: rgb(244 244 245);
    background-color: rgb(255 255 255);
    padding: 1rem 1rem 1.5rem;
}

.wz-mobilemenu-head {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wz-mobilemenu-close {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-mobilemenu-close:hover { background-color: rgb(244 244 245); }

.wz-mobilemenu-link {
    border-radius: .75rem;
    padding: .75rem;
    font-size: 15px;
    font-weight: 500;
    color: rgb(63 63 70);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-mobilemenu-link:hover {
    background-color: rgb(250 250 250);
    color: rgb(24 24 27);
}

.wz-mobilemenu-auth {
    margin-top: .5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-top-width: 1px;
    border-color: rgb(244 244 245);
    padding-top: .75rem;
}

.wz-mobilemenu-btn {
    height: 2.75rem;
    border-radius: .75rem;
    font-size: 14px;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-mobilemenu-btn--outline {
    border-width: 1px;
    border-color: rgb(228 228 231);
}

.wz-mobilemenu-btn--outline:hover { background-color: rgb(250 250 250); }

.wz-mobilemenu-btn--solid {
    background-color: rgb(24 24 27);
    color: rgb(255 255 255);
}

.wz-mobilemenu-btn--solid:hover { background-color: rgb(0 0 0); }

/* ---------- footer ---------- */

.wz-footer {
    border-top-width: 1px;
    border-color: rgb(244 244 245);
    background-color: rgb(255 255 255);
}

.wz-footer-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 3.5rem 1rem;
}

@media (min-width: 640px) {
    .wz-footer-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.wz-footer-cols {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .wz-footer-cols { flex-direction: row; }
}

.wz-footer-brandcol {
    display: flex;
    max-width: 20rem;
    flex-direction: column;
    justify-content: space-between;
}

.wz-footer-brandname {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.025em;
}

.wz-footer-copy {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgb(82 82 82);
}

.wz-footer-linkgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    font-size: 14px;
}

@media (min-width: 640px) {
    .wz-footer-linkgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.wz-footer-heading {
    margin-bottom: .75rem;
    font-weight: 600;
    color: rgb(24 24 27);
}

.wz-footer-list { color: rgb(113 113 122); }

/* Was Tailwind's `space-y-2`: gap between siblings only, no leading margin. */
.wz-footer-list > :not([hidden]) ~ :not([hidden]) {
    margin-top: .5rem;
    margin-bottom: 0;
}

.wz-footer-link {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-footer-link:hover { color: rgb(24 24 27); }

/* ---------- auth dialog ---------- */

.wz-authmodal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5);
    padding: 1rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.wz-authmodal.wz-is-open { display: flex; }

.wz-authmodal-dialog {
    position: relative;
    width: 100%;
    max-width: 24rem;
    border-radius: 1rem;
    background-color: rgb(255 255 255);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.wz-authmodal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: rgb(161 161 170);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-authmodal-close:hover { background-color: rgb(244 244 245); }

.wz-authmodal-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.025em;
}

.wz-authmodal-sub {
    margin-top: .25rem;
    font-size: 14px;
    color: rgb(113 113 122);
}

/* Hidden until the submit handler swaps in a state modifier. */
.wz-authmodal-msg {
    display: none;
    margin-top: 1rem;
    border-radius: .75rem;
    padding: .625rem 1rem;
    font-size: 13px;
}

.wz-authmodal-msg--ok {
    display: block;
    background-color: rgb(236 253 245);
    color: rgb(4 120 87);
}

.wz-authmodal-msg--err {
    display: block;
    background-color: rgb(254 242 242);
    color: rgb(220 38 38);
}

.wz-authmodal-form { margin-top: 1.5rem; }

.wz-authmodal-label {
    margin-bottom: .375rem;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgb(63 63 70);
}

.wz-authmodal-input {
    width: 100%;
    border-radius: .75rem;
    border-width: 1px;
    border-color: rgb(228 228 231);
    padding: .625rem 1rem;
    font-size: 14px;
}

.wz-authmodal-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 0 #fff, 0 0 0 2px rgb(24 24 27);
}

.wz-authmodal-submit {
    margin-top: .75rem;
    height: 2.75rem;
    width: 100%;
    border-radius: .75rem;
    background-color: rgb(24 24 27);
    font-size: 14px;
    font-weight: 500;
    color: rgb(255 255 255);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-authmodal-submit:hover { background-color: rgb(0 0 0); }

.wz-authmodal-divider {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wz-authmodal-rule {
    height: 1px;
    flex: 1 1 0%;
    background-color: rgb(228 228 231);
}

.wz-authmodal-or {
    font-size: 12px;
    font-weight: 500;
    color: rgb(161 161 170);
}

.wz-authmodal-google {
    display: flex;
    height: 2.75rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    border-radius: .75rem;
    border-width: 1px;
    border-color: rgb(228 228 231);
    font-size: 14px;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-authmodal-google:hover { background-color: rgb(250 250 250); }

/* ---------- credit-pack dialog ---------- */

.wz-paymodal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5);
    padding: 1rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.wz-paymodal.wz-is-open { display: flex; }

.wz-paymodal-dialog {
    width: 100%;
    max-width: 720px;
    overflow: hidden;
    border-radius: 28px;
    background-color: rgb(255 255 255);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.wz-paymodal-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .wz-paymodal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.wz-paymodal-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
}

@media (min-width: 640px) {
    .wz-paymodal-main { padding: 2rem; }
}

.wz-paymodal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.wz-paymodal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(161 161 170);
}

.wz-paymodal-title {
    margin-top: .25rem;
    font-size: 13px;
    font-weight: 600;
    color: rgb(39 39 42);
}

.wz-paymodal-close {
    margin-right: -.25rem;
    margin-top: -.25rem;
    display: flex;
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: rgb(161 161 170);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-paymodal-close:hover {
    background-color: rgb(244 244 245);
    color: rgb(82 82 91);
}

.wz-paymodal-priceline {
    display: flex;
    align-items: baseline;
    gap: .5rem;
}

.wz-paymodal-price {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.025em;
}

.wz-paymodal-pricenote {
    font-size: 14px;
    color: rgb(161 161 170);
}

.wz-paymodal-picker { position: relative; }

.wz-paymodal-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border-radius: 1rem;
    border-width: 1px;
    border-color: rgb(228 228 231);
    background-color: rgb(250 250 250);
    padding: .75rem 1rem;
    text-align: left;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-paymodal-trigger:hover { background-color: rgb(244 244 245); }

.wz-paymodal-triggertext {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wz-paymodal-arrow {
    flex-shrink: 0;
    color: rgb(161 161 170);
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-paymodal-arrow.wz-is-flipped { transform: rotate(180deg); }

/* Positioned by script (fixed, anchored to the trigger). */
.wz-paymodal-menu {
    z-index: 20;
    display: none;
    max-height: 240px;
    overflow-y: auto;
    border-radius: 1rem;
    border-width: 1px;
    border-color: rgb(228 228 231);
    background-color: rgb(255 255 255);
    padding-top: .25rem;
    padding-bottom: .25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.wz-paymodal-menu.wz-is-open { display: block; }

.wz-pack-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: .625rem 1rem;
    text-align: left;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-pack-option:hover,
.wz-pack-option.wz-is-selected { background-color: rgb(250 250 250); }

.wz-pack-lines {
    display: flex;
    flex-direction: column;
}

.wz-pack-title {
    font-size: 13px;
    font-weight: 600;
}

.wz-pack-meta {
    font-size: 12px;
    color: rgb(113 113 122);
}

.wz-pack-price {
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
}

.wz-paymodal-cta {
    display: flex;
    height: 2.75rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background-color: rgb(24 24 27);
    font-size: 14px;
    font-weight: 600;
    color: rgb(255 255 255);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.wz-paymodal-cta:hover { background-color: rgb(0 0 0); }

.wz-paymodal-features {
    font-size: 13px;
    color: rgb(82 82 91);
}

.wz-paymodal-features > :not([hidden]) ~ :not([hidden]) {
    margin-top: .5rem;
    margin-bottom: 0;
}

.wz-paymodal-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.wz-paymodal-check {
    flex-shrink: 0;
    color: rgb(16 185 129);
}

.wz-paymodal-signin {
    font-size: 12px;
    color: rgb(161 161 170);
}

.wz-paymodal-signin-link {
    font-weight: 500;
    color: rgb(63 63 70);
    text-decoration-line: underline;
}

/* ---------- credit-pack dialog: cover artwork panel ---------- */

.wz-paymodal-visual {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgb(9 9 11);
}

@media (min-width: 640px) {
    .wz-paymodal-visual { display: flex; }
}

.wz-paymodal-visual-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom right, #27272a, #09090b, #000);
}

.wz-paymodal-visual-glow {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 13rem;
    width: 13rem;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background-color: rgba(79, 70, 229, .2);
    filter: blur(64px);
}

.wz-paymodal-visual-inner {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 320px;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

.wz-coverstack {
    position: relative;
    height: 240px;
    width: 180px;
}

.wz-cover {
    position: absolute;
    aspect-ratio: 2/3;
    border-radius: .75rem;
    -o-object-fit: cover;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.wz-cover--left {
    left: -20px;
    top: 24px;
    width: 90px;
    transform: rotate(-8deg);
    opacity: .7;
}

.wz-cover--right {
    right: -14px;
    top: 16px;
    width: 96px;
    transform: rotate(6deg);
    opacity: .75;
}

.wz-cover--front {
    left: 50%;
    top: 50%;
    z-index: 10;
    width: 104px;
    transform: translate(-50%, -50%) rotate(-1deg);
}

.wz-paymodal-badgewrap {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.wz-paymodal-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 9999px;
    background-color: hsla(0, 0%, 100%, .1);
    padding: .375rem .75rem;
    font-size: 12px;
    font-weight: 500;
    color: rgb(255 255 255);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.wz-paymodal-dot {
    height: .375rem;
    width: .375rem;
    animation: wz-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    border-radius: 9999px;
    background-color: rgb(52 211 153);
}

@keyframes wz-pulse {
    50% { opacity: .5; }
}

/* ---------- state ----------
   Declared last so they beat the component rules above on source order,
   exactly as Tailwind's `.hidden` did. */

.wz-is-hidden { display: none; }
