

/* =============================================================
   Payday Super interactive guide — scoped to .pds-guide-mount.
   Tokens borrow from the storefront's --color-heading / --color-body
   so the tool mirrors body.active-dark-mode / body.active-light-mode
   automatically. Surfaces use neutral translucent overlays so they
   read on either bg. Brand accents (bolt yellow, storm navy) stay
   fixed because they're brand colours, not mode-dependent.
   ============================================================= */

.pds-guide-mount{
  /* Dark-mode defaults (matches storefront's default body palette).
     Light-mode overrides are below under `body.active-light-mode .pds-guide-mount`.
     We can't just point at site CSS vars like --color-heading because they
     stay fixed across modes — the site swaps text colours via element-class
     selectors, not via variable redefinition. So we redefine the tokens here. */
  --ink:           #FFFFFF;
  --ink-2:         #C9CFD6;
  --muted:         rgba(255, 255, 255, 0.55);

  --bg:            transparent;
  --bg-deep:       rgba(255, 255, 255, 0.08);
  --surface:       rgba(255, 255, 255, 0.05);
  --surface-2:     rgba(255, 255, 255, 0.03);

  --line:          rgba(255, 255, 255, 0.14);
  --line-2:        rgba(255, 255, 255, 0.24);
  --line-strong:   rgba(255, 255, 255, 0.40);

  /* Brand accents — fixed in both modes */
  --bolt:          #FBBC05;
  --bolt-soft:     rgba(251, 188, 5, 0.18);
  --bolt-deep:     #B8860B;
  --storm:         #1A3A6B;
  --storm-2:       #102648;
  --good:          #2BB673;
  --good-soft:     rgba(43, 182, 115, 0.15);
  --warn:          #E08A2E;

  --shadow-1:      0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 22px -10px rgba(0, 0, 0, 0.18);
  --shadow-2:      0 1px 0 rgba(0, 0, 0, 0.06), 0 22px 60px -20px rgba(0, 0, 0, 0.30);
  --shadow-lift:   0 2px 0 rgba(0, 0, 0, 0.05), 0 30px 80px -28px rgba(0, 0, 0, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-display: "Days One", "Geist", system-ui, sans-serif;
  --font-sans:    inherit;
  --font-mono:    "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  position: relative;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04), 0 30px 80px -28px rgba(0, 0, 0, 0.25);

  color: var(--ink);
}

/* Light-mode token overrides — kick in when the storefront is in light mode.
   Site signal: body.active-light-mode is added by main.js darkLight(). */
body.active-light-mode .pds-guide-mount{
  --ink:           #181818;
  --ink-2:         #4A4F58;
  --muted:         rgba(0, 0, 0, 0.55);

  --bg-deep:       rgba(0, 0, 0, 0.06);
  --surface:       rgba(255, 255, 255, 0.85);
  --surface-2:     rgba(255, 255, 255, 0.55);

  --line:          rgba(0, 0, 0, 0.10);
  --line-2:        rgba(0, 0, 0, 0.18);
  --line-strong:   rgba(0, 0, 0, 0.32);
}

/* ---- Force descendant text inheritance to win over site's bare-element rules ----
   Site CSS has `h1..h6 { color: var(--color-heading); }`, `p { color: var(--color-body); }`,
   `a { color: var(--color-body); }`. These are bare element selectors at specificity 0,0,1
   that beat inheritance from our wrapper. By scoping `color: inherit` at 0,2,1, descendants
   inherit from whichever ancestor sets a colour (the wrapper, or a styled container like
   .tlCard--now which sets color: #fff). Tool-specific class rules below still win because
   they tie on specificity and load after the site stylesheet. */
.pds-guide-mount h1,
.pds-guide-mount h2,
.pds-guide-mount h3,
.pds-guide-mount h4,
.pds-guide-mount h5,
.pds-guide-mount h6,
.pds-guide-mount p,
.pds-guide-mount a,
.pds-guide-mount li,
.pds-guide-mount span,
.pds-guide-mount small,
.pds-guide-mount label,
.pds-guide-mount figcaption,
.pds-guide-mount strong,
.pds-guide-mount b,
.pds-guide-mount em,
.pds-guide-mount i,
.pds-guide-mount code{ color: inherit; }

.pds-guide-mount,
.pds-guide-mount *{ box-sizing: border-box; }

.pds-guide-mount button,
.pds-guide-mount a,
.pds-guide-mount a:hover,
.pds-guide-mount a:focus,
.pds-guide-mount a:active{
  font: inherit;
  text-decoration: none;
  text-shadow: none;
  filter: none;
  outline: none;
}

.pds-guide-mount button{
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  letter-spacing: normal;
  text-transform: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto;
  height: auto;
  line-height: normal;
  font-weight: 400;
  border-radius: 0;
  box-shadow: none;
}

.pds-guide-mount button:hover,
.pds-guide-mount button:focus,
.pds-guide-mount button:active{
  background: none;
  text-decoration: none;
  text-shadow: none;
  filter: none;
  box-shadow: none;
}

.pds-guide-mount input,
.pds-guide-mount textarea,
.pds-guide-mount select{
  font: inherit;
  color: inherit;
  width: auto;
  height: auto;
  padding: 0;
  transition: none;
}

.pds-guide-mount h1,
.pds-guide-mount h2,
.pds-guide-mount h3,
.pds-guide-mount h4,
.pds-guide-mount h5,
.pds-guide-mount h6,
.pds-guide-mount p,
.pds-guide-mount figure,
.pds-guide-mount figcaption{ margin: 0; padding: 0; }

.pds-guide-mount ul,
.pds-guide-mount ol{ margin: 0; padding: 0; list-style: none; }

.pds-guide-mount svg{ display: inline-block; vertical-align: middle; }

.pds-guide-mount .app{
  min-height: clamp(720px, 88vh, 980px);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1100px 700px at 110% -10%, rgba(255, 200, 61, 0.22), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(27, 58, 107, 0.10), transparent 60%),
    var(--bg);
}

.pds-guide-mount .app__topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px 0;
  gap: 18px;
}

.pds-guide-mount .brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 14px;
}

.pds-guide-mount .brand__mark{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--storm);
  display: grid;
  place-items: center;
  color: var(--bolt);
}

.pds-guide-mount .brand__mark svg{ width: 16px; height: 16px; }

.pds-guide-mount .brand__divider{
  width: 1px;
  height: 14px;
  background: var(--line-strong);
  margin: 0 4px;
}

.pds-guide-mount .brand__sub{
  color: var(--muted);
  font-weight: 500;
}

.pds-guide-mount .topbar__path{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.pds-guide-mount .topbar__path b{ color: var(--ink); font-weight: 600; }

.pds-guide-mount .topbar__crumb{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 6px;
  border-radius: 7px;
  color: var(--muted);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.pds-guide-mount .topbar__crumb:hover,
.pds-guide-mount .topbar__crumb:focus-visible{
  background: rgba(127, 127, 127, 0.10);
  color: var(--ink);
}

.pds-guide-mount .topbar__crumb:focus-visible{
  outline: 2px solid var(--bolt);
  outline-offset: 2px;
}

.pds-guide-mount .topbar__crumb--current{
  color: var(--ink);
  font-weight: 700;
}

.pds-guide-mount .topbar__sep{
  color: var(--muted);
  opacity: 0.7;
}

.pds-guide-mount .topbar__actions{
  display: flex;
  align-items: center;
  gap: 6px;
}

.pds-guide-mount .rail{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 24px 36px 0;
}

.pds-guide-mount .rail__seg{
  height: 4px;
  flex: 1;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.pds-guide-mount .rail__seg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--storm);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pds-guide-mount .rail__seg--done::after{ transform: scaleX(1); }
.pds-guide-mount .rail__seg--active::after{ transform: scaleX(0.55); background: var(--bolt); }

.pds-guide-mount .stage-wrap{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 36px 60px;
  min-height: 0;
  gap: 0;
}

.pds-guide-mount .stage{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  will-change: transform, opacity;
  transition: opacity 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.38s ease;
}

.pds-guide-mount .stage--enter-init{
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(2px);
}

.pds-guide-mount .stage--enter{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.pds-guide-mount .stage--exit{
  opacity: 0;
  transform: translateY(-14px) scale(0.99);
  filter: blur(2px);
}

.pds-guide-mount .step__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.pds-guide-mount .step__eyebrow .dot{
  width: 6px;
  height: 6px;
  background: var(--bolt);
  border-radius: 50%;
}

.pds-guide-mount .step__title{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  line-height: 1.05;
  text-wrap: balance;
}

.pds-guide-mount .step__title--xxl{ font-size: clamp(40px, 5.4vw, 76px); }
.pds-guide-mount .step__title--xl{ font-size: clamp(30px, 3.6vw, 48px); }
.pds-guide-mount .step__title--l{ font-size: clamp(24px, 2.4vw, 34px); }

.pds-guide-mount .step__title .serif{
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.pds-guide-mount .step__subtitle{
  color: var(--ink-2);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  max-width: 64ch;
  text-wrap: pretty;
}

.pds-guide-mount .step__nav{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.pds-guide-mount .btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  background: transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pds-guide-mount .btn:hover{ transform: translateY(-1px); }
.pds-guide-mount .btn:active{ transform: translateY(0); }

.pds-guide-mount .btn--primary{
  background: var(--storm);
  color: var(--bolt);
  padding: 14px 22px;
  font-weight: 600;
}

.pds-guide-mount .btn--primary:hover{
  background: var(--storm-2);
  box-shadow: var(--shadow-2);
}

.pds-guide-mount .btn--ghost{ color: var(--ink-2); }
.pds-guide-mount .btn--ghost:hover{ background: rgba(127,127,127,0.10); }

.pds-guide-mount .btn--quiet{
  color: var(--muted);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
}
.pds-guide-mount .btn--quiet:hover{ color: var(--ink); background: rgba(127,127,127,0.10); }

.pds-guide-mount .btn--bolt{
  background: var(--bolt);
  color: var(--storm);
  font-weight: 600;
}
.pds-guide-mount .btn--bolt:hover{ background: var(--bolt-deep); color: #fff; }

.pds-guide-mount .btn .arr{
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.pds-guide-mount .btn:hover .arr{ transform: translateX(3px); }

.pds-guide-mount .options{
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.pds-guide-mount .options--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pds-guide-mount .options--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 800px) {
  .pds-guide-mount .options--2,
.pds-guide-mount .options--3{ grid-template-columns: 1fr; }
}

.pds-guide-mount .opt{
  position: relative;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.pds-guide-mount .opt:hover{
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.pds-guide-mount .opt:focus-visible{
  outline: 2px solid var(--bolt);
  outline-offset: 3px;
}

.pds-guide-mount .opt__icon{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  color: var(--ink);
}

.pds-guide-mount .opt__icon svg{ width: 22px; height: 22px; }

.pds-guide-mount .opt__body{ min-width: 0; flex: 1; }

.pds-guide-mount .opt__label{
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.pds-guide-mount .opt__hint{
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.pds-guide-mount .opt__chip{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--muted);
}
.pds-guide-mount .opt__chip--good{ color: var(--good); border-color: var(--good); background: var(--good-soft); }
.pds-guide-mount .opt__chip--bolt{ color: var(--bolt-deep); border-color: var(--bolt-deep); background: var(--bolt-soft); }

.pds-guide-mount .opt__cta{
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted);
  transition: transform 0.18s ease, color 0.18s ease;
}
.pds-guide-mount .opt:hover .opt__cta{ transform: translateX(3px); color: var(--ink); }

.pds-guide-mount .opt--selected{
  border-color: var(--ink);
  box-shadow: var(--shadow-1);
}

.pds-guide-mount .split{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 980px) {
  .pds-guide-mount .split{ grid-template-columns: 1fr; gap: 28px; }
}

.pds-guide-mount .split__lede{ min-width: 0; }

.pds-guide-mount .callouts{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.pds-guide-mount .callout{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  line-height: 1.5;
}

.pds-guide-mount .callout__num{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--storm);
  color: var(--bolt);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  margin-top: 1px;
}

.pds-guide-mount .callout b{ font-weight: 600; }

.pds-guide-mount .callout--note{
  background: var(--bolt-soft);
  border-color: rgba(201, 136, 0, 0.35);
}
.pds-guide-mount .callout--note .callout__num{ background: var(--bolt-deep); color: #fff; }

.pds-guide-mount .lpApp{
  background: #EEEAE0;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  font-size: 12.5px;
  color: var(--storm);
  position: relative;
}

.pds-guide-mount .lpApp__bar{
  background: linear-gradient(180deg, #25395e, #1B3055);
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.pds-guide-mount .lpApp__bar .dots{
  display: flex;
  gap: 6px;
  margin-right: 8px;
}
.pds-guide-mount .lpApp__bar .dots span{
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.pds-guide-mount .lpApp__bar .dots span:nth-child(1){ background: #FF5F57; }
.pds-guide-mount .lpApp__bar .dots span:nth-child(2){ background: #FEBC2E; }
.pds-guide-mount .lpApp__bar .dots span:nth-child(3){ background: #28C840; }

.pds-guide-mount .lpApp__title{ font-weight: 500; opacity: 0.9; }
.pds-guide-mount .lpApp__menu{
  display: flex;
  gap: 14px;
  margin-left: auto;
  opacity: 0.75;
  font-size: 11.5px;
}

.pds-guide-mount .lpApp__body{
  display: grid;
  grid-template-columns: 184px 1fr;
  min-height: 360px;
}

.pds-guide-mount .lpNav{
  background: #D8D3C5;
  border-right: 1px solid #BFB9A8;
  padding: 10px 6px;
  font-size: 12px;
}

.pds-guide-mount .lpNav__group{
  padding: 8px 6px 6px;
  color: #4F5260;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.pds-guide-mount .lpNav__item{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #1F2237;
  cursor: default;
  position: relative;
}

.pds-guide-mount .lpNav__item--active{
  background: #FFC83D;
  color: var(--storm);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.pds-guide-mount .lpNav__item--sub{ padding-left: 24px; color: #3D4156; }

.pds-guide-mount .lpNav__item .lpNav__caret{
  font-size: 9px;
  color: #6E7187;
}

.pds-guide-mount .lpMain{
  background: #F6F2E7;
  padding: 16px 18px;
  min-width: 0;
  overflow: hidden;
}

.pds-guide-mount .lpMain__crumb{
  font-size: 11px;
  color: #6E7187;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.pds-guide-mount .lpMain__h{
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pds-guide-mount .lpToolbar{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 10px;
  border-bottom: 1px solid #DCD5BF;
  margin-bottom: 12px;
}

.pds-guide-mount .lpBtn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #FBF8EE;
  border: 1px solid #C8C0AA;
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--storm);
  font-weight: 500;
}
.pds-guide-mount .lpBtn--primary{ background: #FFC83D; border-color: #C98800; }
.pds-guide-mount .lpBtn--pulse{
  background: #FFC83D;
  border-color: #C98800;
  box-shadow: 0 0 0 0 rgba(255, 200, 61, 0.7);
  animation: lpPulse 2.4s ease-out infinite;
}
@keyframes lpPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 200, 61, 0.7); }
  60% { box-shadow: 0 0 0 14px rgba(255, 200, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 200, 61, 0); }
}
.pds-guide-mount .lpBtn--ghost{ background: transparent; border-color: transparent; color: #3F4357; }

.pds-guide-mount .lpTbl{
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  background: #FFFEF8;
  border: 1px solid #DCD5BF;
  border-radius: 6px;
  overflow: hidden;
}

.pds-guide-mount .lpTbl th{
  text-align: left;
  background: #ECE5D0;
  color: #3F4357;
  font-weight: 600;
  padding: 6px 10px;
  border-bottom: 1px solid #C8C0AA;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pds-guide-mount .lpTbl td{
  padding: 7px 10px;
  border-bottom: 1px solid #ECE5D0;
}

.pds-guide-mount .lpTbl tr:last-child td{ border-bottom: none; }
.pds-guide-mount .lpTbl tr.row--sel td{ background: #FFF6D3; }
.pds-guide-mount .lpTbl tr:hover td{ background: #FAF4DC; }

.pds-guide-mount .lpFooter{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: #4F5260;
}

.pds-guide-mount .lpField{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #3F4357;
}
.pds-guide-mount .lpField input[type="date"],
.pds-guide-mount .lpField input[type="text"],
.pds-guide-mount .lpField select{
  border: 1px solid #C8C0AA;
  background: #FBF8EE;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11.5px;
  color: var(--storm);
}

.pds-guide-mount .lpHi{
  background: #FFC83D;
  color: var(--storm);
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 600;
}

.pds-guide-mount .lpDialog{
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 48, 0.35);
  display: grid;
  place-items: center;
  backdrop-filter: blur(2px);
  animation: fadein 0.3s ease;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.pds-guide-mount .lpDialog__box{
  background: #F6F2E7;
  border: 1px solid #BFB9A8;
  border-radius: 8px;
  width: min(440px, 84%);
  padding: 16px;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.45);
}

.pds-guide-mount .summary{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 34px 28px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.pds-guide-mount .summary__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.pds-guide-mount .summary__h{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.1;
}

.pds-guide-mount .summary__h .serif{
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

.pds-guide-mount .summary__meta{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pds-guide-mount .steps{
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pds-guide-mount .steps__row{
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.pds-guide-mount .steps__num{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: -2px;
}

.pds-guide-mount .steps__title{
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.pds-guide-mount .steps__desc{
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 60ch;
}

.pds-guide-mount .steps__tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.pds-guide-mount .summary__answers{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 22px;
}

.pds-guide-mount .chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
}
.pds-guide-mount .chip b{ font-weight: 600; color: var(--ink); }

.pds-guide-mount .hero{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .pds-guide-mount .hero{ grid-template-columns: 1fr; gap: 28px; } }

.pds-guide-mount .hero__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.pds-guide-mount .hero__kicker .bolt{
  width: 14px; height: 14px; color: var(--bolt-deep);
}
.pds-guide-mount .hero__kicker b{ font-weight: 600; color: var(--ink); }

.pds-guide-mount .hero__h{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 92px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0 0 22px;
}
.pds-guide-mount .hero__h .serif{
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
}

.pds-guide-mount .hero__body{
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 32px;
}

.pds-guide-mount .hero__cta{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.pds-guide-mount .hero__meta{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 22px;
}

.pds-guide-mount .heroFigure{
  position: relative;
  aspect-ratio: 5/5;
  display: grid;
  place-items: center;
}
.pds-guide-mount .heroFigure__plate{
  position: absolute;
  inset: 6% 8%;
  background: radial-gradient(circle at 30% 30%, #FFC83D, #E0A800 70%, #C98800);
  border-radius: 50%;
  box-shadow: var(--shadow-lift), inset 0 -30px 80px rgba(0,0,0,0.18);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(-6px) rotate(-1deg); }
  50% { transform: translateY(8px) rotate(1deg); }
}
.pds-guide-mount .heroFigure__bolt{
  position: relative;
  z-index: 2;
  width: 38%;
  color: var(--storm);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
.pds-guide-mount .heroFigure__ring{
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(127,127,127,0.32);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.pds-guide-mount .heroFigure__ring--2{
  inset: 10%;
  border-color: rgba(127,127,127,0.22);
  animation-direction: reverse;
  animation-duration: 80s;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pds-guide-mount .heroFigure__tag{
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow-1);
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pds-guide-mount .heroFigure__tag b{ font-weight: 600; color: var(--ink); }
.pds-guide-mount .heroFigure__tag--1{ top: 8%; left: -8%; animation: floaty 6s ease-in-out infinite; }
.pds-guide-mount .heroFigure__tag--2{ bottom: 12%; right: -4%; animation: floaty 7s ease-in-out infinite reverse; }
.pds-guide-mount .heroFigure__tag--3{ bottom: 6%; left: 10%; animation: floaty 8s ease-in-out infinite; }

.pds-guide-mount .timeline{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 800px) { .pds-guide-mount .timeline{ grid-template-columns: 1fr; } }

.pds-guide-mount .tlCard{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.pds-guide-mount .tlCard--was{ background: var(--bg-deep); border-color: var(--line-2); }
.pds-guide-mount .tlCard--now{
  background: linear-gradient(180deg, var(--storm) 0%, var(--storm-2) 100%);
  color: #fff;
  border-color: var(--storm-2);
}

.pds-guide-mount .tlCard--now .tlCard__h,
.pds-guide-mount .tlCard--now .tlCard__body,
.pds-guide-mount .tlCard--now .tlCard__big,
.pds-guide-mount .tlCard--now .tlCard__small,
.pds-guide-mount .tlCard--now b,
.pds-guide-mount .tlCard--now strong{
  color: #fff !important;
}

.pds-guide-mount .tlCard__tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pds-guide-mount .tlCard--now .tlCard__tag{ color: var(--bolt) !important; }

.pds-guide-mount .tlCard__h{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  line-height: 1.1;
}

.pds-guide-mount .tlCard__body{ font-size: 14.5px; line-height: 1.55; opacity: 0.85; }

.pds-guide-mount .tlCard__big{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  margin-top: 22px;
  letter-spacing: -0.01em;
}

.pds-guide-mount .tlCard__small{ font-size: 12px; opacity: 0.7; margin-top: 4px; }

.pds-guide-mount .bankGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 800px) { .pds-guide-mount .bankGrid{ grid-template-columns: 1fr; } }

.pds-guide-mount .bank{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.pds-guide-mount .bank:hover{ transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--shadow-1); }

.pds-guide-mount .bank__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.pds-guide-mount .bank__name{
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pds-guide-mount .bank__speed{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--muted);
}
.pds-guide-mount .bank__speed--fast{ color: var(--good); border-color: var(--good); background: var(--good-soft); }
.pds-guide-mount .bank__speed--zap{ color: var(--bolt-deep); border-color: var(--bolt-deep); background: var(--bolt-soft); }

.pds-guide-mount .bank__desc{ font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

.pds-guide-mount .bank__fit{
  margin-top: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pds-guide-mount .bank__fit span{
  font-size: 11.5px;
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.pds-guide-mount .kbd-hint{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0.7;
}
.pds-guide-mount .kbd-hint kbd{
  border: 1px solid var(--line-2);
  background: var(--surface);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: inherit;
}

.pds-guide-mount .spark{ display: inline-block; color: var(--bolt-deep); }

.pds-guide-mount .tag-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pds-guide-mount .tag-row .tag{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px 10px;
}

@media print {
  .pds-guide-mount{ background: #fff; box-shadow: none; }
  .pds-guide-mount .app__topbar,
.pds-guide-mount .rail,
.pds-guide-mount .kbd-hint,
.pds-guide-mount .step__nav,
.pds-guide-mount .summary__head .btn,
.pds-guide-mount .constel{ display: none !important; }
  .pds-guide-mount .summary{ box-shadow: none; border: none; }
  .pds-guide-mount .stage{ transform: none !important; opacity: 1 !important; filter: none !important; }
}

.pds-guide-mount .app--map .stage-wrap{ padding: 28px 36px 60px; }
.pds-guide-mount .app--map .rail{ display: none; }

.pds-guide-mount .constelWrap{
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pds-guide-mount .constel{
  position: relative;
  width: 100%;
  height: clamp(560px, 70vh, 760px);
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition:
    height 720ms cubic-bezier(0.6, 0.0, 0.2, 1),
    border-radius 720ms cubic-bezier(0.6, 0.0, 0.2, 1),
    box-shadow 400ms ease;
  box-shadow: var(--shadow-1);
}

.pds-guide-mount .app--focused .constel{
  height: 132px;
  border-radius: 16px;
}

.pds-guide-mount .constel__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pds-guide-mount .constel__grid{
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(127, 127, 127, 0.32) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 65% at center, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at center, black 30%, transparent 90%);
  opacity: 0.7;
  transition: opacity 400ms ease;
}

.pds-guide-mount .app--focused .constel__grid{ opacity: 0.25; }

.pds-guide-mount .constel__glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  transition: opacity 600ms;
  pointer-events: none;
}
.pds-guide-mount .constel__glow--a{
  left: -10%; top: -20%;
  width: 50%; height: 60%;
  background: radial-gradient(circle, rgba(251, 188, 5, 0.40), transparent 70%);
}
.pds-guide-mount .constel__glow--b{
  right: -10%; bottom: -20%;
  width: 55%; height: 60%;
  background: radial-gradient(circle, rgba(127, 127, 127, 0.22), transparent 70%);
}
.pds-guide-mount .app--focused .constel__glow{ opacity: 0.18; }

.pds-guide-mount .constel__edges{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.pds-guide-mount .constel__edge{
  fill: none;
  stroke: rgba(127, 127, 127, 0.38);
  stroke-width: 0.22;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-dasharray: 0.6 1.2;
  transition: stroke 300ms, opacity 400ms, stroke-width 300ms;
  animation: edgeDrift 18s linear infinite;
}
@keyframes edgeDrift {
  to { stroke-dashoffset: -40; }
}

.pds-guide-mount .constel__edge--hi{
  stroke: var(--bolt-deep);
  stroke-width: 0.4;
  opacity: 1;
}
.pds-guide-mount .constel__edge--dim{ opacity: 0.18; }

.pds-guide-mount .app--focused .constel__edges{ opacity: 0; transition-delay: 0ms; transition-duration: 250ms; }

.pds-guide-mount .cnode{
  position: absolute;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 0;
  text-align: left;
  cursor: pointer;
  z-index: 2;
  box-shadow:
    0 1px 0 rgba(17, 32, 61, 0.05),
    0 8px 24px -16px rgba(17, 32, 61, 0.30);
  transition:
    left 720ms cubic-bezier(0.6, 0.0, 0.2, 1),
    top 720ms cubic-bezier(0.6, 0.0, 0.2, 1),
    width 720ms cubic-bezier(0.6, 0.0, 0.2, 1),
    height 720ms cubic-bezier(0.6, 0.0, 0.2, 1),
    opacity 320ms ease,
    filter 320ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
  overflow: hidden;
  font-family: inherit;
  color: inherit;
}

.pds-guide-mount .cnode:hover:not(.cnode--focused):not(.cnode--dim){
  border-color: var(--storm);
  box-shadow:
    0 2px 0 rgba(17, 32, 61, 0.06),
    0 28px 60px -28px rgba(17, 32, 61, 0.45),
    0 0 0 6px rgba(251, 188, 5, 0.12);
}

.pds-guide-mount .cnode:focus-visible{
  outline: 3px solid var(--bolt);
  outline-offset: 4px;
}

.pds-guide-mount .cnode__inner{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px 14px;
  gap: 10px;
  z-index: 2;
}

.pds-guide-mount .cnode__icon{
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--storm);
  color: var(--bolt);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 280ms, color 280ms;
}

.pds-guide-mount .cnode:hover .cnode__icon{
  background: var(--bolt);
  color: var(--storm);
}

.pds-guide-mount .cnode__body{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  min-width: 0;
}

.pds-guide-mount .cnode__title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.pds-guide-mount .cnode__hint{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.pds-guide-mount .cnode__accent{
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bolt);
  color: var(--ink);
  font-weight: 600;
}

.pds-guide-mount .cnode--xs .cnode__accent,
.pds-guide-mount .cnode--sm .cnode__accent{
  position: static;
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
}

.pds-guide-mount .cnode__cta{
  position: absolute;
  bottom: 14px;
  right: 14px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 220ms, transform 220ms, color 220ms;
}
.pds-guide-mount .cnode:hover .cnode__cta{ opacity: 1; transform: translateX(0); color: var(--ink); }

.pds-guide-mount .cnode__glow{
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: 1;
  background: radial-gradient(circle at 50% 100%, rgba(251, 188, 5, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 280ms;
  pointer-events: none;
}
.pds-guide-mount .cnode:hover .cnode__glow{ opacity: 1; }

.pds-guide-mount .cnode--xs .cnode__title{ font-size: 14px; }
.pds-guide-mount .cnode--xs .cnode__hint{ font-size: 11.5px; }
.pds-guide-mount .cnode--xs .cnode__icon{ width: 30px; height: 30px; border-radius: 8px; }
.pds-guide-mount .cnode--xs .cnode__inner{ padding: 10px 14px; flex-direction: row; align-items: center; gap: 12px; }
.pds-guide-mount .cnode--xs .cnode__body{ margin-top: 0; }

.pds-guide-mount .cnode--sm .cnode__title{ font-size: 16px; }
.pds-guide-mount .cnode--sm .cnode__icon{ width: 32px; height: 32px; }
.pds-guide-mount .cnode--sm .cnode__inner{ padding: 12px 14px; flex-direction: row; align-items: center; gap: 12px; }
.pds-guide-mount .cnode--sm .cnode__body{ margin-top: 0; }

.pds-guide-mount .cnode--md .cnode__title{ font-size: 17px; }

.pds-guide-mount .cnode--lg .cnode__title{ font-size: 20px; }
.pds-guide-mount .cnode--lg .cnode__icon{ width: 44px; height: 44px; border-radius: 13px; }

.pds-guide-mount .cnode--focused{
  z-index: 30;
  cursor: default;
  border-color: var(--ink);
  box-shadow: 0 4px 0 rgba(17, 32, 61, 0.06), 0 30px 80px -30px rgba(17, 32, 61, 0.5);
}
.pds-guide-mount .cnode--focused .cnode__inner{
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 22px;
  gap: 18px;
}
.pds-guide-mount .cnode--focused .cnode__icon{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bolt);
  color: var(--storm);
}
.pds-guide-mount .cnode--focused .cnode__icon svg{ width: 28px !important; height: 28px !important; }
.pds-guide-mount .cnode--focused .cnode__body{ margin-top: 0; }
.pds-guide-mount .cnode--focused .cnode__title{ font-size: 26px; }
.pds-guide-mount .cnode--focused .cnode__hint{ font-size: 14px; max-width: 60ch; }
.pds-guide-mount .cnode--focused .cnode__accent{
  position: static;
  margin-left: auto;
  align-self: center;
}
.pds-guide-mount .cnode--focused .cnode__cta{ display: none; }

.pds-guide-mount .cnode--dim{
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
  transform: scale(0.85);
  transform-origin: center;
}

@keyframes cnodeFloat1 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-3px) translateX(2px); } }
@keyframes cnodeFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@keyframes cnodeFloat3 { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-2px) translateX(-2px); } }

.pds-guide-mount .app--map .cnode--float-1{ animation: cnodeFloat1 7s ease-in-out infinite; }
.pds-guide-mount .app--map .cnode--float-2{ animation: cnodeFloat2 8.5s ease-in-out infinite; }
.pds-guide-mount .app--map .cnode--float-3{ animation: cnodeFloat3 9.5s ease-in-out infinite; }

.pds-guide-mount .app--map .cnode:hover.cnode--float-1,
.pds-guide-mount .app--map .cnode:hover.cnode--float-2,
.pds-guide-mount .app--map .cnode:hover.cnode--float-3{ animation: none; transform: translateY(-4px); }

.pds-guide-mount .mapIntro{
  text-align: center;
  margin: 12px auto 22px;
  max-width: 760px;
}
.pds-guide-mount .mapIntro__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 14px;
}
.pds-guide-mount .mapIntro__eyebrow .bolt{
  width: 12px; height: 12px; color: var(--bolt-deep);
}
.pds-guide-mount .mapIntro__h{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  letter-spacing: -0.015em;
  line-height: 1.0;
  margin: 0 0 12px;
}
.pds-guide-mount .mapIntro__sub{
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto;
}

.pds-guide-mount .app--focused .constelWrap{
  flex: none;
}
.pds-guide-mount .app--focused .stage-wrap{
  flex: 1;
  padding-top: 28px;
}

.pds-guide-mount .app--focused .mapIntro{ display: none; }

.pds-guide-mount .brand{ font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }
.pds-guide-mount .brand__sub{ font-family: var(--font-sans); }

.pds-guide-mount .lpShot{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  background: #FFFFFF;
  position: relative;
}

.pds-guide-mount .lpShot img{
  display: block;
  width: 100%;
  height: auto;
  background: #F5F7FA;
}

.pds-guide-mount .lpShot__cap{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

/* Click-to-zoom: the entire image area is a button. The hover hint sits in
   the top-right corner — visible at low opacity on hover/focus, hidden on
   touch (no hover capability). */
.pds-guide-mount .lpShot--clickable .lpShot__btn{
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
  position: relative;
  line-height: 0;
}
.pds-guide-mount .lpShot--clickable .lpShot__btn img{
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 220ms ease;
}
.pds-guide-mount .lpShot--clickable .lpShot__btn:hover img,
.pds-guide-mount .lpShot--clickable .lpShot__btn:focus-visible img{
  transform: scale(1.015);
  filter: brightness(0.96);
}
.pds-guide-mount .lpShot--clickable .lpShot__btn:focus-visible{
  outline: 3px solid var(--bolt);
  outline-offset: -3px;
}
.pds-guide-mount .lpShot__zoomHint{
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  background: rgba(17, 32, 61, 0.78);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 200ms ease, transform 200ms ease;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.pds-guide-mount .lpShot--clickable .lpShot__btn:hover .lpShot__zoomHint,
.pds-guide-mount .lpShot--clickable .lpShot__btn:focus-visible .lpShot__zoomHint{
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .pds-guide-mount .lpShot__zoomHint{ display: none; }
}

/* Full-screen lightbox overlay — fixed position, sits above the storefront
   chrome via a very high z-index. Click outside or the X to close; Escape
   handled in JS. */
.pds-guide-mount .lpLightbox,
.lpLightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 16, 32, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 4vh 4vw;
  animation: lpLightboxIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: zoom-out;
}
@keyframes lpLightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lpLightbox__frame{
  margin: 0;
  max-width: min(1400px, 92vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -10px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(255, 255, 255, 0.04);
  background: #0E1830;
  cursor: default;
  animation: lpLightboxFrameIn 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes lpLightboxFrameIn {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lpLightbox__frame img{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92vh - 44px);
  object-fit: contain;
  background: #fff;
}
.lpLightbox__cap{
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.lpLightbox__close{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  z-index: 100000;
}
.lpLightbox__close:hover{
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}
.lpLightbox__close:focus-visible{
  outline: 3px solid var(--bolt);
  outline-offset: 3px;
}
@media (max-width: 700px) {
  .lpLightbox{ padding: 2vh 2vw; }
  .lpLightbox__frame{ max-width: 98vw; }
  .lpLightbox__close{ top: 10px; right: 10px; width: 36px; height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .lpLightbox,
  .lpLightbox__frame{ animation: none; }
}

.pds-guide-mount .link{
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: transparent;
  border: 0;
  padding: 0 1px;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1.5px dashed var(--line-strong);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  text-align: inherit;
  font-weight: 600;
}
.pds-guide-mount .link:hover{
  color: var(--storm);
  border-bottom-style: solid;
  border-bottom-color: var(--bolt-deep);
}
.pds-guide-mount .link__arr{
  font-size: 0.86em;
  opacity: 0.65;
  margin-left: 1px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.pds-guide-mount .link:hover .link__arr{ opacity: 1; transform: translateX(2px); }

.pds-guide-mount .link--quiet{
  font-weight: 500;
  border-bottom-color: var(--line-2);
  color: var(--ink-2);
}

.pds-guide-mount .moreLinks{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--line-2);
}

.pds-guide-mount .moreLinks__head{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pds-guide-mount .moreLinks__head::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bolt);
}

.pds-guide-mount .moreLinks__row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.pds-guide-mount .moreLink{
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px 10px 12px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font: inherit;
  color: inherit;
}
.pds-guide-mount .moreLink:hover{
  transform: translateY(-2px);
  border-color: var(--storm);
  box-shadow: var(--shadow-1);
}
.pds-guide-mount .moreLink__icon{
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--bolt-soft);
  color: var(--bolt-deep);
  display: grid; place-items: center;
}
.pds-guide-mount .moreLink__body{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.pds-guide-mount .moreLink__label{
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.pds-guide-mount .moreLink__hint{
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}
.pds-guide-mount .moreLink__arr{
  color: var(--muted);
  font-size: 18px;
  margin-left: auto;
  transition: transform 0.15s ease, color 0.15s ease;
}
.pds-guide-mount .moreLink:hover .moreLink__arr{ color: var(--ink); transform: translateX(3px); }

.pds-guide-mount .summary__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.pds-guide-mount .opt__label{
  flex-wrap: wrap;
  padding-right: 28px;
}

@media (max-width: 991px) {
  .payday-super-hero .section-title .title{
    font-size: clamp(34px, 8vw, 56px);
    line-height: 1.08;
  }

  .payday-super-hero .button-group .btn-default,
  .payday-super-cta .btn-default{
    min-height: 48px;
    justify-content: center;
  }

  .pds-guide-mount{
    border-radius: 16px;
  }

  .pds-guide-mount .app{
    min-height: 0;
  }

  .pds-guide-mount .app__topbar{
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 22px 0;
    gap: 10px 14px;
  }

  .pds-guide-mount .brand{
    flex: 1 1 260px;
    min-width: 0;
  }

  .pds-guide-mount .topbar__path{
    flex: 1 1 100%;
    order: 3;
    line-height: 1.45;
  }

  .pds-guide-mount .topbar__actions{
    margin-left: auto;
  }

  .pds-guide-mount .rail{
    padding: 18px 22px 0;
  }

  .pds-guide-mount .stage-wrap,
  .pds-guide-mount .app--map .stage-wrap{
    padding: 22px 22px 38px;
  }

  .pds-guide-mount .step__title--xxl{ font-size: clamp(36px, 8vw, 56px); }
  .pds-guide-mount .step__title--xl{ font-size: clamp(28px, 6vw, 42px); }
  .pds-guide-mount .step__title--l{ font-size: clamp(24px, 5vw, 32px); }

  .pds-guide-mount .split{
    gap: 24px;
  }

  .pds-guide-mount .summary{
    padding: 26px 24px 24px;
  }

  .pds-guide-mount .summary__head{
    flex-direction: column;
    gap: 16px;
  }

  .pds-guide-mount .summary__actions{
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .payday-super-hero{
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .payday-super-hero .button-group{
    width: 100%;
  }

  .payday-super-hero .button-group .btn-default,
  .payday-super-cta .btn-default{
    width: 100%;
  }

  .pds-guide-mount{
    margin-left: -2px;
    margin-right: -2px;
    border-radius: 14px;
  }

  .pds-guide-mount .app{
    background:
      radial-gradient(520px 300px at 100% 0%, rgba(255, 200, 61, 0.18), transparent 64%),
      radial-gradient(420px 280px at 0% 100%, rgba(27, 58, 107, 0.10), transparent 68%),
      var(--bg);
  }

  .pds-guide-mount .app__topbar{
    padding: 16px 16px 0;
  }

  .pds-guide-mount .brand{
    gap: 8px;
    font-size: 13px;
  }

  .pds-guide-mount .brand__divider,
  .pds-guide-mount .brand__sub{
    display: none;
  }

  .pds-guide-mount .topbar__path{
    font-size: 11px;
  }

  .pds-guide-mount .topbar__actions{
    width: 100%;
    margin-left: 0;
  }

  .pds-guide-mount .topbar__actions .btn{
    flex: 1;
    justify-content: center;
  }

  .pds-guide-mount .rail{
    padding: 14px 16px 0;
    gap: 4px;
  }

  .pds-guide-mount .rail__seg{
    height: 3px;
  }

  .pds-guide-mount .stage-wrap,
  .pds-guide-mount .app--map .stage-wrap,
  .pds-guide-mount .app--focused .stage-wrap{
    padding: 18px 16px 30px;
  }

  .pds-guide-mount .mapIntro{
    margin: 4px auto 16px;
    text-align: left;
  }

  .pds-guide-mount .mapIntro__eyebrow{
    max-width: 100%;
    font-size: 10px;
    white-space: normal;
  }

  .pds-guide-mount .mapIntro__h{
    font-size: clamp(31px, 10vw, 44px);
    line-height: 1.05;
  }

  .pds-guide-mount .mapIntro__sub{
    margin: 0;
    font-size: 14.5px;
  }

  .pds-guide-mount .constel,
  .pds-guide-mount .app--focused .constel{
    height: auto;
    min-height: 0;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    overflow: visible;
  }

  .pds-guide-mount .constel__bg,
  .pds-guide-mount .constel__edges{
    display: none;
  }

  .pds-guide-mount .cnode,
  .pds-guide-mount .cnode--focused{
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 88px;
    border-radius: 14px;
    animation: none !important;
    transform: none !important;
    opacity: 1;
    filter: none;
  }

  .pds-guide-mount .app--focused .cnode--dim{
    display: none;
  }

  .pds-guide-mount .cnode__inner,
  .pds-guide-mount .cnode--xs .cnode__inner,
  .pds-guide-mount .cnode--sm .cnode__inner,
  .pds-guide-mount .cnode--focused .cnode__inner{
    position: relative;
    inset: auto;
    min-height: inherit;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .pds-guide-mount .cnode__icon,
  .pds-guide-mount .cnode--focused .cnode__icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .pds-guide-mount .cnode--focused .cnode__icon svg{
    width: 22px !important;
    height: 22px !important;
  }

  .pds-guide-mount .cnode__body,
  .pds-guide-mount .cnode--focused .cnode__body{
    flex: 1 1 auto;
    margin-top: 0;
    min-width: 0;
  }

  .pds-guide-mount .cnode__title,
  .pds-guide-mount .cnode--xs .cnode__title,
  .pds-guide-mount .cnode--sm .cnode__title,
  .pds-guide-mount .cnode--md .cnode__title,
  .pds-guide-mount .cnode--lg .cnode__title,
  .pds-guide-mount .cnode--focused .cnode__title{
    font-size: 16px;
    line-height: 1.2;
  }

  .pds-guide-mount .cnode__hint,
  .pds-guide-mount .cnode--xs .cnode__hint,
  .pds-guide-mount .cnode--focused .cnode__hint{
    font-size: 12.5px;
    line-height: 1.35;
  }

  .pds-guide-mount .cnode__accent,
  .pds-guide-mount .cnode--focused .cnode__accent{
    position: static;
    align-self: flex-start;
    margin-left: auto;
    white-space: nowrap;
  }

  .pds-guide-mount .cnode__cta{
    position: static;
    flex: 0 0 auto;
    opacity: 1;
    transform: none;
    margin-left: 0;
  }

  .pds-guide-mount .cnode__glow{
    display: none;
  }

  .pds-guide-mount .kbd-hint{
    display: none;
  }

  .pds-guide-mount .step__eyebrow{
    margin-bottom: 12px;
  }

  .pds-guide-mount .step__subtitle{
    font-size: 15px;
  }

  .pds-guide-mount .step__nav{
    align-items: stretch;
    gap: 10px;
    margin-top: 26px;
  }

  .pds-guide-mount .step__nav .btn{
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  .pds-guide-mount .btn{
    min-height: 44px;
    justify-content: center;
  }

  .pds-guide-mount .opt{
    padding: 15px 16px;
    gap: 12px;
  }

  .pds-guide-mount .opt__icon{
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .pds-guide-mount .opt__label{
    align-items: flex-start;
    padding-right: 18px;
  }

  .pds-guide-mount .opt__cta{
    top: 16px;
    right: 14px;
  }

  .pds-guide-mount .callout{
    padding: 12px;
    gap: 10px;
    font-size: 14px;
  }

  .pds-guide-mount .lpApp{
    border-radius: 12px;
  }

  .pds-guide-mount .lpApp__bar{
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 10px;
  }

  .pds-guide-mount .lpApp__menu{
    display: none;
  }

  .pds-guide-mount .lpApp__body{
    display: block;
    min-height: 0;
  }

  .pds-guide-mount .lpNav{
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #BFB9A8;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .pds-guide-mount .lpNav__group{
    display: none;
  }

  .pds-guide-mount .lpNav__item,
  .pds-guide-mount .lpNav__item--sub{
    flex: 0 0 auto;
    padding: 6px 9px;
    white-space: nowrap;
  }

  .pds-guide-mount .lpMain{
    padding: 13px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pds-guide-mount .lpMain__h{
    font-size: 16px;
    flex-wrap: wrap;
  }

  .pds-guide-mount .lpTbl{
    min-width: 520px;
  }

  .pds-guide-mount .lpFooter{
    align-items: flex-start;
  }

  .pds-guide-mount .lpField{
    flex-wrap: wrap;
  }

  .pds-guide-mount .summary{
    padding: 22px 18px;
    border-radius: 16px;
  }

  .pds-guide-mount .summary__actions,
  .pds-guide-mount .summary__actions .btn{
    width: 100%;
  }

  .pds-guide-mount .steps__row{
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .pds-guide-mount .steps__num{
    font-size: 24px;
  }

  .pds-guide-mount .steps__tag{
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
    white-space: normal;
  }

  .pds-guide-mount .checkItem{
    grid-template-columns: 28px 1fr !important;
    gap: 10px !important;
    padding: 13px 14px !important;
  }

  .pds-guide-mount .checkItem__path{
    grid-column: 2;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .pds-guide-mount .moreLinks__row{
    grid-template-columns: 1fr;
  }

  .pds-guide-mount .moreLink{
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .pds-guide-mount .stage-wrap,
  .pds-guide-mount .app--map .stage-wrap,
  .pds-guide-mount .app--focused .stage-wrap{
    padding-left: 12px;
    padding-right: 12px;
  }

  .pds-guide-mount .constel,
  .pds-guide-mount .app--focused .constel{
    padding: 10px;
  }

  .pds-guide-mount .cnode,
  .pds-guide-mount .cnode--focused{
    min-height: 82px;
  }

  .pds-guide-mount .cnode__inner,
  .pds-guide-mount .cnode--focused .cnode__inner{
    padding: 12px;
  }

  .pds-guide-mount .cnode__accent{
    font-size: 9.5px;
    padding: 2px 6px;
  }

  .pds-guide-mount .heroFigure{
    max-width: 320px;
    margin: 0 auto;
  }

  .pds-guide-mount .heroFigure__tag{
    position: static;
    margin-top: 8px;
    white-space: normal;
  }

  .pds-guide-mount .bank__top{
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pds-guide-mount *,
  .pds-guide-mount *::before,
  .pds-guide-mount *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

