.va-tg-wizard {
    margin: 0 auto;
}
.va-tg-wizard h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #5c2d91;
}
.va-tg-wizard h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0 8px;
}
/* Fields & inputs */
.va-tg-wizard .va-tg-field {
    margin-bottom: 0.9em;
}
.va-tg-wizard .va-tg-label {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
.va-tg-wizard .va-tg-input {
    width: 100%;
    max-width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
.va-tg-wizard .va-tg-input:focus {
    outline: 0;
    border-color: #888;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.va-tg-wizard .va-tg-input-textarea {
    min-height: 96px;
    resize: vertical;
}
.va-tg-wizard .va-tg-input-select {
    height: 34px;
}
.va-tg-wizard .va-tg-input-text, .va-tg-wizard .va-tg-input-email, .va-tg-wizard .va-tg-input-phone, .va-tg-wizard .va-tg-input-date {
    height: 34px;
    line-height: 1.4;
}
.va-tg-wizard .va-tg-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.va-tg-wizard .va-tg-input-checkbox {
    width: auto;
    margin: 0;
}
.va-tg-return-note {
    margin-top: 5px;
}
.va-tg-wizard .va-tg-help {
    margin: 2px 0;
    font-size: 12px;
    line-height: 1.2em;
    opacity: 0.85;
}
/* ------------------------------------------------------------
   Wizard Gate: Verified badge (receipt already bound)
------------------------------------------------------------ */
.va-tg-wizard .vatg-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(146, 234, 30, 0.40);
    background: rgba(146, 234, 30, 0.10);
    border-radius: 12px;
}
.va-tg-wizard .vatg-verified-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid #92EA1E;
    position: relative;
    flex: 0 0 22px;
}
.va-tg-wizard .vatg-verified-icon:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 6px;
    height: 10px;
    border-right: 3px solid #92EA1E;
    border-bottom: 3px solid #92EA1E;
    transform: rotate(45deg) scale(0.7);
    transform-origin: center;
    opacity: 0;
    animation: vatgCheckPop 420ms ease-out forwards;
}
@keyframes vatgCheckPop {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.35);
    }
    70% {
        opacity: 1;
        transform: rotate(45deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(0.95);
    }
}
.va-tg-wizard .vatg-verified-text {
    font-size: 13px;
    line-height: 1.3;
}

/* ------------------------------------------------------------
   Wizard checkboxes as smaller rounded toggles (balanced)
------------------------------------------------------------ */
.va-tg-field .va-tg-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
/* Smaller pill */
.va-tg-field input[type="checkbox"].va-tg-input-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background 180ms ease;
}
/* Knob: perfectly centered vertically */
.va-tg-field input[type="checkbox"].va-tg-input-checkbox::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #fff;
    transform: translateY(-50%);
    transition: transform 180ms ease;
}
/* Checked = purple */
.va-tg-field input[type="checkbox"].va-tg-input-checkbox:checked {
    background: #c084fc;
}
/* Move knob (distance = pill width - knob width - (2*left)) = 38-14-6 = 18 */
.va-tg-field input[type="checkbox"].va-tg-input-checkbox:checked::before {
    transform: translate(16px, -50%);
}
/* Focus ring */
.va-tg-field input[type="checkbox"].va-tg-input-checkbox:focus-visible {
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.35);
}
/* ---------------------------------------------
   Tribute Landing (Start-Here) specific styling
   --------------------------------------------- */
/* Give the landing page a bit more breathing room */
.va-tg-wizard.vatg-tribute-landing {
    padding: 6px 0;
}
/* Contribution method block */
#vatg_contribution_method label {
    cursor: pointer;
}
#vatg_contribution_method input[type="radio"] {
    margin-right: 6px;
}
/* Make the two H2 headers consistent */
#vatg_hdr_physical, #vatg_hdr_digital {
    margin: 16px 0 10px 0;
}
/* If any section is hidden via JS, keep it truly hidden */
#vatg_digital_section[style*="display:none"], #vatg_physical_section[style*="display:none"], #vatg_native_rail_box[style*="display:none"] {
    display: none !important;
}
/* Helper list polish */
.vatg-funding-ul {
    margin: 8px 0 0 18px;
}
.vatg-funding-ul li {
    margin: 4px 0;
}
/* Native rail code boxes readability */
#vatg_native_receive_address, #vatg_native_memo_value, #vatg_native_tag_value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
}
/* Physical dropzone polish (reusable) */
#vatg_pm_dropzone, .va-tg-dropzone {
    border: 2px dashed #bbb;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}
#vatg_pm_dropzone:hover, .va-tg-dropzone:hover {
    border-color: #888;
}
#vatg_pm_file_name {
    word-break: break-word;
}
/* Buttons spacing inside native rail box */
#vatg_native_rail_box .button {
    margin-right: 6px;
    margin-bottom: 6px;
}
/* ---------------------------------------------
   Agreements modal (NDA / Temporary Membership)
   --------------------------------------------- */
.vatg-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 16px;
}
/* Show when activated via JS */
.vatg-modal-overlay.is-active {
    display: flex;
}
.vatg-modal-dialog {
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    max-height: calc(100vh - 48px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* Close button in the top-right corner */
.vatg-modal-close {
    position: absolute;
    right: 16px;
    top: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
/* Scrollable content area */
.vatg-modal-body {
    flex: 1 1 auto;
    margin-top: 40px;
    overflow: hidden; /* let the iframe handle scrolling */
}
/* Full-width iframe inside modal */
.vatg-modal-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
/* Mobile: edge-to-edge dialog */
@media (max-width: 768px) {
    .vatg-modal-dialog {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    .vatg-modal-body {
        margin-top: 44px;
    }
}
/* ---------------------------------------------
   Print buttons (used on agreement pages)
   --------------------------------------------- */
.mmt-print-button {
    display: inline-block;
    cursor: pointer;
    padding: 0.5em 1.2em;
    border-radius: 999px;
    border: none;
    background: #333;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.mmt-print-button:hover {
    opacity: 0.9;
}
/* Hide print buttons on the printed page */
@media print {
    .mmt-print-button {
        display: none !important;
    }
}
/* ---------------------------------------------
   Misc (sort later)
   --------------------------------------------- */
.va-tg-required {
    color: #c0392b;
    margin-left: 3px;
    font-size: 12px;
    vertical-align: baseline;
}
/* ---------------------------------------------
   Session TTL Notice
   --------------------------------------------- */
/* Private-window micro panel (header) */
.va-tg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* keep title at the top even when panel grows */
    gap: 10px;
}
/* New: wrapper to stack pill + snapshot on the right */
.va-tg-session-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    font-size: 11px; /* base for the little panel */
}
/* Snapshot under the pill – small, contained card */
.va-tg-session-snapshot {
    padding: 4px 8px;
    border-radius: 7px;
    border: 1px solid #e4dbff;
    background: #faf7ff;
    font-size: 10px;
    line-height: 1.35;
    max-width: 220px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.va-tg-header h2 {
    margin: 0;
}
.va-tg-session-pill {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    color: #333;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.va-tg-session-pill span {
    opacity: 0.85;
}
.va-tg-session-pill strong {
    font-weight: 600;
}
/* ----------------------------------------------------------
   Session snapshot bar (private window card) – soft violet
---------------------------------------------------------- */
.vatg-session-snapshot {
    margin: 0;
    border-radius: 0px;
    background: #f8f2ff; /* soft lavender base */
    border: 1px solid #d4c3ff; /* light purple border */
    overflow: hidden;
    color: #3b245c; /* deep, readable purple */
    box-shadow: 0 6px 16px rgba(59, 36, 92, 0.12);
    transition:
        background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.vatg-session-snapshot:hover {
    background: #fbf7ff;
    border-color: #c3b0ff;
    box-shadow: 0 8px 20px rgba(59, 36, 92, 0.18);
}
/* Header bar (clickable) */
.vatg-session-toggle {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: inherit;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}
.vatg-session-label {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 11px;
    opacity: 0.9;
}
.vatg-session-range {
    font-size: 12px;
    opacity: 0.85;
}
/* Hint so it looks obviously clickable */
.vatg-session-hint {
    margin-left: auto;
    font-size: 11px;
    opacity: 0.7;
    white-space: nowrap;
}
/* Days remaining pill */
.vatg-session-ttl-pill {
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #e5d6ff;
    border: 1px solid #c9b6ff;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    color: #2f174a;
}
/* Chevron that rotates when open */
.vatg-session-chevron {
    margin-left: 8px;
    font-size: 11px;
    opacity: 0.8;
    transition: transform 0.15s ease;
}
.vatg-session-snapshot.is-open .vatg-session-chevron {
    transform: rotate(180deg);
}
/* ============================================================
   VATG Session Details
============================================================ */
/* Details panel */
.vatg-session-details {
    border-top: 1px solid #e0d2ff;
    padding: 10px 14px 12px;
    background: #fbf7ff;
}
.vatg-session-details {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================================
   Header snapshot only (floating dropdown)
============================================================ */
.va-tg-header .va-tg-session-snapshot {
    position: relative;
}
.va-tg-header .va-tg-session-details {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 320px;
    max-width: min(480px, 90vw);
    padding: 14px 16px;
    border-radius: 14px;
    background: #fbf7ff;
    border: 1px solid #d4c3ff;
    box-shadow: 0 20px 40px rgba(59, 36, 92, 0.28);
    z-index: 10000;
}
.vatg-session-copy {
    margin: 0 0 6px;
    font-size: 12px;
    opacity: 0.9;
}
/* Input + buttons row */
.vatg-session-resume-input {
    width: 100%;
    font-size: 11px;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #d4c3ff;
    background-color: #ffffff;
    color: #3b245c;
    box-sizing: border-box;
    margin: 0 0 8px;
    word-break: break-all;
}
.vatg-session-resume-input:focus {
    outline: none;
    border-color: #b49bff;
    box-shadow: 0 0 0 1px #b49bff;
}
/* Action buttons */
.vatg-session-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vatg-session-btn {
    border-radius: 100px;
    margin-top: 5px;
    border: 1px solid #c9b6ff;
    background: #e5d6ff;
    color: #2f174a;
    font-size: 11px;
    padding: 4px 10px;
    cursor: pointer;
    line-height: 1.3;
    transition:
        background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}
.vatg-session-btn:hover {
    background: #f1e8ff;
    border-color: #b49bff;
    box-shadow: 0 2px 6px rgba(59, 36, 92, 0.18);
}
.vatg-session-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(59, 36, 92, 0.25);
}
/* --------------------------------------------------
   Resume Link UI
-------------------------------------------------- */
.va-tg-resume-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}
.va-tg-resume-input {
    flex: 1;
    min-width: 200px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(120, 90, 180, 0.25);
    background: rgba(120, 90, 180, 0.04);
    font-size: 12px;
    font-family: monospace;
    color: #4a3a63;
}
/* --------------------------------------------------
   BOF - Resume Panel
-------------------------------------------------- */
.va-tg-resume-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.va-tg-resume-input {
    flex: 1 1 auto;
    min-width: 0;
}
.va-tg-resume-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    min-width: 90px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(120, 90, 180, 0.10);
    color: #3b245c;
    border: 1px solid rgba(120, 90, 180, 0.20);
    transition: all 0.15s ease;
    cursor: pointer;
}
.va-tg-resume-copy-btn:hover {
    background: rgba(120, 90, 180, 0.18);
}
.va-tg-resume-copy-btn:active {
    transform: translateY(1px);
}
/*Mobile*/
@media (max-width: 768px) {
    .va-tg-resume-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .va-tg-resume-copy-btn {
        width: 100%;
        padding: 12px 0;
        border-radius: 16px;
    }
}
/* ============================================================
   BOF - Wizard Footer Split Layout
============================================================ */
.va-tg-return-note {
    margin-top: 36px;
    padding: 22px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.va-tg-footer-left, .va-tg-footer-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.va-tg-footer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3b245c;
    opacity: 0.75;
}
.va-tg-footer-copy {
    font-size: 13px;
    line-height: 1.5;
    color: #5a5570;
}
/* Right side slightly visually separated */
.va-tg-footer-right {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 28px;
}
/* Force left column alignment */
.va-tg-footer-left {
    align-items: flex-start;
    text-align: left;
}
.va-tg-footer-right {
    align-items: flex-start;
    text-align: left;
}
/* ------------------------------------------------------------
   Mobile
------------------------------------------------------------ */
@media (max-width: 768px) {
    .va-tg-return-note {
        flex-direction: column;
        gap: 26px;
        padding: 22px 18px;
    }
    .va-tg-footer-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 18px;
    }
}
/* ============================================================
   EOF - Wizard Footer Split Layout
============================================================ */
/* --------------------------------------------------
   Footer help text — remove arrow decoration ONLY here
-------------------------------------------------- */
.va-tg-return-note .va-tg-help::before, .va-tg-return-note .description::before {
    content: none !important;
    display: none !important;
}
/* --------------------------------------------------
   Resume Action Buttons (Modern Capsule Style)
-------------------------------------------------- */
.vatg-session-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.vatg-session-btn {
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(120, 90, 180, 0.08);
    border: 1px solid rgba(120, 90, 180, 0.30);
    color: #4a3a63;
    cursor: pointer;
    transition: all .18s ease;
}
.vatg-session-btn:hover {
    background: rgba(120, 90, 180, 0.16);
    border-color: rgba(120, 90, 180, 0.55);
}
.vatg-session-btn:active {
    transform: translateY(1px);
}
/* ============================================================
   Primary Submit Button (Wizard Only)
============================================================ */
.va-tg-save-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}
.va-tg-save-btn {
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #b49bff;
    background: linear-gradient(180deg, #f3ecff 0%, #e5d6ff 100%);
    color: #2f174a;
    transition: transform 120ms ease, box-shadow 150ms ease;
}
.va-tg-save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 36, 92, 0.18);
}
/* --------------------------------------------------
   Save & Continue Alignment
-------------------------------------------------- */
.va-tg-save-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}
.va-tg-save-row button {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
}
/* ------------------------------------------------------------
   VATG Dropzone + Thumbnail Preview (Physical mail-in + wizard)
   - Shared styling for BOTH:
     #vatg_pm_dropzone + #vatg_pm_preview
     #vatg_trust_dropzone + #vatg_trust_preview
------------------------------------------------------------ */
.va-tg-field-photo {
    margin-top: 12px;
}
/* Keep hidden file inputs focusable for required validation (no display:none) */
.vatg-hidden-file {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
/* Shared dropzone box */
.vatg-dropzone, .vatg-pm-dropzone {
    border: 2px dashed #bbb;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}
.vatg-dropzone:focus, .vatg-pm-dropzone:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.vatg-dropzone.is-dragover, .vatg-pm-dropzone.is-dragover {
    border-color: #888;
}
/* Shared inner text pieces */
.vatg-dropzone-title, .vatg-pm-dropzone-title {
    font-weight: 600;
}
.vatg-dropzone-sub, .vatg-pm-dropzone-sub {
    margin-top: 6px;
}
.vatg-dropzone-filename, .vatg-pm-dropzone-filename {
    font-size: 12px;
}
/* Thumbnail preview (shared) */
.vatg-photo-preview {
    margin-top: 10px;
    display: none;
}
.vatg-photo-preview.is-active {
    display: block;
}
.vatg-photo-preview img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}
/* ---------------------------------------------
   VATG Tribute Landing — JS visibility toggles
   (avoid inline style.display in JS)
--------------------------------------------- */
/* Force-hide (used by JS to close the landing form cleanly) */
.va-tg-wizard.vatg-tribute-landing .vatg-is-hidden {
    display: none !important;
}
/* Show helpers */
.va-tg-wizard.vatg-tribute-landing .vatg-is-inline {
    display: inline-block !important;
}
.va-tg-wizard.vatg-tribute-landing .vatg-is-block {
    display: block !important;
}
/* ---------------------------------------------
   VATG native / rail success message box
--------------------------------------------- */
.va-tg-wizard.vatg-tribute-landing .vatg-native-success-box {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #d0e3c2;
    border-radius: 6px;
    background: #f8fff4;
    font-size: 1rem;
    line-height: 1.5;
}
/* ---------------------------------------------------------
   VATG Tribute Landing — scoped layout & copy polish
   --------------------------------------------------------- */
.va-tg-wizard.vatg-tribute-landing {
    max-width: 100%;
    margin: 0 auto;
}
/* Headings */
.va-tg-wizard.vatg-tribute-landing .vatg-title {
    margin: 0 0 8px 0;
}
.va-tg-wizard.vatg-tribute-landing .vatg-muted {
    margin: 6px 0;
}
.va-tg-wizard.vatg-tribute-landing .vatg-standing-disc {
    margin-top: 0px;
    padding-top: 0px;
    font-size: 11px;
    line-height: 1.2em;
    color:#5c2d91;
}
/* Hero card */
.va-tg-wizard.vatg-tribute-landing .vatg-hero {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 16px 16px;
    margin: 0 0 16px 0;
}
.va-tg-wizard.vatg-tribute-landing .vatg-hero__title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.2;
}
.va-tg-wizard.vatg-tribute-landing .vatg-hero__meta {
    opacity: 0.75;
    margin: 0 0 10px 0;
}
.va-tg-wizard.vatg-tribute-landing .vatg-hero__desc {
    margin: 0 0 10px 0;
}
.va-tg-wizard.vatg-tribute-landing .vatg-hero__sub {
    margin-top: 10px;
    font-weight: 600;
}
.va-tg-wizard.vatg-tribute-landing .vatg-hero__quiet {
    margin-top: 6px;
    opacity: 0.65;
    font-size: 13px;
}
/* Method cards */
.va-tg-wizard.vatg-tribute-landing .vatg-method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 720px) {
    .va-tg-wizard.vatg-tribute-landing .vatg-method-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.va-tg-wizard.vatg-tribute-landing .vatg-method-card {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 14px;
    padding: 14px 14px;
    cursor: pointer;
    user-select: none;
}
.va-tg-wizard.vatg-tribute-landing .vatg-method-card input {
    margin-right: 8px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-method-card__title {
    display: block;
    font-weight: 900;
    font-size: 16px;
    margin-top: 4px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-method-card__meta {
    display: block;
    opacity: 0.75;
    margin-top: 2px;
    font-size: 13px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-method-card__desc {
    display: block;
    margin-top: 8px;
    opacity: 0.9;
    font-size: 13px;
    line-height: 1.35;
}
/* Selected state (works via :has if supported + fallback via JS can add .is-selected later) */
.va-tg-wizard.vatg-tribute-landing .vatg-method-card:has(input:checked) {
    border-color: rgba(0, 0, 0, 0.22);
}
/* Method headings */
.va-tg-wizard.vatg-tribute-landing .vatg-method-heading {
    font-size: 18px;
    font-weight: 900;
    margin: 12px 0 10px 0;
}
/* Rails + helper */
.va-tg-wizard.vatg-tribute-landing .vatg-helper {
    margin-top: 8px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-rail {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 14px 14px;
    margin-top: 12px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-rail__title {
    font-weight: 900;
    margin: 0 0 10px 0;
}
/* Code boxes */
.va-tg-wizard.vatg-tribute-landing .vatg-codebox {
    display: block;
    white-space: nowrap;
    overflow: auto;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 10px;
}
/* Button row */
.va-tg-wizard.vatg-tribute-landing .vatg-btnrow {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
/* Agreements rows */
.va-tg-wizard.vatg-tribute-landing .vatg-optins {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.va-tg-wizard.vatg-tribute-landing .vatg-checkrow {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-checkrow input {
    margin-top: 3px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-checkrow a {
    margin-left: auto;
    white-space: nowrap;
}
/* Actions */
.va-tg-wizard.vatg-tribute-landing .vatg-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
/* Notices/cards */
.va-tg-wizard.vatg-tribute-landing .vatg-notice {
    margin: 12px 0;
    padding: 10px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-card {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-card__title {
    font-weight: 900;
    margin-bottom: 6px;
}
.va-tg-wizard.vatg-tribute-landing .vatg-formwrap {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}
/* Status line */
.va-tg-wizard.vatg-tribute-landing .vatg-status {
    margin-top: 10px;
}
/* Status line semantic states (set by JS via classList, not inline styles) */
.va-tg-wizard.vatg-tribute-landing .vatg-status.vatg-status-ok {
    color: #1f7a1f;
}
.va-tg-wizard.vatg-tribute-landing .vatg-status.vatg-status-bad {
    color: #c0392b;
}
.va-tg-wizard.vatg-tribute-landing .vatg-status.vatg-status-warn {
    color: #b36b00; /* amber-ish */
}
.va-tg-wizard.vatg-tribute-landing .vatg-status.vatg-status-neutral {
    color: #555;
}
/* Inputs: make them consistent regardless of theme */
.va-tg-wizard.vatg-tribute-landing input[type="text"], .va-tg-wizard.vatg-tribute-landing input[type="email"], .va-tg-wizard.vatg-tribute-landing select {
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
}
/* Ensure WP theme doesn't shrink buttons weirdly inside our wrapper */
.va-tg-wizard.vatg-tribute-landing .button {
    line-height: normal;
}
/* ------------------------------------------------------------
   Session header pills: keep pills on one row, snapshot expands underneath
------------------------------------------------------------ */
.va-tg-header .va-tg-session-panel {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
}
.va-tg-header .va-tg-session-pills-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
}
.va-tg-header .va-tg-session-snapshot {
    width: max-content;
    max-width: min(520px, 90vw);
}
/* ============================================================
   Session Snapshot — Floating Dropdown Panel
   (Fix layout shift + keep pill fixed)
============================================================ */
/* Anchor positioning context */
.va-tg-header .va-tg-session-panel {
    position: relative;
}
/* Make snapshot a floating panel */
.va-tg-header .va-tg-session-snapshot {
    position: absolute !important;
    top: 100%;
    right: 0;
    margin-top: 8px;
    z-index: 9999;
    width: max-content;
    max-width: min(520px, 90vw);
    box-shadow: 0 12px 30px rgba(59, 36, 92, 0.20);
}
/* Prevent header height from expanding */
.va-tg-header {
    align-items: flex-start;
}
/* ------------------------------------------------------------
   Prep Packet pill button (header)
------------------------------------------------------------ */
.va-tg-header .va-tg-prep-pill {
    margin: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #ffffff;
    color: inherit;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap !important;
}
.va-tg-header .va-tg-prep-pill:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
/* Prep Packet pill help icon */
.va-tg-header .va-tg-prep-pill__icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(0, 0, 0, 0.04);
}
.va-tg-header .va-tg-prep-pill__label {
    line-height: 1;
}
/* ------------------------------------------------------------
   Dependent fields: slide in from left (no vertical accordion)
------------------------------------------------------------ */
.va-tg-field[data-vatg-depends-on] {
    border-left: 2px solid rgba(0, 0, 0, 0.15);
    padding-left: 12px;
    box-sizing: border-box;
    /* slide animation */
    transition: transform 200ms ease, opacity 200ms ease, margin-left 200ms ease;
    transform: translateX(0);
    opacity: 1;
}
/* Hidden: shift left + fade, but keep the border rule intact (it's still defined above) */
.va-tg-field.vatg-dep-hidden {
    transform: translateX(-12px);
    opacity: 0;
    pointer-events: none;
}
/* Depth-based indentation */
.va-tg-field.vatg-dep-depth-1 {
    margin-left: 10px;
}
.va-tg-field.vatg-dep-depth-2 {
    margin-left: 20px;
}
.va-tg-field.vatg-dep-depth-3 {
    margin-left: 30px;
}
.va-tg-field.vatg-dep-depth-4 {
    margin-left: 40px;
}
.va-tg-field.vatg-dep-depth-5 {
    margin-left: 50px;
}
.va-tg-field.vatg-dep-depth-6 {
    margin-left: 60px;
}
/* ------------------------------------------------------------
   Wizard: Generic Repeater (Add/Remove) button styling
   Goal: look like “small utility controls” (not primary CTAs)
------------------------------------------------------------ */
.vatg-repeater-actions {
    padding-top: 3px;
}
.va-tg-wizard .vatg-repeater-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
}
.va-tg-wizard .vatg-repeater-row .va-tg-input {
    flex: 1 1 auto;
    min-width: 220px;
}
/* ------------------------------------------------------------
   BOF - Wizard: Generic Repeater (Add / Remove) buttons
------------------------------------------------------------ */
.va-tg-wizard button[data-vatg-repeater-add], .va-tg-wizard button[data-vatg-repeater-remove] {
    border-radius: 999px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    border: 1px solid rgba(0, 0, 0, 0.14) !important;
    background: rgba(0, 0, 0, 0.03) !important;
    color: #333 !important;
    box-shadow: none !important;
    transition: background 120ms ease, border-color 120ms ease;
}
/* Add */
.va-tg-wizard button[data-vatg-repeater-add] {
    border-color: rgba(120, 90, 255, 0.22) !important;
    background: rgba(120, 90, 255, 0.06) !important;
}
.va-tg-wizard button[data-vatg-repeater-add]:hover {
    background: rgba(120, 90, 255, 0.10) !important;
    border-color: rgba(120, 90, 255, 0.34) !important;
}
/* Remove */
.va-tg-wizard button[data-vatg-repeater-remove] {
    border-color: rgba(192, 57, 43, 0.22) !important;
    background: rgba(192, 57, 43, 0.05) !important;
}
.va-tg-wizard button[data-vatg-repeater-remove]:hover {
    background: rgba(192, 57, 43, 0.08) !important;
    border-color: rgba(192, 57, 43, 0.32) !important;
}
/* ------------------------------------------------------------
   EOF - Wizard: Generic Repeater (Add / Remove) buttons
------------------------------------------------------------ */
/* ------------------------------------------------------------
   Wizard: Make the actual submit/continue button feel primary
   (targets WP-style buttons inside our wizard form only)
------------------------------------------------------------ */
.va-tg-wizard form button[type="submit"], .va-tg-wizard form input[type="submit"] {
    border-radius: 999px;
    margin-bottom: 10px;
    padding: 8px 14px;
    font-weight: 700;
    border: 1px solid rgba(120, 90, 255, 0.30);
    background: rgba(120, 90, 255, 0.14);
    color: #2f174a;
}
.va-tg-wizard form button[type="submit"]:hover, .va-tg-wizard form input[type="submit"]:hover {
    background: rgba(120, 90, 255, 0.20);
    border-color: rgba(120, 90, 255, 0.40);
}
/* ============================================================
   VATG GATE — Warm / Modern Refresh
   (visual only — no logic changes)
============================================================ */
/* Softer headline */
.va-tg-wizard h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 14px;
    color: #4b237b;
}
/* Subcopy warmth */
.va-tg-wizard .vatg-muted, .va-tg-wizard p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5570;
}
/* Card container feel */
.va-tg-wizard form {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(44, 20, 90, 0.08);
}
/* Field spacing */
.va-tg-wizard .va-tg-field {
    margin-bottom: 18px;
}
/* Labels */
.va-tg-wizard .va-tg-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #3b245c;
}
/* Inputs — modern */
.va-tg-wizard .va-tg-input {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e2dcff;
    padding: 0 12px;
    font-size: 15px;
    background: #faf8ff;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
/* Focus state */
.va-tg-wizard .va-tg-input:focus {
    border-color: #b49bff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(120, 90, 255, 0.15);
}
/* Help text */
.va-tg-wizard .va-tg-help {
    font-size: 12px;
    margin-top: 4px;
    color: #6b6583;
}
/* Remove hard red asterisk feel */
.va-tg-required {
    color: #b36b00;
}
/* Status line (confirmation mismatch etc) */
.va-tg-wizard .vatg-status {
    font-size: 13px;
    margin-top: 6px;
}
/* Primary button refinement */
.va-tg-wizard form button[type="submit"], .va-tg-wizard form input[type="submit"] {
    height: 44px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 22px;
    border: 1px solid #b49bff;
    background: linear-gradient(180deg, #f3ecff 0%, #e5d6ff 100%);
    color: #2f174a;
    transition: transform 120ms ease, box-shadow 150ms ease;
}
.va-tg-wizard form button[type="submit"]:hover, .va-tg-wizard form input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 36, 92, 0.18);
}
/* ============================================================
   VATG Gate — Clean Vertical Stack
============================================================ */
.va-tg-wizard .regular-text {
    width: 100%;
    max-width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e2dcff;
    padding: 0 12px;
    font-size: 15px;
    background: #faf8ff;
}
.va-tg-wizard .regular-text:focus {
    border-color: #b49bff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(120, 90, 255, 0.15);
    outline: none;
}
/* Remove WP admin spacing weirdness */
.va-tg-wizard br {
    display: none;
}
/* Space between fields */
.va-tg-wizard .va-tg-field {
    margin-bottom: 20px;
}
/* Clean description spacing */
.va-tg-wizard .description {
    margin-top: 6px;
    font-size: 13px;
    color: #6b6583;
}
/* Verified badge spacing */
.va-tg-wizard .va-tg-field-receipt-verified {
    margin: 18px 0 10px;
}
/* Confirmed contribution spacing */
.va-tg-wizard .va-tg-field-contribution-amount {
    margin-top: 8px;
}
/* Submit button alignment */
.va-tg-wizard p:last-of-type {
    margin-top: 22px;
}
.vatg-hp-wrap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
/* ------------------------------------------------------------
   Gate Step Only — Constrained Layout
------------------------------------------------------------ */
.va-tg-wizard[data-vatg-step="gate"] {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}
/* ------------------------------------------------------------
   Wizard Validation
------------------------------------------------------------ */
.vatg-missing-highlight {
    border: 2px solid #c62828;
    background: rgba(198, 40, 40, 0.06);
    padding: 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
/* ============================================================
   Summary Review — Finalize Section (Clean / Right-Aligned)
============================================================ */
.va-tg-finalize-row {
    margin-top: 28px;
    margin-right: 50px;
    padding-top: 0;
    border-top: none; /* remove divider */
    width: 100%;
    display: flex;
    justify-content: flex-end !important;
}
/* Container */
.va-tg-finalize-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* right align stack */
    gap: 14px;
}
/* Confirmation text */
.va-tg-finalize-confirm-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: right;
    cursor: pointer;
}
/* Checkbox */
.va-tg-finalize-confirm-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #5b4bb0;
    cursor: pointer;
}
/* Finalize button */
.va-tg-finalize-btn {
    margin: 0;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .3px;
    transition:
        transform 120ms ease, box-shadow 150ms ease, opacity 150ms ease;
}
/* Disabled */
.va-tg-finalize-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}
/* Enabled */
.va-tg-finalize-btn:not([disabled]) {
    background: linear-gradient(135deg, rgba(120, 90, 180, 0.92), rgba(90, 60, 160, 0.92));
    color: #fff;
    border: none;
}
/* Hover */
.va-tg-finalize-btn:not([disabled]):hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 36, 92, 0.18);
}
/* Optional (empty) status icon refinement */
.va-tg-review-row.is-empty .va-tg-review-status {
    font-size: 0; /* hide the dash text */
    position: relative;
}
.va-tg-review-row.is-empty .va-tg-review-status::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(60, 50, 110, 0.35);
}
/* ============================================================
   Resume Later Section — Premium Strip
============================================================ */
.va-tg-review-resume {
    margin-top: 36px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(120, 90, 180, 0.05);
    border: 1px solid rgba(120, 90, 180, 0.18);
}
.va-tg-review-resume-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: .4px;
    color: #3b245c;
}
.va-tg-review-resume-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.va-tg-review-resume-input {
    flex: 1 1 auto;
    min-width: 260px;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 10px;
    border: 1px solid rgba(120, 90, 180, 0.30);
    background: #fff;
}
.va-tg-review-copy-btn, .va-tg-review-email-btn {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(120, 90, 180, 0.30);
    background: rgba(120, 90, 180, 0.10);
    color: #3b245c;
    cursor: pointer;
    transition: all 120ms ease;
}
.va-tg-review-copy-btn:hover, .va-tg-review-email-btn:hover {
    background: rgba(120, 90, 180, 0.18);
}
/* Jump highlight */
.vatg-jump-highlight {
    outline: 2px solid rgba(120, 90, 255, 0.6);
    background: rgba(120, 90, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}
/* --------------------------------------------------
   Footer help text — remove arrow decoration only here
-------------------------------------------------- */
.va-tg-return-note .va-tg-help::before, .va-tg-return-note .description::before {
    content: none !important;
    display: none !important;
}
/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------ */
@media (max-width: 768px) {
    .va-tg-finalize-right {
        align-items: stretch; /* full width on mobile */
    }
    .va-tg-finalize-confirm-inline {
        justify-content: flex-start;
        text-align: left;
    }
    .va-tg-finalize-btn {
        width: 100%;
        text-align: center;
    }
}
/* ============================================================
   App Footer — Jurisdiction Anchor (Muted)
============================================================ */
.va-tg-app-footer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: .4px;
    color: rgba(60, 40, 110, 0.55);
}