:root {
  --ps-yellow: #f5c200;
  --ps-yellow-strong: #dca900;
  --ps-ink: #121212;
  --ps-muted: #5b5f66;
  --ps-line: rgba(18, 18, 18, .1);
  --ps-line-strong: rgba(18, 18, 18, .18);
  --ps-soft: #f8f7f1;
  --ps-warm: #fffdf5;
  --ps-deep: #1f2933;
  --ps-green: #0f7a55;
  --ps-red: #b42318;
  --ps-ease-out: cubic-bezier(.23, 1, .32, 1);
  --ps-ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ps-ink);
  background: #fff;
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

.psp-shell {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 194, 0, .24), transparent 360px),
    linear-gradient(180deg, rgba(255, 251, 229, .9), rgba(255, 255, 255, 0) 440px),
    linear-gradient(90deg, rgba(18,18,18,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,18,18,.03) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.psp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.psp-topbar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
  padding: 18px 0 10px;
}

.psp-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.psp-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.psp-private {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--ps-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.psp-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.psp-mini-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 8px 15px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms var(--ps-ease-out), background 180ms var(--ps-ease-out);
}

.psp-mini-cta:active { transform: scale(.97); }

.psp-hero.psp-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.psp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
  gap: 26px 42px;
  align-items: start;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 82px;
}

.psp-hero-main {
  display: contents;
  min-width: 0;
}

.psp-hero > .psp-form {
  position: fixed;
  top: 18px;
  right: max(24px, calc((100vw - 1440px) / 2));
  bottom: 18px;
  z-index: 21;
  width: min(780px, calc(100vw - 48px));
  max-height: none;
  margin: 0;
  overflow: auto;
  background: rgba(255,255,255,.94);
  box-shadow: 0 34px 90px rgba(18,18,18,.16), inset 0 1px 0 rgba(255,255,255,.92);
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(.985);
  transition: opacity 360ms var(--ps-ease-out), transform 420ms var(--ps-ease-out);
}

body.psp-quote-open {
  overflow: hidden;
}

body.psp-quote-open .psp-hero > .psp-form {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.psp-widget-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  border: 0;
  background: rgba(18,18,18,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ps-ease-out);
}

body.psp-quote-open .psp-widget-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.psp-hero-main > .psp-quick-nav,
.psp-hero-main > .psp-flow,
.psp-hero-main > .psp-alert,
.psp-hero-main > .psp-proof,
.psp-hero-main > .psp-price-band,
.psp-hero-main > .psp-price-note {
  grid-column: 1 / -1;
  z-index: 1;
}

.psp-landing-hero {
  padding-bottom: 52px;
}

.psp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2f3034;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.psp-kicker:before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--ps-yellow);
}

.psp-h1,
.psp-page-title {
  margin: 18px 0 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.psp-h1 {
  font-size: clamp(48px, 6.7vw, 80px);
  max-width: 720px;
}

.psp-page-title {
  font-size: clamp(40px, 6vw, 72px);
}

.psp-lead {
  max-width: 710px;
  margin: 0;
  color: #343941;
  font-size: 18px;
  line-height: 1.62;
}

.psp-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.psp-hero-preview {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  max-width: 680px;
  margin-top: 22px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  padding: 8px;
  box-shadow: 0 24px 60px rgba(18,18,18,.06), inset 0 1px 0 rgba(255,255,255,.88);
}

.psp-hero-preview-media {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  border-radius: 16px;
  background: #111;
}

.psp-hero-preview-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.18));
  pointer-events: none;
}

.psp-hero-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.psp-hero-preview-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 16px 16px 16px 4px;
}

.psp-hero-preview-copy span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(245,194,0,.18);
  padding: 5px 8px;
  color: #6f5700;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-hero-preview-copy strong {
  display: block;
  margin-top: 10px;
  color: var(--ps-ink);
  font-size: 23px;
  line-height: 1.06;
}

.psp-hero-preview-copy p {
  margin: 8px 0 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.45;
}

.psp-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.psp-flow div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  padding: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-flow b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ps-yellow);
  color: #111;
  font-size: 13px;
  font-weight: 950;
}

.psp-flow span {
  color: #313740;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.22;
}

.psp-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.psp-proof div,
.psp-card,
.psp-panel,
.psp-metric,
.psp-quote-strip,
.psp-alert {
  border: 1px solid var(--ps-line);
  border-radius: 14px;
  background: #fff;
}

.psp-proof div {
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 28px rgba(18,18,18,.04);
}

.psp-proof strong,
.psp-metric strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.psp-proof span,
.psp-metric span,
.psp-small,
.psp-muted {
  color: var(--ps-muted);
}

.psp-form {
  position: sticky;
  top: 16px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 26px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245,194,0,.55), rgba(18,18,18,.12)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 28px 72px rgba(18, 18, 18, .14), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-form-head {
  position: relative;
  margin-bottom: 18px;
  padding-right: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(18,18,18,.08);
}

.psp-form-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(18,18,18,.06);
  color: var(--ps-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ps-ease-out), background 220ms var(--ps-ease-out);
}

.psp-form-close:hover {
  background: rgba(245,194,0,.42);
  transform: rotate(90deg) scale(1.03);
}

.psp-form-head span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(245,194,0,.18);
  padding: 4px 9px;
  color: #5f4d00;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.psp-form-head h2 {
  margin: 10px 0 6px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  line-height: .95;
  text-transform: uppercase;
}

.psp-form-head p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.45;
}

.psp-card h2,
.psp-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.2;
}

.psp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.psp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.psp-field-full { grid-column: 1 / -1; }

.psp-form-section {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.1);
}

.psp-form-section span {
  display: block;
  color: #343840;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.psp-form-section p {
  margin: 5px 0 0;
  color: var(--ps-muted);
  font-size: 13px;
  line-height: 1.45;
}

.psp-field label,
.psp-check-title {
  color: #343840;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.psp-field input,
.psp-field select,
.psp-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(18,18,18,.11);
  border-radius: 12px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ps-ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms var(--ps-ease-out), box-shadow 160ms var(--ps-ease-out), transform 160ms var(--ps-ease-out);
}

.psp-field input:focus,
.psp-field select:focus,
.psp-field textarea:focus {
  border-color: rgba(220,169,0,.7);
  box-shadow: 0 0 0 4px rgba(245,194,0,.18);
}

.psp-field textarea {
  min-height: 92px;
  resize: vertical;
}

.psp-optional { color: var(--ps-muted); font-weight: 700; }
.psp-upload { display:flex; align-items:center; justify-content:center; min-height:58px; border:2px dashed rgba(18,18,18,.2); border-radius:12px; padding:12px; color:var(--ps-muted); font-size:14px; font-weight:750; text-align:center; cursor:pointer; }
.psp-upload:hover, .psp-upload:focus-within { border-color:rgba(220,169,0,.85); background:rgba(245,194,0,.08); color:var(--ps-ink); }
.psp-upload input { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }

.psp-payment-trust { margin-top:12px; padding:12px 13px; border-radius:13px; background:linear-gradient(135deg,rgba(245,194,0,.11),rgba(255,255,255,.9)); box-shadow:inset 0 0 0 1px rgba(18,18,18,.07); }
.psp-payment-trust-head { display:flex; align-items:center; gap:7px; color:#343840; font-size:12px; }
.psp-payment-trust-head > span { display:grid; width:20px; height:20px; place-items:center; border-radius:50%; background:#1f2937; color:#fff; font-size:15px; line-height:1; }
.psp-payment-trust-head strong { color:#635bff; font-size:14px; letter-spacing:-.04em; }
.psp-payment-brands { display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }
.psp-payment-brand { display:grid; min-width:48px; height:26px; place-items:center; padding:3px 6px; border-radius:6px; background:#fff; box-shadow:inset 0 0 0 1px rgba(18,18,18,.1); font-size:10px; font-weight:950; letter-spacing:-.05em; line-height:.9; text-align:center; }
.psp-payment-brand-visa { color:#1a2f7a; font-style:italic; }
.psp-payment-brand-master { min-width:71px; color:#ed1b2e; font-size:9px; }
.psp-payment-brand-amex { min-width:58px; color:#0475bc; font-size:7px; letter-spacing:-.03em; }
.psp-payment-trust p { margin:9px 0 0; color:var(--ps-muted); font-size:10px; line-height:1.45; }
.psp-payment-trust a { color:#4a4f56; font-weight:800; text-decoration:underline; text-underline-offset:2px; }

.psp-form-section span em { font-style:normal; color:var(--ps-muted); font-weight:700; }
.psp-target-picker { padding:14px; border:1px solid rgba(18,18,18,.1); border-radius:16px; background:linear-gradient(145deg,#fff,#faf8f1); box-shadow:inset 0 1px 0 rgba(255,255,255,.9); }
.psp-target-toolbar { display:grid; grid-template-columns:minmax(0,1fr) 146px; gap:9px; margin-bottom:10px; }
.psp-target-toolbar .psp-target-search,
.psp-target-toolbar .psp-target-radius { min-height:46px; margin:0; }
.psp-target-map { position:relative; height:285px; overflow:hidden; border-radius:12px; background:#edf0e7; }
.psp-target-picker.is-locked .psp-target-map { filter:grayscale(.7); pointer-events:none; }
.psp-target-picker.is-locked .psp-target-map:after { content:"Selecciona un circuito disponible para habilitar el mapa"; position:absolute; inset:0; z-index:2; display:grid; place-items:center; padding:24px; background:rgba(18,18,18,.5); color:#fff; text-align:center; font-size:13px; font-weight:850; line-height:1.4; }
.psp-target-help { margin:9px 0 0; color:var(--ps-muted); font-size:12px; line-height:1.45; }
.psp-target-summary { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:12px; }
.psp-target-summary b { color:#343840; font-size:12px; text-transform:uppercase; }
.psp-target-clear { border:0; border-radius:999px; padding:7px 10px; background:rgba(18,18,18,.06); color:#545954; cursor:pointer; font:800 11px/1 inherit; transition:transform 180ms var(--ps-ease-out),background 180ms var(--ps-ease-out); }
.psp-target-clear:hover { background:rgba(245,194,0,.22); transform:translateY(-1px); }
.psp-target-list { display:grid; gap:6px; margin-top:10px; }
.psp-target-empty { margin:0; padding:10px; border-radius:9px; background:rgba(18,18,18,.035); color:var(--ps-muted); font-size:12px; line-height:1.4; }
.psp-target-item { display:flex; align-items:center; justify-content:space-between; gap:10px; min-width:0; padding:9px 10px; border-radius:9px; background:rgba(245,194,0,.11); color:#343840; font-size:12px; font-weight:700; }
.psp-target-item span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.psp-target-item button { flex:0 0 auto; width:26px; height:26px; border:0; border-radius:8px; background:rgba(18,18,18,.08); color:#343840; cursor:pointer; font-size:19px; line-height:1; }
.psp-target-picker.is-unavailable .psp-target-map { display:none; }
.psp-target-picker.is-unavailable .psp-target-toolbar,
.psp-target-picker.is-unavailable .psp-target-help,
.psp-target-picker.is-unavailable .psp-target-summary,
.psp-target-picker.is-unavailable .psp-target-list { display:none; }

.psp-checks {
  display: grid;
  gap: 10px;
}

.psp-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(18,18,18,.1);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms var(--ps-ease-out), background 180ms var(--ps-ease-out), transform 160ms var(--ps-ease-out), box-shadow 180ms var(--ps-ease-out);
}

.psp-check.is-hidden { display: none; }

.psp-check input { width: 18px; height: 18px; accent-color: var(--ps-yellow-strong); }

.psp-check:has(input:checked) {
  border-color: rgba(220,169,0,.7);
  background: rgba(245,194,0,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.psp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 10px 11px 10px 18px;
  background: linear-gradient(180deg, #ffd94a, var(--ps-yellow));
  color: #111;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(220,169,0,.22), inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform 160ms var(--ps-ease-out), box-shadow 180ms var(--ps-ease-out), background 180ms var(--ps-ease-out);
}

.psp-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(18,18,18,.1);
  color: #111;
  font-style: normal;
  transition: transform 180ms var(--ps-ease-out), background 180ms var(--ps-ease-out);
}

.psp-btn-xl {
  min-height: 54px;
  padding-left: 22px;
  font-size: 15px;
}

.psp-btn:hover { background: linear-gradient(180deg, #ffe16a, #f6c300); }
.psp-btn:active { transform: scale(.98); }
.psp-btn:hover i { transform: translateX(2px); background: rgba(18,18,18,.15); }

.psp-btn-dark {
  background: var(--ps-ink);
  color: #fff;
}

.psp-btn-dark:hover { background: #333; }

.psp-btn-ghost {
  border: 1px solid var(--ps-line);
  background: rgba(255,255,255,.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.psp-section {
  padding: 76px 0;
  background: var(--ps-soft);
}

.psp-section-white {
  background: #fff;
}

.psp-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.psp-panel {
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 32px rgba(18,18,18,.035);
}

.psp-panel p { margin: 0; color: var(--ps-muted); line-height: 1.65; }

.psp-quote-main {
  padding: 112px 0 70px;
}

.psp-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.psp-quote-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.psp-quote-strip div {
  padding: 16px;
  border-right: 1px solid var(--ps-line);
}

.psp-quote-strip div:last-child { border-right: 0; }
.psp-quote-strip span { display: block; color: var(--ps-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.psp-quote-strip b { display: block; margin-top: 4px; }

.psp-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.psp-metric { padding: 18px; }
.psp-metric strong { font-size: 36px; }

.psp-map {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--ps-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18,18,18,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,18,18,.05) 1px, transparent 1px),
    #f7f4ed;
  background-size: 36px 36px;
}

.psp-map-google {
  background: #f7f4ed;
}

.psp-map-fallback {
  margin-top: 12px;
}

.psp-pin {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ps-yellow-strong);
  border: 1px solid rgba(18, 18, 18, .2);
  transform: translate(-50%, -50%);
}

.psp-map-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: #343840;
  font-size: 12px;
  font-weight: 800;
}

.psp-quote-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 18px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(18,18,18,.96), rgba(18,18,18,.84)),
    radial-gradient(circle at 92% 0%, rgba(245,194,0,.36), transparent 280px);
  padding: clamp(22px, 4vw, 36px);
  color: #fff;
  box-shadow: 0 26px 70px rgba(18,18,18,.1), inset 0 1px 0 rgba(255,255,255,.12);
}

.psp-quote-hero-card .psp-badge {
  background: rgba(245,194,0,.9);
  color: #141414;
}

.psp-quote-hero-card h2 {
  max-width: 660px;
  margin: 16px 0 10px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-quote-hero-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.58;
}

.psp-quote-hero-price {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  padding: 22px;
}

.psp-quote-hero-price span,
.psp-quote-hero-price small {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-quote-hero-price strong {
  display: block;
  margin: 8px 0;
  color: var(--ps-yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(46px, 5vw, 68px);
  line-height: .88;
  letter-spacing: 0;
}

.psp-quote-includes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.psp-quote-includes article {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  padding: 20px;
  box-shadow: 0 18px 46px rgba(18,18,18,.05), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-quote-includes article > span,
.psp-delivery-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(245,194,0,.2);
}

.psp-quote-includes svg,
.psp-delivery-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-quote-includes h3 {
  margin: 28px 0 8px;
  font-size: 20px;
  line-height: 1.05;
}

.psp-quote-includes p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.45;
}

.psp-quote-next {
  margin-top: 18px;
}

.psp-quote-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.psp-quote-next-grid div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border-radius: 16px;
  background: rgba(245,194,0,.12);
  padding: 14px;
}

.psp-quote-next-grid b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ps-yellow);
  color: #111;
  font-size: 13px;
  font-weight: 950;
}

.psp-quote-next-grid span {
  color: #343840;
  font-size: 14px;
  line-height: 1.42;
}

.psp-side-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.psp-side-facts div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  background: rgba(245,194,0,.12);
  padding: 11px 12px;
}

.psp-side-facts span {
  color: var(--ps-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.psp-side-facts b {
  color: var(--ps-ink);
  text-align: right;
}

.psp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.psp-table th,
.psp-table td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--ps-line);
  text-align: left;
}

.psp-table th {
  color: var(--ps-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.psp-table .r { text-align: right; }

.psp-table .nowrap { white-space: nowrap; }

.psp-adminbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: end;
  margin: 18px 0;
}

.psp-statgrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.psp-stat {
  border: 1px solid var(--ps-line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.psp-stat b {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.psp-stat span {
  display: block;
  margin-top: 4px;
  color: var(--ps-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.psp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 4px 9px;
  background: #f0f1f1;
  color: #38414a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.psp-badge-pending { background: rgba(245, 194, 0, .22); color: #745c00; }
.psp-badge-accepted { background: rgba(31, 41, 51, .12); color: #1f2933; }
.psp-badge-paid { background: rgba(15, 122, 85, .12); color: var(--ps-green); }
.psp-badge-expired,
.psp-badge-unavailable { background: rgba(180, 35, 24, .09); color: var(--ps-red); }

.psp-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.psp-mini {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--ps-line);
  border-radius: 8px;
  padding: 6px 9px;
  background: #fff;
  color: #222;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.psp-mini:hover {
  background: var(--ps-soft);
}

.psp-sidebar {
  position: sticky;
  top: 18px;
}

.psp-price {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.psp-price-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.psp-price-band-landing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psp-price-band div {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 36px rgba(18,18,18,.045);
}

.psp-price-band span,
.psp-price-band small {
  display: block;
  color: var(--ps-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.psp-price-band strong {
  display: block;
  margin: 5px 0 4px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: .95;
  letter-spacing: 0;
}

.psp-price-note {
  margin: 10px 0 0;
}

.psp-alert {
  padding: 16px;
  margin: 0 0 16px;
  color: #343840;
}

.psp-alert-good { border-color: rgba(15, 122, 85, .28); background: rgba(15, 122, 85, .08); }
.psp-alert-bad { border-color: rgba(180, 35, 24, .25); background: rgba(180, 35, 24, .06); }

.psp-programmatic-primer {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 84px 0 26px;
}

.psp-primer-copy,
.psp-primer-steps {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(18,18,18,.08), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-primer-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.8)),
    radial-gradient(circle at 18% 0%, rgba(245,194,0,.24), transparent 340px);
  padding: clamp(28px, 5vw, 58px);
}

.psp-primer-copy h2 {
  max-width: 620px;
  margin: 18px 0 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-primer-copy p {
  max-width: 600px;
  margin: 0;
  color: #343941;
  font-size: 18px;
  line-height: 1.64;
}

.psp-primer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.psp-primer-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(18,18,18,.08);
}

.psp-primer-steps article {
  position: relative;
  min-height: 280px;
  background: rgba(255,255,255,.92);
  padding: 26px;
}

.psp-primer-steps article b {
  color: rgba(18,18,18,.18);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 64px;
  line-height: .8;
}

.psp-primer-steps article > span {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--ps-yellow);
}

.psp-primer-steps svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-primer-steps h3 {
  margin: 84px 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.psp-primer-steps p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.52;
}

.psp-screen-guide {
  padding: 86px 0 30px;
}

.psp-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.psp-guide-copy,
.psp-guide-visual {
  border: 1px solid rgba(18,18,18,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 20% 0%, rgba(245,194,0,.2), transparent 320px);
  box-shadow: 0 28px 72px rgba(18,18,18,.08), inset 0 1px 0 rgba(255,255,255,.92);
}

.psp-guide-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  border-radius: 28px;
  padding: clamp(26px, 5vw, 58px);
}

.psp-guide-copy h2 {
  max-width: 560px;
  margin: 18px 0 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-guide-copy p {
  max-width: 560px;
  margin: 0;
  color: #343941;
  font-size: 18px;
  line-height: 1.64;
}

.psp-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.psp-guide-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border-radius: 28px;
  background: #111;
  isolation: isolate;
}

.psp-guide-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 760ms var(--ps-ease-out);
}

.psp-guide-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.46)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.16), transparent 280px);
  pointer-events: none;
}

.psp-guide-visual:hover img {
  transform: scale(1.045);
}

.psp-guide-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  max-width: 520px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  background: rgba(18,18,18,.78);
  padding: 18px;
  color: #fff;
}

.psp-guide-visual figcaption b,
.psp-guide-visual figcaption span {
  display: block;
}

.psp-guide-visual figcaption b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 950;
}

.psp-guide-visual figcaption svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ps-yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-guide-visual figcaption span {
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

.psp-guide-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.psp-guide-benefits article {
  min-height: 230px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  padding: 22px;
  box-shadow: 0 22px 56px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-guide-benefits article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,233,121,.96), rgba(245,194,0,.82)),
    #f5c200;
}

.psp-guide-benefits svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-guide-benefits h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  line-height: 1.05;
}

.psp-guide-benefits p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.5;
}

.psp-omni-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  padding: 38px 0 34px;
}

.psp-omni-copy,
.psp-omni-flow {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-omni-copy {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 16% 0%, rgba(245,194,0,.22), transparent 300px);
  padding: clamp(26px, 4.8vw, 52px);
}

.psp-omni-copy h2 {
  max-width: 620px;
  margin: 18px 0 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-omni-copy p {
  margin: 0;
  color: #343941;
  font-size: 17px;
  line-height: 1.62;
}

.psp-omni-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.psp-omni-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(18,18,18,.08);
}

.psp-omni-flow article {
  position: relative;
  min-height: 230px;
  background: rgba(255,255,255,.92);
  padding: 24px;
}

.psp-omni-flow article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,233,121,.96), rgba(245,194,0,.82)),
    #f5c200;
}

.psp-omni-flow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-omni-flow small {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(18,18,18,.22);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.psp-omni-flow h3 {
  margin: 48px 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.psp-omni-flow p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.5;
}

.psp-photo-reel {
  padding: 38px 0 34px;
}

.psp-photo-reel-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .45fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.psp-photo-reel-head h2 {
  margin: 16px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-photo-reel-head p {
  margin: 0 0 8px;
  color: var(--ps-muted);
  font-size: 16px;
  line-height: 1.55;
}

.psp-photo-track {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
}

.psp-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 26px 70px rgba(18,18,18,.1);
  isolation: isolate;
}

.psp-photo-card-0,
.psp-photo-card-3 {
  min-height: 430px;
}

.psp-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  filter: saturate(.95) contrast(1.02);
  object-fit: cover;
  transform: scale(1.018);
  transition: transform 720ms var(--ps-ease-out), filter 720ms var(--ps-ease-out);
}

.psp-photo-card:hover img {
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.05);
}

.psp-photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 44%, rgba(0,0,0,.58));
  pointer-events: none;
}

.psp-photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
}

.psp-photo-card figcaption strong,
.psp-photo-card figcaption span {
  display: block;
}

.psp-photo-card figcaption strong {
  font-size: 20px;
  line-height: 1.05;
}

.psp-photo-card figcaption span {
  max-width: 460px;
  margin-top: 6px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

.psp-example-section {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, 1fr);
  gap: 18px;
  padding: 56px 0 34px;
}

.psp-example-copy,
.psp-example-card {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 26px 68px rgba(18,18,18,.08), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-example-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.psp-example-copy h2 {
  margin: 16px 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-example-copy p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 16px;
  line-height: 1.58;
}

.psp-example-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18,18,18,.96), rgba(18,18,18,.82)),
    radial-gradient(circle at 92% 0%, rgba(245,194,0,.34), transparent 280px);
  color: #fff;
}

.psp-example-main {
  padding: clamp(24px, 4vw, 44px);
}

.psp-example-main > span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--ps-yellow);
  padding: 8px 12px;
  color: #111;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-example-main h3 {
  max-width: 640px;
  margin: 18px 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-example-main p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.58;
}

.psp-example-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.psp-example-numbers div {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.psp-example-numbers div:last-child {
  border-right: 0;
}

.psp-example-numbers small,
.psp-example-numbers strong {
  display: block;
}

.psp-example-numbers small {
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-example-numbers strong {
  margin-top: 7px;
  color: var(--ps-yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: .92;
}

.psp-example-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.psp-example-foot span,
.psp-example-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.psp-example-foot svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ps-yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-example-foot a {
  border-radius: 999px;
  background: #fff;
  padding: 8px 8px 8px 14px;
  color: #111;
}

.psp-example-foot a i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ps-yellow);
  font-style: normal;
}

.psp-answer-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  padding: 48px 0 30px;
}

.psp-answer-card,
.psp-answer-points article {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 62px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-answer-card {
  padding: clamp(24px, 4vw, 42px);
}

.psp-answer-card h2 {
  margin: 16px 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(40px, 5.3vw, 68px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-answer-card p {
  margin: 0;
  color: #343941;
  font-size: 17px;
  line-height: 1.62;
}

.psp-answer-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.psp-answer-points article {
  padding: 20px;
}

.psp-answer-points b {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--ps-yellow);
}

.psp-answer-points svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-answer-points strong,
.psp-answer-points span {
  display: block;
}

.psp-answer-points strong {
  margin-top: 30px;
  font-size: 19px;
  line-height: 1.08;
}

.psp-answer-points span {
  margin-top: 8px;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.46;
}

.psp-package-section {
  padding: 56px 0 34px;
}

.psp-package-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .48fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.psp-package-head h2,
.psp-trust-copy h2,
.psp-assistant-copy h2 {
  margin: 16px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-package-head p,
.psp-trust-copy p,
.psp-assistant-copy p {
  margin: 0 0 8px;
  color: var(--ps-muted);
  font-size: 16px;
  line-height: 1.58;
}

.psp-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.psp-package-grid article,
.psp-trust-grid article,
.psp-assistant-card {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 62px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-package-grid article {
  min-height: 360px;
  padding: 24px;
}

.psp-package-grid article.is-featured {
  background:
    linear-gradient(180deg, rgba(255,224,91,.96), rgba(245,194,0,.86)),
    #f5c200;
}

.psp-package-grid article > span,
.psp-trust-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: rgba(245,194,0,.18);
}

.psp-package-grid article.is-featured > span {
  background: rgba(255,255,255,.54);
}

.psp-package-grid svg,
.psp-trust-grid svg,
.psp-assistant-actions svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-package-grid small {
  display: inline-flex;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(18,18,18,.06);
  padding: 7px 10px;
  color: #343840;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-package-grid h3 {
  margin: 14px 0 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-package-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.psp-package-grid p {
  margin: 14px 0 0;
  color: var(--ps-muted);
  font-size: 15px;
  line-height: 1.55;
}

.psp-package-grid article.is-featured p {
  color: rgba(18,18,18,.72);
}

.psp-package-grid a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  border-radius: 999px;
  background: #111;
  padding: 8px 8px 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.psp-package-grid a i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ps-yellow);
  color: #111;
  font-style: normal;
}

.psp-trust-section {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, 1fr);
  gap: 18px;
  padding: 62px 0 34px;
}

.psp-trust-copy {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 10% 0%, rgba(245,194,0,.2), transparent 320px);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 62px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.psp-trust-grid article {
  padding: 22px;
}

.psp-trust-grid h3 {
  margin: 30px 0 8px;
  font-size: 21px;
  line-height: 1.05;
}

.psp-trust-grid p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.5;
}

.psp-delivery-section {
  display: grid;
  grid-template-columns: minmax(0, .56fr) minmax(0, 1fr);
  gap: 18px;
  padding: 56px 0 34px;
}

.psp-delivery-head,
.psp-delivery-grid article {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 62px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-delivery-head {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 10% 0%, rgba(245,194,0,.2), transparent 320px);
}

.psp-delivery-head h2 {
  margin: 16px 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-delivery-head p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 16px;
  line-height: 1.58;
}

.psp-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.psp-delivery-grid article {
  min-height: 280px;
  padding: 22px;
}

.psp-delivery-grid h3 {
  margin: 34px 0 8px;
  font-size: 22px;
  line-height: 1.05;
}

.psp-delivery-grid p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.5;
}

.psp-assistant-section {
  padding: 38px 0 34px;
}

.psp-assistant-card {
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(0, 1fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
    radial-gradient(circle at 0% 0%, rgba(245,194,0,.2), transparent 320px);
}

.psp-assistant-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
}

.psp-assistant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.psp-assistant-actions a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  padding: 14px;
  color: var(--ps-ink);
  text-decoration: none;
  transition: transform 240ms var(--ps-ease-out), border-color 240ms var(--ps-ease-out), background 240ms var(--ps-ease-out);
}

.psp-assistant-actions a:hover {
  border-color: rgba(245,194,0,.74);
  background: rgba(245,194,0,.14);
  transform: translateY(-2px);
}

.psp-assistant-actions a > svg {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(245,194,0,.2);
  padding: 11px;
}

.psp-assistant-actions span {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.08;
}

.psp-assistant-actions i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(18,18,18,.06);
  font-style: normal;
  font-weight: 950;
}

.psp-route-selector {
  padding-top: 76px;
}

.psp-route-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .48fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.psp-route-head .psp-page-title {
  margin-bottom: 0;
}

.psp-route-head p {
  margin: 0 0 10px;
  color: var(--ps-muted);
  font-size: 17px;
  line-height: 1.55;
}

.psp-route-shell {
  display: grid;
  grid-template-columns: minmax(245px, .34fr) minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.64)),
    radial-gradient(circle at 0% 0%, rgba(245,194,0,.2), transparent 360px);
  padding: 10px;
  box-shadow: 0 30px 80px rgba(18,18,18,.09), inset 0 1px 0 rgba(255,255,255,.92);
}

.psp-route-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.psp-route-tabs button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  padding: 10px;
  color: var(--ps-ink);
  text-align: left;
  cursor: pointer;
  transition: transform 260ms var(--ps-ease-out), background 260ms var(--ps-ease-out), border-color 260ms var(--ps-ease-out);
}

.psp-route-tabs button:hover,
.psp-route-tabs button.is-active {
  border-color: rgba(245,194,0,.78);
  background: rgba(245,194,0,.18);
  transform: translateX(3px);
}

.psp-route-tabs button > span {
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: rgba(18,18,18,.06);
}

.psp-route-tabs button.is-active > span {
  background: var(--ps-yellow);
}

.psp-route-tabs svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-route-tabs b,
.psp-route-tabs small {
  display: block;
  min-width: 0;
}

.psp-route-tabs b {
  font-size: 14px;
  line-height: 1.05;
}

.psp-route-tabs small {
  color: var(--ps-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.psp-route-panels {
  position: relative;
  min-height: 610px;
}

.psp-route-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.992);
  transition: opacity 320ms var(--ps-ease-out), transform 380ms var(--ps-ease-out);
}

.psp-route-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.psp-route-panel-head span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(245,194,0,.22);
  padding: 7px 10px;
  color: #3a3100;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-route-panel-head h3 {
  max-width: 760px;
  margin: 12px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-route-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  overflow: auto;
  padding-right: 4px;
}

.psp-route-option {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  min-height: 112px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  padding: 14px;
  text-decoration: none;
  transition: transform 260ms var(--ps-ease-out), border-color 260ms var(--ps-ease-out), background 260ms var(--ps-ease-out);
}

.psp-route-option:hover,
.psp-route-option.is-current {
  border-color: rgba(245,194,0,.76);
  background: rgba(245,194,0,.14);
  transform: translateY(-2px);
}

.psp-route-option-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(18,18,18,.06);
}

.psp-route-option:hover .psp-route-option-icon,
.psp-route-option.is-current .psp-route-option-icon {
  background: var(--ps-yellow);
}

.psp-route-option-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-route-option-copy small,
.psp-route-option-copy strong,
.psp-route-option-copy em {
  display: block;
  min-width: 0;
}

.psp-route-option-copy small {
  color: var(--ps-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-route-option-copy strong {
  margin-top: 4px;
  color: var(--ps-ink);
  font-size: 17px;
  line-height: 1.08;
}

.psp-route-option-copy em {
  margin-top: 6px;
  color: var(--ps-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.psp-route-option > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(18,18,18,.06);
  color: var(--ps-ink);
  font-style: normal;
  font-weight: 950;
}

.psp-faq-section {
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(0, 1fr);
  gap: 18px;
  padding: 82px 0 92px;
}

.psp-faq-head,
.psp-faq-list {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 64px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-faq-head {
  padding: clamp(24px, 4vw, 42px);
}

.psp-faq-head h2 {
  margin: 16px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-faq-list {
  overflow: hidden;
}

.psp-faq-list details {
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(255,255,255,.72);
}

.psp-faq-list details:last-child {
  border-bottom: 0;
}

.psp-faq-list summary {
  position: relative;
  min-height: 76px;
  padding: 24px 62px 22px 24px;
  color: var(--ps-ink);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.psp-faq-list summary::-webkit-details-marker {
  display: none;
}

.psp-faq-list summary:after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(245,194,0,.28);
  color: #111;
  font-size: 22px;
}

.psp-faq-list details[open] summary:after {
  content: "-";
  background: var(--ps-yellow);
}

.psp-faq-list p {
  max-width: 760px;
  margin: -6px 0 0;
  padding: 0 62px 24px 24px;
  color: var(--ps-muted);
  font-size: 15px;
  line-height: 1.62;
}

.psp-visual-section {
  padding: 22px 0 74px;
}

.psp-banner-showcase {
  display: grid;
  gap: 16px;
}

.psp-campaign-banner {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 28px 72px rgba(18,18,18,.12);
  isolation: isolate;
}

.psp-start-banner {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: stretch;
  width: auto;
  min-height: 100dvh;
  margin-right: calc(-1 * max(20px, calc((100vw - 1180px) / 2)));
  margin-left: calc(-1 * max(20px, calc((100vw - 1180px) / 2)));
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: 0 34px 92px rgba(18,18,18,.12);
}

.psp-campaign-banner img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms var(--ps-ease-out);
}

.psp-campaign-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.92) 34%, rgba(255,255,255,.38) 58%, rgba(255,255,255,0) 78%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.16));
  pointer-events: none;
}

.psp-campaign-banner figcaption {
  position: absolute;
  left: clamp(22px, 5vw, 56px);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 520px;
  color: var(--ps-ink);
}

.psp-start-banner figcaption {
  max-width: min(590px, calc(100vw - 560px));
  left: max(24px, calc((100vw - 1180px) / 2));
}

.psp-banner-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(245,194,0,.92);
  padding: 7px 10px;
  color: #171717;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.psp-banner-eyebrow {
  background: rgba(255,255,255,.54);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: inset 0 0 0 1px rgba(18,18,18,.06);
}

.psp-campaign-banner figcaption strong {
  display: block;
  margin-top: 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.psp-start-banner h1 {
  display: block;
  max-width: 540px;
  margin: 16px 0 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(50px, 5.2vw, 76px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-start-banner .psp-banner-points {
  margin-top: 18px;
}

.psp-start-banner .psp-banner-stats {
  margin-top: 24px;
}

.psp-campaign-banner figcaption p {
  margin: 12px 0 0;
  color: #32363d;
  font-size: 18px;
  line-height: 1.48;
}

.psp-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.psp-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 999px;
  background: #111;
  padding: 8px 8px 8px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.psp-banner-cta i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ps-yellow);
  color: #111;
  font-style: normal;
}

.psp-banner-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(18,18,18,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: 0 22px;
  color: var(--ps-ink);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.psp-banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.psp-banner-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1d2128;
  font-size: 13px;
  font-weight: 900;
}

.psp-banner-points svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ps-yellow-strong);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-banner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 500px;
  margin-top: 34px;
}

.psp-banner-stats div {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(18,18,18,.08);
}

.psp-banner-stats b,
.psp-banner-stats small {
  display: block;
}

.psp-banner-stats b {
  color: var(--ps-yellow-strong);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 44px;
  line-height: .9;
}

.psp-banner-stats small {
  margin-top: 7px;
  color: #24302d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.psp-campaign-banner:hover img {
  transform: scale(1.045);
}

.psp-banner-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.psp-mockup-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  margin: 0;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  background: #111;
  box-shadow: 0 24px 58px rgba(18,18,18,.09);
  isolation: isolate;
}

.psp-mockup-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms var(--ps-ease-out);
}

.psp-mockup-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68));
  pointer-events: none;
}

.psp-mockup-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.psp-mockup-card figcaption strong,
.psp-mockup-card figcaption span {
  display: block;
}

.psp-mockup-card figcaption strong {
  font-size: 25px;
  line-height: 1.05;
}

.psp-mockup-card figcaption span {
  max-width: 360px;
  margin-top: 7px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.45;
}

.psp-mockup-card:hover img {
  transform: scale(1.045);
}

.psp-footer {
  padding: 30px 0;
  border-top: 1px solid var(--ps-line);
  color: var(--ps-muted);
  font-size: 13px;
}

.psp-landing-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0 64px;
}

.psp-landing-notes p {
  margin: 0;
  color: #3f454d;
  line-height: 1.65;
}

.psp-nav-section {
  padding: 28px 0 72px;
}

.psp-quick-nav,
.psp-directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.psp-quick-nav {
  margin-top: 18px;
}

.psp-quick-nav a,
.psp-directory-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(18,18,18,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  padding: 9px 13px;
  color: #23262b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.psp-quick-nav a:hover,
.psp-directory-tabs a:hover {
  border-color: rgba(245, 194, 0, .65);
  background: rgba(245, 194, 0, .13);
}

.psp-directory-tabs {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0 0 22px;
  padding: 10px 0;
  background: rgba(250,249,245,.92);
  backdrop-filter: blur(10px);
}

.psp-link-group {
  scroll-margin-top: 72px;
  margin-top: 24px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(18,18,18,.045);
}

.psp-link-group-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}

.psp-link-group-head h3 {
  margin: 0 0 10px;
  color: var(--ps-ink);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: .95;
}

.psp-link-group-head p {
  margin: 0 0 10px;
  color: var(--ps-muted);
  font-size: 16px;
  line-height: 1.45;
}

.psp-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.psp-link-group-featured .psp-link-grid,
.psp-link-group-city .psp-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psp-link-group-format .psp-link-grid,
.psp-link-group-goal .psp-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psp-link-group-compact .psp-link-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.psp-link-card {
  position: relative;
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(18,18,18,.09);
  border-radius: 14px;
  background: #fff;
  padding: 16px 16px 18px;
  color: #222;
  text-decoration: none;
  transition: transform 160ms var(--ps-ease-out), border-color 180ms var(--ps-ease-out), background 180ms var(--ps-ease-out);
}

.psp-link-group-featured .psp-link-card:first-child {
  background: linear-gradient(180deg, #ffe066 0%, #ffc400 100%);
  border-color: rgba(18,18,18,.08);
}

.psp-link-group-compact .psp-link-card {
  min-height: 102px;
  padding: 13px;
}

.psp-link-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(245, 194, 0, .16);
  padding: 5px 8px;
  color: #5e4a00;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.psp-link-icon,
.psp-panel-icon {
  display: grid;
  place-items: center;
  color: var(--ps-ink);
}

.psp-link-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55)),
    radial-gradient(circle at 25% 15%, rgba(245,194,0,.42), transparent 45px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 16px 30px rgba(18,18,18,.06);
  transition: transform 220ms var(--ps-ease-out), background 220ms var(--ps-ease-out);
}

.psp-link-icon svg,
.psp-panel-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psp-panel-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  background: rgba(245,194,0,.14);
}

.psp-panel-icon svg {
  width: 26px;
  height: 26px;
}

.psp-link-group-featured .psp-link-card:first-child .psp-link-tag {
  background: rgba(18,18,18,.12);
  color: #161616;
}

.psp-link-card strong {
  display: block;
  color: var(--ps-ink);
  font-size: 19px;
  line-height: 1.08;
}

.psp-link-card small {
  display: block;
  color: var(--ps-muted);
  font-size: 13px;
  line-height: 1.35;
}

.psp-link-card i {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(18,18,18,.06);
  color: var(--ps-ink);
  font-style: normal;
  font-weight: 900;
}

.psp-link-card:hover,
.psp-link-card.is-active {
  border-color: rgba(245, 194, 0, .7);
  background: rgba(245, 194, 0, .16);
}

.psp-link-card:hover .psp-link-icon,
.psp-link-card.is-active .psp-link-icon {
  transform: translateY(-2px) scale(1.03);
  background:
    linear-gradient(180deg, rgba(255,232,124,.98), rgba(245,194,0,.9)),
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.55), transparent 45px);
}

.psp-link-card:active { transform: scale(.98); }

@media (hover: hover) and (pointer: fine) {
  .psp-check:hover,
  .psp-link-card:hover {
    transform: translateY(-1px);
  }
}

.psp-legal {
  max-width: 860px;
}

.psp-legal h2 {
  margin: 28px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.psp-legal p {
  margin: 0 0 10px;
  color: #3f454d;
  font-size: 15px;
  line-height: 1.75;
}

.psp-legal strong {
  color: var(--ps-ink);
}

.psp-demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: end;
  padding: 130px 0 42px;
}

.psp-demo-summary {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    radial-gradient(circle at 0% 0%, rgba(245,194,0,.2), transparent 260px);
  padding: 26px;
  box-shadow: 0 24px 62px rgba(18,18,18,.08), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-demo-summary span,
.psp-demo-summary strong,
.psp-demo-summary p {
  display: block;
}

.psp-demo-summary span {
  color: var(--ps-muted);
  font-size: 14px;
  font-weight: 900;
}

.psp-demo-summary strong {
  margin-top: 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 68px;
  line-height: .88;
  letter-spacing: 0;
}

.psp-demo-summary p {
  margin: 12px 0 0;
  color: var(--ps-muted);
  line-height: 1.5;
}

.psp-demo-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 18px;
  padding: 24px 0 56px;
}

.psp-demo-main,
.psp-demo-side {
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 62px rgba(18,18,18,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.psp-demo-main {
  overflow: hidden;
}

.psp-demo-card {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(18,18,18,.96), rgba(18,18,18,.84)),
    radial-gradient(circle at 92% 0%, rgba(245,194,0,.34), transparent 280px);
  color: #fff;
}

.psp-demo-card h2 {
  max-width: 620px;
  margin: 14px 0 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 5.8vw, 74px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.psp-demo-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.5;
}

.psp-demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.12);
}

.psp-demo-metrics div {
  background: rgba(255,255,255,.06);
  padding: 18px;
}

.psp-demo-metrics strong,
.psp-demo-metrics span {
  display: block;
}

.psp-demo-metrics strong {
  color: var(--ps-yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 42px;
  line-height: .9;
}

.psp-demo-metrics span {
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.psp-demo-lines {
  padding: 26px;
}

.psp-demo-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18,18,18,.08);
}

.psp-demo-lines span {
  color: var(--ps-muted);
}

.psp-demo-lines b {
  color: var(--ps-ink);
}

.psp-demo-lines .is-total {
  border-bottom: 0;
}

.psp-demo-lines .is-total span,
.psp-demo-lines .is-total b {
  color: var(--ps-ink);
  font-size: 22px;
  font-weight: 950;
}

.psp-demo-payment {
  margin: 0 26px 26px;
  border-radius: 20px;
  background: rgba(245,194,0,.14);
  padding: 22px;
}

.psp-demo-payment h3,
.psp-demo-side h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.08;
}

.psp-demo-payment p,
.psp-demo-side p {
  margin: 0;
  color: var(--ps-muted);
  line-height: 1.58;
}

.psp-demo-payment a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: #111;
  padding: 8px 8px 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.psp-demo-payment i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ps-yellow);
  color: #111;
  font-style: normal;
}

.psp-demo-side {
  padding: 26px;
}

.psp-demo-side ul {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.psp-demo-side li {
  position: relative;
  padding-left: 24px;
  color: #343840;
  line-height: 1.42;
}

.psp-demo-side li:before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ps-yellow);
  box-shadow: 0 0 0 4px rgba(245,194,0,.16);
}

@media (max-width: 920px) {
  .psp-hero,
  .psp-quote-layout,
  .psp-demo-hero,
  .psp-demo-quote,
  .psp-programmatic-primer,
  .psp-route-head,
  .psp-route-shell,
  .psp-package-head,
  .psp-trust-section,
  .psp-assistant-card,
  .psp-photo-reel-head,
  .psp-photo-track,
  .psp-example-section,
  .psp-omni-section,
  .psp-delivery-section,
  .psp-quote-hero-card,
  .psp-faq-section,
  .psp-answer-section {
    grid-template-columns: 1fr;
  }

  .psp-hero {
    padding: 0 max(14px, calc((100vw - 1180px) / 2)) 58px;
  }

  .psp-start-banner {
    grid-column: 1;
    grid-row: 1;
    min-height: 100dvh;
    margin-right: calc(-1 * max(14px, calc((100vw - 1180px) / 2)));
    margin-left: calc(-1 * max(14px, calc((100vw - 1180px) / 2)));
  }

  .psp-start-banner figcaption {
    max-width: min(620px, calc(100vw - 36px));
    left: 18px;
    right: 18px;
  }

  .psp-hero > .psp-form {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: min(82dvh, 760px);
    margin: 0;
    border-radius: 22px;
    overflow: auto;
    transform: translateY(28px) scale(.985);
  }

  body.psp-quote-open .psp-hero > .psp-form {
    transform: translateY(0) scale(1);
  }

  .psp-hero-main > .psp-quick-nav { grid-row: 3; }
  .psp-hero-main > .psp-flow { grid-row: 4; }
  .psp-hero-main > .psp-alert { grid-row: 5; }
  .psp-hero-main > .psp-proof { grid-row: 6; }
  .psp-hero-main > .psp-price-band { grid-row: 7; }
  .psp-hero-main > .psp-price-note { grid-row: 8; }

  .psp-sidebar { position: static; }

  .psp-visual-head,
  .psp-banner-strip,
  .psp-package-grid,
  .psp-guide-hero {
    grid-template-columns: 1fr;
  }

  .psp-assistant-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psp-guide-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psp-omni-copy {
    min-height: auto;
  }

  .psp-primer-copy {
    min-height: auto;
  }

  .psp-primer-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psp-route-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .psp-route-tabs button {
    min-width: 220px;
  }

  .psp-route-panels {
    min-height: 680px;
  }

  .psp-guide-copy,
  .psp-guide-visual {
    min-height: auto;
  }

  .psp-photo-card,
  .psp-photo-card-0,
  .psp-photo-card-3 {
    min-height: 360px;
  }

  .psp-example-numbers {
    grid-template-columns: 1fr;
  }

  .psp-answer-points {
    grid-template-columns: 1fr;
  }

  .psp-quote-includes,
  .psp-quote-next-grid,
  .psp-delivery-grid {
    grid-template-columns: 1fr;
  }

  .psp-example-numbers div,
  .psp-example-numbers div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .psp-example-numbers div:last-child {
    border-bottom: 0;
  }

  .psp-guide-visual {
    min-height: 420px;
  }

  .psp-link-grid,
  .psp-link-group-featured .psp-link-grid,
  .psp-link-group-city .psp-link-grid,
  .psp-link-group-format .psp-link-grid,
  .psp-link-group-goal .psp-link-grid,
  .psp-link-group-compact .psp-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psp-link-group-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .psp-container { width: min(100% - 28px, 1180px); }
  .psp-topbar { width: min(100% - 28px, 1180px); }
  .psp-topbar { align-items: flex-start; }
  .psp-logo img { height: 36px; }
  .psp-proof,
  .psp-section-grid,
  .psp-metrics,
  .psp-quote-strip,
  .psp-price-band,
  .psp-flow,
  .psp-grid,
  .psp-demo-metrics,
  .psp-statgrid,
  .psp-adminbar,
  .psp-landing-notes,
  .psp-guide-benefits,
  .psp-omni-flow,
  .psp-primer-steps,
  .psp-trust-grid,
  .psp-assistant-actions,
  .psp-route-options {
    grid-template-columns: 1fr;
  }
  .psp-quote-strip div { border-right: 0; border-bottom: 1px solid var(--ps-line); }
  .psp-quote-strip div:last-child { border-bottom: 0; }
  .psp-h1 { font-size: 52px; }
  .psp-hero { padding-top: 0; }
  .psp-hero-actions .psp-btn,
  .psp-form .psp-btn { width: 100%; }
  .psp-form { padding: 18px; }
  .psp-demo-hero {
    padding-top: 92px;
  }
  .psp-demo-summary strong {
    font-size: 52px;
  }
  .psp-demo-lines div {
    display: grid;
    gap: 6px;
  }
  .psp-screen-guide { padding-top: 54px; }
  .psp-omni-section {
    padding-top: 28px;
  }
  .psp-omni-copy,
  .psp-omni-flow {
    border-radius: 22px;
  }
  .psp-omni-copy {
    padding: 24px;
  }
  .psp-omni-copy h2 {
    font-size: 42px;
  }
  .psp-omni-copy p {
    font-size: 16px;
  }
  .psp-omni-actions .psp-btn {
    width: 100%;
  }
  .psp-omni-flow article {
    min-height: auto;
  }
  .psp-photo-reel,
  .psp-example-section,
  .psp-answer-section,
  .psp-delivery-section {
    padding-top: 36px;
  }
  .psp-programmatic-primer {
    padding-top: 54px;
  }
  .psp-primer-copy,
  .psp-primer-steps,
  .psp-route-shell,
  .psp-route-panel {
    border-radius: 22px;
  }
  .psp-primer-copy {
    padding: 24px;
  }
  .psp-primer-copy h2 {
    font-size: 46px;
  }
  .psp-primer-copy p {
    font-size: 16px;
  }
  .psp-primer-actions .psp-btn {
    width: 100%;
  }
  .psp-primer-steps article {
    min-height: auto;
  }
  .psp-primer-steps h3 {
    margin-top: 62px;
  }
  .psp-route-selector {
    padding-top: 52px;
  }
  .psp-package-section,
  .psp-trust-section,
  .psp-assistant-section {
    padding-top: 38px;
  }
  .psp-package-head,
  .psp-assistant-card {
    gap: 14px;
  }
  .psp-package-head h2,
  .psp-trust-copy h2,
  .psp-assistant-copy h2 {
    font-size: 42px;
  }
  .psp-package-grid article {
    min-height: auto;
  }
  .psp-package-grid h3 {
    font-size: 52px;
  }
  .psp-route-head {
    margin-bottom: 16px;
  }
  .psp-route-head p {
    font-size: 15px;
  }
  .psp-route-shell {
    padding: 8px;
  }
  .psp-route-panels {
    min-height: 760px;
  }
  .psp-route-panel {
    padding: 16px;
  }
  .psp-route-panel-head h3 {
    font-size: 36px;
  }
  .psp-route-option {
    grid-template-columns: 46px minmax(0, 1fr) 30px;
    min-height: 104px;
    padding: 12px;
  }
  .psp-route-option-icon {
    width: 46px;
    height: 46px;
  }
  .psp-photo-reel-head h2,
  .psp-example-copy h2,
  .psp-faq-head h2,
  .psp-answer-card h2 {
    font-size: 42px;
  }
  .psp-photo-reel-head p,
  .psp-example-copy p {
    font-size: 15px;
  }
  .psp-example-main {
    padding: 22px;
  }
  .psp-example-main h3 {
    font-size: 42px;
  }
  .psp-example-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .psp-answer-card,
  .psp-answer-points article,
  .psp-delivery-head,
  .psp-delivery-grid article,
  .psp-quote-hero-card {
    border-radius: 22px;
  }
  .psp-quote-hero-price {
    min-height: auto;
  }
  .psp-quote-hero-card h2,
  .psp-delivery-head h2 {
    font-size: 42px;
  }
  .psp-quote-main .psp-page-title {
    font-size: 34px;
    line-height: .98;
    overflow-wrap: anywhere;
  }
  .psp-quote-main.psp-container {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }
  .psp-quote-main .psp-row {
    display: block;
  }
  .psp-quote-main .psp-row .psp-btn {
    margin-top: 14px;
  }
  .psp-quote-hero-card,
  .psp-quote-hero-card > *,
  .psp-alert {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .psp-quote-main .psp-panel,
  .psp-quote-main .psp-quote-strip,
  .psp-quote-main .psp-metric,
  .psp-quote-main .psp-quote-hero-card,
  .psp-quote-main .psp-alert {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    overflow: hidden;
  }
  .psp-quote-hero-price {
    width: 100%;
    max-width: 100%;
  }
  .psp-quote-hero-card {
    padding: 22px;
  }
  .psp-quote-hero-card p {
    font-size: 15px;
  }
  .psp-quote-hero-price strong {
    font-size: 44px;
    overflow-wrap: anywhere;
  }
  .psp-answer-card p {
    font-size: 16px;
  }
  .psp-answer-points strong {
    margin-top: 22px;
  }
  .psp-faq-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }
  .psp-faq-head,
  .psp-faq-list {
    border-radius: 22px;
  }
  .psp-faq-list summary {
    min-height: 68px;
    padding: 20px 56px 18px 18px;
    font-size: 16px;
  }
  .psp-faq-list summary:after {
    top: 16px;
    right: 16px;
  }
  .psp-faq-list p {
    padding: 0 18px 22px;
  }
  .psp-guide-copy {
    border-radius: 22px;
    padding: 24px;
  }
  .psp-guide-copy h2 {
    font-size: 46px;
  }
  .psp-guide-copy p {
    font-size: 16px;
  }
  .psp-guide-actions .psp-btn {
    width: 100%;
  }
  .psp-guide-visual {
    min-height: 360px;
    border-radius: 22px;
  }
  .psp-guide-benefits article {
    min-height: auto;
  }
  .psp-top-actions { gap: 7px; }
  .psp-private { display: none; }
  .psp-campaign-banner {
    min-height: 760px;
  }
  .psp-start-banner {
    min-height: 740px;
  }
  .psp-campaign-banner:after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.9) 56%, rgba(255,255,255,.2)),
      linear-gradient(180deg, transparent 52%, rgba(0,0,0,.2));
  }
  .psp-campaign-banner figcaption {
    top: 84px;
    left: 18px;
    right: auto;
    width: min(320px, calc(100vw - 36px));
    max-width: min(320px, calc(100vw - 36px));
    bottom: auto;
    transform: none;
    color: var(--ps-ink);
  }
  .psp-campaign-banner figcaption strong {
    font-size: 44px;
  }
  .psp-start-banner h1 {
    font-size: 36px;
    line-height: .94;
  }
  .psp-campaign-banner figcaption p {
    color: #333840;
    font-size: 15px;
    max-width: 100%;
  }
  .psp-banner-points {
    display: grid;
    gap: 9px;
  }
  .psp-banner-points span {
    color: #20242a;
    min-width: 0;
    line-height: 1.24;
  }
  .psp-banner-stats {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }
  .psp-banner-stats div {
    padding: 10px 12px;
  }
  .psp-banner-stats b {
    font-size: 34px;
  }
  .psp-banner-cta {
    width: min(100%, 280px);
    justify-content: space-between;
  }
  .psp-banner-actions {
    width: min(100%, 280px);
    align-items: stretch;
    flex-direction: column;
  }
  .psp-banner-ghost {
    width: 100%;
    justify-content: center;
  }
  .psp-mockup-card {
    min-height: 230px;
  }
  .psp-hero-preview {
    grid-template-columns: 1fr;
  }
  .psp-hero-preview-copy {
    padding: 8px 8px 12px;
  }
  .psp-directory-tabs {
    position: static;
  }
  .psp-link-grid,
  .psp-link-group-featured .psp-link-grid,
  .psp-link-group-city .psp-link-grid,
  .psp-link-group-format .psp-link-grid,
  .psp-link-group-goal .psp-link-grid,
  .psp-link-group-compact .psp-link-grid {
    grid-template-columns: 1fr;
  }
  .psp-link-card,
  .psp-link-group-compact .psp-link-card {
    min-height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media print {
  .psp-topbar,
  .psp-btn,
  .psp-footer,
  .no-print { display: none !important; }
  .psp-shell { background: #fff; }
  .psp-container { width: 100%; }
  .psp-card,
  .psp-panel,
  .psp-quote-strip,
  .psp-metric { box-shadow: none; }
}
