/**
 * SetTern Signature Art — luxury wow layer
 */

.chapter-nav { display: none !important; }

/* ── Hero silence / delayed CTAs ───────────────────────────────────── */
.hero__ctas--delayed {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms var(--ease, ease), transform 700ms var(--ease, ease);
}
.hero__ctas--delayed.is-in {
  opacity: 1;
  transform: none;
}

.hero__visual-frame {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 420px;
}

.hero__visual-frame.is-lit {
  border-color: var(--border-cyan);
}

.hero__visual-frame .map,
.hero__visual-frame .map__svg {
  position: relative;
  z-index: 1;
}

.hero__visual-frame .map {
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
}

.hero__visual-frame .map__head {
  position: relative;
  z-index: 3;
}

/* Hide KPI / assurance clutter when luxury mode */
.hero--signature .hero__kpis,
.hero--signature .hero__assurance {
  display: none !important;
}

/* ── Week Scrubber ─────────────────────────────────────────────────── */
.friday-ruler {
  padding: clamp(36px, 5vw, 64px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.friday-ruler__head {
  max-width: 34rem;
  margin-bottom: 40px;
}

.friday-ruler__head .sh__title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}

.friday-ruler__progress {
  position: relative;
  height: 2px;
  background: var(--border);
  margin-bottom: 28px;
  border-radius: 2px;
  overflow: hidden;
}

.friday-ruler__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20%;
  background: var(--cyan);
  transition: width 280ms var(--ease, ease);
}

.friday-ruler.is-complete .friday-ruler__fill {
  background: linear-gradient(90deg, var(--cyan), var(--warm));
}

.friday-ruler.is-complete::after {
  content: '';
  position: absolute;
  left: clamp(36px, 5vw, 64px);
  right: clamp(36px, 5vw, 64px);
  bottom: 18px;
  height: 1px;
  background: rgba(12, 35, 64, 0.45);
  pointer-events: none;
}

.friday-ruler__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.friday-ruler__day {
  padding: 22px 10px;
  text-align: center;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 220ms ease;
  position: relative;
}

.friday-ruler__day:last-child { border-right: none; }

.friday-ruler__day.is-active {
  background: rgba(12, 35, 64, 0.07);
}

.friday-ruler__day.is-active::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -1px;
  height: 2px;
  background: var(--cyan);
}

.friday-ruler__day-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 6px;
}

.friday-ruler__day-name {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--t1);
}

.friday-ruler__whisper {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.04em;
  min-height: 1.2em;
}

.friday-ruler__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  min-height: 40px;
}

.friday-ruler__chip {
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  opacity: 0;
  transform: translateY(6px);
  animation: chip-in 420ms var(--ease, ease) forwards;
}

@keyframes chip-in {
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .friday-ruler__track { grid-template-columns: 1fr; }
  .friday-ruler__day {
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── Seal Ceremony ─────────────────────────────────────────────────── */
.evidence-wall {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.evidence-wall__brief .sh__tag { margin-bottom: 12px; display: inline-block; }
.evidence-wall__brief p {
  color: var(--t2);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 12px;
}

.evidence-wall__points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.evidence-wall__points li {
  font-size: 14px;
  color: var(--t2);
  padding-left: 16px;
  position: relative;
}

.evidence-wall__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.evidence-form {
  padding: 26px;
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
}

.evidence-form__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: filter 280ms ease;
}

.evidence-form__row.is-redacted .evidence-form__value {
  filter: blur(4px);
  opacity: 0.55;
  user-select: none;
}

.evidence-form__row.is-revealed .evidence-form__value,
.evidence-wall.is-approved .evidence-form__value {
  filter: none;
  opacity: 1;
}

.evidence-form__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
}

.evidence-form__value { color: var(--t1); text-align: right; }
.evidence-form__value code { font-family: var(--mono); font-size: 12px; }

.evidence-form__approve {
  width: 100%;
  margin-top: 16px;
  padding: 13px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--cyan);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.evidence-form.is-sealed { opacity: 0.78; }

.evidence-stamp {
  position: absolute;
  top: 42%;
  right: 16%;
  transform: translate(-50%, -50%) rotate(-14deg) scale(2.2);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.evidence-stamp__text {
  display: block;
  padding: 10px 22px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal);
  border: 3px solid var(--teal);
  border-radius: 4px;
  background: rgba(245, 242, 237, 0.65);
}

.evidence-stamp.is-stamping {
  animation: seal-in 720ms cubic-bezier(0.22, 0.65, 0.22, 1) forwards;
}

@keyframes seal-in {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-28deg) scale(2.4); }
  55% { opacity: 1; transform: translate(-50%, -50%) rotate(-12deg) scale(0.92); }
  100% { opacity: 0.9; transform: translate(-50%, -50%) rotate(-14deg) scale(1); }
}

.evidence-audit {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  min-height: 1em;
}

@media (max-width: 820px) {
  .evidence-wall { grid-template-columns: 1fr; }
}

/* ── Services registry ─────────────────────────────────────────────── */
.services-registry {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: var(--shadow-sm);
}

.services-registry .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.services-registry .svc {
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  background: transparent;
  transition: opacity 220ms ease, background 220ms ease;
}

.services-registry .svc::before { display: none; }
.services-registry .svc:nth-child(3n) { border-right: none; }
.services-registry .svc:hover { transform: none; box-shadow: none; }

.services-registry .services-grid.is-focusing .svc { opacity: 0.28; }
.services-registry .services-grid.is-focusing .svc.is-focus {
  opacity: 1;
  background: rgba(12, 35, 64, 0.04);
}

.services-extra {
  display: none;
  border-top: 1px solid var(--border);
}

.services-extra.is-open { display: block; }

.services-more {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  background: var(--paper-warm);
  border: none;
  border-top: 1px solid var(--border);
  cursor: pointer;
}

@media (max-width: 900px) {
  .services-registry .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-registry .svc:nth-child(3n) { border-right: 1px solid var(--border); }
  .services-registry .svc:nth-child(2n) { border-right: none; }
}

@media (max-width: 560px) {
  .services-registry .services-grid { grid-template-columns: 1fr; }
  .services-registry .svc { border-right: none !important; }
}

/* ── World hero: copy + reason picker ──────────────────────────────── */
[data-page="world"] .hero {
  grid-template-columns: 55fr 45fr;
  max-width: none;
}

[data-page="world"] .hero--signature .hero__assurance {
  display: flex !important;
}

[data-page="world"] .picker-frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 0;
}

[data-page="world"] .picker-frame .picker-card {
  padding: clamp(20px, 2.5vw, 28px);
}

[data-page="world"] .picker-list .star {
  color: var(--navy);
  opacity: 0.45;
}

@media (max-width: 980px) {
  [data-page="world"] .hero {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  [data-page="world"] .hero {
    grid-template-columns: 1fr;
  }
}

/* ── Obligations monuments ─────────────────────────────────────────── */
.obligations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.obligation {
  padding: 32px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transform: translateY(calc(var(--ob-lift, 0px) * -1));
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.obligation:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-sm);
}

.obligation__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 16px;
}

.obligation__code {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  transition: letter-spacing 280ms ease;
}

.obligation:hover .obligation__code {
  letter-spacing: 0.02em;
}

.obligation__body {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .obligations__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .obligations__grid { grid-template-columns: 1fr; }
}

/* ── Dual journey (world both-sides) ───────────────────────────────── */
.dual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.dual__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.dual__routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dual__route {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--t2);
  padding: 10px 12px;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.dual__route:hover {
  border-color: var(--border-strong);
  color: var(--t1);
}

.dual__route.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.dual__mode {
  display: inline-flex;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  gap: 2px;
}

.dual__mode-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 10px 14px;
  min-height: 40px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.dual__mode-btn.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.dual[data-mode="diy"] .dual__mode-btn[data-mode="diy"].is-active {
  background: var(--navy);
  color: #fff;
}

.dual__load {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}

.dual__load-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}

.dual__load-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t3);
}

.dual__load-stat {
  font-size: 13px;
  font-weight: 500;
  color: var(--t1);
}

.dual__load-track {
  height: 10px;
  border-radius: 999px;
  background: var(--surface-2);
  overflow: hidden;
}

.dual__load-fill {
  display: block;
  height: 100%;
  width: 28%;
  border-radius: inherit;
  background: var(--navy);
  transition: width 520ms cubic-bezier(0.22, 0.65, 0.22, 1), background 320ms ease;
}

.dual[data-mode="diy"] .dual__load-fill {
  background: linear-gradient(90deg, #5a6b7d 0%, var(--navy) 100%);
}

.dual__load-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t4);
}

.dual__board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.dual__side {
  padding: 22px 20px 24px;
  min-width: 0;
}

.dual__side--origin {
  background: #fff;
  border-right: 1px solid transparent;
}

.dual__side--dest {
  background: #fff;
}

.dual__side-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.dual__side-id {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dual__flag {
  font-size: 28px;
  line-height: 1;
}

.dual__kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 4px;
}

.dual__city {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--t1);
}

.dual__side-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  text-align: right;
}

.dual__tasks {
  display: grid;
  gap: 8px;
  list-style: none;
}

.dual__task {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: start;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, opacity 200ms ease;
}

.dual__task-main {
  min-width: 0;
}

.dual__task-code {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 4px;
}

.dual__task-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.45;
}

.dual__task-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: start;
}

.dual[data-mode="diy"] .dual__task {
  background: #fff;
  border-color: rgba(12, 35, 64, 0.14);
}

.dual[data-mode="diy"] .dual__task-status {
  color: #6b3a3a;
  background: rgba(139, 64, 64, 0.08);
}

.dual[data-mode="diy"] .dual__task.is-risk .dual__task-status {
  color: #8B4040;
  background: rgba(139, 64, 64, 0.12);
}

.dual[data-mode="settern"] .dual__task {
  background: rgba(12, 35, 64, 0.03);
  border-color: rgba(12, 35, 64, 0.1);
}

.dual[data-mode="settern"] .dual__task-status {
  color: var(--navy);
  background: rgba(12, 35, 64, 0.08);
}

.dual[data-mode="settern"] .dual__task.is-done .dual__task-status {
  color: #3D5C4A;
  background: rgba(61, 92, 74, 0.12);
}

.dual__task.is-entering {
  animation: dual-task-in 420ms cubic-bezier(0.22, 0.65, 0.22, 1) both;
}

@keyframes dual-task-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.dual__bridge {
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  background: var(--paper);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.dual__bridge-line {
  width: 1px;
  flex: 1;
  background: var(--border-strong);
  min-height: 24px;
}

.dual__bridge-pill {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 14px 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: #fff;
  text-align: center;
  white-space: nowrap;
}

.dual[data-mode="diy"] .dual__bridge-pill {
  color: var(--t3);
}

.dual__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.dual__foot-copy {
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--t2);
  max-width: 52rem;
}

.dual__foot .btn {
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .dual__board {
    grid-template-columns: 1fr;
  }

  .dual__bridge {
    width: 100%;
    flex-direction: row;
    padding: 12px 16px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .dual__bridge-line {
    width: auto;
    height: 1px;
    flex: 1;
    min-height: 0;
  }

  .dual__bridge-pill {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 8px 14px;
  }
}

@media (max-width: 767px) {
  .dual__toolbar {
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .dual__routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dual__route {
    text-align: center;
    font-size: 10px;
    padding: 10px 8px;
  }

  .dual__mode {
    width: 100%;
  }

  .dual__mode-btn {
    flex: 1;
  }

  .dual__load,
  .dual__side,
  .dual__foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dual__side-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dual__side-meta {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 10px;
  }

  .dual__task {
    grid-template-columns: 1fr;
  }

  .dual__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .dual__foot .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dual__task.is-entering { animation: none; }
  .dual__load-fill { transition: none; }
}

/* ── Corridor Stage ────────────────────────────────────────────────── */
.corridor-stage {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 0;
  outline: none;
}

.corridor-stage__panel {
  display: none;
  padding: clamp(18px, 2.8vw, 28px) clamp(18px, 3vw, 28px) clamp(16px, 2.4vw, 22px);
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(12, 35, 64, 0.08), transparent 55%),
    var(--bg-elev);
}

.corridor-stage__panel.is-active {
  display: flex;
  animation: corridor-in 480ms var(--ease, ease);
}

@keyframes corridor-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

.corridor-stage__route {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.corridor-stage__title {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
  max-width: 18ch;
}

.corridor-stage__sub {
  font-size: 14px;
  color: var(--t2);
  max-width: 36rem;
  line-height: 1.45;
  margin: 0;
}

.corridor-stage__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--paper-warm);
}

.corridor-stage__btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--t1);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-elev);
  cursor: pointer;
}

.corridor-stage__btn:hover { border-color: var(--border-cyan); color: var(--cyan); }

.corridor-stage__dots {
  display: flex;
  gap: 8px;
}

.corridor-stage__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
}

.corridor-stage__dot.is-active { background: var(--cyan); }

/* ── SetTern country marks (outline · never emoji flags) ───────────── */
.sett-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--navy, #0C2340);
  vertical-align: -0.35em;
}
.sett-mark--sm {
  width: 16px;
  height: 16px;
}
.sett-mark--lg {
  width: 36px;
  height: 36px;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid rgba(12, 35, 64, 0.16);
  background: linear-gradient(145deg, rgba(91, 127, 166, 0.12), transparent 72%);
  color: #5B7FA6;
}
.sett-mark__svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lang-pill .sett-mark {
  margin-right: 5px;
  color: #5B7FA6;
}
.dual__route .sett-mark {
  color: currentColor;
  opacity: 0.9;
}
.dual__route.is-active .sett-mark {
  color: #C5D4E3;
}
.corridor-stage__route {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.corridor-stage__route .sett-mark {
  color: #5B7FA6;
}
.dual__flag.sett-mark {
  font-size: 0;
  line-height: 0;
}

/* ── Compact density (world + local) ───────────────────────────────── */
[data-page="world"] .section,
[data-page="local"] .section {
  padding: clamp(28px, 3.2vw, 44px) 0;
}
[data-page="world"] .section--hero,
[data-page="local"] .section--hero {
  padding: clamp(20px, 3vw, 32px) 0 clamp(28px, 3.5vw, 40px);
}
[data-page="world"] .section--dense,
[data-page="local"] .section--dense {
  padding: clamp(22px, 2.8vw, 36px) 0;
}
[data-page="world"] .sh__tag,
[data-page="local"] .sh__tag {
  margin-bottom: 8px;
  font-size: 10px;
}
[data-page="world"] .sh__title,
[data-page="local"] .sh__title {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 10px;
  line-height: 1.12;
}
[data-page="world"] .sh__sub,
[data-page="local"] .sh__sub {
  font-size: 15px;
  line-height: 1.45;
  max-width: 540px;
}
[data-page="world"] .sh--compact,
[data-page="local"] .sh--compact {
  margin-bottom: 18px;
}
[data-page="world"] .sh--compact .sh__title {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}
[data-page="world"] .sh--compact .sh__sub {
  font-size: 14px;
  max-width: 48rem;
}
[data-page="world"] .hero__visual-frame,
[data-page="local"] .hero__visual-frame {
  min-height: 320px;
}
[data-page="local"] .friday-ruler {
  padding: clamp(20px, 3vw, 36px);
}
[data-page="local"] .friday-ruler__head {
  margin-bottom: 22px;
  max-width: 30rem;
}
[data-page="local"] .friday-ruler__head .sh__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}
[data-page="world"] .corridor-stage {
  padding: 0;
}
[data-page="world"] .corridor-stage__title {
  font-size: clamp(24px, 3.2vw, 32px);
  margin: 0 0 6px;
}
[data-page="world"] .corridor-stage__sub {
  font-size: 13px;
  line-height: 1.4;
}
[data-page="world"] #corridors .sh {
  margin-bottom: 16px;
}
[data-page="world"] .marquee {
  padding: 12px 0;
  margin-top: clamp(24px, 3vw, 40px);
}

.dual--compact .dual__toolbar {
  padding: 12px 14px;
  gap: 10px;
}
.dual--compact .dual__route,
.dual--compact .dual__mode-btn {
  padding: 7px 10px;
  min-height: 34px;
  font-size: 10px;
}
.dual--compact .dual__load {
  padding: 12px 14px 10px;
}
.dual--compact .dual__load-track {
  height: 7px;
}
.dual--compact .dual__load-scale {
  margin-top: 5px;
  font-size: 9px;
}
.dual--compact .dual__side {
  padding: 14px 14px 16px;
}
.dual--compact .dual__side-head {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.dual--compact .dual__city {
  font-size: clamp(20px, 2.4vw, 26px);
}
.dual--compact .dual__side-id {
  gap: 10px;
}
.dual--compact .dual__tasks {
  gap: 6px;
}
.dual--compact .dual__task {
  padding: 8px 10px;
  border-radius: 8px;
}
.dual--compact .dual__task-code {
  margin-bottom: 2px;
  font-size: 10px;
}
.dual--compact .dual__task-body {
  font-size: 12px;
  line-height: 1.35;
}
.dual--compact .dual__task-status {
  padding: 4px 6px;
  font-size: 9px;
}
.dual--compact .dual__bridge {
  width: 44px;
  gap: 8px;
  padding: 10px 0;
}
.dual--compact .dual__bridge-pill {
  font-size: 9px;
  padding: 10px 6px;
}
.dual--compact .dual__foot {
  padding: 12px 14px;
  gap: 12px;
}
.dual--compact .dual__foot-copy {
  font-size: 13px;
  line-height: 1.4;
}

/* ── Final CTA silence (no price dump) ─────────────────────────────── */
.final--quiet .final__title span[style] {
  color: inherit !important;
  font-style: normal !important;
}

@media (prefers-reduced-motion: reduce) {
  .friday-ruler__chip,
  .evidence-stamp.is-stamping,
  .corridor-stage__panel.is-active,
  .picker-list.is-typing li,
  .hero__ctas--delayed {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
