
.nfc-u, .nfc-u * { box-sizing: border-box; }
.nfc-u {
  --u-navy:#1B2A4A; --u-navy-dk:#0A1628; --u-navy-lt:#E5EAF2;
  --u-green:#2D7A4F; --u-green-dk:#1F5638; --u-green-lt:#E4F1EA;
  --u-gold:#B8860B; --u-gold-lt:#FBF3DC;
  --u-paper:#FAFAF7; --u-paper-2:#F1EFE8;
  --u-ink:#0A1628; --u-text:#1F2937; --u-muted:#6B7280;
  --u-line:#D8D6CC; --u-line-2:#E5E7EB; --u-card:#FFFFFF;
  --u-radius:14px; --u-radius-sm:10px;
  --u-shadow:0 18px 48px rgba(10,22,40,0.10);
  --u-shadow-sm:0 4px 14px rgba(10,22,40,0.06);
  --u-stamp:0 4px 0 0 var(--u-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--u-text); font-size: 15px; line-height: 1.5;
}
.nfc-u-mono {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
}
.nfc-u-stencil {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}

/* Layout shell */
.nfc-u-shell {
  background: var(--u-paper);
  border: 2px solid var(--u-ink);
  border-radius: var(--u-radius);
  overflow: hidden;
  max-width: 1080px; margin: 0 auto;
  box-shadow: var(--u-shadow-sm);
}
.nfc-u-header {
  background: var(--u-card); border-bottom: 2px solid var(--u-ink);
  padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nfc-u-brand { display: flex; align-items: center; gap: 12px; }
.nfc-u-brand-img {
  height: 38px; width: auto; display: block;
}
.nfc-u-license {
  color: var(--u-muted); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
}
@media (max-width: 520px) {
  .nfc-u-license { display: none; }
  .nfc-u-brand-img { height: 32px; }
}

/* Step indicator */
.nfc-u-steps {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 22px 4px; background: var(--u-card); border-bottom: 1px solid var(--u-line);
}
.nfc-u-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.nfc-u-step-dot {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--u-line-2);
  display: grid; place-items: center; font-size: .78rem; font-weight: 800;
  color: var(--u-muted); background: var(--u-card); transition: all .2s;
}
.nfc-u-step-dot.is-active { background: var(--u-green); border-color: var(--u-green); color: #fff; }
.nfc-u-step-dot.is-done   { background: var(--u-navy); border-color: var(--u-navy); color: #fff; }
.nfc-u-step-label {
  font-size: .58rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--u-muted);
}
.nfc-u-step-label.is-active { color: var(--u-green); }
.nfc-u-step-label.is-done   { color: var(--u-navy); }
.nfc-u-step-line { width: 36px; height: 2px; background: var(--u-line-2); margin: 0 6px 22px; border-radius: 2px; }
.nfc-u-step-line.is-done { background: var(--u-navy); }
@media (max-width: 560px) {
  .nfc-u-step-line { width: 14px; }
  .nfc-u-step-label { display: none; }
}

/* Body */
.nfc-u-body { padding: 22px 22px 28px; }

/* Work-order frame — used for the address card and key sections.
   Heavy 2-px ink border + striped header bar = the "carbon-copy work
   order" feel from the lovable mock, recolored to NFC navy. */
.nfc-u-card {
  background: var(--u-card); border: 2px solid var(--u-ink);
  border-radius: var(--u-radius); overflow: hidden;
}
.nfc-u-card-pad { padding: 22px 24px; }
.nfc-u-card-title { font-size: 1.35rem; font-weight: 900; letter-spacing: -.02em; margin: 0 0 6px; color: var(--u-ink); line-height: 1.15; }
.nfc-u-card-sub   { color: var(--u-muted); font-size: .9rem; margin: 0 0 18px; }

.nfc-u-form-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--u-ink); color: #fff;
  padding: 8px 14px; border-bottom: 2px solid var(--u-ink);
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.nfc-u-form-bar .nfc-u-bar-left { display: flex; align-items: center; gap: 8px; }
.nfc-u-form-bar .nfc-u-bar-dot {
  width: 8px; height: 8px; background: var(--u-forge);
}
.nfc-u-form-bar .nfc-u-bar-right { opacity: .65; }

/* Address-step hero stencil heading */
.nfc-u-hero {
  margin: 4px 0 18px;
  position: relative;
}
.nfc-u-hero-eyebrow {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--u-muted);
}
.nfc-u-hero-h1 {
  font-size: 2.4rem; line-height: 1.0; font-weight: 900;
  letter-spacing: -.025em; color: var(--u-ink);
  margin: 8px 0 0;
}
.nfc-u-hero-h1 .nfc-u-hl {
  position: relative; display: inline-block;
}
.nfc-u-hero-h1 .nfc-u-hl::after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  height: 8px; width: 100%; background: var(--u-gold);
  z-index: -1; opacity: .85;
}
.nfc-u-hero-sub {
  margin-top: 12px; max-width: 38ch;
  color: var(--u-muted); font-size: .9rem; line-height: 1.5;
}
.nfc-u-stamp {
  position: absolute; top: -2px; right: 0;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--u-green-dk); text-align: right;
  border: 2px solid var(--u-green-dk); padding: 4px 8px;
  transform: rotate(-2deg); line-height: 1.1;
}

@media (max-width: 480px) {
  .nfc-u-hero-h1 { font-size: 1.85rem; }
  .nfc-u-stamp { font-size: .52rem; padding: 3px 6px; }
}

/* Counter strip — three-up hard-numbers band under the address card */
.nfc-u-counters {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--u-ink); color: #fff;
  border: 2px solid var(--u-ink); border-radius: var(--u-radius-sm);
  margin-top: 16px; overflow: hidden;
}
.nfc-u-counter { padding: 14px 12px; }
.nfc-u-counter + .nfc-u-counter { border-left: 1px solid rgba(255,255,255,.18); }
.nfc-u-counter-big {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; line-height: 1;
}
.nfc-u-counter-small {
  margin-top: 6px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Credentials grid */
.nfc-u-creds-head {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0 10px;
}
.nfc-u-creds-head .nfc-u-mark { width: 10px; height: 10px; background: var(--u-gold); }
.nfc-u-creds-head .nfc-u-mark-star {
  width: auto; height: auto; background: transparent;
  color: var(--u-gold); font-size: 1rem; line-height: 1;
}
.nfc-u-creds-head .nfc-u-creds-label {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--u-ink);
}
.nfc-u-creds-head .nfc-u-rule {
  flex: 1; height: 1px; border-bottom: 1px dashed var(--u-line);
}
.nfc-u-creds {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.nfc-u-cred {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--u-line); background: var(--u-paper);
  border-radius: 8px; padding: 10px 12px;
}
.nfc-u-cred-icon {
  width: 22px; height: 22px; display: grid; place-items: center;
  background: var(--u-navy); color: #fff; border-radius: 4px;
  flex-shrink: 0;
}
.nfc-u-cred-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nfc-u-cred-name {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--u-ink);
}
.nfc-u-cred-sub { font-size: .68rem; color: var(--u-muted); margin-top: 2px; }

/* Inputs */
.nfc-u-field { margin-bottom: 16px; }
.nfc-u-label {
  font-size: .62rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--u-muted);
  display: block; margin-bottom: 8px;
}
.nfc-u-input, .nfc-u-select {
  width: 100%; padding: 13px 14px;
  border: 2px solid var(--u-line-2); border-radius: var(--u-radius-sm);
  font: inherit; font-weight: 600; font-size: 16px;
  color: var(--u-text); background: var(--u-card);
  outline: none; transition: border-color .15s, background .15s;
}
.nfc-u-input::placeholder { color: #9CA3AF; font-weight: 500; }
.nfc-u-input:focus, .nfc-u-select:focus { border-color: var(--u-green); background: #fff; }
.nfc-u-input.is-error { border-color: #EF4444; }

.nfc-u-input-wrap { position: relative; }
.nfc-u-input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--u-muted); pointer-events: none;
  display: grid; place-items: center;
}
.nfc-u-input-wrap .nfc-u-input { padding-left: 40px; }

.nfc-u-num-input { max-width: 120px; text-align: center; }

/* Consent checkbox row (SMS opt-in) */
.nfc-u-consent {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px; border: 1px dashed var(--u-line);
  background: var(--u-paper); border-radius: 8px;
  font-size: .82rem; color: var(--u-text); line-height: 1.4;
}
.nfc-u-consent input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--u-green);
  width: 18px; height: 18px; flex-shrink: 0;
}
.nfc-u-consent .nfc-u-consent-fine {
  display: block; color: var(--u-muted);
  font-size: .72rem; margin-top: 4px; line-height: 1.4;
}

/* Buttons */
.nfc-u-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--u-radius-sm);
  border: none; cursor: pointer;
  font: inherit; font-weight: 800; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  transition: transform .12s, background .15s, box-shadow .15s;
}
.nfc-u-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.nfc-u-btn-primary {
  background: var(--u-green); color: #fff;
  box-shadow: 0 8px 22px rgba(45,122,79,.25);
}
.nfc-u-btn-primary:hover:not(:disabled) { background: var(--u-green-dk); transform: translateY(-1px); }
.nfc-u-btn-ghost { background: transparent; color: var(--u-muted); letter-spacing: .06em; }
.nfc-u-btn-ghost:hover { color: var(--u-ink); }
.nfc-u-btn-dark { background: var(--u-navy); color: #fff; }
.nfc-u-btn-dark:hover:not(:disabled) { background: var(--u-navy-dk); }
.nfc-u-btn-block { width: 100%; }
.nfc-u-btn-sm { padding: 8px 14px; font-size: .68rem; letter-spacing: .08em; }

.nfc-u-cta-meta {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .56rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--u-muted);
}

/* Footer / nav row */
.nfc-u-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px 26px;
  background: var(--u-paper); border-top: 1px solid var(--u-line);
  flex-wrap: wrap;
}

/* Loading + states */
.nfc-u-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: nfc-u-spin .8s linear infinite;
}
@keyframes nfc-u-spin { to { transform: rotate(360deg); } }

.nfc-u-skeleton {
  background: linear-gradient(90deg, #EEF2F6 0%, #F7FAFC 50%, #EEF2F6 100%);
  background-size: 200% 100%;
  animation: nfc-u-shine 1.4s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes nfc-u-shine { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.nfc-u-empty {
  padding: 28px; text-align: center; color: var(--u-muted);
  border: 1px dashed var(--u-line); border-radius: var(--u-radius-sm);
}

.nfc-u-disclaimer {
  font-size: .72rem; color: var(--u-muted); line-height: 1.5;
  background: var(--u-paper); border: 1px solid var(--u-line);
  border-radius: var(--u-radius-sm); padding: 10px 14px;
  margin-top: 14px;
}
.nfc-u-disclaimer b { color: var(--u-text); }

/* Property step */
.nfc-u-prop-grid { display: grid; grid-template-columns: 1fr 280px; gap: 18px; }
@media (max-width: 760px) { .nfc-u-prop-grid { grid-template-columns: 1fr; } }
.nfc-u-map-wrap { position: relative; }
.nfc-u-map {
  width: 100%; height: 460px; min-height: 360px;
  background: var(--u-ink);
  border-radius: var(--u-radius-sm); overflow: hidden;
  border: 2px solid var(--u-ink);
  position: relative;
}
.nfc-u-draw-hint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: rgba(10,22,40,.92); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .04em;
  border: 1px solid var(--u-gold);
  z-index: 6; pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  max-width: 92%; text-align: center;
}
.nfc-u-draw-hint b { color: var(--u-gold); font-weight: 700; }
.nfc-u-map-fallback {
  width: 100%; height: 460px;
  background: var(--u-ink); color: #9CA3AF;
  border-radius: var(--u-radius-sm);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.nfc-u-map-tools {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between; gap: 8px;
  pointer-events: none; z-index: 5;
}
.nfc-u-map-tools > * { pointer-events: auto; }
.nfc-u-chip {
  background: rgba(10,22,40,.85); color: white; padding: 6px 12px;
  border-radius: 999px; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.nfc-u-trace-bar {
  display: flex; align-items: stretch;
  margin-bottom: 8px; border: 2px solid var(--u-ink); border-radius: 6px;
  overflow: hidden; background: var(--u-card);
}
.nfc-u-trace-bar .nfc-u-trace-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--u-ink); color: #fff; padding: 6px 10px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
}
.nfc-u-trace-bar .nfc-u-trace-pulse {
  width: 8px; height: 8px; background: var(--u-gold); border-radius: 50%;
  animation: nfc-u-pulse 1.4s ease-in-out infinite;
}
@keyframes nfc-u-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.nfc-u-trace-meta {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 4px 12px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--u-muted);
}

.nfc-u-prop-side { display: flex; flex-direction: column; gap: 12px; }
.nfc-u-stat { background: var(--u-card); border: 1px solid var(--u-line); border-radius: var(--u-radius-sm); padding: 12px 14px; }
.nfc-u-stat-key {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .58rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--u-muted);
}
.nfc-u-stat-val {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 1.25rem; font-weight: 800; color: var(--u-ink);
  margin-top: 2px; letter-spacing: -.02em;
}
.nfc-u-stat-sub { font-size: .72rem; color: var(--u-muted); margin-top: 2px; }
.nfc-u-stat-edit { background: transparent; border: none; color: var(--u-green); font: inherit; font-size: .7rem; font-weight: 800; cursor: pointer; padding: 0; margin-top: 4px; }
.nfc-u-stat-edit:hover { text-decoration: underline; }

/* Inline number editor for stats */
.nfc-u-stat select, .nfc-u-stat input[type="number"] {
  width: 100%; padding: 6px 8px; margin-top: 6px;
  border: 1px solid var(--u-line-2); border-radius: 6px;
  font: inherit; font-weight: 700; color: var(--u-ink); background: white;
}

.nfc-u-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--u-green-lt); color: var(--u-green-dk);
  padding: 4px 10px; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}

.nfc-u-error {
  background: #FEF2F2; border: 1px solid #FECACA; color: #B91C1C;
  padding: 10px 14px; border-radius: var(--u-radius-sm); font-size: .85rem; font-weight: 600;
}

/* Products step */
.nfc-u-products { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .nfc-u-products { grid-template-columns: 1fr; } }
.nfc-u-product {
  background: var(--u-card); border: 2px solid var(--u-line-2);
  border-radius: var(--u-radius); padding: 18px; position: relative;
  transition: border-color .15s, box-shadow .15s;
}
.nfc-u-product.is-on { border-color: var(--u-green); box-shadow: 0 8px 24px rgba(45,122,79,.12); }
.nfc-u-product-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nfc-u-product-title { font-size: 1.05rem; font-weight: 900; letter-spacing: -.01em; color: var(--u-ink); }
.nfc-u-product-meta { font-size: .75rem; color: var(--u-muted); margin-top: 2px; }
.nfc-u-toggle {
  position: relative; width: 44px; height: 24px; border-radius: 999px;
  background: var(--u-line-2); border: none; cursor: pointer; padding: 0; transition: background .2s;
  flex-shrink: 0;
}
.nfc-u-toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%; background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,.15); transition: left .2s;
}
.nfc-u-toggle.is-on { background: var(--u-green); }
.nfc-u-toggle.is-on::after { left: 22px; }
.nfc-u-product-body { margin-top: 14px; }

.nfc-u-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; }
.nfc-u-tier {
  border: 2px solid var(--u-line-2); border-radius: var(--u-radius-sm);
  padding: 10px 12px; cursor: pointer; background: white; text-align: left;
  font: inherit; transition: all .15s; position: relative;
}
.nfc-u-tier:hover { border-color: #D1D5DB; }
.nfc-u-tier.is-on { border-color: var(--u-green); background: var(--u-green-lt); }
.nfc-u-tier-name { font-size: .78rem; font-weight: 800; color: var(--u-ink); }
.nfc-u-tier-sub  { font-size: .68rem; color: var(--u-muted); margin-top: 2px; }
.nfc-u-tier-pop {
  position: absolute; top: -8px; right: 8px; background: var(--u-green); color: white;
  padding: 2px 8px; border-radius: 999px; font-size: .55rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
}

/* Quote step */
.nfc-u-quote-total {
  background: linear-gradient(135deg, var(--u-navy-dk), var(--u-navy));
  color: white; padding: 28px 24px; border-radius: var(--u-radius);
  text-align: center; margin-bottom: 18px; border: 2px solid var(--u-ink);
}
.nfc-u-quote-total-lbl {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px;
}
.nfc-u-quote-total-val {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.nfc-u-quote-total-sub { color: #D1D5DB; font-size: .85rem; margin-top: 8px; }
.nfc-u-quote-products { display: flex; flex-direction: column; gap: 10px; }
.nfc-u-quote-row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  padding: 14px 16px; background: var(--u-card); border: 1px solid var(--u-line);
  border-radius: var(--u-radius-sm);
}
.nfc-u-quote-row-name { font-weight: 800; color: var(--u-ink); }
.nfc-u-quote-row-meta { font-size: .72rem; color: var(--u-muted); margin-top: 2px; }
.nfc-u-quote-row-val  { font-weight: 900; color: var(--u-ink); white-space: nowrap;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace; }

/* Google Places autocomplete dropdown — keep on top */
.pac-container { z-index: 2147483647 !important; font-family: inherit; }

/* Mapbox: minor overrides so the canvas inherits our radius */
.nfc-u-map .mapboxgl-canvas { display: block; }
.nfc-u-map .mapboxgl-ctrl-bottom-right { display: none; }
.nfc-u-map .mapboxgl-ctrl-attrib { font-size: 9px; }

/* Mobile — 480px and below */
@media (max-width: 480px) {
  .nfc-u-body { padding: 14px 12px 24px; }
  .nfc-u-card-pad { padding: 18px 16px 26px; }
  .nfc-u-nav { padding: 12px 16px; }
  .nfc-u-map, .nfc-u-map-fallback { height: 280px; min-height: 200px; }
  .nfc-u-map { border-width: 2px; }
  .nfc-u-quote-total { padding: 20px 16px; }
  .nfc-u-quote-total-val { font-size: 2rem; }
  .nfc-u-quote-row { grid-template-columns: 1fr; gap: 2px; }
  .nfc-u-quote-row-val { text-align: left; font-size: .9rem; }
  .nfc-u-btn-ghost { min-height: 44px; display: inline-flex; align-items: center; }
  .nfc-u-btn { padding: 13px 16px; }
  .nfc-u-counters { grid-template-columns: repeat(3, 1fr); }
  .nfc-u-counter-big { font-size: 1.05rem; }
  .nfc-u-counter-small { font-size: .5rem; letter-spacing: .14em; }
  .nfc-u-creds { grid-template-columns: 1fr; }
  .nfc-u-trace-meta { font-size: .56rem; padding: 4px 8px; }
  .nfc-u-trace-bar .nfc-u-trace-tag { font-size: .56rem; padding: 5px 8px; }
}
