/* Privora — shared scanner + sticky-bar widget styles.
   Used by guide pages, guide indexes and /transparency.html. */
.gscan{background:linear-gradient(135deg,var(--mint),#f2fbff);border:1.5px solid var(--teal);border-radius:16px;padding:22px 24px;margin:30px 0}
.gscan .gs-t{font-weight:800;color:var(--navy);font-size:18px;line-height:1.35;margin-bottom:5px}
.gscan .gs-d{color:#2b5a52;font-size:14.5px;margin-bottom:14px}
.gscan .gs-row{display:flex;gap:9px;flex-wrap:wrap}
.gscan .gs-input{flex:1;min-width:190px;padding:13px 14px;border:1.5px solid #bfe6de;border-radius:11px;font-size:15px;outline:none;background:#fff;font-family:inherit}
.gscan .gs-input:focus{border-color:var(--teal);box-shadow:0 0 0 4px rgba(18,181,165,.15)}
.gscan .gs-input.err{border-color:#e5484d;box-shadow:0 0 0 4px rgba(229,72,77,.12)}
.gscan .gs-btn{background:var(--teal);color:#04211d;border:none;font-family:inherit;font-weight:800;font-size:15px;padding:13px 22px;border-radius:11px;cursor:pointer;white-space:nowrap}
.gscan .gs-btn:hover{background:var(--teal-2)}
.gscan .gs-out{margin-top:12px}
.gscan .gs-muted{color:var(--muted);font-size:14px}
.gscan .gs-hit{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid #f7c1c1;border-radius:12px;padding:13px 15px;font-size:14px;line-height:1.5}
.gscan .gs-n{font-size:32px;font-weight:800;color:#c94f4f;line-height:1;flex:none}
.gscan .gs-ok{background:#fff;border:1px solid #b7ece2;border-radius:12px;padding:13px 15px;font-size:14px;color:#0b5c50}
.gscan .gs-go{display:inline-block;margin-top:11px;background:var(--navy);color:#fff;font-weight:800;font-size:14.5px;padding:12px 20px;border-radius:11px;text-decoration:none}
.gscan .gs-go:hover{background:#16264a}
.gs-links{margin:22px 0;font-size:14.5px;color:var(--muted)}
.gs-links a{font-weight:700}

.gstick{position:fixed;left:0;right:0;bottom:0;z-index:60;background:var(--navy);color:#fff;transform:translateY(110%);transition:transform .25s ease;box-shadow:0 -6px 30px rgba(15,30,61,.28)}
.gstick.on{transform:translateY(0)}
.gstick .gk-in{max-width:920px;margin:0 auto;padding:11px 16px;display:flex;align-items:center;gap:14px}
.gstick .gk-t{font-weight:700;font-size:14.5px;flex:1;min-width:0}
.gstick .gk-go{background:var(--teal);color:#04211d;font-weight:800;font-size:14px;padding:10px 18px;border-radius:999px;text-decoration:none;white-space:nowrap;flex:none}
.gstick .gk-go:hover{background:var(--teal-2)}
.gstick .gk-x{background:none;border:none;color:#9fb0cc;font-size:20px;line-height:1;cursor:pointer;padding:4px 6px;flex:none;font-family:inherit}
/* tap targets: 44px on touch input — gk-x. Was ~23x28px. Negative margin absorbs the extra
   width so the bar itself does not get taller. */
@media(pointer:coarse){.gstick .gk-x{min-width:44px;min-height:44px;display:grid;place-items:center;padding:0;margin:-8px -6px -8px 0}}
.gstick .gk-x:hover{color:#fff}
@media(max-width:560px){
  .gstick .gk-t{font-size:13px}
  .gstick .gk-go{padding:9px 14px;font-size:13px}
  .gscan{padding:18px 16px}
}

/* iOS zooms in when a focused form control is under 16px and never zooms
   back out, leaving the user in a sideways-scrolling page. 16px exactly is
   the threshold — 15px still triggers it. Phone widths only. */
@media(max-width:560px){
  input,select,textarea{font-size:16px!important}
}

/* .gk-in is a nowrap flex row and .gk-go is flex:none + nowrap, so the CTA
   reserved its full intrinsic width and the headline was crushed to 115px
   wide / 3 lines tall on a 360px phone, inflating the bar. Let it wrap: the
   headline takes its own full-width line, the CTA sits below it. */
@media(max-width:560px){
  .gstick .gk-in{flex-wrap:wrap;row-gap:8px}
  .gstick .gk-t{flex:1 1 100%;order:1}
  .gstick .gk-go{order:2}
  .gstick .gk-x{order:3;margin-left:auto}
}

/* What actually leaked. Warm-red rather than the neutral card colour: the
   point is that a home address is out there, not that a count exists. */
.gs-leaked{margin-top:10px;background:#fff8f8;border:1px solid #ffd7d5;border-radius:10px;
  padding:11px 14px;font-size:14px;line-height:1.5;color:#5b6884}
.gs-leaked b{color:#e5484d}
