/* Homepage — One base, both directions */
.wdg-sec { padding: clamp(72px, 8vw, 116px) 0; }
.wdg-sec .sec-head { margin-bottom: 40px; }

/* Scale spine: ZIP → market → national */
.spn-wrap { max-width: 900px; margin: 46px auto 0; }
.spn-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; }
@media (max-width: 760px) {
  .spn-flow { grid-template-columns: 1fr; gap: 6px; }
  .spn-arrow { transform: rotate(90deg); justify-self: center; }
}
.spn-node {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 18px 16px 20px; cursor: pointer;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.spn-node.on { border-color: var(--brand-mid); box-shadow: 0 16px 40px rgba(38,103,216,.16); transform: translateY(-3px); }
.spn-node.done { border-color: var(--brand-pale); }
.spn-art { width: 100%; aspect-ratio: 4 / 3; }
.spn-svg { width: 100%; height: 100%; display: block; }
.spn-cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--text-3); margin-top: 8px; }
.spn-k { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); margin-top: 6px; letter-spacing: -.01em; }
.spn-s { font-size: 13px; color: var(--text-3); margin-top: 3px; line-height: 1.4; }
.spn-arrow { color: var(--border-2); display: grid; place-items: center; transition: color .4s var(--ease); }
.spn-arrow.on { color: var(--brand-mid); }
.wdg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .wdg-grid { grid-template-columns: 1fr; } }
.wdg-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 34px 32px; box-shadow: 0 14px 40px rgba(10,32,92,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wdg-card:hover { transform: translateY(-4px); box-shadow: 0 26px 58px rgba(10,32,92,.12); }
.wdg-dir {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--brand-vibrant); margin-bottom: 16px;
}
.wdg-dir .dic { width: 30px; height: 30px; border-radius: 9px; background: #DEEAF7; display: grid; place-items: center; }
.wdg-card h3 { position: relative; font-size: clamp(21px, 2.2vw, 26px); }
.wdg-card > p { position: relative; margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--text-3); }
.wdg-card ul { position: relative; list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.wdg-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text-2); line-height: 1.5; }
.wdg-card li .ck { flex-shrink: 0; width: 19px; height: 19px; border-radius: 999px; background: rgba(90,204,155,.16); color: #1F7A4D; display: grid; place-items: center; margin-top: 1px; }

.wdg-note {
  margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 13px;
  padding: 20px 26px; border-radius: var(--r-lg);
  background: var(--surface-2); border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--text);
  text-align: center; letter-spacing: -.01em;
}
.wdg-note .wavemark { width: 22px; height: 17px; flex-shrink: 0; }
