/* ====== SETTINGS > YOUR NEURA > STRENGTH — Neva Intervention Strength ====== */
/* Shell, columns, rows, segmented control and the action strip come from
   account.css. Only the level card, the level list and the action verdicts are
   here. Monochrome throughout; a verdict is fill and border, never hue. */

/* ---- the level card ---- */
.str-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 148px;
  padding: 12px 18px;
  margin: 2px 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
/* a fixed box so a stronger level grows the orb, never the layout */
.str-orbwrap {
  flex: 0 0 124px;
  width: 124px;
  height: 124px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wear-primary);
}
.str-orb { display: block; width: 100%; height: 100%; overflow: visible; fill: currentColor; }
.str-card__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.str-card__name {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--wear-primary);
}
.str-card__rank {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--wear-primary);
  opacity: 0.4;
}
.str-card__line {
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--wear-primary);
  opacity: 0.62;
}
.str-card__note {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 300;
  color: var(--wear-primary);
  opacity: 0.4;
}

/* ---- the four levels ---- */
.str-levels { display: flex; flex-direction: column; }
.str-level {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 54px;
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.str-levels > .str-level:last-child { border-bottom: none; }
.str-level:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.25); outline-offset: -2px; }
.str-level__rank {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 400;
  color: var(--wear-primary);
  opacity: 0.5;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.str-level.is-selected .str-level__rank {
  border-color: var(--wear-primary);
  opacity: 1;
}
.str-level__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.str-level__label {
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--wear-primary);
  opacity: 0.7;
}
.str-level.is-selected .str-level__label { opacity: 1; font-weight: 400; }
.str-level__caption {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--wear-primary);
  opacity: 0.4;
}
/* selection is the filled ring, never colour */
.str-level__mark {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.str-level.is-selected .str-level__mark {
  border-color: var(--wear-primary);
  box-shadow: inset 0 0 0 4px var(--wear-primary);
}

/* ---- the action preview ---- */
.str-action {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.str-action:last-of-type { border-bottom: none; }
.str-action__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.str-action__label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--wear-primary);
}
.str-action__why {
  font-size: 11px;
  font-weight: 300;
  color: var(--wear-primary);
  opacity: 0.4;
}
.str-verdict {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.str-verdict--auto { background: var(--wear-primary); color: #101211; }
.str-verdict--ask {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--wear-primary);
  opacity: 0.75;
}
