/* One at a Time — page-specific layer on top of assets/100k31d.css */

:root {
  --accent: #6d6295;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #b0a4d6;
  }
}

.screen {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.screen-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-micro);
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-question {
  margin: 36px 0 auto;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.screen-lines {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.screen-lines span {
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
}

.screen-lines span:nth-child(2) {
  width: 78%;
}

.screen-lines span:nth-child(3) {
  width: 46%;
}

@media (max-width: 860px) {
  .screen {
    min-height: 340px;
  }
}
