/* RiskOS — the walkthrough. One window, six beats, played through or driven
   by hand. The window on the left is the real interface redrawn; the panel on
   the right says what you are looking at. */

.wt {
  margin-top: 44px;
  border-radius: var(--radius-card);
  background: var(--sunken);
  border: 1px solid var(--hairline-soft);
  padding: clamp(16px, 2.6vw, 30px);
}
.section.band .wt { background: var(--bg); }

.wt-body {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .wt-body { grid-template-columns: 1.55fr 1fr; } }

.wt-stage { position: relative; }
.wt-scene[hidden] { display: none; }
.wt-scene { animation: wt-in 0.5s var(--ease-reveal) both; }
@keyframes wt-in {
  from { opacity: 0; transform: translateY(10px) scale(0.995); }
  to { opacity: 1; transform: none; }
}

.wt-side { display: flex; flex-direction: column; gap: 22px; }
.wt-panel[hidden] { display: none; }
.wt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 640;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.wt-eyebrow i {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--grad-warm);
  display: block;
}
.wt-wintitle {
  margin-top: 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 670;
}
.wt-panel p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.58;
  color: var(--ink-2);
  max-width: 34rem;
}
.wt-panel .wt-more { display: inline-block; margin-top: 14px; }

.wt-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wt-dots { display: flex; gap: 7px; }
.wt-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: var(--fill-3);
  transition: width 0.3s var(--snappy), background 0.3s var(--smooth);
}
.wt-dots button[aria-selected="true"] { width: 26px; background: var(--accent); }
.wt-nav { display: flex; gap: 6px; margin-left: auto; }
.wt-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--fill-2);
  color: var(--ink-2);
  transition: background 0.18s;
}
.wt-nav button:hover { background: var(--fill-3); color: var(--ink); }
.wt-nav svg { width: 15px; height: 15px; }
.wt-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding-inline: 13px;
  border-radius: 999px;
  background: var(--fill-2);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}
.wt-play:hover { background: var(--fill-3); color: var(--ink); }
.wt-play svg { width: 13px; height: 13px; }
.wt-play .ico-pause { display: none; }
.wt-play[aria-pressed="true"] .ico-play { display: none; }
.wt-play[aria-pressed="true"] .ico-pause { display: block; }

@media (prefers-reduced-motion: reduce) {
  .wt-scene { animation: none; }
}
