    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ─────────────────────────────────────────────────────────────────────
       cc-auth.html CSS tokens  (C-05 / L-09 documentation)
       ─────────────────────────────────────────────────────────────────────
       This form uses its own :root token set — not .hhp-shell scoped.
       Most values match hhp.css defaults. Deliberate divergences:
         --green (#059669 deeper emerald)  vs  hhp.css --success (#10B981 teal)
         --red   (#DC2626 classic red)     vs  hhp.css --danger  (#EF4444 pink-red)
       These are intentional: the guest-facing form benefits from more
       conventional success/error colors. If alignment is needed in future,
       update these two values.

       FORM-SPECIFIC tokens (no hhp.css equivalent):
         --teal3:    #0F1E2E  — dark teal for vcard gradient background
         --bord2:    rgba(14,165,233,.40) — stronger border for emphasis
         --p2:       #f0f7fd  — tinted input background (form UX pattern)
         --chip-grad: gold gradient for virtual card chip
         --amber:    #9A6400  — defined but currently unused; keep for future

       CANONICAL ALIASES (mirror hhp.css semantic names):
         --primary = --teal (same value: #0EA5E9)
         --primary-hover = --teal2 (same value: #0284C7)
         --text-muted = --muted (same value: #5A6A7A)
         --text-subtle = --mut2 (same value: #93A3B0)
    ──────────────────────────────────────────────────────────────────── */
    :root {
      /* This page is light-only by design (it is a printed-agreement analogue).
         Declaring it stops a phone in OS dark mode from painting the native bits
         we cannot style — <select> lists, autofill fills, scrollbars — dark on a
         white form. Enforced by audit-a11y `no-color-scheme`. */
      color-scheme: light;
      /* Backgrounds */
      --bg:    #f7fbfe;
      --bg2:   #ffffff;
      --panel: #ffffff;
      --p2:    #f0f7fd;       /* tinted input bg — form-specific */
      /* Brand colors (matches hhp.css --primary) */
      --teal:  #0EA5E9;       --primary: #0EA5E9;
      --teal2: #0284C7;       --primary-hover: #0284C7;
      --teal3: #0F1E2E;       /* vcard dark gradient bg — form-specific */
      /* Semantic colors (intentionally differ from hhp.css) */
      --green: #059669;       /* success — deeper emerald; hhp uses #10B981 */
      --red:   #DC2626;       /* danger  — classic red;   hhp uses #EF4444 */
      --blue:  #3B82F6;
      --amber: #9A6400;       /* currently unused; reserved */
      --chip-grad: linear-gradient(135deg, #d4a847, #e8c060, #c89030); /* form-specific */
      /* Text */
      --text:  #0F172A;
      --muted: #5A6A7A;       --text-muted: #5A6A7A;
      --mut2:  #93A3B0;       --text-subtle: #93A3B0;
      /* Borders */
      --border:rgba(14,165,233,.26);
      --bord2: rgba(14,165,233,.40);  /* form-specific stronger border */
      /* Typography — native system font stack (self-hosted, zero third-party
         origins on the PAN page; replaces the former Google Fonts 'Inter'). */
      --font:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }

    html, body {
      min-height: 100%;
      background: var(--bg);
      font-family: var(--font);
      color: var(--text);
      letter-spacing: 0.018em;
      -webkit-font-smoothing: antialiased;
    }

    /* screens */
    .screen { display: none; }
    .screen.active { display: flex; }

    /* ── Loading ── */
    #sc-loading {
      align-items: center; justify-content: center; min-height: 100vh;
      flex-direction: column; gap: 18px;
    }
    .load-spinner {
      width: 40px; height: 40px; border-radius: 50%;
      border: 2px solid rgba(13,143,170,.15);
      border-top-color: var(--teal);
      animation: spin .8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .load-text { font-size: 14px; color: var(--muted); }

    /* ── Error ── */
    #sc-error {
      flex-direction: column; align-items: center; justify-content: center;
      min-height: 100vh; text-align: center; padding: 40px 24px;
    }
    .err-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(220,38,38,.08); border: 1.5px solid rgba(220,38,38,.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 32px; margin-bottom: 20px;
    }
    .err-title { font-family: var(--font); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
    .err-body  { font-size: 14px; color: var(--muted); max-width: 340px; line-height: 1.7; }

    /* ── Form screen ── */
    #sc-form { flex-direction: column; min-height: 100vh; }

    /* ── Header ── */
    .hdr {
      background: #fff;
      border-bottom: 2px solid var(--teal);
      box-shadow: 0 2px 16px rgba(13,143,170,.08);
      padding: 18px 20px 14px;
      text-align: center;
    }
    .hdr-hotel {
      font-family: var(--font);
      font-size: 24px;
      font-weight: 800;
      color: var(--teal3);
      letter-spacing: -.3px;
      margin-bottom: 2px;
    }
    .hdr-sub {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    /* ── Progress bar ── */
    .prog-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 20px 24px 0;
      gap: 0;
      max-width: 420px;
      margin: 0 auto;
      width: 100%;
    }
    .prog-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 0 0 auto;
    }
    .prog-connector-wrap {
      flex: 1;
      display: flex;
      align-items: flex-start;
      padding-top: 13px;
    }
    .prog-connector {
      height: 2px;
      width: 100%;
      background: var(--border);
      border-radius: 2px;
      transition: background .3s;
    }
    .prog-connector.done { background: var(--teal); }
    .prog-step {
      width: 28px; height: 28px; border-radius: 50%;
      border: 2px solid var(--border);
      background: var(--panel);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700;
      color: var(--muted);
      transition: all .3s;
    }
    .prog-step.active {
      border-color: var(--teal);
      background: var(--teal);
      color: #fff;
    }
    .prog-step.done {
      border-color: var(--teal);
      background: var(--teal);
      color: #fff;
    }
    .prog-lbl {
      font-size: 11px;
      font-weight: 600;
      color: var(--mut2);
      text-align: center;
      white-space: nowrap;
      transition: color .3s;
    }
    .prog-lbl.active { color: var(--teal); }
    .prog-lbl.done   { color: var(--teal); }

    /* ── Step title ── */
    .step-hdr {
      max-width: 520px;
      margin: 18px auto 0;
      padding: 0 20px;
      width: 100%;
    }
    .step-title {
      font-family: var(--font);
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }
    .step-sub {
      font-size: 14px;
      color: var(--muted);
    }

    /* ── Form body ── */
    .form-body {
      max-width: 520px;
      margin: 16px auto 0;
      padding: 0 16px 100px;
      width: 100%;
    }

    /* ── Cards / Sections ── */
    .card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px;
      margin-bottom: 14px;
    }
    .card-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .6px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }

    /* ── Form fields ── */
    .frow { margin-bottom: 14px; }
    .frow label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 5px;
    }
    .frow input,
    .frow select,
    .frow textarea {
      width: 100%;
      background: var(--p2);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 10px 12px;
      font-size: 14px;
      color: var(--text);
      font-family: var(--font);
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }
    .frow input:focus,
    .frow select:focus,
    .frow textarea:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(13,143,170,.1);
    }
    .frow textarea { resize: vertical; min-height: 80px; }
    .frow input::placeholder,
    .frow textarea::placeholder { color: var(--mut2); }

    .err-msg {
      display: none;
      font-size: 11px;
      color: var(--red);
      margin-top: 4px;
      font-weight: 500;
    }
    .err-msg.show { display: block; }
    .frow input.invalid,
    .frow select.invalid { border-color: var(--red); }

    .fgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .fgrid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
    .fgrid-name-exp-cvv { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; }

    /* ── Relationship selector ── */
    .rel-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }
    .rel-btn {
      padding: 10px 8px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      background: var(--p2);
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      text-align: center;
      transition: all .2s;
    }
    .rel-btn:hover { border-color: var(--teal); color: var(--teal); }
    .rel-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
    .rel-btn.sel {
      border-color: var(--teal);
      background: rgba(13,143,170,.08);
      color: var(--teal);
    }

    /* ── Charge type chips ── */
    .charge-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 4px;
    }
    .charge-chip {
      padding: 7px 14px;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      background: var(--p2);
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: all .2s;
    }
    .charge-chip:hover { border-color: var(--teal); color: var(--teal); }
    .charge-chip:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
    .charge-chip.sel {
      border-color: var(--teal);
      background: rgba(13,143,170,.08);
      color: var(--teal);
    }

    /* ── Guest list ── */
    .guest-add-row {
      display: flex;
      gap: 8px;
      margin-bottom: 10px;
    }
    .guest-add-row input {
      flex: 1;
      margin: 0;
      background: var(--p2);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 10px 12px;
      font-size: 14px;
      color: var(--text);
      font-family: var(--font);
    }
    .guest-add-row input:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(13,143,170,.1);
    }
    .btn-add-guest {
      padding: 10px 14px;
      background: var(--teal);
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
    }
    .btn-add-guest:hover { background: var(--teal2); }

    .guest-list {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .guest-list:empty { display: none; }
    .guest-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
    }
    .guest-row:last-child { border-bottom: none; }
    .guest-num {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(13,143,170,.1);
      color: var(--teal);
      font-size: 11px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .guest-name { flex: 1; font-size: 14px; color: var(--text); }
    .guest-rm {
      background: none;
      border: none;
      font-size: 12px;
      color: var(--mut2);
      cursor: pointer;
      padding: 2px 6px;
      border-radius: 4px;
      transition: color .2s;
    }
    .guest-rm:hover { color: var(--red); }

    /* ── Virtual card ── */
    .vcard-wrap { perspective: 800px; margin-bottom: 20px; }
    .vcard {
      background: linear-gradient(135deg, var(--teal3) 0%, var(--teal) 55%, var(--teal2) 100%);
      border-radius: 14px;
      padding: 22px 22px 18px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(13,143,170,.28);
      min-height: 160px;
    }
    .vcard::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
    }
    .vcard::after {
      content: '';
      position: absolute;
      bottom: -40px; left: 20px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,.05);
    }
    .vcard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    .vcard-brand {
      font-family: var(--font);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: .85;
      background: rgba(255,255,255,.12);
      padding: 4px 10px;
      border-radius: 4px;
    }
    .vcard-chip {
      width: 36px; height: 26px;
      background: var(--chip-grad);
      border-radius: 5px;
      opacity: .9;
    }
    .vcard-num {
      font-family: var(--font);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 3px;
      margin-bottom: 16px;
      opacity: .95;
    }
    .vcard-bot {
      display: flex;
      gap: 24px;
    }
    .vcard-field label {
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: .6;
      display: block;
      margin-bottom: 2px;
    }
    .vcard-field span {
      font-family: var(--font);
      font-size: 14px;
      font-weight: 500;
      opacity: .9;
    }

    /* ── Card input formatting ── */
    .card-num-wrap { position: relative; }
    .card-num-wrap input { padding-right: 50px; }
    .card-type-badge {
      position: absolute;
      right: 12px; top: 50%;
      transform: translateY(-50%);
      font-size: 11px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: .5px;
      pointer-events: none;
    }

    /* ── Auth text preview ── */
    .auth-text-wrap {
      background: var(--p2);
      border: 1px solid var(--border);
      border-left: 3px solid var(--teal);
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 16px;
    }
    .auth-text-wrap p {
      font-size: 12px;
      color: var(--text);
      line-height: 1.7;
    }
    .auth-text-wrap strong { color: var(--teal); font-weight: 600; }

    /* ── Terms checkboxes ── */
    .terms-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
    .terms-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .terms-item input[type="checkbox"] {
      width: 17px; height: 17px;
      flex-shrink: 0;
      margin-top: 1px;
      accent-color: var(--teal);
      cursor: pointer;
    }
    .terms-item label {
      font-size: 12px;
      color: var(--text);
      line-height: 1.6;
      cursor: pointer;
    }

    /* ── Signature ── */
    .sig-wrap {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      position: relative;
      margin-bottom: 8px;
    }
    canvas#sig-canvas {
      display: block;
      width: 100%;
      height: 130px;
      cursor: crosshair;
      touch-action: none;
    }
    .sig-hint {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-size: 12px;
      color: var(--mut2);
      pointer-events: none;
      text-align: center;
      transition: opacity .3s;
    }
    .sig-clear-btn {
      position: absolute;
      top: 8px; right: 8px;
      background: none;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 11px;
      color: var(--muted);
      padding: 3px 8px;
      cursor: pointer;
      transition: all .2s;
    }
    .sig-clear-btn:hover { border-color: var(--red); color: var(--red); }
    .sig-clear-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

    /* ── Buttons ── */
    .btn-row {
      display: flex;
      gap: 10px;
      align-items: stretch;
      margin-top: 8px;
    }
    .btn-primary {
      flex: 1;
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px 20px;
      font-size: 14px;
      font-weight: 700;
      font-family: var(--font);
      cursor: pointer;
      transition: background .2s, transform .1s;
    }
    .btn-primary:hover { background: var(--teal2); }
    .btn-primary:active { transform: scale(.98); }
    .btn-primary:disabled { opacity: .55; cursor: not-allowed; transform: none; }
    .btn-primary:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
    .btn-back {
      flex: 0 0 auto;
      background: var(--panel);
      color: var(--muted);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 13px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }
    .btn-back:hover { border-color: var(--teal); color: var(--teal); }
    .btn-back:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

    /* ── Success screen ── */
    #sc-success {
      flex-direction: column; align-items: center; justify-content: center;
      min-height: 100vh; text-align: center; padding: 40px 24px;
    }
    .success-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(5,150,105,.1); border: 2px solid rgba(5,150,105,.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 32px; margin: 0 auto 20px;
    }
    .success-title {
      font-family: var(--font);
      font-size: 24px; font-weight: 800; color: var(--text);
      margin-bottom: 10px;
    }
    .success-body { font-size: 14px; color: var(--muted); max-width: 340px; line-height: 1.7; }

    /* ── Footer ── */
    .form-footer {
      text-align: center;
      padding: 16px 20px 24px;
      font-size: 11px;
      color: var(--mut2);
      margin-top: auto;
    }
    .form-footer a { color: var(--teal); text-decoration: none; }
    .form-footer a:hover { text-decoration: underline; }

    /* ── Hint text ── */
    .field-hint {
      font-size: 11px;
      color: var(--mut2);
      margin-top: 4px;
      line-height: 1.5;
    }

    /* ── Info badge ── */
    .info-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(13,143,170,.07);
      border: 1px solid rgba(13,143,170,.2);
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 12px;
      color: var(--teal);
      margin-bottom: 12px;
    }

    /* ── Other-explain reveal ── */
    .other-explain { display: none; margin-top: 10px; }
    .other-explain.show { display: block; }

    /* ── Security strip ── */
    .sec-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 14px;
    }
    .sec-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(5,150,105,.07);
      border: 1px solid rgba(5,150,105,.2);
      border-radius: 20px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 600;
      color: var(--green);
    }
    .sec-badge.blue {
      background: rgba(26,94,154,.07);
      border-color: rgba(26,94,154,.2);
      color: var(--blue);
    }
    .sec-note {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
      padding: 10px 12px;
      background: var(--p2);
      border-radius: 8px;
      border: 1px solid var(--border);
      margin-bottom: 14px;
    }
    .sec-note strong { color: var(--text); }

    /* ── CVV masked tip ── */
    .cvv-wrap { position: relative; }
    .cvv-wrap input { padding-right: 40px; }
    .cvv-eye {
      position: absolute;
      right: 10px; top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: var(--mut2);
      cursor: pointer;
      user-select: none;
      background: none;
      border: none;
      padding: 2px;
    }
    .cvv-eye:hover { color: var(--teal); }

    @media (max-width: 400px) {
      .fgrid2 { grid-template-columns: 1fr; }
      .rel-wrap { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── Phone: 16px text fields ──────────────────────────────────────────
       iOS Safari auto-zooms the whole page whenever a focused text field is
       smaller than 16px, and never zooms back out. THAT is the behaviour the
       old `maximum-scale=1,user-scalable=no` viewport meta was really pinned
       against — at the cost of also blocking the guest's own pinch-zoom, a
       WCAG 2.2 SC 1.4.4 failure on a page we hand to a member of the public.
       Sizing the fields correctly fixes the cause instead of the symptom, so
       the meta could drop the pin (cc-auth.html). Desktop keeps 14px. */
    @media (max-width: 820px) {
      .frow input,
      .frow select,
      .frow textarea,
      .guest-add-row input { font-size: 16px; }
    }

    /* ── Dev Bar — hidden ── */
    .dev-bar {
      display: none;
      background: #FFFAED;
      color: #3A2800;
      font-family: ui-monospace, 'SFMono-Regular', 'JetBrains Mono', Menlo, Consolas, monospace;
      font-size: 10px;
      padding: 0 14px;
      height: 34px;
      align-items: center;
      gap: 7px;
      position: sticky;
      top: 0;
      z-index: 9999;
      border-bottom: 2px solid #E8A020;
      box-shadow: 0 1px 6px rgba(232,160,32,.22);
      flex-shrink: 0;
    }
    .dev-bar.show { display: flex !important; }
    .dev-badge {
      display: flex; align-items: center; gap: 5px;
      font-family: 'JetBrains Mono', monospace; font-size: 9px;
      font-weight: 800; color: #3A2800; letter-spacing: .14em;
      flex-shrink: 0; margin-right: 3px;
    }
    .dev-badge-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #E8A020;
    }
    .dev-sep {
      width: 1px; height: 16px; background: rgba(58,40,0,.14); flex-shrink: 0;
    }
    .dev-btn {
      padding: 2px 11px;
      border: 1px solid rgba(58,40,0,.18);
      border-radius: 5px;
      background: rgba(58,40,0,.07);
      color: rgba(58,40,0,.6);
      font-size: 10px;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      letter-spacing: .04em;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center;
      line-height: 18px;
      white-space: nowrap;
      transition: background .1s;
    }
    .dev-btn:hover { background: rgba(58,40,0,.13); color: #3A2800; }
    .dev-btn.active {
      background: #E8A020; border-color: #E8A020;
      color: #021A22; font-weight: 700;
    }

    /* Utility classes — added so cc-auth.html can drop CSP style-src 'unsafe-inline'.
       Keep all rules in this stylesheet so a future XSS can't inject styling. */
    .u-mb-0          { margin-bottom: 0 !important; }
    .u-hidden        { display: none !important; }
    .u-color-subtle  { color: var(--text-subtle); }
    .u-uppercase     { text-transform: uppercase; }
    .u-grid-2-1-1    { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; }

    /* ── Embedded (inline iframe) mode — lean, card-only chrome ──
       When the PMS app frames this page inline it passes `embed=1`; cc-auth.js
       then adds `.embed` to <body>. This is ALWAYS a card_on_file capture, so
       the guest only needs the card fields + save action. Strip the standalone
       chrome — dev bar, hotel header, 3-step progress, virtual-card graphic,
       the security-badge row and the "never stored in plain text" intro note,
       and the footer — and trim the outer margins so the form sits flush in the
       iframe with no dead space. The subtle secured caption in the step sub-head
       ("Saved securely on file — encrypted end-to-end") is the one reassurance
       we keep. Presentational only; gated entirely behind `body.embed`, so the
       standalone (emailed-link) flow is visually unchanged. The parent iframe
       resize measures content height, so this leaner layout is what it reports. */
    body.embed .dev-bar,
    body.embed .hdr,
    body.embed .prog-wrap,
    body.embed .vcard-wrap,
    body.embed .sec-strip,
    body.embed .sec-note,
    body.embed .form-footer { display: none !important; }

    body.embed .form-body {
      margin-top: 0;
      max-width: none;
      padding: 12px 14px 16px;
    }
    body.embed .step-hdr {
      margin-top: 0;
      max-width: none;
      padding: 12px 14px 0;
    }
