﻿        :root {
            --primary: #0385ff;
            --blue:    #0385ff;
            --blue-dk: #0270d9;
            --green:   #10b981;
            --amber:   #f59e0b;
            --red:     #ef4444;
            --heading: #0f172a;
            --text:    #0f172a;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --bg: hsl(260 20% 97%);
            --glass:        rgba(255,255,255,.62);
            --glass-strong: rgba(255,255,255,.78);
            --glass-soft:   rgba(255,255,255,.42);
            --glass-border: rgba(15,23,42,.07);
            --glass-hairline: rgba(15,23,42,.05);
            --atmo-1: rgba(3,133,255,.18);
            --atmo-2: rgba(99,102,241,.12);
            --atmo-3: rgba(176,196,222,.16);
            --shadow-1: 0 1px 0 rgba(255,255,255,.7) inset, 0 18px 40px -22px rgba(15,23,42,.18), 0 4px 12px -8px rgba(15,23,42,.08);
            --shadow-2: 0 1px 0 rgba(255,255,255,.7) inset, 0 30px 70px -34px rgba(15,23,42,.30), 0 8px 22px -10px rgba(15,23,42,.14);
            --shadow-blue: 0 1px 0 rgba(255,255,255,.4) inset, 0 14px 30px -10px rgba(3,133,255,.45);
            --radius:    1rem;
            --radius-sm: .65rem;
            --radius-lg: 1.25rem;
            --radius-xl: 1.6rem;
            --font-ui:      'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
            --font-display: 'Outfit', 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
            --font-hero:    'Inter', 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
            --font-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        }
        html[data-theme='dark'] {
            color-scheme: dark;
            --heading: #ffffff;
            --text: #f4f7fb;
            --text-secondary: #c3cedb;   
            --text-muted: #90a1b5;       
            --bg: #010309;
            --bg-deep: #010309;
            --bg-soft: #0f172a;
            --glass:          rgba(4, 6, 26, 0.7);     
            --glass-strong:   rgba(12, 18, 34, 0.9);   
            --glass-soft:     rgba(255, 255, 255, 0.05); 
            --glass-border:   rgba(255, 255, 255, 0.08); 
            --glass-hairline: rgba(255, 255, 255, 0.08); 
            --surface:        rgba(4, 6, 26, 0.7);
            --surface-strong: rgba(12, 18, 34, 0.9);
            --surface-solid:  hsl(222 45% 11%);
            --surface-soft:   rgba(255, 255, 255, 0.05);
            --surface-muted:  rgba(255, 255, 255, 0.04);
            --surface-alt:    rgba(255, 255, 255, 0.05);
            --card-border:    rgba(96, 165, 250, 0.18);
            --border:         rgba(255, 255, 255, 0.08);
            --border-strong:  rgba(255, 255, 255, 0.16);
            --border-solid:   hsl(217 24% 22%);
            --text-h:         #ffffff;
            --text-p:         #c3cedb;
            --text-soft:      #90a1b5;
            --brand:       #1557ff;
            --brand-soft:  rgba(21, 87, 255, 0.18);
            --accent:      #18b7ff;
            --accent-soft: rgba(24, 183, 255, 0.14);
            --atmo-1: rgba(3,133,255,.22);
            --atmo-2: rgba(99,102,241,.16);
            --atmo-3: rgba(56,189,248,.10);
            --shadow-1: 0 1px 0 rgba(255,255,255,.05) inset, 0 24px 50px -24px rgba(2,6,23,.55), 0 8px 22px -8px rgba(2,6,23,.40);
            --shadow-2: 0 1px 0 rgba(255,255,255,.06) inset, 0 36px 80px -36px rgba(2,6,23,.65), 0 12px 28px -10px rgba(2,6,23,.45);
            --shadow-blue: 0 1px 0 rgba(255,255,255,.08) inset, 0 18px 40px -10px rgba(3,133,255,.55);
        }
        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        html, body { margin: 0; padding: 0; height: 100%; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
        body {
            font-family: var(--font-ui);
            color: var(--text);
            font-size: 15px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
            min-height: 100dvh;
            background: var(--bg);
            position: relative;
            overflow-x: hidden;
        }
        html[data-theme='dark'] body {
            background: linear-gradient(180deg, #061021 0%, #0b1220 50%, #0f172a 100%);
        }
        .atmo { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
        .atmo__blob { position: absolute; border-radius: 50%; filter: blur(110px); will-change: transform; }
        .atmo__blob--1 { width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; top: -10vh; left: -10vw; background: var(--atmo-1); animation: drift-a 26s ease-in-out infinite alternate; }
        .atmo__blob--2 { width: 55vw; height: 55vw; max-width: 600px; max-height: 600px; bottom: -10vh; right: -10vw; background: var(--atmo-2); animation: drift-b 32s ease-in-out infinite alternate; }
        .atmo__blob--3 { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; top: 35%; right: 5%; background: var(--atmo-3); animation: drift-c 38s ease-in-out infinite alternate; }
        @keyframes drift-a { 0%{transform:translate3d(0,0,0) scale(1);} 50%{transform:translate3d(8%,5%,0) scale(1.08);} 100%{transform:translate3d(-4%,7%,0) scale(1.04);} }
        @keyframes drift-b { 0%{transform:translate3d(0,0,0) scale(1);} 50%{transform:translate3d(-6%,-4%,0) scale(1.05);} 100%{transform:translate3d(5%,-6%,0) scale(1.07);} }
        @keyframes drift-c { 0%{transform:translate3d(0,0,0) scale(1);} 50%{transform:translate3d(-5%,6%,0) scale(1.08);} 100%{transform:translate3d(6%,-3%,0) scale(1.03);} }
        .stage {
            min-height: 100vh;
            min-height: 100dvh;
            display: grid; place-items: center; padding: 1.25rem;
        }
        .frame {
            width: 100%;
            max-width: 420px;
            min-height: 880px;
            max-height: calc(100vh - 2.5rem);
            max-height: calc(100dvh - 2.5rem);
            border-radius: 32px;
            background: var(--glass-soft);
            backdrop-filter: blur(40px) saturate(170%);
            -webkit-backdrop-filter: blur(40px) saturate(170%);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-2);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        @media (max-width: 480px) {
            .stage { padding: 0; }
            .frame {
                max-width: none;
                min-height: 100vh;
                max-height: 100vh;
                min-height: 100dvh;
                max-height: 100dvh;
                border: 0; border-radius: 0; box-shadow: none;
                backdrop-filter: none; background: transparent;
            }
        }
        .topbar {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: .75rem;
            padding: calc(env(safe-area-inset-top, 0px) + 1.1rem) 1.1rem .55rem;
            position: sticky;
            top: 0;
            background: linear-gradient(180deg, var(--bg) 75%, transparent);
            z-index: 30;
        }
        html[data-theme='dark'] .topbar {
            background: linear-gradient(180deg, rgba(11,18,32,.85) 70%, transparent);
            backdrop-filter: blur(12px);
        }
        .brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-hero); font-weight: 800; font-size: .92rem; letter-spacing: -.01em; color: var(--heading); }
        .brand__mark {
            width: 28px; height: 28px;
            border-radius: 9px;
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff;
            display: grid; place-items: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: .8rem;
            box-shadow: var(--shadow-blue);
        }
        .topbar__title {
            justify-self: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: .82rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--text-secondary);
        }
        .icon-btn {
            appearance: none;
            -webkit-appearance: none;
            width: 48px; height: 48px;
            border-radius: 999px;
            background: var(--glass);
            backdrop-filter: blur(14px);
            border: 1px solid var(--glass-border);
            color: var(--text);
            display: grid; place-items: center;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            transition: background .12s ease, transform .12s ease;
        }
        .icon-btn:active { transform: scale(.94); }
        .icon-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
        .icon-btn svg { width: 20px; height: 20px; }
        .icon-btn--back { background: transparent; border-color: transparent; }
        .screen { display: none; flex: 1; overflow-y: auto; padding: .25rem 1.1rem 1.5rem; -webkit-overflow-scrolling: touch; }
        .screen.is-active { display: block; }
        .screen::-webkit-scrollbar { width: 0; }
        .screen--auth { display: none; padding: 1rem 1.6rem 2rem; }
        .screen--auth.is-active { display: flex; flex-direction: column; }
        .screen--wizard { display: none; padding: 0; flex-direction: column; }
        .screen--wizard.is-active { display: flex; }
        .meta {
            font-family: var(--font-display);
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin: .5rem 0 .55rem;
        }
        .h1 {
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 2.1rem;
            letter-spacing: -.035em;
            line-height: 1.05;
            color: var(--heading);
            margin: 0 0 .45rem;
        }
        .h2 {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--heading);
            margin: 0 0 .3rem;
            letter-spacing: -.01em;
        }
        .body-text { font-size: .9rem; color: var(--text-secondary); margin: 0 0 1rem; line-height: 1.55; }
        .body-text strong { color: var(--heading); font-weight: 600; }
        .pill {
            display: inline-flex; align-items: center; gap: .3rem;
            padding: .15rem .55rem;
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: .65rem; font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            background: var(--glass-strong);
            color: var(--text-secondary);
            border: 1px solid var(--glass-border);
        }
        .pill--paid    { background: rgba(16,185,129,.12); color: #047857; border-color: rgba(16,185,129,.25); }
        .pill--pending { background: rgba(245,158,11,.12); color: #b45309; border-color: rgba(245,158,11,.25); }
        .pill--failed  { background: rgba(239,68,68,.12);  color: #b91c1c; border-color: rgba(239,68,68,.25); }
        html[data-theme='dark'] .pill--paid    { color: #6ee7b7; }
        html[data-theme='dark'] .pill--pending { color: #fcd34d; }
        html[data-theme='dark'] .pill--failed  { color: #fca5a5; }
        .glass {
            background: var(--glass);
            backdrop-filter: blur(22px) saturate(170%);
            -webkit-backdrop-filter: blur(22px) saturate(170%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-1);
        }
        .glass-list { 
            background: var(--glass);
            backdrop-filter: blur(22px) saturate(170%);
            -webkit-backdrop-filter: blur(22px) saturate(170%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-1);
            overflow: hidden;
            margin-bottom: .65rem;
        }
        .btn {
            appearance: none;
            -webkit-appearance: none;
            display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
            min-height: 48px;
            padding: .85rem 1.5rem;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .95rem;
            letter-spacing: .005em;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff;
            border: 0;
            cursor: pointer;
            box-shadow: var(--shadow-blue);
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
            transition: transform .12s, box-shadow .12s, filter .12s;
        }
        .btn:active { transform: scale(.97); }
        .btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
        .btn--full { width: 100%; }
        .btn--ghost {
            background: transparent;
            color: var(--blue);
            border: 1px solid var(--glass-border);
            box-shadow: none;
        }
        .btn--secondary {
            background: var(--glass-strong);
            color: var(--text);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-1);
        }
        .btn--small { min-height: 44px; padding: .55rem 1rem; font-size: .85rem; }
        .btn svg { width: 18px; height: 18px; }
        .btn--apple {
            background: #000; color: #fff; border: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
            font-weight: 600; font-size: 1rem;
        }
        html[data-theme='dark'] .btn--apple { background: #fff; color: #000; }
        .btn--google {
            background: #fff; color: #3c4043;
            border: 1px solid #dadce0;
            font-family: 'Google Sans', 'Roboto', sans-serif;
            font-weight: 500; font-size: 1rem;
        }
        html[data-theme='dark'] .btn--google { background: #1a1a1a; color: #e8eaed; border-color: #5f6368; }
        .wallets {
            display: flex; flex-direction: column; gap: .55rem;
            margin-bottom: .85rem;
        }
        .wallet-divider {
            display: flex; align-items: center; gap: .65rem;
            color: var(--text-muted);
            font-size: .76rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: .08em;
            margin: .85rem 0;
        }
        .wallet-divider::before,
        .wallet-divider::after {
            content: ""; flex: 1; height: 1px; background: var(--glass-hairline);
        }
        .stripe-mock {
            min-height: 200px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--glass-border);
            background: var(--glass-strong);
            padding: 1rem;
            display: flex; flex-direction: column; gap: .85rem;
        }
        .stripe-mock__row { display: grid; gap: .55rem; }
        .stripe-mock__row--two { grid-template-columns: 1fr 1fr; }
        .stripe-mock__field {
            background: rgba(15,23,42,.04);
            border-radius: 8px;
            padding: .85rem 1rem;
            min-height: 44px;
            display: flex; align-items: center;
            color: var(--text-muted);
            font-size: .9rem;
        }
        .stripe-mock__field--focus {
            background: #fff;
            border: 1.5px solid var(--blue);
            box-shadow: 0 0 0 3px rgba(3,133,255,.12);
        }
        html[data-theme='dark'] .stripe-mock__field { background: rgba(255,255,255,.05); }
        html[data-theme='dark'] .stripe-mock__field--focus { background: rgba(255,255,255,.08); }
        .stripe-mock__skeleton {
            height: 12px; border-radius: 6px;
            background: linear-gradient(90deg, rgba(15,23,42,.06) 0%, rgba(15,23,42,.10) 50%, rgba(15,23,42,.06) 100%);
            background-size: 200% 100%;
            animation: stripe-shim 1.4s ease-in-out infinite;
        }
        @keyframes stripe-shim {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        @media (prefers-reduced-motion: reduce) { .stripe-mock__skeleton { animation: none; } }
        .field { display: block; margin-bottom: .85rem; }
        .field__label {
            display: block;
            font-family: var(--font-display);
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: .35rem;
        }
        .field__input,
        .field__select {
            display: block;
            width: 100%;
            min-height: 48px;
            padding: .85rem 1rem;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            background: var(--glass-strong);
            backdrop-filter: blur(18px);
            color: var(--heading);
            font-size: 16px; 
            font-family: var(--font-ui);
            -webkit-tap-highlight-color: transparent;
            transition: border-color .15s, box-shadow .15s;
        }
        .field__input:focus,
        .field__select:focus,
        .field__input:focus-visible,
        .field__select:focus-visible {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(3,133,255,.18);
        }
        .field__input::placeholder { color: var(--text-secondary); opacity: .65; }
        .field__hint { display: block; margin-top: .35rem; font-size: .76rem; color: var(--text-secondary); }
        .field__error { display: block; margin-top: .35rem; font-size: .76rem; color: var(--red); font-weight: 600; }
        .field.is-invalid .field__input,
        .field.is-invalid .field__select {
            border-color: var(--red);
            background: rgba(239, 68, 68, .04);
        }
        .field.is-invalid .field__input:focus,
        .field.is-invalid .field__select:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, .18);
        }
        .field--row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
        .field--row--3 { display: grid; grid-template-columns: 1.4fr 70px 1fr; gap: .55rem; }
        .check-row + [data-reveal-field],
        .check-row + .field[data-reveal-field] {
            margin-top: -.25rem;
        }
        .field[hidden],
        [data-reveal-field][hidden] {
            display: none !important;
        }
        .auth-hero {
            margin: 1.5rem 0 1.4rem;
        }
        .auth-hero__brand {
            width: 56px; height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff;
            display: grid; place-items: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.4rem;
            box-shadow: var(--shadow-blue);
            margin-bottom: 1.1rem;
        }
        .auth-hero h1 {
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: -.025em;
            line-height: 1.1;
            color: var(--heading);
            margin: 0 0 .35rem;
        }
        .auth-hero p {
            font-size: .92rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }
        .auth-foot {
            margin-top: auto;
            padding-top: 1.5rem;
            font-size: .8rem;
            color: var(--text-secondary);
            text-align: center;
        }
        .auth-foot a { color: var(--blue); text-decoration: none; font-weight: 600; }
        .otp-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: .5rem;
            margin: .35rem 0 .85rem;
        }
        .otp-cell {
            aspect-ratio: 1;
            min-height: 48px;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            background: var(--glass-strong);
            backdrop-filter: blur(18px);
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 1.4rem;
            text-align: center;
            color: var(--heading);
            transition: border-color .15s, box-shadow .15s;
        }
        .otp-cell:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(3,133,255,.18); }
        .otp-cell--filled { color: var(--text); border-color: rgba(3,133,255,.35); }
        .resend-line {
            font-size: .82rem;
            color: var(--text-secondary);
            text-align: center;
            margin: 0 0 1.2rem;
        }
        .resend-line button {
            background: transparent; border: 0; padding: 0;
            color: var(--blue); font-weight: 700; cursor: pointer;
            font-family: var(--font-ui); font-size: inherit;
        }
        .greet {
            margin: .85rem 0 .25rem;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .82rem;
            color: var(--text-secondary);
        }
        .greet__name { color: var(--heading); }
        .home-headline {
            margin: 0 0 .25rem;
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 2.6rem;
            letter-spacing: -.035em;
            line-height: 1;
            color: var(--heading);
            font-variant-numeric: tabular-nums;
        }
        .home-headline-sub {
            margin: 0 0 1.2rem;
            font-size: .82rem;
            color: var(--text-secondary);
        }
        .home-headline-sub strong { color: var(--text); font-weight: 700; }
        .hero-tile {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 1rem;
            padding: 1.15rem 1.2rem;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff;
            box-shadow: var(--shadow-blue);
            margin-bottom: 1rem;
            text-decoration: none;
            cursor: pointer;
        }
        .hero-tile__title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.05rem;
            margin: 0 0 .15rem;
        }
        .hero-tile__sub {
            font-size: .8rem;
            opacity: .82;
            margin: 0;
        }
        .hero-tile__icon {
            width: 44px; height: 44px;
            border-radius: 14px;
            background: rgba(255,255,255,.18);
            display: grid; place-items: center;
        }
        .hero-tile__icon svg { width: 22px; height: 22px; color: #fff; }
        .stat-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .5rem;
            margin-bottom: 1.1rem;
        }
        .stat-cell {
            padding: .8rem .85rem;
            border-radius: var(--radius);
            background: var(--glass);
            backdrop-filter: blur(22px) saturate(170%);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-1);
        }
        .stat-cell__label {
            font-family: var(--font-display);
            font-size: .58rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin: 0 0 .2rem;
        }
        .stat-cell__value {
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--heading);
            font-variant-numeric: tabular-nums;
            letter-spacing: -.02em;
        }
        .stat-cell__sub {
            font-size: .65rem;
            color: var(--text-secondary);
            margin-top: .15rem;
        }
        .sec {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin: 1.3rem 0 .55rem;
        }
        .sec__title {
            font-family: var(--font-display);
            font-size: .68rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .16em;
            color: var(--heading);
        }
        .sec__link { font-size: .76rem; color: var(--blue); font-weight: 700; text-decoration: none; }
        .order-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: .65rem;
            align-items: center;
            padding: .9rem 1.1rem;
            border-bottom: 1px solid var(--glass-hairline);
            cursor: pointer;
            transition: background .15s;
        }
        .order-row:last-child { border-bottom: 0; }
        .order-row:active { background: var(--glass-soft); }
        .order-row__main { min-width: 0; }
        .order-row__title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .92rem;
            color: var(--heading);
            line-height: 1.25;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .order-row__sub {
            font-size: .76rem;
            color: var(--text-secondary);
            margin-top: .15rem;
            display: flex; align-items: center; gap: .5rem;
            flex-wrap: wrap;
        }
        .order-row__price {
            font-family: var(--font-hero);
            font-variant-numeric: tabular-nums;
            font-weight: 800;
            font-size: 1rem;
            color: var(--text);
            white-space: nowrap;
        }
        .od-summary {
            padding: 1.1rem 1.2rem;
            margin-bottom: 1rem;
        }
        .od-summary__label { color: var(--text-secondary); font-size: .82rem; margin: 0 0 .4rem; }
        .od-summary__price {
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 2.1rem;
            letter-spacing: -.035em;
            color: var(--heading);
            margin: 0 0 .3rem;
            font-variant-numeric: tabular-nums;
        }
        .od-summary__meta { color: var(--text-secondary); font-size: .82rem; line-height: 1.55; }
        .od-summary__meta strong { color: var(--text); font-weight: 600; }
        .kv-list { padding: 0; }
        .kv {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: .65rem;
            padding: .8rem 1.1rem;
            border-bottom: 1px solid var(--glass-hairline);
            font-size: .88rem;
        }
        .kv:last-child { border-bottom: 0; }
        .kv__k { color: var(--text-secondary); }
        .kv__v { color: var(--text); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; word-break: break-word; min-width: 0; }
        .kv__v code { font-family: var(--font-mono); font-size: .82rem; color: var(--text-secondary); }
        .od-actions {
            display: grid; gap: .55rem;
            margin-top: 1rem;
        }
        .wiz-head {
            position: sticky;
            top: 0;
            background: linear-gradient(180deg, var(--bg) 75%, transparent);
            padding: calc(env(safe-area-inset-top, 0px) + 1.1rem) 1.1rem .55rem;
            z-index: 30;
        }
        html[data-theme='dark'] .wiz-head { background: linear-gradient(180deg, rgba(11,18,32,.85) 70%, transparent); backdrop-filter: blur(12px); }
        .wiz-head__row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .65rem; margin-bottom: .85rem; }
        .wiz-progress { display: flex; gap: .35rem; }
        .wiz-progress__cell {
            flex: 1; height: 4px; border-radius: 999px;
            background: rgba(15,23,42,.10);
        }
        html[data-theme='dark'] .wiz-progress__cell { background: rgba(255,255,255,.15); }
        .wiz-progress__cell.is-done   { background: var(--blue); }
        .wiz-progress__cell.is-active { background: linear-gradient(90deg, var(--blue) 60%, rgba(15,23,42,.10) 60%); }
        html[data-theme='dark'] .wiz-progress__cell.is-active { background: linear-gradient(90deg, var(--blue) 60%, rgba(255,255,255,.15) 60%); }
        .wiz-step-label {
            font-family: var(--font-display);
            font-size: .65rem;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin: .55rem 0 0;
        }
        .wiz-step-label strong { color: var(--text); }
        .wiz-body {
            flex: 1;
            overflow-y: auto;
            padding: .85rem 1.1rem 7rem;
            -webkit-overflow-scrolling: touch;
        }
        .wiz-body::-webkit-scrollbar { width: 0; }
        .wiz-foot {
            position: sticky;
            bottom: 0;
            padding: .75rem 1.1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
            background: linear-gradient(0deg, var(--bg) 60%, transparent);
            display: grid; gap: .5rem;
        }
        html[data-theme='dark'] .wiz-foot { background: linear-gradient(0deg, rgba(11,18,32,.92) 60%, transparent); backdrop-filter: blur(12px); }
        .group {
            background: var(--glass);
            backdrop-filter: blur(22px) saturate(170%);
            -webkit-backdrop-filter: blur(22px) saturate(170%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-1);
            padding: 1rem;
            margin-bottom: 2rem;
            overflow: visible;
        }
        .group__title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: .9rem;
            color: var(--heading);
            margin: 0 0 .65rem;
        }
        .tpl-carousel-wrap {
            margin: .75rem -1.1rem 0;  
        }
        .tpl-carousel {
            display: flex;
            gap: .85rem;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-padding-left: 1.1rem;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: .25rem 1.1rem 1rem;
            touch-action: pan-x;
            overscroll-behavior-x: contain;
        }
        .tpl-carousel::-webkit-scrollbar { display: none; height: 0; }
        .tpl {
            appearance: none;
            font: inherit;
            color: var(--text);
            flex: 0 0 78%;          
            max-width: 320px;
            min-width: 240px;
            scroll-snap-align: center;
            scroll-snap-stop: always;
            display: flex; flex-direction: column;
            padding: 1rem;
            border-radius: var(--radius-lg);
            background: var(--glass-strong);
            backdrop-filter: blur(14px) saturate(170%);
            -webkit-backdrop-filter: blur(14px) saturate(170%);
            border: 1.5px solid var(--glass-border);
            cursor: pointer;
            transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
            text-align: left;
            position: relative;
            touch-action: pan-x;
            -webkit-user-select: none;
            user-select: none;
        }
        .tpl.is-selected {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(3,133,255,.18), var(--shadow-1);
            transform: translateY(-2px);
        }
        .tpl__chip {
            display: inline-flex; align-items: center;
            align-self: flex-start;
            padding: .25rem .65rem;
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: .68rem; font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: .65rem;
        }
        .tpl[data-tpl="quickbooks"]   .tpl__chip { background: rgba(46, 167, 50, .14);  color: #1e7a22; }
        .tpl[data-tpl="adp"]          .tpl__chip { background: rgba(220, 53, 69, .14);  color: #b3253a; }
        .tpl[data-tpl="professional"] .tpl__chip { background: rgba(99, 102, 241, .14); color: #4f52d3; }
        html[data-theme='dark'] .tpl[data-tpl="quickbooks"]   .tpl__chip { color: #6ee084; background: rgba(46,167,50,.20); }
        html[data-theme='dark'] .tpl[data-tpl="adp"]          .tpl__chip { color: #ff8898; background: rgba(220,53,69,.20); }
        html[data-theme='dark'] .tpl[data-tpl="professional"] .tpl__chip { color: #a3a5fa; background: rgba(99,102,241,.20); }
        .tpl__thumb {
            width: 100%;
            aspect-ratio: 8.5 / 11;
            border-radius: 10px;
            background: #fff;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-1);
            position: relative;
            overflow: hidden;
            margin-bottom: .85rem;
        }
        .tpl__thumb::before {
            content: "";
            position: absolute; inset: 12px;
            background:
                linear-gradient(currentColor, currentColor) 0 0   / 100% 22px no-repeat,
                linear-gradient(currentColor, currentColor) 0 36px / 60% 10px no-repeat,
                linear-gradient(currentColor, currentColor) 0 56px / 100% 6px no-repeat,
                linear-gradient(currentColor, currentColor) 0 72px / 100% 6px no-repeat,
                linear-gradient(currentColor, currentColor) 0 88px / 100% 6px no-repeat,
                linear-gradient(currentColor, currentColor) 0 104px / 80% 6px no-repeat,
                linear-gradient(currentColor, currentColor) 0 124px / 100% 1px no-repeat,
                linear-gradient(currentColor, currentColor) 0 134px / 50% 6px no-repeat,
                linear-gradient(currentColor, currentColor) 0 148px / 100% 6px no-repeat,
                linear-gradient(currentColor, currentColor) 0 162px / 100% 6px no-repeat;
            opacity: .12;
        }
        .tpl[data-tpl="quickbooks"]   .tpl__thumb { color: #1e7a22; }
        .tpl[data-tpl="adp"]          .tpl__thumb { color: #b3253a; }
        .tpl[data-tpl="professional"] .tpl__thumb { color: #4f52d3; }
        .tpl__thumb img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: contain;
            border-radius: inherit;
            display: block;
        }
        .tpl__thumb:has(img)::before { display: none; }
        .tpl__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text); margin: 0 0 .25rem; letter-spacing: -.005em; }
        .tpl__sub  { font-size: .85rem; color: var(--text-secondary); margin: 0; line-height: 1.45; }
        .tpl__check {
            position: absolute; top: 12px; right: 12px;
            width: 26px; height: 26px;
            border-radius: 50%;
            background: var(--blue);
            color: #fff;
            display: grid; place-items: center;
            opacity: 0; transform: scale(.7);
            transition: opacity .18s ease, transform .18s ease;
        }
        .tpl.is-selected .tpl__check { opacity: 1; transform: scale(1); }
        .tpl__check svg { width: 14px; height: 14px; }
        .tpl-dots {
            display: flex; justify-content: center; gap: .45rem;
            margin: .35rem 0 .35rem;
        }
        .tpl-dots__dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: rgba(15,23,42,.18);
            transition: width .2s ease, background .2s ease;
        }
        .tpl-dots__dot.is-active {
            width: 22px; border-radius: 4px;
            background: var(--blue);
        }
        html[data-theme='dark'] .tpl-dots__dot { background: rgba(255,255,255,.18); }
        @media (prefers-reduced-motion: reduce) {
            .tpl, .tpl__check, .tpl-dots__dot { transition: none; }
            .tpl-carousel { scroll-behavior: auto; }
        }
        .check-row {
            display: flex; align-items: center; gap: .65rem;
            padding: .85rem 0;
            cursor: pointer;
        }
        .check-row input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            flex-shrink: 0;
            width: 22px; height: 22px;
            margin: 0;
            border-radius: 7px;
            border: 1.5px solid var(--glass-border);
            background: var(--glass-strong);
            backdrop-filter: blur(14px);
            cursor: pointer;
            position: relative;
            transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
        }
        .check-row input[type="checkbox"]:hover {
            border-color: rgba(3,133,255,.45);
        }
        .check-row input[type="checkbox"]:focus-visible {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(3,133,255,.18);
        }
        .check-row input[type="checkbox"]:checked {
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            border-color: transparent;
            box-shadow: var(--shadow-blue);
        }
        .check-row input[type="checkbox"]:checked::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 2px;
            width: 6px;
            height: 11px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        .check-row input[type="checkbox"]:disabled {
            opacity: .55;
            cursor: not-allowed;
        }
        .check-row .body-text,
        .check-row p {
            margin: 0;
            line-height: 1.4;
        }
        .check-row .body-text a,
        .check-row p a { color: var(--blue); font-weight: 600; text-decoration: none; }
        .paydate-row {
            border-bottom: 1px solid var(--glass-hairline);
        }
        .paydate-row:last-child { border-bottom: 0; }
        [data-paydate-list]:not(.glass-list) {
            display: flex;
            flex-direction: column;
            gap: .65rem;
        }
        [data-paydate-list]:not(.glass-list) .paydate-row {
            background:
                linear-gradient(155deg,
                    rgba(255, 255, 255, .82) 0%,
                    rgba(232, 240, 252, .58) 50%,
                    rgba(214, 226, 246, .48) 100%);
            backdrop-filter: blur(22px) saturate(190%);
            -webkit-backdrop-filter: blur(22px) saturate(190%);
            border: 1.5px solid rgba(15, 23, 42, .10);
            border-radius: var(--radius-lg);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, .95) inset,
                0 -1px 0 rgba(15, 23, 42, .04) inset,
                1px 0 0 rgba(255, 255, 255, .55) inset,
                -1px 0 0 rgba(15, 23, 42, .04) inset,
                0 18px 36px -22px rgba(15, 23, 42, .28),
                0 6px 18px -8px rgba(15, 23, 42, .10);
            overflow: hidden;
            position: relative;
        }
        [data-paydate-list]:not(.glass-list) .paydate-row::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            background: linear-gradient(135deg,
                rgba(255, 255, 255, .35) 0%,
                rgba(255, 255, 255, 0) 35%,
                rgba(255, 255, 255, 0) 100%);
            mix-blend-mode: overlay;
            opacity: .8;
        }
        html[data-theme='dark'] [data-paydate-list]:not(.glass-list) .paydate-row {
            background:
                linear-gradient(155deg,
                    rgba(255, 255, 255, .12) 0%,
                    rgba(120, 150, 200, .14) 50%,
                    rgba(80, 110, 160, .10) 100%);
            border: 1.5px solid rgba(255, 255, 255, .18);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, .14) inset,
                0 -1px 0 rgba(0, 0, 0, .25) inset,
                0 18px 36px -22px rgba(0, 0, 0, .55),
                0 6px 18px -8px rgba(0, 0, 0, .35);
        }
        html[data-theme='dark'] [data-paydate-list]:not(.glass-list) .paydate-row::before {
            background: linear-gradient(135deg,
                rgba(255, 255, 255, .12) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0) 100%);
            mix-blend-mode: screen;
        }
        .paydate-row__head {
            display: grid;
            grid-template-columns: 1fr 88px auto auto;
            gap: .55rem; align-items: center;
            padding: .85rem 1rem;
            min-height: 56px;
            background: #ffffff;
            position: relative;
            z-index: 1;        
        }
        html[data-theme='dark'] .paydate-row__head {
            background: rgba(255, 255, 255, .04);
        }
        .paydate-row__head:not(:has(.paydate-row__hours)) {
            grid-template-columns: 1fr auto auto;
        }
        .paydate-row__toggle {
            display: block;
            background: transparent; border: 0; padding: 0;
            font: inherit; color: inherit;
            text-align: left;
            cursor: pointer;
            min-width: 0;
        }
        .paydate-row__hours-cell {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-width: 0;
        }
        .paydate-row__hours {
            min-height: 40px;
            padding: .4rem 1.5rem .4rem .55rem;   
            font-size: .9rem;
            text-align: right;
            font-variant-numeric: tabular-nums;
        }
        .paydate-row__hours-suffix {
            position: absolute;
            right: .55rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            font-family: var(--font-display);
            font-size: .7rem;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: .04em;
        }
        .paydate-row__date {
            font-weight: 700; color: var(--text-secondary); font-size: .95rem;
        }
        .paydate-row__period {
            font-size: .76rem; color: var(--text-secondary); margin-top: .15rem;
        }
        .paydate-row__amount {
            font-family: var(--font-display); font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: var(--blue); font-size: 1.05rem;
        }
        .paydate-row__amount-toggle {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            background: transparent;
            border: 0;
            padding: .35rem .25rem .35rem .55rem;
            margin: -.35rem 0;          
            border-radius: 8px;
            cursor: pointer;
            font: inherit;
            color: inherit;
            grid-column: span 2;        
            transition: background-color .15s ease;
        }
        .paydate-row__amount-toggle:hover,
        .paydate-row__amount-toggle:focus-visible {
            background: rgba(3, 133, 255, .08);
            outline: none;
        }
        .paydate-row__chev {
            color: var(--text-muted); font-size: .9rem;
            transition: transform .2s ease;
        }
        .paydate-row.is-open .paydate-row__chev { transform: rotate(180deg); }
        .paydate-row__edit {
            display: grid;
            grid-template-rows: 0fr;
            border-top: 1px solid transparent;
            background: transparent;
            transition: grid-template-rows .35s cubic-bezier(.22, 1, .36, 1),
                        border-top-color .25s ease,
                        background-color .25s ease,
                        box-shadow .25s ease;
        }
        .paydate-row__edit-inner {
            min-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 1rem;
            transition: padding .35s cubic-bezier(.22, 1, .36, 1),
                        opacity .25s ease;
        }
        .paydate-row.is-open .paydate-row__edit {
            grid-template-rows: 1fr;
            border-top-color: var(--glass-border);
            background: transparent;
            box-shadow: inset 0 6px 10px -10px rgba(15, 23, 42, .14);
        }
        html[data-theme='dark'] .paydate-row.is-open .paydate-row__edit {
            box-shadow: inset 0 6px 10px -10px rgba(0, 0, 0, .55);
        }
        .paydate-row.is-open .paydate-row__edit-inner {
            padding: .9rem 1rem 1rem;
            opacity: 1;
        }
        [data-paydate-list]:not(.glass-list) .paydate-row.is-open {
            box-shadow: var(--shadow-2);
        }
        @media (hover: hover) {
            [data-paydate-list]:not(.glass-list) .paydate-row:not(.is-open):hover {
                border-color: rgba(3, 133, 255, .35);
                box-shadow:
                    0 1px 0 rgba(255, 255, 255, .95) inset,
                    0 0 0 1px rgba(3, 133, 255, .12),
                    0 16px 38px -16px rgba(3, 133, 255, .50),
                    0 8px 22px -8px rgba(3, 133, 255, .25);
                transform: translateY(-1px);
            }
            html[data-theme='dark'] [data-paydate-list]:not(.glass-list) .paydate-row:not(.is-open):hover {
                border-color: rgba(3, 133, 255, .55);
                box-shadow:
                    0 1px 0 rgba(255, 255, 255, .14) inset,
                    0 0 0 1px rgba(3, 133, 255, .25),
                    0 18px 40px -16px rgba(3, 133, 255, .55),
                    0 10px 24px -8px rgba(3, 133, 255, .30);
                transform: translateY(-1px);
            }
        }
        [data-paydate-list]:not(.glass-list) .paydate-row {
            transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
        }
        @media (prefers-reduced-motion: reduce) {
            [data-paydate-list]:not(.glass-list) .paydate-row { transition: none; }
            [data-paydate-list]:not(.glass-list) .paydate-row:not(.is-open):hover { transform: none; }
        }
        .paydate-row.is-open .paydate-row__chev {
            color: var(--blue);
        }
        @media (prefers-reduced-motion: reduce) {
            .paydate-row__edit,
            .paydate-row__edit-inner { transition: none; }
        }
        .paydate-row__edit .field { margin-bottom: .65rem; }
        .paydate-row__edit .field:last-child { margin-bottom: 0; }
        .paydate-row__edit .field__input {
            min-height: 44px; padding: .55rem .75rem; font-size: .92rem;
        }
        .field__input[data-paydate-autogen] {
            color: color-mix(in srgb, var(--text-secondary) 65%, transparent);
        }
        .field__input[data-paydate-autogen]::-webkit-calendar-picker-indicator {
            opacity: .45;
        }
        html[data-theme='dark'] .field__input[data-paydate-autogen]::-webkit-calendar-picker-indicator {
            filter: invert(1);
            opacity: .55;
        }
        .ded-row {
            display: grid;
            grid-template-columns: 28px minmax(0, 1fr) minmax(80px, 110px) 36px;
            gap: .4rem; align-items: center;
            padding: .55rem .85rem .55rem .35rem;
            border-bottom: 1px solid var(--glass-hairline);
        }
        .ded-row__drag {
            appearance: none;
            background: transparent;
            border: 0;
            color: var(--text-secondary);
            opacity: .55;
            width: 28px; height: 36px;
            display: grid; place-items: center;
            cursor: grab;
            touch-action: none;
            transition: opacity .15s ease, color .15s ease;
        }
        .ded-row__drag:hover,
        .ded-row__drag:focus-visible { opacity: 1; color: var(--blue); outline: none; }
        .ded-row__drag:active { cursor: grabbing; }
        .ded-row__drag svg { width: 14px; height: 18px; }
        .ret-row {
            display: grid;
            grid-template-columns: 22px minmax(0, 1.2fr) 56px minmax(0, 1fr) 32px;
            gap: .35rem;
            align-items: center;
        }
        .ret-row .field__select,
        .ret-row .field__input {
            min-height: 40px;
            padding: .4rem .5rem;
            font-size: .85rem;
        }
        .ret-row .ded-row__drag { width: 22px; height: 36px; }
        .ret-row .btn-rm { min-width: 32px; min-height: 36px; }
        .ded-row.is-dragging {
            opacity: 1;
            background: rgba(3, 133, 255, .12);
            border-radius: 10px;
            outline: 2px dashed rgba(3, 133, 255, .55);
            outline-offset: -2px;
            box-shadow: 0 6px 18px rgba(3, 133, 255, .18);
        }
        .ded-row.is-dragging .ded-row__drag { opacity: 1; color: var(--blue); }
        .ded-row:last-child { border-bottom: 0; }
        .ded-row .field__input { margin: 0; min-height: 48px; padding: .65rem .8rem; font-size: 16px; }
        .btn-rm {
            appearance: none; border: 0; background: transparent;
            color: var(--red);
            font-size: 1.2rem; font-weight: 700;
            min-width: 48px; min-height: 48px;
            cursor: pointer;
            display: grid; place-items: center;
            -webkit-tap-highlight-color: transparent;
            border-radius: 999px;
            transition: transform .12s ease, background .12s ease;
        }
        .btn-rm:hover { color: var(--red); transform: scale(1.1); }
        .btn-rm:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
        .paystub-preview {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-2);
            aspect-ratio: 8.5 / 11;
            margin: .85rem 0;
        }
        .paystub-preview__skeleton {
            position: absolute; inset: 0;
            display: flex; flex-direction: column; gap: 14px;
            padding: 28px;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
        }
        .paystub-preview__bar {
            height: 14px;
            border-radius: 6px;
            background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
            background-size: 200% 100%;
            animation: pp-shim 1.4s ease-in-out infinite;
        }
        @keyframes pp-shim {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        @media (prefers-reduced-motion: reduce) { .paystub-preview__bar { animation: none; } }
        html[data-theme='dark'] .paystub-preview { background: rgba(255,255,255,.04); }
        html[data-theme='dark'] .paystub-preview__skeleton {
            background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
        }
        html[data-theme='dark'] .paystub-preview__bar {
            background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.10) 50%, rgba(255,255,255,.05));
            background-size: 200% 100%;
        }
        .wiz-preview-gallery {
            display: flex; flex-direction: column; gap: .55rem;
            margin: .85rem 0 .25rem;
        }
        .generator-preview-nav {
            display: grid; grid-template-columns: 48px 1fr 48px;
            align-items: center; gap: .5rem;
        }
        .generator-preview-nav[hidden] { display: none; }
        .btn-nav {
            appearance: none; border: 1px solid var(--glass-border);
            background: var(--glass);
            color: var(--text);
            width: 48px; height: 48px;
            border-radius: 999px;
            display: grid; place-items: center;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            transition: background .12s ease, border-color .12s ease, transform .12s ease;
        }
        .btn-nav:hover:not(:disabled) {
            background: var(--glass-strong);
            border-color: rgba(3,133,255,.32);
        }
        .btn-nav:active:not(:disabled) { transform: scale(.94); }
        .btn-nav:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
        .btn-nav:disabled { opacity: .35; cursor: not-allowed; }
        .btn-nav svg { width: 20px; height: 20px; }
        .generator-preview-label {
            text-align: center;
            font-family: var(--font-display);
            font-weight: 700; font-size: .9rem;
            color: var(--text);
            font-variant-numeric: tabular-nums;
        }
        .generator-spinner {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center; gap: .55rem;
            color: var(--text-secondary);
            font-family: var(--font-display);
            font-weight: 600;
            font-size: .88rem;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
        }
        html[data-theme='dark'] .generator-spinner {
            background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
        }
        .generator-spinner__dot {
            width: 14px; height: 14px;
            border-radius: 50%;
            border: 2px solid rgba(3,133,255,.25);
            border-top-color: var(--blue);
            animation: spin 0.9s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        @media (prefers-reduced-motion: reduce) { .generator-spinner__dot { animation: none; } }
        .adv-disclosure {
            margin-top: 1rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--glass-border);
            background: var(--glass-soft);
            overflow: hidden;
        }
        .adv-disclosure[open] { background: var(--glass-strong); }
        .adv-disclosure summary {
            list-style: none;
            display: flex; align-items: center; justify-content: space-between;
            gap: .5rem;
            padding: 1rem 1.1rem;
            cursor: pointer;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: .92rem;
            color: var(--heading);
            min-height: 56px;
        }
        .adv-disclosure summary::-webkit-details-marker { display: none; }
        .adv-disclosure summary::after {
            content: "â–¾";
            color: var(--text-secondary);
            transition: transform .2s ease;
        }
        .adv-disclosure[open] summary::after { transform: rotate(180deg); }
        .adv-disclosure > .group {
            margin: 0 1.1rem 1.1rem;
            padding: 1rem;
            border-radius: var(--radius);
            background: var(--glass);
        }
        .upload-tile {
            position: relative;
            display: grid; grid-template-columns: 44px 1fr auto;
            gap: .85rem; align-items: center;
            padding: .85rem 1rem;
            border-radius: var(--radius-lg);
            border: 1.5px dashed rgba(3,133,255,.32);
            background: rgba(3,133,255,.02);
            cursor: pointer;
            min-height: 56px;
            transition: background .15s ease, border-color .15s ease;
        }
        .upload-tile.has-file {
            border-style: solid;
            border-color: rgba(3,133,255,.32);
            background: var(--glass-strong);
        }
        .upload-tile:hover {
            background: rgba(3,133,255,.06);
            border-color: rgba(3,133,255,.5);
        }
        .upload-tile__icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(3,133,255,.1);
            color: var(--blue);
            display: grid; place-items: center;
        }
        .upload-tile__icon svg { width: 22px; height: 22px; }
        .upload-tile__thumb {
            width: 44px; height: 44px;
            border-radius: 10px;
            object-fit: contain;
            background: #fff;
            border: 1px solid var(--glass-border);
        }
        .upload-tile__copy strong {
            display: block; font-family: var(--font-display);
            font-weight: 700; font-size: .92rem; color: var(--text);
        }
        .upload-tile__copy small {
            display: block; margin-top: .15rem;
            font-size: .76rem; color: var(--text-secondary);
        }
        .upload-tile__clear {
            appearance: none; border: 0; background: transparent;
            color: var(--text-muted); font-size: 1.4rem; font-weight: 700;
            min-width: 44px; min-height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: grid; place-items: center;
        }
        .upload-tile__clear:hover { color: var(--red); background: rgba(239,68,68,.08); }
        .local-tax-row {
            padding: .85rem 1rem;
            border-bottom: 1px solid var(--glass-hairline);
            display: flex; flex-direction: column;
            gap: .55rem;
        }
        .local-tax-row:last-child { border-bottom: 0; }
        .local-tax-row__foot {
            display: flex; align-items: center; justify-content: space-between;
            gap: .5rem;
        }
        .add-line-btn {
            appearance: none; border: 0;
            display: inline-flex; align-items: center; gap: .35rem;
            margin-top: .75rem;
            padding: .55rem 1rem;
            border-radius: 999px;
            background: rgba(3,133,255,.06);
            color: var(--blue);
            font: inherit; font-size: .88rem; font-weight: 700;
            cursor: pointer;
            min-height: 44px;
        }
        .add-line-btn:hover { background: rgba(3,133,255,.12); }
        .stepper { display: grid; grid-template-columns: 48px 1fr 48px; gap: .35rem; align-items: center; }
        .stepper button {
            appearance: none;
            -webkit-appearance: none;
            min-height: 48px; min-width: 48px;
            border-radius: 999px;
            background: var(--glass-strong);
            border: 1px solid var(--glass-border);
            color: var(--text); font-size: 1.2rem;
            font-weight: 700; cursor: pointer;
        }
        .stepper__value {
            font-family: var(--font-hero);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--heading);
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        .stepper__sub { display: block; font-family: var(--font-display); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-secondary); }
        .picker {
            display: flex; gap: .35rem; flex-wrap: wrap;
            margin-bottom: .65rem;
        }
        .picker__chip {
            padding: .4rem .8rem;
            border-radius: 999px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            font-family: var(--font-display);
            font-size: .76rem; font-weight: 700;
            color: var(--text-secondary);
            cursor: pointer;
            display: inline-flex; align-items: center; gap: .35rem;
        }
        .picker__chip.is-active {
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff; border-color: transparent;
            box-shadow: var(--shadow-blue);
        }
        .ck-line {
            display: grid;
            grid-template-columns: 1fr auto;
            padding: .65rem 0;
            font-size: .92rem;
            color: var(--text);
            border-bottom: 1px dashed var(--glass-hairline);
        }
        .ck-line:last-child { border-bottom: 0; }
        .ck-line__k { color: var(--text-secondary); }
        .ck-line__v { font-variant-numeric: tabular-nums; font-weight: 600; }
        .ck-total {
            display: grid; grid-template-columns: 1fr auto; align-items: baseline;
            padding-top: .85rem; margin-top: .25rem;
            border-top: 1px solid var(--glass-border);
        }
        .ck-total__k { font-family: var(--font-display); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heading); }
        .ck-total__v { font-family: var(--font-hero); font-weight: 800; font-size: 1.5rem; color: var(--heading); font-variant-numeric: tabular-nums; }
        .coupon-row { display: grid; grid-template-columns: 1fr auto; gap: .45rem; margin-top: .85rem; }
        .pay-method {
            display: flex; align-items: center; gap: .65rem;
            padding: .85rem 1rem;
            border-radius: var(--radius);
            background: var(--glass-strong);
            border: 1px solid var(--glass-border);
            margin-top: .65rem;
        }
        .pay-method__brand {
            width: 36px; height: 24px; border-radius: 4px;
            background: linear-gradient(135deg, #1f2937, #4b5563);
            color: #fff;
            display: grid; place-items: center;
            font-family: var(--font-mono); font-size: .58rem; font-weight: 700;
            letter-spacing: .04em;
        }
        .pay-method__num { flex: 1; font-family: var(--font-mono); font-size: .85rem; color: var(--text); }
        .pay-method__edit { color: var(--blue); font-weight: 700; font-size: .82rem; cursor: pointer; }
        .success-hero { text-align: center; padding: 2rem 1rem 1.5rem; }
        .success-check {
            width: 80px; height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            display: grid; place-items: center;
            margin: 0 auto 1.1rem;
            box-shadow: 0 14px 30px -10px rgba(16,185,129,.45);
            color: #fff;
        }
        .success-check svg { width: 36px; height: 36px; }
        .success-hero h1 { font-family: var(--font-hero); font-weight: 800; font-size: 1.8rem; letter-spacing: -.025em; margin: 0 0 .35rem; color: var(--heading); }
        .success-hero p { font-size: .95rem; color: var(--text-secondary); margin: 0; line-height: 1.55; }
        .acct-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: .65rem;
            align-items: center;
            padding: 1rem 1.1rem;
            border-bottom: 1px solid var(--glass-hairline);
            cursor: pointer;
        }
        .acct-row:last-child { border-bottom: 0; }
        .acct-row__title { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--heading); }
        .acct-row__sub { font-size: .76rem; color: var(--text-secondary); margin-top: .15rem; }
        .acct-row__chev { color: var(--text-muted); }
        .acct-row__chev svg { width: 18px; height: 18px; }
        .toggle {
            position: relative;
            width: 52px; height: 32px;
            border-radius: 999px;
            background: var(--glass-strong);
            border: 1px solid var(--glass-border);
            cursor: pointer;
            flex-shrink: 0;
            -webkit-tap-highlight-color: transparent;
            transition: background .2s ease, border-color .2s ease;
        }
        .toggle::before {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: 999px;
        }
        .toggle::after {
            content: "";
            position: absolute;
            top: 2px; left: 2px;
            width: 28px; height: 28px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 1px 3px rgba(15,23,42,.25);
            transition: transform .2s;
        }
        .toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
        .toggle.is-on { background: var(--blue); border-color: transparent; }
        .toggle.is-on::after { transform: translateX(20px); }
        .skel {
            display: block;
            background: linear-gradient(90deg, var(--glass-soft) 25%, var(--glass-strong) 50%, var(--glass-soft) 75%);
            background-size: 200% 100%;
            border-radius: 6px;
            animation: shimmer 1.4s ease-in-out infinite;
        }
        .skel--row { height: 14px; margin: .35rem 0; }
        .skel--circle { width: 38px; height: 38px; border-radius: 50%; }
        @keyframes shimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }
        .empty-state {
            text-align: center;
            padding: 2rem 1.5rem;
        }
        .empty-state__icon {
            width: 72px; height: 72px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            display: grid; place-items: center;
            color: var(--text-muted);
        }
        .empty-state__icon svg { width: 30px; height: 30px; }
        .empty-state h3 { margin: 0 0 .35rem; color: var(--heading); font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; }
        .empty-state p { margin: 0 0 1rem; color: var(--text-secondary); font-size: .88rem; }
        .err-banner {
            display: flex; gap: .65rem; align-items: flex-start;
            padding: .85rem 1rem;
            border-radius: var(--radius);
            background: rgba(239,68,68,.08);
            border: 1px solid rgba(239,68,68,.25);
            margin-bottom: 1rem;
        }
        .err-banner__icon { color: var(--red); flex-shrink: 0; margin-top: 1px; }
        .err-banner__icon svg { width: 18px; height: 18px; }
        .err-banner__title { font-weight: 700; color: var(--text); margin: 0 0 .15rem; font-size: .9rem; }
        .err-banner__sub { font-size: .82rem; color: var(--text-secondary); margin: 0; }
        /* Fixed (not absolute) so toasts always anchor to the
           viewport, not whatever happens to be the nearest
           positioned ancestor (which differs per page shell).
           top: 4rem clears the sticky topbar; bumped z-index above
           the topbar (z: 30) so toasts overlay it cleanly. */
        .toast-host { position: fixed; left: 0; right: 0; top: 4rem; padding: 0 1rem; display: flex; flex-direction: column; align-items: center; gap: .45rem; z-index: 9999; pointer-events: none; }
        .toast {
            margin-left: auto; margin-right: auto;
            width: 100%; max-width: 360px;
            display: grid; grid-template-columns: auto 1fr auto; gap: .65rem;
            align-items: center;
            padding: .75rem .9rem;
            background: var(--glass-strong);
            backdrop-filter: blur(20px) saturate(170%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-2);
            font-size: .88rem;
            pointer-events: auto;
        }
        .toast__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
        .toast--err .toast__dot { background: var(--red); }
        .toast--info .toast__dot { background: var(--blue); }
        .toast__close { background: transparent; border: 0; color: var(--text-muted); cursor: pointer; padding: 0 .15rem; font-size: 1.1rem; }
        .modal-overlay {
            position: fixed; inset: 0;
            background: rgba(15,23,42,.45);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: none;
            align-items: flex-end;
            justify-content: center;
            z-index: 1000;
        }
        .modal-overlay.is-open { display: flex; }
        .modal {
            width: 100%;
            max-width: 480px;
            background: var(--bg);
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            padding: 1.4rem 1.4rem calc(env(safe-area-inset-bottom, 0px) + 1.4rem);
            box-shadow: var(--shadow-2);
            animation: modal-in .25s cubic-bezier(.4,0,.2,1);
        }
        @media (min-width: 520px) {
            .modal-overlay { align-items: center; }
            .modal { border-radius: var(--radius-xl); }
        }
        @keyframes modal-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
        .modal__handle { width: 40px; height: 4px; background: var(--glass-border); border-radius: 999px; margin: -.4rem auto .85rem; }
        .modal h3 { margin: 0 0 .4rem; color: var(--heading); font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
        .modal p { margin: 0 0 1.1rem; color: var(--text-secondary); font-size: .9rem; line-height: 1.55; }
        .modal__actions { display: grid; gap: .5rem; }
        .botnav {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            background: var(--glass-strong);
            backdrop-filter: blur(22px) saturate(170%);
            -webkit-backdrop-filter: blur(22px) saturate(170%);
            border-top: 1px solid var(--glass-border);
            padding: .55rem .25rem calc(env(safe-area-inset-bottom, 0px) + .65rem);
            position: sticky;
            bottom: var(--vv-bottom-offset, 0px);
            z-index: 40;
            transition: bottom .15s ease;
        }
        .botnav__item {
            appearance: none;
            -webkit-appearance: none;
            min-height: 56px;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .15rem;
            padding: .35rem 0;
            font-family: var(--font-display);
            font-size: .62rem;
            font-weight: 800;
            letter-spacing: .05em;
            text-transform: uppercase;
            cursor: pointer;
        }
        .botnav__item svg {
            width: 22px;
            height: 22px;
        }
        .botnav__item.is-active {
            color: var(--blue);
        }
        .botnav__item.is-active::after {
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--blue);
            margin-top: 2px;
        }
        .botnav__item--create {
            position: relative;
        }
        .botnav__item--create .botnav__create-fab {
            position: absolute;
            width: 54px;
            height: 54px;
            top: -22px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff;
            display: grid;
            place-items: center;
            box-shadow: var(--shadow-blue);
            border: 4px solid var(--bg);
            flex-shrink: 0;
        }
        html[data-theme='dark'] .botnav__item--create .botnav__create-fab { border-color: #0b1220; }
        .botnav__item--create .botnav__create-fab svg {
            width: 24px;
            height: 24px;
        }
        .botnav__item--create .botnav__create-label {
            margin-top: 28px;
        }
        .frame.is-auth .botnav,
        .frame.is-wizard .botnav { display: none; }
        .workspace-panel-shell {
            position: absolute;
            inset: 0;
            z-index: 80;
            pointer-events: none;
        }
        .workspace-panel-shell.is-open { pointer-events: auto; }
        .workspace-panel-shell__overlay {
            appearance: none;
            -webkit-appearance: none;
            position: absolute;
            inset: 0;
            border: 0;
            background: rgba(15,23,42,.42);
            opacity: 0;
            cursor: pointer;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: opacity .24s ease;
        }
        html[data-theme='dark'] .workspace-panel-shell__overlay { background: rgba(2,6,23,.62); }
        .workspace-panel-shell.is-open .workspace-panel-shell__overlay { opacity: 1; }
        .workspace-panel {
            position: absolute;
            inset: 0 auto 0 0;
            width: min(86vw, 340px);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
            background: rgba(248,250,252,.94);
            border-right: 1px solid rgba(15,23,42,.08);
            box-shadow: 24px 0 60px -28px rgba(15,23,42,.38);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            transform: translateX(-106%);
            transition: transform .26s cubic-bezier(.4,0,.2,1);
        }
        html[data-theme='dark'] .workspace-panel {
            background: rgba(6,16,33,.94);
            border-right-color: rgba(255,255,255,.12);
        }
        .workspace-panel-shell.is-open .workspace-panel { transform: translateX(0); }
        .workspace-panel__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: .85rem;
        }
        .workspace-panel__brand {
            display: flex;
            align-items: center;
            gap: .85rem;
            min-width: 0;
        }
        .workspace-panel__brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--blue), var(--blue-dk));
            color: #fff;
            display: grid;
            place-items: center;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 800;
            box-shadow: var(--shadow-blue);
            flex-shrink: 0;
        }
        .workspace-panel__brand-copy {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: .08rem;
        }
        .workspace-panel__brand-copy strong {
            font-family: var(--font-hero);
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: -.02em;
            color: var(--heading);
        }
        .workspace-panel__eyebrow {
            font-family: var(--font-display);
            font-size: .64rem;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--text-secondary);
        }
        .workspace-panel__close {
            appearance: none;
            -webkit-appearance: none;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: var(--glass);
            color: var(--text);
            display: grid;
            place-items: center;
            cursor: pointer;
            flex-shrink: 0;
        }
        .workspace-panel__close svg { width: 18px; height: 18px; }
        .workspace-panel__section-label {
            font-family: var(--font-display);
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--text-secondary);
            padding: .2rem .25rem 0;
        }
        .workspace-panel__nav {
            display: grid;
            gap: .4rem;
        }
        .workspace-panel__link,
        .workspace-panel__account {
            appearance: none;
            -webkit-appearance: none;
            width: 100%;
            min-height: 56px;
            border-radius: 18px;
            border: 1px solid transparent;
            background: transparent;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: .85rem;
            padding: .9rem 1rem;
            text-align: left;
            font: inherit;
            cursor: pointer;
            transition: background .16s ease, border-color .16s ease, color .16s ease, transform .12s ease;
        }
        .workspace-panel__link:hover,
        .workspace-panel__account:hover {
            background: var(--glass);
            border-color: var(--glass-border);
            color: var(--text);
        }
        .workspace-panel__link:active,
        .workspace-panel__account:active { transform: scale(.985); }
        .workspace-panel__link.is-active,
        .workspace-panel__account.is-active {
            background: linear-gradient(135deg, rgba(3,133,255,.14), rgba(3,133,255,.06));
            border-color: rgba(3,133,255,.18);
            color: var(--blue-dk);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
        }
        html[data-theme='dark'] .workspace-panel__link.is-active,
        html[data-theme='dark'] .workspace-panel__account.is-active {
            background: linear-gradient(135deg, rgba(3,133,255,.2), rgba(3,133,255,.08));
            border-color: rgba(125,197,255,.22);
            color: #8fd0ff;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
        }
        .workspace-panel__link-icon,
        .workspace-panel__account-chevron {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .workspace-panel__link-label {
            font-family: var(--font-display);
            font-size: .92rem;
            font-weight: 700;
            color: currentColor;
        }
        .workspace-panel__footer {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--glass-hairline);
        }
        .workspace-panel__avatar {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: rgba(3,133,255,.12);
            color: var(--blue-dk);
            display: grid;
            place-items: center;
            font-family: var(--font-display);
            font-size: .95rem;
            font-weight: 800;
            flex-shrink: 0;
        }
        html[data-theme='dark'] .workspace-panel__avatar {
            background: rgba(125,197,255,.12);
            color: #8fd0ff;
        }
        .workspace-panel__account-copy {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: .08rem;
        }
        .workspace-panel__account-copy strong {
            font-family: var(--font-display);
            font-size: .92rem;
            font-weight: 700;
            color: var(--heading);
        }
        .workspace-panel__account-copy span {
            font-size: .76rem;
            color: var(--text-secondary);
        }
        .workspace-panel__account-chevron {
            margin-left: auto;
            color: var(--text-muted);
        }
        .frame.is-auth .workspace-panel-shell,
        .frame.is-wizard .workspace-panel-shell { display: none; }
        .hairline { height: 1px; background: var(--glass-hairline); margin: 1rem 0; }
        .center { text-align: center; }
        :focus-visible {
    outline: 0px solid transparent;
}
body[data-customer-start^="create-"] .shell-main--storefront-offset {
    padding-top: 0 !important;
}
body[data-customer-start^="create-"] .shell-main {
    margin-top: 0 !important;
}
html[data-theme='dark'] .ps-reveal {
    background: rgba(255, 255, 255, .025);
    border-color: rgba(255, 255, 255, .14);
}
html[data-theme='dark'] .ps-reveal[open] {
    background: rgba(3, 133, 255, .10);
    border-color: rgba(3, 133, 255, .55);
}
html[data-theme='dark'] .ps-reveal__icon {
    background: rgba(3, 133, 255, .22);
    color: #7ab9ff;
}
html[data-theme='dark'] .ps-reveal__summary {
    color: var(--text-secondary, #c3cedb);
}
html[data-theme='dark'] .order-processing-overlay__card {
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .55);
}
html[data-theme='dark'] .order-processing-overlay__title {
    color: #f8fafc;
}
html[data-theme='dark'] .order-processing-overlay__message {
    color: #c3cedb;
}
html[data-theme='dark'] .order-processing-overlay__spinner {
    border-color: rgba(120, 130, 200, .22);
    border-top-color: #818cf8;
}
html[data-theme='dark'] .order-processing-overlay {
    background: rgba(2, 6, 18, .82);
}
html[data-theme='dark'] .wiz-save-draft {
    background: rgba(255, 255, 255, .06);
    color: var(--text-secondary, #c3cedb);
    border-color: rgba(255, 255, 255, .12);
}
html[data-theme='dark'] .wiz-save-draft:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(3, 133, 255, .50);
    color: #7ab9ff;
}
@media (min-width: 769px) {
    html[data-theme='dark'] .wiz-nav {
        background: transparent;
        box-shadow: none;
    }
}
html[data-theme='dark'] .desk-preview__doc {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .08),
        0 24px 60px -20px rgba(0, 0, 0, .65),
        0 6px 18px -8px rgba(0, 0, 0, .35);
}
html[data-theme='dark'] .field__select option,
html[data-theme='dark'] select option {
    background-color: #0f172a;
    color: #f8fafc;
}
html[data-theme='dark'] input::placeholder,
html[data-theme='dark'] textarea::placeholder {
    color: rgba(195, 206, 219, .55);
}
